@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');
/*@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&family=Trocchi&display=swap');*/

/*Body*/

:root{
    --primary: #328063;
    --secondary: #061D3F;
    --red:#BD0E0E;
    --blue: #0A2142;
    --darkblue: #061D3F;
    --white: #fff;
    --black: #000;
    --gradient: linear-gradient(0, #123348, #2E7860);
}

body, h1, h2, h3, h4, h5, h6, p,#page-header-bg span{
    /* font-family: 'Trocchi', serif !important; */
    color: var(--darkblue);
    font-family: "Josefin Sans", sans-serif !important;
}
#page-header-bg h1 {
    padding: 7% 0 0;
    font-size: 32px;
}
h1{}
h2{}
h3{
    font-size: 32px;
    font-weight: 700;
    line-height: 45px;
}
h4{
    font-size: 22px;
    font-weight: 400;
    font-family: var(--font-cbook);
    color: var(--blue);
    margin: 10px 0;
}
h5{}
.colorgreen{
    color: #328063;
}
.colorblue{
    color: #061D3F !important;
}
.colorred{
    color: #BD0E0E;
}
.bgred{
    background-color: #C2242F !important;
}
.bgblue{
    background-color: #0A2142 !important;
}
.gradient{
        background: -webkit-linear-gradient(#0D2744, #307C62);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.btn_ a{
    margin: 0 15px 0 0;
}
/*Body*/

/*Extra*/
h2,.sec-heading{
    font-size: 40px;
    font-weight: 700;
    margin: 10px 0;
    color: var(--blue);
    line-height: 47px;
    text-transform: capitalize;
}
.hd{
    font-size: 26px;
    color: var(--primary);
    line-height: 26px;
    font-weight: 700;
}
p,
.sec-para{
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    margin: 10px 0;
    color: var(--darkblue);
}
p strong{
    font-weight: 400;
}
strong{
    color: var(--red);
    font-weight: 700;
}
.btn-business{
    background-color: var(--primary) !important;
    padding: 15px 40px;
    color: #fff;
    font-size: 18px;
    border-radius: 8px;
    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(186deg,var(--primary) 0,var(--secondary) 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;
}
@-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 i{padding: 0 0 0 15px;}
.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: flex-end;
    justify-content: center;
}
.inner-banner{}
.box_top{
    position: relative;
}
.box_top:hover:before{
    width: 30%;
    background-color: var(--primary);
}
.box_top:before{
    position: absolute;
    content: "";
    width: 25%;
    height: 4px;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    background-color: var(--secondary);
    transition: all .5s ease;
}
/*Extra*/

/*Header*/
header{
    padding: 5px 0;
    width: 100%;
    z-index: 2;
}
header nav{}
header nav .navbar-brand{}
header nav .navbar-brand img{
    height: 70px;
}
header nav .navbar-nav{}
header nav .navbar-nav li{
    line-height: 30px;
}
header nav .navbar-nav li a.btn-business{
    background-color: var(--blue);
    color: var(--white);
}
header nav .navbar-nav li a{
    color: var(--black);
    font-size: 18px;
    margin: 0 10px;
    transition: all .5s ease;
    text-decoration: none;
    text-transform: capitalize;
    padding: 15px 40px;
    /* line-height: 0px; */
    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) !important;
}
/*Header*/

/*Banner*/
section.banner{
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    /* height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    z-index: 1;
    padding: 100px 0;
    background-attachment: fixed !important;
}
section.banner .content{
}
section.banner .content h2, #page-header-bg span{
    font-size: 54px !important;
    line-height: 60px !important;
    color: var(--secondary);
    font-weight: 600 !important;
}
section.banner .content h2 span{color: var(--secondary);}
section.inner_banner .content h2{
    margin: 0px 0 0;
    color: var(--white);
}
section.inner_banner .content h3,#page-header-bg h1{
    color: var(--white);
}
section.inner_banner .content p{}
section.inner_banner .content{
  padding: 5% 40% 0 0;
}
section.inner_banner .content p{
  margin: 0 0 15px !important;
  color: var(--white);
}
section.banner .content p{
    padding: 0px 35% 0 0;
}
section.banner .content p strong{
    font-size: 26px;
    font-weight: 700;
}
section.banner .content a.btn{
    margin: 0 15px 0 0;
}
/*Banner*/
/*Logos*/
section.logo{padding: 40px 0px;}
section.logo .logo_in{
}

section.logo .logo_in .item{
    margin: 0 15px;
}
section.logo .logo_in{}
section.logo .logo_in img{
    margin: auto;
    height: 60px;
    object-fit: scale-down;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
section.logo .sec-heading{
    text-align: center;
    margin: 0 0 30px;
}
/*Logos*/
/*Top Rated*/
section.top-rated{
    padding: 120px 0;
    background: url(../../assets/images/map_bg.png)no-repeat;
    background-position: right;
    /* background-size: contain; */
}
section.top-rated .content{
    padding: 0 0% 0% 0;
}
section.top-rated .content h2{}
section.top-rated .content p{}
section.top-rated .content a.btn-business{
    margin: 20px 0 0;
}
/*Top Rated*/

/*Packages*/
section.packages{
    background-color: #F7FFFD;
    padding: 120px 0;
    position: relative;
}
section.packages:before{
    position: absolute;
    content: "";
    background: url(../../assets/images/marketing-book.png)no-repeat;
    width: 230px;
    height: 420px;
    bottom: 0;
    top: 0;
    margin: auto;
    left: 0;
}
section.packages h2{
    margin: 0 0 60px;
}
section.packages p{width: 50%;margin: 0 auto 30px;}
section.packages .p_box{
    background-color: #ffffffc2;
    padding: 10% 8%;
    position: relative;
    border: 1px solid #E7E7E7;
    transition: all .5s ease;
    border-radius: 8px;
    background-color: #fff;
}
section.packages .p_box h3{
    font-size: 26px;
    color: var(--primary);
    position: relative;
    padding: 0 0 4px;
}
section.packages .p_box h3:before{
    position: absolute;
    content:"";
    background-color: #DFDFDF;
    width: 90%;
    height: 1px;
    bottom: 0;
}
section.packages .p_box h3 span{
    float: right;
    font-size: 33px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    color: var(--red);
    display: none;
}
section.packages .p_box h3 sub{
    display: block;
    text-align: right;
    font-size: 13px;
    font-weight: 500;
    color: #DFDFDF;
    text-decoration: line-through;
}

section.packages .p_box:hover{
    background-color: #fff;
    border-color: #cbcaca;
}
section.packages .p_box:before{
    position: absolute;
    content: "";
    background-color: var(--primary);
    width: 96%;
    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{font-size: 15px;left: 25%;margin: 30px 0 0;}
section.packages .p_box:hover a.btn{
}
section.packages .p_box ul.bullets{
    margin: 25px 0;
}
section.packages .p_box ul.bullets{}
section.packages .p_box ul.bullets li{
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    padding: 0 0 0 25px;
    position: relative;
    margin: 0 0 25px;
    cursor: pointer;
    color: var(--darkblue);
}
section.packages .p_box ul.bullets li:hover:before{
    
left: 10px;
}
section.packages .p_box ul.bullets li:before{
    position:absolute;
    content: "";
    background-color: var(--primary);
    left: 0;
    top: 0;
    width: 10px;
    height: 2px;
    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*/

/*Testimonials*/
section.testimonial{
    padding: 60px 0;
}
section.testimonial .sec-heading{
    text-align: center;
    margin: 0 0 30px;
}
section.testimonial .item{
    margin: 15px;
}
section.testimonial .client_box{
    padding: 135px 75px 75px 75px;
    border-radius: 8px;
    position: relative;
    background: var(--gradient);
}
section.testimonial .client_box:after{
    position:absolute;
    content:"";
    background: url(../../assets/images/quote.png)no-repeat;
    width: 70px;
    height: 60px;
    left: 70px;
    z-index: 1;
    top: 60px;
}
section.testimonial .client_box .star{
    margin: 30px 0 10px;
}
section.testimonial .client_box .star img{}
section.testimonial .client_box p{
    color: var(--white);
}
section.testimonial .client_box .media{
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
section.testimonial .client_box .media img{}
section.testimonial .client_box .media .media-body{
}
section.testimonial .client_box .media .media-body h4{margin: 0;color: var(--white);font-size: 18px;}
section.testimonial .client_box .media .media-body h4 span{
    display: block;
    font-size: 14px;
}
section.testimonial .slick-arrow{}
section.testimonial .slick-prev,
section.web_process .slick-prev{
    right: 12% !important;
}
section.testimonial .slick-next{}

section.testimonial .slick-prev,
section.testimonial .slick-next,
section.web_process .slick-next,
section.web_process .slick-prev
{
    position: absolute;
    right: 8%;
    bottom: 45px;
    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
{
    background-color: var(--primary);
}
section.testimonial .slick-prev:before,
section.web_process .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
{
    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-color: #F7FFFD;
    width: 100%;
    height: 85%;
    left: 0;
    top: 0;
    z-index: -1;
}
section.contact .sec-heading{
    text-align: center;
    margin: 0 0 60px;
}
section.contact .hd{
    margin: 65px 0 30px;
}
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{}
section.contact .contact_box h2{
    margin: 0;
}
section.contact .contact_box .icon{
    position: relative;
    /* height: 80px; */
}
section.contact .contact_box .icon.textarea img{
    top: 7px;
}
section.contact .contact_box .icon img{
    position: absolute;
    top: 15px;
    left: 0;
    z-index: 9;
    width: 20px;
    height: 30px;
    object-fit: scale-down;
    display: flex;
    align-items: center;
    justify-content: center;
}
section.contact .contact_box p{
    margin: 0 0 30px;
}
section.contact .contact_box form{
    width: 80%;
}
section.contact .contact_box form .form-control,
.form-control{
    font-size: 16px;
    font-weight: 400;
    padding: 10px 0px 10px 55px;
    border: 0;
    border-bottom: 1px solid #C2C2C2;
    border-radius: 0;
    transition: all .5s ease;
    box-shadow: unset !important;
    position: relative;
    z-index: 1;
    background-color: transparent;
    color: #8B8B8B;
    height: 60px;
}
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{
    margin: 30px 0 0;
}
section.contact .contact_box form textarea{
    height: 110px !important;
    resize: none;
}
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*/

/**/
/*Footer*/
footer{
    color: #fff;
    padding: 110px 0 0;
    background-color: var(--blue);
    position: relative;
}
footer:before {
    position: absolute;
    content: "";
    background: url(../../assets/images/marketing-book.png)no-repeat;
    width: 200px;
    height: 380px;
    bottom: 0;
    margin: auto;
    left: 0;
    background-size: 80%;
    background-position: left bottom;
}
footer .foot_cta{
    border-bottom: 1px solid #404040;
    padding: 0px 0 60px;
    margin: 0 0 60px;
}
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{
    height: 70px;
}
footer .foot_main p{
    margin: 25px 0 0;
    color: var(--white);
}
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);
}
footer .foot_main ul.menu{
    margin: 0 0 30px;
}
footer .foot_main ul.menu li{
    /* line-height: 40px; */
    margin: 0 0 15px;
}
footer .foot_main ul.menu li a{
    text-decoration: none;
    font-size: 16px;
    position: relative;
    padding: 0 0 4px;
    font-weight: 400;
    color: var(--white);
    line-height: 24px;
}
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: -5px;
    width: 40px;
    height: 30px;
    object-fit: contain;
}
footer .copyright{
    padding: 50px 0 80px;
    margin: 50px 0 0;
    text-align: center;
    border-top: 1px solid #223550;
}
footer .copyright p{
    color: var(--white);
}
footer .copyright p a{
    text-decoration: none;
    color: var(--white);
}
/*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;
    position: relative;
}
section.about_strategy:before {
    position: absolute;
    content: "";
    background: url(../../assets/images/marketing-book.png)no-repeat;
    width: 200px;
    height: 380px;
    bottom: 20%;
    margin: auto;
    left: 0;
    background-size: 90%;
    background-position: left top;
}
section.about_strategy .box_in .sec-heading{
    color: var(--white);
}
section.about_strategy .box_in p{
    text-align: left;
    color: var(--white);
}
section.about_strategy .counter{
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 0 0px;
    padding: 40px 40px;
    border-radius: 20px;
}
section.about_strategy .box_in{
    padding: 40px 40px;
    margin: 30px 0 0px;
    position: relative;
}
section.about_strategy .box_in:before{
    position: absolute;
    content:"";
    background: url(../../assets/images/strategy_bg.jpg)no-repeat;
    background-position: center;
    background-size: cover;
    width: 97%;
    border-radius: 0px 0px 0px 70px;
    height: 100%;
    z-index: -1;
    top: 0;
    right: 0;
}
section.about_strategy .counter li{
    color: var(--white);
}
section.about_strategy .counter li h3{
    color: var(--white);
}
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: auto;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: var(--primary);
    background: var(--secondary);
}
section.about_strategy .box:hover{
    background: #FFFFFF;
    box-shadow: 0px 4px 10px 2px rgb(176 176 176 / 14%);
}
section.about_strategy .box:hover h3{
    color: var(--primary);
}
section.about_strategy .box:hover p{
    color: var(--primary);
}
section.about_strategy .box h3{
    color: var(--white);
    transition: all .5s ease;
}
section.about_strategy .box p{
    margin: 0 0;
    color: var(--white);
    transition: all .5s ease;
}
/*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{
    margin: 30px 0 20px;
}
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 20px;
    border: 0;
}
.get_modal .modal-header h3{
    line-height: 40px;
    font-size: 30px;
    margin: 0;
}
.get_modal .modal-header p{
    font-size: 16px;
    margin: 0;
}
.get_modal .modal-header .btn-close{
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #cf7e7e;
    opacity: 1;
    box-shadow: none;
    outline: none;
    filter: invert(1);
}
.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 20px;
    resize: none;
    margin: 0 0 15px;
    border-bottom: 1px solid #C2C2C2;
    background-color: transparent;
}
.get_modal .modal-body form textarea{}
.get_modal .modal-body form button{
    font-size: 16px;
    padding: 8px 30px;
}
.get_modal .modal-content{
    padding: 30px 20px;
    background: url(../../assets/images/bg-form.jpg) oldlace;
    background-position: center;
    background-size: cover;
}
.get_modal .modal-content form .form-control:focus {
    background-color: transparent;
}
.get_modal .modal-body .img{
    width: 50%;
    margin: auto;
    display: none;
}
.get_modal .modal-body .img img{
    /* width: 50%; */
    /* margin: auto; */
}
.get_modal .modal-footer{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.get_modal .modal-footer h4{
    margin: 0 0 10px;
}
.get_modal .modal-footer ul.pops{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.get_modal .modal-footer ul.pops li{
    border: 1px solid #a9dbd0;
    padding: 5px 15px;
}
.get_modal .modal-footer ul.pops li img{}
/*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: 999999;
}
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: var(--primary);
    border-radius: 0;
    border-bottom: 1px solid #E4E4E4;
}
nav#navbar-services ul li{margin: 0 2%;}
nav#navbar-services ul li a.active{}
nav#navbar-services ul li a:before{
    position: absolute;
    content: "";
    background-color: var(--white);
    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(--white);
    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{
    padding: 20px 5% 20px 0;
}
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: #F7FFFD;
}
/*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: var(--darkblue);
    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;
}

.navicon {
    z-index: 999;
}

.navicon .nav-toggle.active {
    background-color: var(--secondary);
    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: 23px;
}

/*.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 #f14b2f;
}

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

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

.dropdown-menu li:hover a {
    color: #fff!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: 150px;
}

.inner-menu-bottom {
    position: absolute;
    width: 100%
}

.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(--secondary);
    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*/




/*New Css*/
/*End To End*/
section.endtoend{
    padding: 120px 0;
    text-align: center;
    background-color: var(--blue);
    color: var(--white);
}
section.endtoend .sec-heading{
    margin: 0 0 60px;
    color: var(--white);
}
section.endtoend .box{
    background-color: var(--white);
    padding: 15% 5%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: all .5s ease;
    border-radius: 10px !important;
}
section.endtoend .box:hover{
    transform: scale(1.05);
}
section.endtoend .box h3{
    font-size: 22px;
    color: var(--darkblue);
    margin: 30px 0 10px;
}
section.endtoend .box p{
    margin: 0 0 30px;
    line-height: 26px;
}
section.endtoend .box .img-box{
    width: 80px;
    height: 80px;
}
section.endtoend .box .img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
section.endtoend .box a.btn{
    font-size: 24px;
}
section.endtoend .box a.btn i{}
/*End To End*/
/* Navigate Publishing  */
section.navigate {
    padding: 120px 0;
}
section.navigate .content{}
section.navigate .content h2{}
section.navigate .content p{
    padding: 0 20% 0 0;
    margin: 0 0 30px;
}
section.navigate .content p strong{
    font-size: 17px;
}
/* Navigate Publishing  */
/*New Css*/
/*section.howitworks*/
section.howitworks{
    padding: 80px 0px 0;
}
section.howitworks .sec-heading{
    margin: 0 0 60px;
}
section.howitworks .vertica{}
section.howitworks nav{
}
section.howitworks nav a{
    font-size: 26px;
    font-weight: 400;
    color: var(--darkblue) !important;
    border-radius: 0 !important;
    padding: 70px 20px;
    border-right: 1px solid #ffffff !important;
    transition: all .5s ease;
}
section.howitworks nav a.active{
    color: var(--darkblue) !important;
    background-color: transparent !important;
    border: 1px solid #707070;
    border-right: 5px solid #fff !important;
    right: -2px;
    position: relative;
    z-index: 9999;
    padding: 45px 20px;
}
section.howitworks nav a span{}
section.howitworks .tab-content{
    border-top: 1px solid #707070;
    padding: 20px 40px 60px 40px;
    border-left: 1px solid #707070;
}
section.howitworks .tab-content .content{
}
section.howitworks .tab-content .content h4{
    font-size: 30px;
    color: var(--primary);
}
section.howitworks .tab-content .content p{
    margin: 0 0 30px;
}
section.howitworks .tab-content .tab-pane {
  display: none;
}

section.howitworks .tab-content .tab-pane.fade.show {
  display: block;
  animation: fade .5s ease-in-out;
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*section.howitworks*/
/*section.include_sec*/
section.include_sec{
    margin: 0 0 80px;
}
section.include_sec .boxin{
    background: var(--gradient);
    padding: 100px 75px;
    border-radius: 25px;
}
section.include_sec .sec-heading{color: #fff;}
section.include_sec ul.include{
    column-count: 3;
}
section.include_sec ul.include li{
    color: #fff;
    line-height: 24px;
    font-size: 22px;
    margin: 0 0 15px;
}
/*section.include_sec*/
/*Partners*/
section.partners {
    padding: 60px 0;
}
/*Partners*/
/*SSL*/
section.ssl{position: relative;}
section.ssl:before{
    position: absolute;
    content: "";
    background-color: var(--blue);
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    z-index: -1;
}
section.ssl .ssl_box{
    background: var(--primary);
    padding: 55px 30px !important;
    border-radius: 10px;
}
section.ssl .ssl_box img.payment{}
section.ssl .ssl_box .media{
    display: flex;
    align-items: center;
}
section.ssl .ssl_box .media img{}
section.ssl .ssl_box .media .media-body{
    align-self: center;
    padding: 0 0 0 15px;
}
section.ssl .ssl_box .media .media-body h6{
    font-size: 26px;
    color: var(--white);
    margin: 0 0 5px;
}
section.ssl .ssl_box .media .media-body p{
    margin: 0 0;
    font-size: 20px;
    color: var(--white);
}
/*SSL*/
.main_books{
    width: 40%;
    right: 5%;
    margin: 0 auto;
    height: 100%;
    position: absolute;
    transform: rotate(-5deg);
    z-index: -1;
    display: none;
    }
.books{
    position: absolute;
    animation: moveBooks 80s linear 0s infinite;
    transform: translateY(-10%);
}
.books .item{
    width: 50%;
    float: left;
    padding: 6% 5%;
}
.books .item img{
    width: 100%;
    height: auto;
    box-shadow: 7px 12px 11px rgba(0, 0, 0, 0.23);
    display: block;
}
@keyframes moveBooks {
  0%, 100% {
    transform: translateY(10%);
  }

  50% {
    transform: translateY(-57.8%);
  }
}

.main_books .books .item:nth-child(odd) {
    margin: -20% 0 0;
}
/*Banner Form*/
.banner_form{
    background-color: #fffffff7;
    padding: 60px 60px;
    text-align: center;
    width: 80%;
    margin: auto;
    box-shadow: 0px 0px 15px 0px #d1d1d1;
    border-radius: 8px;
}
.banner_form h3{font-size: 18px;margin: 0 0 25px;color: var(--secondary);}
.banner_form h3 strong{display: block;font-size: 20px;}
.banner_form form{}
.banner_form form .icon{
    position: relative;
}
.banner_form form .icon:before{
    position: absolute;
    content: "";
    background: url(../../assets/images/f1.png)no-repeat;
    width: 20px;
    height: 20px;
    left: 18px;
    top: 20px;
    z-index: 9;
    background-size: contain !important;
}
.banner_form form .name:before{
    background: url(../../assets/images/f1.png)no-repeat;
}
.banner_form form .email:before{
    background: url(../../assets/images/f2.png)no-repeat;
}
.banner_form form .phone:before{
    background: url(../../assets/images/f3.png)no-repeat;
}
.banner_form form .message:before{
    background: url(../../assets/images/f4.png)no-repeat;
}
.banner_form form .form-control{font-size: 12px;line-height: 16px;min-height: 56px;border: 1px solid #DDDDDD;border-radius: 8px;margin: 0 0 10px;color: #8B8B8B;padding: 20px 0px 20px 55px;transition: all .5s ease;}
.banner_form form textarea{
    height: 125px;
    resize: none;
}
.banner_form form .btn{
    margin: 20px 0 0;
}
.form-control:focus {
    border-bottom: 1px solid var(--primary) !important;
    border: 0;
}
/*Banner Form*/
/*Recent Work*/
section.recentwork{
    text-align: center;
    padding: 80px 0px;
}
section.recentwork .content{
    margin: 0 0 40px;
}
section.recentwork p{}
section.recentwork .item{
    margin: 0 15px;
}
section.recentwork .box{
}
section.recentwork .box .img-box{
}
section.recentwork .box .img-box img{
    height: 360px;
    width: 100%;
    object-position: center;
    object-fit: fill;
}
section.recentwork .box .stars{
    margin: 15px 0 5px;
}
section.recentwork .box .stars img{
    width: 80px;
}
section.recentwork .box h3{
    display: flex;
    font-size: 20px;
}
/*Recent Work*/
/*Faqs*/
section.faqs{
    padding: 100px 0 50px;
}
section.faqs .sec-heading{
    margin: 0 0 30px;
}
section.faqs .accordion{}
section.faqs .accordion .accordion-item{
    border: 1px solid var(--primary);
    margin: 0 0 10px;
}
section.faqs .accordion .accordion-item h2{
    margin: 0;
}
section.faqs .accordion .accordion-item h2{}
section.faqs .accordion .accordion-item .accordion-button:not(.collapsed){
    background: var(--gradient);
    color: #fff;
}
section.faqs .accordion .accordion-item button{
    font-size: 18px;
    box-shadow: none;
}
section.faqs .accordion .accordion-item .accordion-body{}
/*Faqs*/

/*Book Idea*/
section.book_idea {
    padding: 100px 0;
    /* background: url(/assets/images/ghostwriting-banner-book.png)no-repeat; */
    background-position: right;
    background-color: var(--primary);
    position: relative;
    z-index: 1;
    background: url(/assets/images/book_idea.jpg);
}

section.book_idea .sec-heading {
    color: #fff;
    margin: 0 0 40px;
}

section.book_idea p {
    color: #Fff;
    margin: 20px auto 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    width: 70%;
}

section.book_idea:before {
    position: absolute;
    content: "";
    /* background: linear-gradient(69deg, var(--secondary), transparent); */
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}
section.book_idea a.btn{
    margin: 30px 0 0;
}
/*Book Idea*/
/*End to End Book Solution*/
#endtoend_slide{}
#endtoend_slide .item {
    margin: 0 15px;
}
/*End to End Book Solution*/
.cart_icon {
    position: relative;
    top: 4px;
    font-size: 30px !important;
}
section.services_content .img-box img {
    width: 80% !important;
}