:root {
    /*--primary-color: #066ffa;
    --secondary-color: #003f9c;
    --section-bg-color: #faf4ff;*/
    --primary-color: #444734;
    --secondary-color: #a5a984;
    --section-bg-color: #faf4ff;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #444444;
    overflow: hidden;
    overflow-y: auto;
}

p {
    font-size: 16px;
    line-height: 28px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}
a:hover {
    color: #444734;
    text-decoration: none;
}
.cl-white {
    color: #ffffff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
}
.top-bar {
    background-color: #066ffa;
    padding: 12px 0;
    margin-bottom: 15px;
}
.bar-ctm {
    display: flex;
    justify-content: end;
}
.top-ctm {
    display: flex;
    margin-right: 0;
}

    .top-ctm span {
        color: #fff;
        font-size: 14px;
        font-weight: bold;
        line-height: 1;
        padding-right: 10px;
    }

    .top-ctm a {
        color: #fff;
        font-size: 14px;
        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;
    }
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid var(--primary-color);
        border-top-color: white;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        -webkit-animation: animate-preloader 1s linear infinite;
        animation: animate-preloader 1s linear infinite;
    }

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    left: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: all 0.4s;
}

    .back-to-top i {
        font-size: 28px;
        color: #fff;
        line-height: 0;
    }

    .back-to-top:hover {
        background: var(--secondary-color);
        color: #fff;
    }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }

#header {
    /* background: #fff;*/
    background: transparent;
    transition: all 0.5s;
    z-index: 997;
    padding: 20px 0;
}
#header.header-scrolled {
    padding: 0;
}
#header .headmain {
    background-color: #ffffff;
    /*border-radius: 12px;*/
    border-radius: 0;
    padding: 12px 20px;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
#header.header-scrolled .logo img {
    max-height: 70px;
}

#header .container {
    position: relative;
}

#header .logo {
    font-size: 26px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

#header .logo a {
    color: #0b2341;
}

#header .navbar {
    position: inherit;
}

.navbar {
    padding: 0;
}
.lp-header {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    /*position: relative;*/
    position: inherit;
}

.navbar .contacts a {
    text-transform: none;
}


.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    padding: 10px 0 10px 30px;
    font-size: 15px;
    color: #1f1f1f;
    white-space: nowrap;
    transition: 0.3s;
    font-weight: 500;
}
.navbar a i.icons,
.navbar a i.icons:focus {
    font-size: 20px !important;
    margin-right: 5px;
}
.navbar .contacts a i.icons {
    color: #fff;
}
    
.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: var(--primary-color);
}

.navbar .getstarted,
.navbar .getstarted:focus {
    background: var(--secondary-color);
    padding: 10px 15px;
    margin-left: 40px;
    border-radius: 8px;
    color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
    color: #fff;
    background: #333;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    /*top: calc(100% 30px);*/
    top: 55px !important;
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fefff5;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    width: 100%;
    min-height: 250px;
    border-radius: 0 0 20px 20px;
    padding: 40px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 0;
    text-transform: none;
    color: #000;
}

.navbar .dropdown ul a i {
    font-size: 12px;
    margin-left: 0;
    margin-right: 10px;
}

.navbar .dropdown ul .navCta {
    display: flex;
    align-items: flex-start;
    min-height: 136px;
    border-radius: 20px;
    position: relative;
    padding: 15px;
    font-size: 17px;
    color: #fff;
    background: url(/assets/img/nav-cta-bg.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    margin-top: 15px;
    flex-direction: column;
}
.navbar .dropdown ul .navCta h5 {
    display: block;
}
.navbar .dropdown ul .navCta .getLegal {
    color: #fff;
    font-weight: 600;
    display: block;
    font-size: 17px;
}
.navbar .dropdown ul .navCta .navCtaImg {
    position: absolute;
    right: 10px;
    bottom: 0;
}

.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;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

.mobile-nav-toggle {
    color: var(--secondary-color);
    font-size: 28px;
    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;
        font-size: 15px;
        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;
    }

#hero {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 170px 0 80px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
#hero.inner-banner {
    width: 100%;
    height: 100%;
    padding: 175px 0;
    background-size: 100% 100%;
}
    #hero video {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    #hero .container {
        position: relative;
        z-index: 1;
    }
#hero .bottom-buttons {
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
#hero .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 25px;
    border: #fff solid 1px;
    border-radius: 8px;
    color: #fff;
    margin: 0 15px;
    transition: all ease-in-out 0.3s;
}
#hero .btn:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color)
}
#hero .btn i {
    margin-left: 8px;
    /*color: var(--primary-color);*/
}

#hero .tm-contact {
    border: transparent;
}

section.form-slide {
    padding: 0;
}

#hero h2, #hero .h2 {
    color: var(--secondary-color);
    margin: 0;
    font-weight: 700;
    font-size: calc(20px + (48 - 20) * (100vw - 320px) / (1920 - 320));
}
    #hero h2 span, #hero .h2 span {
        color: #1F1F1F;
    }

    #hero h3 {
        color: var(--primary-color);
        font-weight: 600;
        font-size: calc(18px + (45 - 18) * (100vw - 320px) / (1920 - 320));
        font-style: italic;
        padding: 0;
        margin: 15px 0 15px 0;
        /*font-family: 'Cormorant Garamond', serif;*/
        display: inline-block;
    }

#hero p {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    color: #333232;
    margin-top: 10px;
}
#hero .tab-content .tab-pane {
    padding: 0 10px;
}

.headbox {
    display: flex;
    align-items: center;
    justify-content: center;
}
.headbox .iconbox {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
    width: 46px;
    height: 46px;
    margin: 0 12px 0 0;
}
.headbox .textbox {
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    font-size: 14px;
    text-align: left;
    font-weight: 400;
}
.headbox .textbox span {
    font-weight: 700;
    font-size: 18px;
}

@media (min-width: 1200px) {
    #hero p {
        width: 100%;
    }
}

.slide-title span {
    /*padding: 0 12px;*/
}


@media (max-width: 992px) {
    #hero .carousel-container {
        text-align: center;
        top: 74px;
    }
}


@media (min-width: 1024px) {
    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 5%;
    }
}

@media (max-width:1400px) {
    #hero {
        padding: 100px 0 20px 0;
    }
}
@media (max-height:500px) {
    #hero {
        height:750px;
    }
}

img.btn-icon {
    width: 32px;
    margin-right: 8px;
}

section {
    padding: 60px 0;
}


/*LP main BANNER TABBING*/

.board {
    margin: 60px auto;
    min-height: 500px;
    background: #fff;
    -webkit-box-shadow: 5px 5px #ccc,-5px 10px #ddd,10px -5px #dadada;
    box-shadow: 5px 5px #ccc,-5px 10px #ddd,10px -5px #dadada;
}

    .board > div.board-inner {
        background: #fafafa url(http://subtlepatterns.com/patterns/geometry2.png);
        background-size: 30%;
    }

    .board .liner {
        height: 2px;
        background: #ddd;
        position: absolute;
        width: 80%;
        margin: 0 auto;
        left: 0;
        right: 0;
        top: 50%;
        z-index: 1;
    }

    .board p.narrow {
        width: 60%;
        margin: 10px auto;
    }

    .board .nav-tabs {
        position: relative;
        /* border-bottom: 0; */
        /* width: 80%; */
        margin: 40px auto 0;
    }

        .board .nav-tabs > li {
            width: 20%;
        }

            .board .nav-tabs > li a {
                width: 70px;
                height: 70px;
                margin: 20px auto;
                -webkit-border-radius: 50%;
                -moz-border-radius: 50%;
                border-radius: 50%;
                border: none;
                padding: 0;
            }

                .board .nav-tabs > li a:hover {
                    background: transparent;
                }

            .board .nav-tabs > li.active > a,
            .board .nav-tabs > li.active > a:hover,
            .board .nav-tabs > li.active > a:focus {
                color: #555555;
                cursor: default;
                background: none !important;
                border-width: 0px !important;
                border-bottom-color: transparent;
            }

            .board .nav-tabs > li.active span.round-tabs.one,
            .board .nav-tabs > li.active span.round-tabs.two,
            .board .nav-tabs > li.active span.round-tabs.three,
            .board .nav-tabs > li.active span.round-tabs.four,
            .board .nav-tabs > li.active span.round-tabs.five {
                background: #fff !important;
                border-color: #ddd;
            }

            .board .nav-tabs > li.active:after {
                content: " ";
                position: absolute;
                left: 45%;
                opacity: 1;
                margin: 0 auto;
                bottom: 0px;
                border: 10px solid transparent;
                border-bottom-color: #ddd;
            }

            .board .nav-tabs > li:after {
                content: " ";
                position: absolute;
                left: 45%;
                opacity: 0;
                margin: 0 auto;
                bottom: 0px;
                border: 5px solid transparent;
                border-bottom-color: #ddd;
                transition: 0.1s ease-in-out;
            }

    .board .tab-content .tab-pane {
        position: relative;
        padding-top: 50px;
    }

        .board .tab-content .tab-pane .head {
            font-family: 'Roboto Condensed', sans-serif;
            font-size: 25px;
            text-transform: uppercase;
            padding-bottom: 10px;
        }

    .board:after {
        position: absolute;
        bottom: 0;
        width: 0;
        height: 0;
        border-top: 20px solid #000;
        border-right: 20px solid #000;
        border-bottom: 20px solid transparent;
        border-left: 20px solid transparent;
    }

span.round-tabs {
    width: 70px;
    height: 70px;
    line-height: 70px;
    display: inline-block;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #fff;
    z-index: 2;
    position: absolute;
    left: 0;
    text-align: center;
    font-size: 25px;
    border-width: 2px;
    border-style: solid;
    border-color: transparent;
}

    span.round-tabs.one {
        color: #22c222;
        border-color: #22c222;
    }

    span.round-tabs.two {
        color: #febe29;
        border-color: #febe29;
    }

    span.round-tabs.three {
        color: #3e5e9a;
        border-color: #3e5e9a;
    }

    span.round-tabs.four {
        color: #f1685e;
        border-color: #f1685e;
    }

    span.round-tabs.five {
        color: #999;
        border-color: #999;
    }

@media (max-width: 585px) {
    .board {
        width: 90%;
        height: auto !important;
    }

    span.round-tabs {
        font-size: 16px;
        width: 50px;
        height: 50px;
        line-height: 50px;
    }

    .tab-content .head {
        font-size: 20px;
    }

    .nav-tabs > li a {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }

    li.active:after {
        content: " ";
        position: absolute;
        left: 35%;
    }
}




.section-bg {
    background-color: #f6f6f6;
}

.bold-title-main {
    font-weight: bold;
}
.box1 {
    width: 130px;
    height: 130px;
    border-radius: 100%;
    transform: rotate(0deg);
}

    .box1 img {
        max-width: 100%;
        border-radius: 100%;
    }

.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;
    font-size: 22px;
}

.about .content h3 {
    font-weight: 600;
    font-size: 26px;
}

.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;
    font-size: 20px;
    color: var(--primary-color);
    line-height: 1;
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .content .btn-learn-more {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    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;
    font-family: "Poppins", sans-serif;
    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;
    }
}

.why-chose-us-title {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
}

.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 {
    font-size: 22px !important;
    margin-left: 0px !important;
}
.testimonials {
    position: relative;
    background-color: #000;
}

    .testimonials .testimonial-wrap {
        /*padding-left: 20px;*/
    }

    .testimonials .testimonials-carousel,
    .testimonials .testimonials-slider {
        overflow: hidden;
    }

    .testimonials .testimonial-item {
        min-height: 260px;
        position: relative;
        margin: 10px;
        padding: 10px 15px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        opacity: 0.7;
        filter: blur(2px);
        transition: 0.3s ease-in-out;
    }

    .testimonials .slide-item {
        background-color: transparent;
        margin: 0;
        min-height: 65px;
        box-shadow: none;
    }

.testimonials-image-slider {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.testimonials .testimonial-item .test-contact {
    position: relative;
    /*padding-left: 100px;*/
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    overflow: hidden;
}

    .testimonials .testimonial-item .test-contact:before {
        background-color: #fff;
        position: absolute;
        content: "";
        height: 1px;
        width: 80%;
        left: 0;
        top: 0;
    }

.test-contact .ratings {
    color: #ffc833;
    font-size: 14px;
}

.testimonials .testimonial-item .testimonial-img {
    border-radius: 50px;
    border: 2px solid #fff;
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
    object-fit: cover;
}

.testimonials .testimonial-item h3 {
    font-size: 14px;
    font-weight: 600;
    margin: 10px 0 5px 0;
    color: #CFCFCF;
}

.testimonials .testimonial-item h4 {
    font-size: 12px;
    color: var(--secondary-color);
    margin: 0;
    font-weight: 600;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: var(--secondary-color);
    font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}

.testimonials .testimonial-item .content-area {
    position: relative;
    /*padding: 0 0 0 95px;*/
}

    .testimonials .testimonial-item .content-area .quote {
        position: absolute;
        left: 0;
        top: 0;
    }

        .testimonials .testimonial-item .content-area .quote img {
            filter: brightness(0) saturate(100%) invert(22%) sepia(4%) saturate(2752%) hue-rotate(29deg) brightness(101%) contrast(84%);
        }

.testimonials-image-slider .swiper-slide img {
    border: 2px solid transparent;
    border-radius: 50%;
    transition: all 0.3s ease;
    padding: 3px;
}

    /*swiper-slide slick-slide slick-current*/
    .testimonials-image-slider .swiper-slide img.active {
        border: 2px solid var(--secondary-color);
    }

.slick-current .testimonial-item {
    background-color: #FFFFFF33;
    opacity: 1;
    filter: blur(0);
}

.testimonials .slick-current .testimonial-item p {
    color: #fff;
}

.slick-current .testimonials-image-slider .swiper-slide {
    border: 1px solid var(--secondary-color);
}

.testimonials-image-slider .slick-slide.slick-active img.active {
    border: 3px solid #c02533; /* brand color */
    border-radius: 12px; /* optional rounding */
    box-shadow: 0 0 15px rgba(0,0,0,0.25); /* optional glow */
    transition: all 0.3s ease;
}

.testimonial-wrap {
    position: relative;
    padding: 5px;
}

.testimonials .slick-current .testimonial-wrap::after {
    background: url(/assets/img/testinomial/center-testi-bg.webp);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    /*background-position: center;*/
    width: 100%;
    height: auto;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background-size: cover;
    background-position: center center;*/
}

.testimonials .testimonial-item p {
    color: #CFCFCF;
    font-size: 15px;
    line-height: 26px;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

    .testimonials .swiper-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background-color: #fff;
        opacity: 1;
        border: 1px solid var(--secondary-color);
    }

    .testimonials .swiper-pagination .swiper-pagination-bullet-active {
        background-color: var(--secondary-color);
    }

.testimonials .bottomsec {
    display: flex;
    align-items: center;
    border-top: #dee1ed solid 1px;
    padding: 10px 0 0 0;
    margin: 10px 0 0 0;
}

.testimonials .overall {
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-color);
    padding: 10px 15px;
}

    .testimonials .overall strong {
        font-size: 14px;
    }

.testimonials .rating-box {
    font-size: 12px;
    font-weight: 500;
    color: #1f1f1f;
}

    .testimonials .rating-box span {
        color: var(--secondary-color);
        font-weight: bold
    }

    .testimonials .rating-box .ratings {
        color: #ffc833;
    }

.testimonials .testimonial-wrap {
    /*padding-left: 20px;*/
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    min-height: 260px;
    position: relative;
}

.testimonials .slide-item {
    background-color: transparent;
    margin: 0;
    min-height: 65px;
    box-shadow: none;
}


.test-contact .ratings {
    color: #ffc833;
    font-size: 14px;
}

.testimonials .testimonial-item .testimonial-img {
    border-radius: 50px;
    border: 2px solid #fff;
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
    object-fit: cover;
}



.testimonials .testimonial-item h4 {
    font-size: 12px;
    color: var(--secondary-color);
    margin: 0;
    font-weight: 600;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: var(--secondary-color);
    font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}
.inverted-comma img {
    filter: brightness(0) saturate(100%) invert(69%) sepia(27%) saturate(279%) hue-rotate(27deg) brightness(92%) contrast(91%);
    transform: rotateY(180deg);
}
.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}

.testimonials .testimonial-item .content-area {
    position: relative;
   
}
@media (max-width:991.98px) {
    .testimonials .testimonial-item .content-area {
        padding: 0;
    }
}
.testimonials .testimonial-item .content-area .quote {
    position: absolute;
    left: 0;
    top: 0;
}
@media (max-width: 991.98px) {
    .testimonials .testimonial-item .content-area .quote {
        top: -35px;
    }
        .testimonials .testimonial-item .content-area .quote img {
            max-width: 35px;
        }
    .testimonials .testimonial-item {
        margin-top: 35px;
    }
}
    .testimonials .testimonial-item .content-area .quote img {
        filter: brightness(0) saturate(100%) invert(22%) sepia(4%) saturate(2752%) hue-rotate(29deg) brightness(101%) contrast(84%);
    }
    .testimonials .testimonial-item p {
        /*color: #56575b;*/
        font-size: 15px;
        line-height: 26px;
    }

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid var(--secondary-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--secondary-color);
}

.testimonials .bottomsec {
    display: flex;
    align-items: center;
    border-top: #dee1ed solid 1px;
    padding: 10px 0 0 0;
    margin: 10px 0 0 0;
}
.testimonials .overall {
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-color);
    padding: 10px 15px;
}
.testimonials .overall strong {
    font-size: 14px;
}
.testimonials .rating-box {
    font-size: 12px;
    font-weight: 500;
    color: #1f1f1f;
}
.testimonials .rating-box span {
    color: var(--secondary-color);
    font-weight: bold
}
.testimonials .rating-box .ratings {
    color: #ffc833;
}

.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 {
    font-size: 20px;
    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;
}



.buttons {
    isolation: isolate;
}
#footer {
    background-color: transparent;
    padding: 0 0;
    color: #fff;
    font-size: 14px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
}

#footer .footer-top {
    padding: 80px 0 50px 0;
    border-bottom: #fff solid 1px;
}

#footer .footer-top .footer-info h3 {
    font-size: 24px;
    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;
    font-family: 'Poppins', sans-serif;
}

#footer .footer-top h4 {
    font-size: 16px;
    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: #a5a984;
    font-size: 14px;
    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: #a5a984;
}

#footer .copyright {
    padding: 15px 0;
    background-color: transparent;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
}
#footer .copyright a {
    color: #fff;
    text-transform: none;
}
.copyleft {
    text-align: left;
}
.copyrgt {
    text-align: right;
}
.copyrgt a {
    color: #fff;
}
.fbottom {
    padding: 30px 0;
    border-top: var(--secondary-color) solid 1px;
}
.fbottom .btn-area {
    text-align: left;
}
#footer .social-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /*margin-top: 15px;*/
    text-align: center;
}
#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:first-child {
    /*padding-top: 10px !important;*/
}
#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;
    font-size: 20px;
    margin: 0 5px;
    transition: all ease-in-out 0.3s;
}
#footer .social-area ul li a:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-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 {
    font-size: 22px;
    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;
    }
}

@media (max-width: 991px) {
    .package-tab-list > li a {
        font-size: 17px;
    }
}

.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;
    }
}

.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-size: calc(14px (20 - 14) * (100vw - 320px) / (1920 - 320));
    font-weight: 700;
}

    .addon-pack-selection h6 span {
        background-color: var(--primary-color);
        padding: 0px 6px;
        color: #fff;
        line-height: 1.4;
        font-size: calc(14px (18 - 14) * (100vw - 320px) / (1920 - 320));
    }

.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;
        font-size: calc(13px (16 - 13) * (100vw - 320px) / (1920 - 320));
    }

    .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;
                font-size: calc(12px (14 - 12) * (100vw - 320px) / (1920 - 320));
                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;
            font-size: calc(11px (13 - 11) * (100vw - 320px) / (1920 - 320));
            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;
    }
    .product-card .cards-sec {
        flex-wrap: wrap;
    }
        .product-card .cards-sec .cardinfo {
            flex: 1 1 65% !important;
        }
        .product-card .cards-sec .cardinfo:hover {
            flex-basis: 65% !important;
        }
    .product-card .text-right {
        text-align: left;
    }
}

.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;
    }
    /*.product-card .cards-sec{
        flex-wrap:wrap;
    }*/
        .product-card .cards-sec .cardinfo:hover {
            /*display: block;
            transform: none !important;*/
            margin: 0 !important;
        }
            .product-card .cards-sec .cardinfo:hover .ico {
                /*display: none !important;*/
            }
    body .product-card .cards-sec .cardinfo:hover .txt {
        /*flex: 0 0 100%;
        max-width: 100%;*/
    }
    body .title-area.sty1 h2 {
     
        font-size: 21px;
      
    }
    body .cont-title h2 {
        font-size: 21px;
        padding:10px 0 0;
    }
    .product-card .cards-sec .cardinfo .ico img {
        max-width: 100px;
    }
}

@media (max-width: 575.98px) {
    .product-card .cards-sec .cardinfo {
        height: 180px !important;
        flex-direction: column-reverse;
        padding: 20px 20px !important;
    }
        .product-card .cards-sec .cardinfo:hover, .product-card .cards-sec .cardinfo.active {
            /*height: 320px !important;*/
            height: 101% !important;
        }
    .product-card .cardinfo h3 {
        padding: 0 0 8px !important;
    }
    .product-card .cards-sec .cardinfo p {
        padding: 0 !important;
    }
        .product-card .cards-sec .cardinfo .txt {
            text-align: center;
            padding: 0 !important;
        }
    .product-card .cardinfo h3:before {
        right: 0;
        margin: auto;
    }
    .product-card .cards-sec .cardinfo .ico {
        position: relative !important;
        right: 0 !important;
        padding: 0 0 10px 0;
    }
}

@media (max-width: 450.98px) {
    .product-card .cards-sec .cardinfo {
            height: 215px !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 {
    font-family: "Poppins", sans-serif;
    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;
        font-size: 15px;
    }

    .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(/assets/img/mix/services-icon1.png);
        background-repeat: no-repeat;
        background-position: top right;
        background-size: cover;
        width: 75px;
        height: 75px;
    }

    .service-box .ser-img2 {
        background-image: url(/assets/img/mix/services-icon2.png);
        background-repeat: no-repeat;
        background-position: top right;
        background-size: cover;
        width: 75px;
        height: 75px;
    }

    .service-box .ser-img3 {
        background-image: url(/assets/img/mix/services-icon3.png);
        background-repeat: no-repeat;
        background-position: top right;
        background-size: cover;
        width: 75px;
        height: 75px;
    }

    .service-box .ser-img4 {
        background-image: url(/assets/img/mix/services-icon4.png);
        background-repeat: no-repeat;
        background-position: top right;
        background-size: cover;
        width: 75px;
        height: 75px;
    }

    .service-box .ser-img5 {
        background-image: url(/assets/img/mix/services-icon5.png);
        background-repeat: no-repeat;
        background-position: top right;
        background-size: cover;
        width: 75px;
        height: 75px;
    }

    .service-box .ser-img6 {
        background-image: url(/assets/img/mix/services-icon6.png);
        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;
}


#hero.lp-banner .carousel-container {
    top: 110px;
}
#hero.lp-banner .carousel-container .slide-form {
    margin-top: 0;
}
#hero.lp-banner h2, #hero.lp-banner p {
    text-align: left;
}
#hero.lp-banner .slide-form p {
    color: #000;
    text-align: center;
}
@media (max-width: 992px) {
    br {
        display: none;
    }
    .navbar-mobile a, .navbar-mobile a:focus {
        font-size: 13px;
    }
    #hero.lp-banner .carousel-container {
        top: 78px;
    }
    #hero .carousel-container {
        top: -73px;
    }
    #hero.lp-banner {
        height:750px;
    }
    #hero.lp-banner .slide-form h3 {
        font-size: 20px;
    }
    #hero.lp-banner .slide-form {
        padding: 15px 15px;
    }

    .navbar a, .navbar a:focus {
        justify-content: flex-start;
    }
    #hero.lp-banner h2 {
        text-align: center;
        font-size: 36px;
    }
    .btn11 {
        min-width: 200px;
    }
    #hero.lp-banner p {
        text-align: center;
    }

    #header {
        padding: 10px;
    }
}
@media (max-width: 768px) {
    #hero.lp-banner .carousel-inner .carousel-item {
        background-position: left top;
    }
    #hero.lp-banner .slide-form h3 {
        font-size: 17px;
    }
    #hero.lp-banner .slide-form p {
        font-size: 13px;
        margin: 10px 0;
    }
    .sub-heading {
        font-size: 20px;
    }
    #hero.lp-banner h2 {
        text-align: center;
        font-size: 25px;
    }

    .step-box {
        margin-bottom: 15px;
    }

    .section-title p {
        font-size: 20px;
    }

    .pricing h3 {
        font-size: 30px;
    }

    .btn11 {
        padding: 15px 10px;
        font-size: 14px;
    }

    .pricing ul i {
        margin-left: 0;
    }

    .testimonials .testimonial-wrap {
        padding-left: 0;
    }

    .testimonials .testimonial-item {
        padding: 15px 15px 15px 15px;
    }    
}
@media (max-width: 460px) {
    #hero.lp-banner h2 {
        font-size: 20px;
    }
    .lp-banner-list li {
        font-size: 13px;
        position: relative;
        padding-left: 18px;
    }
    .lp-banner-list li i {
        position: absolute;
        left: 0;
        top: 3px;
    }
    #hero.lp-banner p {
        font-size: 13px;
    }
    #hero.lp-banner .btn11 {
        min-width: auto;
        width: 100%;
    }
    #hero.lp-banner .slide-form input {
        height: 35px;
    }
}
.lp-banner-list {
    text-align: left;
    padding-left: 0;
}
.lp-banner-list li {
    list-style-type: none;
    color: #fff;
}
.pry-btn {
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
    margin:0;
}
.pry-btn:hover {
     color: #fff;
}


.top-trusted {
    /*background-color: var(--primary-color);*/
    background-color: #fff;
    padding: 30px 0;
    position: relative;
}

.top-trusted .arrowMode {
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 30%;
    position: absolute;
}

.top-trusted h4 {
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    display: flex;
    font-size: 20px;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.welcome-section {
    background-repeat: no-repeat;
    background-position: top right;
    padding: 100px 0;
}
.title-area {
    margin: 0 0 27px 0;
}
    .title-area h2 {
        color: var(--secondary-color);
        font-size: calc(20px + (38 - 20) * (100vw - 320px) / (1920 - 320));
        margin: 0;
        padding: 0;
        font-weight: 600;
        text-transform: uppercase;
    }
        .title-area h2 span {
            font-weight: 600;
            color: #1f1f1f;
        }
    .title-area.sty1 h2 {
        color: #1f1f1f;
        /*font-size: calc(20px + (38 - 20) * (100vw - 320px) / (1920 - 320));
        font-weight: 700;*/
    }
    .welcome-section .content-box {
        padding: 0 35px;
    }
.how-section {
    position: relative;
    /*overflow: hidden;*/
    transition: 0.3s ease-in-out;
}

    .how-section .title-wrap {
        position: sticky;
        top: 80px;
    }

.how-wrap {
    position: sticky;
    top: 270px;
}


.how-box {
    display: flex;
    /*gap: 50px;*/
    justify-content: space-between;
    align-items: center;
    position: relative;
    transition: 0.3s ease-in-out;
    /*abvfi*/
    transition: 0.3s ease-in-out;
}


    .how-box:before {
        position: absolute;
        content: "";
        top: 0;
        left: 50%;
        width: 1px;
        height: 100%;
        background-color: #00000033;
        transition: 0.3s ease-in-out;
    }

    .how-box:after {
        position: absolute;
        content: "";
        top: 35%;
        left: 49.35%;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background-color: var(--secondary-color);
        transition: 0.3s ease-in-out;
    }

    .how-box:hover:after {
        background-color: var(--primary-color);
    }

.how-content {
    display: flex;
    gap: 15px;
    width: 45%;
    /*snovg*/
    /*position: sticky;
    top: 100px;
    align-self: flex-start;
    z-index: 2;*/
    top: 100px; /* adjust depending on your header height */
    align-self: center;
    z-index: 2;
    transition: 0.3s ease-in-out;
    background-color: #fff;
}

.how-image {
    width: 45%;
    align-self: flex-start;
}

@media (max-width: 991.98px) {
    .how-content, .how-image {
        width: 48%;
    }

    .how-box:after {
        left: 48.7%;
    }
}

@media (max-width: 767.98px) {
    .how-content, .how-image {
        width: auto;
    }

    .how-box:after, .how-box:before {
        display: none;
    }

    .how-box {
        flex-direction: column;
        padding-top: 20px;
        padding-bottom: 20px;
    }

        .how-box.sty2 {
            flex-direction: column-reverse;
        }

    .how-content {
        position: relative;
        top: auto;
    }
}

.how-content .s-no {
    border-radius: 10px;
    width: 62px;
    height: 62px;
    background-color: var(--primary-color);
    flex-grow: 0;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .how-content .s-no span {
        font-size: calc(26px + (44 - 26) * (100vw - 320px) / (1920 - 320));
        color: #fff;
    }

.how-content .content-card h3 {
    font-size: calc(17px + (26 - 17) * (100vw - 320px) / (1920 - 320));
    color: #1F1F1F;
}



@media (max-width :991px) {
    .welcome-section .content-box {
        padding: 0;
    }
    .title-area h2 {
        /*font-size: 25px;*/
    }
    .how-content, .how-image {
        width: 48%;
    }

    .how-box:after {
        left: 48.7%;
    }
    .how-content {
        position: relative;
        top: 0;
    }
}
.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 15px;
    box-shadow: none !important;
}
    .btn-primary:hover, .btn-primary:active, .btn-primary:focus {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }
    .btn-white {
        background-color: #ffffff;
        border-color: #ffffff;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        padding: 8px 15px;
        color: var(--secondary-color);
    }
.btn-white-border {
    background-color: transparent;
    border-color: #ffffff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 15px;
    color: #ffffff;
}

.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;
    }
}
.product-card .cards-sec {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    justify-content: space-between;
}
.product-card .cardinfo h3 {

    font-size: 20px;
    font-weight: 600;
    position: relative;
    padding: 0 0 20px;
    color: #fff;
}
.product-card .cardinfo h3:before {
    content:'';
    background: #fff;
    width:110px;
    height:1px;
    display:block;
    position:absolute;
    bottom:0;
    left:0;
}
.product-card .cards-sec .cardinfo {
    background: #444734;
    color: #fff;
    border-radius: 10px;
    padding: 50px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    box-sizing: border-box;
    cursor: pointer;
    height: 300px;
    flex: 1 1 1%;
}
    .product-card .cards-sec .cardinfo p {
        margin: 0;
        padding: 10px 0 0;
        color: #fff;
        line-height:1.5;
    }
    .product-card .cards-sec .cardinfo .txt {
        transition: all 0.4s ease;
    }
    .product-card .cards-sec .cardinfo .ico {
        /*display: none;*/
        transform: translateX(40px);
        transition: all 0.4s ease;
        position: absolute;
        right: 10px;
        visibility: hidden;
        z-index: -1;
    }
        .product-card .cards-sec .cardinfo .ico img {
            max-width: 140px;
            height: auto;
            transition: all 0.5s ease;
        }

    .product-card .cards-sec .cardinfo:hover {
        background: linear-gradient(90deg, #FFFFFF -23.84%, #A5A984 215.44%);
        color: #1f1f1f;
        /*transform: scaleX(1.10);*/
        transition: all 0.4s ease-in-out;
        z-index: 1;
        /*margin: 0 20px;*/
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        flex-basis: 30%;
    }
        /*.product-card .cards-sec .cardinfo.sty-1:hover {
            background: url(/assets/img/slide/trademark-filing-renewals-bg.gif);
        }
        .product-card .cards-sec .cardinfo.sty-2:hover {
            background: url(/assets/img/slide/trademark-search-bg.gif);
        }
        .product-card .cards-sec .cardinfo.sty-3:hover {
            background: url(/assets/img/slide/complete-documentation-services-bg.gif);
        }*/

    .product-card .cards-sec .cardinfo.active {
        background: linear-gradient(90deg, #FFFFFF -23.84%, #A5A984 215.44%);
        color: #1f1f1f;
        /*transform: scaleX(1.10);*/
        transition: all 0.4s ease-in-out;
        z-index: 1;
        /*margin: 0 20px;*/
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        flex-basis: 30%;
    }
        .product-card .cards-sec .cardinfo.active .txt {
            padding: 0 125px 0 0;
        }

        .product-card .cards-sec .cardinfo:hover .txt {
            /*flex: 0 0 65%;
        max-width: 65%;*/
            padding: 0 125px 0 0;
        }
    .product-card .cards-sec .cardinfo:hover h3 {
        color: #1F1F1F;
    }
    .product-card .cards-sec .cardinfo.active h3 {
        color: #1F1F1F;
    }
    .product-card .cards-sec .cardinfo:hover h3:before {
        background: #444734;
    }
    .product-card .cards-sec .cardinfo.active h3:before {
        background: #444734;
    }
    .product-card .cards-sec .cardinfo:hover p {
        color: #444734;
    }
    .product-card .cards-sec .cardinfo.active p {
        color: #444734;
    }
        .product-card .cards-sec .cardinfo:hover .ico {
            /*display: block;*/
            transform: translateX(0);
            visibility: visible;
        }
    .product-card .cards-sec .cardinfo.active .ico {
        /*display: block;*/
        transform: translateX(0);
        visibility: visible;
    }



.welcome-video {
    display: inline-block;
    width: 100%;
    text-align: center;
    position: relative;
    top: 38px;
    color: #96a6fb;
    z-index: 5;
}
.welcome-video i {
    font-size: 90px
}

.weDo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-direction: column;
    border-radius: 8px;
    margin: 0 0 15px 0;
    min-height: 170px;
    padding: 10px;
    background: rgb(213,221,255);
    background: linear-gradient(180deg, rgba(213,221,255,1) 0%, rgba(255,255,255,1) 100%);
}
.weDo-box .iconbox {
    margin-bottom: 10px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.weDo-box .iconbox img {
    filter: invert(1);
}
.weDo-box p {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    text-align: center;
}

.protect-area {
    position: relative;
    padding-bottom: 0;
}

.protect-area h2 span {
    /*font-size: calc(30px + (47 - 30) * (100vw - 320px) / (1920 - 320));
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 600;*/
}

    .protect-area .bg-area {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center top;
        height: 50%;
        position: absolute;
        width: 100%;
        top: 0;
        z-index: -1;
    }
.protect-pkg-include {
    background-color: var(--secondary-color);
    border-radius: 25px 25px 0 0;
    padding: 28px;
    position: relative;
}
.protect-pkg-include:before {
    position: absolute;
    left: -53.5px;
    bottom: 0;
    height: 54px;
    width: 38px;
    border-bottom: 54px solid #002153;
    border-right: 54px solid transparent;
    transform: rotate(180deg);
    content: '';
}
.protect-pkg-include:after {
    position: absolute;
    right: -53.5px;
    bottom: 0;
    height: 54px;
    width: 38px;
    border-top: 54px solid #002153;
    border-right: 54px solid transparent;
    content: '';
}

.package-slider .slick-prev, .package-slider .slick-next {
    z-index: 100;
}

@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;
    }
}

.protect-pkg-include .lft-contnt h4 {
    font-size: 52px;
    font-weight: 300;
    color: #fff;
    line-height: 44px;
}
.protect-pkg-include .lft-contnt h4 span {
    font-size: 40px;
    font-weight: 700;
}
.protect-pkg-include .lft-contnt h6 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}
.protect-pkg-include .lft-contnt p {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
}
.protect-pkg-include .lft-contnt .btn {
    max-width: 200px;
    width: 100%;
    padding: 8px 10px;
}
.protect-pkg-include .lft-contnt .btn:hover {
    background-color: #fff;
    color: var(--primary-color);
}
.protect-pkg-include .right-list {
    display: inline-block;
    width: 100%;
    position: relative;
}

.packageName {
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 12px;
    background-color: #fff;
    padding: 8px 35px;
    font-weight: 700;
    color: var(--secondary-color);
    font-size: calc(16px + (22 - 16) * (100vw - 320px) / (1920 - 320));
}

.protect-pkg-include .right-list h6 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-top: 15px;
}
.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;
    font-size: 13px;
    line-height: 30px;
    padding-left: 22px;
    position: relative;
}
.protect-pkg-include .right-list ul li i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
}
.title-main {
    color: var(--secondary-color);
    font-weight: 600;
}
h2.title-main {
    font-size: calc(20px + (38 - 20) * (100vw - 320px) / (1920 - 320)) !important;
}
    h2.title-main span {
        /*font-size: calc(30px + (47 - 30) * (100vw - 320px) / (1920 - 320));
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 600;*/
        color: #1f1f1f;
    }

.step-box {
    padding: 15px;
    min-height: 261px;
    transition: 0.5s;
    color: #fff;
}

.step-title {
    position: relative;
    color: #fff;
    padding-left: 60px;
    margin: 0 0 25px 0;
    min-height: 115px;
}

.step-title .icons {
    margin-bottom: 10px;
}

.step-box h3 {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 18px;
    margin: 10px 0 0 0;
}

.step-title .numbering {
    font-size: 22px;
    color: var(--secondary-color);
    font-weight: 600;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    left: 0;
    bottom: 0;
    border: #e9e6ed solid 2px;
}
.step-box p {
    color: #56575b;
    font-size: 14px;
}

.blog-box {
    background-color: #f6f6f6;
    padding: 15px;
    border-radius: 12px;
}
.blog-box.sty1 {
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
}
.blog-box .dated {
    background-color: #fff;
    font-size: 11px;
    color: var(--secondary-color);
    padding: 5px;
    border-radius: 8px;
    display: inline-block;
    margin: 10px 0;
    font-weight: 600;
}
.blog-box p {
    color: var(--primary-color);
    font-size: 18px;
    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;
}

.attorney-committed {
    position: relative;
}
    .attorney-committed:before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 50%;
        background-color: #fefff5;
        pointer-events: none;
        content: "";
        z-index: -1;
    }
.attorney-committed .slick-arrow {
    display: none;
}
.attorney-committed .swiper-slide {
    padding: 10px;
}

.committed-wrap {
    background-color: #fff;
    border-radius: 18px;
    border: var(--secondary-color) solid 1px;
    padding: 25px;
    min-height: 365px;
    text-align: center;
    transition: all ease-in-out 0.3s;
}
.committed-wrap h3 {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    position: relative;
    margin: 0 0 15px 0;
    padding: 0 0 15px 0;
    position: relative;
}
.committed-wrap h3:after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    height: 1px;
    width: 110px;
    background-color: var(--secondary-color);
    content: "";
}
.committed-wrap p {
    color: #56575b;
    font-size: 14px;
    line-height: 22px;
}
.committed-wrap:hover {
    background-color: var(--secondary-color);
}
.committed-wrap:hover h3 {
    color: #fff;
}
.committed-wrap:hover h3:after {
    background-color: #fff;
}
.committed-wrap:hover p {
    color: #fff;
}

.attorney-committed .slick-arrow:before {
    color: #d5ddff;
    font-size: 38px;
}
.attorney-committed .slick-arrow:hover:before {
    color: var(--secondary-color);
}
@media (max-width:1400px) {
    .protect-pkg-include .right-list ul li {
        font-size: 11px;
    }
    .committed-wrap {
        padding: 25px;
    }
}
@media (max-width:991px) {
    .welcome-section {
        background-image: none !important;
    }
    .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;
    }
    
    .headbox .textbox {
        text-align: left;
    }
    #hero .bottom-buttons {
        padding-top: 180px;
    }
    .testimonials .bottomsec {
        margin-bottom: 30px;
    }
}
@media (max-width:575px) {
    
    .headbox {
        justify-content: flex-start;
    }
    #hero h3 {
        font-size: 28px;
    }
    #hero .btn {
        padding: 10px 15px;
        font-size: 12px;
    }
    #hero .bottom-buttons {
        padding-top: 100px;
    }
    .welcome-section {
        padding: 50px 0;
    }
    .attorney-committed .slick-arrow {
        display: none !important;
    }
    .committed-wrap {
        min-height: inherit;
    }
    .fbottom .btn-area {
        text-align: center;
    }
    .fbottom .social-area {
        text-align: center;
        margin-top: 20px;
    }
}
@media (max-width:480px) {
    #hero {
        padding: 120px 0 30px 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: 4px;
    right: 5px;
    top: 5px;
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.25);
    border: 1px solid currentColor;
    transition: 0.4s ease-in-out;
}

    .fancybox-slide--html .fancybox-close-small:hover {
        background: red;
        color: #fff;
        border: 1px solid #fff;
    }

.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;
    text-transform: uppercase;
    background-color: #fff;
    color: var(--primary-color);
    display: flex;
}

    .popupform .btn-primary:hover {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
    }

.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: 10px;
    width: 100%;
    border-radius: 6px;
    font-size: 13px;
    color: #000;
    box-shadow: none !important;
    outline: none 0px !important;
    background: #fff;
    margin-bottom: 0;
}

.popup-content textarea {
    /*height: 161px;*/
}

.popupform {
    width: 1070px;
    border-radius: 0;
    /*padding: 80px 50px 80px 350px;*/
    position: relative;
}

.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 .modal-body {
    /*background: #fff;*/
    background: linear-gradient(277.62deg, #A5A984 27.1%, #414334 121.27%);
    padding: 0;
    border-radius: 10px;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    display: flex;
    box-shadow: -2px -2px 10px 0px #0000001A;
}

    .popupform .modal-body .popup-content {
        /*background: linear-gradient(277.62deg, #A5A984 27.1%, #414334 121.27%);*/
        display: flex;
        align-items: center;
    }

    .popupform .modal-body .form-group {
        margin-bottom: 10px;
    }

.popupform .imgBox {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

    .popupform .imgBox img {
        object-fit: cover;
        border-radius: 0;
    }
    .popupform .imgBox .content-box {
        position: absolute;
        content: "";
        background: linear-gradient(90deg, #363633 0%, #14150F 89.3%);
        height: 100px;
        width: 323px;
        left: 6px;
        bottom: 15%;
        clip-path: polygon(0 0, 100% 0%, 80% 100%, 0% 100%);
        display: flex;
        justify-content: start;
        align-items: center;
        padding: 0 0 0 10px;
    }

        .popupform .imgBox .content-box h4 {
            color: #fff;
            font-size: calc(15px + (20 - 15) * (100vw - 320px) / (1920 - 320));
            display: flex;
            flex-wrap: wrap;
            text-align: left;
        }

.popupform .input[type=email], .popupform .popup-content input[type=tel], .popupform .popup-content input[type=text], .popupform .popup-content select, .popupform .popup-content textarea, .popupform input[type=email] {
    background-color: #FFFFFF1A;
    /*border: 2px solid #FFFFFFBF;*/
    color: #FFFFFFF2;
}

.popupform input::placeholder, .popupform textarea::placeholder {
    color: #FFFFFFF2;
}

.popupform .iti--separate-dial-code .iti__selected-dial-code {
    color: #FFFFFFF2;
}

.popupform .iti__arrow, .popupform .iti__arrow--up {
    border-top-color: #FFFFFFF2;
    border-bottom-color: #FFFFFFF2;
}

p.form_tagline {
    font-size: 12px;
    display: none;
}
@media (max-width: 991.98px) {
    .popupform .imgBox {
        display: none !important;
    }
}
.popup-content input[type="submit"] {
    box-shadow: none !important;
    border: 0px none;
    border-radius: 5px;
    cursor: pointer;
}

.popup-content input[type=email]:focus,
.popup-content input[type=text]:focus,
.popup-content textarea:focus {
    border: 1px solid #a5a984 !important;
}

.popup-content h2 {
    font-weight: 700;
    line-height: 31px;
    position: relative;
    display: inline-block;
    margin: 0 0 20px 0;
    color: #fff;
}
    .popup-content h2 span {
        color: #fff;
    }
.popup-content span {
    font-weight: 400 !important;
}
.popup-content .title-area h2, .popup-content .title-area span {
    font-size: calc(17px + (28 - 17) * (100vw - 320px) / (1920 - 320));
}

.popup-content h3 {
    font-size: 16px;
    color: #000000;
    margin: 0 0 30px;
}

.popup-content h2 + p {
    line-height: 19px;
    font-size: 13px;
    margin-bottom: 22px;
    font-weight: 300;
    color: #888;
}

.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;
    }
}

/*ABOUT PAGE CSS START HERE*/
.about-left-content p {
    font-weight: 600;
    font-style: italic;
    font-size: 16px;
    line-height: 22px;
}
.meet-section {
    background-color: #f6f6f6;
}
.meet-box {
    display: inline-block;
    width: 100%;
    font-size: 14px;
    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 {
    font-size: 18px;
    color: #1f1f1f;
    font-weight: 600;
    margin: 0;
}
.meet-box .titlebox h6 {
    font-size: 13px;
    color: var(--secondary-color);
    font-weight: 400;
    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;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
}
.press-box .title-area .dated {
    font-size: 12px;
    font-weight: 400;
    color: #a4a4a4;
}
.press-box .contentbox {
    font-size: 16px;
    color: #56575b;
    line-height: 28px;
    font-weight: 300;
}
.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 200px 45px 55px;
    position: relative;
    border-radius: 18px;
    flex-direction: column;
    background-size: cover;
    background-repeat: no-repeat;
}
.bottom-cta h5 {
    font-size: 22px;
    margin: 10px 0 25px 0;t: 700;
    margin: 10px 0 25px 0;
    color: #fff;
    font-weight: 700;
}
.bottom-cta h4 {
    font-size: 30px;
    font-weight: 400;
    margin: 0;
    color: #fff;
}
.bottom-cta h3 {
    font-size: 45px;
    font-weight: 700;
    margin: 0;
    color: #63acff;
}
.bottom-cta .right-img {
    position: absolute;
    right: 20px;
    bottom: 0;
}

@media (max-width :575px) {
    .bottom-cta {
        padding: 30px;
    }
    .bottom-cta .right-img {
        display: none;
    }
    .bottom-cta h3 {
        font-size: 35px;
    }
    .bottom-cta h4 {
        font-size: 22px;
    }
    .bottom-cta h5 {
        font-size: 18px;
    }
    .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: #f6f6f6;
}
.blogbox {
    display: inline-block;
    width: 100%;
    padding: 30px;
    background-color: #f6f6f6;
    border: #fff solid 3px;
    border-radius: 18px;
    height: 100%;
    margin: 20px 0;
}
.blogbox h6 {
    color: #8a8c93;
    font-size: 12px;
    line-height: 20px;
    text-transform: uppercase;
}
.blogbox h4 {
    color: #1f1f1f;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 20px;
}
.blogbox p {
    font-size: 14px;
    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;
    justify-content: center;
    flex-wrap: wrap;
}

.serviceBox {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f6f6f6;
    border-radius: 12px;
    border: var(--secondary-color) solid 1px;
    padding: 18px;
    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;
}
.serviceBox:hover {
    background-color: var(--primary-color);
    border: var(--primary-color) solid 1px;
    color: #ffffff;
}
.serviceBox h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1f1f1f;
    margin-bottom: 0;
}
.serviceBox:hover h4 {
    color: #ffffff;
}

/*CONTACT CSS START HERE*/

.contact-center {
    border-radius: 18px;
    display: flex;
    border: var(--secondary-color) solid 1px;
    overflow: hidden;
    height: 100%;
}
.contact-center .leftSide {
    display: flex;
    padding: 30px;
}
.contact-center form {
    display: inline-block;
    width: 100%;
}

.contact-center label {
    color: #1f1f1f;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
    width: 100%;
}

.contact-center .form-control {
    border-color: #f6f6f6;
    background-color: #f6f6f6;
    border-radius: 12px;
    height: 43px;
    font-size: 13px;
    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: #f6f6f6;
    flex-direction: column;
}
.contact-center .rightSide .prepareBox {
    background-color: var(--secondary-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 {
    font-size: 19px;
    font-weight: 700;
    color: #fff;
}
.contact-center .prepareBox a:hover {
    text-decoration: underline;
}
.contact-center .rightSide h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-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 {
    font-weight: 600;
    font-size: 14px;
    color: #1f1f1f;
}
.contact-center .rightSide .address a i {
    color: var(--secondary-color);
    margin-right: 5px;
}
.contact-center .rightSide .address .title {
    font-weight: 600;
    font-size: 16px;
    color: #1f1f1f;
}
.contact-center .rightSide .address p {
    color: #56575b;
    font-size: 14px;
    font-weight: 300;
    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: #f6f6f6 solid 2px;
    flex-direction: column;
    margin-bottom: 30px;
    height: auto;
}
.order-main-box .main-title {
    background-color: var(--secondary-color);
    padding: 20px 40px;
    display: inline-block;
    width: 100%;
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
}
.order-main-box .main-title.sty1 {
    background-color: #f6f6f6;
    padding: 20px 40px;
    display: inline-block;
    width: 100%;
    color: var(--secondary-color);
    font-size: 21px;
    font-weight: 600;
}
.order-main-box .main-title h4 {
    font-size: 38px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    padding: 0;
}
.order-main-box .content-box {
    padding: 30px 40px;
    display: inline-block;
    width: 100%;
    font-size: 16px;
    font-weight: 300;
    line-height: 34px;
}
.order-main-box h6 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 0;
    padding: 0;
}
.order-main-box h6.sty1 {
    color: var(--secondary-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;
    font-size: 22px;
    font-weight: 600;
    margin-top: 0;
    padding: 0;
}
.noteBox {
    background-color: #f6f6f6;
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
    color: #56575b;
    border-radius: 12px;
    padding: 15px 30px;
}
.noteBox strong {
    font-weight: 600;
    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(--secondary-color) solid 3px;
    text-align: center;
    transition: all ease-in-out 0.3s;
}
.costBox:hover {
    background-color: var(--secondary-color);
}
.costBox h4 {
    color: #fff;
    font-weight: 700;
    font-size: 26px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.costBox h3 {
    color: #fff;
    font-weight: 300;
    font-size: 65px;
    text-transform: uppercase;
    margin: 0;
}
.costBox h6 {
    color: #fff;
    font-weight: 400;
    font-size: 13px;
    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);
    font-size: 21px;
    font-weight: 600;
}
.included-list li p {
    color: #56575b;
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
}
.included-list li .numbering {
    position: absolute;
    left: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
    width: 40px;
    height: 40px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.registryiPBox {
    background-color: #f6f6f6;
    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(--secondary-color);
    font-size: 21px;
    font-weight: 600;
}

.registryList li p {
    color: #56575b;
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
}

.registryList .numbering {
    position: absolute;
    left: 0;
    width: 40px;
    height: 40px;
    font-size: 30px;
    font-weight: 600;
    color: var(--secondary-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;
    font-size: 13px;
    line-height: 24px;
    margin-bottom: 30px;
}

.sDetailBox {
    display: inline-block;
    width: 100%;
    padding: 25px;
    background-color: var(--secondary-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(--secondary-color);
    font-size: 54px;
    font-weight: 300;
    margin: 0 0 10px 0;
}
.sDetailBox .countBox p {
    color: #1f1f1f;
    font-size: 17px;
    font-weight: 600;
    margin: 0;
    text-align: center;
    line-height: 22px;
}
.sDetailBox .countBox i {
    font-size: 35px;
}

.pressDetails {
    display: inline-block;
    width: 100%;
    padding-top: 50px;
}
.pressDetails .dated {
    font-size: 16px;
    font-weight: 400;
    color: #797979;
    margin-bottom: 20px;
}
.pressDetails h3 {
    color: #1f1f1f;
    font-size: 30px;
    font-weight: 600;
    line-height: 46px;
    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 {
    font-weight: 600;
    font-size: 16px;
    color: #1f1f1f;
    margin: 0 0 25px 0;
}
.pressDetails .sm {
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
    line-height: 26px;
}

.blog-details h3 {
    border-bottom: var(--secondary-color) solid 1px;
    color: #1f1f1f;
    font-size: 30px;
    font-weight: 600;
    line-height: 46px;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.blog-details h5 {
    font-size: 20px;
    font-weight: 600;
    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;
    font-size: 16px;
    font-weight: 400;
}
.blogList li .number {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 16px;
}

.blogTable {
    display: inline-block;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    border: #f6f6f6 solid 2px;
}
.blogTable .title {
    background-color: var(--secondary-color);
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 22px;
    font-weight: 600;
}
.blogBotom-Box {
    display: flex;
    background-color: #f6f6f6;
    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%;
    font-size: 16px;
    font-weight: 300;
    color: #56575b;
    line-height: 28px;
    flex-direction: column;
}
.blogBotom-Box .content-box h6 {
    font-weight: 600;
    font-size: 16px;
    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;
    font-size: 15px;
    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 {
    font-size: 26px;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0 0 15px 0;
    padding: 0;
}
.libraryBox li {
    list-style-type: none;
    display: inline-block;
    width: 100%;
    font-size: 16px;
    font-weight: 300;
    margin: 0 0 5px 0;
    line-height: 28px;
}
.libraryBox li a {
    text-decoration: none;
    color: #56575b;
}
.prepend-1::before {
    border: 1px solid #0071e4;
    border-radius: 50%;
    color: #0071e4;
    content: "1";
    text-align: center;
    padding: 10px;
    margin-right: 40px
}

.prepend-2::before {
    border: 1px solid #0071e4;
    border-radius: 50%;
    color: #0071e4;
    content: "2";
    text-align: center;
    padding: 10px;
    margin-right: 40px
}

.prepend-3::before {
    border: 1px solid #0071e4;
    border-radius: 50%;
    color: #0071e4;
    content: "3";
    text-align: center;
    padding: 10px;
    margin-right: 40px
}

.prepend-4::before {
    border: 1px solid #0071e4;
    border-radius: 50%;
    color: #0071e4;
    content: "4";
    text-align: center;
    padding: 10px;
    margin-right: 40px
}

.prepend-5::before {
    border: 1px solid #0071e4;
    border-radius: 50%;
    color: #0071e4;
    content: "5";
    text-align: center;
    padding: 10px;
    margin-right: 40px
}

.prepend-6::before {
    border: 1px solid #0071e4;
    border-radius: 50%;
    color: #0071e4;
    content: "6";
    text-align: center;
    padding: 10px;
    margin-right: 40px
}

.prepend-7::before {
    border: 1px solid #0071e4;
    border-radius: 50%;
    color: #0071e4;
    content: "7";
    text-align: center;
    padding: 10px;
    margin-right: 40px
}

.prepend-8::before {
    border: 1px solid #0071e4;
    border-radius: 50%;
    color: #0071e4;
    content: "8";
    text-align: center;
    padding: 10px;
    margin-right: 40px
}

.wp-block-button {
    display: inline-block;
    margin: 0;
}
::marker {
    color: #0071e4;
}
.app-sec {
    background-color: #eaf2fa !important;
}
.app-sec h2{
    font-weight:bold;
}
.tips-box {
    background-color: #eaf2fa;
    padding: 31px;
}
    .tips-box h2 {
        font-size: 40px;
        line-height: 1.2;
        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 {
    font-size: 100px;
    color: #0071e4;
}
.annual{
    font-size:18px;

}
.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 p{
    font-size:10px;
    line-height:1.5;
}
.image-1 h6{
    margin: 10px 0;
}
.b-fee {
    display: flex;
    justify-content: space-between;
}
.plus-box {
    display: flex;
    align-items: center;
}
.plus {
    font-size: 50px;
    color: #0071e4;
    padding: 0 30px 0 30px;
}
.easy {
    font-size: 40px;
    font-weight: 500;
    margin-bottom:20px;
}
.wl-sec {
    background-color: #eaf2fa;
}
.wl-sec h2{
    font-weight:700;
}
.content h2 {
    font-size: 40px;
    font-weight: 600;
}
.content ol li {
    font-size: 18px;
    margin-bottom: 20px;
}
.para h1{
    font-size:52px;
    font-weight:600;
    margin-bottom:30px;
}
.para h5{
    font-weight:600;
}
.bottom-space{
    margin-bottom:30px;
}
.content-bg-box {
    background-color: #eaf2fa;
    padding:4rem;
}
.content-bg-box a:hover {
    color:black;
}
.content-bg-box h2{
    margin-bottom:30px;
}
    .content-bg-box h5 a {
        color: black;
        font-weight: 500;
        font-size: large;
    }
.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");
}
.hd-bg {
    background-color: #0071e4;
    text-align: center;
    color: white;
    margin:20px 0;
}

.bannerTabs .nav-tabs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 0;
    flex-direction: column;
    max-width: 40%;
    flex: 0 0 40%;
}
.bannerTabs .nav-tabs li {
    text-align: left;
    width: 100%;
}
.bannerTabs .nav-tabs li a {
    font-size: calc(12px + (17 - 12) * (100vw - 320px) / (1920 - 320));
    text-transform: uppercase;
    padding: 10px;
    color: #767676;
    font-weight: 600;
}
.bannerTabs .nav-tabs li .nav-link.active {
    background-color: transparent;
    border-top: var(--secondary-color) solid 1px;
    border-bottom: var(--secondary-color) solid 1px;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    font-weight: 600;   
}

#hero .bannerTabs {
    display: flex;
}

#hero .form-area .form-Title {
    background-color: var(--secondary-color);
    padding: 10px 20px;
    border-radius: 0 50px 50px 0;
    display: inline-block;
    font-size: calc(12px + (14 - 12) * (100vw - 320px) / (1920 - 320));
    color: #fff;
    font-weight: 500;
    width: 100%;
    margin-bottom: 15px;
}
#hero .form-area .form-Title h3 {
    margin-bottom: 0;
    margin-top: 0;
    color: #fff;
    font-size: calc(17px + (24 - 17) * (100vw - 320px) / (1920 - 320));
    font-family: 'Poppins', sans-serif;
    font-style: normal;
}
#hero .form-area .form-Title span {
    
    color: #ffb100;
}
#hero .form-area .formBox {
    background-color: #fff;
    border-radius: 0 12px 12px 12px;
    padding: 20px;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
#hero .form-area .formBox .form-group {
    margin: 0;
    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-right: #eceff4 solid 1px;
    height: 55px;
    line-height: 1;
    color: #959393;
    font-size: calc(13px + (15 - 13) * (100vw - 320px) / (1920 - 320));
    border: #c3c1c1 solid 1px;
}
    #hero .form-area .formBox .btn {
        margin: 0;
        width: 100%;
        height: 100%;
        background-color: var(--primary-color);
        font-size: calc(13px + (15 - 13) * (100vw - 320px) / (1920 - 320));
        font-weight: 400;
    }
        #hero .form-area .formBox .btn:hover {
            background-color: var(--secondary-color);
        }

        .btnAreaNumber a.btn {
            margin-right: 15px;
        }

@media (max-width: 1199px) {
    .bannerTabs .nav-tabs li {
        padding: 0 15px;
    }
}

@media (max-width: 991px) {
    .bannerTabs .nav-tabs li {
        padding: 0;
    }
}

@media (max-width: 767px) {
    .bannerTabs .nav-tabs li a {
        padding-left: 0;
        padding-right: 0;
    }
    #hero .form-area .formBox .form-group {
        margin-bottom: 15px;
    }

    #hero .form-area .formBox .form-group .form-control {
        border-bottom: #3a3a3a solid 1px;
    }
    .how-content, .how-image {
        width: auto;
    }

    .how-box:after, .how-box:before {
        display: none;
    }

    .how-box {
        flex-direction: column;
        padding-top: 20px;
        padding-bottom: 20px;
    }

        .how-box.sty2 {
            flex-direction: column-reverse;
        }
}

@media (max-width: 575px) {

    #hero .bannerTabs {
        display: flex;
        flex-direction: column;
    }
    .bannerTabs .nav-tabs {
        max-width: 100%;
        flex: 0 0 100%;
        flex-direction: initial;
    }

    .bannerTabs .nav-tabs li {
        max-width: 50%;
        flex: 0 0 50%;
    }

    .bannerTabs .nav-tabs li {
        max-width: 50%;
        flex: 0 0 50%;
    }

    .bannerTabs .nav-tabs li a {
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        line-height: 1;
        height: auto;
        padding: 20px 0;
    }
   
}
@media (max-width: 480px) {
    .bannerTabs .nav-tabs li {
        max-width: 100%;
        flex: 0 0 100%;
    }
}

.lp-servicesSec p {
    color: #8c8c8d;
    font-size: calc(13px + (18 - 13) * (100vw - 320px) / (1920 - 320));
    font-weight: 400;
    line-height: 1.5;
}
/*.lp-servicesSec h2 {
    color: var(--secondary-color);
    font-size: calc(30px + (47 - 30) * (100vw - 320px) / (1920 - 320));
    font-weight: 600;
}*/

.lp-servicesSec h2.sty1 {
    /*color: var(--primary-color);
    font-size: calc(16px + (27 - 16) * (100vw - 320px) / (1920 - 320));
    font-weight: 600;*/
}

.lp-servicesSec h2 span {
    /*font-size: calc(30px + (47 - 30) * (100vw - 320px) / (1920 - 320));
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 600;*/
    color: #1f1f1f;
}

.lp-servicesSec .services-area {
    display: flex;
    align-items: center;
    flex-direction: column;
    border: dashed 1px var(--primary-color);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 0;
}
.lp-servicesSec .services-area li {
    list-style-type: none;
    padding: 10px;
    border-bottom: #010101 dashed 1px;
}
    .lp-servicesSec .services-area li h3 {
        color: var(--primary-color);
        font-size: calc(14px + (20 - 14) * (100vw - 320px) / (1920 - 320));
        font-weight: 600;
    }
.lp-servicesSec .services-area li p {
    margin-bottom: 0;
}
.lp-servicesSec .services-area li:last-child {
    border-bottom: 0;
}

@media (max-width: 991px) {
    .lp-servicesSec .imgBox {
        margin-bottom: 20px;
    }
    .lp-servicesSec .imgBox img {
        width: 100%;
    }
    .lp-servicesSec .imgBox.sty1 {
        margin-bottom: 0;
        margin-top: 20px;
    }
}

.lp-servicesSec {
    background-color: #fefff5;
}
.whyChoose-Sec {
    background-color: #fff;
}
.whyChoose-Sec h2 {
    /*font-size: calc(22px + (38 - 22) * (100vw - 320px) / (1920 - 320));
    font-weight: 600;*/
    color: var(--secondary-color);
}

.whyChoose-Sec h2 span {
    /*font-size: calc(30px + (47 - 30) * (100vw - 320px) / (1920 - 320));
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 600;*/
    color: #1f1f1f;
}

    .whyChoose-Sec .nav-tabs {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0 0 30px 0;
        border: 1px solid #DFDEDE;
        border-radius: 10px;
        padding: 5px 10px;
    }
.whyChoose-Sec .nav-tabs li {
    display: flex;
    max-width: 25%;
    flex: 0 0 25%;
    align-items: center;
    justify-content: center;
    padding: 0 0;
    text-align: center;
}
.whyChoose-Sec .nav-tabs .nav-link {
    text-transform: capitalize;
    color: #1f1f1f;
    font-weight: 500;
    font-size: calc(14px + (20 - 14) * (100vw - 320px) / (1920 - 320));
    border: none;
    transition: 0.35s all;
}
    .whyChoose-Sec .nav-tabs .nav-link.active {
        background-color: transparent;
        border-radius: 0;
        border: 0;
        color: var(--primary-color);
        background: rgba(165, 169, 132, 0.3);
        border-radius: 5px;
        width: 100%;
    }

    .whyChoose-Sec .tab-content p {
        color: #444734;
        font-size: calc(13px + (16 - 13) * (100vw - 320px) / (1920 - 320));
        font-weight: 400;
        line-height: 1.6;
        background: #fff;
        border-radius: 10px;
        padding: 21px 30px;
    }
    @media (max-width: 991.98px) {
        .whyChoose-Sec .tab-content p {
            text-align: center;
            padding-bottom: 0;
        }
    }

.whyChoose-Sec .tab-content .leftCol {
    padding: 0 20px 0 0;
    position: relative;
}
.whyChoose-Sec .tab-content .leftCol::after {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    height: 100%;
    background: rgb(242,250,253);
    background: linear-gradient(0deg, rgba(242,250,253,1) 0%, rgba(212,214,221,1) 30%, rgba(233,240,244,1) 70%, rgba(242,250,253,1) 100%);
    content: '';
}
.whyChoose-Sec .tab-content .percent {
    color: var(--secondary-color);
    font-size: calc(35px + (78 - 35) * (100vw - 320px) / (1920 - 320));
    margin-bottom: 0;
    font-weight: 600;
}

@media (max-width: 767px) {
    .whyChoose-Sec .nav-tabs li {
        max-width: 50%;
        flex: 0 0 50%;
    }

    .whyChoose-Sec .nav-tabs li a {
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        line-height: 1;
        height: auto;
        padding: 20px 0;
    }
}

.listing2 {
    padding: 0 0 25px 0;
    margin: 0;
}
.listing2 li {
    list-style-type: none;
    position: relative;
    color: #373737;
    /*font-size: calc(13px + (19 - 13) * (100vw - 320px) / (1920 - 320));*/
    font-weight: 500;
    padding: 0 0 0 25px;
    margin: 0 0 10px 0;
}
.listing2 li i {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary-color);
}


/* BEGIN FAQs */


.FaqsMainUp h3 {
    /*font-size: calc(22px + (38 - 22) * (100vw - 320px) / (1920 - 320));
    font-weight: 600;*/
    color: #1f1f1f;
}
/*.FaqsMainUp h3 span {
    color: var(--secondary-color);
}*/

.FaqsMainUp h3 span {
    /*font-size: calc(30px + (47 - 30) * (100vw - 320px) / (1920 - 320));
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 600;*/
}

.accordion_container {
    width: 100%;
}

.accordion_head {
    cursor: pointer;
    font-family: arial;
    padding: 0;
    display: block;
    text-align: left;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    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;
    font-size: 40px;
}

.forbottom {
    border-bottom: 1px solid var(--primary);
    padding: 25px 20px;
    /*    box-shadow: 0 10px 6px -6px #777;*/
}

.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;
    font-size: calc(22px + (30 - 22) * (100vw - 320px) / (1920 - 320));
    font-weight: 500;
}

.collapsible-link[aria-expanded="true"]::before {
    content: "-";
}
.FaqsMain .accordion h2 .collapsible-link {
    color: #0e174b;
    font-weight: 500;
    font-size: calc(13px + (18 - 13) * (100vw - 320px) / (1920 - 320));
    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;
    }
}
/* END Faqs */

.footer-form {
    margin-top: 10px;
}

.footer-form .form-group {
    margin-bottom: 10px;
}

/*.footer-form .form-control {
    border-radius: 12px;
    border-color: #fff;
    background-color: transparent;
    height: 58px;
    line-height: 1;
    color: #fff;
}*/
.footer-form .form-control::placeholder {
    color: #f7f7f7;
}
.footer-form textarea.form-control {
    height: 125px;
    resize: none;
    padding-bottom: 10px;
    padding-top: 10px;
}
.footer-form .form-control:placeholder {
    color: white;
    opacity: 1; /* Firefox */
}


.stepsMain {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
    border-top: #e0e0e0 solid 1px;
    position: relative;
}
.stepsMain .leftColumn {
    padding: 15px 0;
    display: flex;
    max-width: 47%;
    flex: 0 0 47%;
    position: relative;
    position: sticky;
    top: 50px;
}

.stepsMain .leftColumn h2 {
    font-size: calc(18px + (32 - 18) * (100vw - 320px) / (1920 - 320));
    font-weight: 900;
    text-transform: uppercase;
    color: #000;
}

.stepsMain .leftColumn .stickyArea {
    padding: 45px 0 45px 75px;
    position:-webkit-sticky;
    position: sticky;
    top: 0;
}

.stepsMain .leftColumn .numbering {
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: var(--primary-color);
    font-size: calc(45px + (90 - 45) * (100vw - 320px) / (1920 - 320));
}

.stepsMain .content-section {
    display: flex;
    padding: 45px 20px;
    max-width: 50%;
    flex: 0 0 50%;
    flex-direction: column;
}













.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(--secondary-color);
    border-radius: 12px;
    padding: 0 12px;
    font-weight: 500 !important;
}



.TestiSlideSec {
    display: flex;
    height: 100%;
    justify-content: space-between;
    border-radius: 12px 12px;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    overflow: hidden;
    background: #fff;
}
.TestiSlideSec .TestiImgArea {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    max-width: 25%;
    flex: 0 0 25%;
    border-radius: 12px 0 0 12px;
    overflow: hidden;
}
.TestiSlideSec .TestiImgArea img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.TestiSlideSec .TestiContenArea {
    display: flex;
    max-width: 75%;
    flex: 0 0 75%;
}




.TestiSlideSec .accordion.width {
    display: flex;
    height: 100% !important;
}

.TestiSlideSec .accordion.width .card {
    flex-direction: row;
    flex-grow: 0;
    flex-shrink: 1;
    min-width: min-content;
    border: 0;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    border-radius: 0;
}



.TestiSlideSec .accordion.width .card .card-header {
    cursor: pointer;
    transform: rotate(180deg);
    writing-mode: vertical-rl;
    border: 0;
    width: 100px;
}

.TestiSlideSec .accordion.width .card .card-body {
    max-width: 560px;
    padding: 50px;
}
.TestiSlideSec .accordion.width .card .card-body p {
    font-size: calc(12px + (20 - 12) * (100vw - 320px) / (1920 - 320));
    line-height: 1.8;
}

.TestiSlideSec .accordion.width .card .card-body h3 {
    font-size: calc(14px + (20 - 14) * (100vw - 320px) / (1920 - 320));
    line-height: 2;
    font-weight: 600;
}
.TestiSlideSec .accordion.width .card .card-body .quote {
    margin-bottom: 20px;
    display: inline-block;
}

.TestiSlideSec .accordion.width .card .card-header:not(.collapsed) {
    pointer-events: none;
}

.TestiSlideSec .collapsing.width {
    transition: width 0.35s ease;
    height: auto;
    width: 0;
}

.TestiSlideSec .card .card-header#collapseTwo {
    background-color: #f3fdff;
}

.testimonials.tetMobile {
    display: none;
}

.iti__country-name, .iti__flag-box {
    color: #000;
}
.numberRight i {
    margin-right: 10px;
}

@media (max-width: 1366px) {
    .TestiSlideSec .accordion.width .card .card-header {
        width: 80px;
    }

    .TestiSlideSec .accordion.width .card .card-body {
        max-width: 500px;
    }
}


@media (max-width: 991px) {
    .testimonials.tetMobile {
        display: block;
    }
    .testimonials.dekTop {
        display: none;
    }
    .popupform .imgBox {
        display: none;
    }
    .popupform {
        width: 100%;
        padding: 20px;
    }
    .bannerTabs {
        margin-top: 0px !important;
    }
    .tab-content .imgBox img{
        width: 100%;
    }
    .collapsible-link::before {
        right: 0;
    }
    .testimonials.section-bg {
        padding-top: 20px;
    }
}




@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%;
        position: static;
        top: 0;
    }
    .stepsMain .content-section {
        max-width: 100%;
        flex: 0 0 100%;
        padding-top: 20px;
    }
    .stepsMain .leftColumn .stickyArea {
        padding-bottom: 0;
    }
    
}
@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(--secondary-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;
    }
    #hero h2, #hero .h2 {
        text-align: left;
    }
    .btnAreaNumber {
        flex-direction: column;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .btnAreaNumber .btn {
        margin-right: 0 !important;
        margin-bottom: 20px;
    }
}

/*Packages styling added here from main style sheet*/

.package-box {
    position: relative;
    transition: 0.3s ease-in-out;
    border: 2px solid transparent;
    box-shadow: 0px 0px 10px 0px #0000001A;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background-color: #fff;
}

    .package-box:hover {
        border: 2px solid #A5A984
    }

        .package-box:hover .package-head {
            background: var(--secondary-color);
        }

            .package-box:hover .package-head h4, .package-box:hover .package-head h3, .package-box:hover .package-head h3 span, .package-box:hover .package-head p {
                color: #fff;
            }

.package-head {
    background: #F6F6F6;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 20px 0 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease-in-out;
}

    .package-head h4 {
        color: var(--secondary-color);
        font-weight: 700;
        font-size: calc(17px + (30 - 17) * (100vw - 320px) / (1920 - 320));
        transition: 0.3s ease-in-out;
    }

    .package-head h3 {
        font-size: calc(26px + (40 - 26) * (100vw - 320px) / (1920 - 320));
        color: #414334;
        transition: 0.3s ease-in-out;
        position: relative;
        /*display: flex;
        justify-content: center;
        align-items: center;*/
    }

        .package-head h3 span {
            color: #A5A984;
            font-size: calc(14px + (18 - 14) * (100vw - 320px) / (1920 - 320));
            text-decoration: line-through;
            position: absolute;
            /*right: -70px;*/
            transition: 0.3s ease-in-out;
            top: 10px;
            padding: 0 0 0 5px;
        }

        .package-head h3 p {
            transition: 0.3s ease-in-out;
        }

.package-body {
    padding: 30px 20px 10px 20px;
    background-color: #fff;
}

    .package-body span {
        font-size: calc(14px + (18 - 14) * (100vw - 320px) / (1920 - 320));
        color: #2F2F2F;
        font-weight: 600;
    }

    .package-body ul li::marker {
        color: var(--secondary-color);
    }

    .package-body ul li {
        color: #1F1F1F;
        font-size: calc(12px + (14 - 12) * (100vw - 320px) / (1920 - 320));
        font-weight: 400;
        padding: 2px 0;
    }

    .package-body ul {
        min-height: 225px;
        max-height: 225px;
        overflow-y: scroll;
        padding-top: 15px;
        scrollbar-color: var(--secondary-color) #fff;
        scroll-behavior: smooth;
        scrollbar-width: thin;
    }

    @media (max-width: 767.98px) {
        .package-body ul {
            min-height: auto;
            max-height: 170px;
        }
    }

.package-footer {
    padding: 0 20px;
}

.package-box .btn-primary {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--secondary-color);
    transition: 0.3s ease-in-out;
    margin: 0 0 20px 0;
}

    .package-box .btn-primary:hover {
        background-color: var(--primary-color);
    }

.btn-dark {
    background-color: var(--primary-color);
    text-transform: uppercase;
}
    .btn-dark:hover {
        background-color: var(--secondary-color);
        border-color: var(--secondary-color);
    }
.cont-img img{
    border-radius:10px;
}
.cont-title h2{
    text-transform:uppercase;
    font-size:36px;
    font-weight:700;
}
.footer-form .form-control {
    border: 0;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    background-color: transparent;
    font-size: 14px;
    font-weight: 300;
    margin:0 0 10px;
    color:#fff;
    height:55px;
}
.cont-img{
    position:relative;
}
    .cont-img .img-txt {
        position: absolute;
        bottom: 0;
        left: 0;
        padding: 10px 30px;
        font-size: 22px;
    }


@media (max-width: 991.98px) {
    .lg-d-none {
        display: none;
    }
    #hero .form-area .form-Title h3 {
        text-align: center;
    }
}
@media (max-width: 767.98px) {
    .md-d-none {
        display: none;
    }
}
@media (max-width: 575.98px) {
    .sm-d-none {
        display: none;
    }
}

.cl-w-imp, .cl-w-imp span {
    color: #fff !important;
}

.slick-slider {
    overflow: hidden;
}