@font-face {
    font-family: 'Scandia';
    src: url('../fonts/Scandia-Medium.woff2') format('woff2'),
        url('../fonts/Scandia-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Scandia Stencil';
    src: url('../fonts/Scandia-Stencil.woff2') format('woff2'),
        url('../fonts/Scandia-Stencil.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Scandia';
    src: url('../fonts/Scandia-Regular.woff2') format('woff2'),
        url('../fonts/Scandia-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Scandia';
    src: url('../fonts/Scandia-Light.woff2') format('woff2'),
        url('../fonts/Scandia-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Scandia Line';
    src: url('../fonts/ScandiaLine-Regular.woff2') format('woff2'),
        url('../fonts/ScandiaLine-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Scandia Line';
    src: url('../fonts/ScandiaLine-Light.woff2') format('woff2'),
        url('../fonts/ScandiaLine-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Scandia';
    src: url('../fonts/Scandia-Bold.woff2') format('woff2'),
        url('../fonts/Scandia-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Scandia Line';
    src: url('../fonts/ScandiaLine-Bold.woff2') format('woff2'),
        url('../fonts/ScandiaLine-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}



/* ***** Common Css **** */
:root {
    scroll-behavior: initial;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}
a:hover,
a:focus,
a:active {
    text-decoration: none;
}
ol,
ul {
    margin: 0;
    padding: 0;
}
img {
    display: block;
}
a {
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
    text-decoration: none;
}

body {
    font-family: 'Scandia';
    font-size: 14px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
}

.main-wrpper {
    height: 100%;
    width: 100%;
}
.container{
    max-width: 1400px;
}

/* ***** End Common Css **** */

/* **** Header **** */
header{
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    background: transparent;
    padding: 0 0;
    z-index: 120;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
header .topbar{
    background: #F2332D;
    padding: 10px 0;
}
header .topbar .row{
    align-items: center;
}
header .topbar .conact-info ul{
    display: flex;
    align-items: center;
}
header .topbar .conact-info li{margin-right: 32px;}
header .topbar .conact-info li:last-child{
    margin: 0;
}
header .topbar .conact-info li a{
    color: #FFF;
    font-size: 14px;
    font-weight: 500;
}
header .topbar .conact-info li a span{
    margin-right: 10px;
}
header .topbar .conact-info li a:hover{
    color: #000;
}
header .topbar .social-icon ul{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
header .topbar .social-icon ul li{
    margin-right: 10px;
}
header .topbar .social-icon ul li:last-child{
    margin: 0;
}
header .topbar .social-icon ul li a{
    display: block;
}
header .topbar .social-icon ul li a img{
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    display: block;
    width: 25px;
}
header .topbar .social-icon ul li a img:hover{
    filter: brightness(0) invert(0);
}
.navbar .container .navbar-brand,
.navbar .container-fluid .navbar-brand {
    margin-left: 0;
}
.navbar-brand {
    float: none;
    height: auto;
    padding: 0;
}
.navbar-brand img {
    max-width: 100%;
    height: 52px;
}
.navbar {
    background: transparent;
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 25px 0;
    z-index: 120;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
.navbar-light .nav-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.navbar-light .navbar-nav {
    margin: 0 auto;
}
.navbar-light .navbar-nav li {
    margin-right: 40px;
}
.navbar-light .navbar-nav li:last-child {
    margin-right: 0;
}
.navbar-light .navbar-nav .nav-link {
    padding: 15px 0;
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.navbar .navbar-nav li a:focus,
.navbar .navbar-nav li a:hover,
.navbar .navbar-nav li a:hover {
    color: #F2332D;
}
.navbar .navbar-nav .active a,
.navbar .navbar-nav .active a:focus,
.navbar .navbar-nav .active a:hover {
    color: #F2332D;
}
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: #F2332D;
}

header.nav-new .topbar{
    display: none;
}
header.nav-new{
    background: #000;
}
/* **** End Header **** */


/* **** toggler **** */
.navbar-light .navbar-toggler {background-color: transparent;border-radius: 0;outline: none;box-shadow: none;border: none;padding: 0;}
.navbar-light .navbar-toggler:focus {box-shadow: none;outline: none; }
.navbar-light .navbar-toggler .navbar-toggler-icon {background-image: unset;}
.navbar-toggler:active, .navbar-toggler:focus { outline: none; }
.navbar-light .navbar-toggler-icon {width: 24px;height: 18px;background-image: none;position: relative;border-bottom: 2px solid #fff;transition: all 300ms linear;}
.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before {width: 24px;position: absolute;height: 2px;background-color: #fff;top: 0;left: 0;content: "";z-index: 2;transition: all 300ms linear;}
.navbar-light .navbar-toggler-icon:after {top: 8px;}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {transform: rotate(45deg);}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {transform: translateY(8px) rotate(-45deg);}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {border-color: transparent;}
/* **** End toggler **** */

/* **** Buttons **** */
.btn-secondary {
    position: relative;
    z-index: 9;
}
.btn-secondary span {
    display: table;
    padding: 12px 30px;
    border: 1px solid #f2332d;
    color: #f2332d;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
}
.btn-secondary i {
    margin-left: 10px;
}
.btn-secondary:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    border: 1px solid #f2332d;
    opacity: 0;
    visibility: hidden;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.btn-secondary:hover span {
    background: #f2332d;
    color: #fff;
    -webkit-transform: translate(-8px, -8px);
    transform: translate(-8px, -8px);
}
.btn-secondary:hover:before {
    opacity: 1;
    visibility: visible;
}

.btn-primary {
    position: relative;
    z-index: 9;
    display: table;
}
.btn-primary span {
    display: table;
    padding: 12px 30px;
    background: #f2332d;
    border: 1px solid #f2332d;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
}
.btn-primary i {
    margin-left: 10px;
}
.btn-primary:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    border: 1px solid #f2332d;
    opacity: 0;
    visibility: hidden;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.btn-primary:hover span {
    background: #f2332d;
    color: #fff;
    -webkit-transform: translate(-8px, -8px);
    transform: translate(-8px, -8px);
}
.btn-primary:hover:before {
    opacity: 1;
    visibility: visible;
}

.btn-text {
    color: #f2332d;
    font-family: Scandia;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.btn-text:hover {
    color: #fff;
}
/* **** End Buttons **** */

/* **** Hero **** */
.hero-slider-wrp {
    position: relative;
}
.hero-slider-wrp .hero-slider .slider-box img {
    width: 100%;
    min-height: 1000px;
    object-fit: cover;
    object-position: center;
}
.hero-slider-wrp .hero-slider .slick-prev,
.hero-slider-wrp .hero-slider .slick-next {
    position: absolute;
    left: 8%;
    background-color: transparent;
    border: none;
    box-shadow: none;
    outline: none;
    z-index: 9;
    font-size: 0;
    top: auto;
    bottom: 40px;
}
.hero-slider-wrp .hero-slider .slick-prev:before,
.hero-slider-wrp .hero-slider .slick-next:before {
    position: absolute;
    content: "\f104";
    height: 50px;
    width: 50px;
    border-radius: 100%;
    border-radius:50px;
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 20px;
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    bottom: 0;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.hero-slider-wrp .hero-slider .slick-next:before {
    left: 60px;
    content: "\f105";
}
.hero-slider-wrp .hero-slider .slick-prev:hover:before,
.hero-slider-wrp .hero-slider .slick-next:hover:before {
    background-color: #f2332d;
    color: #fff;
}

.hero-slider-wrp .hero-block {
    position: absolute;
    left: 0;
    right: 0;
    top: 250px;
    /*top: 55%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);*/
}
.hero-slider-wrp .hero-block .row {
    align-items: center;
}
.hero-slider-wrp .hero-block h1 {
    color: #fff;
    font-size: 52px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    margin: 0 0 35px;
}
.hero-slider-wrp .hero-block p {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    max-width: 750px;
    margin: 0 0 15px;
}
.hero-slider-wrp .hero-block .btn-box {
    margin: 30px 0;
}
.hero-slider-wrp .hero-block .btn-box ul {
    display: flex;
    align-items: center;
}
.hero-slider-wrp .hero-block .btn-box ul li {
    margin-right: 30px;
}
.hero-slider-wrp .hero-block .btn-box ul li:last-child {
    margin: 0;
}
.hero-slider-wrp .hero-block .development-info ul {
    display: flex;
    align-items: center;
}
.hero-slider-wrp .hero-block .development-info ul li{
    display: flex;
    align-items: center;
    padding-right: 20px;
    margin-right: 20px;
    position: relative;
    color: #fff;
    font-family: Scandia;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
}
.hero-slider-wrp .hero-block .development-info ul li span{
    max-width: 200px;
}
.hero-slider-wrp .hero-block .development-info ul li span br{display: none;}
.hero-slider-wrp .hero-block .development-info ul li:last-child {
    padding: 0;
    margin: 0;
}
.hero-slider-wrp .hero-block .development-info ul li:last-child:before {
    display: none;
}
.hero-slider-wrp .hero-block .development-info ul li:before {
    position: absolute;
    content: "";
    height: 40px;
    width: 1px;
    right: 0;
    background: #fff;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.hero-slider-wrp .hero-block .development-info ul li img {
    max-width: 100%;
    margin-right: 20px;
}

.banner-form {
    background: #fff4f4;
    max-width: 780px;
    margin-left: auto;
    padding: 55px 50px;
    position: relative;
}
.banner-form .form-top-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
}
.banner-form .form-group {
    margin: 0 0 20px;
}
.banner-form .form-group .form-control {
    color: #333;
    font-size: 16px;
    font-weight: 400;
    padding: 15px 30px;
    border: 1px solid rgba(112, 112, 112, 0.2);
    resize: none;
    box-shadow: none;
    outline: none;
    border-radius: 0;
    background-color: transparent;
}
.banner-form button {
    border: none;
}
.banner-form .form-img {
    position: absolute;
    right: 40px;
    top: -75px;
	max-width: 100%;
    width: 150px;
}
.banner-form h2 {
    color: #000;
    font-family: Scandia;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0 0 35px;
}
.banner-form h6 {
    color: #333;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 0 25px;
}
.banner-form h6 img {
    max-width: 100%;
    width: 20px;
    margin-right: 10px;
}
.banner-form h6 span {
    color: #4492dc;
    display: inline-block;
    position: relative;
    border-bottom: 1px solid #4492dc;
    margin: 0 10px;
}
.banner-form h6 span input {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: transparent;
    cursor: pointer;
    opacity: 0;
}

.banner-form ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.banner-form ul li {
    color: #333;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
}
.banner-form ul li img {
    max-width: 100%;
    width: 25px;
    margin-right: 10px;
}
/* **** End Hero **** */

/* **** Story **** */
.story-wrp {
    padding: 60px 0 30px;
}
.story-wrp .story-block {
    border-radius: 30px;
    background: #fff4f4;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.1);
    padding: 60px;
}
.story-wrp .story-block .row{
    align-items: center;
}
.story-wrp .story-block .description h2 {
    color: #f2332d;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: normal;
    text-transform: uppercase;
    margin: 0 0 10px;
}
.story-wrp .story-block .description h3 {
    color: #333;
    font-size: 32px;
    font-weight: 500;
    line-height: 42px;
    margin: 0 0 25px;
}
.story-wrp .story-block .description p {
    color: #666;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    max-width: 700px;
    margin: 0 0 40px;
}
.story-wrp .story-block .story-img img {
    width: 100%;
    border-radius: 15px;
}
/* **** End Story **** */

.titlebar {
    margin: 0 0 45px;
    text-align: center;
}
.titlebar h2 {
    color: #f2332d;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 10px;
}
.titlebar h3 {
    color: #333;
    text-transform: uppercase;
    font-size: 32px;
    font-weight: 500;
    margin: 0;
}

/* **** Expertise **** */
.expertise-wrpper {
    padding: 50px 0;
}
.expertise-wrpper .slick-slide {
    margin: 0 20px;
}
.expertise-wrpper .slick-list {
    margin: 0 -20px;
}
.expertise-wrpper .slider-box {
    position: relative;
}
.expertise-wrpper .slider-box:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #000;
    opacity: 60%;
    border-radius: 10px;
}
.expertise-wrpper .slider-box{
    position: relative;
}
.expertise-wrpper .slider-box:after{
    position: absolute;
    content: '';
    background: #000;
    opacity: 0.40;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.expertise-wrpper .slider-box img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: top;
    border-radius: 10px;
}
.expertise-wrpper .slider-box a {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    position: absolute;
    left: 25px;
    bottom: 25px;
    z-index: 1;
}
.expertise-wrpper .slider-box a i {
    margin-left: 10px;
}
.expertise-wrpper .slider-box a:hover {
    color: #f2332d;
}
.expertise-wrpper .btn-primary {
    margin: 50px auto 0;
}
.expertise-wrpper .slick-prev,
.expertise-wrpper .slick-next {
    position: absolute;
    left: -100px;
    background-color: transparent;
    border: none;
    box-shadow: none;
    outline: none;
    z-index: 9;
    font-size: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.expertise-wrpper .slick-next {
    left: auto;
    right: -100px;
}
.expertise-wrpper .slick-prev:before,
.expertise-wrpper .slick-next:before {
    position: absolute;
    content: "\f0d9";
    height: 50px;
    width: 50px;
    border-radius: 10px;
    border: 1px solid #f2332d;
    color: #f2332d;
    font-size: 26px;
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.expertise-wrpper .slick-next:before {
    left: auto;
    right: 0;
    content: "\f0da";
}
.expertise-wrpper .slick-prev:hover:before,
.expertise-wrpper .slick-next:hover:before {
    background-color: #f2332d;
    color: #fff;
}
/* **** End Expertise **** */

/* **** Choose Us **** */
.chooseus-wrp {
    padding: 60px 0 30px;
}
.chooseus-wrp .chooseus-block {
    border-radius: 30px;
    background: #fff4f4;
    padding: 80px 50px;
}
.chooseus-wrp .chooseus-block .titlebar {
    margin: 0 0 45px;
}
.chooseus-wrp .chooseus-block .choose-box img {
    width: 70px;
    margin: 0 auto 25px;
}
.chooseus-wrp .chooseus-block .choose-box p {
    color: #333;
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    line-height: normal;
    text-align: center;
    max-width: 70%;
    margin: 0 auto;
}
.chooseus-wrp .chooseus-block .choose-box p span {
    color: #f2332d;
}
/* **** End Choose Us **** */

/* **** Testimonials **** */
.testimonial-wrp {
    padding: 50px 0 100px;
}
.testimonial-wrp .container {
    max-width: 1350px;
}
.testimonial-wrp .titlebar {
    margin: 0 0 80px;
}
.testimonial-wrp .testimonial-slider .slider-box {
    border-radius: 25px;
    background: #fff4f4;
    backdrop-filter: blur(75px);
    padding: 30px;
}
.testimonial-wrp .testimonial-slider .slider-box .users-box {
    display: flex;
    align-items: center;
    margin: 0 0 25px;
}
.testimonial-wrp .testimonial-slider .slider-box .users-box img {
    height: 100px;
    min-width: 100px;
    border-radius: 100%;
    border: 1px solid #f2332d;
    margin-right: 30px;
}
.testimonial-wrp .testimonial-slider .slider-box .users-box h3 {
    color: #2d3958;
    font-size: 28px;
    font-weight: 700;
    line-height: 36px;
    margin: 0 0 5px;
}
.testimonial-wrp .testimonial-slider .slider-box .users-box h4 {
    color: #333;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    margin: 0;
}
.testimonial-wrp .testimonial-slider .slider-box .description p {
    color: #666;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin: 0;
}
.testimonial-wrp .testimonial-slider .slick-slide {
    margin: 0 25px;
}
.testimonial-wrp .testimonial-slider .slick-list {
    margin: 0 -25px;
}
.testimonial-wrp .testimonial-slider .slick-prev,
.testimonial-wrp .testimonial-slider .slick-next {
    position: absolute;
    left: -100px;
    background-color: transparent;
    border: none;
    box-shadow: none;
    outline: none;
    z-index: 9;
    font-size: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.testimonial-wrp .testimonial-slider .slick-next {
    left: auto;
    right: -100px;
}
.testimonial-wrp .testimonial-slider .slick-prev:before,
.testimonial-wrp .testimonial-slider .slick-next:before {
    position: absolute;
    content: "\f0d9";
    height: 50px;
    width: 50px;
    border-radius: 10px;
    border: 1px solid #f2332d;
    background: #fff;
    color: #f2332d;
    font-size: 24px;
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.testimonial-wrp .testimonial-slider .slick-next:before {
    left: auto;
    right: 0;
    content: "\f0da";
}
.testimonial-wrp .testimonial-slider .slick-prev:hover:before,
.testimonial-wrp .testimonial-slider .slick-next:hover:before {
    background-color: #f2332d;
    color: #fff;
}
/* **** End Testimonials **** */

/* **** Laracasts **** */
.laracasts-wrp {
    padding: 60px 0 30px;
    background: #fff4f4;
}
.laracasts-wrp .title-img {
    margin: 0 0 25px;
}
.laracasts-wrp .title-img img {
    height: 35px;
    margin: 0 auto;
}
.laracasts-box {
    background: #fff;
    position: relative;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-flow: column;
    height: 100%;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
.laracasts-box img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    margin: 0 0 20px;
}
.laracasts-box h4 {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin: 0 0 15px;
}
.laracasts-box p {
    margin: 0;
    font-size: 18px;
    font-weight: normal;
    color: #707070;
    line-height: 26px;
}
.laracasts-box .readic {
    font-size: 20px;
    color: #333;
    position: absolute;
    top: 30px;
    right: 30px;
}
.laracasts-box:hover .readic {
    color: #f2332d;
}
.laracasts-box:hover {
    box-shadow: none;
}
/* **** End Laracasts **** */

/* **** Services **** */
.services-wrp {
    padding: 100px 0;
}
.services-title {
    padding: 0 60px 0 0;
    position: sticky;
    top: 130px;
    right: 0;
}
.services-title .titlebar {
    text-align: left;
    margin: 0 0 25px;
}
.services-title p {
    font-size: 18px;
    font-weight: normal;
    color: #666666;
    line-height: 26px;
    margin: 0 0 30px;
}
.nrml-btn {
    padding: 15px 25px;
    font-size: 20px;
    color: #f2332d;
    font-weight: 700;
}
.nrml-btn:hover {
    color: #111;
}

.services-box {
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    margin: 0 0 30px;
}
.services-box:last-child {
    margin: 0;
}
.services-box h4 {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin: 0 0 15px;
}
.services-box p {
    font-size: 18px;
    font-weight: normal;
    color: #707070;
    margin: 0;
    line-height: 28px;
}
/* **** End Services **** */

/* **** Free Note **** */
.free-note-wrp {
    padding: 50px 0;
    background: #fff4f4;
}
.free-note-wrp p {
    font-size: 20px;
    font-weight: normal;
    color: #333;
    line-height: 30px;
    text-align: center;
    margin: 0 auto 35px;
    max-width: 950px;
}
.free-note-wrp .btn-primary {
    margin: 0 auto;
}
/* **** End Free Note **** */

/* **** Technologies **** */
.technologies-wrp {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}
.technologies-wrp .titlebar {
    padding: 0 15px;
}
.technologies-wrp .row {
    justify-content: center;
}
.technologies-wrp .col-md-3 {
    width: 20%;
}
.tech-row-lst {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.tech-box {
    border-radius: 15px;
    padding: 15px;
    min-height: 150px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    margin: 15px 0;
}
.tech-box img {
    max-width: 100%;
}
/* **** End Technologies **** */

/* **** Help **** */
.help-wrp {
    padding: 60px 0 30px;
}
.help-wrp .container {
    max-width: 1300px;
}
.help-row {
    margin: 0 0 50px;
}
.help-row .row {
    align-items: center;
}
.help-img img {
    width: 100%;
    border-radius: 15px;
}
.help-data {
    padding: 30px;
}
/*.help-row:nth-child(odd) .help-data{
    padding: 0 0 0 30px;
}*/
.help-data h4 {
    font-size: 24px;
    font-weight: 500;
    color: #333;
    margin: 0 0 20px;
}
.help-data p {
    font-size: 18px;
    font-weight: normal;
    color: #666666;
    line-height: 30px;
    margin: 0 0 20px;
}
.help-data .btn-primary {
    margin-right: 30px;
}
/* **** End Help **** */

/* **** FAQs **** */
.faq-wrapper {
    padding: 50px 0;
}
.faq-list .accordion .accordion-item {
    margin: 0 0 25px;
    background-color: #fff4f4;
    border: 1px solid #fff4f4;
    border-radius: 15px;
    padding: 20px 0;
}
.faq-list .accordion .accordion-item:last-child {
    margin: 0;
}
.faq-list .accordion .accordion-item .accordion-button {
    font-size: 20px;
    color: #1a1a1a;
    font-weight: 500;
    background-color: transparent;
    padding: 0 60px 0 25px;
    position: relative;
}
.faq-list .accordion .accordion-item .accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
}
.faq-list .accordion .accordion-item .accordion-button:focus {
    box-shadow: none;
}
.faq-list .accordion .accordion-item .accordion-button::after {
    display: none;
}
.faq-list .accordion .accordion-item .accordion-button:before {
    position: absolute;
    content: "\f068";
    font-family: "Font Awesome 5 Pro";
    right: 5px;
    top: 50%;
    font-size: 18px;
    border-radius: 10px;
    color: #707070;
    height: 50px;
    width: 50px;
    text-align: center;
    display: block;
    font-weight: 500;
    line-height: 50px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.faq-list .accordion .accordion-item .accordion-button.collapsed:before {
    content: "\f067";
}
.faq-list .accordion .accordion-body {
    padding: 20px 50px 0 25px;
}
.faq-list .accordion .accordion-body p {
    margin: 0;
    font-size: 18px;
    font-weight: normal;
    color: #666666;
    line-height: 26px;
}
/* **** End FAQs **** */

/* **** Our Clients **** */
.client-wrp {
    padding: 50px 0;
    background-color: #fff4f4;
}
.clients-box {
    padding: 15px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 130px;
}

/* **** End Our Clients **** */

/* **** Footer **** */
footer {
    padding: 53px 0;
    background: #000000;
    position: relative;
}
footer .row {
    align-items: center;
}
footer .foot-block {
    /* max-width: 762px; */
}
footer .foot-block .foot-logo {
    max-width: 100%;
    margin: 0 0 40px;
}
footer .foot-block{
    /* max-width: 600px; */
}
footer .foot-block p {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    margin: 0 0 30px;
}
footer .foot-block .contact-info {
    margin: 0 0 35px;
}
footer .foot-block .contact-info ul li {
    margin: 0 0 30px 0;
}
footer .foot-block .contact-info ul li:nth-child(2) {
    margin: 0 0 30px;
}
footer .foot-block .contact-info ul li:last-child {
    margin: 0;
}
footer .foot-block .contact-info ul li a {
    display: flex;
    align-items: center;
}
footer .foot-block .contact-info ul li a .cnt-icon {
    background: rgba(255, 255, 255, 0.1);
    min-width: 50px;
    width: 50px;
    height: 50px;
    font-size:24px;
    color: #f2332d;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    margin-right: 20px;
}
footer .foot-block .contact-info ul li a h6 {
    margin: 0;
    color: #b0b0b0;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
footer .foot-block .contact-info ul li a h6 span {
    display: block;
    color: #fff;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    margin: 5px 0 0;
    display: block;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
footer .foot-block .contact-info ul li a:hover h6 {
    color: #f2332d;
}
footer .foot-block .contact-info ul li a:hover h6 span {
    color: #f2332d;
}
footer .foot-block .social-icons ul {
    display: flex;
    align-items: center;
}
footer .foot-block .social-icons ul li {
    margin-right: 20px;
}
footer .foot-block .social-icons {
    margin: 0 0 30px;
}
footer .foot-block .social-icons ul li:last-child {
    margin: 0;
}
footer .foot-block .social-icons ul li a {
    display: block;
}
footer .foot-block .social-icons ul li a img {
    max-width: 100%;
}
footer .foot-block .copyright p {
    color: #b0b0b0;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    margin: 0;
}
footer .footer-links {
    position: relative;
    z-index: 9;
    padding-left: 55px;
}
footer .footer-links .quicklinks h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 500;
    line-height: normal;
    margin: 0 0 30px;
}
footer .footer-links .quicklinks ul li {
    margin: 0 0 20px;
}
footer .footer-links .quicklinks ul li:last-child {
    margin: 0;
}
footer .footer-links .quicklinks ul li a {
    color: #b0b0b0;
    font-size: 18px;
	cursor: auto;
    font-weight: 500;
    line-height: 28px;
    margin: 0;
    padding-left: 30px;
    position: relative;
}
footer .footer-links .quicklinks ul li a:before {
    position: absolute;
    content: "\f101";
    color: #f2332d;
    font-size: 20px;
    font-family: "Font Awesome 5 Pro";
    font-weight: 600;
    left: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
footer .footer-links .quicklinks ul li a:hover {
    color: #fff;
    padding-left: 35px;
}
footer .mobile-copyright {
    display: none;
    padding: 15px 0;
    background: #000;
}
footer .mobile-copyright p {
    font-size: 15px;
    line-height: 24px;
    margin: 0;
    color: #b0b0b0;
    font-weight: 400;
    text-align: center;
}
/* **** End Footer **** */

/* **** Developer Steps **** */
.developer-step-wrp {
    padding: 60px 0 30px;
}
.developer-step-wrp .row {
    margin: 0 -30px;
}
.developer-step-wrp .col-md-3 {
    padding: 0 30px;
}
.developer-step-wrp .titlebar {
    margin: 0 0 56px;
}
.developer-step-wrp .titlebar h3 {
    text-transform: unset;
}
.developer-step-wrp .developer-block {
    position: relative;
}
.developer-step-wrp .developer-block:before {
    position: absolute;
    content: "";
    border-bottom: 2px dashed #f2332d;
    height: 1px;
    width: 100%;
    left: 0;
    top: 50px;
}
.developer-step-wrp .developer-box .box-icon {
    background: #fff;
    border: 2px solid #f2332d;
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 30px;
    border-radius: 100%;
    position: relative;
    z-index: 9;
}
.developer-step-wrp .developer-box .box-icon img {
    max-width: 100%;
}
.developer-step-wrp .developer-box h3 {
    color: #333;
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    line-height: normal;
    margin: 0 0 20px;
}
.developer-step-wrp .developer-box p {
    color: #666;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin: 0;
}
.developer-step-wrp .btn-primary {
    margin: 60px auto 0;
}
/* **** End Developer Steps **** */

/* **** PLans **** */
.plans-wrp {
    padding: 50px 0px;
}
.plans-wrp .titlebar {
    margin: 0 0 60px;
}
.plans-wrp .titlebar h3 {
    margin: 0 0 10px;
    text-transform: unset;
}
.plans-wrp .titlebar p {
    color: #666;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    max-width: 1000px;
    margin: 0 auto;
}
.plans-wrp .plans-box {
    border: 1px solid #f2332d;
    background: #fff;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.1);
    padding: 35px 35px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.plans-wrp .plans-box .box-title {
    position: relative;
}
.plans-wrp .plans-box .box-title img {
    max-width: 100%;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.plans-wrp .plans-box h4 {
    color: #000;
    font-size: 30px;
    font-weight: 500;
    line-height: normal;
    margin: 0 0 35px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.plans-wrp .plans-box h4 span {
    color: #f2332d;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    display: block;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.plans-wrp .plans-box ul {
    margin: 0 0 40px;
}
.plans-wrp .plans-box ul li {
    margin: 0 0 15px;
}
.plans-wrp .plans-box ul li:last-child {
    margin: 0;
}
.plans-wrp .plans-box ul li h5 {
    color: #333;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.plans-wrp .plans-box ul li h5 i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}
.plans-wrp .plans-box ul li h6 {
    padding-left: 30px;
    color: #f2332d;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.plans-wrp .plans-box .btn-primary {
    margin: 0 auto;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.plans-wrp .plans-box:hover {
    border: 1px solid #f2332d;
    background: #f2332d;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.1);
}
.plans-wrp .plans-box:hover .box-title img {
    filter: brightness(0) invert(1);
}
.plans-wrp .plans-box:hover h4 {
    color: #fff;
}
.plans-wrp .plans-box:hover h4 span {
    color: #fff;
}
.plans-wrp .plans-box:hover ul li h5 {
    color: #fff;
}
.plans-wrp .plans-box:hover ul li h6 {
    color: #fff;
}
.plans-wrp .plans-box:hover .btn-primary span {
    background: #fff;
    color: #f2332d;
}
.plans-wrp .plans-box:hover .btn-primary:before {
    border-color: #fff;
}
.plans-wrp .btn-secondary {
    margin: 50px auto 0;
    display: table;
}
/* **** End PLans **** */

/* **** Expertise **** */
.expertise-wrp {
    padding:50px 0;
}
.expertise-wrp .titlebar {
    margin: 0 0 30px;
}
.expertise-wrp .titlebar h3 {
    text-transform: unset;
    text-align: left;
}
.expertise-wrp .expertis-box {
    background: #fff;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    margin: 0 0 30px;
    position: relative;
}
.expertise-wrp .expertis-box:before {
    position: absolute;
    content: "";
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    background: #f2332d;
    height: 100%;
    width: 400px;
}
.expertise-wrp .expertis-box .box-title {
    background: #f2332d;
    height: 100%;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: unset;
    min-width: 400px;
    max-width: 400px;
    position: relative;
    z-index: 9;
}
.expertise-wrp .expertis-box .box-title h3 {
    color: #fff;
    font-family: Scandia;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}
.expertise-wrp .expertis-box .box-body {
    padding: 20px 30px;
}
.expertise-wrp .expertis-box .box-body ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.expertise-wrp .expertis-box .box-body ul li {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin: 10px 20px 10px 0;
    padding-right: 20px;
    position: relative;
}
.expertise-wrp .expertis-box .box-body ul li:last-child:before {
    display: none;
}
.expertise-wrp .expertis-box .box-body ul li:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 16px;
    background: #bbb;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.expertise-wrp .btn-secondary {
    margin: 60px auto 0;
    display: table;
}
/* **** End Expertise **** */

/* **** Freelance **** */
.freelance-wrp {
    padding: 50px 0;
}
.freelance-wrp .titlebar {
    text-align: left;
    margin: 0 0 30px;
}
.freelance-wrp .titlebar h3 {
    text-transform: unset;
    margin: 0 0 10px;
}
.freelance-wrp .titlebar p {
    color: #666;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    max-width: 1000px;
}
.freelance-wrp .freelance-block table {
    margin: 0;
}
.freelance-wrp .freelance-block table thead tr th {
    color: #333;
    font-size:20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 15px 0;
    border-bottom: 1px solid #bbb;
    vertical-align: middle;
    text-align: center;
}
.freelance-wrp .freelance-block table thead tr th img {
    width: 120px;
    margin: 0 auto;
}
.freelance-wrp .freelance-block table tbody tr td {
    color: #333;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #bbb;
}
.freelance-wrp .freelance-block table thead tr th:nth-child(3),
.freelance-wrp .freelance-block table tbody tr td:nth-child(3) {
    background: rgba(242, 51, 45, 0.1);
}
.freelance-wrp .freelance-block table thead tr th:first-child,
.freelance-wrp .freelance-block table tbody tr td:first-child {
    padding: 20px 0;
    text-align: left;
}
.freelance-wrp .freelance-block table tbody tr:last-child td {
    border: none;
}
/* **** End Freelance **** */

/* **** Digital **** */
.digital-wrp {
    padding: 0 0 135px;
}
.digital-wrp .digital-bg {
    width: 100%;
}
.digital-wrp .digital-block {
    background: #fff;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.1);
    max-width: 1425px;
    margin: -343px auto 0;
    padding: 95px;
    position: relative;
    z-index: 85;
}
.digital-wrp .digital-block h2 {
    color: #333;
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    line-height: normal;
    margin: 0 0 35px;
}
.digital-wrp .digital-block p {
    color: #666;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    max-width: 968px;
    margin: 0 auto;
}
/* **** End Digital **** */

/* **** video **** */
.videos-wrp {
    padding: 50px 0 50px;
}
.videos-wrp .titlebar {
    text-align: left;
    margin: 0 0 30px;
}
.videos-wrp .video-box {
    margin: 0 0 40px;
}
.videos-wrp .video-box .box-img{
    position: relative;
}
.play-btn{
    font-size:50px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: table;
    font-weight: 400;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
.play-btn i{
    font-weight: 400;
}
.play-btn:hover{
    color: #f2332d;
}
.videos-wrp .video-box .box-img img {
    width: 100%;
    border-radius: 10px;
    margin: 0 0 20px;
}
.videos-wrp .video-box h3 {
    color: #333;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    line-height: normal;
    margin: 0;
}
/* **** End video **** */


/* **** interview **** */
.interview-wrp {
    position: relative;
    padding: 150px 0;
    background-image: url("../images/interview-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.interview-wrp .description{
    max-width: 600px;
}
.interview-wrp .description h2 {
    color: #fff;
    font-size: 28px;
    line-height: 42px;
    font-weight: 500;
    margin: 0 0 15px;
}
.interview-wrp .description h3 {
    color: #fff;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    margin: 0 0 25px;
}
.interview-wrp .description ul {
    padding: 0 0 25px;
}
.interview-wrp .description ul li {
    position: relative;
    padding-left: 25px;
    color: #fff;
    font-size:16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin: 0 0 10px;
}
.interview-wrp .description ul li:last-child {
    margin: 0;
}
.interview-wrp .description ul li:before {
    position: absolute;
    content: "\f336";
    left: 0;
    top: 0px;
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    color: #f2332d;
    font-size: 16px;
}
.interview-wrp .counter-block {
    max-width: 550px;
}
.interview-wrp .counter-block .counter-box {
    display: flex;
    align-items: center;
    margin: 0 0 35px;
}
.interview-wrp .counter-block .counter-box .box-icon {
    margin-right: 8px;
}
.interview-wrp .counter-block .counter-box .box-icon img {
    width: 80px;
}
.interview-wrp .counter-block .counter-box .detail h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 500;
    line-height: normal;
    margin: 0 0 5px;
}
.interview-wrp .counter-block .counter-box .detail h3 {
    margin: 0;
    color: #fff;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    line-height: normal;
}
/* **** End interview **** */

/* **** Apply box **** */
.apply-box{
    position: fixed;
    bottom: 30px;
    left: 30px;
    max-width: 280px;
    width: 100%;
    border-radius: 15px;
    z-index: 999;
}
.apply-img{
    /*background: linear-gradient(to right, rgba(255,122,168,1) 0%,rgba(85,183,193,1) 100%);*/
    border-radius: 15px 15px 0 0;
}
.apply-img img{
    width: 100%;
}
.apply-dt{
    padding: 25px 15px;
    background: #fff;
    border-radius: 0 0 15px 15px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.apply-dt p{
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    line-height: 20px;
    margin: 0 0 10px;
}
.apply-dt a{
    font-size: 16px;
    font-weight: 500;
    color: #F2332D;
    margin: 0 0 15px;
    display: table;
}
.apply-dt a i{
    margin-left: 5px;
}
.apply-dt a:hover{
    color: #111;
}
.apply-dt h6{
    margin: 0;
    color: #FF952E;
    font-size: 12px;
    font-weight: 500;
}
.apply-dt h6 i{
    margin-right: 5px;
    font-size: 10px;
}
.close-apply{
    position: absolute;
    top: -50px;
    right: 0;
    font-size: 30px;
    color: #D9D9D9;
    font-weight: 400;
}
.close-apply:hover{
    color: #F2332D;
}

.whatsapp-btn{
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}
.whatsapp-btn img{
    width: 60px;
}
.whatsapp-btn:hover{
    opacity: 0.60;
}
/* **** End Apply box **** */


.file-name-info .file-container{
    color: #f2332d;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 15px;
    margin: 0 0 10px;
    position: relative;
    border: 1px solid #f2332d;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.file-name-info .file-container span.delete-button{
    cursor: pointer;
}