
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@font-face {
    font-family: 'Circular Std Book';
    src: url('../../assets/fonts/CircularStd-Book.eot');
    src: url('../../assets/fonts/CircularStd-Book.eot?#iefix') format('embedded-opentype'),
        url('../../assets/fonts/CircularStd-Book.woff2') format('woff2'),
        url('../../assets/fonts/CircularStd-Book.woff') format('woff'),
        url('../../assets/fonts/CircularStd-Book.ttf') format('truetype'),
        url('../../assets/fonts/CircularStd-Book.svg#CircularStd-Book') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Circular Std';
    src: url('../../assets/fonts/CircularStd-Bold.eot');
    src: url('../../assets/fonts/CircularStd-Bold.eot?#iefix') format('embedded-opentype'),
        url('../../assets/fonts/CircularStd-Bold.woff2') format('woff2'),
        url('../../assets/fonts/CircularStd-Bold.woff') format('woff'),
        url('../../assets/fonts/CircularStd-Bold.ttf') format('truetype'),
        url('../../assets/fonts/CircularStd-Bold.svg#CircularStd-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Messy Child Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Messy Child Regular'),
    url('../../assets/fonts/MessyChild.woff') format('woff');
}
/*Body*/

:root{
    --primary: #047B90;
    --secondary: #D85238;
    --blue: #363636;
    --font-cbook: "Kanit", sans-serif;
    --font-cbold: "Kanit", sans-serif;
    --font-roboto: 'Roboto', sans-serif;
    --font-messy: 'Messy Child Regular';
    --gradient: linear-gradient(45deg, var(--primary) 40%, var(--secondary));
    --white: #fff;
    --radius: 8px;
}

body{
    font-family: 'Barlow', sans-serif !important;
    color: #2D2D2D;
    overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6{
    font-family: var(--font-cbold);
    color: var(--blue);
}
h1{}
h2{}
h3{
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    margin: 10px 0;
}
h4{
    font-size: 22px;
    font-weight: 500;
    font-family: var(--font-cbook);
    color: var(--blue);
    margin: 8px 0;
}
h5{}
.font-cbook{
    font-family: var(--font-cbook) !important;
}
.font-circular{
     font-family: var(--font-cbold) !important;
}
.font-roboto{
    /* font-family: var(--font-roboto) !important; */
}
.color-primary{
    color: #047B90;
}
.color-secondary{
    color: #D85238;
}
ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.hd{
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;
    color: var(--primary);
}
/*Body*/

/*Extra*/
h2,.sec-heading{
    font-size: 42px;
    font-weight: 600;
    margin: 8px 0;
    color: var(--blue);
    line-height: 50px;
    text-transform: capitalize;
}
p,
.sec-para{
    font-size: 17px;
    font-weight: 400;
    line-height: 28px;
    margin: 10px 0;
}
.btn-business{
    background-color: var(--primary) !important;
    padding: 10px 38px;
    font-family: 'Circular Std' !important;
    color: #fff;
    font-size: 18px;
    border-radius: 0;
    transition: all .5s ease;
    text-transform: capitalize;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border: 0;
    z-index: 0;
}
.btn-business:before,
.btn-business:after
{
    position: absolute;
    top: 50%;
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    z-index: -1;
    opacity: 1;
}
.btn-business:after, 
.btn-business:before {
    background-image: -webkit-linear-gradient(0deg,#04ada4 0,#04ada4 100%);
}
.btn-business:before {
    left: -20px;
    transform: translate(-50%,-50%);
}
.btn-business:after {
    right: -20px;
    transform: translate(50%,-50%);
}
.btn-business:hover{
    color: #fff !important;
}
.btn-business:hover:before {
    -webkit-animation: criss-cross-left .8s both;
    animation: criss-cross-left .8s both;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}
.btn-business:hover:after {
    -webkit-animation: criss-cross-right .8s both;
    animation: criss-cross-right .8s both;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-2px); }
  50% { transform: translateX(2px); }
  75% { transform: translateX(-2px); }
  100% { transform: translateX(0); }
}

.btn.btn-white {
    background-color: var(--white);
    padding: 10px 38px !important;
    font-family: 'Circular Std' !important;
    color: #1d71ac;
    font-size: 20px;
    border-radius: 10px !important;
    transition: transform 0.2s;
}

.btn.btn-white:hover {
    animation: shake 0.3s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
}

label.error {
    display: none !important;
}

input.error, textarea.error {
    border-color: red !important;
}
@-webkit-keyframes criss-cross-left {
    0% {
        left: -20px
    }

    50% {
        left: 50%;
        width: 20px;
        height: 20px
    }

    100% {
        left: 50%;
        width: 375px;
        height: 375px
    }
}

@keyframes criss-cross-left {
    0% {
        left: -20px
    }

    50% {
        left: 50%;
        width: 20px;
        height: 20px
    }

    100% {
        left: 50%;
        width: 375px;
        height: 375px
    }
}

@-webkit-keyframes criss-cross-right {
    0% {
        right: -20px
    }

    50% {
        right: 50%;
        width: 20px;
        height: 20px
    }

    100% {
        right: 50%;
        width: 375px;
        height: 375px
    }
}

@keyframes criss-cross-right {
    0% {
        right: -20px
    }

    50% {
        right: 50%;
        width: 20px;
        height: 20px
    }

    100% {
        right: 50%;
        width: 375px;
        height: 375px
    }
}
.btn-business{
    background-color: var(--primary);
    padding: 10px 38px !important;
    font-family: 'Circular Std' !important;
    color: #fff;
    font-size: 20px;
    border-radius: var(--radius);
}
.btn-business:hover{
    background-color: #000;
    color: #fff !important;
}
.container{
    width: 100%;
    max-width: 100%;
    padding: 0 6%;
}
header .container,.banner .container{
    transition: all .5s ease;
}
.dis-flex-start{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.dis-flex-center{
    display: flex;
    align-items: center;
    justify-content: center;
}
.dis-flex-end{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.inner-banner{}
.box_top{
    position: relative;
}
.box_top:hover:before{
    width: 30%;
}
.box_top:before{
    position: absolute;
    content: "";
    width: 25%;
    height: 4px;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    background-color: var(--primary);
    transition: all .5s ease;
}
/*Extra*/

/*Header*/
header{
    position: absolute;
    width: 100%;
    z-index: 99;
    padding: 20px 0;
    font-family: var(--font-cbold);
}
header nav{}
header nav .navbar-brand{}
header nav .navbar-brand img{}
header nav .navbar-nav{}
header nav .navbar-nav li{
    line-height: 30px;
    margin: 0 10px;
}
header nav .navbar-nav li a.btn-business{
    background-color: var(--primary) !important;
    font-family: var(--font-cbold) !important;
    font-weight: 400;
}
header nav .navbar-nav li a{
    color: #fff;
    font-size: 18px;
    margin: 0 0px;
    transition: all .5s ease;
    text-decoration: none;
    text-transform: capitalize;
    padding: 10px 38px;
    font-weight: 400;
}
header nav .navbar-nav li a.btn:hover{
    color:#fff !important;
}
header nav .navbar-nav li:last-child{}
header nav .navbar-nav li:last-child a{}
header nav .navbar-nav li a:hover,
header nav .navbar-nav li a.active{
    color: var(--primary);
}
section.clients-logo ul li {
    display: inline-block;
    width: 15%;
    margin-right: 10px;
}

section.clients-logo ul {
    text-align: center;
    margin-top: 15px;
}
/*Header*/

/*Banner*/
section.banner{
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    height: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    background-color: #03517e;
}
section.banner .content{bottom: unset;top: 30%;padding: 0 0 !important;text-align: center;}
section.banner .content h3{
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    padding: 0 0 0 60px;
    position: relative;
    padding: 0;
    text-transform: capitalize;
}
section.banner .content h3:before{
    position:absolute;
    content:"";
    background-color: #fff;
    width: 50px;
    height: 1px;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: none;
}
section.banner .carousel-item {}
section.banner .carousel-item img{}
section.banner .content h3 img{
    margin: 0 8px;
}
section.banner .content h2, section.banner .content h1{
    font-size: 65px;
    font-weight: 600;
    line-height: 70px;
    color: #fff;
    text-transform: capitalize;
}
section.inner_banner .content h2{
    margin: 0px 0 0;
}
section.inner_banner .content{text-align: center;}
section.inner_banner .content p{
  margin: 0 0 15px !important;
}
section.banner .content p{
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin: 10px 0 50px;
    padding: 0 20%;
}
section.banner .content a.btn{
    background-color: #04ada4d9 !important;
    border-radius: var(--radius) !important;
}
section.banner button.carousel-control-prev,
section.banner button.carousel-control-next{
    z-index: 2;
}
/*Banner*/
/*Logos*/
section.logo{
    position: relative;
    top: 0;
    z-index: 0;
}
section.logo .logo_in{
    background-color: #fff;
    padding: 30px 40px;
    position: relative;
    border-radius: 8px;
}
section.logo .logo_in:before{
    position:absolute;
    content:"";
    background-color: var(--primary);
    width: 25%;
    height: 4px;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    transition: all .5s ease;
}
section.logo .logo_in .item{
    margin: 0 15px;
}
section.logo .logo_in{}
section.logo .logo_in img{
    margin: auto;
    height: 180px;
    object-fit: scale-down;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    filter: grayscale(1);
}
section.logo .sec-heading{
    text-align: center;
    margin: 0 0 30px;
}
.center_head_content h3 {
    /*font-size: 42px;*/
}
.industy_image img {
    max-width: 100%;
}

.industy_image {
    position: relative;
}

.content_industry {
    position: absolute;
    bottom: 24px;
    color: #fff;
    left: 24px;
    font-size: 1.5rem;
}

section.industry_served {
    padding: 5rem 0;
}

section.industry_served h3 {
    text-align: center;
    /*font-size: 42px;*/
}
section.industry_served p {
    text-align: center;
    margin-bottom: 24px;
}
.pb20 {
    padding-bottom: 5rem !important;
}
img.expert_logo {
    width: 25px;
}
section.services_content .content ul.features li a {
    text-decoration: none;
}
/*Logos*/
/*Top Rated*/
section.top-rated{
    padding: 60px 0;
}
section.top-rated .vertical{
    position: absolute;
    top: 0;
    bottom: 0;
    left: -100px;
    right: 0;
    margin: auto;
    display: flex;
    align-items: center;
}
section.top-rated .vertical h2{
    writing-mode: vertical-rl;
    text-orientation: mixed;  
    transform: rotate(180deg);
    font-size: 80px;          
    line-height: 80px;
    -webkit-text-stroke: 2px #047b902b; 
    text-stroke: 1px #000;   
    color: transparent;
    width: 100%;
    height: 100%;
    text-align: center;
}
section.top-rated .content{
    padding: 0 0% 0% 40px;
}
section.top-rated .content h2{}
section.top-rated .content p{
    width: 80%;
    margin: 15px 0;
}
section.top-rated .content a.btn-business{
    margin: 20px 0 0;
}
section.portfolio_content img {
    max-width: 100%;
    border: 1px solid #ddd;
}

section.portfolio_content {
    padding: 4rem 0;
    text-align: center;
}section.portfolio_content p {
    margin-bottom: 24px;
}
section.top-rated .img-box{
    position: relative;
}
section.top-rated .img-box img{
    width: 100%;
    position: relative;
}

/*Top Rated*/

/*Packages*/
section.packages{
    background-color: #047b90;
    padding: 60px 0 100px;
}
.border-none{
    border: none !important;
}
section.packages h2{
    color: #fff;
}
section.packages p{width: 100%;margin: 0 auto 30px;color: #fff;}
section.packages .p_box{
    background-color: #fff;
    padding: 15% 15%;
    position: relative;
    /* border: 1px solid #F6F6F6; */
    transition: all .5s ease;
    border-radius: 8px;
    z-index: 1;
}
section.packages .p_box h3{
    font-family: var(--font-cbook);
    margin: 0;
    color: var(--blue);
}
section.packages .p_box:hover{
    background-color: #fff;
    border-color: #F6F6F6;
}
/*section.packages .p_box:before{
    position: absolute;
    content: "";
    background-color: var(--primary);
    width: 0;
    height: 4px;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    transition: all .5s ease;
}*/
/*section.packages .p_box:hover:before{
    width: 30%;
}*/
section.packages .p_box a.btn{
    padding: 0;
    margin: 0;
    position: absolute;
    bottom: -18px;
    right: 0;
    left: 0;
    margin: auto;
    font-size: 25px;
    color: var(--secondary);
    transition: all .5s ease;
    display: none;
}
section.packages .p_box:hover a.btn{
    color: var(--primary);
    bottom: 0;
}
section.packages .p_box ul.bullets{
    margin: 25px 0;
}
section.packages .p_box ul.bullets{}
section.packages .p_box ul.bullets li{
    font-size: 18px;
    font-weight: 400;
    line-height: 48px;
    padding: 0 0 0 25px;
    position: relative;
    cursor: pointer;
}
section.packages .p_box ul.bullets li:hover:before{
    
left: 10px;
}
section.packages .p_box ul.bullets li:before{
    position:absolute;
    content: "";
    background: url(../../assets/images/arrow.png)no-repeat;
    color: #000;
    left: 0;
    top: 0;
    font-size: 16px;
    font-weight: 500;
    width: 7px;
    height: 12px;
    bottom: 0;
    margin: auto;
    transition: all .5s ease;
}
section.packages .p_box ul.apps{display: flex;justify-content: space-between;}
section.packages .p_box ul.apps li{}
section.packages .p_box ul.apps li:hover img{transform: scale(1.1);}
section.packages .p_box ul.apps li img{
    transition: all .5s ease;
    cursor: pointer;
}
/*Packages*/
/*Values*/
section.values{
    padding: 60px 0 120px;
}
section.values .img-box{
    position: relative;
}
section.values .img-box img{
    position: relative;
        height: 600px;
    width: 100%;
    object-fit: cover;
}
section.values .content{
    padding: 0 15% 0 15%;
}
section.values .content h2{
    margin: 0 0 20px;
}
section.values .content h5 {
    font-size: 22px;
    margin-bottom: 20px;
}
section.values .content li{margin: 0 0 50px;}
section.values .content li h4{
    margin: 0;
}
section.values .content li h4 img{}
section.values .content li p{
    line-height: 28px;
    margin: 0 0 0;
}
section.values .overlay{
    width: 75%;
    right: -100px;
    bottom: -80px;
    position: absolute;
    text-align: left;
    background: linear-gradient(120deg, #d85238, var(--primary));
    color: var(--white);
    padding: 15% 5%;
}
section.values .overlay:before{
    position: absolute;
    content: "";
    padding: 0px 35px 0px 80px;
    background-color: transparent;
    background-image: linear-gradient(220deg, #047b90eb 45%, #FFFFFF00 16%);
    left: -115px;
    bottom: 0;
    z-index: 9999999;
    width: 80px;
    height: 80px;
}
section.values .overlay p{
    margin: 0px 0 20px;
}
section.values .overlay h6{
    color: var(--white);
    font-size: 20px;
}
section.values .overlay h6 span{
    display: block;
    font-weight: unset;
    font-size: 14px;
}
/*Values*/
/*CTA*/
section.cta{
    padding: 100px 0;
    color: #fff;
    background-size: cover !important;
    background-position: center !important;
/*     background: var(--gradient) !important; */
}
section.cta .content{}
section.cta .content h2{color: #fff;}
section.cta .content p{}
section.cta a.btn{
    background-color: #fff !important;
    color: var(--primary);
}
/*CTA*/
/*Testimonials*/
section.testimonial{
    padding: 60px 0;
}
section.testimonial .item{
    margin: 10px;
}
section.testimonial .client_box{
    box-shadow: 0px 0px 10px 0px #e5e5e591;
    padding: 30px 30px 20px;
    border: 1px solid #f7f7f7;
    border-radius: 10px;
    position: relative;
    background-color: #fdfdfd;
}
section.testimonial .client_box:after{
    position:absolute;
    content:"";
    background: url(../../assets/images/quote.png)no-repeat;
    width: 135px;
    height: 110px;
    right: 1%;
    top: 2%;
    z-index: 1;
}
section.testimonial .client_box .star{}
section.testimonial .client_box .star img{
    width: 60px;
}
section.testimonial .client_box p{
    margin: 15px 0 20px;
    font-size: 14px;
    line-height: 24px;
    min-height: 240px;
    font-weight: 500;
    color: #000;
}
section.testimonial .client_box .media{
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

section.testimonial .client_box .media .img-box{
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #03517e, #2cbdd7);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}
section.testimonial .client_box .media img{
    width: 62px;
    height: 62px;
    object-fit: scale-down;
    border: 1px solid #e9e9e9;
    border-radius: 40px;
    background-color: #fff;
}
section.testimonial .client_box .media .media-body{
    padding:  0 0 0 15px;
}
section.testimonial .client_box .media .media-body h4{margin: 0;font-size: 16px;font-weight: 500;color: #000;}
section.testimonial .client_box .media .media-body h4 span{
    display: block;
    font-size: 18px;
}
section.testimonial .slick-arrow{}
section.testimonial .slick-prev,
section.web_process .slick-prev,
#service_slider .slick-prev{
    right: 3% !important;
}
section.testimonial .slick-next{}

section.testimonial .slick-prev,
section.testimonial .slick-next,
section.web_process .slick-next,
section.web_process .slick-prev,
#service_slider .slick-prev,
#service_slider .slick-next
{
    position: absolute;
    right: 0%;
    bottom: -30px;
    width: 30px;
    height: 30px;
    font-size: 0;
    z-index: 1;
    border: transparent;
    background-color: #E9E9E9;
    border-radius: 30px;
    transition: all .5s ease;
}
section.testimonial .slick-prev:hover, 
section.testimonial .slick-next:hover,
section.web_process .slick-next:hover,
section.web_process .slick-prev:hover,
#service_slider .slick-next:hover,
#service_slider .slick-prev:hover
{
    background-color: var(--primary);
}
section.testimonial .slick-prev:before,
section.web_process .slick-prev:before,
#service_slider .slick-prev:before{
    transform: rotate(180deg);
}
section.testimonial .slick-prev:before,
section.testimonial .slick-next:before,
section.web_process .slick-next:before,
section.web_process .slick-prev:before,
#service_slider .slick-next:before,
#service_slider .slick-prev:before
{
    position: absolute;
    content: "";
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: url(../../assets/images/arrow.png)no-repeat;
    left: 0;
    top: 0;
    right: 0;
    font-size: 16px;
    font-weight: 500;
    width: 7px;
    height: 12px;
    bottom: 0;
    margin: auto;
    filter: invert(1);
}
section.testimonial .slick-next:before{}
/*Testimonials*/

/*Contact*/
section.contact{
    padding: 60px 0;
    position: relative;
}
section.contact:before{
    position: absolute;
    content:"";
    background: url(../../assets/images/banner-small.png)no-repeat;
    background-size: cover;
    background-position: center;
    height: 50%;
    width: 100%;
    z-index: -1;
    top: 0;
    left: 0;
}
section.contact .content{
    text-align: center;
    padding: 40px 0 80px;
}
section.contact .content h2{
    color: var(--white);
}
section.contact .content p{
    color: var(--white);
    width: 50%;
    margin: auto;
}
section.contact .t_box{
    background-color: #FCFCFC;
    text-align: center;
    padding: 80px 20px;
    border-radius: 8px;
}
section.contact .t_box h3{
    font-size: 70px;
    font-weight: 400;
    line-height: 100px;
    font-family: var(--font-messy);
}
section.contact .t_box p{
    font-size: 22px;
    margin: 40px 0 30px;
}
section.contact .t_box p a{
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
}
section.contact .t_box img{}
section.contact .contact_box{
    background-color: #fff;
    padding: 10px 30px;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
}
section.contact .contact_box h2{
    margin: 0;
}
section.contact .contact_box p{
    margin: 0 0 9px;
}
section.contact .contact_box form{}
section.contact .contact_box form .form-control,
.form-control{
    font-size: 16px;
    font-weight: 400;
    padding: 10px 0px;
    border: 0;
    border-bottom: 1px solid #DFDFDF;
    border-radius: 0;
    resize: none;
    min-height: 70px;
    transition: all .5s ease;
    box-shadow: unset !important;
    background: transparent;
}
section.contact .contact_box form .form-control::placeholder,
.form-control::placeholder{
    color: #595959;
}
section.contact .contact_box form {}
section.contact .contact_box form .form-check,
.form-check{
    margin: 30px 0 30px !important;
}
section.contact .contact_box form .form-check .form-check-input{}
section.contact .contact_box form .form-check .form-check-label,
.form-check .form-check-label{
    font-size: 16px;
}
section.contact .contact_box form button{
    width: 30%;
}
section.contact .contact_box form textarea{
    min-height: 70px !important;
}
section.contact .contact_box form .form-control:focus,
section.contact .contact_box form .form-control:active,
.customRadio input[type="radio"]+label:focus-visible,
.form-control:focus,
.form-control:active,
.form-control:focus-focus-visible,
.modal .other-f:focus,
.modal .form-control:focus,
.modal .form-control:active{
    box-shadow: none;
    border-color: var(--primary) !important;
    outline: none;
}
/*Contact*/
/*Support*/
section.support{
    padding: 60px 0;
}
section.support .box{
    padding: 40px 18px;
    /* border: 1px solid #EFEFEF; */
    background-color: #fff;
    box-shadow: 0px 0px 10px 0px #f9f9f9;
    transition: all .5s ease;
    text-align: center;
    min-height: 310px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: all .5s ease;
    border-radius: 8px;
    background-color: #F8F8F8;
}
section.support .box:hover{
    cursor: pointer;
    background-color: #FFFFFF;
    box-shadow: 0px 4px 10px 2px rgb(176 176 176 / 14%);
}
section.support .box:hover img{transform: scale(1.1);}
section.support .box .img-box{
    width: 75px;
    height: 75px;
}
section.support .box .img-box img{
    height: 100%;
    width: 100%;
    transition: all .5s ease;
}
section.support .box h4{
    margin: 20px 0 0;
}
section.support .box p{}
/*Support*/
/**/
/*Footer*/
footer{
    background-position: center !important;
    background-size: cover !important;
    color: #fff;
    padding: 100px 0 0;
}
footer .foot_cta{
    border-bottom: 1px solid #404040;
    padding: 0px 0 60px;
    margin: 0 0 60px;
    display: none;
}
footer .foot_cta .content{}
footer .foot_cta .content h2{
    color: #fff;
}
footer .foot_cta a.btn{
    background-color: var(--primary);
}
footer .foot_main{}
footer .foot_main .footer_logo{}
footer .foot_main .footer_logo img{}
footer .foot_main p{
    margin: 20px 0 30px;
    color: var(--white);
    font-weight: 400;
}
footer .foot_main ul.social{
    display: -webkit-box;
    margin: 30px 0 30px;
}
footer .foot_main ul.social li{
    margin: 0 20px 0 0;
}
footer .foot_main ul.social li a{
    transition: all .5s ease;
}
footer .foot_main ul.social li a:hover{
    color: var(--primary);
}
footer .foot_main ul.social li a:hover i{
    color: var(--primary);
}
footer .foot_main ul.social li a i{
    font-size: 20px;
    color: #fff;
    transition: all .5s ease;
}
footer .foot_main .clutch{}
footer .foot_main .clutch img{}
footer .foot_main h3{
    font-size: 22px;
    color: #fff;
    font-family: var(--font-cbook);
    font-weight: 500;
}
footer .foot_main ul.menu{
    margin: 0 0 30px;
}
footer .foot_main ul.menu li{
    /* line-height: 40px; */
    margin: 0 0 10px;
}
footer .foot_main ul.menu li a{
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    position: relative;
    padding: 0 0 4px;
    font-weight: 500;
}
footer .foot_main ul.menu li a:before{
        position:absolute;
        content:"";
        background-color: var(--primary);
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        transition: all .5s ease;
}
footer .foot_main ul.menu li a:hover:before{
    width:100%;
}
footer .foot_main h3 img{
    margin: 0 5px 0 0;
    position: relative;
    top: -2px;
    width: 20px;
    height: 15px;
    object-fit: contain;
}
footer .copyright{
    padding: 20px 0 40px;
    margin: 70px 0 0;
    border-top: 1px solid #404040;
}
footer .copyright p{
    color: var(--white);
    font-weight: 500;
}
footer .copyright p a{
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
}
/*Footer*/
/*Scroll*/
#scroll {
    position:fixed;
    right: 25px;
    bottom: 25px;
    cursor:pointer;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    text-indent:-9999px;
    display:none;
    -webkit-border-radius:60px;
    -moz-border-radius:60px;
    border-radius: 0;
    transition: all .5s ease;
    z-index: 3;
}
#scroll span {
    position:absolute;
    top:50%;
    left:50%;
    margin-left:-8px;
    margin-top:-12px;
    height:0;
    width:0;
    border: 8px solid transparent;
    border-bottom-color: #ffffff;
}
#scroll:hover {
    background-color:#e74c3c;
    opacity:1;filter:"alpha(opacity=100)";
    -ms-filter:"alpha(opacity=100)";
}
/*Scroll*/


/**********************INNER-PAGES*************************/
/*About*/
section.about_strategy{
    padding: 60px 0;
}
section.about_strategy .sec-heading{}
section.about_strategy .counter{
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 40px 0 70px;
}
section.about_strategy .counter li{}
section.about_strategy .counter li:hover h3 span{
    background: linear-gradient(to right, #2145a0 0%, #F25A5F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
section.about_strategy .counter li h3 span{font-size: 45px;margin: 0;transition: all ,5s ease;width: 100px;display: inline-table;}
section.about_strategy .counter li span{
    font-size: 24px;
}
section.about_strategy .box{
    min-height: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: all .5s ease;
    border-radius: 8px;
    padding: 45px;
    background-color: #F8F8F8;
}
section.about_strategy .box:hover{
    background-color: #FFFFFF;
    box-shadow: 0px 4px 10px 2px rgb(176 176 176 / 14%);
}
section.about_strategy .box h3{}
section.about_strategy .box p{
    margin: 0 0;
}
/*About*/

/**Contact**/

/*Findus*/
section.findus{
    padding: 60px 0;
    text-align: center;
}
section.findus .content h1.sec-heading{
    margin: 0px 0 !important;
}
section.findus h2{}
section.findus .box{
    padding: 10px 80px;
}
section.findus ul{}
section.findus ul li{}
section.findus ul li a{}
section.findus .box .img-box{min-height: 180px;display: flex;align-items: flex-end;justify-content: center;}
section.findus .box .img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}
section.findus .box h3{
    font-size: 35px;
    margin: 10px 0 8px;
    color: var(--primary);
}
section.findus .box ul{}
section.findus .box ul li{
    font-size: 20px !important;
    font-weight: 400 !important;
    line-height: 30px;
    font-family: var(--font-cbook);
    padding: 0 0 !important;
    margin: 0 0 !important;
}
section.findus .box ul li a{
    color: var(--blue);
    text-decoration: none;
}
/*Findus*/

/**Contact**/
/**********************INNER-PAGES*************************/

/*Loader*/
.overlay_loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000000;
}
.overlay_loader .overlayDoor:before, .overlay_loader .overlayDoor:after {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  background: var(--blue);
  transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
  transition-delay: 0.8s;
}
.overlay_loader .overlayDoor:before {
  left: 0;
}
.overlay_loader .overlayDoor:after {
  right: 0;
}
.overlay_loader.loaded .overlayDoor:before {
  left: -50%;
}
.overlay_loader.loaded .overlayDoor:after {
  right: -50%;
}
.overlay_loader.loaded .overlayContent {
  opacity: 0;
  margin-top: -15px;
}
.overlay_loader .overlayContent {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
}
.overlay_loader .overlayContent .skip {
  display: block;
  width: 130px;
  text-align: center;
  margin: 50px auto 0;
  cursor: pointer;
  color: #fff;
  font-family: "Nunito";
  font-weight: 700;
  padding: 12px 0;
  border: 2px solid #fff;
  border-radius: 3px;
  transition: 0.2s ease;
}
.overlay_loader .overlayContent .skip:hover {
  background: #ddd;
  color: #444;
  border-color: #ddd;
}

.loader {
  width: 128px;
  height: 128px;
  border: 3px solid var(--primary);
  border-bottom: 3px solid transparent;
  border-radius: 50%;
  position: relative;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader .inner {
  width: 64px;
  height: 64px;
  border: 3px solid transparent;
  border-top: 3px solid var(--primary);
  border-radius: 50%;
  -webkit-animation: spinInner 1s linear infinite;
          animation: spinInner 1s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spinInner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-720deg);
  }
}
@keyframes spinInner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-720deg);
  }
}
/*Loader*/

/*Scroll Down*/
.scroll-down{
    position: absolute;
    left: 8%;
    bottom: 4%;
    width: 100px;
    height: 100px;
    cursor: pointer;
    display: none;
}
.scroll-down span{
    margin-top: 15px !important;
    display: block;
    text-align: center;
    font-size: 20px;
    z-index: 100;
    text-decoration: none;
    text-shadow: none;
    width: 18px;
    height: 18px;
    margin: auto;
    border-bottom: 4px solid var(--primary);
    border-right: 4px solid var(--primary);
    -webkit-transform: translate(-50%, 0%) rotate(45deg);
    -moz-transform: translate(-50%, 0%) rotate(45deg);
    transform: translate(-50%, 0%) rotate(45deg);
    -webkit-animation: fade_move_down 4s ease-in-out infinite;
    -moz-animation: fade_move_down 4s ease-in-out infinite;
    animation: fade_move_down 2s ease-in-out infinite;
}
.scroll-down:before{
    position: absolute;
    content: "Scroll Down";
    transform: rotate(270deg);
    left: 0;
    top: -50px;
    bottom: 80px;
    right: 0px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    /* opacity: .8; */
    transition: all .2s ease;
}
.scroll-down:hover:before{
    opacity: 1;
}
@keyframes fade_move_down {
    0% {
      transform: translate(0, -10px) rotate(45deg);
      opacity: 0;
    }

    50% {
      opacity: 1;
    }

    100% {
      transform: translate(0, 10px) rotate(45deg);
      opacity: 0;
    }
}
/*Scroll Down*/


/*Privacy Policy*/
.inner_banner{
    height: 600px !important;
}
section.privacy_policy{
    padding: 60px 0;
}
section.privacy_policy p{}
section.privacy_policy h4{
    margin: 20px 0 0;
}
section.privacy_policy ul{}
section.privacy_policy ul li{
    font-size: 18px;
    padding: 0 0 0 15px;
    position: relative;
}
section.privacy_policy ul li:before{
    position:absolute;
    content:"";
    background: url(../../assets/images/arrow.png)no-repeat;
    color: #000;
    left: 0;
    top: 0;
    font-size: 16px;
    font-weight: 500;
    width: 7px;
    height: 12px;
    bottom: 0;
    margin: auto;
    background-size: 80%;
}
/*Privacy Policy*/
/*Free Quote*/
section.locations.qoute {
    padding: 60px 0;
}
section.locations.qoute .form{
    padding: 30px 30px;
    background-color: #FCFCFC;
    border-radius: 8px;
    width: 100%;
}
section.locations.qoute .form .mb-3.form-check {
    text-align: left;
}
section.locations.qoute form .form-control{
    margin: 0 0 15px;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 10px;
    border: 0;
    border-bottom: 1px solid #DFDFDF;
    border-radius: 0;
    resize: none;
    min-height: 50px;
    transition: all .5s ease;
    background-color: transparent;
}
section.locations.qoute form label{
    font-size: 14px;
}
section.locations.qoute form .form-control:focus{
    box-shadow: none;
    border-color: var(--primary);
}
section.locations.qoute form input,
section.locations.qoute form textarea{}
section.locations.qoute form textarea{
    resize: none;
}
/*Free Quote*/
/*Get Started Modal*/
.get_modal {
}
.get_modal .modal-header {
    display: unset;
    text-align: center;
    padding: 0 0;
    padding: 0 0 10px;
    border: 0;
}
.get_modal .modal-header h3{
    line-height: 40px;
    font-size: 30px;
    margin: 0;
    color: var(--blue);
}
.get_modal .modal-header p{
    font-size: 16px;
    margin: 0;
    color: var(--blue);
}
.get_modal .modal-header .btn-close{
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #fff;
    opacity: 1;
    box-shadow: none;
    outline: none;
}
.get_modal .modal-body {}
.get_modal .modal-body form{}
.get_modal .modal-body form input,
.get_modal .modal-body form textarea{
    font-size: 15px;
    font-weight: 400;
    padding: 10px 0px 0;
    border: 0;
    border-bottom: 1px solid var(--blue);
    border-radius: 0;
    resize: none;
    transition: all .5s ease;
    margin: 0 0 15px;
    min-height: 50px;
    color: var(--blue);
    background-color: transparent;
}
.get_modal .modal-body form input::placeholder,
.get_modal .modal-body form textarea::placeholder{
    color: var(--blue);
}
.get_modal .modal-body form textarea{min-height: 90px;}
.get_modal .modal-body form button{
    font-size: 16px;
    background-color: var(--blue) !important;
    color: var(--white);
    margin: 20px 0 0;
}
.get_modal .modal-content{
    padding: 30px 20px;
    background: var(--white);
    color: var(--blue);
    border: 2px solid var(--white);
}
.get_modal .modal-content form .form-control:focus {
    box-shadow: none;
    border-color: var(--secondary);
}
/*Get Started Modal*/
section.locations.qoute .content ul li {padding: 0 0 0 70px;position: relative;margin:  0px;font-size: 17px;font-weight:  500;color: #4e4e4e;}
section.locations.qoute .content ul li+li {margin-top: 50px;}
section.locations.qoute .content ul li strong { font-weight:  700; display:  block; }
section.locations.qoute .content ul li img { position:  absolute; left:  0px; top:  -8px;  }
section.locations.qoute .content ul li:nth-child(2) img {left: 8px;}
section.locations.qoute .p_clients img {
    margin: 0 10px 0px 0 !important;
    background-color: #fcfcfc;
    padding: 10px 10px;
    min-height: 65px;
    object-fit: scale-down;
    width: 30%;
}

/*PopUp Form New*/
#Modal_button {
    margin-top: 200px;
    position: relative;
    width: 20%;
    border: none;
}
.custom_wizard_form .customRadio input[type="radio"] {
    position: absolute;
    left: -9999px;
}
.custom_wizard_form .customRadio input[type="radio"]+label {
    position: relative;
    cursor: pointer;
    border-bottom: 1px solid #DFDFDF;
    width: 80%;
    margin: 0 auto;
    padding: 10px 0 10px 50px;
    font-size: 16px;
    transition: all .5s ease;
}
.custom_wizard_form .customRadio input[type="radio"]+label:before {
    content: '';
    background: #fff;
    border: 2px solid var(--secondary);
    height: 20px;
    width: 20px;
    border-radius: 50%;
    position: absolute;
    top: 14px;
    left: 12px;
}
.custom_wizard_form .customRadio input[type="radio"]+label:after {
    content: '';
    background: var(--secondary);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    top: 19px;
    left: 17px;
    opacity: 0;
    transform: scale(2);
    transition: transform 0.3s linear, opacity 0.3s linear;
}
.custom_wizard_form .customRadio input[type="radio"]:checked+label:after {
    opacity: 1;
    transform: scale(1);
}
.custom_wizard_form .customCheckbox input[type="checkbox"] {
    position: absolute;
    left: -9999px;
}
.custom_wizard_form .customCheckbox input[type="checkbox"]+label {
    position: relative;
    padding: 3px 0 0 40px;
    cursor: pointer;
    color: rgb(120, 119, 121);
}
.custom_wizard_form .customCheckbox input[type="checkbox"]+label:before {
    content: '';
    background: #fff;
    border: 2px solid #ccc;
    border-radius: 3px;
    height: 25px;
    width: 25px;
    position: absolute;
    top: 0;
    left: 0;
}
.custom_wizard_form .customCheckbox input[type="checkbox"]+label:after {
    content: '';
    border-style: solid;
    border-width: 0 0 2px 2px;
    border-color: transparent transparent #311B92 #311B92;
    width: 15px;
    height: 8px;
    position: absolute;
    top: 6px;
    left: 5px;
    opacity: 0;
    transform: scale(2) rotate(-45deg);
    transition: transform 0.3s linear, opacity 0.3s linear;
}
.custom_wizard_form .customCheckbox input[type="checkbox"]:checked+label:after {
    opacity: 1;
    transform: scale(1) rotate(-45deg);
    color: #311B92;
}
.custom_wizard_form .backbtn-wrp:hover {
    border: 1px solid;
}
.custom_wizard_form .modal-body .btnwrp a {
    z-index: 1;
    position: absolute;
    bottom: -50px;
    right: 0;
    left: -70px;
    margin: 0 auto;
    text-align: center;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    width: 20%;
    opacity: 1;
    display: none;
}
.custom_wizard_form .modal-title {
    font-weight: bold !important;
}
.custom_wizard_form .modal-header,
.custom_wizard_form .modal-footer {
    border-bottom: 0;
    border-top: 0;
    max-width: 600px !important;
    position: relative;
}
.custom_wizard_form .my_checkbox {
    margin-left: 3%;
}
.custom_wizard_form .model-content {
    width: 840px;
    width: 100% !important;
}
.custom_wizard_form .modal-footer {
    /* max-width: 550px !important; */
    position: relative;
    justify-content: space-around;
    flex-wrap: unset;
    padding: 0px 50px 20px;
}
.custom_wizard_form .modal-footer>:not(:last-child) {
    margin-right: 2rem;
}
.custom_wizard_form .modal-footer>:not(:first-child) {
    margin-left: 0.5rem;
}
.custom_wizard_form .modal-dialog {
    position: relative;
    width: auto;
    margin: 0 auto;
    max-width: 600px;
}
.custom_wizard_form .modal-footer .btn {font-size: 14px;}
@media only screen and (max-width: 780px) {
    .custom_wizard_form .my_checkbox {
        margin-left: 7%;
    }
    .custom_wizard_form .modal-dialog {
        position: relative;
    }
}
.custom_wizard_form .container button focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: none;
    outline-width: 0;
}
@media only screen and (max-width: 580px) {
    .custom_wizard_form .modal-dialog {
        position: relative;
    }
    .custom_wizard_form .my_checkbox {
            margin-left: 6%;
        }
}
.custom_wizard_form .btn-outline-light {
    color: #100303;
    border-color: #05213e;
    /* position: absolute; */
    /* left: 0; */
    /* bottom: 0; */
}
.custom_wizard_form #modal_footer {
    color: #BDBDBD;
    cursor: pointer;
    background: #fff;
}
.custom_wizard_form .btn-success {
    background-color: #311B92 !important;
}
.custom_wizard_form .modal-content {
    margin: 100px 0px 0px 0px;
    background-color: #fff;
}
.custom_wizard_form .formtext {
    margin: 0px 0px 11px 0;
    height: 50px;
    width: 80%;
    margin: 0 auto 13px;
    border-bottom: 1px solid #ccc !important;
    border: 0;
    border-radius: 0;
    transition: all .5s ease;
}
.custom_wizard_form .head-top {
    color: #fff;
    padding: 35px !important;
}
.custom_wizard_form .head-top:hover {
    color: #eee;
}
.custom_wizard_form .other-f {
    width: 95%;
    border-bottom: 1px solid #DFDFDF !important;
    border: 0;
    border-radius: 0;
    padding: 5px 0;
    outline: none;
    box-shadow: none;
}
.custom_wizard_form .slick-dots li button:before {
    background: #181473 !important;
}
.custom_wizard_form .solutionssec .textwrap .subheading {
    color: #ff5b00;
    background-color: #f3f0ef;
    padding: 8px 20px;
    background: linear-gradient(to right,rgb(10 53 116) 0%,#ff3468 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 16px;
    border-radius: 30px;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.custom_wizard_form .valuablewrp .txtwrp .subheading {
    background-color: #193572 !important;
    color: #fff !important;
    padding: 8px 20px;
    background: linear-gradient(to right,rgb(255 16 93) 0%,#0a3674 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 16px;
    border-radius: 30px;
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.custom_wizard_form h2#changetopic {
    font-size: 28px;
    text-align: center;
    line-height: 35px;
}
.custom_wizard_form .modal-header .close {
    position: absolute;
    background: #00000063;
    border: 0;
    width: 50px !important;
    height: 50px !important;
    right: 10px;
    top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    padding: 0 !important;
}
.custom_wizard_form .backbtnwrp-l {
    margin: 0 !important;
}
/*PopUp Form New*/
/*Service Page*/
nav#navbar-services{
    position: sticky;
    top: 0;
    display: block;
    width: 100%;
    margin: auto;
    padding: 0 0 !important;
    z-index: 11;
}
nav#navbar-services nav{
    justify-content: center;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 0 0;
}
nav#navbar-services ul{
    justify-content: center;
    background-color: #fdfdfd;
    border-radius: 0;
    border-bottom: 1px solid #E4E4E4;
}
nav#navbar-services ul li{margin: 0 4%;}
nav#navbar-services ul li a.active{}
nav#navbar-services ul li a:before{
    position: absolute;
    content: "";
    background-color: var(--primary);
    width: 0px;
    height: 4px;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    transition: all .5s ease;
}
nav#navbar-services ul li a.active:before,
nav#navbar-services ul li a:hover:before{
    width: 100%;
}
nav#navbar-services ul li a{
    font-family:  var(--font-cbold);
    color: var(--blue);
    font-size: 16px;
    text-decoration: none;
    padding: 20px 0 !important;
    position: relative;
    background-color: transparent;
    font-weight: 500;
}
section.services_content{
    padding: 60px 0;
}
section.services_content .content{}
section.services_content .content h2{}
section.services_content .content p{}
section.services_content .content ul.features{margin: 20px 0 30px;}
section.services_content .content ul.features li{
    position: relative;
    font-size: 17px;
    padding: 0 0 0 15px;
    line-height: 35px;
}

section.services_content .content ul.features li:before{
    position:absolute;
    content: "";
    background: url(../../assets/images/arrow.png)no-repeat;
    color: #000;
    left: 0;
    opacity: .5;
    top: 0;
    font-size: 16px;
    font-weight: 500;
    width: 7px;
    height: 12px;
    bottom: 0;
    margin: auto;
    transition: all .5s ease;
}
section.services_content .content ul.features li:hover:before{
    left: 5px;
}
section.services_content .content ul.logos{
    display: -webkit-box;
    margin: 0 0 35px;
}
section.services_content .content ul.logos li{
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F3F9FF;
    margin: 0 10px 0 0;
    border-radius: 10px;
}
section.services_content .content ul.logos li img{
    height: 100%;
    height: 100%;
    object-fit: scale-down;
}
section.services_content .content a.btn_arrow{
    position: relative;
    font-size: 18px;
    color: var(--blue);
    font-weight: 500;
    font-family: 'Circular Std' !important;
    padding: 0px 5px 0 40px;
    text-transform: capitalize;
    text-decoration: none;
    opacity: .8;
}
section.services_content .content a.btn_arrow:before{
    position: absolute;
    content: "";
    width: 21px;
    height: 14px;
    background: url(../../assets/images/services/arrow.svg);
    background-size: auto;
    background-repeat: no-repeat;
    right: -30px;
    bottom: 0px;
}
section.services_content .content a.btn{
    border-radius: 0;
}
.bg_light{
    background-color: #F9F9F9;
}
/*Service Page*/

/*Portfolio Section Begin*/
.portfolio_sec_main .portfolio_sec_main {
  background: var(--light_white);
}
.portfolio_sec_main .center_head_content{
        text-align: center;
}

.portfolio_sec_main .packages_sec_main:before {
    content: '';
    background: url(../images/packages_bg.png);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background-size: 70%;
    opacity: 0.7;
}

.portfolio_sec_main .portfolio_boxes {
  display: inline-block;
  box-shadow: 0px 6px 14.25px 0.75px rgb(0 0 0 / 8%);
  border-radius: 0;
  margin-bottom: 30px;
  position: relative;
width: 100%;}

.portfolio_sec_main .portfolio_boxes a {
  width: 100%;
  height: 100%;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  position: relative;
  display: inline-block;
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 100%;
  border-radius: 0;
}

.portfolio_sec_main .portfolio_boxes a figure {
  margin-bottom: 0 !important;
  height: 450px;
}

.portfolio_sec_main .portfolio_boxes a figure img {
  width: 100%;
  position: relative;
  top: 0;
  transition: 2s all;
  /* border-radius: 30px; */
  display: in;
}

.portfolio_sec_main .portfolio_boxes:hover a:before {
  opacity: 1;
  content: '';
  background: hsl(0deg 0% 24% / 60%);
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  left: 0;
  z-index: 9;
}

.portfolio_sec_main .portfolio_boxes:hover a:after {
  opacity: 1;
  position: absolute;
  content: "View Project";
  font-family: FontAwesome;
  left: 28%;
  top: 40%;
  width: 198px;
  margin-left: 0;
  margin-top: 0;
  color: #fff;
  font-size: 19px;
  line-height: 36px;
  text-align: center;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  text-shadow: 0 0 10px rgb(0 0 0 / 25%);
  z-index: 99;
  background: var(--primary);
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin: 0 auto;
  font-family: var(--heading-font-family);
  }

.portfolio_sec_main .portfolio_boxes a:hover img {
  top: -100%;
}
.portfolio_sec_main .tab_nav_sec {
    padding-top: 50px;
}
.portfolio_sec_main .tab_nav_sec ul {
    border: 0;
}

.portfolio_sec_main .tab_nav_sec ul {
    margin: 0 auto 40px;
    justify-content: center;
}
.portfolio_sec_main .tab_nav_sec ul li {
    margin-bottom: 15px !important;
}
.portfolio_sec_main .tab_nav_sec ul li button {
    background: transparent;
    font-size: 16px;
    border: 1px solid rgb(255 255 255 / 11%) !important;
    padding: 12px 25px;
    border-radius: 10px !important;
    margin: 0 10px;
    background: #fff;
    box-shadow: 0px 6px 14.25px 0.75px rgb(0 0 0 / 8%);
    color: #000;
    font-weight: 600;
}

.portfolio_sec_main .innerport .tab_nav_sec ul li button {
    padding: 9px 17px;
    font-size: 14px;
    margin-bottom: 20px;
}
.portfolio_sec_main .tab_nav_sec ul li button.active, .tab_nav_sec ul li button:hover {
    background: var(--primary) !important;
    color: #fff !important;
}
.portfolio_sec_main .portfolio_boxes {
    display: inline-block;
    box-shadow: 0px 6px 14.25px 0.75px rgb(0 0 0 / 8%);
    border-radius: 0;
    margin-bottom: 30px;
    position: relative;
    width: 100%;
}
.portfolio_sec_main .portfolio_boxes:hover button:after {
    opacity: 1;
    position: absolute;
    content: "View Project";
    font-family: FontAwesome;
    left: 28%;
    top: 40%;
    width: 198px;
    margin-left: 0;
    margin-top: 0;
    color: #fff;
    font-size: 19px;
    line-height: 36px;
    text-align: center;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    text-shadow: 0 0 10px rgb(0 0 0 / 25%);
    z-index: 99;
    background: var(--light_blue);
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin: 0 auto;
    font-family: var(--heading-font-family);
}
.portfolio_sec_main .portfolio_boxes:hover button:before {
    opacity: 1;
    content: '';
    background: hsl(0deg 0% 24% / 60%);
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    left: 0;
    z-index: 9;
}
.portfolio_sec_main {
    padding: 60px 0px 30px;
}
/*Portfolio Section Begin*/
footer .foot_main ul.menu i.fas.mr-2 {
    margin: 0 10px 0 0;
}



/*Detailed Header*/

.detailHeader {
    position: fixed;
    background-color: #fff;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 99;
    display: flex;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: all .4s ease-in-out!important;
    transform: translateY(-100%);
    z-index: 999;
}

.detailHeader .innerMenu li {
    padding: 0 35px;
    opacity: 0;
    transition: transform .5s,opacity .5s;
    -webkit-transform: translate3d(0,-80px,0);
    transform: translate3d(0,-80px,0);
    text-align: left
}

.detailHeader .innerMenu li:first-child {
    -webkit-transition-delay: 50ms;
    transition-delay: 50ms
}

.detailHeader .innerMenu li:nth-child(2) {
    -webkit-transition-delay: 15ms;
    transition-delay: 15ms
}

.detailHeader .inner-menu-bottom .innerMenu li a {
    color: #000;
    line-height: 40px;
    font-size: 19px;
    text-decoration: none;
    position: relative;
    font-family: Hind,sans-serif;
    opacity: 1;
    font-weight: 700;
}

.detailHeader .innerMenu li a:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0%;
    transform: translateX(-50%);
    height: 1px;
    background: #c6171d;
    transition: .35s
}

.detailHeader .innerMenu li a:active:after,.detailHeader .innerMenu li a:focus:after,.detailHeader .innerMenu li a:hover:after {
    width: 100%
}

.detailHeader .innerMenu li a:hover {
    color: #fd6850
}

.detailHeader.active .innerMenu li {
    opacity: 1;
    transform: translate3d(0,0,0)
}

.detailHeader.active {
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity 1s;
    transition: opacity 1s;
    transform: translateY(0);
}

.detailHeader ul.menuBlock li {
    padding-bottom: 35px;
    margin-top: -20px;
    transition: all .4s ease-in-out;
    opacity: 0
}

.detailHeader.active ul.menuBlock li:nth-child(1) {
    margin-top: 0;
    opacity: 1;
    transition-delay: 0.4s
}

.detailHeader.active ul.menuBlock li:nth-child(2) {
    margin-top: 0;
    transition-delay: 0.5s;
    opacity: 1
}

.detailHeader.active ul.menuBlock li:nth-child(3) {
    margin-top: 0;
    transition-delay: 0.6s;
    opacity: 1
}

.detailHeader.active ul.menuBlock li:nth-child(4) {
    margin-top: 0;
    transition-delay: 0.7s;
    opacity: 1
}

.detailHeader.active ul.menuBlock li:nth-child(5) {
    margin-top: 0;
    transition-delay: 0.8s;
    opacity: 1
}

.detailHeader.active ul.menuBlock li:nth-child(6) {
    margin-top: 0;
    transition-delay: 0.9s;
    opacity: 1
}

.detailHeader ul.menuBlock li a {
    color: #000;
    font-size: 36px;
    line-height: 39px;
    font-weight: 700;
    transition: all .5s ease;
    text-decoration: none;
}

.detailHeader ul.menuBlock li a:hover {
    color: #fff;
}

.nav-toggle span,.nav-toggle span:after,.nav-toggle span:before {
    content: "";
    position: relative;
    display: block;
    width: 30px;
    height: 2px;
    background-color: #f44c30;
    cursor: pointer;
    margin: 0 auto
}

.nav-toggle span,.nav-toggle span:after,.nav-toggle span:before {
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.nav-toggle span:before {
    top: -8px
}

.nav-toggle span:after {
    bottom: -6px
}

.nav-toggle.active span:after,.nav-toggle.active span:before {
    top: 0
}

.nav-toggle.active span:after,.nav-toggle.active span:before {
    top: 0
}

.nav-toggle.active span {
    background-color: transparent!important
}

.nav-toggle.active span:after {
    top: 10px;
    -ms-transform: translatey(-10px) rotate(-45deg);
    -webkit-transform: translatey(-10px) rotate(-45deg);
    transform: translatey(-12px) rotate(-49deg);
    background-color: #fff
}

.nav-toggle.active span:before {
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: #fff
}

.navicon .nav-toggle {
    display: flex;
    background-color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

nav ul li .navicon {
    z-index: 999;
    display: none;
}

.navicon .nav-toggle.active {
    background-color: var(--primary);
    border-radius: 0;
}

.default-btn:hover {
    -webkit-transform: scale(1.1);
    -khtml-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.default-btn:hover span {
    z-index: 1;
}

.dropdown-menu {
    min-width: 250px;
    border-color: transparent!important;
    box-shadow: 0 7px 18px 0 rgb(0 0 0 / 7%);
    background-color: #fff;
    border-radius: 0;
    margin-top: 0;
    left: 5px;
}

/*.nav-item:before {
    position: absolute;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
    right: 6px;
    top: 50%;
    z-index: 1;
    color: #fff;
}*/

.dropdown-menu li a {
    color: #000!important;
    padding: 12px 24px!important;
    display: block;
}

.dropdown-menu li {
    padding: 0!important;
    border-bottom: 1px solid var(--primary);
    margin: 0 0 !important;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu li:hover {
    /* background-color: #f94e32; */
}

.dropdown-menu li:hover a {
    color: #fff!important;
    background-color: var(--primary);
}
.dropdown-menu li a{
    font-size: 16px !important;
}

.overlay-scroll-btn {
    padding: 0 0 0 10px;
    margin-top: 10px;
    display: flex;
}

.mouse_hover_box {
    position: absolute;
    right: 0;
    border-radius: 20px;
    overflow: hidden;
    z-index: -99;
    transition: all .4s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.detailHeader ul.menuBlock li a:hover .mouse_hover_box {
    opacity: 1;
    z-index: 1;
    visibility: visible;
}

.hover_box_2D_1 {
    bottom: -80px;
    left: -50px;
    width: 220px;
    height: auto;
}

.hover_box_2D_2 {
    top: -150px;
    right: -140px;
    width: 350px;
    height: auto;
}

.hover_box_3D_1 {
    top: -150px;
    left: -50px;
    width: 220px;
    height: auto;
}

.hover_box_3D_2 {
    bottom: -80px;
    right: -140px;
    width: 350px;
    height: auto;
}

.detailHeader ul.menuBlock li a:hover .hover_box_2D_2 {
    top: 5%;
    right: 5%;
}

.detailHeader ul.menuBlock li a:hover .hover_box_2D_1 {
    bottom: 5%;
    left: 5%;
}

.detailHeader ul.menuBlock li a:hover .hover_box_3D_1 {
    top: 5%;
    left: 2%;
}

.detailHeader ul.menuBlock li a:hover .hover_box_3D_2 {
    bottom: 5%;
    right: -2%;
}

.menu-tab-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
}

.detailHeader .tab-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.dropdown:hover .dropdown-menu {
    display: block
}

.mobile-right {
    display: none;
}

.inner-menu-bottom .innerMenu {
    align-items: center;
    justify-content: center;
    display: flex;
    margin-top: 5%;
}

.inner-menu-bottom {
    position: absolute;
    width: 100%;
    top: 0%;
    left: 0;
    right: 0;
    margin: auto;
}

.menu-bottom-wrap {
    position: relative;
}

.color-black.detailHeader ul.menuBlock li a {
    color: #fff;
}

.color-black.detailHeader ul.menuBlock li a:hover {
    color: #fd6850;
}

.color-red.detailHeader ul.menuBlock li a {
    color: #fff
}

.color-red.detailHeader ul.menuBlock li a:hover {
    color: #fff
}

.color-white.detailHeader ul.menuBlock li a {
    color: #000
}

.color-white.detailHeader ul.menuBlock li a:hover {
    color: #fd6850
}

.color-black .inner-menu-bottom .innerMenu li a {
    color: #fff
}

.color-red .inner-menu-bottom .innerMenu li a {
    color: #fff
}

ul.dropdown-menu.show {
    display: none
}

.nav-toggle span,.nav-toggle span:after,.nav-toggle span:before {
    content: "";
    position: relative;
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
    cursor: pointer;
    margin: 0 auto
}

.nav-toggle span,.nav-toggle span:after,.nav-toggle span:before {
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.nav-toggle span:before {
    top: -8px
}

.nav-toggle span:after {
    bottom: -6px
}

.nav-toggle.active span:after,.nav-toggle.active span:before {
    top: 0
}

.nav-toggle.active span:after,.nav-toggle.active span:before {
    top: 0
}

.nav-toggle.active span {
    background-color: transparent!important
}

.nav-toggle.active span:after {
    top: 10px;
    -ms-transform: translatey(-10px) rotate(-45deg);
    -webkit-transform: translatey(-10px) rotate(-45deg);
    transform: translatey(-12px) rotate(-49deg);
    background-color: #fff
}

.nav-toggle.active span:before {
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: #fff
}

.navicon .nav-toggle {
    display: flex;
    background-color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 0px;
    align-items: center;
    justify-content: center;
    z-index: 99999 !important;
    position: relative;
}

/*Detailed Header*/

/*Let's Build*/
section.lets_build{
    padding: 60px 0;
}
section.lets_build .heading{}
section.lets_build .heading h4{
    font-size: 24px;
    font-weight: 600;
    padding-bottom: 6px;
    color: var(--primary);
}
section.lets_build .heading h3{
    font-size: 55px;
    font-weight: 700;
}
section.lets_build .heading h2{
    font-size: 90px;
    font-weight: 700;
    color: var(--primary);
    -webkit-text-stroke: 1px var(--primary);
    -webkit-text-fill-color: white;
    text-transform: uppercase;
    line-height: 80px;
}
section.lets_build form{}
section.lets_build form button[type=submit]{
    margin: 20px 0 0;
}
section.lets_build form .form-control{margin: 0 0 10px;}
/*Let's Build*/

/* Web Solution */
section.web_solution{
    text-align: center;
    padding: 60px 0;
    background: url('/assets/images/banner-small.png')no-repeat;
    color: var(--white);
    margin-top: -5px;
    background-size: cover;
}
section.web_solution h2{
    color: var(--white);
}
section.web_solution p{}
section.web_solution ul.web_sol{
    margin: 50px 0 0;
}
section.web_solution ul.web_sol li{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    border-right: 1px solid #ccc;
}
section.web_solution ul.web_sol li p{}
section.web_solution ul.web_sol li h3{
    margin: 0 0 0 30px;
    font-size: 60px;
    font-weight: 600;
    background: linear-gradient(to right,var(--primary) 45%,var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 80px;
}
section.web_solution ul.web_sol li:last-child {
    border-right: none;
    padding-right: 0;
}

/* Web Solution */

/* Web Process */
section.web_process{}
section.web_process .content{}
section.web_process .content h2{
    color: #fff;
}
section.web_process .content p{}
section.web_process .content a.btn{
    background-color: #000 !important;
    margin: 30px 0 0;
}
section.web_process .item{}
section.web_process .item .web_box{}
section.web_process .item .web_box p{}
section.web_process .item .web_box ul{
}
section.web_process .item .web_box ul li{
    font-weight: 700;
    line-height: 40px;
    padding: 0 0 0 20px;
    position: relative;
    color: var(--blue);
}
section.web_process .item .web_box ul li:before{
    position:absolute;
    content: "";
    background-color: var(--primary);
    width: 8px;
    height: 8px;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border-radius: 50%;
}
section.web_process .item .web_box h4{
    border-radius: 50%;
    background-color: var(--primary);
    font-size: 45px;
    line-height: 85px;
    color: #fff;
    width: 80px;
    height: 80px;
    text-align: center;
}
section.web_process .item .web_box h4 span{
}
section.web_process .slick-next, 
section.web_process .slick-prev{
    left: -25%;
    bottom: -5%;
    background-color: var(--primary);
}
section.web_process .slick-prev{
    left: -32%;
}
section.web_process .slick-next{} 
section.web_process .pad_box1{
    background: linear-gradient(to right,#fb1f1f 45%,#2f00e3 100%);
    color: #fff;
    border-radius: 0px 0px 10% 0px;
}
section.web_process .pad_box{
    padding: 5% 5%;
} 
/* Web Process */
.inner_services{
    position: relative;
    z-index: 1;
}
.inner_services .inner_box{}
.inner_services:before{
    position: absolute;
    content: "";
    background: linear-gradient(to right,#07026e 45%,#ff6c47 100%);
    width: 60%;
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
    border-radius: 0px 0px 120px 0px;
    opacity: .9;
}
.inner_services .content{
    padding: 5% 2% 5% 5% !important;
    width: 60%;
}

.mb-3.w45 {
    width: 46%;
    display: inline-block;
}

.mr30 {
    margin-right: 30px;
}

section.technology_stack {
    background: url('/assets/images/banner-small.png')no-repeat;
    text-align: center;
    padding: 6rem 0;
    color: #fff;
    margin-top: -3px;
    background-size: cover;
}

section.technology_stack ul li {
    display: inline-flex;
    background-color: #fff;
    border-radius: 20px;
    height: 100px;
    width: 100px;
    transition: all .5s;
    padding: 15px;
    margin-bottom: 10px;
    align-items: center;
    margin-right: 6px;
}

section.technology_stack ul li img {
    max-width: 100%;
    vertical-align: middle;
    max-height: 50px;
    border-radius: 20px;
    height: 100px;
    width: 100px;
    transition: all .5s;
    object-fit: contain;
}

section.technology_stack h2 {
    color: #fff;
}
section.technology_stack p {
    margin-bottom: 30px;
}



/*Mobile Menu*/
@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -300px; /* Start with the menu off-screen */
        width: 300px;
        height: 100%;
        background-color: #fff;
    }

    .navbar-collapse.show {
        right: 0; /* Slide the menu in when active */
        animation: fadeInRight 0.3s ease-in-out;
    }

    .navbar-collapse.hide {
        right: -300px; /* Slide the menu out when hiding */
        animation: fadeOutRight 0.3s ease-in-out;
    }

    .close-button {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 20px;
        color: #333;
        cursor: pointer;
    }

    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes fadeOutRight {
        from {
            opacity: 1;
            transform: translateX(0);
        }
        to {
            opacity: 0;
            transform: translateX(20px);
        }
    }
    button.close-button {
        display: block !important;
        background-color: #fff;
        border: 1px solid;
        width: 40px;
        height: 40px;
        right: 20px;
        top: 20px;
    }
}
/*Mobile Menu*/
button.close-button {
    display: none;
}

/* Guidance section */
section.guidance_sec{
    position: relative;
    margin-top: -90px;
    z-index: 1;
}
section.guidance_sec .box{
    background-color: var(--white);
    padding: 10% 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    border: 1px solid #F2F2F2;
    min-height: 350px;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    border-radius: var(--radius);
    overflow: hidden;
}
section.guidance_sec .box:before,
section.guidance_sec .box:after{
    position: absolute;
    content: "";
    background-color: var(--primary);
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    transition: all .5s ease;
    transform: translate(0px, 400px);
    z-index: -1;
}
section.guidance_sec .box:before{}
section.guidance_sec .box:after{
}
section.guidance_sec .box:hover:before{
    transform: translate(0px, 0px) !important;
}
section.guidance_sec .box:hover:after{
    height: 100%;
}
section.guidance_sec .box .img-box{}
section.guidance_sec .box .img-box img{
    transition: all 5s ease;
}
section.guidance_sec .box .img-box .img_1{}
section.guidance_sec .box:hover .img-box .img_1{display: none;}
section.guidance_sec .box .img-box .img_2{display: none;}
section.guidance_sec .box:hover .img-box .img_2{display: unset;}
section.guidance_sec .box h3{
    transition: all .8s ease;
}
section.guidance_sec .box p{
    transition: all .8s ease;
}
section.guidance_sec .box a.btn{}
section.guidance_sec .box1{
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
section.guidance_sec .box1 h3{
    color: var(--white);
}
section.guidance_sec .box1 p{}
section.guidance_sec .box1 a.btn{
    background-color: var(--white) !important;
    color: var(--blue);
}
section.guidance_sec .box1 a.btn{}
section.guidance_sec .box:hover {}
section.guidance_sec .box:hover h3{
    color: var(--white);
}
section.guidance_sec .box:hover p{
    color: var(--white);
}
section.guidance_sec .box:hover img{
    transition: all 5s ease;
}
section.guidance_sec .box1:hover {}
section.guidance_sec .box1:hover h3{}
section.guidance_sec .box1:hover p{}
section.guidance_sec .box1:hover img{}
/* Guidance section */
/*Team*/
section.team_sec{
    padding: 80px 0;
    text-align: center;
    background-color: #fcfcfc;
}
section.team_sec .content{
    padding: 0 0 60px;
}
section.team_sec .content h2{}
section.team_sec .content p{}
section.team_sec .box:before{
    content: "";
    position: absolute;
    top: 0%;
    right: 0;
    width: 20%;
    height: 20%;
    background: var(--gradient);
    border: 15px solid transparent; /* Set the border size */
    border-image: url('zigzag.svg') 30 stretch; /* Replace 'zigzag.svg' with your zig-zag pattern */
    border-image-slice: 1;
    opacity: .09;
    border-radius: 0px 0px 0px 50px;
    transition: all .4s ease;
}
section.team_sec .box:hover:before{
    width: 100%;
    height: 100%;
    border-radius: 0;
    opacity: .3;
}
section.team_sec .box{
    padding: 30px 30px;
    background-color: #fff;
    min-height: 350px;
    box-shadow: 0 28px 40px 0 rgba(0,0,0,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: all .5s ease;
    margin: 0 0 30px;
    position: relative;
}
section.team_sec .box .img-box{transition: all .5s ease;}
section.team_sec .box .img-box img{
    width: 140px;
    height: 140px;
    object-fit: cover;
    object-position: top;
    border-radius: 50%;
    transition: all .5s ease;
    border: 2px solid transparent;
}
section.team_sec .box .overlay{
    width: 100%;
    padding: 10px 30px;
    background-color: #fff;
    transition: all .5s ease;
    position: relative;
    bottom: 0;
}
section.team_sec .box .overlay h3{
    transition: all .5s ease;
    color: #000;
    font-size: 24px;
    line-height: 20px;
    margin: 15px 0 5px;
}
section.team_sec .box .overlay h5{
    transition: all .5s ease;
    font-size: 18px;
    color: #000;
}
section.team_sec .box:hover {/* background-color: #047b90e6; */}
section.team_sec .box:hover .overlay{
    background-color: #047b90e0;
    position: relative;
    bottom: 10px;
}
section.team_sec .box:hover .img-box{}
section.team_sec .box:hover .img-box img{transform: scale(1.1);border-color: var(--primary);}
section.team_sec .box:hover .overlay h3{
    color: var(--white);
}
section.team_sec .box:hover .overlay h5{
    color: var(--white);
}
section.team_sec .box:hover.img-box{}
section.team_sec .box:hover.img-box img{}

/*Team*/
section.packages .p_box span.top{
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
}
section.packages .p_box:hover span.top{
    width: 100%;
    height: 5px;
}
section.packages .p_box span.right{
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
section.packages .p_box:hover span.right{
    width: 5px;
    height: 100%;
}
section.packages .p_box span.bottom{bottom: 0;left: 0;right: 0;margin: auto;}
section.packages .p_box:hover span.bottom{
    width: 100%;
    height: 5px;
}
section.packages .p_box span.left{
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
section.packages .p_box:hover span.left{
    width: 5px;
    height: 100%;
}
section.packages .p_box .border_anime{
    position: absolute;
    background-color: var(--primary);
    width: 0%;
    height: 0%;
    transition: all .5s ease;
    overflow: hidden;
}
section.packages .p_box:hover .border_anime{}

/*Case Section*/
.case-study-slider {
    padding: 80px 80px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    position: relative;
    z-index: 0;
}
.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0,0,0);
}

.case-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.case-text h2 {
    font-size: 24px;
    color: #302839;
    font-weight: 700;
    padding-bottom: 0;
}
.case-text h3 {
    font-size: 20px;
    color: #13101a;
    font-weight: 400;
}
.case-text h4 {
    font-size: 75px;
    color: #13101a;
    font-weight: 700;
}
.case-text p {
    font-size: 26px;
    font-weight: 500;
    color: #333;
    padding-bottom: 60px;
    line-height: 34px;
}
.case-text a {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    display: inline-block;
    padding: 10px 30px;
    width: 38%;
    background-color: transparent;
    border-radius: 10px;
    background-color: #f9f9f9;
}
.case-text a i {
    padding-left: 12px;
}
}
.owl-carousel .owl-item img {
    display: block;
    width: 100%;
}
.main-case-sec .slick-prev{
    transform: rotate(180deg);
}
.main-case-sec .slick-next{
    right: -4%;
    left: unset !important;
}
.main-case-sec .slick-next:before{}
.main-case-sec .slick-arrow:before{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: url(../../assets/images/arrows.png)no-repeat;
    background-size: contain;
    background-position: center;
}
.main-case-sec .slick-arrow{
    position: absolute;
    top: 0;
    left: -4%;
    bottom: 0;
    margin: auto;
    height: 50px;
    width: 50px;
    font-size: 0;
    z-index: 999;
    background-color: transparent;
    border: 0;
}
.main-case-sec{}
.main-case-sec .slick-arrow:hover{}
/*Case Section*/


/*Partners*/
section.new_partner{
    padding: 60px 0;
}
section.new_partner .sec-heading{
    margin: 0 0 30px;
}
section.new_partner ul.new_inn{
    text-align: center;
}
section.new_partner ul.new_inn li{
    width: calc(90%/6);
    height: 100px;
    margin: 10px 15px;
}
section.new_partner ul.new_inn li img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    filter: grayscale(1);
}
/*Partners*/
/*section.driving_brand*/
section.driving_brand{
    background-size: cover !important;
    background-position: center !important;
    padding: 2% 0 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 750px;
}
section.driving_brand .content{}
section.driving_brand h2.sec-heading{
    color: #000f2cfc;
    font-size: 100px;
    line-height: 85px;
    font-weight: 900;
    margin: 0 0 100px;
    font-family: unset;
}
section.driving_brand .content a.btn{
    background-color: #04ada4 !important;
    display: none;
}
/*section.driving_brand*/
section.career:before{
    content:unset;
}

/*New Header Css*/
/*header .navbar {*/
/*    display: none;*/
/*}*/
div.ruby-wrapper > ul .logo img {
    width: 100%;
    max-width: 100%;
}

div.ruby-wrapper > ul .logo {
    width: 320px;
    margin: 0 40px 0 0;
}
li.ruby-menu-right.talk.ruby-menu-social {
    margin: 0 0 0px 100px;
}
/*New Header Css*/
.ml-3{
    margin-left:15px;
}
.dis-flex-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: absolute;
    bottom: 10%;
    z-index: 99999;
    left: 0;
    right: 0;
    margin: auto;
}
section.banner .content a.btn-white {
    margin: 20px 0 0;
}

/*Attract*/
section.attract_sec {
    padding: 60px 0;
    text-align: center;
}
section.attract_sec ul.attract_list {margin: 20px 0 0;}

section.attract_sec ul.attract_list li {
    width: calc(98%/5);
    float: left;
}

section.attract_sec ul.attract_list li img {
    width: 120px;
}

section.attract_sec ul.attract_list li h3 {
    font-size: 18px;
    color: #000;
    margin: 0;
}
/*Attract*/

/*ROI*/
section.roi_sec {
    padding: 60px 0;
}

section.roi_sec .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10% 0 5%;
}

section.roi_sec .content .media {
    display: -webkit-inline-box;
}

section.roi_sec .content .media i {
    padding: 0px 0 0;
    width: 70px;
    font-size: 30px;
    color: #fff;
    background-color: var(--blue);
    height: 70px;
    display: flex;
    a;:
    ce;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin: 15px 0 0;
}

section.roi_sec .content .media h3 {}

section.roi_sec .content h2 span {
    color: var(--primary);
}

section.roi_sec .content .media .media-body {
    padding: 0 0 0 20px;
}
/*ROI*/
/* Portfolio New*/
.portGridHalf, .portGridQtr {
    float: left;
    width: 50%;
}
.CasestudiesInnerPage, .HomeBtm, .OurCoreProductsSlider, .OurPortBox {
    float: left;
    width: 100%;
    position: relative;
}
.portHover {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: url(../images/gradient.png) 0 0 / 100% 100% no-repeat;
    opacity: 0;
    transition: .3s;
}
.mdl {
    display: table;
    width: 100%;
    height: 100%;
}
.mdl_inner {
    display: table-cell;
    width: 100%;
    vertical-align: middle;
}

/* Portfolio New*/



/* Digital Process */
section.digital_process{
    padding: 60px 0;
}
section.digital_process .sec-heading{
    color: var(--primary);
    margin: 0 0 40px;
}
section.digital_process .digi_tabs{}
section.digital_process .digi_tabs .nav {}
section.digital_process .digi_tabs .nav li{}
section.digital_process .digi_tabs .nav li button{
    background-color: transparent;
    color: var(--blue);
    font-weight: 600;
    border-bottom: 2px solid transparent;
    border-radius: 0px;
    padding: 10px 10px;
    margin: 0 10px;
}
section.digital_process .digi_tabs .nav li button.active{
    color: var(--primary);
    border-color: var(--primary);
}
section.digital_process .digi_tabs .tab-content{}
section.digital_process .digi_tabs .tab-content .content{}
section.digital_process .digi_tabs .tab-content .content h3{}
section.digital_process .digi_tabs .tab-content .content li.media{
    display: flex;
    align-items: center;
    justify-content: normal;
    margin: 0 0 20px;
}
section.digital_process .digi_tabs .tab-content .content li.media i{
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: var(--primary);
    background-color: #f9f9f9;
    margin: 0 20px 0 0;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px #f1eeee;
}
section.digital_process .digi_tabs .tab-content .content li.media .media-body{
    padding: 5px 5px;
}
section.digital_process .digi_tabs .tab-content .content li.media .media-body h4{
    margin: 0;
}
section.digital_process .digi_tabs .tab-content .content li.media .media-body p{
    font-size: 16px;
    line-height: 24px;
    margin: 0;
}
section.digital_process .digi_tabs .tab-content .content .digi_list{
    margin: 30px 0 0;
}
/* Digital Process */

/*PR Events*/
section.pr_events {
    padding: 100px 0;
    background: url(../../assets/images/pr-bg.png) no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
}

section.pr_events .sec-heading {
    color: #fff;
    font-size: 70px;
    margin: 0 0 30px;
}

section.pr_events .sec-heading span {
    color: #fff;
}

section.pr_events ul.pr {}

section.pr_events ul.pr li {
    width: calc(100%/3);
    float: left;
    margin: 20px 0;
    padding: 0 0 0 15px;
    position: relative;
}

section.pr_events ul.pr li h3 {
    color: #fff;
    font-size: 24px;
    line-height: 30px;
}

section.pr_events ul.pr li:before {
    position: absolute;
    content: "";
    background-color: #fff;
    width: 7px;
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
/*PR Events*/


/*Whatsapp*/


.whatsappicon {
    position: fixed;
    bottom: 60px;
    left: 20px;
    z-index: 9999;
    margin: 0 0 0px;
}
.whatsappicon {animation-name: calljump;animation-iteration-count: infinite;animation-duration: 2s;}
.iconbox img.whatsapp {
    width: 50px;
    height: 50px;
}

.iconbox img.phone {
    width: 45px;
    height: 45px;
}
@keyframes calljump{
    
    0%{
        bottom:105px;
    }
    50%{
        bottom:80px;
    }
    100%{
        bottom:105px;
    }
    
}


.callappicon {
    position: fixed;
    bottom: 20px;
    left: 22px;
    width: 55px;
    z-index: 9999
}

.callappicon {animation-name: jump;animation-iteration-count: infinite;animation-duration: 2s;}

@keyframes jump{
    
    0%{
        bottom:30px;
    }
    50%{
        bottom:5px;
    }
    100%{
        bottom:30px;
    }
    
}

.iconbox{}
.iconbox img{}
/*Whatsapp*/

section.banner {
    position: relative;
    overflow: hidden;
    padding: 50px 0; /* Adjust padding as needed */
  }
  
  .blob-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
  }
  
  .blob1, .blob2 {
    position: absolute;
    width: 50%;
    height: 50%;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6; /* Adjust opacity for better visibility */
  }
  
  .blob1 {
    background: #047b90;
    top: -5%;
    left: -5%;
    animation: moveBlob1 5s infinite ease-in-out;
  }
  
  .blob2 {
    background: rgb(24 142 149);
    top: 50%;
    left: 50%;
    animation: moveBlob2 7s infinite ease-in-out;
  }
  
  @keyframes moveBlob1 {
    0% {
      transform: translateX(0%) translateY(0%) scale(1);
    }
    25% {
      transform: translateX(25%) translateY(-25%) scale(1.1);
    }
    50% {
      transform: translateX(50%) translateY(0%) scale(1);
    }
    75% {
      transform: translateX(25%) translateY(25%) scale(1.1);
    }
    100% {
      transform: translateX(0%) translateY(0%) scale(1);
    }
  }
  
  @keyframes moveBlob2 {
    0% {
      transform: translateX(0%) translateY(0%) scale(1);
    }
    25% {
      transform: translateX(-25%) translateY(-25%) scale(1.1);
    }
    50% {
      transform: translateX(-50%) translateY(0%) scale(1);
    }
    75% {
      transform: translateX(-25%) translateY(25%) scale(1.1);
    }
    100% {
      transform: translateX(0%) translateY(0%) scale(1);
    }
  }
  
  section.banner .container {
    position: relative;
    z-index: 2;
  }
  
  section.banner .content h2, section.banner .content p, section.banner .content .btn {
    position: relative;
    z-index: 3; /* Ensure text and buttons are on top */
  }
/* Destination */
section.destination_web {}

section.destination_web .sec-heading {}

section.destination_web .box {
    text-align: left;
    padding: 20px 20px;
    border: 1px solid #f3f3f3;
    border-radius: 10px;
    background-color: #f3f3f359;
    margin: 20px 0;
    transition: all .5s ease;
    cursor: pointer;
}

section.destination_web .box h4 {
    display: flex;
    align-items: center;
    gap: 10px;
}

section.destination_web .box img {}

section.destination_web .box p {}

section.destination_web {
    padding: 60px 0px;
    text-align: center;
}

section.destination_web .box:hover {
    background-color: #f3f3f3b5;
    border-color: #cccccc7a;
}

/* Destination */

/* Delivery Result */
section.deliver_results {
    padding: 100px 0;
    background-color: var(--primary);
}
section.deliver_results h2,
section.deliver_results p{
    color:#fff
}
section.deliver_results .content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 0 15% 0 0%;
}

section.deliver_results ul.deliver {}

section.deliver_results ul.deliver li {
    width: calc(100%/2);
    float: left;
}

section.deliver_results ul.deliver li a {display: inherit;background-color: #fff;margin: 10px;padding: 20px;color: var(--primary);text-transform: capitalize;text-decoration: none;font-weight: 700;font-size: 20px;border-radius: 10px;transition: all .5s ease;}

section.deliver_results ul.deliver li a i {
    padding: 0 30px 0 0px;
    font-size: 24px;
    transition: all .5s ease;
}

section.deliver_results ul.deliver li:hover a {
    background-color: var(--blue);
    color: #fff;
}

section.deliver_results ul.deliver li:hover i {
    padding: 0 20px 0 0;
}
/* Delivery Results */

/* Delivery Ex */
section.deliver_ex {
    padding: 100px 0;
    text-align: center;
}
section.deliver_ex .box:hover {background-color: #f9f9f9;}
section.deliver_ex .box:hover:before {
    width: 110px;
    height: 110px;
}
section.deliver_ex .box a:hover {
    background-color: #000;
}
section.deliver_ex .box {
    background-color: #fff;
    text-align: left;
    border: 1px solid #f1f1f1;
    padding: 5% 5%;
    height: 400px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    border-radius: 10px;
    position: relative;
    transition: all .5s ease;
    background: url(../../assets/images/del-bp.png) no-repeat scroll right top #fff;
    margin: 20px 0px;
    cursor: pointer;
}

section.deliver_ex .col-lg-2_5 {
    width: 20%;
}

section.deliver_ex .box h2 {
    color: var(--primary);
    font-weight: 500;
    margin: 0;
}

section.deliver_ex .box a {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: var(--primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px 0px 10px 0px;
    transition: all .5s ease;
}

section.deliver_ex .box:before {
    position: absolute;
    content: "";
    background-color: var(--primary);
    width: 100px;
    height: 100px;
    left: -10px;
    top: -10px;
    z-index: -1;
    border-radius: 10px;
    transition: all .5s ease;
}
/* Delivery Ex */

/* Digi Info */
section.digi_info {
    padding: 100px 0;
}

section.digi_info h2.sec-heading {
    border: 0;
    margin: 0px 0 40px;
}
section.digi_info h2 strong{
    font-weight: 600;
    color: var(--primary);
}
section.digi_info .accordion {
    border: 0;
}

section.digi_info .accordion {}

section.digi_info .accordion .accordion-item {
    border: 0;
    background-color: #fbfbfb;
}

section.digi_info .accordion button {
    background-color: var(--primary);
    color: #fff;
    box-shadow: none;
    padding: 2px 20px;
}

section.digi_info .accordion .accordion-body {}

section.digi_info .accordion button.accordion-button {
    font-family: "Kanit", sans-serif;
    font-weight: 500;
}
section.digi_info .accordion button.accordion-button:after{
    filter: invert(1) !important;
    opacity: 1;
    background-image: var(--bs-accordion-btn-icon) !IMPORTANT;
}
section.digi_info .accordion button.collapsed {
    background-color: transparent;
    color: var(--blue);
}

/* Digi Info */
.dis-flex-bottom.socs {
    position: absolute;
    top: 150%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    left: 0;
    right: 0;
    margin: auto;
}

/* Digital Portfolio */
section.digital_portfolio {
    padding: 120px 0;
    position: relative;
    text-align: center;
}

section.digital_portfolio p {
    padding: 0 10%;
}

section.digital_portfolio .col-lg-4:nth-child(2),
section.digital_portfolio .col-lg-4:nth-child(5),
section.digital_portfolio .col-lg-4:nth-child(8) {
    top: 60px;
    position: relative;
}
section.digital_portfolio {
    background-color: #000000;
    z-index: 1;
}

section.digital_portfolio .blob-background {
    z-index: -1;
}
section.digital_portfolio img {
    box-shadow: 0px 0px 45px 0px #047b908a;
    border-radius: 10px;
}
section.digital_portfolio h2,section.digital_portfolio p {
    color: #fff;
}
/* Digital Portfolio */
/*CTA NEW*/
section.cta_new {
    padding: 100px 0;
    background: linear-gradient(359deg, #03517e,#03517e, var(--primary));
    text-align: center;
}

section.cta_new h2,section.cta_new p {
    color: #fff;
}

section.cta_new h2 span {
    color: #04ada4;
}

section.cta_new a.btn {
    background-color: #04ada4 !important;
}
/*CTA NEW*/

section.digital_portfolio .box figure:before {
    position: absolute;
    content: "";
    background: url(../../assets/images/zoom.png)no-repeat;
    width: 30px;
    height: 30px;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-size: 100%;
    background-position: center;
    bottom: 0;
    filter: invert(1);
    visibility: hidden;
    z-index: 2;
}

section.digital_portfolio .box figure {
    position: relative;
    z-index: -1;
}

section.digital_portfolio .box:hover figure:before {
    visibility: visible;
    animation: zoomInOut2 3s infinite;
}
 @keyframes zoomInOut2 {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.5); 
    }
    100% {
      transform: scale(1);
    }
  }

section.digital_portfolio .box figure:after {
    position: absolute;
    content: "";
    background-color: #014e5c69;
    width: 0;
    height: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    z-index: 1;
    transition: all .5s ease;
    margin: auto;
}

section.digital_portfolio .box:hover figure:after {
    width: 100%;
    height: 100%;
}
section.digital_portfolio .box:hover img {
    opacity: .4;
}

/* Trusted API */
.blob-background.whatsapp .blob1,.blob-background.whatsapp .blob2 {
    background: #00c41f;
}
section.trusted_api {
    padding: 60px 0;
    text-align: center;
}

section.trusted_api .item {}

section.trusted_api .item img {
    width: 100%;
    object-fit: contain;
    padding: 15px;
}

ul.social_api {
    display: -webkit-inline-box;
    gap: 30px;
}

ul.social_api li {}

ul.social_api li img {
    width: 50px;
}

ul.social_api li p {
    font-size: 14px;
    color: #a19f9f;
    font-weight: 600;
    margin: 5px 0 0;
}
.allinone {
    margin: 30px 0 30px;
    padding: 0 10%;
}

section.trusted_api .allinone .box {border: 1px solid #cccccc57;margin: 10px 0;padding: 5% 5%;min-height: 200px;display: flex;align-items: center;justify-content: center;flex-direction: column;border-radius: 10px;background-color: #f1f1f13d;}

section.trusted_api .allinone .box h4 {}

section.trusted_api .allinone .box p {}
/* Trusted API */

/*WhatApp API*/
section.wa_api {
    text-align: center;
    padding: 100px 0;
    background-color: #fbfbfb;
    position: relative;
    z-index: 3;
}

section.wa_api .sec-heading {
    text-align: center;
    margin: 0 0 50px;
}

section.wa_api .tab-content .content {
    text-align: left;
    padding: 0 10%;
}

section.wa_api .tab-content .content h3 {
    margin: 0 0 30px;
    font-size: 30px;
    font-weight: 600;
}

section.wa_api .tab-content img {
    width: 80%;
    padding: 10%;
}

section.wa_api nav .nav {
    margin: auto;
    justify-content: center;
    border: 0;
}

section.wa_api nav .nav button {
    border: 0;
    color: var(--blue);
    font-weight: 500;
    padding: 0 10px;
    border-radius: 0;
    background-color: transparent !important;
    margin: 0 10px;
}

section.wa_api nav .nav button.active {
    border-bottom: 2px solid var(--primary);
}
section.wa_api .blob1,section.wa_api .blob2 {
    background: #ccc !important;
}

section.wa_api .blob-background {
    z-index: -1;
}
/*WhatApp API*/
/*WhatsApp Customer */
section.manage_customer_sec {
    padding: 60px 0;
    text-align: center;
}

section.manage_customer_sec .content {
    text-align: left;
    padding: 0 10%;
}

section.manage_customer_sec img {
    width: 100%;
    padding: 2%;
}

section.manage_customer_sec .content h3 {
    font-size: 30px;
    font-weight: 600;
}

section.manage_customer_sec .row.mt-5 {
    border-bottom: 1px solid #dbdbdb;
    padding: 40px 0;
    margin: 0 !important;
}
section.manage_customer_sec .row.mt-5:last-child {
    padding-bottom: 0;
    border: 0;
}
/*WhatsApp Customer */