@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Poppins:wght@200;300;400;500;600&family=Roboto:wght@300;400;500&family=Rubik:wght@300;400;500;600;700;800&family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
    --primary-color: #015c88;
    --highlight-color: #06b2be;
    --s_backgound-color: #f1f5fa;
    --secondary-color: #ffffff;
    --text-color: #202020;
    --p-color: #696969;
    font-family: 'Montserrat', sans-serif;
    font-family: 'Rubik', sans-serif;
    font-family: 'Poppins', sans-serif;
    font-family: 'Roboto', sans-serif;
    font-family: "Tinos", serif;
}

html {
    scroll-behavior: smooth;
}

p {
    font-size: 15px;
}

#social_icons {
    position: fixed;
    top: 32%;
    right: 10px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.si_box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 50px;
    height: 50px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    gap: 10px;
    margin-bottom: 10px;
    transition: width .3s ease-in-out;
    box-shadow: 0px 0px 5px 0px rgb(1, 92, 136, 0.3);
}

#social_img {
    margin-left: 10px;
    width: 32px;
    margin-right: 0;
    transition: margin-right .3s ease-in-out;
}

.si_box span {
    margin-right: 0;
    width: 0;
    opacity: 0;
    transition: opacity .3s ease-in-out, width .3s ease-in-out;
    font-family: 'Poppins', sans-serif;
    color: var(--text-color) !important;
    font-weight: 500;
}

.si_box:hover {
    width: 180px;
    justify-content: flex-start;
}

.si_box:hover span {
    opacity: 1;
    width: auto;
}

.call {
    background: #c5d4e1;
}

.facebook {
    background: #c5d4e1;
}

.whatsapp {
    background: #adcfee;
}

.instagram {
    background: #adcfee;
}

#top_bar {
    width: 100%;
    height: auto;
    padding: 16px 0;
    background: var(--primary-color);
    z-index: 999 !important;
}

.top_phone_mail {
    padding: 0;
    margin: 0;
}

.top_phone_mail li {
    display: inline-block;
    color: var(--secondary-color);
    padding-right: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: all 0.3s ease-in;
}

.top_phone_mail li a i {
    color: var(--secondary-color);
    padding-right: 6px;
    transition: all 0.3s ease-in;
}

.top_phone_mail li:hover {
    transition: all 0.3s ease-in;
    color: var(--secondary-color);
}

.top_social {
    padding: 0;
    margin: 0;
}

.top_social li {
    display: inline-block;
    color: var(--secondary-color);
    padding: 0px 12px;
    transition: all 0.3s ease-in;
}

.top_social li :hover {
    color: var(--primary-color);
    transition: all 0.3s ease-in;
}


/* header */
.header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 99;
    background: #fafafa;
    padding: 0px 0;
}

.v-center {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    align-items: center;
}

.header .item-left {
    flex: 0 0 15%;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.logo a img {
    height: 90px;
}

.header .item-center {
    flex: 0 0 85%;
    text-align: center;
}

.header .item-right {
    flex: 0 0 15%;
    display: flex;
    justify-content: flex-end;
}

.header .item-right a {
    text-decoration: none;
    font-size: 16px;
    color: #555555;
    display: inline-block;
    margin-left: 10px;
    transition: color 0.3s ease;
}

.header .menu>ul>li {
    display: inline-block;
    line-height: 50px;
    margin: 0 5px;
}

.header .menu>ul>li>a {
    font-size: 16px;
    font-weight: 500;
    padding: 0 5px;
    letter-spacing: 0px;
    color: #000000;
    position: relative;
    text-transform: capitalize;
    transition: color 0.3s ease;
}

.header .menu>ul>li .sub-menu {
    position: absolute;
    z-index: 500;
    background-color: #ffffff;
    box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
    padding: 20px 30px;
    transition: all 0.5s ease;
    margin-top: 25px;
    opacity: 0;
    visibility: hidden;
}

@media(min-width: 992px) {
    .header .menu>ul>li.menu-item-has-children:hover .sub-menu {
        margin-top: 0;
        visibility: visible;
        opacity: 1;
    }
}

.header .menu>ul>li .sub-menu>ul>li {
    line-height: 1;
}

.header .menu>ul>li .sub-menu>ul>li>a {
    display: inline-block;
    padding: 10px 0;
    font-size: 15px;
    color: #555555;
    transition: color 0.3s ease;
    text-decoration: none;
    text-transform: capitalize;
}

.header .menu>ul>li .single-column-menu {
    min-width: 280px;
    max-width: 350px;
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li {
    line-height: 1;
    display: block;
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a {
    padding: 5px 0;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: #555555;
    transition: color 0.3s ease;
}

.header .menu>ul>li .sub-menu.mega-menu {
    /* left: 50%; */
    left: auto;
    transform: translateX(-50%);
}

.header .menu>ul>li .sub-menu.mega-menu-column-4 {
    max-width: 70%;
    /* width: 100%; */
    width: auto;
    display: flex;
    flex-wrap: wrap;
    padding: 15px 2.5px;
    border-radius: 10px;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item {
    flex: 0 0 100%;
    padding: 0 15px;
    text-align: left;
}

.grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    display: grid;
    padding: 0;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item .title {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 500;
    line-height: 1;
    padding: 20px 0 !important;
    text-align: center;
}

.list-item ul li a {
    line-height: 24px;
    padding: 5px 15px !important;
    margin: 2.5px 0;
    transition: all 0.3s ease-in;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center .title {
    text-align: center;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item img {
    max-width: 100%;
    width: 100%;
    vertical-align: middle;
    margin-top: 10px;
    height: 300px;
    object-fit: cover;
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a:hover,
.header .menu>ul>li .sub-menu>ul>li>a:hover,
.header .item-right a:hover {
    background: transparent;
    color: var(--highlight-color) !important;
    transition: all 0.3s ease-in;
}

.mobile-menu-head,
.mobile-menu-trigger {
    display: none;
}

/*responsive*/
@media(max-width: 991px) {

    .header .item-center {
        order: 3;
        flex: 0 0 100%;
    }

    .logo {
        justify-content: space-between;
        padding-left: 25px;
    }

    .header .item-left,
    .header .item-right {
        flex: auto;
    }

    .v-center {
        justify-content: space-between;
    }

    .header .mobile-menu-trigger {
        display: flex;
        height: 45px;
        width: 45px;
        margin-right: 15px;
        cursor: pointer;
        align-items: center;
        justify-content: center;
    }

    .header .mobile-menu-trigger span {
        display: block;
        height: 4px;
        background-color: #333333;
        width: 35px;
        position: relative;
    }

    .header .mobile-menu-trigger span:before,
    .header .mobile-menu-trigger span:after {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #333333;
    }

    .header .mobile-menu-trigger span:before {
        top: -10px;
    }

    .header .mobile-menu-trigger span:after {
        top: 10px;
    }

    .header .item-right {
        align-items: center;
    }

    .header .menu {
        position: fixed;
        width: 320px;
        background-color: #ffffff;
        left: 0;
        top: 0;
        height: 100%;
        overflow: hidden;
        transform: translate(-100%);
        transition: all 0.5s ease;
        z-index: 1099;
    }

    .header .menu.active {
        transform: translate(0%);
    }

    .header .menu>ul>li {
        line-height: 1;
        margin: 0;
        display: block;
        text-align: left;
    }

    .header .menu>ul>li>a {
        line-height: 50px;
        height: 50px;
        padding: 0 50px 0 15px;
        display: block;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .header .menu>ul>li>a i {
        position: absolute;
        height: 50px;
        width: 50px;
        top: 0;
        right: 0;
        text-align: center;
        line-height: 50px;
        transform: rotate(-90deg);
    }

    .header .menu .mobile-menu-head {
        display: flex;
        height: 50px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 501;
        position: sticky;
        background-color: #ffffff;
        top: 0;
    }

    .header .menu .mobile-menu-head .go-back {
        height: 50px;
        width: 50px;
        border-right: 1px solid rgba(0, 0, 0, 0.1);
        cursor: pointer;
        line-height: 50px;
        text-align: center;
        color: #000000;
        font-size: 16px;
        display: none;
    }

    .header .menu .mobile-menu-head.active .go-back {
        display: block;
    }

    .header .menu .mobile-menu-head .current-menu-title {
        font-size: 15px;
        font-weight: 500;
        color: #000000;
    }

    .header .menu .mobile-menu-head .mobile-menu-close {
        height: 50px;
        width: 50px;
        border-left: 1px solid rgba(0, 0, 0, 0.1);
        cursor: pointer;
        line-height: 50px;
        text-align: center;
        color: #000000;
        font-size: 25px;
    }

    .header .menu .menu-main {
        height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
        padding-left: 0 !important;
    }

    .header .menu>ul>li .sub-menu.mega-menu,
    .header .menu>ul>li .sub-menu {
        visibility: visible;
        opacity: 1;
        position: absolute;
        box-shadow: none;
        margin: 0;
        padding: 15px;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding-top: 65px;
        max-width: none;
        min-width: auto;
        display: none;
        transform: translateX(0%);
        overflow-y: auto;
    }

    .header .menu>ul>li .sub-menu.active {
        display: block;
    }

    @keyframes slideLeft {
        0% {
            opacity: 0;
            transform: translateX(100%);
        }

        100% {
            opacity: 1;
            transform: translateX(0%);
        }
    }

    @keyframes slideRight {
        0% {
            opacity: 1;
            transform: translateX(0%);
        }

        100% {
            opacity: 0;
            transform: translateX(100%);
        }
    }

    .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item img {
        margin-top: 0;
    }

    .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center .title {
        margin-bottom: 20px;
    }

    .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center:last-child .title {
        margin-bottom: 0px;
    }

    .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item {
        flex: 0 0 100%;
        padding: 0px;
    }

    .header .menu>ul>li .sub-menu>ul>li>a,
    .header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a {
        display: block;
    }

    .header .menu>ul>li .sub-menu.mega-menu>.list-item>ul {
        margin-bottom: 15px;
    }

    .menu-overlay {
        position: fixed;
        background-color: rgba(0, 0, 0, 0.5);
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 1098;
        visibility: hidden;
        opacity: 0;
        transition: all 0.5s ease;
    }

    .menu-overlay.active {
        visibility: visible;
        opacity: 1;
    }

    .grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        display: grid;
    }

}

.google_translate_element {
    text-align: left !important;
}

.goog-te-gadget {
    display: inline-block;
    font-size: 0 !important;
}

.goog-te-combo {
    display: block !important;
    /* padding: 2.5px; */
}

.translate_desktop {
    position: relative;
    top: 15px;
    text-align: left !important;
}

.nav_translate {
    line-height: inherit !important;
}


/* slider  */

.carousel-control.left {
    background-image: none !important;
}

.carousel-control.right {
    background-image: none !important;
}

.carousel-control {
    width: 5.5% !important;
    opacity: 1;
}

.carousel-control i {
    color: var(--primary-color);
    font-size: 30px;
    position: absolute;
    top: 45%;
}

.cc_left {
    right: 0 !important;
}

.cc_right {
    left: 0 !important;
}

.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next,
.carousel-control .icon-prev {
    color: var(--secondary-color);
    opacity: 1;
}

/* slider  */



/* banner  */

#banner {
    width: 97%;
    height: auto;
    padding: 60px 0;
    background: rgba(1, 92, 136, 0.25);
    /* background: rgba(6, 178, 190, 0.25); */
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    position: relative;
}

.banner_shape {
    width: 60%;
    right: 20px;
    top: 20%;
    position: absolute;
    z-index: -1 !important;
}

#b_shape {
    width: 100%;
    position: absolute;
    top: 0;
    right: 0px;
    z-index: -1 !important;
}

#banner img {
    margin-top: 30px;
    border-radius: 20px;
}

.banner_text {
    padding-top: 100px !important;
}

.banner_h {
    font-family: 'Rubik', sans-serif;
    color: var(--highlight-color);
    line-height: inherit;
    font-size: 46px;
    font-weight: 400;
    letter-spacing: -0.35px;
    z-index: 999 !important;
}

.banner_h span {
    font-family: 'Rubik', sans-serif;
    color: var(--primary-color);
    line-height: inherit;
    font-weight: 400;
}

.banner_p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 30px;
    letter-spacing: 0.15px;
    padding-top: 20px !important;
    color: var(--primary-color);
    font-weight: 400;
    z-index: 999 !important;
}

.banner_btn {
    margin-top: 30px;
    padding: 20px 30px;
    border: 1px solid var(--primary-color);
    background: transparent;
    border-radius: 50px;
    margin-right: 20px;
    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    transition: all 0.3s ease-in;
}

.consultation_btn {
    margin-top: 20px;
    padding: 15px 30px;
    border: 1px solid var(--primary-color);
    background: transparent;
    border-radius: 50px;
    margin-right: 20px;
    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    transition: all 0.3s ease-in;
}

.btn_primary {
    background: var(--primary-color);
    color: var(--secondary-color);
    transition: all 0.3s ease-in;
}

.btn_primary:hover {
    background: var(--highlight-color);
    border: 1px solid var(--highlight-color);
    transition: all 0.3s ease-in;
}

.btn_highlight {
    background: transparent;
    color: var(--primary-color);
    transition: all 0.3s ease-in;
}

.btn_highlight:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transition: all 0.3s ease-in;
}

/* banner  */

/* about */

#about {
    width: 100%;
    height: auto;
    padding: 80px 0;
    position: relative;
}

.sub_heading {
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 28px;
    line-height: inherit;
    color: var(--highlight-color);
}

.abt_sh {
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 28px;
    line-height: initial;
    color: var(--primary-color);
    padding-top: 15px !important;
}

.heading {
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 46px;
    color: var(--primary-color);
    text-transform: uppercase;
    line-height: initial;
}

.heading_box {
    position: relative;
}

#abt_h_shape {
    position: absolute;
    top: 20px;
    right: 0%;
    width: 150px;
}

.abt_p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 30px;
    letter-spacing: 0.15px;
    padding-top: 5px !important;
    color: var(--text-color);
    font-weight: 400;
}

.abt_btn {
    margin-top: 20px;
    padding: 15px 30px;
    border: none;
    background: transparent;
    border-radius: 50px;
    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    transition: all 0.3s ease-in;
    background: var(--primary-color);
    color: var(--secondary-color);
}

.abt_btn:hover {
    background: var(--highlight-color);
    transition: all 0.3s ease-in;
}

.abt_img {
    position: relative;
    width: 95%;
}

.abt_img::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 100px;
    background: var(--highlight-color);
    top: -25px;
    right: -25px;
    z-index: -1;
}

.mvv_box {
    margin-top: 40px;
    text-align: center;
}

.mvv_h {
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 28px;
    color: var(--primary-color);
    display: inline-block;
    border-top: 1px dashed var(--primary-color);
    border-bottom: 1px dashed var(--primary-color);
    padding: 2.5px 0 !important;
}

.mvv_h span {
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    color: var(--highlight-color);
}

/* about */

/* services  */

#services {
    width: 100%;
    height: auto;
    padding: 80px 0;
    background: var(--s_backgound-color);
}

.s_heading {
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    text-align: center;
    color: var(--primary-color);
    line-height: inherit;
}

.department_box {
    margin-top: 20px;
    position: relative;
    display: flex;
    align-items: center;
    vertical-align: middle;
    text-align: center;
    transition: all 0.3s ease-in;
}

.db_img {
    position: relative;
    width: 100%;
    height: auto;
    transform: scale(1);
    filter: blur(0px);
}

.db_text {
    width: 80%;
    height: auto;
    padding: 40px 20px;
    background: rgba(1, 92, 136, 0.85);
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
}

.db_text {
    display: none;
    transition: all 0.3s ease-in;
}

.department_box:hover .db_text {
    display: block;
    transition: all 0.3s ease-in;
}

.department_box:hover .db_img {
    transform: scale(1.03);
    filter: blur(2px);
    transition: all 0.3s ease-in;
}

.dbt_h {
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: inherit;
}

.bdt_p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0.15px;
    padding-top: 6px !important;
    color: var(--secondary-color);
    font-weight: 400;
}

.db_icon {
    width: 80px;
    height: 80px;
    border-radius: 50px;
    border: 3px solid var(--primary-color);
    overflow: hidden;
    margin: auto;
    position: relative;
    bottom: 50px;
    padding: 5px;
    background: var(--secondary-color);
}

.auto {
    margin: auto;
    display: block;
}

/* services  */


/* why us */

#why_us {
    width: 100%;
    height: auto;
    padding: 80px 0;
    background: var(--secondary-color);
}

.wu_box {
    margin-top: 25px;
    border: 2px solid var(--primary-color);
    padding: 25px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.wub_icon i {
    font-size: 32px;
    color: var(--primary-color);
}

.wubt_h {
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: var(--primary-color);
}

.wubt_p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.35px;
    font-weight: 400;
    padding-top: 5px !important;
    color: var(--text-color);
}

/* why us */

/* book appointment  */

#book_appointment {
    width: 100%;
    height: auto;
    padding: 80px 0;
    background: var(--s_backgound-color);
}

.appointment_box {
    width: 100%;
    height: auto;
    background: var(--secondary-color);
    border-radius: 15px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    padding: 60px 25px;
    padding-top: 40px;
}

.ab_h {
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 28px;
    text-align: center;
    color: var(--primary-color);
    margin-top: 40px !important;
}

.ba_input {
    padding: 10px;
    height: auto;
    line-height: auto;
    margin-top: 20px;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
}

.ba_input::placeholder {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
}

.ba_btn {
    margin-top: 20px;
    padding: 10px 35px;
    border: none;
    background: transparent;
    border-radius: 50px;
    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    transition: all 0.3s ease-in;
    background: var(--primary-color);
    color: var(--secondary-color);
}

.ba_btn:hover {
    background: var(--highlight-color);
    transition: all 0.3s ease-in;
}

/* book appointment  */

/* reviews  */

#reviews {
    width: 100%;
    height: auto;
    padding: 80px 0;
    background: var(--secondary-color);
}

.rating_box {
    margin-top: 40px;
}

#r_logo {
    width: 150px;
}

.rb_h {
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: inherit;
    color: var(--primary-color);
    padding-top: 10px !important;
}

#r_rating {
    width: 100px;
}

.rb_p {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    font-weight: 400;
    font-size: 18px;
    padding-top: 5px !important;
}

.testimonials_box {
    width: 100%;
    height: auto;
    position: relative;
    margin-top: 40px;
    padding: 20px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
}

.tb_name {
    display: flex;
    gap: 6px;
    align-items: center;
}

.tbn_h {
    width: 38px;
    height: 38px;
    background: var(--primary-color);
    color: var(--secondary-color);
    display: flex;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 22px;
}

.tbn_p {
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    color: var(--highlight-color);
    letter-spacing: -0.35px;
    font-size: 17px;
}

.tbc_p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: var(--p-color);
    letter-spacing: 0.15px;
    padding-top: 10px !important;
}

.tb_btn {
    margin-top: 15px;
    display: block;
    color: var(--highlight-color) !important;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 15px
}

.tb_btn i {
    font-size: 14px;
    position: relative;
    top: 1.5px;
}

#tb_img {
    padding-top: 10px;
}

/* reviews  */

/* our expert  */

#founders {
    width: 100%;
    height: auto;
    position: relative;
    background: url(../../images/shape-03.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: contain;
}

.founders_box {
    width: 95%;
    height: auto;
    background: rgba(1, 92, 136, 0.15);
    margin: auto;
    border-radius: 20px;
    padding: 120px 40px;
}

.our_expert_box {
    width: 95%;
    height: auto;
    background: transparent;
    margin: auto;
    border-radius: 20px;
    padding: 120px 40px;
}

.appointment {
    width: 95%;
    height: auto;
    background: rgba(6, 178, 190, 0.35);
    margin: auto;
    border-radius: 20px;
    padding: 120px 40px;
}

#oe_img_01 {
    border-radius: 25px;
}

#ft_img {
    border-radius: 25px;
    margin-top: 0px;
}

#oe_img_02 {
    border-radius: 25px;
    margin-top: 60px;
}

.orb_t_p {
    padding-top: 125px;
}

.mes_t_p {
    padding-top: 60px;
}


/* our expert  */

#our_expert {
    width: 100%;
    height: auto;
    padding: 0px 0;
    background: url(../../images/shape_02.png);
    background-repeat: no-repeat;
    background-position: right;
}

#appointment {
    width: 100%;
    height: auto;
}

#consultation {
    width: 100%;
    height: auto;
    padding: 80px 0;
    background: var(--secondary-color);
}

.consultation_h {
    font-family: 'Rubik', sans-serif;
    color: var(--primary-color);
    line-height: initial;
    font-size: 46px;
    font-weight: 400;
    letter-spacing: -0.35px;
    z-index: 999 !important;
}

.consultation_box {
    width: 100%;
    height: auto;
    padding: 60px 20px;
    background: rgba(1, 92, 136, 0.35);
    margin-top: 30px;
    border-radius: 20px;
}

.cb_h {
    font-family: 'Rubik', sans-serif;
    color: var(--primary-color);
    line-height: initial;
    font-weight: 400;
    font-size: 21px;
    letter-spacing: -0.35px;
}

.cb_p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: var(--text-color);
    letter-spacing: 0px;
    font-size: 16px;
    line-height: 28px;
    padding-top: 10px !important;
}

.cb_divider {
    width: 95%;
    height: auto;
    margin: auto;
    margin: 20px 0;
    height: 1px;
    background: var(--primary-color);
}

.cb_p i {
    color: var(--primary-color);
    font-size: 20px;
    padding-right: 5px;
    position: relative;
    top: 2.5px;
}

/* footer  */

#footer {
    width: 100%;
    height: auto;
    padding: 60px 0;
    background: var(--primary-color);
}

#footer_logo {
    height: 125px;
}

.footer_p {
    padding-top: 15px !important;
    line-height: 30px;
    font-family: 'Poppins', sans-serif;
    color: var(--secondary-color);
    font-weight: 400;
    letter-spacing: 0.15px;
}

.fb_h {
    font-family: 'Rubik', sans-serif;
    color: var(--secondary-color);
    line-height: initial;
    font-weight: 500;
    letter-spacing: 0px;
}

.footer_li {
    padding: 0;
    margin: o;
}

.footer_li li {
    list-style: none;
    padding-top: 10px;
    line-height: 28px;
    font-family: 'Poppins', sans-serif;
    color: var(--secondary-color);
    font-weight: 400;
    letter-spacing: 0.15px;
}

.footer_contact_social {
    padding: 0;
    margin: 0;
}

.footer_contact_social li {
    display: inline-block;
    width: 33px;
    height: 33px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50px;
    text-align: center;
    font-size: 18px;
    padding-top: 5px;
    margin-top: 15px;
    margin-right: 10px;
}

.copyrights {
    width: 100%;
    height: auto;
    padding: 15px 0;
    background: var(--highlight-color);
    text-align: center;
}

.footer_copy_p {
    line-height: 28px;
    font-family: 'Poppins', sans-serif;
    color: var(--secondary-color);
    font-weight: 400;
    letter-spacing: 0px;
}

/* footer  */


#bredcum_pages {
    width: 100%;
    height: auto;
    padding: 50px 0;
    padding-bottom: 0;
}

.bredcum_img {
    width: 100%;
    height: auto;
    background: var(--highlight-color);
    padding: 80px 0;
    border-radius: 15px;
    background-image: url(../../images/shape-03.png);
    background-position: right;
    background-repeat: no-repeat;
}

.bredcum_h {
    font-family: 'Rubik', sans-serif;
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 42px;
    letter-spacing: 1px;
    line-height: inherit;
}

.bredcum_sh {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 20px;
    padding-top: 5px !important;
    letter-spacing: 0px;
    line-height: inherit;
}

.inner_pages {
    width: 100%;
    height: auto;
    padding: 80px 0;
}

.pt-40 {
    padding-top: 40px !important;
}

.infra_box {
    margin-top: 40px;
    position: relative;
    padding: 40px 20px;
    height: 200px;
}

.infra_h {
    font-family: 'Rubik', sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: inherit;
    color: var(--text-color);
    text-align: center !important;
    padding-top: 5px !important;
}

.infra_box::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    background: rgba(1, 92, 136, 0.35);
    bottom: 0;
    left: 0;
    transition: all 0.3s ease;
}

.infra_box img {
    margin: auto;
}

.infra_box:hover.infra_box::after {
    height: 200px;
    transition: all 0.3s ease;
}

.lab_box {
    width: 100%;
    height: auto;
    padding: 40px 20px;
    background: var(--secondary-color);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    margin-top: 40px;
    /* min-height: 330px; */
}

.lb_h {
    font-family: 'Rubik', sans-serif;
    line-height: 30px;
    font-size: 24px;
    color: var(--primary-color);
    letter-spacing: 0.35px;
}

.lb_p {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 30px;
    font-weight: 400;
    padding-top: 10px !important;
}

.lb_btn {
    margin-top: 12px;
    padding: 10px 30px;
    border: none;
    background: transparent;
    border-radius: 50px;
    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    transition: all 0.3s ease-in;
    background: var(--primary-color);
    color: var(--secondary-color);
}

.lb_btn:hover {
    background: var(--highlight-color);
    transition: all 0.3s ease-in;
}


.flex {
    display: flex;
    overflow-x: hidden;
    justify-content: flex-end;
}

.contact_box {
    width: 100%;
    height: auto;
    padding: 80px 0px;
    background: rgba(6, 178, 190, 0.5);
    background-image: url(../../images/shape_02.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    justify-content: flex-end;
    position: relative;
    right: -100px;
}

.column_reverse {
    flex-direction: row;
    display: flex;
    align-items: center;
}

.contact_h {
    font-family: 'Rubik', sans-serif;
    font-size: 42px;
}

.contact_h {
    font-family: 'Rubik', sans-serif;
    color: var(--primary-color);
    line-height: initial;
    font-weight: 400;
    font-size: 46px;
    letter-spacing: 0.65px;
}

.contact_p {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    line-height: 30px;
    font-size: 16px;
    font-weight: 400;
    padding-top: 10px !important;
}

.contact_form {
    width: 100%;
    height: auto;
    background: var(--primary-color);
    padding: 40px 25px;
    border-radius: 20px;
    position: relative;
    right: 70px;
}

.cf_label {
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    color: var(--secondary-color);
    font-size: 16px;
}

.cf_input {
    padding: 15px;
    height: auto;
    border-radius: 0;
    border: none;
    margin-top: 5px;
    margin-bottom: 30px;
    font-size: 16px;
    font-family: 'Rubik', sans-serif;
    color: var(--text-color);
}

.cf_input::placeholder {
    color: var(--p-color);
    font-size: 16px;
    font-family: 'Rubik', sans-serif;
}

.cf_btn {
    padding: 15px 30px;
    border: none;
    background: transparent;
    border-radius: 50px;
    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    transition: all 0.3s ease-in;
    background: var(--highlight-color);
    color: var(--secondary-color);
}

.contact_sp {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    line-height: 30px;
    font-size: 15px;
    font-weight: 400;
    padding-top: 10px !important;
}

.contact_sh {
    padding-top: 15px !important;
    font-family: 'Rubik', sans-serif;
    color: var(--highlight-color);
    font-weight: 400;
    font-size: 21px;
}

.contact_ap {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    line-height: 30px;
    font-size: 16px;
    font-weight: 400;
    padding-top: 8px !important;
}

.c_shape {
    position: relative;
    background-image: url(../../images/shape-03.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
}

#c_img {
    border-radius: 20px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.banner_sh {
    padding-top: 20px !important;
    font-family: 'Rubik', sans-serif;
    color: var(--highlight-color);
    font-weight: 500;
}

.banner_sp {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    line-height: 30px;
    font-size: 18px;
    font-weight: 500;
    padding-top: 8px !important;
}

.fb_sh {
    font-family: 'Rubik', sans-serif;
    color: var(--secondary-color);
    font-size: 19px;
    font-weight: 400;
    padding-top: 20px !important;
    letter-spacing: 0.15px;
}

.fb_sh i {
    position: relative;
    right: 5px;
    color: var(--highlight-color);
}

.fb_cp {
    font-family: 'Poppins', sans-serif;
    color: var(--secondary-color);
    line-height: 28px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.35px;
    padding-top: 10px !important;
}

.fe_sh {
    font-family: "Tinos", serif;
    color: var(--primary-color);
    font-size: 30px;
    font-weight: 600;
    padding-top: 20px !important;
    letter-spacing: 0.35px;
}

.fe_sp {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--highlight-color);
    font-size: 17px;
    line-height: 30px;
    padding-top: 10px !important;
    letter-spacing: 0.15px;
}

.ft_li {
    padding: 0;
    margin: 0;
}

.ft_li li {
    list-style: none;
    padding-left: 5px;
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    font-size: 15px;
    line-height: 28px;
    padding-top: 8px;
    display: flex;
    align-items: center;
}

.ft_li li i {
    color: var(--primary-color);
    padding-right: 6px;
}

#ser_img {
    border-radius: 30px;
}

.ser_h {
    font-family: "Tinos", serif;
    font-weight: 600;
    padding-top: 30px !important;
    color: var(--primary-color);
}

.ser_p {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--p-color);
    line-height: 30px;
    padding-top: 10px !important;
    letter-spacing: 0px;
}

.ser_li {
    padding: 0;
    margin: 0;
}

.ser_li li {
    list-style: none;
    padding-top: 10px !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 28px;
    color: var(--text-color);
    letter-spacing: 0.15px;
    margin-left: 10px;
    display: flex;
    align-items: center;
}

.ser_li li i {
    position: relative;
    color: var(--primary-color);
    font-size: 18px;
    padding-right: 10px;
}

#arogyasri_img {
    margin-top: 30px;
}

.ser_sh {
    font-family: "Tinos", serif;
    font-weight: 600;
    padding-top: 10px !important;
    color: var(--primary-color);
    text-align: center;
    font-size: 21px;
    letter-spacing: 0.15px;
    line-height: inherit;
}

#os_b_img {
    margin: auto;
    border-radius: 30px;
    margin-top: -180px;
    width: 85%;
}

.pb-200 {
    padding-bottom: 200px !important;
}

.os_c_box {
    margin-top: 40px;
    text-align: center;
}

.oscb_h {
    font-family: "Tinos", serif;
    font-weight: 600;
    font-size: 54px;
    color: var(--primary-color);
}

.oscb_p {
    font-family: 'Poppins', sans-serif;
    padding-top: 5px !important;
    font-weight: 400;
    color: var(--primary-color);
    letter-spacing: 0.15px;
    font-size: 18px;
}

.oscb_h span {
    color: var(--highlight-color);
    font-family: "Tinos", serif;
    font-weight: bolder !important;
}

.os_h {
    font-family: "Tinos", serif;
    font-weight: 600;
    padding-top: 15px !important;
    color: var(--primary-color);
    line-height: inherit;
}

.inner_pages_two {
    width: 100%;
    height: auto;
    padding: 80px 0;
    background: rgba(1, 92, 136, 0.1);
}

.os_btn {
    margin-top: 20px;
    padding: 20px 30px;
    border: none;
    background: transparent;
    border-radius: 50px;
    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    transition: all 0.3s ease-in;
    background: var(--primary-color);
    color: var(--secondary-color);
    display: block;
    float: right;
    margin-top: 40px !important;
}

.os_box {
    margin-top: 40px;
    width: 100%;
    height: auto;
    padding: 40px 20px;
    background: var(--secondary-color);
    border-radius: 20px;
}

.osb_h {
    font-family: "Tinos", serif;
    font-weight: 600;
    color: var(--primary-color);
}

.osb_p {
    font-family: 'Poppins', sans-serif;
    padding-top: 10px !important;
    font-weight: 400;
    color: var(--p-color);
    letter-spacing: 0px;
}

.os_box img {
    width: 80px;
    margin-bottom: 20px;
}

.mt-25 {
    margin-top: 0px;
}

.mt-50 {
    margin-top: -40px;
}

.os_appointment {
    padding: 80px 0;
    background: url(../../images/banner_shape.png);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: contain;
}

.bg_h {
    background: var(--s_backgound-color);
}

#abt_image_animation_1 {
    max-width: 100%;
    height: auto;
    position: absolute;
    left: 50%;
    top: 60%;
    z-index: -1;
    opacity: 0.15;
    animation: moveHorizontal2 2s linear infinite;
}

@keyframes moveHorizontal2 {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    50% {
        -webkit-transform: translate3d(-13px, 0, 0);
        transform: translate3d(-13px, 0, 0);
    }

    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

#abt_image_animation_2 {
    max-width: 100%;
    height: auto;
    position: absolute;
    right: 95%;
    bottom: 30%;
    z-index: -1;
    opacity: 0.25;
    animation: zump 2s linear infinite;
}

@keyframes zump {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    50% {
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }

    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

.wia_box{
    position: relative;
}
#why_image_animation_1 {
    max-width: 100%;
    height: auto;
    position: absolute;
    right: 105%;
    top: 30%;
    opacity: 1;
    animation: shapeMover 2s linear infinite;
}
@keyframes shapeMover {
    0%, 100% {
      transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
    }
    50% {
      transform: perspective(400px) rotate(-45deg) translateZ(20px) translateY(20px) translateX(20px);
    }
  }

  .c_p{
    color: var(--primary-color) !important;
  }

  #map{
    margin-top: 40px;
  }