@import "fonts.css";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-size: 16px;
    font-family: 'SFProDisplay-Regular', Helvetica, sans-serif;
}
.wrapper {
    padding: 0 20px;
    margin: 0 auto;
    max-width: 1200px;
  }
h1 {
    font-size: 32px;
    color: #FF8200;
    font-weight: 400;
}
h2 {
    font-size: 22px;
    color: #fff;
    font-weight: 400;
}
h3 {
    font-size: 20px;
    color: #FF8200;
    font-weight: 400;
}
p {
    font-size: 16px;
    color: #53565A;
}

header {
    background: #53565A;
}
.header_container {
    display: flex;
    flex-direction: column;
}
.header_container_logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}
.header_container_logo img {
    width: auto;
    height: 40px;
}
.header_container_colors {
    display: flex;
    height: 5px;
}
.header_container_colors_item {
    flex: 1;
}
.grey {
    background: #8A8E93;
}
.green {
    background: #C4D600;
}
.blue {
    background: #74D1EA;
}
.pink {
    background: #BB29BB;
}
.seablue {
    background: #10069F;
}
.orange {
    background: #FF8100;
}
.header_container_menu {
    display: flex;
}
.header_container_menu_item {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 6px;
}
.header_container_menu_item img{
    width: auto;
    height: 16px;
}
.header_container_menu_item a {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: SFProDisplay-Light;
}
.header_container_menu_item.active {
    background-color: #EAEAEB;
}
.header_container_menu_item.active a {
    color: #FF8200;
}

footer {
    background: #EAEAEB;
    padding: 30px 0;
    padding-bottom: 0;
}
.footer_container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer_container_logo img{
    width: auto;
    height: 40px;
}
.footer_container_enlaces {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: SFProDisplay-Light;
}
.footer_container_enlaces a {
    color: #53565A;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    font-weight: 500;
}
.footer_container_salud {
    display: flex;
    align-items: baseline;
    gap: 2px;
    font-family: SFProDisplay-Light;
}
.footer_container_salud strong {
    font-family: SFProDisplay-SemiBold;
}
.footer_container_salud p{
    color: #53565A;
    font-size: 14px;
    font-weight: 500;
}
.footer_container_salud img{
    width: auto;
    height: 40px;
}
.footer_container_bottom {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer_container_bottom_col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer_container_bottom_col_social {
    display: flex;
    flex-direction: column;
    gap: 20px;
    
}
.footer_container_bottom_col_social p{
    color: #53565A;
    font-size: 14px;
    font-weight: 500;
    
}
.footer_container_bottom_col_social_icons {
    display: flex;
    gap: 10px;
}
.footer_container_bottom_col_social_icons img {
    width: auto;
    height: 35px;
}
.footer_container_bottom_col_copyright p {
    color: #53565A;
    font-size: 14px;
    font-weight: 600;
}
.footer_container_bottom_col_contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer_container_bottom_col_contact h4 {
    color: #53565A;
    font-size: 16px;
    font-family: SFProDisplay-SemiBold;
    text-transform: uppercase;
}
.footer_container_bottom_col_contact p {
    color: #53565A;
    font-size: 14px;
    font-weight: 500;
}
.footer_container_bottom_col_contact a {
    color: #53565A;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
}
.footer__bottom__line {
    height: 6px;
    width: 100px;
    margin-left: auto;
    background-color: #FF8200;
}

.modal__bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    background-color: #000;
    z-index: 1;
}
.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    z-index: 2;
    padding: 20px;
    background-color: #fff;
}
.modal__title {
    font-size: 30px;
    color: #FF8200;
    font-family: SFProDisplay-Thin;
    margin-bottom: 10px;
}
.modal__txt {
    font-size: 20px;
    font-family: SFProDisplay-Light;
    margin-bottom: 10px;
}
.modal__txt2 {
    font-size: 16px;
    font-family: SFProDisplay-Light;
    margin-bottom: 10px;
}
.modal__btn {
    display: block;
    color: #fff;
    font-size: 18px;
    width: 140px;
    text-align: center;
    text-decoration: none;
    padding: 12px 0;
    border: 0;
    margin-bottom: 10px;
    background-color: #FF8200;
    font-family: SFProDisplay-Light;
}

@media screen and (min-width: 360px) {

    .footer__bottom__line {
        height: 8px;
        width: 120px;
    }
    .modal {
        width: 300px;
    }

}

@media screen and (min-width: 500px) {

    .footer__bottom__line {
        width: 200px;
    }
    .modal {
        width: 360px;
    }

}

@media screen and (min-width: 768px) { 

    .header_container_logo img {
        height: 45px;
    }
    .header_container_menu_item img {
        height: 18px;
    }
    .header_container_menu_item a {
        font-size: 18px;
    }
    
    .footer_container_enlaces a {
        font-size: 16px;
    }
    .footer_container_salud p {
        font-size: 22px;
    }
    .footer_container_salud img {
        height: 50px;
    }
    .footer_container_bottom_col_contact h4 {
        font-size: 18px;
    }
    .footer_container_bottom_col_copyright p {
        font-size: 16px;
    }
    .footer_container_bottom {
        display: flex;
        flex-direction: row;
        gap: 10px;
    }
    .footer_container_bottom_col:nth-child(2) {
        display: flex;
        flex-direction: column;
        justify-content: end;
        align-items: end;
        gap: 0;
    }
    .footer_container_bottom_col_contact {
        text-align: right;
    }
    .footer__bottom__line {
        height: 8px;
        width: 360px;
    }

    .modal__title {
        font-size: 32px;
    }
    .modal__txt {
        font-size: 22px;
    }
    .modal__txt2 {
        font-size: 18px;
    }
    .modal__btn {
        font-size: 20px;
        width: 140px;
    }

}

@media screen and (min-width: 1000px) { 

    .header_container_logo img {
        height: 50px;
    }
    .header_container_menu_item {
        padding: 12px 0;
    }
    .header_container_menu_item img {
        height: 20px;
    }
    .header_container_menu_item a {
        font-size: 20px;
    }

    .footer_container_salud p {
        font-size: 26px;
    }
    .footer_container_salud img {
        height: 58px;
    }
    .footer_container_bottom_col_contact a {
        font-size: 16px;
    }

    .modal {
        padding: 30px;
    }

}

@media screen and (min-width: 1200px) { 

    .header_container_logo {
        padding: 14px 0;
    }
    .header_container_logo img {
        height: 60px;
    }
    .header_container_menu_item {
        padding: 14px 0;
    }
    .header_container_menu_item img {
        height: 20px;
    }
    .header_container_menu_item a {
        font-size: 22px;
    }

    .footer_container_bottom_col {
        flex: 2;
    }
    .footer_container_bottom_col:nth-child(2) {
        flex: 1;
    }
    .footer_container_salud p {
        font-size: 28px;
    }
    .footer_container_salud img {
        height: 62px;
    }
    .footer__bottom__line {
        height: 8px;
        width: 460px;
    }

}
