@import url('https://fonts.googleapis.com/css2?family=Golos+Text:wght@400;500;600;700;800;900&display=swap');


:root {
    --font-golos: 'Golos Text', sans-serif;
    --color-blue: #03806E;
    --color-org: #425159;
    --color-black: #0D1318;
    --color-highlight: #D5FE43;
    --color-white: white;
}

* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    font-family: var(--font-golos);
}

a,
li {
    list-style: none;
    text-decoration: none;
}

h1,
h3,
h4,
h5,
h6 {
    margin: 0px;
    padding: 0px;
}

p {
    margin: 0px;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
    margin: 0px;
    padding: 0px;
}

.container,
.container-fluid {
    /* margin: 0px; */
    padding: 0px;
}

img {
    width: 100%;
    /* height: 100%; */
}

.row,
ul {
    margin: 0px;
    padding: 0px;
}

.flex_prop {
    display: flex;
    align-items: center;
}

.relative {
    position: relative;
}

.bg_img_common {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.white {
    color: var(--color-white);
}

.margin_top {
    margin-top: 40px;
}

.br-5 {
    border-radius: 5px;
}

/*Header*/
.navbar_cust {
    width: 100%;
    border-bottom: 12px solid rgba(0, 0, 0, 0.1);
    background: linear-gradient(white, white) padding-box, linear-gradient(90deg, #425159 1.82%, #00806e 98.91%) border-box;
}

.contact_num_sub a {
    gap: 8px;
    color: var(--color-white);
}

.flats_img {
    height: 20px;
    width: auto;
}

.flats_img img {
    height: 100%;
    object-fit: cover;
}

.contact_num_sub {
    gap: 25px;
}

.sub_header_links {
    gap: 15px;
}

.sub_header_links a {
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
    padding: 6px 15px;
    display: inline-flex;
    align-items: center;
    border-radius: 50px;
    background-color: var(--color-blue);
    font-size: 14px;
    color: var(--color-white);
}

.sub_menu {
    position: absolute;
    top: 70px;
    background-color: #fff;
    padding: 0;
    border-radius: 3px;
    z-index: 1;
    width: 90%;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .2);
}

.sub_menu_multi {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 20px;
    left: 0px;
    top: 45px;
    width: 100%;
}

.sub_menu {
    display: none;
}

.sub_links:hover .sub_menu_multi {
    display: grid;
}


.links_full {
    position: initial;
}

.sub_menu_multi ul {
    width: 100%;
}

.sub_menu ul li:nth-child(1) {
    border: none !important;
}

.sub_menu ul li {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.sub_menu ul li a {
    color: var(--color-black);
    padding: 5px 0px;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}


.title_sub {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 6px;
}

.sub_menu_multi ul li a {
    font-size: 14px;
}

/*Nav*/

.sub_header {
    background-color: var(--color-org);
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    z-index: 99;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav_logo img {
    height: 60px;
    width: auto;
}

.nav_links_ul ul {
    gap: 15px;
}

.line_cust {
    height: 1px;
    width: 10px;
    background-color: var(--color-black);
}

.nav_links_ul ul li a {
    color: var(--color-black);
    cursor: pointer;
    font-weight: 500;
}

.nav_btns a {
    background: linear-gradient(to right, #03806e, #005a4d);
    color: var(--color-white);
    padding: 12px 30px;
    border-radius: 50px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
}

.commmon_title {
    font-size: 40px;
    font-family: var(--font-oswald);
    font-weight: 300;
    color: #000;
}

.title_cont {
    line-height: 0px;
}

.line_title {
    width: 100px;
    height: 2px;
    background-color: var(--color-blue);
    display: inline-flex;
    position: relative;
    border-radius: 50%;
}

.line_title::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-blue);
}

.font_14 {
    font-size: 14px;
}

.bg_common {
    background-color: #f3fffd;
    z-index: 1;
}

.hero_banner_common {
    height: 350px;
}

.banner_title2_b {
    font-family: var(--font-oswald);
    font-size: 40px;
}

/*footer*/
footer {
    height: 100%;
    width: 100%;
    background-color: var(--color-black);
}

.footer_cont_1 {
    gap: 30px;
}

.footer_cont_1 a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.1);
    padding: 14px 30px;
    width: 320px;
    border-radius: 3px;
}

.footer_cont1_icon img {
    height: 40px;
    width: auto;
}

.footer_logo img {
    height: 80px;
    width: auto;
}

.social_links {
    gap: 10px;
}

.social_links a {
    height: 40px;
    width: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to left, #03806e,
            #005a4d);
    color: var(--color-white);
    border-radius: 50%;
}

.footer_ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer_ul li a {
    color: #000;
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 15px;
}

.color_org {
    background-color: var(--color-org);
    padding: 4px;
}

.hr_footer {
    border-color: #005e51;
    margin: 15px 0px;
    opacity: 0.6;
}

.footer_title {
    font-size: 24px;
}

.common_padding {
    padding: 0px 15px;
}

.nav_header {
    display: none;
}

.menu_icon {
    display: none;
}

.about_ul {
    padding-left: 25px;
}

.about_ul li {
    list-style: disc;

}

.content_m_p p {
    margin-top: 0.75rem;
}

.content_m_p h3 {
    margin-top: 0.75rem;
}

.content_m_p h1 {
    margin-top: 0.75rem;
}

.content_m_p ul {
    margin-top: 0.75rem;
}

.mail_link {
    color: #000;
}
.main_text_footer{
   color: #000; 
   font-size: 15px;
}
.mail_link i {
    width: 30px;
    height: 30px;
    background-color: var(--color-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
}


.site-footer {
        position: relative;
    z-index: 9;
    background: url(../imgs/map.png) no-repeat;
    font-weight: 500;
    background-position: center;
    border-top: 12px solid rgb(0 94 81);
    color: #000;
}
.site-footer:after {
      content: '';
    background: #effffca1;
    position: absolute;
    left: 0;
    height: 100%;
    top: 0;
    width: 100%;
    z-index: -1;
}
.footer_title .color_org{
color: #fff;
}
.footer_title {
       font-size: 22px;
    color: #000;
    position: relative;
    text-transform: uppercase;
}
.footer_title:after {
       position: absolute;
    content: '';
    width: 40px;
    height: 4px;
    background: #005b4e;
    bottom: -5px;
    left: 0;
}
/* ==================header===================== */ 
.container-header{
    padding: 0 4.2rem;
}
.header_main_com{
    position: sticky;
    top: 0;
    z-index: 999;
}
.nav_links_ul ul li a:hover{
font-weight: 600;
}
.sub-menu {
    display: none !important;
  }

  .sub_menu.show {
    display: block !important;
  }
  .main_why_padd{
    padding: 50px;
  }
  .main_why_section h5{
    font-size: 16px;
    color: #007c6b;
    padding: 10px 0 20px;
  }
 
  .main_drop_why{
display: flex;
gap: 100px;
  }
  .main_bg_header {
padding: 0;
  }
  .main_bg_header img{ 
    min-height: 450px;
    max-height: 450px;
    object-fit: cover;
  }
  .main_why_img_bg {
    height: 360px;
    position: relative;
}
.main_why_img_bg h4{
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 0);
    white-space: nowrap;
    color: #fff;
    font-size: 1.5rem;
}
.main_why_img_bg img{
   width: 100%;
   height: 100%;
}
.nav_links_ul ul li a i{
    display: none;
}
.digital_main_faq .accordion-item{
    margin: 8px 0;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #77a39d !important;
}
.main_header_insights{
    position: relative;
}
.main_header_insights .sub_menu{
    width: 250px;
    padding: 10px;
    top: 60px;
}
.main_header_insights .sub_menu ul li {
    border-top: 1px rgb(0 115 99) dashed;
}
/* ===================header======================= */

/* ===============healthcare==================== */

.health_banner{
    background: url(../imgs/health/ban1.webp);
        min-height: 450px;
    background-size: cover;
}
.main_height_img{
       max-height: 330px;
    object-fit: cover;
}

.hel_height{
min-height: 185px;
}


/* ==============healthcare===================== */
@media screen and (max-width: 1200px) {
    .nav_links_ul ul {
        gap: 10px;
    }

    .line_cust {
        width: 15px;
    }
}

@media screen and (max-width: 1024px) {
    .nav_logo img {
        height: 50px;
    }

    .nav_btns a {
        padding: 10px 20px;
    }
    .main_why_padd {
        padding: 10px;
    }
    .main_drop_why {
        gap: 40px;
    }
    .container-header {
        padding: 0 15px;
    }
}

@media screen and (max-width: 992px) {
    .main_drop_com ul li a {
        justify-content: left !important;
    }
    .nav_links_ul {
        position: fixed;
        left: 0px;
        top: 0px;
        background-color: rgba(0, 0, 0, 0.3);
        width: 100%;
        height: 100%;
        z-index: 999 !important;
        visibility: hidden;
        opacity: 0;
        transition: 0.3s;
    }

    .sub_menu {
        position: initial;
        border-radius: 3px;
        padding: 0;
        width: 100%;
        margin-top: 10px;
    }
    .main_bg_header img {
        min-height: unset;
        max-height: unset;
        margin-top: 10px;
    }
    .main_why_section h5 {
        padding: 7px 0 10px;
    }
.main_drop_why {
    display: flex;
    align-items: unset;
    gap: 0;
    flex-direction: column;
}
    .main_why_padd {
        padding: 0;
    }
    .sub_menu ul {
        background-color: transparent !important;
        width: 100% !important;
        padding: 0px !important;
    }

    .sub_links {
        width: 100%;
    }

    .sub_menu ul li {
        width: 100%;
    }

    .nav_links_ul_active {
        visibility: visible;
        opacity: 1;
    }

    .nav_links_ul ul {
        background-color: var(--color-white);
        flex-direction: column;
        align-items: flex-start;
        height: 100%;
        width: 40%;
        padding: 10px;

    }

    .line_cust {
        width: 100%;
        opacity: 0.5;
    }

    .nav_links_ul ul {
        gap: 10px;
        overflow-x: scroll;
    }

    .nav_header_img img {
        height: 50px;
        width: auto;
    }

    .close_icon {
        gap: 3px;
    }

    .nav_header {
        justify-content: space-between;
        width: 100%;
        display: flex
    }

    .margin_top {
        margin-top: 60px;
    }




    .commmon_title {
        font-size: 30px;
    }

    .footer_title {
        font-size: 20px;
    }

    .footer_logo img {
        height: 70px;
    }

    .nav_btns {
        gap: 10px;
    }

    .menu_icon span {
        line-height: initial;
    }

    .menu_icon {
        display: flex;
        background-color: var(--color-blue);
        color: var(--color-white);
        width: 35px;
        height: 35px;
        justify-content: center;
        border-radius: 3px;
        box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    }

    .nav_btns a {
        border-radius: 3px;
    }
    .nav_links_ul ul li .menu-toggle{
        display: flex ;
                justify-content: space-between;
                align-items: center;
    }
    .nav_links_ul ul li a i{
        display: block;
    }
    .main_why_img_bg {
        height: 260px;
        position: relative;
        width: 100%;
    }
   .potcast_grid {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: space-around;
    }
   .main_box .potcast_container {
    width: 48%;
    }
}

@media screen and (max-width: 768px) {

    p,
    li,
    a {
        font-size: 14px;
    }

    .margin_top {
        margin-top: 50px;
    }

    .footer_logo img {
        height: 60px;
    }

    .hr_footer {
        margin: 10px 0px;
    }
}

@media screen and (max-width: 568px) {

    p,
    li,
    a {
        font-size: 13px;
    }

    .margin_top {
        margin-top: 30px;
    }

    .commmon_title {
        font-size: 25px;
        font-weight: 400;
    }

    .nav_links_ul ul {
        width: 100%;
    }

    .common_padding {
        padding: 0px 12px;
    }

    .service_content .font_14 {
        font-size: 13px;
    }

    .footer_logo img {
        height: 50px;
    }

    .social_links a {
        width: 32px;
        height: 32px;
    }

    .contact_num_sub {
        gap: 15px;
    }

    .sub_header_links {
        display: none;
    }

    .nav_logo img {
        height: 45px;
    }



    .nav_btns a {
        font-size: 12px;
        padding: 8px 12px;
    }

    .menu_icon {
        width: 30px;
        height: 30px;
    }

    .menu_icon span {
        font-size: 20px;
    }

    .res_hide {
        display: none;
    }

    .hero_banner_common {
        min-height: 250px !important;
    height: 250px;
    }

    .banner_title2_b {
        font-size: 28px;
    }

    .footer_ul li a {
        font-size: 13px;
    }

    .footer_title {
        font-size: 18px;
    }

    .footer_ul {
        gap: 6px;
    }

    .social_links {
        gap: 7px;
    }
   .main_box .potcast_container {
    width: 100%;
    }
}

@media screen and (max-width: 375px) {
    .nav_logo img {
        height: 40px;
    }
}