@import url('https://fonts.googleapis.com/css2?family=Anta&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');*,
*::before,
*::after {
    font-family: "Inter", serif;    
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
a {
    color: inherit;
    text-decoration: none;
}
button{
    cursor: pointer;
    background-color: transparent;
    border: none;
    outline: none;
}
img {
    max-width: 100%;
}
.anta{
    font-family: "Anta", serif;
}
.dn{
    display: none;
}
.container{
    width: 100%;
    max-width: 1340px;
    padding: 0 20px;
    margin: 0 auto;
    height: 100%;
}

/* header */
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}
.dark_header,
.header_scrolled{
    background-color: #132f2dbe;
    backdrop-filter: blur(5px);
}
.header_scrolled .header_wrapper{
    height: 80px;
}
.header_scrolled .header_logo img{
    width: 150px;
}
.header_wrapper{
    height: 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all .3s;
}
.header_logo a{
    width: 100%;
    display: flex;
    align-items: center;
}
.header_logo img{
    transition: all .2s;
    max-width: 250px;
    width: 100%;
    display: block;
}
.header_right{
    display: flex;
    align-items: center;
    gap: 40px;
}
.header_menu_list{
    display: flex;
    align-items: center;
    gap: 40px;
}
.header_menu_link{
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}
.header_menu_link:hover{
    text-decoration: underline;
}
.header_btns{
    display: flex;
    align-items: center;
    gap: 20px;
}
.header_btn{
    padding: 10px 20px;
    background-color: #fff;
    border: 1px solid #fff;
    color: #132F2D;
    transition: background-color 0.3s ease;
}
.header_btn:hover{
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}
.burger{
    display: none;
}
.burger svg{
    color: #fff;
    width: 40px;
    height: 40px;
}

/* hero */
.hero{
    padding-top: 150px;
    background: linear-gradient(180deg, #183938, #132F2D);
    height: 100vh;
}
.hero_wrapper{
    display: flex;
    height: 100%;
    gap: 100px;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 40px;
}
.hero_img_box,
.hero_text_box{
    height: 100%;
}
.hero_img_box{
    width:750px;
    display: flex;
    align-items: center;
    /* justify-content: center; */
}
.hero_img {
    height: 100%;
    object-fit: contain;
}
.hero_text_box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 590px;
}
.hero_title{
    font-size: 45px;
    line-height: 46px;
    font-weight: 400;
    color: #fff;
    max-width: 483px;
    margin-bottom: 26px;
}
.hero_text{
    font-size: 20px;
    line-height: 30px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 30px;
}
.hero_list{
    display: flex;
    flex-direction: column;
    gap:5px;
    margin-bottom: 30px;
}
.hero_list p{
    color: #fff;
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
    transition: .2s ease-in-out;
}
.hero_list p:hover{
    transform: translateX(5px);
}
.hero_btn{
    background-color: #fff;
    color: #132f2d;
    font-size: 18px;
    line-height: 1;
    padding: 10px 20px;
    border: 1px solid #fff;
    transition: .2s ease-in-out;
}
.hero_btn:hover{
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

/* contact */
.contact{
    background: url(../img/contact.jpg);
    background-size: cover;
    background-position: top center;
    padding: 100px 0px;
}
.contact_wrapper{
    display: flex;
    gap: 90px;
}
.contact_l,
.contact_r{
    flex: 1;
}
.contact_l{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact_form{
    background: rgb(255, 255, 255, .8);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:20px;
    border-radius: 60px;
    padding: 50px 60px;
}
.contact_form_item{
    height: 70px;
    width: 100%;
    color: #000;
    font-size: 24px;
    border-radius: 40px;
    background: rgb(255, 255, 255, 0.9);
    border: none;
    outline: none;
    padding: 10px 30px;
}
.contact_form_textarea{
    width: 100%;
    padding: 30px 30px;
    color: #000;
    font-size: 24px;
    border-radius: 40px;
    background: rgb(255, 255, 255, 0.9);
    border: none;
    outline: none;
    height: 200px;
    resize: none;
}
.contact_form_row{
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}
.contact_form_row p{
    font-size: 20px;
    color:#000;
    font-size: 200;
}
.contact_form_row p a{
    text-decoration: underline;

}
.contact_form_btn{
    background: #132F2D;
    color: #fff;
    font-size: 24px;
    padding: 10px 26px;
    margin-top: 20px;
    border: 1px solid #132F2D;
    transition: .2s ease-in-out;
}
.contact_form h2{
    font-family: "Anta", serif;
    font-weight: 400;
    font-size: 32px;
}
.contact_form_btn:hover{
    border: 1px solid #132F2D;
    color: #132F2D;
    background-color: transparent;
}
.contact_r{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.contact_r_row{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact_item{
    height: 70px;
    background: rgb(203, 203, 203, 0.3);
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 30px;
    font-family: "Anta", serif;
    font-size: 24px;
    color: #fff;
    line-height: 1;
    transition: .2s ease-in-out;
}
.contact_item:hover{
    background-color: #13302D;
}
.contact_item img{
    height: 70px;
    width: 70px;
    display: block;
}
.contact_location{
    height: 70px;
    background: rgb(203, 203, 203, 0.3);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    color: #fff;
    font-family: "Anta", serif;
    font-size: 20px;
    transition: .2s ease-in-out;
}
.contact_location:hover{
    background-color: #13302D;
}
.contact_location_title{
    background-color: #D9D9D9;
    color: #000;
    transition: none;
    font-size: 24px;
}
.contact_location_title:hover{
    background-color: #D9D9D9;
    color: #000;
}

/* flexible */
.flexible{
    margin-top: 170px;
    margin-bottom: 170px;
}
.flexible_wrapper{
    display: flex;
    flex-direction: column;
    gap:155px;
}
.flexible_title{
    text-align: center;
    font-size: 32px;
    font-weight: 400;
    font-family: "Anta", serif;
}
.flexible_box{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    row-gap: 90px;
}
.flexible_item{
    padding: 120px 20px 40px 20px;
    display: flex;
    flex-direction: column;
    align-content: center;
    gap: 30px;
    border-radius: 10px;
    border: 1px solid #CBCBCB;
    position: relative;
}
.flexible_item_title{
    text-align: center;
    font-size: 24px;
    font-family: "Anta", serif;
}
.flexible_item p{
    font-size: 16px;
    line-height: 22px;
    font-weight: 300;
    text-align: center;
}
.flexible_item img{
    width: 180px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top:-90px;
}

/* medical */
.medical{
    padding-top: 100px;
}
.medical_wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.medical_box{
    display: flex;
    gap: 100px;
    /* align-items: center; */
}
.medical_l,
.medical_r{
    flex: 1;
}
.medical_box_1{
    margin-top: 80px;
    margin-bottom: 53px;
}
.medical_title{
    text-align: center;
    font-size: 32px;
    font-family: "Anta", serif;
    font-weight: 400;
}
.medical_l{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.medical_block{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.medical_block_title{
    font-size: 24px;
    font-weight: 600;
}
.medical_block p{
    font-size: 24px;
    line-height: 30px;
    font-weight: 300;
}
.medical img{
    width: 100%;
}
/* numbers */
.numbers{
    margin-top: 100px;
    padding: 90px 0px;
    background: linear-gradient(90deg, #132F2D, #183938);
}
.numbers_big{
    font-size: 48px;
    line-height: 52px;
    font-weight: 400;
    color:#fff;
    font-family: "Anta", serif;
}
.numbers_small{
    font-size: 32px;
    color:#fff;
    font-family: "Anta", serif;
}
.numbers_item{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.numbers_wrapper{
    display: flex;
    justify-content: space-between;
}
.worldwide{
    margin-top: 100px;
    background: url(../img/r0.jpg);
    background-position: top center;
    background-size: cover;
    padding: 60px 0px 90px 50px;
}
.worldwide_wrapper{
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.worldwide_title{
    text-align: center;
    font-size: 32px;
    font-family: "Anta", serif;
    color: #fff;
    font-weight: 400;
}
.worldwide_item{
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    border: 1px solid #CBCBCB;
    border-radius: 10px;
    padding: 28px;
    padding-left: 70px;
}
.worldwide_item_title{
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}
.worldwide_item_text{
    font-size: 16px;
    color: #fff;
    line-height: 23px;
}
.worldwide_img{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -55px;
    width: 110px;
    height: 110px;
}
.worldwide_box{
    display: grid;
    gap: 80px;
    row-gap: 50px   ;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* footer */
.footer{    
    background-color: #132f2d;
}
.footer_wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    padding: 20px;
}
.logo_row{
    display: flex;
    justify-content: center;
}
.footer_logo_img{
    display: block;
    max-width: 200px;
    width: 100%;
}
.footer_nav{
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    width: 100%;
}
.footer_link{
    font-size: 16px;
    line-height: 1.5;
    font-weight: 300;
    color: #fff;
    transition: .2s ease-in-out;
}
.footer_link:hover{
    text-decoration: underline;
}
.footer_row p{
    font-size: 16px;
    line-height: 1.5;
    font-weight: 300;
    color: #fff;
}

/* mobile_menu */
.mobile_menu{
    position: relative;
    width: 100%;
    height: 100vh;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 9999;
    position: fixed;
    top:0;
    left: 0;
    background:linear-gradient(90deg, #183938, #132F2D);
}
.mobile_menu.mobile_menu_show{
    display: flex;
}
.mobile_menu_closer{
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    cursor: pointer;   
    color: #fff; 
}
.mobile_menu_closer img{
    display: block;
    width: 30px;
    height: 30px;
}
.mobile_menu_link{
    font-size: 28px;
    text-transform: uppercase;
    font-family: "Anta", serif;
    color: #fff;
}
.mobile_menu_logo{
    position: absolute;
    top: 0px;
    left: 20px;
    max-width: 165px;
    width: 100%;
    margin-bottom: 50px;
}
/* media */
@media (max-width:1350px) {
    .flexible_wrapper{
        gap: 120px;
    }
    .flexible{
        margin-top: 140px;
        margin-bottom: 140px;
    }
    .hero_wrapper{
        gap: 30px;
    }
    .hero_title{
        font-size: 47px;
        line-height: 53px;
    }
}
@media (max-width:1250px) {
    .hero_wrapper{
        gap: 30px;
        padding-bottom: 50px;
    }
    .flexible_item img {
        width: 150px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: -75px;
    }
    .flexible_item {
        padding: 98px 20px 40px 20px;
        gap: 20px;
    }
    .flexible{
        margin-top: 100px;
        margin-bottom: 100px;
    }
}
@media (max-width:1200px) {
    .contact_form_item{
        height: 60px;
        font-size: 20px;
        padding:10px 25px;
    }
    .worldwide_title,
    .flexible_title,
    .medical_title{
        font-size: 30px;
    }
    .medical_box_1{
        margin-top: 50px;
        margin-bottom: 40px;
    }
    .medical{
        padding-top: 70px;
    }
    .medical_block p {
        font-size: 20px;
        line-height: 28px;
    }
    .medical_block_title {
        font-size: 22px;
        font-weight: 600;
    }
    .medical_block{
        gap:20px;
    }
    .medical_box{
        gap: 70px;
    }
    .contact_form{
        padding: 40px;
    }
    .contact_item{
        height: 60px;
    }
    .contact_item img {
        height: 60px;
        width: 60px;
    }
    .contact_location{
        height: 60px;
    }
}
@media (max-width:1150px) {
    .contact_wrapper{
        gap:50px;
    }
    .worldwide_img{
        left: -48px;
        width: 96px;
        height: 96px;
    }
    .hero_title{
        font-size: 42px;
        line-height: 45px;
    }
    .hero_text{
        font-size: 18px;
        line-height: 28px;
    }
    .hero_img_box,
    .hero_text_box{
        flex: 1;
        max-width: unset;
    }
    .numbers_small{
        font-size: 25px;
    }
    .numbers_big {
        font-size: 41px;
        line-height: 41px;
    }
    .contact_location{
        font-size: 18px;
    }
    .contact_location.contact_location_title{
        font-size: 20px;
    }
}
@media (max-width:1020px) {
    .contact_form_textarea,
    .contact_form_item{
        font-size: 18px;
    }
    .contact_form_textarea{
        height: 150px;
    }
    .hero_wrapper{
        padding-bottom: 50px;
    }
    .hero_title{
        font-size: 38px;
        margin-bottom: 20px;
    }
    .hero_text{
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 20px;
    }
}
@media (max-width:980px) {
    .contact_form h2{
        font-size: 28px;
    }
    .contact_form{
        padding: 40px 30px;
    }
    .contact_location{
        line-height: 1;
        text-align: center;
        padding: 10px 20px;
    }
    .hero{
        height: auto;
        /* min-height: 100vh; */
        padding-bottom:50px;
    }
    .hero_img_box{
        display: none;
    }
}
.contact_r_title{
    display: none;
}
@media (max-width:925px) {
    .footer_nav{
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        align-items: flex-end;
    }
    .flexible_title,
    .worldwide_title,
    .medical_title{
        font-size: 28px;
        line-height: 1.4;
        text-align: center;
    }
    .medical_block p {
        font-size: 16px;
        line-height: 25px;
    }
    .medical_box{
        gap:50px;
    }
    .contact_wrapper{
        flex-direction: column-reverse;
        gap: 80px;
    }
    .contact_r{
        gap: 80px;
    }
    .contact_r_title{
        display:flex;
        justify-content: center;
        font-size: 28px;
        color: #fff;
        font-family: "Anta", serif;
        font-weight: 400;
        text-transform: uppercase;
        margin-bottom: 25px;
    }
    .contact{
        padding: 70px 0px;
    }
}
@media (max-width:850px) {
    .header_menu{
        display: none;
    }
    .burger{
        display: flex;
    }
    .hero{
        padding-top: 120px;
    }
    .header_wrapper{
        height: 120px;
    }
}
@media (max-width:780px) {

    .medical_box_1.reverse{
        flex-direction: column-reverse;
        margin-bottom: 40px;
    }
    .worldwide_title{
        margin-left: -48px;
    }
    .medical_box{
        flex-direction: column;
    }
    .medical_l{
        gap: 20px;
    }

    .medical_box_1{
        margin-top: 40px;
        margin-bottom: 30px;
    }
    .numbers_wrapper{
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }
}
@media (max-width:700px) {
    .flexible_wrapper {
        gap: 96px;
    }
    .footer_wrapper{
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    .footer_nav{
        flex-direction: row;
        gap: 20px;
    }
    .logo_row{
        /* order 1 */
        order: 1;
    }
    .footer_copy{
        /* order 2 */
        order: 3;
    }
    .footer_nav_row{
        /* order 3 */
        order: 2;
    }
}
@media (max-width:600px) {
    .worldwide{
        padding-left: 40px;
    }
    .hero_title{
        font-size: 30px;
        line-height: 36px;
        margin-bottom: 15px;
    }
    .hero_wrapper{
        padding-top: 50px;
        gap: 20px;
        align-items: center;
        padding-bottom:50px;
    }
    .hero{
        padding-top: 80px;
    }
    .header_wrapper{
        height: 80px;
    }
    .hero_list p{
        font-size: 13px;
        line-height: 26px;
    }
    .header_logo img{
        max-width: 165px;
    }
}
@media (max-width:500px) {
    .footer_wrapper{
        padding: 20px 20px 40px 20px;
    }
    .header_wrapper{
        align-items: unset;
    }
    .flexible_title,
    .worldwide_title,
    .medical_title{
        font-size: 24px;
    }
    .medical_block{
        padding: 0px 0px;
    }
    .worldwide_item_title{
        font-size: 18px;
    }
    .contact_location{
        height: auto;
        line-height: 1.2;
        padding: 16px 20px;
    }

    .worldwide_item{
        padding: 23px;
        padding-left: 64px;
    }
    .worldwide_img {
        left: -40px;
        width: 80px;
        height: 80px;
    }
    .worldwide_wrapper{
        gap: 40px;
    }
    .contact_form_item{
        padding: 10px 20px;
    }
    .contact_form_textarea{
        border-radius: 23px;
        padding: 18px 20px;
    }
    .contact_location{
        height: 70px;
    }
    .worldwide_box{
        row-gap: 32px;
    }
}