@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root{
    --primary-color : #11B7BD;
    --yellow-color : #F39E21;
    --red-color : #F3574B;
    --blue-color : #003574;
    --dark-color : #000000;
    --white-color : #ffffff;
    --single-page-bg : #3f51b5;
    --light-bg : #f1f7ff;
    --footer-light-color : rgba(255,255,255,63%);
    --inter-family :  "Inter", sans-serif;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    overflow-x: hidden;
}
.redColor{
    color: var(--red-color);
}
.form-control:focus,.form-select:focus{
    box-shadow: none;
    border: 1px solid var(--dark-color);
}

#scrollToTop {
    position: fixed;
    bottom: 20px;
    box-shadow: 0px 0px 40px rgb(255 255 255 / 79%);
    right: 20px;
    display: none;
    background-Color: var(--dark-color);
    color: white;
    border: none;
    padding: 8px 12px;
    border-Radius: 125px;
    cursor: pointer;
    z-index: 2;
}
#results {
    border-right: 1px solid #dfdfdf;
    position: sticky;
    top: 90px;
}

.searchquery-box{
    border-bottom: 2px solid #dfdfdf !important;
    margin-bottom: 30px !important;
    display: block;
    padding-bottom: 20px;
}
body{
    font-family: var(--inter-family);
}

.animate-element {
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.5s ease, transform 0.5s ease;
    font-size: 2em;
    margin: 50px 0;
}

.visible {
    opacity: 1 !important;
    transform: scale(1) !important;
}

.btn, .btn:focus, input:focus{
    box-shadow: none;
    border: none;
}
.custom-btn {
    padding: 13px 30px;
    text-align: center;
    background: var(--dark-color);
    font-size: 14px;
    border-radius: 40px;
    color: var(--white-color);
    font-weight: 400;
    position: relative;
    text-decoration: none;
    overflow: hidden;
    display: inline-block;
}
.custom-btn::after{
    content: '';
    background-color: rgba(255, 255, 255 , 63%);
    width: 18px;
    height: 200px;
    position: absolute;
    left: -80%;
    top: -30px;
    transform: rotate(15deg);
    transition: all 400ms linear;
    overflow: hidden;
}
.custom-btn:hover{
    background-color: var(--blue-color);
    color: var(--white-color);
}
.custom-btn:hover::after{
    left: 180%;
    transition: all 400ms linear;
}
.redBtn, .redBtn:hover, .redBtn:focus{
    background: var(--red-color);
    color: var(--white-color);
}
.yellowBtn, .yellowBtn:hover, .yellowBtn:focus{
    background: var(--yellow-color);
    color: var(--white-color);
}


/* Loader Start */
.preLoader {
    position: fixed;
    top: 0;
    left: 0;
    background: #f0f0f0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}
.loader-img {
    max-width: 110px;
    width: 100%;
}
/* Loader End */

/* Header */
.main-brand {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
}
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 4;
    background-color: rgba(16, 43, 58, .42);
    backdrop-filter: blur(7px);
}
.current-page{
    color: var(--yellow-color) !important;
}
.top-logo {
    max-width: 120px;
}
.primary-menu-list {
    list-style: none;
    padding: 0;
    display: flex;
    margin-bottom: 0px;
}
.primary-menu-list .list-item .menu-links {
    font-size: clamp(0.8125rem, 0.6959rem + 0.3731vw, 0.875rem);
    color: var(--white-color);
    text-decoration: none;
    padding: 30px 15px;
    display: block;
    cursor: pointer;
}
.primary-menu-list .list-item .menu-links:hover, .primary-menu-list .list-item .menu-links:active, .primary-menu-list .list-item .menu-links.active{
    color: var(--yellow-color);
}
.primary-menu-list .sub-menu-list {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 150%;
    width: 70%;
    background: #112235;
    border-radius: 0px 0px 10px 10px;
    display: flex;
    visibility: hidden;
    opacity: 0;
    z-index: -10;
    transition: all 400ms linear;
}

.primary-menu-list .sub-menu-list.current {
    visibility: visible;
    top: 100%;
    z-index: 0;
    opacity: 1;
    transition: all 400ms linear;
}
.primary-menu-list .sub-menu-list .menu-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
    padding: 5px;
}
.primary-menu-list .sub-menu-list.notmega {
    width: auto;
    display: block;
    left: auto;
}
.primary-menu-list .sub-menu-list.notmega .menu-row{
    display: block;
    width: 100%;
}
.primary-menu-list .sub-menu-list.notmega .menu-row .menu-col {
    max-width: 100%;
}
.primary-menu-list .sub-menu-list .menu-row  .menu-col {
    max-width: 33.3%;
    width: 100%;
    padding: 20px;
    border: 1px solid #12263d;
    position: relative;
}
.primary-menu-list .sub-menu-list .menu-row .inner-list-menu {
    font-size: clamp(0.8125rem, 0.6959rem + 0.3731vw, 0.875rem);
    display: flex;
    flex-direction: column;
}
.primary-menu-list .sub-menu-list .menu-row .menu-title {
    font-size: clamp(0.8125rem, 0.6959rem + 0.3731vw, 0.875rem);
    color: var(--light-bg);
    font-weight: 500;
    text-decoration: none;
    display: block;
    cursor: pointer;
}
.primary-menu-list .sub-menu-list .menu-row .menu-title:hover{
    color: var(--yellow-color);
}
.primary-menu-list .sub-menu-list .menu-row .inner-list-menu{
    margin-top: 10px;
}
.primary-menu-list .sub-menu-list .menu-row .inner-list-menu .inner-list-link {
    color: var(--light-bg);
    text-decoration: none;
    opacity: .7;
    margin-bottom: 5px;
    display: block;
}
.primary-menu-list .sub-menu-list .menu-row .inner-list-menu .inner-list-link:hover{
    opacity: 1;
}
.menu-toggler-icon {
    display: none;
    color: var(--white-color);
}
.sub-menu-list.current .menu-row{
    position: relative;
}
.sub-menu-list.current .menu-row:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('../img/blur-notes.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: .3;
}
.action-top-menu .search-icons, .action-top-menu {
    color: var(--white-color);
}
/* Header End */

/* Slider */
section.slider-top-menu {
    background: var(--blue-color);
    z-index: 1;
    position: relative;
}
#heroSlider .carousel-inner{
    min-height: 100vh;
    height: 100%;
    position: relative;
}
#heroSlider .carousel-item {
    min-height: 100vh;
    height: 100%;
    background-size: cover;
    background-position: center ;
    background-attachment: fixed;
}
#heroSlider .content-slider{
    display: flex;
    flex-direction: column;
    padding: 0px 50px;
    align-items: center;
    justify-content: center;
    margin: auto !important;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: slop 1000ms linear 1 forwards;
}

@keyframes slop {
    0%{
        transform: translate(-50%, 50%);
        opacity: 0;
    }
    80%{
        opacity: .4;
    }
    100%{
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}
#heroSlider .carousel-item.active {
    z-index: 1;
}
.content-slider {
    max-width: 1300px;
    margin: auto;
    justify-content: center;
    text-align: center;
    position: relative;
    width: 100%;
}
.float-dots{
    display: flex;
    align-items: center;
    justify-content: center;
}
.float-dots span{
    width: 20px;
    display: block;
    height: 20px;
    border-radius: 100px;
    background: var(--blue-color);
    margin: 5px;
    box-shadow: 0 0 14px 0px rgb(0 53 116 / 79%);
}
.float-dots .greendot{
    background: var(--primary-color);
    box-shadow: 0 0 14px 0px rgba(17, 183, 189 , 95%);
}
.float-dots .yellowdot{
    background: var(--yellow-color);
    box-shadow: 0 0 14px 0px rgba(243, 158, 33 , 95%);
}
.float-dots .reddot{
    background: var(--red-color);
    box-shadow: 0 0 14px 0px rgba(243, 87, 75 , 95%);
}
#heroSlider .carousel-control-next-icon, #heroSlider .carousel-control-prev-icon {
    width: 100px !important;
    height: 70px !important;
    opacity: 1 !important;
}
.slider-title {
    font-size: clamp(2.8125rem, 1.8797rem + 2.9851vw, 3.3125rem);
    font-weight: 700;
    position: relative;
    color: var(--white-color);
    margin-top: 10px;
}
.slider-para{
    font-size: clamp(1rem, 0.6875rem + 1vw, 1.25rem);
    font-weight: 400;
    color: var(--white-color);
    position: relative;
    margin: 0px 0px 20px;
}
#heroSlider .carousel-inner .carousel-item:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, #00357401, var(--blue-color));
    
}
#heroSlider .top-slider-inner-lists {
    list-style: disc;
    text-align: left;
    color: var(--white-color);
    background: #dfdfdf30;
    padding: 20px 50px;
    border-radius: 10px;
    backdrop-filter: blur(111px);
}
#heroSlider .top-slider-inner-list-items {
    margin-bottom: 10px;
}
#heroSlider .top-slider-inner-list-items:last-child{
    margin-bottom: 0px;
}
.title-menu-text{
    font-size: 13px;
    color: var(--white-color);
    margin-bottom: 0px;
}
.mobile-text-menu {
    display: none ;
    position: relative;
}
.close-menu-btn {
    right: 0;
    background: #000000;
    border-radius: 0 0 0 10px;
    top: 0;
    color: white;
    position: absolute;
    z-index: 1;
}

/* Featured Style */
.features-sections{
    background-color: var(--blue-color);
    padding: 80px 0px;
    overflow: hidden;
}
.sub-title-section {
    font-size: clamp(1rem, -1.7985rem + 8.9552vw, 2.5rem);
    text-transform: capitalize;
    color: var(--dark-color);
    font-weight: 700;
    position: relative;
}
.card-ft {
    background: rgba(0, 0, 0, .2);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, .1);
    position: relative;
    top: 0;
    transition: top 400ms linear;
}

.card-ft:hover{
    border-color: var(--primary-color);
    box-shadow: 0 4px 24px rgba(4, 28, 66, .5);
    top: -10px;
    transition: top 400ms linear;
}
.card-ft .card-title{
    font-size: clamp(1.125rem, 0.3088rem + 2.6119vw, 1.5625rem);
    color: var(--white-color);
    margin-bottom: 20px;
}
.card-ft .card-para{
    font-size: clamp(0.875rem, 0.6418rem + 0.7463vw, 1rem);
    color: var(--white-color);
    margin-bottom: 10px;
}
.learn-more-btn-card{
    text-decoration: none;
    color: var(--yellow-color);
    font-size: 14px;
    margin-top: auto;
    text-transform: uppercase;
}
.float-dots.absolute-fixed {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: scale(17.5);
    filter: blur(4px);
}
.float-dots.absolute-fixed span{
    margin: -1px;
    opacity: .5;
}
/* Featured Style  End */

/* Align Section */
.banner-black-section{
    padding: 80px 20px;
    background-image: url('../img/align-bg.png');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}
.banner-black-section::before{
    content: '';
    background: linear-gradient(90deg, transparent -20%, #070707 30%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.align-para {
    font-size: clamp(1.25rem, 0.7836rem + 1.4925vw, 1.5rem);
    font-style: italic;
    color: var(--white-color);
    font-weight: 300;
}
.align-para a{
    color: var(--yellow-color);
    text-decoration: none;
}

/* Align Section End */

/* Testimonial */
.testimonial-section{
    padding: 80px 20px;
    background: url('../img/testimonial-bg.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
    position: relative;
    background-attachment: fixed;
}
#testimonialSlider {
    max-width: 900px;
    margin: auto;
    background: var(--white-color);
    padding: 20px;
}
#testimonialSlider .client-feeback-text {
    font-size: 18px;
    font-style: italic;
    line-height: 29px;
    padding: 20px;
}
#testimonialSlider .carousel-control-prev {
    background: var(--dark-color);
    width: 42px;
    height: 42px;
    opacity: 1;
    border-radius: 110px;
    left: unset;
    right: 110px;
    top: 70%;
}
#testimonialSlider .carousel-control-next {
    background: var(--dark-color);
    width: 42px;
    height: 42px;
    opacity: 1;
    border-radius: 110px;
    top: 70%;
    right: 60px;
}
#testimonialSlider .carousel-control-prev .carousel-control-prev-icon, #testimonialSlider .carousel-control-next .carousel-control-next-icon {
    width: 22px;
}
#testimonialSlider .avatar-user {
    max-width: 60px;
    width: 100%;
    max-height: 60px;
    object-fit: cover;
    object-position: center;
    border: 1px solid #000;
    border-radius: 100px;
    margin-right: 15px;
    margin-left: 20px;
}
#testimonialSlider .usernames {
    margin: 0px 0px 5px;
    font-size: 17px;
    font-weight: 600;
}
#testimonialSlider .occupation {
    font-size: 13px;
    margin-bottom: 0;
}
#testimonialSlider .float-dots.absolute-fixed-rightTop {
    position: absolute;
    top: -14px;
    right: 40px;
}
/* Testimonail End */

/* Partners Slider */
.patners-org{
    padding: 80px 20px;
    background: var(--white-color);
    position: relative;
}

.upper-marquee {
    display: grid;
    grid-template-columns: 24.9% 24.9% 24.9% 24.9%;
    width: 100%;
    text-align: center;
}
.upper-marquee a{
    text-decoration: none;
    padding: 20px 40px;
    max-width: 100%;
    background: #f7f7f7;
    margin: 10px;
    display: flex;
}
.upper-marquee a img{
    max-height: 200px;
    object-fit: contain;
    margin: auto;
}
.upper-marquee a:hover img{
    cursor: pointer;
}
/* Partners Slider End */

/* About Us hero */
.play-btn-links-action {
    background: #edc48c;
    text-decoration: none;
    width: 50px;
    height: 50px;
    display: inline-flex;
    border-radius: 500px;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 20px;
    position: relative;
}
.play-btn-links-action:before{
    content: '';
    border: 1px solid var(--white-color);
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 100px;
}
.play-btn-links-action:after{
    content: '';
    border: 3px solid var(--white-color);
    border-bottom-color: transparent;
    border-left-color: transparent;
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 100px;
    animation: rotating 2s linear infinite;
}
.video-view-btn .ply-btn-text {
    font-size: 17px;
    font-weight: 500;
    color: white;
    margin-left: 15px;
}

.all-about-steps {
    padding: 80px 0px;
    background: #FFF7F5;
    position: relative;
}
.all-about-steps::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 0 0 0 200px;
    background-color: #f2e9dc;
}
.core-content-cards {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 0;
    width: 100%;
}
.core-cards {
    width: 100%;
    background: #ffffffa3;
    padding: 40px 40px;
    margin: 0;
    border: 5px solid #f2e9dc;
    border-radius: 10px;
}
.core-name {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--dark-color);
    text-transform: capitalize;
}
.core-para {
    font-size: 15px;
    margin-bottom: 0px;
}
.contact-us-info {
    padding: 50px 0px 80px;
    background: var(--blue-color);
}
.information-content {
    z-index: 1;
    position: relative;
    margin-top: -33vh;
}
.information-title {
    font-size: 15px;
    color: wheat;
    line-height: 25px;
    margin-bottom: 30px;
}
.contact-feet {
    border-bottom: 1px dashed wheat;
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.contact-cards .contact-feet:last-child{
    border-bottom: none;
}
.para-contact , .para-contact a {
    display: flex;
    align-items: baseline;
    text-decoration: none;
    color: var(--white-color);
}
.cards-heading {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff96;
    margin-bottom: 20px;
}

#queryForm .form-control {
    background: #ffffff0a;
    border: none;
    border-bottom: 1px solid #dfdfdf;
    border-radius: 0;
    color: white;
}
#queryForm .form-control:focus{
    box-shadow: none;
    background: #ffffff0a;
}
#queryForm label{
    color: #ffffff87;
}
.invalid-feedback {
    color: var(--yellow-color);
}
.form-contact {
    padding: 20px 20px;
    border-radius: 10px;
    margin-top: -40vh;
    position: relative;
    z-index: 1;
}
.do-have-query{
    font-size: 70px;
    font-weight: 700;
}

#videoFrame .modal-content {
    background: transparent !important;
}
#videoFrame .btn-close {
    position: fixed;
    right: 10px;
    top: 10px;
    background-color: #ffffff;
    opacity: 1;
    padding: 10px;
    border-radius: 100px;
}

@keyframes rotating {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}


/* Single Service Page */
.single-service-page-banner{
    padding: 160px 0px 150px;
    background-color: var(--single-page-bg);
    position: relative;
    overflow: hidden;
}
/* .single-service-page-banner:before{
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    height: 100%;
    width: 50%;
    border-left: 1px solid #ffffff4d;
    border-right: 1px solid #ffffff4d;
} */
.banner-services {
    margin-top: -100px;
    z-index: 1;
    position: relative;
}
.service-banner{
    width: 100%;
    max-height: 400px;
    min-height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}
.services-key-features {
    padding: 80px 20px;
}
.card-keys-flow {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.advance-features {
    padding: 80px 0px;
    background: #fffded;
}
.keyCards {
    max-width: 18%;
    width: 100%;
    padding: 20px;
    background: #f8f8f8;
    margin: 20px 10px;
    min-height: 200px;
    position: relative;
}
.countcarder {
    font-size: 60px;
    position: absolute;
    right: 20px;
    bottom: 0px;
    font-weight: 700;
    color: #d5d5d5;
}
.siderImages {
    border-radius: 10px;
    max-height: 440px;
    width: 100%;
    min-height: 440px;
    object-fit: cover;
    object-position: center;

}
.bd-quote{
    padding: 20px;
    border: 1px solid transparent;
    background-color: #fffbf6;
    border-left-width: .25rem;
    border-radius: .25rem;
    border-left-color: var(--yellow-color);
    margin-top: 50px !important;
}
.advance-features.light-bg{
    background-color: var(--light-bg);
}
.big-card-flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.bigCards {
    text-align: center;
    padding: 30px 110px;
    max-width: 50%;
    background: #ebebf6;
    width: 100%;
    min-height: 220px;
    border: 8px solid white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.lightCards{
    position: relative;
}
.lightCards::before{
    content: '';
    background: url('../img/blur-notes.png');
    position: absolute;
    top: 50%;
    left: 00%;
    transform: translate(0%,-50%);
    background-attachment: fixed;
    background-size: cover;
    width: 100%;
    height: 100%;
}
.lightCards .bigCards {
    position: relative;
    text-align: center;
    padding: 30px 110px;
    max-width: 50%;
    background: #0000005e;
    width: 100%;
    min-height: 220px;
    border: 4px solid #540c9d;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(91px);
}
.single-line-banner-text{
    padding: 80px 20px;
    text-align: center;
    color: var(--white-color);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}
.single-line-banner-text::before{
    content: '';
    background: #3f51b5e6;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}
.single-line-banner-text p{
    font-size: 30px;
    color: var(--white-color);
    text-transform: capitalize;
}
/* Single Service Page End */

/* Footer */
.main-footer {
    padding: 80px 0px 20px;
    position: relative;
    background-image: url('../img/footer-bg.png');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}
.ftr-logo-n-text {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.small-info-ftr {
    font-size: 24px;
    margin-left: 30px;
    color: var(--white-color);
}
.certificates-list {
    margin: 30px 0px;
    display: flex;
    align-items: center;
}
.certificate-n-social-options {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.footer-link {
    font-size: 21px;
    margin: 10px;
    color: var(--footer-light-color);
}
.footer-link:hover{
    color: var(--white-color);
}
.footer-menu-list a {
    font-size: 16px;
    text-decoration: none;
}
.footer-menu-list a.active{
    color: var(--yellow-color);
}
.query-title{
    font-size: 13px;
    color: var(--footer-light-color);
}
.call-link-ftr {
    font-size: 14px;
    margin-bottom: 20px;
    color: white;
    text-decoration: none;
}
.call-link-ftr.greentext{
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}
.call-link-ftr.greentext:hover{
    color: var(--yellow-color);
}
.cpyRights {
    color: var(--footer-light-color);
}
.cpyRights strong{
    color: var(--white-color);
}
.copyright-text{
    justify-content: space-between;
}
.copyright {
    border-top: 1px solid #ffffff8b;
    padding-top: 20px;
    margin-top: 30px;
}
/* Footer End */

/* Privacy & Terms */
.small-banner-section {
    padding: 160px 20px 80px;
    display: flex;
    flex-direction: column;
    position: relative;
}
.small-banner-section:before {
    background: linear-gradient(45deg, #0a2134, transparent);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.page-name {
    color: var(--white-color);
    font-size: clamp(1.75rem, 1.2813rem + 1.5vw, 2.125rem);
    text-transform: capitalize;
}
.sub-name {
    color: var(--white-color);
    font-size: clamp(1.25rem, 0.9375rem + 1vw, 1.5rem);
}
.inner-common-page{
    padding: 80px 0px 30px;
    background: var(--light-bg);
}
.body-para-text {
    font-size: 15px;
}
.inner-common-page a{
    color: var(--dark-color);
    text-decoration: none;
}
.common-content-terms a{
    color: var(--dark-color);
    text-decoration: underline;
    padding: 0px 6px;
}
.line-heading {
    font-size: 23px;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.list-under-privacy {
    background: #dfdf;
    padding: 20px 22px;
    list-style: inside;
}
.inner-common-page a:hover{
    color: var(--red-color);
}
.inner-content {
    background: white;
    padding: 30px;
    top: -50px;
    position: relative;
    box-shadow: -1px 16px 20px 0px rgb(197 208 225 / 44%);
}
/* Privacy & Terms End */



.all-site-search{
    padding-right: 90px !important;
}
.all-site-search,.all-site-search:focus{
    border: none !important;
    box-shadow: none;
}
.click-search{
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: #1b2435;
    color: var(--white-color);
    font-size: 20px;
    padding: 20px;
}
.click-search:hover{
    background: var(--primary-color);
}

.flex-all-type-card {
    display: flex;
    padding: 20px;
    flex-wrap: wrap;
}
.flex-all-type-card .icon-card-box {
    flex: 1 1 auto;
    max-width: 50%;
}
.flex-all-type-card .card-icon-inner-sider {
    background: var(--white-color);
    box-shadow: 0px 10px 24px 5px rgb(178 202 217 / 37%);
    margin: 10px;
    padding: 25px;
}
.flex-all-type-card .card-icon-inner-sider .flex-icon-para {
    font-size: 14px;
    opacity: .8;
}
.flex-all-type-card .img-fluid.icon-images {
    max-width: 50px;
    max-height: 50px;
    min-height: 50px;
    object-fit: cover;
    min-width: 50px;
    object-position: center;
    margin-bottom: 20px;
}
.flex-all-type-card .flex-icon-title {
    margin-bottom: 20px;
}
.eduction-sections{
    padding: 80px 0px;
}
.case-blog-title, .case-blog-title a{
    font-size: 18px;
    text-align: left;
    line-height: 28px;
    color: var(--dark-color);
    text-decoration: none;
}
.case-blog-title a:hover{
    color: var(--yellow-color);
}
.case-blog-para {
    font-size: 14px;
    text-align: left;
}
.openBlogLink {
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--white-color);
    background: var(--blue-color);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.openBlogLink:hover{
    background-color: var(--yellow-color);
}
.header-sort-blogs {
    max-width: 200px;
    width: 100%;
    margin-bottom: 20px;
}

/* Blog Style */

.blog-body{
    overflow: auto;
}
.blog-hero-banner{

    padding: 140px 0px 80px;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
    overflow: hidden;
    background-position: center;
    height: 100%;
    
}
.blog-hero-banner:before{
    content: '';
    background: linear-gradient(180deg, #00347470, var( --blue-color));
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
}
.blog-content-bg{
    background: url('../img/blog-bg.png');
    background-size: cover;
    width: 100%;
    height: 100%;
}
.link-spy-links a{
    padding: 15px;
    font-size: 14px;
    color: var(--dark-color) ;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    display: inline-block;
}


.link-spy-links a:hover, .link-spy-links a.active {
    color: var(--yellow-color);
    border-color: var(--yellow-color);
}

.spylinks-blogs-index{
    position: sticky;
    top: 79px;
    z-index: 3;
    background: #eff3fcb8;
    backdrop-filter: blur(13px);
}

.selected-indexInput{
    display: none;
}
#keyBenefits, #approach, #industryTrends, #useCases {
    padding: 80px 0px 50px;
}
.card-benefits-box{
    padding: 30px 50px;
    background: var(--white-color);
    border: 1px solid #EBF0FC;
    display: flex;
    min-height: 170px;
    align-items: center;
}
.card-benefits-box:hover{
    box-shadow: 0px 12px 44px #D6D8F4;
}
.benefits-box-icons {
    flex: 1 1 auto;
    margin-right: 20px;
    max-width: 74px;
    width: 100%;
}
.benefits-box-icons-image {
    width: 100%;
}
.trends-cards {
    padding: 50px;
    background: var(--white-color);
    margin-bottom: 10px;
}
.trends-cards.lightRed{
    background: #fff3f2c9;
    border-radius: 0px 0px 15px 0px;
}
.trends-cards.lightYellow{
    background: #FFFCEE;
    border-radius: 0px 0px 0px 15px;
}
.trends-cards.lightBlue{
    background: #EBF0FC;
    border-radius: 0px 15px 0px 0px;
}
.trendsImages.img-fluid.w-100 {
    max-height: 180px;
    object-fit: cover;
    object-position: center;
    border-radius: 15px 0px 0px 0px;
}
.box-inner-trends {
    padding: 40px;
    background: var(--white-color);
    position: relative;
    z-index: 1;
}
#industryTrends {
    position: relative;
}
#industryTrends:after{
    content: '';
    background: var(--red-color);
    width: 90px;
    position: absolute;
    height: 90px;
    top: 40px;
    left: 20%;
    filter: blur(20px);
    opacity: .5;
}
.case-img-box.img-fluid {
    max-width: 100%;
    max-height: 160px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.quotes {
    background: #D8E1F5;
    padding: 40px 20px;
    border-left: 5px solid #98AEE0;
}
#getStarted{
    padding-top: 80px;
    padding-bottom: 80px !important;
}
.trends-cards {
    min-height: 180px;
}
.blogs-all-cards{
    padding: 80px 0px;
}
.blog-case-card-img{
    max-height: 200px;
    min-height: 200px;
}
.blogOrderCol {
    margin-bottom: 26px;
}
.blogOrderCol .case-cards {
    background: white;
    padding: 20px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    height: 100%;
}
.blog-sections-boxes{
    display: flex;
}

.blog-details-modal{
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgb(21 48 62 / 20%);
    backdrop-filter: blur(4px);
    display: none;
}
.container-blog{
    max-width: 600px;
    margin-left: auto;
    background: white;
    width: 100%;
    height: 100%;
    position: relative;
    transition: all 400ms linear;
}
.close-blog-modal {
    background: #000000ac;
    font-size: 21px;
    padding: 3px 10px;
    position: absolute;
    right: 0;
    top: 0;
    color: white;
    cursor: pointer;
}
.close-blog-modal:hover {
    background: var(--dark-color);
}
.modal-img-wrapper {
    position: relative;
    border: 10px;
}
.modal-img-wrapper:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(360deg, black, transparent);
}
.modal-inner-body {
    padding: 30px;
    font-size: 14px;
    max-height: 70vh;
    overflow: auto;
}
.blog-modal-ftr-img{
    width: 100%;
    display: block;
    min-height: 200px;
    object-fit: cover;
    object-position: center;
    max-height: 200px;
    background: var(--dark-color);
}
.active-blog-name {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    width: 93%;
}
/* Blog Style End */

/* 404 Page */
.oops-error{
    background: #013574;
    padding: 5px 0px 80px;
}
.text-error {
    font-size: 140px;
    font-weight: 800;
    color: wheat;
    text-shadow: 2px 2px 0px #ffffff;
}
.img-fluid.opps-er-image {
    max-width: 400px;
    width: 100%;
    margin: auto;
}
.thankyouheader{
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.thankyouGif {
    max-width: 350px;
    max-height: 240px;
}
.img-gif-thankyou {
    max-height: 130px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.fqa-outter-box {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 20px;
}

/* Case Study */
.all-case-studies {
    display: flex;
    flex-wrap: wrap;
}
.org-case-card {
    background: var(--white-color);
    max-width: 32%;
    padding: 20px;
    border: 5px solid var(--light-bg);
    flex: 1 1 auto;
}
.case-category {
    flex-wrap: wrap;
    padding: 9px 20px;
    background: #dbe2f6;
    display: inline-flex;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 5px 0px 20px;
}
.challenge-box {
    margin: 10px 0px;
    background: #ffe2e4;
    padding: 10px;
}
.case-category  .title-strong {
    font-size: 14px;
    margin-bottom: 0px;
    display: block;
    text-transform: capitalize;
}
.case-st-para {
    font-size: 14px;
}
.solution-box {
    margin: 10px 0px;
    background: #e2ffe2;
    padding: 10px;
}
.outcome-box {
    margin: 10px 0px 0px;
    background: var(--white-color);
    padding: 10px 10px 0px;
}
.title {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 10px;
}

#introduction{
    padding: 80px 0px 0px;
}
.introBox{
    padding: 40px 20px;
    background: #dceaf8;
}
#caseStudy{
    padding: 100px 20px;
}

.icon-meta-box {
    font-size: 12px;
    position: relative;
}

.icon-meta-box:after {
    content: '-';
    position: relative;
    left: 3px;
    font-weight: 700;
    opacity: .5;
}
.icon-meta-box:last-child:after{
    display: none;
}
.meta-tags {
    margin-bottom: 5px;
}

.slider-para.icon-meta-box{
    font-size: 20px;
}


.blog-share-options {
    position: absolute;
    bottom: -30px;
    right: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.blog-share-options a {
    font-size: 20px;
}
.blog-share-options a i {
    padding: 7px;
    font-size: 18px;
    color: #ffffff83;;
}
.blog-share-options a i:hover{
    color: var(--yellow-color);
}
.blog-share-options {
    z-index: 1;
    color: #ffffff83;
}
.banner-services:after {
    content: '';
    background: linear-gradient(0deg, black, transparent);
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
}
.single-service-page-banner.blog-details-single {
    padding: 160px 0px 120px;
}