/* @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    /* font-family: "Plus Jakarta Sans", sans-serif; */
}


:root {
    --darkest-blue: #000421;
    --black: #000;
    --blue: #3871C2;
    --light-blue: #55AADE;
    --grey: #1790AF;
    --white: #fff;
}

a {
    text-decoration: none !important;
}

section {
    padding: 50px 0px;
}

@media(max-width:768px) {
    section {
        padding: 30px 0px;
    }
}







/* universal btn start===================================== */
.universal-btn {
    padding: 10px 20px;
    display: inline-block;
    color: var(--white);
    transition: 0.5s ease-in-out;
    border: 1px solid var(--white);
    background-color: var(--blue);
}

.universal-btn:hover {
    color: var(--blue);
    background-color: var(--white);
    border: 1px solid var(--blue);
}

/* universal btn end===================================== */



/* fixed icons css start */
.fix-icons .whatsapp-icon {
    position: fixed;
    top: 80%;
    right: 2%;
    z-index: 999999;
}

.fix-icons .phone-icon {
    position: fixed;
    top: 80%;
    left: 2%;
    z-index: 999999;
}

.fix-icons .whatsapp-icon a {
    color: #fff;
    font-size: 24px;
    background: #026BAE;
    padding: 10px 15px;
    border-radius: 50%;
    box-shadow: rgba(51, 38, 31, 0.226) 0px 0px 5px 5px;
}

.fix-icons .phone-icon a {
    color: #fff;
    font-size: 24px;
    background: #026BAE;
    padding: 10px 15px;
    border-radius: 50%;
    box-shadow: rgba(51, 38, 31, 0.226) 0px 0px 5px 5px;
}

@media screen and (max-width: 767px) {
    .fix-icons .whatsapp-icon a {
        font-size: 16px;
        padding: 6px 10px;
    }

    .fix-icons .phone-icon a {
        font-size: 16px;
        padding: 7px 10px;
    }
}

/* end of fixed icons css */



/* subpage banner start */

.sub-page {
    background: linear-gradient(to right, rgba(3, 37, 100, 0.918), #026BAE), url();
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 150px 50px;
}

.sub-page-heading {

    text-align: start;
}

.sub-page-heading h2 {
    color: #fff;
    font-size: 38px;
    font-weight: 600;
}

.sub-page-heading p a,
.sub-page-heading p i {
    text-decoration: none;
    color: #fff;
}

@media(max-width: 768px) {
    .sub-page-heading h2 {
        color: #fff;
        font-size: 18px;
        font-weight: 600;
    }

    .sub-page-heading p {
        font-size: 12px;
    }

    .sub-page {
        background: linear-gradient(to right, rgba(3, 37, 100, 0.918), #026BAE), url();
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        padding: 50px 10px;
    }
}

/* sub page banner end */






/* universal header start==================================== */
.header {
    margin-bottom: 30px;
}

.header h1 {
    position: relative;
    font-size: 28px;
    font-weight: 600;
    display: inline-block;
}

.header h2 {
    position: relative;
    display: inline-block;
    font-size: 28px;
    font-weight: 600;
}

.header h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--grey);
}

.header h1::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--grey);
}

.header h1 span {
    color: var(--blue);
}

.header h2 span {
    color: var(--blue);
}

@media(max-width:768px) {

    .header h1,
    .header h2 {
        font-size: 20px;
    }
}

/* universal header end==================================== */










/* navbar banner style start=============================================== */
.navbar-banner {
    position: relative;
}

.custom-nav {
    position: absolute;
    width: 100%;
    z-index: 1;
}

.custom-nav .main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ffffff;

}

.custom-nav .logo-div .img {
    height: 80px;
}

.custom-nav .nav-elements {
    /* background-color: var(--grey); */
    padding: 10px 20px;
}

.custom-nav .nav-elements .nav-elements-link {
    padding: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;

}

.custom-nav .nav-elements .nav-elements-link li {
    list-style: none;
    position: relative;
}

.custom-nav .nav-elements .nav-elements-link li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background-color: none;
    transition: 0.3s ease-in-out;
}

.custom-nav .nav-elements .nav-elements-link li:hover::after {
    background-color: var(--light-blue);
    width: 100%;
}

.custom-nav .nav-elements .nav-elements-link li a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 16px;
}

.custom-nav .social-icons {
    display: flex;
    gap: 8px;
}

.custom-nav .social-icons a {
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 18px;

    background-color: var(--blue);
    color: var(--white);
}

.nav-elements-link .nav-item .dropdown-menu .dropdown-item {
    color: var(--black);
}

.nav-elements-link .nav-link {
    padding: 0;
}

.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    transition: 0.5s ease-in-out;
    background-color: var(--white);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    z-index: 999;
}

.fixed .social-icons a {
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 18px;

    background-color: var(--blue);
    color: var(--white);
}

.fixed .nav-elements .nav-elements-link li a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    text-transform: uppercase;
}


.carousel-control-prev {
    left: 0 !important;
    top: 42% !important;
}

.carousel-control-next {
    top: 42% !important;
}

.carousel-control-next,
.carousel-control-prev {
    height: 100px;
}


.mobile-nav {
    display: none;
}

.navigation-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav .logo img {
    height: 60px;
}

.mobile-social-icon a {
    text-decoration: none;
    padding: 9px 12px;
    background-color: var(--light-blue);
    color: var(--white);
    border-radius: 50%;
}

.toggle-btn button {
    background: none;
    border: none;
}

/* side bar style start */
.side-bar-parent {
    display: none;

}

.side-bar-parent .side-bar {
    position: relative;
    display: flex;
    justify-content: start;
    padding-top: 100px;
    height: 100%;
}

.side-bar-parent .cross-icon {
    position: absolute;
    top: 0;
    right: 0;
}

.side-bar-parent .cross-icon button {
    color: var(--black);
    font-size: 18px;
    background: none;
    border: none;
    padding: 10px;
}

.side-bar ul {
    padding-left: 0;
}

.side-bar ul li {
    list-style: none;
    margin-bottom: 30px;
}

.side-bar ul li a {
    text-decoration: none;
    color: var(--black);
    font-weight: 600;
}

.video-banner {
    position: relative;
}

.video-banner video {
    position: relative;
}

.video-banner .overlay {
    position: absolute;
    bottom: 7px;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: linear-gradient(#000000d7, #0000002c);
}

.video-banner .overlay span {
    font-size: 60px;
    color: var(--light-blue);
    font-weight: 600;
}

.video-banner .overlay p {
    font-size: 18px;
    color: var(--white);
}




@media(max-width:992px) {

    .mobile-nav {
        display: block;
        background-color: var(--white);
        padding: 5px 0px;

        z-index: 99;
    }

    .mobfixed {
        position: fixed;
        top: 0;
        width: 100%;
        transition: 0.5s ease-in-out;
    }

    .custom-nav {
        display: none;
    }

    .side-bar-parent {
        display: block;
        position: fixed;
        top: 0;
        transform: translateX(-100%);
        transition: 0.5s ease-in-out;
        padding: 20px 10px 10px 10px;
        width: 50%;
        height: 100vh;
        background-color: var(--white);
        z-index: 999;

    }

    .video-banner .overlay span {
        font-size: 30px;
        color: var(--light-blue);
        font-weight: 600;
    }

    .video-banner .overlay p {
        font-size: 18px;
        color: var(--white);
    }

}

@media(max-width:768px) {
    .video-banner .overlay span {
        font-size: 25px;
        color: var(--light-blue);
        font-weight: 500;
    }

    .video-banner .overlay p {
        font-size: 14px;
        color: var(--white);
        display: none;
    }

}

/* mobile nav css end */
/* navbar banner style end=============================================== */











/* about us start ============================================================================= */
.about-us-content p {
    text-align: justify;
    font-size: 16px;
    font-weight: 400;
}

.about-us-content p strong {
    color: var(--blue);
}

@media(max-width:768px) {
    .about-us-content p {
        font-size: 14px;
    }
}

/* about us end ============================================================================= */





/* feature section css start=============================================================== */
.feature-card-parent {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    background-color: var(--light-blue);
}

.feat-card {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    /* min-height: 250px;
                max-height: 250px; */
    /* min-height: 0px; */
    /* width: 100%; */
}

.feat-card h3 {
    font-size: 20px;
    text-align: center;
    color: var(--darkest-blue);
}

.feat-card h2 {
    text-align: center;
    display: inline-block;
    color: #f3f3f3;
    font-size: 50px;

}

.feat-card p {
    text-align: center;
    font-size: 14px;
    color: var(--darkest-blue);
}

.feat-1 {
    border-right: 1px solid #dad9d9;
}

.feat-2 {
    border-bottom: 1px solid #dad9d9;
}

.feat-3 {
    border-right: 1px solid #dad9d9;
}

@media(max-width:768px) {
    .feat-card p {
        display: none;
    }

    .feat-card h3 {
        font-size: 16px;
        text-align: center;
        color: var(--darkest-blue);
    }
}

/* feature section css end================================================================= */





/*===================================== process section start here=========================== */
.step-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 36px;
    padding: 10px;
    /* color: #d9232e; */
    position: relative;
}

.step-number {
    position: absolute;
    top: -40px;
    font-size: 48px;
    font-weight: bold;
    color: var(--darkest-blue);
}

.step-title {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--blue);
}

.step-desc {
    color: var(--darkest-blue);
    font-weight: 500;
    font-size: 14px;
}

.arrow {
    font-size: 32px;
    color: var(--blue);
}

@media (max-width: 767.98px) {
    .arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
}

/*===================================== process section end here=========================== */











/* ==================================== why choose us start =============================== */
.info-card {
    min-height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: var(--light-blue);
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 10px;
}

.info-card img {
    margin-bottom: 10px;
}

.why-us-left-content p {
    font-size: 16px;
    color: var(--white);
    text-align: justify;
    font-weight: 400;
}

.why-us-left-content {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    height: 100%;
}

.info-card p {
    text-align: center;
    font-size: 14px;
    color: var(--white);
    font-weight: 500;
}

.info-card h3 {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    color: var(--dark-blue);
}


.why-section {
    background-color: var(--blue);
}


@media(max-width:768px) {
    .why-us-left-content p {
        font-size: 14px;
    }
}

/* ==================================== why choose us end =============================== */











/* ======================================product start ==================================== */

.services-block {
    position: relative;
    margin-bottom: 40px;
}

.services-block .inner-box {
    position: relative;
    /* padding: 0px 80px; */
}

.services-block .inner-box .image-outer {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}

.services-block .inner-box .image-outer .image {
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.63) 1.95px 1.95px 2.6px;
}

.services-block .inner-box .image-outer .image img {
    position: relative;
    width: 100%;
    display: block;
}

.services-block .inner-box .image-outer:before {
    position: absolute;
    content: '';
    right: 0px;
    top: 30px;
    bottom: 0px;
    left: 30px;
    border: 2px solid var(--darkest-blue);
}

.services-block .inner-box .image .overlay-box {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: block;
    text-align: center;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    transition: all 900ms ease;
    -webkit-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    transform: scale(0, 0);
    background-color: #3872c2c0;
}

.services-block .inner-box .image .overlay-box .plus {
    position: absolute;
    left: 50%;
    top: 50%;
    color: #ffffff;
    font-size: 34px;
    line-height: 1em;
    margin-left: -17px;
    margin-top: -17px;
}

.services-block .inner-box:hover .image .overlay-box {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    transform: scale(1, 1);
}

.services-block .inner-box .lower-content {
    position: relative;
    text-align: start;
}

.services-block .inner-box .lower-content h3 {
    position: relative;
    font-size: 20px;
    font-weight: bolder;
    padding-top: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-align: center;
}


.services-block .inner-box .lower-content h3 a {
    position: relative;
    color: #262626;
    transition: all 0.3s ease;
}

.services-block .inner-box .lower-content h3 a:hover {
    color: #1791afc4;
}

.mobile-product {
    display: none;
}

/* code for wave */
.services-section {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
}

.services-section .wave {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: #c0b6b66d;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
    transition: 0.5s;
}

.services-section .wave span {
    content: "";
    position: absolute;
    width: 385vh;
    height: 500vh;
    top: 0;
    left: 50%;
    transform: translate(-20%, -50%);
    background: #ffffff;
}

.services-section .wave span:nth-child(1) {
    border-radius: 45%;
    background: rgb(255, 255, 255);
    animation: animate 25s linear infinite;
}

.services-section .wave span:nth-child(2) {
    border-radius: 40%;
    background: rgba(255, 255, 255, 0.5);
    animation: animate 25s linear infinite;
}

.services-section .wave span:nth-child(3) {
    border-radius: 42.5%;
    background: rgba(255, 255, 255, 0.5);
    animation: animate 25s linear infinite;
}



@keyframes animate {
    0% {
        transform: translate(-50%, -75%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -75%) rotate(360deg);
    }
}

/* end of code for wave */

@media(max-width:768px) {
    .mobile-product {
        display: block;
    }

    .desktop-product {
        display: none;
    }
}

/* ======================================product end ==================================== */


















/* =====================================blog css start=========================================== */
.blogs .blog-card {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin-bottom: 20px;
    z-index: -1;
}

.blogs .blog-card .card-img {
    margin-bottom: 20px;
}

.blogs .blog-card .card-text {
    padding: 0px 5px;
}

.blogs .blog-card .card-text .date {
    font-weight: 800;
    font-size: 14px;
    color: #a09e9e;
    margin-bottom: 10px;
}

.blogs .blog-card .card-text h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #171717;
}

.blogs .blog-card .card-text .para {
    color: #a09e9e;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0;
}

.blogs .blog-card .card-text .read-more {
    display: inline-block;
    border: 1px solid #000;
    padding: 5px 20px;
    margin: 20px 0px;
}

.blogs .blog-card .card-text .read-more a {
    color: #000;
}

@media screen and (max-width: 767px) {
    .blogs .blog-card .card-img {
        margin-bottom: 5px;
    }

    .blogs .blog-card .card-text .date {
        font-size: 12px;
        margin-bottom: 5px;
    }

    .blogs .blog-card .card-text h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .blogs .blog-card .card-text .read-more {

        padding: 3px 15px;
        margin: 10px 0px;
    }
}

/*========================================= blog css end===================================== */






/* ======================================contact us start=================================== */
.contact-us {
    padding: 70px 100px;
    background: linear-gradient(#000421e1, #000421ee), url(../images/contact-us/contact-us-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
}

.contact-content-div {
    background: linear-gradient(to right, #0f2646, #30588f, #6dc6fd);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: rgba(255, 255, 255, 0.37) 0px 3px 8px;
}

.contact-content-div .image img {
    filter: drop-shadow(rgba(255, 255, 255, 0.24) 0px 3px 8px);

}

.sub-style h2 {
    color: var(--darkest-blue);
}

.sub-style .sub-title {
    color: var(--white);
    font-weight: 600;
}

.form-div {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    padding: 20px 40px 20px 0px;
    height: 100%;
}

.form-div form input {
    background: transparent !important;
    color: var(--white);
    border: none;
    border-radius: 0px;
    border-bottom: 1px solid var(--white);
}

.form-div form textarea {
    background: transparent;
}

.form-div form textarea:focus {
    background: transparent;
}

.contact .form-floating .form-control {
    border-radius: 0px solid var(--text-dark) !important;
    border-color: #000;

}

form #err1,
#err2,
#err3,
#err4 {
    font-size: 14px !important;
}

.form-floating>.form-control,
.form-floating>.form-select {
    height: calc(2.5rem + 2px);
    line-height: 1.25;
}

.form-floating>label {
    position: absolute;
    top: -7px !important;
    left: 0;
    color: #fff;
    height: 100%;
    padding: 1rem 0.75rem;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    /* font-size: 12px; */
    transition: opacity .1s ease-in-out, transform .1s ease-in-out;
}

/* captcha new design start */
.captchasep1 {
    display: flex;
}

.captchasep1 input::placeholder {
    color: #000 !important;
}

.captchasep1 input {
    width: 100% !important;
    margin-top: 0 !important;
    font-size: 16px;
    border-bottom: 1px solid #fff !important;
    box-shadow: none;
}

.captchasep1 .captcha-codes-sec {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100% !important;
    background: url(../img/capt-img.jpeg);
    font-size: 16px;
    border: 1px solid #fff !important;
    box-shadow: none;
    overflow: hidden;
}

.captchasep1 .captcha-codes-sec p {
    margin-bottom: 0;
    letter-spacing: 8px;
    font-style: italic;
    font-size: 27px !important;
    padding: 8px;
    height: 100%;
    color: #fff;
}

.captchasep1 .captcha-codes-sec button {
    font-style: italic;
    font-size: 18px;
    outline: none;
    background: transparent;
    height: 100%;
    border: none;
}

.captchasep1 .captcha-codes-sec button i {
    background: var(--white);
    color: var(--blue);
    border-radius: 5px;
    padding: 10px;
}

@media screen and (max-width:600px) {
    .captchasep1 {
        display: flex;
        flex-direction: column !important;
    }

    .captchasep1 .captcha-codes-sec {
        border-left: 1px solid #CED4DA;
        border-right: 1px solid #CED4DA;
        border-bottom: 1px solid #CED4DA;
        margin-top: 3px;
    }


}

@media(max-width:992px) {
    .contact-us {
        padding: 30px 10px;
    }

    .form-div {
        padding: 10px 10px 10px 10px;
    }

    .contact-content-div .image {
        display: none;
    }
}

/* ======================================contact us end===================================== */


/* =======================================video crouesel start=============================== */
.video {
    background-color: #e9e5e5;
}

.video .video-content {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    height: 100%;
    padding: 10px;
    background-color: var(--blue);
    box-shadow: rgba(0, 0, 0, 0.37) 0px 3px 8px;
}

.video-crousel-parent {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.video .video-content .video-quote {
    font-size: 18px;
    color: var(--white);
}

.video .video-content p {
    text-align: justify;
    font-size: 14px;
    color: #d3d3d3;
}

/* =======================================video crouesel end=============================== */


/*========================================= footer start===================================== */

.footer {
    box-shadow: rgba(255, 255, 255, 0.06) 0px 2px 4px 0px inset;
    background-color: var(--blue);
    backdrop-filter: blur(5px);
    padding: 30px 0;
    z-index: -1 !important;
}

.footer .ftr-img {
    text-align: center;
}

.footer .footer-head img {
    margin: 0 auto !important;
    margin-bottom: 20px !important;
    width: 200px;
}

.footer-links h5 {
    color: var(--white);
}

.footer .footer-head .social-link {
    text-align: center;
}

.footer .footer-head .social-link a {
    display: inline-block;
}

.footer .footer-head .social-link i.fa-facebook-f {
    background-color: #3B5998;
    border: 1px solid var(--white);
    border-radius: 50%;
    padding: 10px 13px;
}

.footer .footer-head .social-link i.fa-instagram {
    background-color: #D83D6A;
    padding: 10px 11px;
    border: 1px solid var(--white);
    border-radius: 50%;
}

.footer .footer-head .social-link i.fa-linkedin-in {
    background-color: #007AB5;
    padding: 10px 12px;
    border-radius: 50%;
    border: 1px solid var(--white);
}

.footer .footer-head .social-link a i {
    color: #fff;
    font-size: 17px;
}

.footer .footer-head h5 {
    font-weight: bold;
    margin-bottom: 15px;
}

.footer .footer-links a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    border-bottom: 2px dotted #fff;
    padding: 6px 0;
    transition: all .4s;
    font-size: 14px;
}

.footer .footer-links a:hover {
    color: var(--darkest-blue);
    padding: 6px 6px;
}

.footer .footer-contct {
    display: flex;
    margin-bottom: 16px;
}

.footer .footer-contct i {
    font-size: 22px;
    margin-right: 20px;
    color: var(--white);
}

.footer .footer-contct .footer-contct-title h6 {
    color: var(--white);
}

.footer .footer-contct .footer-contct-title a {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
}

.footer-01 {
    background: var(--light-blue);
    text-align: center;
    padding: 10px 0;
}

.footer-01 .footer-01-head p {
    color: #fff;
    margin-bottom: 0px;
    font-size: 14px;
    font-weight: 500;
}

.footer-01 .footer-01-head p span {
    color: var(--darkest-blue);
}

.footer-01 .footer-01-head p a {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}

/* ============================================= footer end ===================================== */


/* ===========================================contact page css start ============================= */
/* contact page css start */


.contact-card {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    text-align: center;
    padding: 20px;
    color: #000;
    min-height: 230px;
}

.contact-card img {
    margin-bottom: 14px;
    width: 60px;
    background-color: #026BAE;
    border-radius: 5px;
}

.contact-card h3 {
    font-size: 19px;
    font-weight: 600;
}

.contact-card:hover {
    background-color: #026BAE;
    transition: 0.4s ease-in-out;
    color: #fff;
}

.map iframe {
    width: 100%;
    height: 400px;
    border: 5px solid #026BAE;
}

@media(max-width: 768px) {
    .contact-card {
        margin-bottom: 15px;
    }
}

/* ===========================================contact page css end ============================= */


/* ===========================================enq page css start ================================ */
    /* enquiry page css start  */

        .enquiry-sec-star .seriv-name {
            color: var(--blue);
            font-size: 12px;
        }

        .inquiry-content h1 {
            font-size: 30px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .inquiry-content p {
            font-size: 18px;
            text-align: justify;
        }

        .key-feat-enq-fan h2 {
            font-size: 30px;
            font-weight: 600;
            margin-bottom: 13px;
        }

        .key-mint ul li {
            font-size: 18px;
            line-height: 2;
        }

        .overlay-enq-content h3 {
            font-size: 17px;
        }

        .enquiry-sec-start .left_panel {
            top: 100px !important;
            margin-bottom: 30px;
            position: sticky;
            height: fit-content;
        }

        .feature-heading {
            margin-bottom: 20px !important;
        }

        @media (max-width: 767px) {
            .enquiry-sec-start .left_panel {
                margin-bottom: 30px;
                position: static;
                /* height: fit-content; */
            }

            .inquiry-content h1 {
                font-size: 22px;
                font-weight: 600;
                margin-bottom: 15px;
            }

            .key-feat-enq-fan h2 {
                font-size: 23px;
                font-weight: 600;
                margin-bottom: 13px;
            }

            .inquiry-content p {
                font-size: 16px;
                text-align: justify;
            }

            .key-mint ul li {
                font-size: 16px;
                line-height: 2;
            }

            .enq-form {
                margin-bottom: 20px;
            }

            .enquiry-sec-start .service-box {
                padding: 0px !important;
            }

            .feature-heading {
                margin-bottom: 20px !important;
            }
        }

        .enquiry-sec-start .details {
            border: solid 1px #b1adad;
            background: #eeeeee47;
            padding: 25px;
        }

        .enquiry-sec-start .product-title {
            text-transform: UPPERCASE;
            font-weight: bold;
        }

        .enquiry-sec-start .product-title {
            margin-top: 0;
            margin-bottom: 25px;
        }

        .enquiry-sec-start h4 {
            position: relative;
            margin-bottom: 30px;
        }

        .enquiry-sec-start h4:before {
            background: #e30613;
            bottom: -12px;
            content: "";
            height: 2px;
            left: 0;
            position: absolute;
            width: 25px;
        }

        .enquiry-sec-start .product-description {
            font-size: 18px;
            line-height: 22px;
            padding-bottom: 5px;
            text-align: justify;
        }

        .enquiry-sec-start .table {
            border: solid 1px #eee;
            background: #fff !important;
        }

        .enq-btn {
            background-color: var(--blue);
            color: white;
            border: none;
        }

        .enq-btn:hover {
            background-color: #000;
            color: #fff;
        }

        .view-btn {
            background-color: #23466d;
            color: #fff;
            padding: 10px 20px;
            border: none;
            border-radius: 25px;
            font-size: 14px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

      

        .feature-heading {
            display: inline-block;
            background-color: var(--blue);
            /* background-color: #0072b983; */
            color: #fff;
            padding: 6px 18px;
            border-radius: 30px;
            font-weight: 500;
            position: relative;
            font-family: "Segoe UI", sans-serif;
            font-size: 16px;
        }

        .feature-heading h1 {
            font-size: 24px;
        }

        .feature-heading .lines {
            position: absolute;
            top: -8px;
            right: -12px;
            width: 30px;
            height: 30px;
        }

        .feature-heading .lines::before,
        .feature-heading .lines::after {
            content: "";
            position: absolute;
            width: 22px;
            height: 5px;
            /* background-color: #7a83f3; */
            background-color: var(--blue);
            border-radius: 10px;
            transform-origin: left center;
        }

        .feature-heading .lines::before {
            transform: rotate(deg);
            top: 4px;
            left: 0px;
        }

        .feature-heading .lines::after {
            transform: rotate(75deg);
            top: 0px;
            left: 6px;
        }

        .feature-heading .lines::after {
            width: 19px;
            top: -5px;
            left: 10px;
            transform: rotate(80deg);
        }

        .experience-col {
            background-color: var(--blue);
        }
         .captchasep2 {
  display: flex;
}

.captchasep2 .captcha-codes-sec {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100% !important;
  border-radius: 5px;
  border-top: 1px solid #ced4da;
  border-right: 1px solid #ced4da;
  border-bottom: 1px solid #ced4da;
  font-weight: bolder !important;
}

.captchasep2 .captcha-codes-sec p {
  margin-bottom: 0;
  letter-spacing: 9px;
  font-style: italic;
  font-size: 24px;
  padding: 10px;
  height: 100%;
  color: #000;
  font-weight: bolder !important;
}

@media (max-width: 768px) {
  .captchasep2 .captcha-codes-sec p {
    font-size: 24px;
  }

}

@media(max-width:400px) {
  .captchasep2 {
    display: block;
  }

  .captchasep2 .captcha-codes-sec p {
    font-size: 28px;
  }
  .captchasep2 .captcha-codes-sec{
    margin-bottom: 10px;
  }
}

@media (max-width: 992px) {
  .captchasep2 .captcha-codes-sec p {
    font-size: 15px;
  }
}



.captchasep2 .captcha-codes-sec button {
  font-style: italic;
  font-size: 22px;
  outline: none;
  background: transparent;
  height: 100%;
  border: none;
  font-weight: bolder;
}

.captchasep2 .captcha-codes-sec button i {
  background: #000;
  color: #fff;
  padding: 10px;
  border-radius: 6px;
}
/* ===========================================enq page css end ================================ */