:root {
    --primary-color: #C50A2B;
    --secondary-color: #00347F;
    --light-Green-color: #c50a2b1f;
    --section-bg-color: #faf4ff;
    --white-color: #ffffff;
    --black-color: #000000;
    --text-color: #646C67;
}
body {
    font-family: "Work Sans", serif;
    color: var(--text-color);
    font-size: calc(13px + (16 - 13) * (100vw - 320px) / (1920 - 320));
    overflow-x:hidden;
}

p {
    font-size: calc(13px + (16 - 13) * (100vw - 320px) / (1920 - 320));
    line-height: 1.6;
    color: var(--text-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all ease-in-out 0.3s;
}
a:hover {
    color: #000;
    text-decoration: none;
}
.cl-white {
    color: #ffffff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Epilogue", serif;
}

h1, .h1 {
    font-size: calc(30px + (62 - 30) * (100vw - 320px) / (1920 - 320));
}
h2, .h2 {
    font-size: calc(25px + (52 - 25) * (100vw - 320px) / (1920 - 320));
}
h3, .h3 {
    font-size: calc(21px + (36 - 21) * (100vw - 320px) / (1920 - 320));
}
h4, .h4 {
    font-size: calc(18px + (29 - 18) * (100vw - 320px) / (1920 - 320));
}
h5, .h5 {
    font-size: calc(16px + (24 - 16) * (100vw - 320px) / (1920 - 320));
}
h6, .h6 {
    font-size: calc(14px + (16 - 14) * (100vw - 320px) / (1920 - 320));
}
.btn {
    border-color: transparent;
    border-radius:15px;
    padding: 14px 30px;
    font-weight: 500;
    line-height: 1;
    font-size: calc(13px + (16 - 13) * (100vw - 320px) / (1920 - 320));
    text-transform: uppercase;
}
.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
    transition: all ease-in-out 0.3s;
}
.btn-primary:hover  {
    background-color: var(--secondary-color);
    color: var(--white-color);
    /*border: none;*/
    border: transparent;
}
.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white-color);
    transition: all ease-in-out 0.3s;
}
.btn-secondary:hover  {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
}
.btn-secondary:hover, .btn-primary:hover {
    box-shadow: none;
}
.btn-check:active + .btn-primary:focus, .btn-check:checked + .btn-primary:focus, .btn-primary.active:focus, .btn-primary:active:focus, .show > .btn-primary.dropdown-toggle:focus {
    box-shadow: none;
}
.btn-check:active + .btn-primary, .btn-check:checked + .btn-primary, .btn-primary.active, .btn-primary:active, .show > .btn-primary.dropdown-toggle {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}
.btn-check:focus + .btn-primary, .btn-primary:focus {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    box-shadow: none;
}

.MainTitle {
    margin-bottom: 30px;
}
.MainTitle h2 {
    text-transform: uppercase;
    margin-bottom: 0;
    font-weight: 700;
    color: var(--secondary-color);
}
.MainTitle h6 {
    text-transform: uppercase;
    color: var(--primary-color);
    background-color: var(--light-Green-color);
    margin: 0 0 20px 0;
    padding: 10px 10px 5px;
    line-height: 1;
    font-weight: 400;
    display: inline-block;
    letter-spacing: 5px;
}

.whyChooseBox p {
    font-size: 15px;
}

.os-serv-box {
    transition: 0.3s ease-in;
    top: 0;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
    border:none !important;
}

.os-serv-box:hover {
    transform: scale(0.98);
    top: -40px;
    background-color: var(--secondary-color) !important;
    color:#fff;
}

.os-serv-box:hover p, .os-serv-box:hover h6 {
    color: #fff !important;
}

.os-serv-box:hover .contentArea {    
     box-shadow: none !important; 
}

.bar-ctm {
    display: flex;
    justify-content: end;
}
.top-ctm {
    display: flex;
    margin-right: 0;
}


.top-ctm span {
    color: #fff;
    font-weight: bold;
    line-height: 1;
    padding-right: 10px;
}

.top-ctm a {
    color: #fff;
    font-weight: 400;
    line-height: 1;
}

@media only screen and (max-width: 767px) {
    .top-ctm {
        display: flex;
        justify-content: center;
        padding: 2px;
    }

    .bar-ctm {
        display: flex;
        justify-content: center;
    }
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.headerTop {
    background-color: var(--primary-color);
    padding: 8px 0;
    color: var(--white-color);
    display: flex;
    align-items: center;
    font-size: calc(12px + (13 - 12) * (100vw - 320px) / (1920 - 320));
}
.headerTop .contactArea {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.headerTop a {
    color: var(--white-color);
    display: flex;
    align-items: center;
    margin-left: 25px;
}
.headerTop a .content {
    flex-direction: column;
    display: flex;
    line-height: 1;
}
.headerTop a span {
    font-size: calc(13px + (18 - 13) * (100vw - 320px) / (1920 - 320));
}
.headerTop a img {
    margin-right: 7px;
    display: inline-block;
}

#header {
    background: transparent;
    transition: all 0.5s;
    z-index: 997;
    padding: 0 0;
}
#header.header-scrolled {
    padding: 0;
    transition: all ease-in-out 0.3s;
}
    #header .headmain {
        border-radius: 0;
        /*margin-top: 8px;*/
        margin-top: 0;
        background-color: var(--secondary-color);
        padding: 8px 0;
    }
    #header.header-scrolled .headmain {
        background-color: #eff4f3;
        transition: all ease-in-out 0.3s;
    }
        #header.header-scrolled .headmain .logo img {
            content: url(../img/logo.png);
            transition: all ease-in-out 0.3s;
        }
    #header.header-scrolled .navbar a, #header.header-scrolled .navbar a:focus {
        color: var(--secondary-color);
    }
    #header.header-scrolled .navbar a:hover {
        color: var(--primary-color);
    }
        #header.fixed-top.header-scrolled .headmain {
            margin-top: 0;
        }
#header.fixed-top.header-scrolled .headerTop {
    display: none;
}
#header.fixed-top.header-scrolled {
    background-color: #eff4f3;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
    #header.header-scrolled .logo img {
        max-width: 150px;
    }
#header.fixed-top.header-scrolled .logo:before {
    display: none;
}

#header .logo {
    margin: 0;
    padding: 5px;
    position: relative;
    width: 165px;
    text-align: center;
}
    #header .logo img {
        max-width: 170px;
    }

    #header .navbar {
        position: inherit;
    }
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap:30px;
}

.navbar li {
    position: inherit;
}

.navbar .contacts a {
    text-transform: none;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    /*padding: 10px 0 0px 35px;*/
    padding: 0 0 0 35px;
    font-size: calc(13px + (18 - 13) * (100vw - 320px) / (1920 - 320));
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    transition: all ease-in-out 0.3s;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: var(--primary-color);
}
.navbar a:before {
    position: absolute;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    content: "";
}
.navbar a:hover:before {
    left: 35px;
    width: 27px;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: 85px !important;
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #ffffff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    width: 100%;
    min-height: 415px;
    border-radius: 0 0 x;
    padding: 40px;
}

.navbar .dropdown.resourcesBtn {
    position: relative;
}
.navbar .dropdown.resourcesBtn .dropdown-menu {
    padding:10px;
    height: auto;
    min-height: inherit;
    top: 55px !important;
    min-width: 200px;
}
.navbar .dropdown.resourcesBtn .dropdown-menu li {
    min-width: 100%;
    width: 100%;
    display: block;
    border-bottom: #3f8361 solid 1px;
}

.navbar .dropdown ul img {
    width: 100%;
}

.navbar .dropdown h5 {
    color: #3f8361;
    font-weight: 600;
    margin-bottom: 15px;
}

.navbar .dropdown ul li {
    min-width: 220px;
    border: 0;
    padding: 0;
    position: static;
    display: flex;
    transition: all ease-in-out 0.3s;
}
.navbar .dropdown ul a {
    padding: 10px 20px;
    text-transform: none;
    transition: all ease-in-out 0.3s;
}

.navbar .dropdown ul li:last-child::after {
    display: none;
}

.navbar .dropdown ul a {
    padding: 10px 0;
    text-transform: none;
    color: #000;
    flex-wrap: wrap;
    color: #546481;
    flex-wrap: wrap;
    white-space: inherit;
    font-weight: 600;
}

.navbar .dropdown ul a span {
    font-weight: 400;
    display: flex;
    flex-wrap: wrap;
    white-space: normal;
    color: #8d94a1;
}

.navbar .dropdown ul a:hover {
    color: #011167;
}

.navbar .dropdown ul a:hover span {
    color: #8d94a1;
}

.navbar .dropdown ul a.btn {
    color: #fff;
    align-items: center;
    justify-content: center;
}

    .navbar .dropdown ul a.btn:hover {
        color: var(--primary-color);
    }

.navbar .dropdown ul a i {
    margin-left: 0;
    margin-right: 10px;
}

.navbar .dropdown ul a.legalLink {
    color: #3f8361;
    font-weight: 600;
}

    .navbar .dropdown ul a.legalLink i {
        margin-left: 5px;
        color: var(--primary-color);
    }

.navbar .dropdown ul .navCta h5 {
    display: block;
}

.navbar .dropdown ul .navCta .getLegal {
    color: #fff;
    font-weight: 600;
    display: block;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color: var(--primary-color);
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}
.navbar .nav-item .dropdown-menu li a.dropdown-item {
    max-width: 23%;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

.navbar .dropdown .dropdown-menu .container {
    position: relative;
}


.navbar .dropdown .navCta {
    height: 100%;
}

.navbar .dropdown .dropdown-menu li.block .contectArea {
    display: inline-flex;
}
.navbar .dropdown .dropdown-menu li:hover .contectArea {
    display: inline-flex;
}
.navbar .dropdown .dropdown-menu li .contectArea {
    display: none;
    width: 77%;
    position: absolute;
    right: 0;
    padding: 0 20px;
    top: 0;
    justify-content: space-between;
    background: #fff;
    height: 100%;
    min-height: 340px;
}
.navbar .dropdown .dropdown-menu li {
    width: 23%;
}
.navbar .dropdown .dropdown-menu li a.Mainitem {
    width: 100%;
    padding: 10px 20px;
    text-transform: none;
    color: #616060;
    font-weight: 400;
    margin: 0 5px;
    transition: all ease-in-out 0.3s;
    position: relative;
}

.mobile-nav-toggle {
    color: var(--primary-color);
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}



@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed !important;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(4, 12, 21, 0.9);
    transition: 0.3s;
    z-index: 999;

}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile ul li {
    position: relative;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    color: #0b2341;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: var(--primary-color);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: block;
    margin: 10px 5px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul h5 {
    font-size: 18px;
    padding: 0 10px;
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
    color: var(--primary-color);
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

/*HEADER END*/

/*HERO START HERE*/
#hero {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 170px 0 60px 0;
    background-image: url(../img/bg/home-banner-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#hero video {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 991px) {
    #hero video {
        display: none;
    }
}

#hero .container {
    position: relative;
    z-index: 1;
}

#hero.inner-banner {
    width: 100%;
    height: 100%;
    padding: 150px 0 80px;
    background-size: 100% 100%;
}

section.form-slide {
    padding: 0;
}

#hero h2, #hero .h2 {
    color: var(--primary-color);
    margin: 0;
    font-weight: 700;
}
#hero h1, #hero .h1 {
    color: var(--secondary-color);
    margin: 0;
    font-weight: 400;
}
    #hero h1 span, #hero .h1 span {
        font-weight: 700;
        color: var(--primary-color);
    }

#hero h4, #hero h3 {
    color: var(--secondary-color);
}
#hero .form-Title {
    text-align: center;
}
#hero .form-Title h3 span {
    color: var(--primary-color);
}

.form-fields-holder {
    padding: 20px 15px;
}

#hero .form-area .formBox {
    background-color: #fff;
    padding: 8px 0px 0px 0px;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    border: 5px solid var(--primary-color);
    border-left: none;
    border-right: none;
}

.form-ribbon {
    background-color: var(--secondary-color);
    color: #fff;
    font-weight: 600;
    /*font-size: 28px;*/
    font-size: calc(12px + (26 - 12) * (100vw - 320px) / (1920 - 320));
    line-height: 28px;
    padding: 8px 0;
}

.form-mini-title {
    font-style: normal;
    color:#000!important;
    font-weight: 500;
    font-size: 21px;
    line-height: 47px;
    text-align: center;
}

#hero .form-area .formBox .form-group {
    padding: 0;
    width: 100%;
    height: 100%;
}

#hero .form-area .formBox .form-group {
    margin-bottom: 10px;
}

#hero .form-area .formBox .form-control {
    margin: 0;
    border: 0;
/*    border-bottom: #eceff4 solid 1px;*/
    height: 48px;
    line-height: 1;
    color: #959393;
    font-size: 13px;
    background-color: #f7f7f7;
}
#hero .form-area .formBox .form-control:focus {
    box-shadow: none;
}

#hero .form-area .formBox .btn {
    width: 100%;
    height: 100%;
    border-color: transparent;
}

.Main-buttonArea {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.Main-buttonArea .btn {
    margin-right: 10px;
}

/*WHY CHOOSE US CSS START*/

.whyChoose {
    padding: 60px 0;
}
.whyChooseBox {
    position: relative;
    text-align: center;
    /*overflow: hidden;*/
    transition: all ease-in-out 0.3s;
    height: 100%;
}
.whyChooseBox .imgArea img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.whyChooseBox .contentArea {
    /*position: absolute;*/
    position: relative;
    left: 0;
    /*top: -100%;*/
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
    transition: all ease-in-out 0.3s;
    /*background-color: #00000070;*/
}
/*.whyChooseBox .contentArea p, .whyChooseBox .contentArea h3 {
    color: var(--white-color);
    line-height: 1.2;
}*/

    .whyChooseBox:hover .contentArea {
        /*top: 0;*/
        box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    }
    .whyChooseBox .iconArea {
        margin-bottom: 15px;
        padding: 15px;
        border-radius: 15px;
    }
        .whyChooseBox .iconArea.icon-1 {
            background-color: #EDEDF5;
        }
        .whyChooseBox .iconArea.icon-2 {
            background-color: #FCF4D8;
        }
        .whyChooseBox .iconArea.icon-3 {
            background-color: #FEE9ED;
        }
        .whyChooseBox .iconArea.icon-4 {
            background-color: #E0F7EF;
        }
        .whyChooseBox .iconArea img {
            max-width: 75px;
        }
.whyChooseBox.steps {
    /*margin-top: 50px;*/
}
    .whyChooseBox h6 {
        color: #000;
        font-weight: bold;
        font-size: calc(14px + (18 - 14) * (100vw - 320px) / (1920 - 320));
        transition: 0.3s all;
    }
    .whyChooseBox:hover h6 {
        color: var(--primary-color);
    }
    /*WELCOME section CSS START*/
    .welcome-section {
        padding: 60px 0;
    }
.welcome-section .highImg_Sec {
    position: relative;
    height: 100%
}
    .welcome-section .highImg_Sec .leftImg {
        width: 85%;
        /*height: 80%;*/
        height: 100%;
        /*padding-bottom: 20%;*/
        padding-top: 20%;
        /*border-bottom: var(--white-color) solid 8px;*/
        transition: all ease-in-out 0.3s;
    }
.welcome-section .highImg_Sec .rightImg {
    position: absolute;
    right: 0;
    /*bottom: 0;*/
    top: 0;
    width: 45%;
    height: 247px;
    z-index: 1;
    transition: all ease-in-out 0.3s;
}
.welcome-section .highImg_Sec .rightImg:before {
    /*position: absolute;*/
    width: 100%;
    height: 110%;
    left: -10px;
    top: -10px;
    background: var(--white-color);
    content: "";
}
.welcome-section .highImg_Sec .rightImg img {
    position: relative;
    z-index: 1;
}
/*.welcome-section .highImg_Sec img {
    width: 100%;
    height: 100%;
}*/
.welcome-section .highImg_Sec .contentBOttom {
    background-color: var(--secondary-color);
    display: flex;
    width: 55%;
    flex: 55%;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 19%;
    padding: 15px;
    font-size: calc(12px + (14 - 12) * (100vw - 320px) / (1920 - 320));
    color: var(--white-color);
    flex-direction: column;
}
.highImg_Sec .contentBOttom h5 {
    font-size: calc(14px + (18 - 14) * (100vw - 320px) / (1920 - 320));
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 0;
}
.highImg_Sec .contentBOttom p {
    color: var(--white-color);
    font-size: calc(12px + (13 - 12) * (100vw - 320px) / (1920 - 320));
    margin-bottom: 0;
    line-height: 1.3;
}
.welcome-section .highImg_Sec img:hover {
    filter: grayscale(1)
}

.welcome-section.welcomeBottom .contentBOttom {
    left: auto;
    width: 75%;
    right: 0;
    height: 25%;
    text-align: left;
    /*background-color: #152a56e8;*/
    background-color: #c50a2b96;
}
.welcome-section.welcomeBottom .leftImg {
    width: 90%;
    height: 90%;
    padding-bottom: 10%;
}
.welcome-section.welcomeBottom ul {
    padding: 0;
}
.welcome-section.welcomeBottom ul li {
    list-style-type: none;
    position: relative;
    padding-left: 15px;
    line-height: 1;
    margin-bottom: 8px;
}
.welcome-section.welcomeBottom ul li:before {
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--text-color);
    content: "";
}

/*Trusted Logo Start*/

.top-trusted {
    padding: 0;
    margin-top: 30px;
}

.top-trusted .arrowMode {
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: -100%;
    height: 100%;
    width: 100%;
    position: absolute;
    pointer-events: none;
}
.top-trusted .container {
    position: relative;
}
.top-trusted .centerContent {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.top-trusted .centerContent .heading-area {
    display: flex;
    max-width: 30%;
    flex: 0 0 30%;
    position: relative;
    padding-right: 50px;
    padding: 30px 30px;
    overflow: hidden;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.top-trusted .centerContent .heading-area:after {
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    border-top: 54px solid transparent;
    border-left: 80px solid var(--primary-color);
    border-bottom: 54px solid transparent;
    content: '';
    bottom: 0;
    display: none;
}
.top-trusted .centerContent .logosBox {
    max-width: 75%;
    flex: 0 0 75%;
    padding: 24px 0;
    position: relative;
}
.top-trusted .centerContent .logosBox:before {
    position: absolute;
    left: -30px;
    top: 0;
    width: 150px;
    height: 100px;
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(255,255,255,1) 75%, rgba(0,212,255,0) 100%);
    z-index: 1;
    pointer-events: none;
    content: "";
}
.top-trusted .centerContent .logosBox:after {
    position: absolute;
    right: -30px;
    top: 0;
    width: 150px;
    height: 100px;
    background: rgb(0,212,255);
    background: linear-gradient(90deg, rgba(0,212,255,0) 0%, rgba(255,255,255,1) 21%);
    pointer-events: none;
    content: "";
}
.top-trusted .logosBox .slick-slide img {
    max-height: 55px;
    filter: grayscale(0);
}
.top-trusted .logosBox .slick-slide img:hover {
    max-height: 55px;
    filter: grayscale(1);
}

.top-trusted h4 {
    color: #000000;
    font-weight: 500;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    text-align: left;
}


img.btn-icon {
    width: 32px;
    margin-right: 8px;
}

section {
    padding: 60px 0;
}

.section-bg {
    background-color: #def4ec;
}

.bold-title-main {
    font-weight: bold;
}

.rotate {
    -webkit-animation: rotation-full 5s infinite linear;
    animation: rotation-full 5s infinite linear;
}

.rotate-full {
    -webkit-animation: infinite-spinning 8s infinite linear;
    animation: infinite-spinning 8s infinite linear;
}

.foo-logo {
    margin-bottom: 20px;
}

.img-box-oc {
    position: relative;
}

.sub-t {
    display: block;
    margin-bottom: 20px;
}

.about .content h3 {
    font-weight: 600;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding-left: 28px;
    position: relative;
}

.about .content ul li li {
    margin-top: 10px;
}

.about .content ul i {
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
    line-height: 1;
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .content .btn-learn-more {
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 5px;
    transition: 0.3s;
    line-height: 1;
    color: var(--primary-color);
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    margin-top: 6px;
    border: 2px solid var(--primary-color);
}

.about .content .btn-learn-more:hover {
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
}

.rounded-circle {
    border-radius: 50% !important;
}

.sub-info {
    font-weight: 600;
    color: #004975;
}

.display-30 {
    font-size: 0.9rem;
}

.icon-image-l {
    border-radius: 50%;
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transition: 0.5s;
    transform: translatey(0px);
    -webkit-animation: float-ani-l 6s ease-in-out infinite;
    animation: float-ani-l 6s ease-in-out infinite;
    position: relative;
}

@-webkit-keyframes float-ani-l {
    0% {
        box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
        left: 0px;
        top: 0px;
    }

    50% {
        box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
        top: -10px;
        left: -20px;
    }

    100% {
        box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
        left: 0px;
        top: 0px;
    }
}

@keyframes float-ani-l {
    0% {
        box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
        left: 0px;
        top: 0px;
    }

    50% {
        box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
        top: -10px;
        left: -20px;
    }

    100% {
        box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
        left: 0px;
        top: 0px;
    }
}

.icon-image-r {
    border-radius: 50%;
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transition: 0.5s;
    transform: translatey(0px);
    -webkit-animation: float-ani-r 6s ease-in-out infinite;
    animation: float-ani-r 6s ease-in-out infinite;
    position: relative;
}

@-webkit-keyframes float-ani-r {
    0% {
        box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
        left: 0px;
        top: 0px;
    }

    50% {
        box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
        top: -10px;
        right: -20px;
    }

    100% {
        box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
        right: 0px;
        top: 0px;
    }
}

@keyframes float-ani-r {
    0% {
        box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
        right: 0px;
        top: 0px;
    }

    50% {
        box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
        top: -10px;
        right: -20px;
    }

    100% {
        box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
        right: 0px;
        top: 0px;
    }
}

.icon-image-cr {
    transition: 0.5s;
    -webkit-animation: float-ani-cr 6s ease-in-out infinite;
    animation: float-ani-cr 6s ease-in-out infinite;
    position: relative;
}

@-webkit-keyframes float-ani-cr {
    0% {
        left: 0px;
        top: 0px;
    }

    50% {
        top: -10px;
        right: -20px;
    }

    100% {
        right: 0px;
        top: 0px;
    }
}

@keyframes float-ani-cr {
    0% {
        right: 0px;
        top: 0px;
    }

    50% {
        top: -10px;
        right: -20px;
    }

    100% {
        right: 0px;
        top: 0px;
    }
}

.icon-image-cl {
    transition: 0.5s;
    transform: translatey(0px);
    -webkit-animation: float-ani-cl 6s ease-in-out infinite;
    animation: float-ani-cl 6s ease-in-out infinite;
    position: relative;
    box-shadow: none;
}

@-webkit-keyframes float-ani-cl {
    0% {
        left: 0px;
        top: 0px;
    }

    50% {
        top: -10px;
        left: -20px;
    }

    100% {
        left: 0px;
        top: 0px;
    }
}

@keyframes float-ani-cl {
    0% {
        left: 0px;
        top: 0px;
    }

    50% {
        top: -10px;
        left: -20px;
    }

    100% {
        left: 0px;
        top: 0px;
    }
}

.purple {
    animation: pulse-purple 6s infinite;
}

@keyframes pulse-purple {
    0% {
        transform: scale(0.95);
    }

    70% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.95);
    }
}

.ctm-sign {
    margin-left: 0px !important;
}


.tm-list-cont {
    max-width: 700px;
    margin-left: auto;
    padding-left: 50px;
    padding-right: 20px;
}

.tm-list-sec-2 {
    background-color: #daedeb;
    padding: 0;
}

.tm-list-cont-2 {
    padding-left: 50px;
    padding-right: 20px;
}

ul.services_text li {
    list-style: none;
    margin-bottom: 10px;
}

.section-tt-ctm h2 {
    font-weight: 700;
    color: var(--primary-color);
}

.ctm-list-cols {
    line-height: 2;
    column-count: 2;
    color: #000;
}

.protect2 .slick-arrow {
    display: none !important;
}

.protect2 .slick-list {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-left: 15% !important;
    padding-right: 15% !important;
    overflow: visible;
}

.protect2 .slick-dots {
    text-align: right;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.protect2 .slick-track {
    max-width: 100% !important;
    transform: translate3d(0, 0, 0) !important;
    perspective: 100px;
}

.protect2 .slick-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    opacity: 0;
    width: 90% !important;
    transform: translate3d(0, 7px, 0);
    transition: transform 1s, opacity 1s;
}

.protect2 .slick-snext,
.protect2 .slick-sprev {
    display: block;
}

.protect2 .slick-current {
    opacity: 1;
    position: relative;
    display: block;
    transform: translate3d(0, 6px, 0);
    z-index: 2;
}

    .protect2 .slick-current .protect-pkg-include {
        pointer-events: inherit !important;
    }

.protect2 .slick-snext {
    opacity: 1;
    transform: translate3d(50%, -12px, -30px);
    z-index: 1;
    right: -50%;
    opacity: 0.4;
}

.protect2 .slick-sprev {
    opacity: 1;
    transform: translate3d(-50%, -12px, -30px);
    left: -50%;
    opacity: 0.4;
}

.protect2 .slick-cloned {
    pointer-events: none;
}

.protect2 .slick-sprev .protect-pkg-include, .protect2 .slick-current .protect-pkg-include {
    pointer-events: none;
}

.priceTag {
    background: #fff;
    color: var(--primary-color);
    border-radius: 12px;
    padding: 0 12px;
    font-weight: 500 !important;
}




.buttons {
    isolation: isolate;
}
#footer {
    background: #002149;
    padding: 0 0 10px 0;
    color: #fff;
}

footer .bottomLinks {
    background-color: #121212;
    padding: 10px;
}

footer .bottomLinks ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    margin: 0;
}
footer .bottomLinks ul li a {
    color: #fff;
}
footer .bottomLinks ul li::marker {
    color: transparent;
}

#footer .footer-top {
    padding: 50px 0 15px 0;
}

#footer .footer-top .footer-info h3 {
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
}

#footer h4 {
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #1d71b8;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    color: var(--primary-color);
}

#footer .copyright {
    padding: 15px 0;
    background-color: var(--primary-color);
    color: var(--light-Green-color);
}
#footer .copyright a {
   /* color: #797979;*/
   color: #fff;
}
.copyleft {
    text-align: left;
    color:#fff;
}
.copyrgt {
    text-align: right;
}
.copyrgt a {
    color: #fff;
}
.fbottom {
    padding: 30px 0;
    border-top: #def4ec solid 1px;
}
.fbottom .btn-area {
    text-align: left;
}
.fbottom a {
    color: #fff;
}
#footer .social-area {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 15px;
}
#footer .social-area h6 {
    display: inline-block;
    margin-right: 10px;
}
#footer .social-area ul {
    display: flex;
    padding: 0;
    margin: 0;
}
#footer .social-area ul li {
    display: inline-block;
    list-style-type: none;
}

#footer .social-area ul li a {
    border-radius: 50%;
    border: #fff solid 1px;
    width: 38px;
    height: 38px;
    color: #fff !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    transition: all ease-in-out 0.3s;
}
#footer .social-area ul li a:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}
#footer .social-area ul li a i {
    color: #fff !important;
}

@media (max-width: 575px) {
    #footer .footer-top .footer-info {
        margin: -20px 0 30px 0;
    }
}

.nav-pills-custom .nav-link {
    color: #000;
    background: #fff;
    position: relative;
}

.nav-pills-custom .nav-link.active {
    color: #ffffff;
    background: var(--primary-color);
}

@media (min-width: 992px) {
    .nav-pills-custom .nav-link::before {
        content: "";
        display: block;
        border-top: 8px solid transparent;
        border-left: 10px solid var(--primary-color);
        border-bottom: 8px solid transparent;
        position: absolute;
        top: 50%;
        right: -10px;
        transform: translateY(-50%);
        opacity: 0;
    }
}

.nav-pills-custom .nav-link.active::before {
    opacity: 1;
}

.tab-content h4 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.bg-light-green {
    background-color: #daedeb;
}

.error-field {
    border-color: red;
}

.iti {
    width: 100%;
}

.package-tab-list {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    width: 100%;
    margin-top: 20px;
}

.package-tab-list > li {
    padding: 0 10px;
    display: inline-block;
}

.package-tab-list > li a {
    padding: 12px 35px;
    display: inline-block;
    color: #1f1f1f;
    transition: all 0.35s ease-in-out;
    font-weight: 600;
}

@media (max-width: 1600px) {
    .package-tab-list > li a {
        padding: 10px 20px;
    }
}

.package-tab-list > li .is-active,
.package-tab-list > li a:hover,
.package-tab-list > li a .is-active {
    border-bottom: var(--secondary-color) solid 2px;
    color: var(--secondary-color);
}

@media (max-width: 991px) {
    .package-tab-list {
        flex-direction: column;
    }
    .copyright .text-right {
        text-align: center !important;
    }
}

.tabs-content > .is-active {
    display: block;
}

.tabs-content > * {
    display: none;
}

.addon-pack-selection {
    padding: 20px;
    position: absolute;
    bottom: 0;
    width: 100%;
}

@media (max-width: 991px) {
    .addon-pack-selection {
        position: relative;
    }
}

.addon-pack-selection h6 {
    font-weight: 700;
}

    .addon-pack-selection h6 span {
        background-color: var(--primary-color);
        padding: 0px 6px;
        color: #fff;
        line-height: 1.4;
    }

.addon-pack-selection .radio-bx {
    display: flex;
    align-items: center;
}

    .addon-pack-selection .radio-bx input {
        margin-right: 5px;
    }

    .addon-pack-selection .radio-bx label {
        margin: 0;
    }

    .addon-pack-selection .radio-bx a {
        font-weight: 700;
        color: #000;
        text-decoration: underline !important;
    }

.addon-pack-selection a {
    font-weight: 700;
    color: #000;
}

.pack-height {
    min-height: 600px;
    max-height: 100%;
}

    .pack-height.sm {
        height: 400px;
        position: relative;
        z-index: 9;
    }

    .pack-height.lr {
        height: 800px;
    }

.fs-25 {
    font-size: 25px !important;
}

.addon-main {
    height: 240px;
    position: relative;
}

@media (max-width: 991px) {
    .addon-main {
        height: auto;
    }
}

.addon-list {
    padding: 20px;
}

    .addon-list li {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 10px;
    }

        .addon-list li div {
            display: flex;
            align-items: center;
            flex: 1;
        }

            .addon-list li div p {
                margin: 0;
                justify-content: space-between;
            }

                .addon-list li div p i {
                    color: red;
                    margin: 0;
                }

            .addon-list li div i {
                color: var(--primary-color);
            }

        .addon-list li span {
            color: var(--primary-color);
            font-weight: 600;
            flex: 0 0 35%;
            max-width: 35%;
        }

.cus-tooltip {
    position: relative;
    display: inline-block;
    margin-left: 4px;
}

@media (max-width: 991px) {
    .cus-tooltip {
        position: static;
    }
}

.cus-tooltip i {
    color: #fd1434;
    font-size: 9px;
}

    .cus-tooltip i.custome {
        position: relative;
    }

.cus-tooltip .tooltiptext {
    visibility: hidden;
    width: 480px;
    background-color: #fff;
    color: #000;
    border: solid 1px;
    text-align: left;
    border-radius: 6px;
    padding: 7px 8px;
    font-size: 11px;
    position: absolute;
    top: 15px;
    left: 0;
    transform: translateX(-49%);
    position: absolute;
    z-index: 5;
    font-weight: 500;
}

@media (max-width: 1600px) {
    .cus-tooltip .tooltiptext {
        width: 400px;
    }
}

.cus-tooltip .tooltiptext.tables {
    width: 720px;
}

@media (max-width: 991px) {
    .cus-tooltip .tooltiptext {
        width: 75vw;
        max-width: 480px;
        top: auto;
        left: 0;
        transform: none;
    }
}

.cus-tooltip .tooltiptext .custom-table ul {
    display: flex;
}

    .cus-tooltip .tooltiptext .custom-table ul li {
        max-width: 50%;
        flex: 0 0 50%;
        text-align: center;
        text-decoration: none;
        align-items: center;
        justify-content: center;
    }

.cus-tooltip .tooltiptext .custom-table ul li:before {
    display: none;
}

.cus-tooltip .tooltiptext .custom-table .table-head .cl-white > li {
    color: #fff;
}

.cus-tooltip:hover .tooltiptext {
    visibility: visible;
}

.cus-tooltip.sty2 {
    top: -5px;
}

@media (max-width: 767px) {
    .cus-tooltip.sty2 {
        position: static !important;
    }
}

.package-box ul li span {
    display: inline;
}

.tooltip-wrap .tooltip.lfr {
    left: 0;
    right: 0;
}

.tooltip-wrap > i {
    margin-left: 0px !important;
    color: red !important;
}

.cus-tooltip > i {
    margin-left: 0px !important;
    color: red !important;
}

.yScroll {
    overflow-y: auto;
    max-height: 100%;
}

.toltipoverlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.tooltip-wrap i {
    position: relative;
    top: 0;
}

.cus-tooltip i {
    position: relative;
    top: 0;
}

.tooltip-wrap > .tooltip {
    background-color: #fff;
    -webkit-box-shadow: 0 29px 50px 0 rgb(35 35 35 / 17%);
    box-shadow: 0 29px 50px 0 rgb(35 35 35 / 17%);
    border-radius: 10px;
    padding: 30px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-2em);
    pointer-events: none;
    right: 0;
}

@media (min-width: 992px) {
    .tooltip-wrap:hover > .tooltip {
        visibility: visible;
        opacity: 1;
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
        pointer-events: inherit;
        -webkit-transition-delay: 0s, 0s, 0.3s;
        transition-delay: 0s, 0s, 0.3s;
        padding: 10px;
    }
}

.tooltiptext ul li span {
    font-size: 10px;
    color: #007bff;
    text-decoration: underline !important;
}

.pricing ul.social {
    padding-left: 20px;
    width: 100%;
}

    .pricing ul.social li {
        margin-bottom: 0;
    }

.ctm-box:hover span.tooltiptext {
    color: #202020;
}

@media (max-width: 1600px) {
    .addon-list li span {
        font-size: 10px;
    }

    .addon-list li span {
        flex: 0 0 33%;
        max-width: 33%;
    }

    .pack-height {
        min-height: 700px;
        max-height: 100%;
    }

        .pack-height.sm {
            height: 300px;
        }
}

@media (max-width: 991px) {
    .pack-height {
        min-height: auto;
        max-height: 100%;
    }

        .pack-height.sm {
            height: auto;
            z-index: inherit;
        }
}

.portfolio-box img {
    width: 100%;
}

.defaultOverlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    transition: all 0.35s ease;
    width: 100%;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.2);
}

.package-box.sty1 ul li .tooltip-wrap i {
    position: relative;
}

.package-box.sty1 ul li i {
    left: 3px;
    top: 2px;
}

.package-box ul li span {
    display: inline;
}

.tooltip-wrap .tooltip.lfr {
    left: 0;
    right: 0;
}

.yScroll {
    overflow-y: auto;
    max-height: 100%;
}

.toltipoverlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.min-wdpx-23 {
    min-width: 235px;
}

.tooltip-wrap i {
    position: relative;
    top: 0;
}

.cus-tooltip i {
    position: relative;
    top: 0;
}

@media (min-width: 992px) {
    .tooltip-wrap:hover > .tooltip {
        visibility: visible;
        opacity: 1;
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
        pointer-events: inherit;
        -webkit-transition-delay: 0s, 0s, 0.3s;
        transition-delay: 0s, 0s, 0.3s;
        padding: 10px;
    }
}

.tooltiptext ul li span {
    font-size: 10px;
    color: #007bff;
    text-decoration: underline !important;
}

.tooltiptext {
    flex: 0 0 100%;
    max-width: 100%;
}

.tool-right {
    right: 0px;
}

@media (max-width: 1600px) {
    .tooltip-wrap > i {
        font-size: 11px;
    }
}

@media (max-width: 991px) {
    .tooltip-wrap > .tooltip {
        position: fixed;
        left: 50%;
        top: 50%;
        width: 300px;
        max-width: 100%;
        transform: translate(-50%, -50%);
        pointer-events: unset;
    }

        .tooltip-wrap > .tooltip.is--active {
            visibility: visible;
            opacity: 1;
            pointer-events: inherit;
        }

    .body-mobile-tooltip .defaultOverlay {
        visibility: visible;
        opacity: 1;
        pointer-events: inherit;
    }
}

.text-right {
    text-align: right;
}

.minht-100 {
    height: 100%;
}

.minht-400p {
    min-height: 400px;
}

.service-box {
    position: relative;
    margin-bottom: 25px;
    display: flex;
}

    .service-box p {
        color: #000;
        line-height: 1.8;
    }

    .service-box h6 {
        font-weight: 700;
        margin-bottom: 13px;
    }

    .service-box .icon-box {
        display: flex;
        max-width: 100px;
        flex: 0 0 100px;
    }

    .service-box .ser-img1 {
        background-image: url(../img/mix/services-icon1.php);
        background-repeat: no-repeat;
        background-position: top right;
        background-size: cover;
        width: 75px;
        height: 75px;
    }

    .service-box .ser-img2 {
        background-image: url(../img/mix/services-icon2.php);
        background-repeat: no-repeat;
        background-position: top right;
        background-size: cover;
        width: 75px;
        height: 75px;
    }

    .service-box .ser-img3 {
        background-image: url(../img/mix/services-icon3.php);
        background-repeat: no-repeat;
        background-position: top right;
        background-size: cover;
        width: 75px;
        height: 75px;
    }

    .service-box .ser-img4 {
        background-image: url(../img/mix/services-icon4.php);
        background-repeat: no-repeat;
        background-position: top right;
        background-size: cover;
        width: 75px;
        height: 75px;
    }

    .service-box .ser-img5 {
        background-image: url(../img/mix/services-icon5.php);
        background-repeat: no-repeat;
        background-position: top right;
        background-size: cover;
        width: 75px;
        height: 75px;
    }

    .service-box .ser-img6 {
        background-image: url(../img/mix/services-icon6.php);
        background-repeat: no-repeat;
        background-position: top right;
        background-size: cover;
        width: 75px;
        height: 75px;
    }

.trustpilot-widget.btn11 {
    cursor: pointer !important;
    background-color: #ffffff !important;
}

    .trustpilot-widget.btn11::before {
        background-color: #ffffff !important;
    }

    .trustpilot-widget.btn11:hover::before,
    .trustpilot-widget.btn11:hover::before {
        background-color: #ffffff !important;
        transform: translateX(0%);
    }

.ht-33 {
    padding-bottom: 25px;
}


@media (max-width: 992px) {
    br {
        display: none;
    }
}
@media (max-width: 768px) {
   .btn11 {
        padding: 15px 10px;
    }
    .pricing ul i {
        margin-left: 0;
    }
}

.pry-btn {
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
    margin:0;
}
.pry-btn:hover {
     color: #fff;
}




.spinner-wrap {
    position: relative;
    top: -30px;
}

.spinner-item {
    border: 1px solid #98a8fb;
    border-radius: 50%;
    height: 200px;
    width: 200px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    -webkit-animation: zoom 2s linear 0.75s infinite;
    animation: zoom 2s linear 0.75s infinite;
}

.spinner-item--2 {
    -webkit-animation-delay: 1.25s;
    animation-delay: 1.25s;
}

.spinner-item--3 {
    -webkit-animation-delay: 1.75s;
    animation-delay: 1.75s;
}

@-webkit-keyframes zoom {
    0% {
        transform: translate(-50%, -50%) scale(0.2);
        opacity: 0;
    }

    50% {
        opacity: 0.9;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

@keyframes zoom {
    0% {
        transform: translate(-50%, -50%) scale(0.2);
        opacity: 0;
    }

    50% {
        opacity: 0.9;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}
.welcome-video {
    display: inline-block;
    width: 100%;
    text-align: center;
    position: relative;
    top: 38px;
    color: #96a6fb;
    z-index: 5;
}

.protect-area {
    position: relative;
    padding-bottom: 0;
}

.protect-area h2 span {
    font-weight: 700;
}

.protect-area .bg-area {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    height: 90%;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: -1;
    background-color: transparent;
    background-image: linear-gradient(130deg, #3C725A 0%, var(--primary-color) 100%);
}
.protect-pkg-include {
    background-color: var(--primary-color);
    border-radius: 25px 25px 0 0;
    padding: 30px;
    position: relative;
}
.protect-pkg-include:before {
    position: absolute;
    left: -53.5px;
    bottom: 0;
    height: 54px;
    width: 38px;
    border-bottom: 54px solid #3f8361;
    border-right: 54px solid transparent;
    transform: rotate(180deg);
    content: '';
}
.protect-pkg-include:after {
    position: absolute;
    right: -54px;
    bottom: 0;
    height: 54px;
    width: 38px;
    border-top: 54px solid #3f8361;
    border-right: 54px solid transparent;
    content: '';
}

@media (max-width: 991px) {
    .protect-pkg-include:before, .protect-pkg-include:after {
        display: none;
    }
    .protect-pkg-include {
        border-radius: 25px 25px 25px 25px;
    }
}

.protect-pkg-include .lft-contnt h4 {
    font-weight: 300;
    color: #fff;
}
.protect-pkg-include .lft-contnt h4 span {
    font-weight: 700;
}
.protect-pkg-include .lft-contnt h6 {
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}
.protect-pkg-include .lft-contnt p {
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
}
.protect-pkg-include .lft-contnt .btn {
    max-width: 200px;
    width: 100%;
}
.protect-pkg-include .right-list {
    display: inline-block;
    width: 100%;
    position: relative;
}
.protect-pkg-include .right-list h6 {
    color: #fff;
}
.protect-pkg-include .right-list ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.protect-pkg-include .right-list ul li {
    display: inline-block;
    width: 100%;
    color: #fff;
    line-height: 30px;
    padding-left: 22px;
    position: relative;
}
.protect-pkg-include .right-list ul li i {
    position: absolute;
    left: 0;
    top: 0;
}
.title-main {
    color: #000000;
    font-weight: 600;
}


/*.title-main span {
    color: #3f8461;
}*/

h2.title-main span {
    color: #000;
}

.blog-box {
    background-color: #eef1fd;
    padding: 15px;
    border-radius: 12px;
}
.blog-box.sty1 {
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
}
.blog-box .dated {
    background-color: #fff;
    color: var(--primary-color);
    padding: 5px;
    border-radius: 4px;
    display: inline-block;
    margin: 10px 0;
    font-weight: 600;
}
.blog-box p {
    color: var(--primary-color);
    line-height: 28px;
    font-weight: 600;
}
.blog-box .imgbox {
    display: inline-block;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    min-height: 255px;
}
.blog-box .imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-box.sty1 .imgbox {
    width: 102px;
    height: 102px;
    margin-right: 15px;
    min-height: inherit;
}
.blog-box.sty1 .dated {
    margin-top: 0;
}


@media (max-width:991px) {
    .welcome-section .highImg_Sec {
        margin-bottom: 30px;
    }

    .bannerContent {
        margin-top: 25px;
        margin-bottom: 25px;
    }
    .welcome-section .highImg_Sec .contentBOttom {
        display: none;
    }

    .welcome-section {
        background-image: none !important;
        padding-top: 0;
    }
    .protect-pkg-include .right-list {
        margin-top: 20px;
    }
    .blog-box {
        margin-bottom: 20px;
    }
    .copyleft, .copyrgt {
        text-align: center;
    }
    #hero {
        background-size: cover;
        background-position: center;
        /*padding: 100px 0 0 0;*/
        padding: 135px 0 0 0;
    }
    #hero h2, #hero .h2 {
        z-index: 10000;
    }
    #hero h1, #hero .h1 {
        z-index: 10000;
    }
    .headbox .textbox {
        text-align: left;
    }
    #hero .bottom-buttons {
        padding-top:30px;
    }
    .blog-sec {
        padding-top: 0;
    }
    .testimonials-slider {
        overflow-x: hidden !important;
    }
}

@media (max-width:767px) {
    .whyChooseBox.steps {
        margin-top: 0;
    }
    .whyChoose .mt-5 {
        margin-top: 0 !important;
    }
    .process-main.responsive-slider {
        margin-top: 30px;
    }
    .MainTitle h6 {
        letter-spacing: 1px;
    }
    .bannerContent, .MainTitle, .blog-card, .process-sec, .welcome-section {
        text-align: center;
    }
    .Main-buttonArea, .cta-btn, .content-box, .compliance-box {
        justify-content: center;
    }
    .compliance-img-box {
        display: none;
    }
    .process-box {
        text-align: left;
    }
    .sm-hidden {
        display: none;
    }
    .headerTop a {
        margin-left: 0;
    }
    .headerTop .contactArea {
        justify-content: center;
        gap: 15px;
    }
}

@media (max-width: 575px) {
    /*#header .logo:before {
        top: -115px;
    }*/
    .headbox {
        justify-content: flex-start;
    }
    .welcome-section {
        padding: 50px 0;
    }
    
    .fbottom .btn-area {
        text-align: center;
    }
    .fbottom .social-area {
        text-align: center;
        margin-top: 20px;
    }
}
@media (max-width:480px) {
    #hero {
        padding: 100px 0 0 0;
    }
    #hero .btn {
        padding: 10px 12px;
    }
}

.fancybox-container {
    -webkit-backface-visibility: hidden;
    height: 100%;
    left: 0;
    outline: none;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99992;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000ab;
    touch-action: manipulation;
    transform: translateZ(0);
    -webkit-tap-highlight-color: transparent;
    -ms-touch-action: manipulation;
}
.fancybox-slide--html .fancybox-close-small {
    color: currentColor;
    padding: 10px;
    right: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    padding: 0;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.25);
}
.fancybox-button svg {
    display: block;
    height: 100%;
    overflow: visible;
    position: relative;
    width: 100%;
}
.fancybox-button svg path {
    fill: currentColor;
    stroke-width: 0;
}

.fancybox-infobar, .fancybox-toolbar, .fancybox-navigation, .fancybox-caption--separate {
    visibility: hidden;
    display: none
}

form.popup-form [class^=col-] {
    padding: 0 6px
}

.popupform select {
    height: 41px
}

.popupform .btn-primary {
    padding: 8px 35px;
}

.popup-content input[type=email],
.popup-content input[type=tel],
.popup-content input[type=text],
.popup-content select,
.popup-content textarea {
    background: #ffffff;
    border: #b0b0b0 1px solid;
    padding: 8px;
    width: 100%;
    border-radius: 6px;
    color: #000;
    box-shadow: none !important;
    outline: none 0px !important;
    background: #fff;
    margin-bottom: 0;
    font-size: 14px;
    height: 34px;
}

.popup-content textarea {
    height: 115px;
    resize: none;
}

/*.popupform {
    width: 1156px;
    border-radius: 0;
    padding: 80px 50px 80px 350px;
    position: relative;
}*/

.fancybox-content {
    background: #fff;
    display: inline-block;
    margin: 0;
    max-width: 55%;
    overflow: visible;
    position: relative;
    text-align: center;
    vertical-align: middle;
    border-radius: 25px;
    -webkit-overflow-scrolling: touch;
}
.fancybox-stage {
    text-align: center;
}
.modal {
    z-index: 99999;
}
.modal.popupform {
    position: fixed;
    width: 100%;
}
.modal.popupform .modal-content {
    /*border-radius:50px;*/
}

.modal.popupform .popup-content input[type=email], .modal.popupform .popup-content input[type=tel], .modal.popupform .popup-content input[type=text], .modal.popupform .popup-content select, .modal.popupform .popup-content textarea {
    height: 42px;
    border: 1px solid #b0b0b0;
}

    .popupform {
        width: 1156px;
        border-radius: 0;
        padding: 25px;
        position: relative;
    }

.popup-content .form-group label {
    margin-bottom: 12px;
}
.popup-content .MainTitle h6 {
    color: #fff;
    background-color: var(--black-color);
}
.popup-content p {
    color: #F4F4F4;
}
.fancybox-content {
    background: #fff;
    display: inline-block;
    margin: 0;
    max-width: 100%;
    overflow: visible;
    position: relative;
    text-align: center;
    vertical-align: middle;
    border-radius: 25px;
    -webkit-overflow-scrolling: touch;
}

.popupform .leftArea {
    display: flex;
    justify-content: center;
    height: 100%;
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    background-color: #000;
    position: relative;
    z-index: 2;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: top center;
    flex-direction: column;
    padding: 30px;
}

    .popupform .leftArea h3 {
        line-height: 1.5;
        position: relative;
        display: inline-block;
        margin: 0 0 20px 0;
        color: #fff;
        text-decoration: underline;
        text-align: left;
    }

    .popupform .leftArea ul {
        list-style-type: none;
        padding: 0;
        text-align: left;
    }

        .popupform .leftArea ul li {
            line-height: 1.5;
            color: #fff;
            padding: 0 0 15px 45px;
            position: relative;
        }

            .popupform .leftArea ul li .arrowBox {
                position: absolute;
                left: 0;
                top: 2px;
            }

.popupform .modal-body {
    background-color: var(--secondary-color);
    padding: 30px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

    .popupform .modal-body::after {
        position: absolute;
        content: "";
        clip-path: polygon(25% 0%, 60% 0, 100% 100%, 60% 100%);
        background-color: var(--light-Green-color);
        width: 530px;
        height: 100%;
        z-index: -1;
        top: 0;
        left: 0;
    }

    .popupform .modal-body .form-group {
        margin-bottom: 20px;
    }

.popupform .imgBox {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px 0 0 25px;
    pointer-events: none;
}

    .popupform .imgBox img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 25px 0 0 25px;
    }

.popupform .btn-close {
    position: absolute;
    top: 0;
    right: 0;
}

p.form_tagline {
    display: none;
}

.popup-content input[type="submit"] {
    box-shadow: none !important;
    border: 0px none;
    /*border-radius: 5px;*/
    border-radius: 0 !important;
    cursor: pointer;
}

.popup-content input[type=email]:focus,
.popup-content input[type=text]:focus,
.popup-content textarea:focus {
    border: 2px solid var(--primary-color) !important;
}



.popup-content h2 {
    line-height: 31px;
    position: relative;
    display: inline-block;
    margin: 0 0 20px 0;
    color: #191919;
}

.popupform .btn-primary {
    padding: 8px 35px;
    height: 40px;
}

.popup-content input[type=email],
.popup-content input[type=tel],
.popup-content input[type=text],
.popup-content select,
.popup-content textarea {
    background: #ffffff;
    border: 0;
    padding: 10px;
    width: 100%;
    /*border-radius: 10px;*/
    border-radius: 0 !important;
    color: #000;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25) !important;
    outline: none 0px !important;
    background: #fff;
    margin-bottom: 0;
    height: 70px;
}

.popup-content textarea {
    height: 161px;
    resize: none;
}



.popup-content h2 {
    line-height: 31px;
    position: relative;
    display: inline-block;
    margin: 0 0 10px 0;
    color: #000;
}

.popup-content h3 {
    color: #000000;
    /*margin: 0 0 30px;*/
}
.popup-content .MainTitle {
    margin-bottom: 0;
}

.popup-content h2 + p {
    margin-bottom: 22px;
    font-weight: 300;
    color: #888;
    margin-bottom: 0;
}

.popup-content .TitleArea {
    display: flex;
    justify-content: space-between;
    padding: 0 0 15px 0;
    margin: 0 0 15px 0;
    border-bottom: var(--primary-color) solid 1px;
}
    .popup-content .TitleArea .imgBox {
        display: flex;
        max-width: 13%;
        position: relative;
        flex: 0 0 20%;
        height: 101px;
    }
.popup-content .TitleArea .titleBox {
    display: flex;
    max-width: 65%;
    flex: 0 0 65%;
    flex-direction: column;
    text-align: left;
}

.fancybox-close-small {
    background: transparent;
    border: 0;
    border-radius: 0;
    color: #ccc;
    cursor: pointer;
    opacity: .8;
    padding: 8px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 401;
}

.round-img1 {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    min-height: 266px;
    margin-bottom: 20px;
    position: relative;
}
.round-img1 img, .round-img1 video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.round-img1.videoBox {
    display: flex;
    align-items: center;
    justify-content: center;
    border: #96a6fb solid 5px;
}

.videoBox .videoCirlce {
    position: absolute;
    margin: auto;
}

@media (max-width :991px) {
    .round-img1 {
        min-height: inherit;
    }
    .popup-content .TitleArea .imgBox {
        display: none;
    }
    .popup-content .TitleArea .titleBox {
        max-width: 100%;
        flex: 0 0 100%;
    }
}

/*ABOUT PAGE CSS START HERE*/
.about-left-content p {
    font-style: italic;
}
.meet-section {
    background-color: #eef1fd;
}
.meet-box {
    display: inline-block;
    width: 100%;
    line-height: 24px;
    color: #56575b;
    min-height: 450px;
    margin: 25px 0;
    text-align: center;
}
.meet-box .img-box {
    width: 100%;
    padding: 0 0 35px 0;
    position: relative;
    min-height: 300px;
    margin-bottom: 12px;
}
.meet-box .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.meet-box .titlebox {
    display: inline-block;
    width: 90%;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 0 0 12px 12px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    text-align: center;
}
.meet-box .titlebox h5 {
    color: #1f1f1f;
    margin: 0;
}
.meet-box .titlebox h6 {
    color: var(--primary-color);
    margin: 0;
}

/*PRESS PAGE CSS START HERE*/
.press-box {
    display: inline-block;
    width: 100%;
    border-bottom: #e4e4e9 solid 1px;
    padding: 0 0 40px 0;
    margin: 0 0 40px 0;
    min-height: 340px;
}
.press-box .title-area {
    display: flex;
    align-items: center;
    min-height: 110px;
    margin: 0 0 25px 0;
}
.press-box .title-area .imgbox {
    display: flex;
    max-width: 170px;
    flex: 0 0 170px;
    align-items: center;
    justify-content: center;
}
.press-box .title-area .imgbox img {
    max-width: 130px;
}
.press-box .title-area .title {
    display: flex;
    flex-direction: column;
}
.press-box .title-area h5 {
    color: #1f1f1f;
}
.press-box .title-area .dated {
    color: #a4a4a4;
}
.press-box .contentbox {
    color: #56575b;
    line-height: 28px;
}
.press-box .contentbox a {
    color: #56575b;
}
.bottompagination {
    display: flex;
    align-items: center;
    justify-content: center;
}
.bottompagination .page-link {
    border-radius: 8px;
    border: 0;
    background: transparent;
}
.bottompagination  .page-item.disabled .page-link {
    background: transparent;
}
.bottom-cta {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 45px 45px;
    position: relative;
    border-radius: 18px;
    flex-direction: column;
    background-size: cover;
    background-repeat: no-repeat;
}
.bottom-cta h5 {
    margin: 10px 0 25px 0;t: 700;
    margin: 10px 0 25px 0;
    color: #fff;
}
.bottom-cta h4 {
    margin: 0;
    color: #fff;
}
.bottom-cta h3 {
    margin: 0;
    color: #fff;
}
.bottom-cta .right-img {
    position: absolute;
    right: 20px;
    bottom: 0;
}



@media (max-width :575px) {
    .bottom-cta {
        padding: 30px;
    }
    .bottom-cta .right-img {
        display: none;
    }
    .press-box .title-area {
        flex-direction: column;
        align-items: flex-start;
        min-height: auto;
    }
    .press-box .title-area .imgbox {
        max-width: auto;
        flex: 0 0 auto;
        margin-bottom: 10px;
    }
}

/*BLOG CSS START HERE*/

.blogs-main-section {
    background-color: #eef1fd;
}
.blogbox {
    display: inline-block;
    width: 100%;
    padding: 30px;
    background-color: #eef1fd;
    border: #fff solid 3px;
    border-radius: 18px;
    height: 100%;
    margin: 20px 0;
}
.blogbox h6 {
    color: #8a8c93;
    line-height: 20px;
    text-transform: uppercase;
}
.blogbox h4 {
    color: #1f1f1f;
    line-height: 28px;
    margin-bottom: 20px;
}
.blogbox p {
    color: #56575b;
    line-height: 24px;
    margin-bottom: 0;
}
.blogbox a {
    color: #56575b;
}
.blogbox a:hover {
    text-decoration: underline;
}

@media (max-width :991px) {
    .blogbox {
        height: auto;
        margin: 0;
    }
}

/*SERVICE PAGE CSS START HERE*/

.ser-boxesMain {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.serviceBox {
    display: flex;
    align-items: center;
    padding: 7px 25px;
    text-align: center;
    transition: all ease-in-out 0.3s;
    flex: 0 0 47.2%;
    max-width: 47.2%;
    flex-wrap: wrap;
    margin: 8px 8px;
    position: relative;
}
.serviceBox:hover {
    color: var(--primary-color);
}
.serviceBox:before {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--primary-color);
    content: "\f285";
    font-family: bootstrap-icons !important;
}
.serviceBox h4 {
    color: #1f1f1f;
    margin-bottom: 0;
    text-align: left;
}
.serviceBox:hover h4 {
    color: var(--primary-color);
}
.btnsArea .phNumber {
    margin-left: 15px;
}
.btnsArea .phNumber i {
    margin-right: 10px;
}

/*CONTACT CSS START HERE*/

.contact-center {
    border-radius: 18px;
    display: flex;
    border: var(--primary-color) solid 1px;
    overflow: hidden;
    height: 100%;
}
.contact-center .leftSide {
    display: flex;
    padding: 30px;
    width: 100%;
}
.contact-center form {
    display: inline-block;
    width: 100%;
}

.contact-center label {
    color: #1f1f1f;
    margin-bottom: 5px;
    width: 100%;
}

.contact-center .form-control {
    border-color: #f6f6f6;
    background-color: #f6f6f6;
    border-radius: 12px;
    height: 43px;
    line-height: 1;
    appearance: auto;
}

.contact-center .form-group {
    margin-bottom: 20px;
}

.contact-center textarea.form-control {
    height: 143px;
    resize: none;
}

.contact-center .rightSide {
    display: flex;
    max-width: 30%;
    flex: 0 0 30%;
    padding: 30px;
    background-color: #eef1fd;
    flex-direction: column;
}
.contact-center .rightSide .prepareBox {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 18px;
    padding: 15px;
    text-align: center;
    font-weight: 400;
    margin: 25px 0;
}
.contact-center .prepareBox .headr {
    color: #020c41;
    font-weight: 600;
    margin-bottom: 0 0 10px 0;
}
.contact-center .prepareBox p {
    margin-bottom: 0;
}
.contact-center .prepareBox a {
    color: #fff;
}
.contact-center .prepareBox a:hover {
    text-decoration: underline;
}
.contact-center .rightSide h5 {
    color: var(--primary-color);
    margin: 0 0 30px 0;
}
.contact-center .rightSide .address {
    display: inline-block;
    width: 100%;
    margin: 0 0 25px 0;
}
.contact-center .rightSide .address a {
    color: #1f1f1f;
}
.contact-center .rightSide .address a i {
    color: var(--primary-color);
    margin-right: 5px;
}
.contact-center .rightSide .address .title {
    color: #1f1f1f;
}
.contact-center .rightSide .address p {
    color: #56575b;
    margin: 5px 0;
    line-height: 24px;
}

@media (max-width: 991px) {
    .contact-center {
        flex-direction: column;
    }
    .contact-center .leftSide {
        max-width: 100%;
        flex: 0 0 100%;
    }
    .contact-center .rightSide {
        max-width: 100%;
        flex: 0 0 100%;
    }
}

/*ORDER CSS START HERE*/

.order-main-box {
    border: #eef1fd solid 2px;
    flex-direction: column;
    margin-bottom: 30px;
    height: auto;
}
.order-main-box .main-title {
    background-color: var(--primary-color);
    padding: 20px 40px;
    display: inline-block;
    width: 100%;
    color: #ffffff;
}
.order-main-box .main-title.sty1 {
    background-color: #eef1fd;
    padding: 20px 40px;
    display: inline-block;
    width: 100%;
    color: var(--primary-color);
    font-size: 21px;
    font-weight: 600;
}
.order-main-box .main-title h4 {
    color: #ffffff;
    margin: 0;
    padding: 0;
}
.order-main-box .content-box {
    padding: 30px 40px;
    display: inline-block;
    width: 100%;
}
.order-main-box h6 {
    color: var(--primary-color);
    margin-top: 0;
    padding: 0;
}
.order-main-box h6.sty1 {
    color: var(--primary-color);
}
.order-main-box .mr-1 {
    margin-right: 10px;
}
.order-main-box .mr-2 {
    margin-right: 20px;
}
.order-main-box .mr-3 {
    margin-right: 30px;
}
.order-main-box .ml-1 {
    margin-left: 30px;
}

.order-main-box .ml-2 {
    margin-left: 20px;
}

.order-main-box .ml-3 {
    margin-left: 30px;
}
.engageContent {
    display: inline-block;
    width: 100%;
    background-color: #f6f6f6;
    border-radius: 12px;
    height: 240px;
    padding: 25px;
    overflow-y: scroll;
    font-size: 13px;
    color: #56575b;
    line-height: 28px;
}

.order-main-box .totalBox {
    background-color: #e3ffe9;
    font-size: 14px;
    font-weight: 300;
    line-height: 23px;
    color: #56575b;
    border-radius: 12px;
    padding: 15px 30px;
}
.order-main-box .totalBox h5 {
    color: #03a125;
    margin-top: 0;
    padding: 0;
}
.noteBox {
    background-color: #eef1fd;
    color: #56575b;
    border-radius: 12px;
    padding: 15px 30px;
}
.noteBox strong {
    color: var(--primary-color);
}

.bg-details {
    background-size: cover;
    background-repeat: no-repeat;
}

.costBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px;
    height: 100%;
    border-radius: 18px;
    border: var(--primary-color) solid 3px;
    text-align: center;
    transition: all ease-in-out 0.3s;
}
.costBox:hover {
    background-color: var(--primary-color);
}
.costBox h4 {
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.costBox h3 {
    color: #fff;
    text-transform: uppercase;
    margin: 0;
}
.costBox h6 {
    color: #fff;
    text-transform: uppercase;
    margin: 0;
}
.included-list {
    padding: 0;
}
.included-list li {
    position: relative;
    display: inline-block;
    width: 100%;
    padding-left: 60px;
    list-style-type: none;
    margin: 0 0 25px 0;
}
.included-list li h5 {
    color: var(--primary-color);
}
.included-list li p {
    color: #56575b;
}
.included-list li .numbering {
    position: absolute;
    left: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    width: 40px;
    height: 40px;
    color: #ffffff;
}

.registryiPBox {
    background-color: #eef1fd;
    margin: 35px 0;
    padding: 40px;
    border-radius: 18px;
}
.registryList {
    padding: 0;
}
.registryList li {
    position: relative;
    display: inline-block;
    width: 100%;
    padding-left: 40px;
    list-style-type: none;
    margin: 0 0 25px 0;
}

.registryList li h5 {
    color: var(--primary-color);
}

.registryList li p {
    color: #56575b;
}

.registryList .numbering {
    position: absolute;
    left: 0;
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    line-height: 1;
}
.iPUses {
    padding: 40px 0;
}
.iPUses .contentArea {
    border-left: #e6e9f6 solid 3px;
}
.details-bContent {
    padding: 20px 0;
    color: #56575b;
    border-top: #e6e9f6 solid 1px;
}
.details-bContent p {
    font-style: italic;
    margin-bottom: 30px;
}

.sDetailBox {
    display: inline-block;
    width: 100%;
    padding: 25px;
    background-color: var(--primary-color);
    border-radius: 18px;
    margin-top: 40px;
}
.sDetailBox .countBox {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #fff;
    border-radius: 18px;
    padding: 30px;
    height: 100%;
}
.sDetailBox .countBox h4 {
    color: var(--primary-color);
    margin: 0 0 10px 0;
}
.sDetailBox .countBox p {
    color: #1f1f1f;
    margin: 0;
    text-align: center;
    line-height: 22px;
}
.pressDetails {
    display: inline-block;
    width: 100%;
    padding-top: 50px;
}
.pressDetails .dated {
    color: #797979;
    margin-bottom: 20px;
}
.pressDetails h3 {
    color: #1f1f1f;
    margin-bottom: 20px;
}
.pressDetails .detailsBox {
    display: inline-block;
    background-color: #edf0fe;
    border-radius: 0 18px 18px 0;
    padding: 30px;
    margin: 30px 0;
}
.pressDetails .detailsBox h6 {
    color: #1f1f1f;
    margin: 0 0 25px 0;
}
.pressDetails .sm {
    font-style: italic;
    line-height: 26px;
}

.blog-details h3 {
    border-bottom: var(--primary-color) solid 1px;
    color: #1f1f1f;
    line-height: 46px;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.blog-details h5 {
    color: #1f1f1f;
    margin: 20px 0;
}

.blogList {
    padding: 15px 0;
    margin: 0;
}
.blogList li {
    list-style-type: none;
    display: inline-block;
    width: 100%;
    margin: 8px 0;
    position: relative;
    padding-left: 25px;
    line-height: 1;
}
.blogList li .number {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
}

.blogTable {
    display: inline-block;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    border: #eef1fd solid 2px;
}
.blogTable .title {
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 15px;
}
.blogBotom-Box {
    display: flex;
    background-color: #eef1fd;
    border-radius: 18px;
    padding: 25px;
    margin: 15px 0;
}
.blogBotom-Box .img-box {
    display: flex;
    max-width: 100px;
    flex: 0 0 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}
.blogBotom-Box .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blogBotom-Box .content-box {
    display: flex;
    max-width: 90%;
    flex: 0 0 90%;
    color: #56575b;
    line-height: 28px;
    flex-direction: column;
}
.blogBotom-Box .content-box h6 {
    color: #1f1f1f;
    margin-bottom: 15px;
}
.blogBotom-Box .content-box .socialBox {
    display: inline-block;
    width: 100%;
    margin-top: 10px;
}
.blogBotom-Box .content-box .socialBox i {
    color: #afb2ba;
    margin-right: 10px;
}

.libraryList {
    display: flex;
    flex-wrap: wrap;
}
.libraryBox {
    display: flex;
    max-width: 33.3%;
    flex: 0 0 33.3%;
    flex-direction: column;
    margin: 0 0 20px 0;
}
.libraryBox ul {
    padding: 0;
    margin: 0;
}
.libraryBox h4 {
    color: var(--primary-color);
    margin: 0 0 15px 0;
    padding: 0;
}
.libraryBox li {
    list-style-type: none;
    display: inline-block;
    width: 100%;
    margin: 0 0 5px 0;
}
.libraryBox li a {
    text-decoration: none;
    color: #56575b;
}


.wp-block-button {
    display: inline-block;
    margin: 0;
}
::marker {
    color: var(--primary-color);
}
.app-sec {
    background-color: #eaf2fa !important;
}
.app-sec h2{
    font-weight:bold;
}
.tips-box {
    padding: 31px 0;
}
    .tips-box h2 {
        font-weight: bold;
    }

    .tips-box ul li {
        margin-left: 20px;
        margin-bottom: 10px;
    }
.assistance {
    background-color: #eaf2fa;
    text-align: center;
    padding: 20px;
    border-radius:10px;
}
.fee-box {
    background-color: #eaf2fa;
    text-align: center;
    
    padding: 20px;
    width:100%;
}
.strong {
    color: var(--primary-color);
}
.about-btn {
    display: block;
    margin: 0 auto;
}
.patent-box {
    padding: 40px;
    BACKGROUND-COLOR: #004199;
}
    .patent-box h5 {
        margin-bottom: 1.5rem;
        color:white;
    }
    .patent-box h4 {
        margin-bottom: 1.5rem;
        color: white;
    }
    .patent-box h1 {
        margin-bottom: 1.5rem;
        color: white;
    }
    .patent-box ul {
        margin-left: 24px;
        margin-right: 24px;
    }
        .patent-box ul li {
            color: white;
            line-height: 1.3;
        }
    .patent-box p{
        color:white;
    }
    hr {
        color: white;
    }
.image-1 img{
    width:100%;
}
.image-1 h6{
    margin: 10px 0;
}
.b-fee {
    display: flex;
    justify-content: space-between;
}
.plus-box {
    display: flex;
    align-items: center;
}
.plus {
    color: var(--primary-color);
    padding: 0 30px 0 30px;
}
.easy {
    margin-bottom:20px;
}
.wl-sec {
    background-color: #eff4f3;
}
.wl-sec h2{
    font-weight:700;
}
.content h2 {
    color: #000;
}
.content ol li {
    margin-bottom: 20px;
}
.para h1{
    margin-bottom:30px;
}
.bottom-space{
    margin-bottom:30px;
}
.content-bg-box {
    padding:20px 0;
}
.content-bg-box a:hover {
    color:black;
}
.content-bg-box h2{
    margin-bottom:30px;
}
    .content-bg-box h5 a {
        color: black;
    }
.content-bg-box h5 a:hover{
    text-decoration:underline;
}
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
    transform: scale(.7) !important;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
}

.faqs .accordion-item {
    background-color: #00000005;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid #DCDCDC !important;
}

.faqs .accordion-button {
    background-color: transparent;
}

.faqs .accordion-button:focus {
    box-shadow:none;
}

h2 .hd-bg {
    background-color: var(--primary-color);
    text-align: center;
    color: white;
    padding: 10px 20px;
    margin-top: 10px;
    margin-bottom: 20px;
}
.wp-block-heading {
    margin-bottom: 20px;
}

h3.sm-heading {
    color: #000000;
    margin-bottom: 20px;
    font-size: calc(14px + (18 - 14) * (100vw - 320px) / (1920 - 320));
}

@media (max-width: 1366px) {
    .navbar a, .navbar a:focus {
        padding: 10px 0 10px 20px;
    }
}

@media (max-width: 1024px) {
    .navbar-mobile .dropdown ul .navCtaImg img {
        width: 100%;
    }
    .navbar .getstarted, .navbar .getstarted:focus {
        margin-left: 10px;
        padding: 10px 10px;
    }
    .navbar a, .navbar a:focus {
        padding: 10px 0 10px 10px;
    }
}

@media (max-width: 991px) {
    .navbar-mobile .dropdown ul .navCtaImg {
        display: none;
    }

    .navbar-mobile .dropdown ul .container {
        width: auto;
        padding: 0;
        margin: 0;
    }
}
@media (max-width: 575px) {
    .top-trusted .centerContent .heading-area {
        max-width: 100%;
        flex: 0 0 100%;
        justify-content: center;
    }
    .top-trusted .centerContent .logosBox {
        max-width: 100%;
        flex: 0 0 100%;
    }
    .top-trusted .logosBox .slick-slide img {
        margin: 0 auto;
    }
}

.trademarkSec1 {
    padding: 100px 0 80px 0;
}


.top-form {
    position: absolute;
    top: -120px;
    bottom: 0;
    z-index: 1;
    height: 500px;
    border-radius: 25px;
}
.top-form .form .formBox {
    border-radius: 0;
}

#hero.inner-banner.sty1 {
    padding: 250px 0 120px;
    overflow: auto;
    overflow: visible;
}

#hero.inner-banner.sty1 .container {
    position: relative;
}

.top-form .form-group {
    position: relative;
}

.top-form .form-group i {
    position: absolute;
    left: 10px;
    top: 16px;
    font-family: "FontAwesome";
    color: #313341;
    z-index: 9;
}

.top-form .form-top-box {
    background-color: var(--primary-color);
    padding: 15px 15px;
    border: 0;
    text-align: center;
    margin-bottom: 0;
    position: relative;
}

.top-form .form-top-box:after {
    position: absolute;
    top: -145px;
    height: 250px;
    width: 500px;
    left: -11%;
    background-color: var(--primary-color);
    content: "";
    border-radius: 50%;
    display: none;
}

#hero .top-form .form-top-box h3 {
    letter-spacing: 0;
    color: #fff;
    text-align: center;
    font-weight: 600;
    position: relative;
    z-index: 5;
    line-height: 1.3;
    text-transform: uppercase;
    padding-bottom: 0;
    margin-bottom: 0;
    border: 0;
    font-style: normal;
}

.top-form .form-top-box h3 span {
    font-weight: bold;
}

.top-form .form-top-box p {
    color: #fff;
    text-align: center;
    font-weight: 400;
    margin: 0;
}

.top-form .yellow-btn {
    margin: 0;
}

.top-form input {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    border: 1px solid rgb(234, 234, 234);
    background-color: #fff;
    height: 46px;
    padding-left: 35px;
    position: relative;
}

.top-form select {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    border: 2px solid rgb(234, 234, 234);
    background-color: #fff;
    height: 50px;
    position: relative;
    appearance: auto;
}

.top-form textarea {
    display: block;
    width: 100%;
    margin-bottom: 0;
    border: 2px solid rgb(234, 234, 234);
    background-color: #fff;
    height: 80px;
    padding-left: 35px;
    position: relative;
    resize: none;
}


/* BEGIN FAQs */


.FaqsMainUp h3 {
    color: #1f1f1f;
}

.FaqsMainUp h3 span {
    color: var(--primary-color);
}

.accordion_container {
    width: 100%;
}

.accordion_head {
    cursor: pointer;
    font-family: arial;
    padding: 0;
    display: block;
    text-align: left;
    margin: 0;
    color: var(--black);
}

.accordion_body {
    background: transparent;
    padding: 1rem 0 0;
    display: none;
    height: 0;
    overflow: hidden;
    transition: ease all 0.4s;
}

.open .accordion_body {
    height: auto;
    overflow: inherit;
    display: block;
}

.accordion_body p {
    padding: 0;
    margin: 0px;
    color: #666666;
    font-weight: 400;
    display: block;
    text-align: left;
    width: 100%;
}

.FaqsMain h4 {
    position: relative;
    bottom: 95px;
    left: initial;
    right: 0;
    text-align: center;
    background: var(--white);
    display: table;
    margin: 0px auto;
    padding: 0 30px;
}

.forbottom {
    border-bottom: 1px solid var(--primary);
    padding: 25px 20px;
}

.accordion_container .forbottom:last-child {
    border-bottom: 0;
}

.FaqsMainUp {
    padding: 5rem 0;
}

.collapsible-link {
    width: 100%;
    position: relative;
    text-align: left;
}

    .collapsible-link::before {
        content: "+";
        position: absolute;
        top: 50%;
        right: 0.8rem;
        transform: translateY(-50%);
        display: block;
    }

.collapsible-link[aria-expanded="true"]::before {
    content: "-";
}

.FaqsMain .accordion h2 .collapsible-link {
    color: #0e174b;
    text-decoration: none;
    text-transform: none !important;
}

    .FaqsMain .accordion h2 .collapsible-link:focus-visible {
        outline: none;
        border: 0;
    }

.FaqsMain .card-header:focus-visible, .FaqsMain .card:focus-visible {
    outline: none;
    border: 0;
}

.FaqsMain .accordion h2 .collapsible-link:focus {
    box-shadow: none;
    border: 0;
}

.FaqsMain .accordion .card p {
    text-align: left;
}

.package-slider .slick-slide {
    padding: 0;
}

.package-slider .slick-list {
    overflow: visible;
}

.package-slider.slick-initialized .slick-slide {
    filter: opacity(0.4);
    transition: all ease-in-out 0.3s;
    position: relative;
    pointer-events: none;
    transform: scale(.70);
    padding: 0;
}

    .package-slider.slick-initialized .slick-slide.slick-current.slick-active {
        filter: opacity(1);
        pointer-events: inherit;
        transform: scale(1);
    }

.package-slider .slick-slide .protect-pkg-include:before, .package-slider .slick-slide .protect-pkg-include:after {
    display: none;
}

.package-slider .slick-slide.slick-active .protect-pkg-include:before, .package-slider .slick-slide.slick-active .protect-pkg-include:after {
    display: block;
}

@media (max-width: 991px) {
    .package-slider .slick-slide.slick-active .protect-pkg-include:before, .package-slider .slick-slide.slick-active .protect-pkg-include:after {
        display: none;
    }
    #hero.inner-banner.sty1 {
        padding: 100px 0 80px;
    }
}
/* END Faqs */



.protect2 .slick-arrow {
    display: none !important;
}

.protect2 .slick-list {
    padding: 0 15%;
    overflow: visible;
}

.protect2 .slick-dots {
    text-align: right;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.protect2 .slick-track {
    max-width: 100% !important;
    transform: translate3d(0, 0, 0) !important;
    perspective: 100px;
}

.protect2 .slick-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    opacity: 0;
    width: 90% !important;
    transform: translate3d(0, 7px, 0);
    transition: transform 1s, opacity 1s;
}

.protect2 .slick-snext,
.protect2 .slick-sprev {
    display: block;
}

.protect2 .slick-current {
    opacity: 1;
    position: relative;
    display: block;
    transform: translate3d(0, 6px, 0);
    z-index: 2;
}

    .protect2 .slick-current .protect-pkg-include {
        pointer-events: inherit !important;
    }

.protect2 .slick-snext {
    opacity: 1;
    transform: translate3d(50%, -12px, -30px);
    z-index: 1;
    right: -50%;
    opacity: 0.4;
}

.protect2 .slick-sprev {
    opacity: 1;
    transform: translate3d(-50%, -12px, -30px);
    left: -50%;
    opacity: 0.4;
}

.protect2 .slick-cloned {
    pointer-events: none;
}

.protect2 .slick-sprev .protect-pkg-include, .protect2 .slick-current .protect-pkg-include {
    pointer-events: none;
}

.priceTag {
    background: #fff;
    color: var(--primary-color);
    border-radius: 12px;
    padding: 0 12px;
    font-weight: 500 !important;
}

.packageName {
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 12px;
    background-color: #fff;
    padding: 8px 35px;
    color: var(--primary-color);
}
.trustedLogos.slick-initialized .slick-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}


@media (max-width: 991px) {
    .protect-pkg-include:before, .protect-pkg-include:after {
        display: none;
    }
    .protect-pkg-include {
        border-radius: 25px 25px 25px 25px;
        pointer-events: none;
    }
    .protect2 .slick-current .protect-pkg-include {
        pointer-events: inherit !important;
    }
    .popupform {
        width: 575px;
        padding: 80px 0 80px 100px;
    }
    .popupform .imgBox {
        width: 40%;
    }
    .fbottom .btn-area {
        text-align: center;
    }
    #footer .social-area {
        justify-content: center;
    }
    .fbottom h4 {
        text-align: center;
    }
    .cardBox {
        text-align: center;
    }
    .fbottom .addBox {
        margin-top: 30px;
    }
    .fbottom .addBox br {
        display: block;
    }
    .navbar-mobile .dropdown ul li {
        min-width: inherit;
        width: auto;
        max-width: inherit;
        display: flex;
    }
    .navbar .dropdown ul a.btn {
        max-width: auto;
        width: auto;
    }
}

@media (max-width: 767px) {

    .protect2 .slick-slide {
        width: 100%;
    }

    .protect-pkg-include .right-list {
        margin-top: 50px;
    }

    .packageName {
        top: -40px;
    }

    .stepsMain {
        flex-direction: column;
    }

        .stepsMain .leftColumn {
            max-width: 100%;
            flex: 0 0 100%;
        }

        .stepsMain .content-section {
            max-width: 100%;
            flex: 0 0 100%;
            padding-top: 20px;
        }

        .stepsMain .leftColumn .stickyArea {
            padding-bottom: 0;
        }
}
@media (max-width: 991.98px) {
    .top-form {
        position: relative;
        top: 0;
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 575px) {
    .protect2 .slick-sprev, .protect2 .slick-snext {
        display: none !important;
    }

    .protect2 .slick-slide {
        width: 100% !important;
    }

    .protect2 .slick-arrow {
        display: block !important;
    }

    .protect2 .slick-arrow {
        position: absolute;
        left: 0;
        bottom: 0;
        background-color: var(--primary-color);
        border-radius: 50%;
        border: 0;
        color: #fff;
        padding: 0;
        width: 40px;
        height: 40px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        z-index: 50;
        border: #fff solid;
    }

    .protect2 button.slick-arrow {
        left: auto;
        right: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .stepsMain .leftColumn .stickyArea {
        padding-left: 35px;
        padding-top: 20px;
        text-align: center;
    }

    .stepsMain {
        align-items: center;
    }

    .protect2 .slick-list {
        padding-left: 5% !important;
        padding-right: 5% !important;
    }
    .popupform {
        width: 100%;
        padding: 0;
        max-width: 100%;
    }
    .headbox {
        max-width: 100%;
        flex: 0 0 100%;
    }
}


/* Dropdown Button */
.dropbtn {
    background-color: transparent;
    color: white;
    padding: 16px;
    border: none;
    cursor: pointer;
}



@media (max-width: 1280px) {
    .weDo-box {
        width: 150px;
        min-height: 150px;
    }
    .weDo-box:before {
        width: 160px;
        height: 160px;
    }
    .weDo-box:after {
        width: 140px;
        height: 140px;
    }
    .weDo-box .iconbox {
        height: 40px;
    }
    .weDo-box .iconbox img {
        max-height: 35px;
    }
}


    .rightMainServices h2 {
        color: #000;
        margin-bottom: 10px;
        text-transform: uppercase;
    }

    .rightMainServices ul {
        padding: 0;
    }

        .rightMainServices ul li {
            padding: 10px 0;
            border-bottom: #cacaca solid 1px;
        }

            .rightMainServices ul li a {
                color: #000;
                transition: all ease-in-out 0.3s;
                position: relative;
                left: 0;
            }

                .rightMainServices ul li a:hover {
                    color: var(--primary-color);
                    left: 10px;
                }

            .rightMainServices ul li::marker {
                color: transparent;
            }


    /*Mega Mneu*/

    .mega-menu a {
        text-decoration: none;
        color: #000000;
    }


    @media only screen and (min-width: 992px) {
        .mega-menu {
            width: 64vw;
            transform: translateX(-40%);
            top: 59px;
            box-shadow: 0px 4px 8px #00000042;
            border-top: 0;
            max-width: 1200px;
        }
    }


    .content-menu.active {
        display: block;
    }

    .content-menu {
        display: none;
    }


    /* Tabs */

    .mega-menu #tabs-nav a {
        padding: 10px 19px;
        border-bottom: 1px solid #CCC;
        transition: 0.3s ease-in;
    }

    #tabs-nav li a:last-child {
    }

    .ctm-navbar .mega-menu #tabs-nav li:last-child a {
        border-bottom: none;
    }

.ctm-navbar .mega-menu a:hover, .ctm-navbar .mega-menu li.active a {
    border-color: var(--primary-color);
}

    .tabs {
        width: 100%;
    }

    ul#tabs-nav {
        list-style: none;
        margin: 0;
        padding: 5px;
        overflow: auto;
        width: 100%;
    }


        ul#tabs-nav li {
            cursor: pointer;
            display: block;
            position: relative;
        }


            ul#tabs-nav li:hover,
            ul#tabs-nav li.active {
                background-color: var(--primary-color);
                color: #fff;
            }

    #tabs-nav li a {
        text-decoration: none;
        color: #000;
        display: block;
        padding: 10px 10px;
    }

    .tab-content {
        padding: 10px;
        background-color: #FFF;
    }

    .mega-menu-title {
        border-bottom: 1px solid #555555;
        padding-bottom: 5px;
        margin-bottom: 13px;
    }

    .mm-list {
        list-style: none;
        padding-left: 0;
    }

        .mm-list li a {
            padding: 10px 10px !important;
            border-bottom: 1px solid #e9e9e9;
            transition: 0.3s ease-in;
            display: block;
        }

            .mm-list li a:hover {
                background-color: var(--pri-color);
            }

    .mm-list-col-2 {
        column-count: 2;
        margin-bottom: 10px;
    }


    .triangle-left,
    .triangle-right {
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
    }

    .triangle-right {
        position: absolute;
        right: 10px;
        top: 14px;
        border-left: 6px solid black;
    }


    .triangle-left,
    .triangle-right,
    .triangle-top,
    .triangle-bottom {
        width: 0;
        height: 0;
        margin: 0px auto;
    }
    /*Mega Mneu End*/


    /*Circle image box*/

    .circle-imgbox {
        display: flex;
        flex-direction: row-reverse;
        padding: 20px;
        background-color: #fff;
        box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.12);
        border-radius: 24px;
        gap: 15px;
    }

    .cir-img {
        flex: 1 0 200px;
        max-width: 200px;
    }

    .cir-content {
        flex: 1;
    }

        .cir-content h3 {
            color: #2373C4;
        }

    .circle-imgbox-sec {
        position: relative;
        z-index: 1;
    }

        .circle-imgbox-sec:after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 40%;
            background-color: #fff;
            z-index: -1;
        }

    .cir-content p {
        color: #000;
    }

    .cir-content .global-btn {
        margin-top: 15px;
    }


    
    /*Max Width Quries*/
    @media (min-width: 992px) {
        .ma5menu__toggle {
            display: none !important;
        }
    }

    .navbar-expand-lg .navbar-nav .nav-link:hover {
        color: var(--primary-color);
    }



    .profileContent {
        background-color: #eef1fd;
        border-radius: 6px;
        padding: 15px;
        margin-top: 10px;
    }

    .profileContent .imgBox {
        width: 100%;
        margin-bottom: 15px;
    }

    .profileContent .imgBox img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .btn.btn-yellow {
        background: #fcc111;
        color: black;
        font-weight: 500;
        border-color: transparent;
    }

    .btn.btn-yellow:hover {
        background: #000;
        color: #fff;
    }

.serv-txt.ctR {
    text-align: left;
}
.serv-txt.ctL {
    text-align: right;
}
.accordion-button {
    font-size: calc(13px + (18 - 13) * (100vw - 320px) / (1920 - 320));
}


@media (max-width: 991px) {
    .mpy-3 {
        padding: 30px 0;
    }
    .whatwedo-sec .what-img {
        margin-top: 25px;
    }
    .whatwedo-sec .MainTitle {
        margin-bottom: 0;
    }
    .setup-sec .setup-img-box {
        display: none;
    }
    .m-box {
        padding: 20px !important;
    }
    .process-sec {
        padding-bottom: 30px;
    }
    .choose-sec .women-img {
        margin-bottom: 25px;
    }
    .testimonials {
        padding: 30px 0;
    }
    .compliance-sec {
        padding: 30px 0;
    }
    .compliance-sec .comp-right-img {
        display: none;
    }
    .compliance-sec::before {
        background-color: #3366cc30 !important;
    }
    .compliance-box {
        text-align: left;
    }
    .setup-sec {
        padding: 30px 0;
    }
    .bg-mission {
        padding: 30px 0 !important;
    }
    .serv-txt.ctR {
        text-align: center;
    }
    .serv-txt.ctL {
        text-align: center;
    }
    .footer-cta {
        padding: 50px 0;
    }
    
    .services-sec .mt-5 {
        margin-top: 20px !important;
    }
    .services-sec .serv-txt p {
        padding-bottom: 20px;
    }
    section.faqs {
        padding: 30px 0;
    }
    .cnt-info {
        margin-top: 25px;
    }
    section {
        padding: 0;
    }
    .cnt-detail {
        padding: 20px 0 !important;
    }
    .cont-form-sec {
        padding: 30px;
    }
    .f-w-cta {
        padding: 50px 0;
    }
    .f-w-cta .MainTitle {
        margin-bottom: 0;
    }
        .f-w-cta::before, .f-w-cta::after, .f-w-cta-btn::after {
            display: none !important;
        }

    .weDo-box:before {
        width: 100%;
        border-radius: 0;
    }

    .weDo-box:after {
        border-radius: 0;
        width: 100%;
    }

    .weDo-box {
        border-radius: 0;
        width: 100%;
    }

    .bottom-cta h4 {
        text-align: center;
    }

    .bottom-cta h3 {
        text-align: center
    }

    .bottom-cta .buttonsAreaLinks {
        text-align: center !important;
        margin-top: 10px;
    }

    .bottom-cta .buttonsAreaLinks a {
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .serviceBox {
        max-width: 100%;
        flex: 0 0 100%;
    }
    /*.compliance-box {
        text-align: left !important;
    }*/
    .compliance-img-box {
        margin-bottom: 20px;
    }

}

@media (max-width: 575px) {
    .buttonsAreaLinks a {
        margin-bottom: 10px;
    }
    
}



/*NEW PACKAGE CSS END*/


.bottom-cta form .form-control {
    height: 45px;
}


ul.nav li.dropdown:hover ul.dropdown-menu {
    display: block;
}

/*News-event and logo css*/

.logos-box-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
}

.logo-box .logo-link span {
    color: #000;
    transition: all ease-in-out 0.3s;
    position: relative;
    left: 0;
}
    .logo-box .logo-link span:hover {
        color: var(--primary-color);
        left: 10px;
    }

.logo-box a {
    text-decoration: none;
}

    .logo-box a:hover {
        text-decoration: underline;
    }

.logo-box {
    margin: 10px;
}

.logos-box-row {
    display: none;
}

.bg-none {
    background: none !important;
}
@media (min-width: 1200px) {
    .logo-box {
        width: 300px;
    }
}

@media (max-width: 991.98px) {
    .logo-box {
        width: 250px;
    }
    .logos-box-row {
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        padding: 0;
    }
}

@media (max-width: 768px) {

    .logo-box {
        width: 150px;
    }

}

@media (max-width: 575.98px) {
    .logos-section {
        padding-left: 20px;
        padding-right: 20px
    }
    .logos-box-row {
        flex-direction: column;
    }
}


/*News-letter-css-start-here*/

.news {
    padding-top: 100px;
    padding-bottom: 95px;
    position: relative;
}

.news::before {
    content: "";
    width: 100%;
    height: 29%;
    background-color: rgb(246, 248, 251);
    left: 0px;
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: -2;
    margin: auto;
}

.news-cnt {
    max-width: 902px;
    text-align: center;
}

    .news-cnt h1 span {
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgb(21, 27, 53);
    }

    .news-cnt p {
        line-height: 158.3%;
        text-align: center;
        color: rgb(86, 90, 94);
        padding-bottom: 60px;
        margin: 0px;
    }

.news-box {
    padding-bottom: 17px;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.news-box-img {
    background: #000;
    border-radius: 40px;
    padding: 2px;
    max-width: 300px;
}

    .news-box-img img {
        border-radius: 40px;
    }

.news-box-cnt {
    padding-left: 10px;
    width: 75%;
}

    .news-box-cnt h3 {
        color: #000;
        padding-top: 10px;
    }

    .news-box-cnt p {
        line-height: 140%;
        color: rgb(0, 0, 0);
    }
/*News letter css ends here*/

@media (max-width: 991px) {
    .hidden-md {
        display: none !important;
    }

    .fancybox-slide--html .fancybox-close-small {
        top: 5px;
        width: 30px;
        height: 30px;
        padding: 0px;
    }
    .popupform .imgBox {
        display: none;
    }
}
.text-primary {
    color: #000 !important;
}

.disclaimer-text p {
    font-size: 14px;
    line-height: 16px;
    color: #fff;
}
.disclaimer-text p strong {
    color: #fff;
    font-weight: 600;
}
.services-sec .services-top-parent {
    position: relative;
}
.services-sec .services-top-bg {
    position: absolute;
    content: "";
    width: 95%;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: -60px;
    height: 170px;
    background: linear-gradient(90deg,rgba(197, 10, 43, 1) 0%, rgba(143, 22, 43, 1) 50%);
    border-radius: 15px;
}
.services-sec .whyChooseBox {
    background-color: #fff;
    border-radius: 15px;
    z-index: 2;
    position: relative;
    border: 2px solid var(--primary-color);
}
    .services-sec .whyChooseBox .contentArea {
        align-items: baseline;
    }
    .services-sec .whyChooseBox .iconArea {
        border-radius: 50%;
        background-color: #F4F4F4;
    }

.f-w-cta::before, .f-w-cta::after {
    display: none !important;
}

.f-w-cta {
    background-size: contain;
    padding: 100px 0;
}

.testimonial-item::after{
    display:none;
}

.testi-box-head h5 {
    color: var( --secondary-color);
}

.rating-box {
    position: absolute;
    top: 40px;
    right: 40px;
}

.testimonial-item {
    border-radius: 12px;
}

.process-box {
    flex: 0 0 25%;
    max-width:25%;
    width:25%;

    &:hover
        {
            background: #FFFFFF;
            box-shadow: 0px 0px 22px rgba(0, 0, 0, 0.15);
            border-radius: 10px;
        }
}

.process-box h5{
    color:#000 !important;
}

.process-box {
    position: relative;
    padding: 15px 15px 15px 35px;
    width: 100%;
}


/*OCE Box*/

.oce-box {
    padding: 18px 20px;
    border: 1px solid rgba(16, 35, 23, 0.1);
    border-radius: 15px;
    transition: 0.3s ease-in;
    margin-bottom: 20px;
    min-height: 168px;
}

.oce-box h3 {
    font-weight: 600;
    font-size: 22px;
    line-height: 30px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 0;
}

.oce-box:hover {
    background-color: #FEE9ED;
}

.oce-box p{
    margin-bottom:0;
}

.oce-box img {
    margin-bottom: 15px;
}

/*OCE Box End*/

.wca-accordion .accordion-item {
    margin-bottom:15px;
    border-radius:15px;
    overflow:hidden;
}

.wca-accordion .accordion-item:not(:first-of-type) {
    border-top: 1px solid rgba(0,0,0,.125);
}

.wca-accordion .accordion-button:not(.collapsed) {
    color: #0c63e4;
    background-color: var(--primary-color);  
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
    color:#fff;
}

    .wca-accordion .accordion-button:not(.collapsed)::after {
        background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23ffffff' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
    }

.cp-box a {
    display: block;
    color: #646C67;
}

.cp-box {
    text-align: center;
    min-height: 300px;
    background-color: red;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.cp-box-cont {
    min-height: 150px;
    font-size: 20px;
}

.cp-box-cont p{
    font-size: 20px;
    line-height:1.2;
}

.cp-bg-1 {
    background-color: #FCF4D8;
}

.cp-bg-2 {
    background-color: #FEE9ED;
}

.cp-bg-3 {
    background-color: #E0F7EF;
}

.cp-box img {
    margin-bottom: 11px;
}

.cont-form-sec .form-control {
    height: 54px;
}


.home-sec1 a {
    color: var(--secondary-color);
    transition: 0.3s all;
}
.home-sec1 a:hover {
    color: var(--primary-color);
}
