/* Inicio Style */
@import url('https://fonts.googleapis.com/css2?family=Marmelad&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Unbounded:wght@200..900&display=swap');
@font-face {
    font-family: 'Vogue';
    src: url(classyvogueregular-p7rry-1.ttf);
}
* {
    box-sizing: border-box;
    --principal-color: #0C4860;
    --principal-font-p: "Montserrat", Sans-serif;
    scroll-behavior: smooth;
}
body {
    margin: 0;
    padding: 0;
    height: 200vh;
    scroll-behavior: smooth;
}
/* End inicio Style */
/* Menu style */
header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    transition: 0.2s linear;
    height: 125px;
    z-index: 2;
}

#nav-bar {
    width: auto;
    height: 80px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
#nav-bar a   {
    text-decoration: none;
}
.normal-li {
    color: white;
    cursor: pointer;
}
.sub-lis {
    color: rgba(255, 255, 255, 0.548);
    cursor: auto;
/*     color: #0c486080; */
}
.li-elements {
    margin: 0 20px 0 20px;
    list-style: none;
    font-family: var(--principal-font-p);
    font-size: 15px;
    font-weight: 500;   
    letter-spacing: 0.065rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: end;
    text-decoration: none;
}
.li-elements::before {
    content: '';
    position: absolute;
    transform: translateY(10px);
    width: 0px; /* 110 */
    height: 3px; /* 3 */
    background-color: white;
    transition: 0.2s linear;
}
.li-elements:hover::before {
    width: 100%; /* 110 */
    height: 3px; /* 3 */

}
.img-logo {
    width: 400px;
}
#contactUs-buttom {
    background: white;
    padding: 15px;
    color: var(--principal-color);
    border-radius: 9px;
    transition: 1s;
    background-image: linear-gradient(var(--principal-color), var(--principal-color), var(--principal-color));
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: -160px;
    border-radius: 15px 0px 15px 0px;
}
#contactUs-buttom:hover {
    background-image: linear-gradient(var(--principal-color), var(--principal-color), var(--principal-color));
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: 0px;
    border: 2px solid white;
    color: white;
    transition: 0.5s;
}
#contactUs-buttom::before {
    content: '';
    width: 0;
    height: 0;
}
.menuIcon {
    width: 38px;
    height: 35px;
    background-color: #fdfdfd57;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 4px;
    border-radius: 5px;
    display: none;
    transition: 0.5s;
}
.line1, .line2, .line3 {
    width: 100%;
    height: 3px;
    background: white;
    transition: 0.5s;
}
.elementsLi {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    transform: translate(0, -200px); /* 174px */
    transition: 0.5s;
}
.elementsLi ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    margin: 0;
    padding: 0;
}
.elementsLi ul a {
    width: 100%;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    color: black;
    font-weight: 600;
}
.elementsLi ul li {
    width: 100%;
    list-style: none;
    padding: 15px 0 15px 0;
    font-size: 13px;
    padding-left: 20px;
    transition: 0.5s;
}
.elementsLi ul li:hover {
    color: white;
    background-color: rgb(61, 61, 61);
    padding-left: 30px;
}
.activeMenu {
    transition: 0.5s;
}
.activeMenu .line1 {
    transform: translate(3px, 4px);
    rotate: 45deg;
    transition: 0.5s;
}
.activeMenu .line2 {
    display: none;
    transition: 0.5s;
}
.activeMenu .line3 {
    transform: translate(-3px, 4px);
    rotate: 136deg;
    transition: 0.5s;
}
/* When scroll this get actived */

.scroled-header {
    background-color: white;
    transition: 1s;
    z-index: 2;
}
.scroled-header .normal-li {
    color: var(--principal-color);
}
.scroled-header .sub-lis {
    color: #0c468077;
}
.scroled-header .li-elements{
    margin: 0 20px 0 20px;
    list-style: none;
    font-family: var(--principal-font-p);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.065rem;
}
.scroled-header .li-elements::before {
    content: '';
    position: absolute;
    transform: translateY(10px);
    width: 0px; /* 110 */
    height: 3px; /* 3 */
    background-color: var(--principal-color);
    transition: 0.2s linear;
}
.scroled-header .li-elements:hover::before {
    width: 100%; /* 110 */
    height: 3px; /* 3 */

}
.scroled-header .menuIcon {
    width: 38px;
    height: 35px;
    background-color: #0C4860;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 4px;
    border-radius: 5px;
    display: none;
}
.scroled-header #contactUs-buttom {
    background: var(--principal-color);
    padding: 15px;
    color: white;
    border-radius: 9px;
    background-image: linear-gradient(#fff, #fff, #fff);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: -160px;
    transition: 0.5s;
    border-radius: 15px 0px 15px 0px;
}
.scroled-header #contactUs-buttom:hover {
    background-image: linear-gradient(#fff, #fff, #fff);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: 0px;
    border: 2px solid var(--principal-color);
    color: var(--principal-color);
    transition: 0.5s;
}
/* Second section */

.firstImg {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: start;
    align-items: center;
    background-image: linear-gradient(#00000075, #00000075, #00000075), url(resources/slice-member01.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.deleteExtraSpace {
    overflow-x: hidden;
}
/* mini responsive */

.firstText {
    width: 450px;
    margin-left: 23%;
}
.firstText h1 {
    color: #ffffff;
    font-size: 53px;
    font-weight: 700;
    line-height: 1.1;
    font-family: 'Vogue', sans-serif;
}
.firstText p {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
    font-family: 'Vogue', sans-serif;
    
}
.firstText button {
    font-family: "Montserrat", Sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0px;
    fill: #ffffff;
    color: #ffffff;
    background-color: #0C4860;
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    border-radius: 0px 0px 0px 0px;
    padding: 15px 40px 15px 40px;
    transition: 0.5s;
}
.firstText button:hover {
    font-family: "Montserrat", Sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0px;
    fill: #ffffff;
    color: #6EC1E4;
    background-color: #0C4860;
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    border-radius: 0px 0px 0px 0px;
    padding: 20px 50px 20px 50px;
    transition: 0.5s;
}
/* Membership Benefits */
#membershipBenefits {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: linear-gradient(#0c4860d6, #0c4860d6, #0c4860d6), url(resources/back-members-min.jpg);
    padding: 80px 0 80px 0;
    background-repeat: repeat;
    background-size: 100%;
    background-position: 0px -230px;
}
#membershipBenefits span p {
    color: #D4E7F0;
    font-size: 45px;
    font-weight: 600;
    letter-spacing: 2.4px;
    word-spacing: 0px;
    font-family: 'Vogue';
    margin: 6px 0 6px 0;
}
#membershipBenefits span {
    margin-left: 23%;
}
.marP {
    padding: 0px 0 0 90px;
}
/* third section */
.firstSlider {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 944px;
    background: #D4E7F0;
}
.iconsDiv {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.iconsDiv img{
    width: 80px;
    position: relative;
}
.imgInfo img {
    width: 562px;
    height: 775px;
}
.imagesinfo {
    width: 738em;
    display: flex;
    transition: 0.4s;
}
.imgInfo {
    width: 1249px;
    display: flex;
    align-items: center;
    margin: 0px 50px 0px 15px;
    transition: 0.4s;
}
.imgOverflow {
    width: 1327px;
    overflow: hidden;
}

.textContainerSlider h1 {
    width: 694px;
    font-size: 3rem;
    font-weight: 100;
    line-height: 1.6;
    color: #0C4860;
    font-family: 'Vogue';
}

.textContainerSlider p {
    width: 92%;
    font-size: 1.063rem;
    font-family: 'Montserrat';
    color: #0C4860;
    font-weight: 400;
    line-height: 2.25;
    white-space: pre-line;
}
.textContainerSlider {
    padding: 0px 0 0 98px;
}
.iconsDivActive::before {
    content: "";
    position: absolute;
    display: none;
    width: 66px;
    height: 66px;
    background-color: #0c4860a6;
    border-radius: 50%;
    z-index: 1;
    transition: 0.5s;
}
.iconsDivActive::before {
    display: block;
    transition: 0.5s;
}
/* Healh care section */

.healtCare {
    width: 100%;
    height: 89vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(#c2c2c270, #c2c2c270, #c2c2c270), url(resources/fondo_03.jpg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.healtCareCenter {
    width: 1230px;
    height: 620px;
    display: grid;
    place-content: center;
    background: #0c4860d9;
}
.healtCareCenter h1 {
    width: 760px;
    font-size: 3.2rem;
    color: white;
    font-family: 'Vogue';
    font-weight: 100;
    line-height: 1.4;
    letter-spacing: 1px;
    margin: 0 0 0 0px;
    text-align: center;
}
.healtCareCenter p {
    font-size: 20px;
    color: white;
    font-family: var(--principal-font-p);
    font-weight: 100;
    line-height: inherit;
    line-height: 2;
    letter-spacing: 1px;
    width: 740px;
    text-align: center;
    margin-top: 60px;
    margin-bottom: -8px;
}
/* 2cond Slider */
.iconsSlider2 {
    width: auto;
    display: flex;
}
.icons2 {
    width: 262px;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    padding: 0 0px 0 0px;
    font-family: "Montserrat", Sans-serif;
    color: #0C4860;
    border-bottom: 2px solid #80808038;
    padding: 0 0 7px 0;
    cursor: pointer;
}

.icons2 img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
}
.icons2:hover img {
    border: 2px solid #0C4860;
}
.icons2DivActive img{
    border: 2px solid #0C4860;
}
.icons2 p {
    font-size: 14px;
    text-align: start;
}
/* Second Element */
.secondSlider {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 70px 0 70px 0;
}
.sliderContainer {
    width: 510rem;
    display: flex;
}
.element img{
    width: 485px;
    height: fit-content;
}
.element {
    width: 1328px;
    display: flex;
    font-family: "Montserrat", Sans-serif;
    justify-content: start;
    margin: 40px 0 0 160px;
}

.element table {
    width: 660px;
    padding: 20px 0px 0px 30px;
}
.imgSlider {
    width: 1632px;
    overflow: hidden;
}
.element tbody {
    width: auto;
}
.element tbody tr {
    width: 100%;
    height: 157px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 0.1px solid #47AECC;
    padding: 20px 0 20px 0;
}
.element tbody td {
    width: auto;
    padding: 6px;
    color: white;
    font-family: "Montserrat", Sans-serif;
    font-size: 15px;
    font-weight: 400;
}
.element tbody td ul {
    text-decoration: none;
    list-style: none;
    padding: 0;
}
.textContainerM {
    width: 55%;
    display: flex;
    flex-direction: column;
    padding: 0 0 0 98px;
    justify-content: center;
}
.textContainerM h1 {
    width: 100%;
    font-size: 2.3rem;
    color: #0C4860;
    padding: 0 0 0 0px;
    margin-bottom: 10px;
    text-align: start;
    font-family: 'Vogue';
    white-space: pre-line;
}
.textContainerM p {
    font-size: 1.063rem;
    font-family: 'Montserrat';
    color: #0C4860;
    font-weight: 400;
    line-height: 2.25;
    white-space: pre-line;
}
.textContainerM ul {
    width: auto;
    padding: 0 0 0 18px;
}
.textContainerM ul li {
    width: auto;
    font-family: "Montserrat", Sans-serif;
    font-size: 17px;
    color: #0C4860;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 31.6px;
}
#elementTable {
    background-color: #0C4860;
}
.element tbody td ul {
    text-decoration: none;
    list-style: none;
    padding: 0;
}
/* Section 6 */
#healtCare6 {
    background-image: linear-gradient(#c2c2c270, #c2c2c270, #c2c2c270), url(resources/fondo_child_back.jpg);
    background-size: 100% 100%;
    background-position: 0%;
}
/* section 7 */
.containerAllText {
    display: flex;
    width: 40%;
    justify-content: end;
}
.Fourth-section {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    background-color: #E8F5F5;
    padding: 110px 0 110px 0;
    overflow-x: hidden;
}
.Fourth-section img {
    width: 47%;
    height: fit-content;
}
#container2 {
    display: grid;
    place-content: center;
    width: 640px;
    margin: 0 90px 0 0px;
}
#container2 p {
    width: auto;
}
.textContainer h1 {
    font-size: 3.6rem;
    color: #0C4860;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 1px;
    margin: 0 0 0 0px;
    font-family: 'Vogue';
    white-space: pre-line;
}
.textContainer p {
    font-size: 18px;
    color: #0C4860;
    font-family: var(--principal-font-p);
    font-weight: 400;
    line-height: inherit;
    line-height: 2;
    letter-spacing: 1px;
    width: 100%;
    white-space: pre-line;
}
/* Section 8 */
.containerAllText2 {
    display: flex;
    width: 32%;
    justify-content: end;
}
.third-section {
    display: flex;
    padding: 150px 0 150px 0;
    background-color: #D4E7F0;
    overflow-x: hidden;
}
.third-section img {
    width: 48%;
    height: fit-content;
}

.textContainer {
    display: grid;
    place-content: center;
    width: 694px;
    margin: 0px 0 0 109px;
}
/* Footer */

footer {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #0C4860;
    font-weight: 100;
}
/* left of the footer */
.footerLeft {
    width: 50%;
    color: white;
    display: flex;
    justify-content: end;
    /* padding: 0 200px 0 220px; */
}
.footerLeftElement {
    width: 660px;
    padding: 80px 38px 80px 0;
}
.footerLeftElement p {
    font-family: "Montserrat", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    padding: 0;
}
.footerLeft .firstP {
    font-size: 21px;
    line-height: 42px;
    font-weight: 400;
    padding: 0;
}
.footerLeft h1 {
    font-size: 65px;
    font-family: 'Vogue';
}

/* right of the footer */
.footerRight {
    width: 50%;
    background-image: linear-gradient(#0c48607e, #0c48607e, #0c48607e), url(resources/back-footer1-min-2-768x771.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
    display: flex;
    justify-content: start;
    padding: 0 0 0 90px;
}
.footerRightElement {
    width: 50vh;
    padding: 80px 0 80px 0;
}
.footerRightElement h1 {
    font-size: 50px;
    color: #fff;
    font-weight: 100;
    font-family: 'Vogue';
}
.footerRightElement p {
    font-size: 21px;
    color: white;
    font-family: 'Montserrat';
    font-weight: 500;
    margin-bottom: 6px;
    padding: 0;
}
.footerRightElement form input {
    width: 100%;
    height: 42px;
    font-size: 17px;
    padding: 15px;
    color: #0C4860;
    border: 2px solid #0c486078;
    background: #ffffff40;
}
.infoFooter p{
    font-family: "Montserrat", Sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 37px;
}
#message {
    width: 100%;
    height: 222px;
    font-size: 17px;
    padding: 0px;
    color: #0C4860;
    border: 2px solid #0c486078;
    background: #ffffff40;
    text-align: start;
}
/* Right footer | form elements */

.buttomForm {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 45px;
    outline: none;
}
.buttomForminside {
    width: 250px;
    height: 48px;
    background: rgb(80, 181, 209);
    background-image: linear-gradient(var(--principal-color), var(--principal-color), var(--principal-color));
    background-size: 400px 100px;
    background-repeat: no-repeat;
    background-position: -500px;
    color: white;
    outline: none;
    border: 0;
    transition: 1s;
    cursor: pointer;
}
.buttomForminside:hover {
    background-position: 0;
    transition: 1s;
}
.checkboxPrivPol {
    display: flex;
    align-items: center;
    justify-content: start;
}
#priv-pol {
    width: 74px;
    height: 25px;
}
.checkboxPrivPol p{
    font-size: 17px;
    color: #ffff;
    font-family: var(--principal-font-p);
    font-family: 'Montserrat', sans-serif;
    padding: 0;
    white-space: pre-line;
}
/* sub footer */
.subfooter {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    background: #0C4860;
    padding: 20px;
    border-top: 2px solid white;
    }
    .subLeft {
    color: white;
    font-family: 'Montserrat';
    font-weight: 200;
    text-align: center;
    }
    .subRight {
    color: white;
    font-family: 'Montserrat';
    font-weight: 200;
    }
    .nameSpan {
        width: 100%;
        background: white;
        font-size: 12px;
        height: 35px;
        color: #0C4680;
        font-family: 'Montserrat';
        font-weight: 600;
        text-align: center;
        align-content: center;
        margin-top: 20px;
        display: none;
    }
    #message {
        width: 100%;
        background: #ffffff45;
        color: #0C4860;
        padding: 10px;
    }
    #messageError {
        width: 100%;
        background: white;
        font-size: 12px;
        height: 35px;
        color: #0C4680;
        font-family: 'Montserrat';
        font-weight: 600;
        text-align: center;
        align-content: center;
        margin-top: 20px;
        display: none;
    }
    .footerRightElement form p {
        font-size: 15px;
    }
/* Responsive prat */

@media (max-width: 2560px) {
    .firstImg {
        width: 100%;
        height: 90vh;
        display: flex;
        justify-content: start;
        align-items: center;
        background-image: linear-gradient(#00000075, #00000075, #00000075), url(resources/slice-member01.jpg);
        background-repeat: no-repeat;
        background-position: 50%;
        background-size: 100% 120%;
    }
}
@media (max-width:2135px) {
    .imgInfo {
        width: 1247px;
        display: flex;
        align-items: center;
        margin: 0px 50px 0px 15px;
        transition: 0.4s;
    }
}
@media (max-width: 1950px) {
    .imgInfo {
        width: 1248px;
        display: flex;
        align-items: center;
        margin: 0px 50px 0px 15px;
        transition: 0.4s;
    }
}
@media (max-width: 1900px) {
    .firstImg {
        width: 100%;
        height: 87vh;
        display: flex;
        justify-content: start;
        align-items: center;
        background-image: linear-gradient(#00000075, #00000075, #00000075), url(resources/slice-member01.jpg);
        background-repeat: no-repeat;
        background-position: 50%;
        background-size: 232vh 117vh;
    }
}

@media (max-width:1800px) {
    .firstImg {
        width: 100%;
        height: 77vh;
        display: flex;
        justify-content: start;
        align-items: center;
        background-image: linear-gradient(#00000075, #00000075, #00000075), url(resources/slice-member01.jpg);
        background-repeat: no-repeat;
        background-position: 50%;
        background-size: 170vh 84vh;
    }
    .firstText {
        width: 450px;
        margin-left: 14%;
    }
    #membershipBenefits span {
        margin-left: 14%;
    }
}

@media (max-width:1700px) {
    .firstImg {
        width: 100%;
        height: 80vh;
        display: flex;
        justify-content: start;
        align-items: center;
        background-image: linear-gradient(#00000075, #00000075, #00000075), url(resources/slice-member01.jpg);
        background-repeat: no-repeat;
        background-size: 100% fit;
        background-position: 50%;
    }
    .firstText {
        margin-left: 20%;
    }
    .healtCare {
        width: 100%;
        height: 89vh;
        display: flex;
        justify-content: center;
        align-items: center;
        background-image: linear-gradient(#c2c2c270, #c2c2c270, #c2c2c270), url(resources/fondo_03.jpg);
        background-size: 181vh 89vh;
        background-position: 50%;
        background-repeat: no-repeat;
    }
    .imgInfo {
        width: 117.1vh;
        display: flex;
        align-items: center;
        margin: 0px 50px 0px 15px;
        transition: 0.4s;
    }
}
@media (max-width:1667px) { 
    .icons2 {
        width: 242px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 20px 0 20px;
        font-family: "Montserrat", Sans-serif;
        color: #0C4860;
        border-bottom: 2px solid grey;
    }
    .icons2 p {
        font-size: 15px;
    }
    .imgSlider {
        width: 1200px;
        overflow: hidden;
    }
    .element {
        width: 240vh;
        height: 88vh;
        display: flex;
        font-family: "Montserrat", Sans-serif;
        justify-content: start;
        margin: 0px 0 0 0;
    }
    
    #elementTable {
        display: flex;
        flex-direction: column;
        height: auto;
    }
    .textContainerM {
        width: 35%;
        display: flex;
        flex-direction: column;
        padding: 0 0 0 46px;
        justify-content: center;
    }
    .element table {
        width: 88vh;
        padding: 50px;
    }
    .firstImg {
        width: 100%;
        height: 80vh;
        display: flex;
        justify-content: start;
        align-items: center;
        background-image: linear-gradient(#00000075, #00000075, #00000075), url(resources/slice-member01.jpg);
        background-repeat: no-repeat;
        background-size: 100% 92vh;
        background-position: 50%;
    }
    .imgInfo {
        width: 153vh;
        display: flex;
        align-items: center;
        margin: 0px 50px 0px 15px;
        transition: 0.4s;
    }
}
@media (max-width:1920px) {
.imgInfo {
        width: 1247px;
        display: flex;
        align-items: center;
        margin: 0px 50px 0px 15px;
        transition: 0.4s;
    }
    .firstImg {
        width: 100%;
        height: 90vh;
        display: flex;
        justify-content: start;
        align-items: center;
        background-image: linear-gradient(#00000075, #00000075, #00000075), url(resources/slice-member01.jpg);
        background-repeat: no-repeat;
        background-position: 50%;
        background-size: 212vh 106vh;
    }
}

@media (max-width:1348px) {
    .footerLeft {
        width: 55%;
        color: white;
        display: flex;
        justify-content: end;
    }
    .footerRight {
        width: 45%;
        background-image: linear-gradient(#0c48607e, #0c48607e, #0c48607e), url(resources/back-footer1-min-2-768x771.jpg);
        background-repeat: no-repeat;
        background-size: 100% 100%;
        display: flex;
        justify-content: start;
        padding: 0 0 0 40px;
    }
    .footerLeft h1 {
        font-size: 55px;
        font-family: 'Vogue';
    }
    .footerLeft .firstP {
        font-size: 19px;
        line-height: 34px;
        font-weight: 400;
    }
    .infoFooter p {
        font-family: "Montserrat", Sans-serif;
        font-size: 20px;
        font-weight: bold;
        line-height: 37px;
    }
    .footerLeftElement {
        width: 660px;
        padding: 80px 0px 80px 101px;
    }
    .textContainerM h1 {
        font-size: 29px;
        color: #0C4860;
        padding: 0 0 0 0px;
        margin-bottom: 10px;
    }
    .textContainerM p {
        font-family: "Montserrat", Sans-serif;
        font-size: 17px;
        color: #0C4860;
        font-weight: 400;
    }
    .textContainerM ul li {
        width: auto;
        font-family: "Montserrat", Sans-serif;
        font-size: 17px;
        color: #0C4860;
        font-weight: 400;
        letter-spacing: 0.5px;
    }
    .element img {
        width: 525px;
        height: fit-content;
    }
    .element {
        width: 240vh;
        height: 55vh;
        display: flex;
        font-family: "Montserrat", Sans-serif;
        justify-content: start;
        margin: 0px 0 0 0;
    }
}
@media (max-width:1250px) {
    .element img {
        width: 425px;
        height: fit-content;
    }
    .element {
        width: 240vh;
        height: 580px;
        display: flex;
        font-family: "Montserrat", Sans-serif;
        justify-content: start;
        margin: 0px 0 0 0;
    }
    .imgSlider {
        width: 990px;
        overflow: hidden;
    }
    .icons2 {
        width: 197px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 20px 0 20px;
        font-family: "Montserrat", Sans-serif;
        color: #0C4860;
        border-bottom: 2px solid grey;
    }
    .element table {
        width: 60%;
        padding: 50px;
    }

}
@media (max-width:1500px) {
    .third-section img{
        width: 60vh;
    }
    #Fourth-right img {
        width: 35vh;
        height: fit-content;
        overflow-x: hidden;
    }
    #third-left img {
        width: 50vh;
        height: fit-content;
    }
    .textContainer h1 {
        width: 100%;
        font-size: 2.1rem;
        font-weight: 100;
        line-height: 1.4;
        letter-spacing: 1px;
        margin: 0 0 0 0px;
        
    }

    .sixt-section img {
        width: 60vh;
    }
    .textContainer p {
        font-size: 15px;
        color: #0C4860;
        font-family: var(--principal-font-p);
        line-height: inherit;
        line-height: 2;
        font-weight: 500;
        letter-spacing: 1px;
        width: 390px;
        font-family: 'Montserrat', sans-serif;
    }
    .Fourth-section img {
        width: 70vh;
        height: 60vh;
    }
    #container3 ul {
        padding: 0 0 0 13px;
        text-align: start;
    }

}
@media (max-width: 1200px) {
    .icons {
        width: 95%;
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
    }
    .imgInfo {
        width: 1130px;
        display: flex;
        align-items: center;
        margin: 0px 50px 0px 15px;
        transition: 0.4s;
    }
    .textContainerSlider h1 {
        width: 90%;
        font-size: 3rem;
        color: #0C4680;
    }
    .textContainerSlider p {
        width: 59%;
        font-size: 22px;
        font-family: 'Montserrat';
        color: #0C4860;
        font-weight: 300;
        white-space: pre-line;
    }
    .textContainer h1 {
        font-size: 2.3rem;
        font-weight: 400;
        line-height: 1.4;
        letter-spacing: 1px;
        margin: 0 0 0 0px;
        font-family: 'Vogue';
    }
    #Fourth-right img {
        width: 35vh;
        height: fit-content;
        overflow-x: hidden;
    }
    #third-left img {
        width: 50vh;
        height: fit-content;
    }
    .Fourth-section {
        display: flex;
        align-items: center;
        flex-direction: row-reverse;
        align-items: center;
        background-color: #E8F5F5;
        padding: 70px 0 70px 0;
        overflow-x: hidden;
    }
    #Fourth-right img {
        width: 31vh;
        height: max-content;
        overflow-x: hidden;
    }
    #third-left img {
        width: 44vh;
        height: fit-content;
    }
    #container3 ul {
        padding: 0 0 0 13px;
        text-align: start;
    }
    .textContainer p {
        font-size: 17px;
        color: #0C4860;
        font-family: var(--principal-font-p);
        line-height: inherit;
        line-height: 2;
        font-weight: 500;
        letter-spacing: 1px;
        width: 390px;
        font-family: 'Montserrat', sans-serif;
    }
    .textContainer h1 {
        font-size: 2.2rem;
        font-weight: 400;
        line-height: 1.4;
        letter-spacing: 1px;
        margin: 0 0 0 0px;
        font-family: 'Vogue';
    }
    .textContainer {
        display: grid;
        place-content: center;
        width: 435px;
        margin: 0 0 0 50px;
    }
    #container2 {
        display: grid;
        place-content: center;
        width: 100%;
        margin: 0 77px 0 0px;
    }
    .secondSection h1 {
        width: 289px;
        font-size: 3rem;
        font-weight: 400;
        letter-spacing: 0.1rem;
        color: var(--principal-color);
        margin: 0 -45px 0 0;
    }    
    .Fourth-section img {
        width: 51vh;
        height: fit-content;
    }
    .third-section img {
        width: 52vh;
        height: max-content;
    }
    .sixt-section img {
        width: 70vh;
        height: 52vh;
    }
    .textContainer {
        display: grid;
        place-content: center;
        width: 435px;
        margin: 0 0 0 28px;
    }
    .sixt-section img {
        width: 64vh;
        height: 44vh;
    }
    .secondSection {
        width: 100%;
        height: auto;
        padding: 50px 0 70px 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: #D1E5EE;
    }
        .secondSection h1 {
            width: 67%;
            font-size: 3rem;
            font-weight: 400;
            letter-spacing: 0.1rem;
            color: var(--principal-color);
            margin: 0 -45px 0 0;
            text-align: center;
        }
        .healtCare {
            width: 100%;
            height: 65vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background-image: linear-gradient(#c2c2c270, #c2c2c270, #c2c2c270), url(resources/fondo_03.jpg);
            background-size: auto 100%;
            background-repeat: no-repeat;
        }
        .healtCareCenter h1 {
            width: 760px;
            font-size: 2.5rem;
            color: white;
            font-weight: 400;
            line-height: 1.4;
            letter-spacing: 1px;
            margin: 0 0 0 0px;
            text-align: center;
        }
        .healtCareCenter p {
            font-size: 16px;
            color: white;
            font-family: var(--principal-font-p);
            font-weight: 500;
            line-height: inherit;
            line-height: 2;
            letter-spacing: 1px;
            width: 740px;
            text-align: center;
            margin-top: 28px;
            margin-bottom: -8px;
        }
        .sixt-section img {
            width: 80%;
            height: auto;
        }
        .sixt-section {
            display: flex;
            flex-direction: column;
            padding: 100px 0 100px 0;
            justify-content: center;
            align-items: center;
        }
        .textContainer {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: 0 0 0 10px;
        text-align: center;
        padding: 0 100px 0 100px;
    }
    .infoHealtCare p {
        font-size: 22px;
        color: white;
        font-family: var(--principal-font-p);
        font-weight: 500;
        width: 285px;
        line-height: 2;
        letter-spacing: 1px;
        text-align: end;
        margin-top: 55px;
        padding: 0px 22px 0 23px;
    }
    #container3 ul {
        padding: 0 0 0 13px;
        text-align: start;
    }
    .textContainer {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 80%;
        margin: 0 0 0 10px;
        text-align: center;
        padding: 0 34px 0 18px;
    }
    .firstSlider {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 944px;
        flex-direction: column;
        background: #D4E7F0;
    }
    .textContainerSlider {
        padding: 0px 0 0 18px;
        width: 38%;
    }
}
@media (max-width: 1306px) {
    #nav-bar {
        display: none;
    }
    header {
        width: 100%;
        display: flex;
        justify-content: space-around;
        align-items: center;
        position: fixed;
        transition: 0.2s linear;
        height: 125px;
        z-index: 2;
    }
    .menuIcon {
        width: 38px;
        height: 35px;
        background-color: #fdfdfd57;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        padding: 4px;
        border-radius: 5px;
    }
    .scroled-header .menuIcon {
        display: flex;
    }
    #container3 ul {
        padding: 0 0 0 13px;
        text-align: start;
    }
    #tableContent1 table {
        width: 1148px;
        margin: 60px 0 60px 0;
        padding: 0 15px 0 15px;
    }
    #tableContent2 {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 100px 0 100px 0;
        background-color: #E3EEF4;
    }
    #tableContent2 table {
        width: 100%;
        margin: 60px 0 60px 0;
        padding: 0 15px 0 15px;
    }
    #tableContent1 table {
        width: 1148px;
        margin: 60px 0 60px 0;
        padding: 0 15px 0 15px;
    }
    #tableContent1 table {
        width: 1148px;
        margin: 60px 0 60px 0;
        padding: 0 15px 0 15px;
    }
    #tableContent2 {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 100px 0 100px 0;
        background-color: #E3EEF4;
    }
    #tableContent2 table {
        width: 100%;
        margin: 60px 0 60px 0;
        padding: 0 15px 0 15px;
    }
    #tableContent1 table {
        width: 100%;
        margin: 60px 0 60px 0;
        padding: 0 15px 0 15px;
    }
}

@media (max-width:1128px) {
    .imgOverflow {
        width: 100%;
        overflow: hidden;
    }
    .textContainerSlider p {
        width: 70%;
        font-size: 21px;
        font-family: 'Montserrat';
        color: #0C4860;
        font-weight: 300;
        white-space: pre-line;
    }
    .textContainerSlider h1 {
        width: 90%;
        font-size: 2rem;
    }
    .firstSlider {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column; 
        height: auto;
        background: #D4E7F0;
    }
}
@media (max-width: 1070px) {
    .third-section {
        width: 100%;
        display: flex;
        align-items: center;
        flex-direction: column;
        padding: 70px 0 90px 0;
        background-color: #F4F8FB;
        overflow-x: hidden;
    }
    .third-section img {
        width: 90%;
        height: auto;
        margin: 0 0 60px 0;
    }
    #third-left img {
        width: 90%;
    }
    #Fourth-right img {
        width: 90%;
        height: max-content;
        overflow-x: hidden;
    }
    .textContainer {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 90%;
        margin: 0 0 0 10px;
        text-align: center;
    }
    .textContainer h1 {
        width: 100%;
        font-size: 3.3rem;
        font-weight: 400;
        line-height: 1.4;
        letter-spacing: 1px;
        margin: 0 0 0 10px;
        font-family: 'Vogue';
    }
    .textContainer p {
        font-size: 17px;
        color: #0C4860;
        font-family: var(--principal-font-p);
        line-height: inherit;
        line-height: 2;
        font-weight: 500;
        letter-spacing: 1px;
        width: 530px;
        font-family: 'Montserrat', sans-serif;
        white-space: normal;
    }
    .Fourth-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: #E8F5F5;
        padding: 70px 0 70px 0;
        overflow-x: hidden;
    }
    .Fourth-section img {
        width: 90%;
        height: auto;
        margin: 0 0 50px 0;
    }
    #container2 {
        display: grid;
        place-content: center;
        width: 100%;
        margin: 0 0px 0 0px;
    }
    #container3 ul {
        padding: 0 0 0 13px;
        text-align: start;
    }
    #container3 ul li {
        font-size: 18px;
        color: #0C4860;
        font-family: var(--principal-font-p);
        font-weight: 400;
        line-height: inherit;
        line-height: 2;
        letter-spacing: 1px;
        text-align: start;
    }
    .textContainer h1 {
        width: 100%;
        font-size: 2.1rem;
        font-weight: 100;
        line-height: 1.4;
        letter-spacing: 1px;
        margin: 0 0 0 0px;
        white-space: normal;
    }
    .healtCareCenter {
        width: 90%;
        height: 60vh;
        display: grid;
        place-content: center;
        background: #0c4860d9;
    }
    .footerLeft {
        width: 50%;
        color: white;
        display: flex;
        justify-content: end;
    }
    .footerLeftElement {
        width: 660px;
        padding: 80px 20px 80px 30px;
    }
    .footerRight {
        width: 50%;
        background-image: linear-gradient(#0c48607e, #0c48607e, #0c48607e), url(resources/back-footer1-min-2-768x771.jpg);
        background-repeat: no-repeat;
        background-size: 100% 100%;
        display: flex;
        justify-content: start;
        padding: 0 20px 0 20px;
    }
    #tableContent1 table {
        width: 100%;
        margin: 60px 0 60px 0;
        padding: 0 15px 0 15px;
    }
    #tableContent2 table tr td {
        width: auto;
        padding: 40px 0 40px 32px;
        border-top: 2px solid var(--principal-color);
        border-style: solid;
        border-width: 01px 0px 0px 0px;
        border-color: #8CB9CE;
        padding: 1.35em 9px 2.25em 6px;
        font-family: "Montserrat", Sans-serif;
        font-size: 1.05rem;
        font-weight: 500;
        line-height: 1.29;
        letter-spacing: 0.04rem;
    }
#tableContent1 table tr th {
    width: auto;
    padding: 40px 0 40px 23px;
    font-size: 17px;
    color: white;
    font-family: var(--principal-font-p);
    font-weight: 600;
    line-height: inherit;
    line-height: 1;
    letter-spacing: 1px;
    text-align: left;
}
#tableContent2 #tr-bg-white {
    width: 100%;
    background-color: #0C4860;
    font-size: 14px;
    color: white;
    font-family: var(--principal-font-p);
    font-weight: 400;
    line-height: inherit;
    line-height: 2;
    letter-spacing: 1px;
    text-align: left;
    padding: 15px 80px 25px 90px;
}
#tableContent1 table tr td {
    width: auto;
    padding: 40px 0 40px 32px;
    border-top: 2px solid white;
    border-style: solid;
    border-width: 01px 0px 0px 0px;
    border-color: #8CB9CE;
    padding: 1.35em 3em 2.25em 3em;
    font-family: "Montserrat", Sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.29;
    letter-spacing: 0.04rem;
}
#tableContent2 #tr-bg-white {
    width: 100%;
    background-color: #0C4860;
    font-size: 14px;
    color: white;
    font-family: var(--principal-font-p);
    font-weight: 600;
    line-height: inherit;
    line-height: 2;
    letter-spacing: 1px;
    text-align: left;
    padding: 15px 49px 25px 50px;
}
.icons2 {
    width: 157px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px 0 20px;
    font-family: "Montserrat", Sans-serif;
    color: #0C4860;
    border-bottom: 2px solid grey;
}
.imgSlider {
    width: 760px;
    overflow: hidden;
}
.icons2 {
    width: 157px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px 0 20px;
    font-family: "Montserrat", Sans-serif;
    color: #0C4860;
    border-bottom: 2px solid grey;
}
.textContainerM {
    width: 20%;
    display: flex;
    flex-direction: column;
    padding: 0 0 0 16px;
    justify-content: center;
}
.element img {
    width: 291px;
    height: fit-content;
}

.element {
    width: 240vh;
    height: 510px;
    display: flex;
    font-family: "Montserrat", Sans-serif;
    justify-content: start;
    margin: 0px 0 0 0;
}
.element table {
    width: 47%;
    padding: 50px;
}
.element tbody td {
    width: auto;
    padding: 6px;
    color: white;
    font-family: "Montserrat", Sans-serif;
    font-size: 16px;
    font-weight: 400;
}
}
@media (max-width:1020px) {
    .imgInfo {
        width: 1137px;
        display: flex;
        align-items: center;
        margin: 0px 50px 0px 15px;
        transition: 0.4s;
    }
    .textContainerSlider p {
        width: 47%;
        font-size: 20px;
        font-family: 'Montserrat';
        color: #0C4860;
        font-weight: 300;
        white-space: pre-line;
    }
    .imgSlider {
        width: 660px;
        overflow: hidden;
    }
.imgInfo img {
    width: 392px;
    height: fit-content;
}
    .textContainerSlider h1 {
        width: 70%;
        font-size: 2rem;
    }

} 
@media (max-width:960px) {
    .textContainerSlider h1 {
        width: 70%;
        font-size: 27px;
    }
    .textContainerSlider p {
        width: 47%;
        font-size: 17px;
        font-family: 'Montserrat';
        color: #0C4860;
        font-weight: 300;
        white-space: pre-line;
    }
    .imgInfo img {
        width: 336px;
        height: fit-content;
    }
}
@media (max-width:841px) {
    .imgInfo {
        width: 740px;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0px 50px 0px 15px;
        transition: 0.4s;
    }
    .textContainerSlider {
        width: 80%;
        padding: 21px;
        text-align: center;
    }
    .textContainerSlider h1 {
        width: 100%;
        font-size: 2rem;
    }
    .textContainerSlider p {
        width: 100%;
        font-size: 21px;
        font-family: 'Montserrat';
        color: #0C4860;
        font-weight: 300;
        white-space: normal;
    }
}

@media (max-width:800px) {
    .secondSection {
        width: 100%;
        height: auto;
        padding: 50px 0 70px 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: #D1E5EE;
    }
    .secondSection h1 {
        width: 67%;
        font-size: 3rem;
        font-weight: 100;
        letter-spacing: 0.1rem;
        color: var(--principal-color);
        margin: 0 -45px 70px 0px;
        text-align: center;
    }
    .imagesInformationElements {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
        }
        .imgInformation {
            width: 100%;
            height: 930px;
            display: flex;
            align-items: end;
            background-image: url(resources/dr_lemus.jpg);
            animation: fromLeft 0.8s linear;
            background-size: 100% 100%;
        }
    
#yaffaimg {
    width: 100%;
    height: 800px;
    display: flex;
    align-items: end;
    background-image: url(https://o9ta6d.p3cdn1.secureserver.net/wp-content/uploads/2023/08/dr_02.jpg?time=1722400172);
    animation: fromLeft 0.8s linear;
    background-size: 100% 100%;
}

.healtCareCenter {
    width: 89%;
    height: 46vh;
    background: #0c4860d9;
    padding: 23px;
}
.healtCareCenter h1 {
    width: 100%;
    font-size: 2.2rem;
    color: white;
    font-weight: 100;
    line-height: 1.4;
    letter-spacing: 1px;
    margin: 0 0 0 0px;
    text-align: center;
}
.healtCareCenter p {
    font-size: 17px;
    color: white;
    font-family: var(--principal-font-p);
    font-weight: 100;
    line-height: inherit;
    line-height: 2;
    letter-spacing: 1px;
    width: 100%;
    text-align: center;
    margin-top: 28px;
    margin-bottom: -8px;
}
.infoHealtCare {
    width: 100%;
    display: flex;
    justify-content: start;
    flex-direction: column;
}
    .healtCareCenter p {
        font-size: 17px;
        color: white;
        font-family: var(--principal-font-p);
        font-weight: 500;
        line-height: inherit;
        line-height: 2;
        letter-spacing: 1px;
        width: 100%;
        text-align: center;
        margin-top: 28px;
        margin-bottom: -8px;
        border: 0;
    }
    .icons2 {
        width: 217px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 20px 0 20px;
        font-family: "Montserrat", Sans-serif;
        color: #0C4860;
        border-bottom: 2px solid grey;
    }
    .iconsSlider2 {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    .secondSlider {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 70px 0 70px 0;
    }
}
@media (max-width: 730px) {
    .imgInfo {
        width: 737px;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0px 50px 0px 15px;
        transition: 0.4s;
    }
}

@media (max-width: 768px) {
    footer {
        width: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
        background-color: #0C4860;
        font-weight: 100;
    }
        .footerLeft {
            width: 100%;
            color: white;
            display: flex;
            justify-content: end;
        }
        .footerLeftElement {
            width: 100%;
            padding: 80px 20px 80px 100px;
        }
        .footerRight {
            width: 100%;
            background-image: linear-gradient(#0c48607e, #0c48607e, #0c48607e), url(resources/back-footer1-min-2-768x771.jpg);
            background-repeat: no-repeat;
            background-size: cover;
            background-position: top right;
            display: flex;
            justify-content: center;
            padding: 0 20px 0 20px;
        }
        .footerRightElement {
            width: 75vh;
            padding: 80px 70px 80px 80px;
        }
    .healtCare {
        width: 100%;
        height: 89vh;
        display: flex;
        justify-content: center;
        align-items: center;
        background-image: linear-gradient(#c2c2c270, #c2c2c270, #c2c2c270), url(resources/fondo_03.jpg);
        background-position: 70%;
        background-size: 200vh 100vh;
        background-repeat: no-repeat;
    }
    .imgInfo {
        width: 709px;
    }
    .textContainerSlider {
        width: 100%;
        padding: 3px;
        text-align: center;
    }
}

@media (max-width: 770px) {
    .imgInfo {
        width: 710px;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0px 50px 0px 15px;
        transition: 0.4s;
    }
    .textContainerSlider h1 {
        width: 100%;
        font-size: 39px;
    }
    .textContainerSlider p {
        width: 100%;
        font-size: 15px;
        font-family: 'Montserrat';
        color: #0C4860;
        font-weight: 500;
        white-space: normal;
        text-align: start;
    }
    .element {
        width: 656px;
        height: 102vh;
        display: flex;
        flex-direction: column;
        font-family: "Montserrat", Sans-serif;
        justify-content: start;
        margin: 0px -8px 0 0;
        align-items: center;
    }
    .textContainerM p {
        font-family: "Montserrat", Sans-serif;
        font-size: 17px;
        color: #0C4860;
        font-weight: 400;
        text-align: center;
    }
    .textContainerM h1 {
        font-size: 3rem;
        color: #0C4860;
        padding: 0 0 0 0px;
        margin-bottom: 10px;
        font-family: 'Vogue';
    }
    .element img {
        width: 55vh;
        height: fit-content;
    }
    .textContainerM {
        width: 69%;
        display: flex;
        flex-direction: column;
        padding: 0 0 0 16px;
        justify-content: center;
    }
    .icons2 {
        width: 135px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 20px 0 20px;
        font-family: "Montserrat", Sans-serif;
        color: #0C4860;
        border-bottom: 2px solid grey;
    }
    .icons2 img {
    width: 50px;
    height: 50px;
    }
    .icons2 p {
        font-size: 11px;
    }

    .element img {
        width: 35vh;
        height: fit-content;
    }
    .secondSlider {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 70px 0 70px 0;
    }
    #healtCare6 {
        background-image: linear-gradient(#c2c2c270, #c2c2c270, #c2c2c270), url(resources/fondo_child_back.jpg);
        background-size: 240% 100%;
        background-position: 50%;
        background-repeat: no-repeat;
    }
    .element tbody td {
        width: auto;
        padding: 6px;
        color: white;
        font-family: "Montserrat", Sans-serif;
        font-size: 16px;
        font-weight: 400;
    }
    .element table {
        width: 55vh;
        padding: 50px;
    }
}

@media (max-width: 750px) {
    .imgInfo {
        width: 638px;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0px 50px 0px 15px;
        transition: 0.4s;
    }
    .element img {
        width: 39vh;
        height: fit-content;
    }
    .element {
        width: 707px;
        height: 102vh;
        display: flex;
        flex-direction: column;
        font-family: "Montserrat", Sans-serif;
        justify-content: start;
        margin: 0px 0 0 0;
        align-items: start;
    }
}
@media (max-width: 698px) {
    .imgInfo {
        width: 635px;
    }
    .imgSlider {
        width: 630px;
        overflow: hidden;
    }
    #elementTable {
        width: 639px;
        display: flex;
        justify-content: center;
        flex-direction: column;
        height: auto;
        align-items: center;
    }
    .element {
        width: 633px;
        height: 86vh;
        display: flex;
        flex-direction: column;
        font-family: "Montserrat", Sans-serif;
        justify-content: start;
        margin: 0px 0 0 0;
        align-items: center;
    }
    #Fourth-right img {
        width: 100%;
        height: max-content;
        overflow-x: hidden;
    }
}

@media (max-width: 640px) {
    .imgInfo {
        width: 624px;
    }
}

@media (max-width: 660px) {
    .imgInfo {
        width: 567px;
    }
}
@media (max-width:623px) {
    #elementTable {
        width: 596px;
        display: flex;
        justify-content: center;
        flex-direction: column;
        height: auto;
        align-items: center;
    }
    .element table {
        width: 71vh;
        padding: 50px;
    }
}
@media (max-width: 556px) {
    .imgInfo {
        width: 490px;
    }
    .element table {
        width: 65%;
        padding: 5px;
    }
    
    .firstText {
        width: 450px;
        margin-left: 10%;
    }
    .element tbody td {
        width: auto;
        padding: 6px;
        color: white;
        font-family: "Montserrat", Sans-serif;
        font-size: 14px;
        font-weight: 400;
    }
    #elementTable {
        width: 555px;
        display: flex;
        flex-direction: column;
        justify-content: start;
        height: auto;
        align-items: center;
    }
    .element table {
        width: 100%;
        padding: 5px;
    }
    .imgSlider {
        width: 100%;
        overflow: hidden;
    }
    .element {
        width: 555px;
        height: 82vh;
        display: flex;
        flex-direction: column;
        font-family: "Montserrat", Sans-serif;
        justify-content: start;
        margin: 0px 0 0 0;
        padding: 0 0px 0 0px;
        align-items: center;
    }
    .textContainerM h1 {
        width: 100%;
        font-size: 21px;
        color: #0C4860;
        padding: 0 0 0 0px;
        margin-bottom: 10px;
        text-align: start;
        font-family: 'Vogue';
        white-space: normal;
    }
    .textContainerM {
        width: 77%;
        display: flex;
        flex-direction: column;
        padding: 0 0 0 0px;
        justify-content: center;
        margin: 0 32px 0 0px;
    }

    #lastTextContainer h1{
        padding: 0 0 0 60px;
    }
    .textContainerM p {
        font-family: "Montserrat", Sans-serif;
        font-size: 14px;
        color: #0C4860;
        font-weight: 400;
        text-align: start;
        white-space: normal;
    }
    .containerAllText {
        display: flex;
        width: 100%;
        justify-content: end;
    }
}

@media (max-width: 548px) {
    .element tbody td {
        width: auto;
        padding: 6px;
        color: white;
        font-family: "Montserrat", Sans-serif;
        font-size: 11px;
        font-weight: 400;
    }
    .element table {
        padding: 5px;
        display: inline;
    }
    .element {
        width: 470px;
        height: 72vh;
        display: flex;
        flex-direction: column;
        font-family: "Montserrat", Sans-serif;
        justify-content: start;
        margin: 0px 0 0 0;
        padding: 0 0px 0 0px;
        align-items: center;
    }
    #elementTable {
        width: 479px;
        display: flex;
        flex-direction: column;
        justify-content: start;
        height: auto;
        align-items: center;
    }
    .element img {
        width: 30vh;
        height: fit-content;
    }
}
@media (max-width: 584px) {
    .imgInformation {
        width: 100%;
        height: 630px;
        display: flex;
        align-items: end;
        background-image: url(resources/dr_lemus.jpg);
        animation: fromLeft 0.8s linear;
        background-size: 100% 100%;
    }
    .secondSection h1 {
        width: 67%;
        font-size: 3rem;
        font-weight: 100;
        letter-spacing: 0.1rem;
        color: var(--principal-color);
        margin: 0 -45px 50px 0;
        text-align: center;
    }
    .secondSection {
        width: 100%;
        height: auto;
        padding: 50px 0 70px 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: #D1E5EE;
    }
    .img-logo {
        width: 260px;
    }
    .menuIcon {
        display: flex;
    }
    .imagesInformationElements {
        width: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    #yaffaimg {
        width: 100%;
        height: 625px;
        display: flex;
        align-items: end;
        background-image: url(https://o9ta6d.p3cdn1.secureserver.net/wp-content/uploads/2023/08/dr_02.jpg?time=1722400172);
        animation: fromLeft 0.8s linear;
        background-size: 100% 100%;
    }
    .Fourth-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: #E8F5F5;
        padding: 70px 0 70px 0;
        overflow-x: hidden;
    }
    .Fourth-section img {
        width: 100%;
        height: auto;
        margin: 0 0 50px 0;
    }
    #third-left img {
        width: 100%;
        height: auto;
    }
    #container2 {
        display: grid;
        place-content: center;
        width: 100%;
        padding: 0 20px 0 20px;
    }
    .textContainer p {
        font-size: 17px;
        color: #0C4860;
        font-family: var(--principal-font-p);
        line-height: inherit;
        line-height: 2;
        font-weight: 500;
        letter-spacing: 1px;
        width: 100%;
        font-family: 'Montserrat', sans-serif;
        white-space: normal;
        text-align: start;
    }
    .textContainer {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 94%;
        margin: 0 0 0 10px;
        text-align: center;
        padding: 0;
    }
    .footerLeft h1 {
        font-size: 40px;
        font-family: 'Vogue';
    }

    .footerLeftElement p {
        font-family: "Montserrat", Sans-serif;
        font-size: 18px;
        font-weight: 400;
        line-height: 25px;
        padding: 0;
    }

    .infoFooter p {
        font-family: "Montserrat", Sans-serif;
        font-size: 16px;
        font-weight: 400;
        line-height: 37px;
    }
    .footerLeftElement img {
        width: 100%;
    }
    .containerAllText2 {
        display: flex;
        width: 100%;
        justify-content: center;
    }
    .icons2 {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: center;
        padding: 20px 20px 20px 20px;
        font-family: "Montserrat", Sans-serif;
        color: #0C4860;
        border-bottom: 2px solid grey;
        border-bottom-width: 2px;
        border-bottom-style: solid;
        border-bottom-color: grey;
    }
}

@media (max-width: 497px) {
    .healtCareCenter {
        width: 90%;
        height: 76vh;
        background: #0c4860d9;
        padding: 23px;
    }
    .firstImg {
        width: 100%;
        height: 65vh;
        display: flex;
        justify-content: start;
        align-items: center;
        background-image: linear-gradient(#00000075, #00000075, #00000075), url(resources/slice-member01.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top;
        overflow: hidden;
    }
    .firstText h1 {
        color: #ffffff;
        font-size: 37px;
        font-weight: 900;
    }
    .firstText p {
        color: #ffffff;
        font-size: 16px;
        font-weight: 900;
    }
    .firstText {
        width: 450px;
        margin-left: 4%;
    }
    #membershipBenefits span {
        margin-left: 4%;
    }
    .imgInfo {
        width: 392px    ;
    }
    .imgInfo img {
        width: 302px;
        height: fit-content;
    }
    .footerLeftElement {
        width: 100%;
        padding: 80px 20px 80px 30px;
    }
    .footerLeftElement img {
        width: 70%;
    }
    .footerRightElement {
        width: 75vh;
        padding: 80px 0px 80px 0px;
    }
}

/* Responsive tabla */
@media (max-width: 452px) {
    .element tbody tr {
        width: auto;
        height: auto;
        padding: 10px 0 10px 0;
    }
    .element tbody td {
        width: auto;
        padding: 6px;
        color: white;
        font-family: "Montserrat", Sans-serif;
        font-size: 15px;
        font-weight: 400;
    }
    .element table {
        padding: 5px;
        display: inline-grid;
    }
    #lastTextContainer h1 {
        padding: 0 0 0 100px;
    }
}

@media (max-width: 421px) {
    .imgInfo {
        width: 354px;
    }
}
@media (max-width:415px) {
    #elementTable {
        width: 405px;
    }
    .element {
        width: 410px;
        height: 72vh;
        display: flex;
        flex-direction: column;
        font-family: "Montserrat", Sans-serif;
        justify-content: start;
        margin: 0px 0 0 0;
        padding: 0 0px 0 0px;
        align-items: center;
    }
    #lastTextContainer h1 {
        padding: 0 0 0 81px;
    }
}
@media (max-width: 410px) {
    #elementTable {
        width: 410px;
        display: flex;
        flex-direction: column;
        justify-content: start;
        height: auto;
        align-items: center;
    }
    .element {
        width: 410px;
        height: 72vh;
        display: flex;
        flex-direction: column;
        font-family: "Montserrat", Sans-serif;
        justify-content: start;
        margin: 0px 0 0 0;
        padding: 0 0px 0 0px;
        align-items: center;
    }
    .textContainerM {
        width: 81%;
        display: flex;
        flex-direction: column;
        padding: 0 0 0 0px;
        justify-content: center;
        margin: 0 32px 0 0px;
    }
    .menuIcon {
        width: 28px;
        height: 25px;
        background-color: #fdfdfd57;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        padding: 4px;
        border-radius: 5px;
    }
    .textContainerSlider h1 {
        width: 100%;
        font-size: 39px;
    }
}

@media (max-width: 375px) {
    #elementTable {
        width: 374px;
        display: flex;
        flex-direction: column;
        justify-content: start;
        height: auto;
        align-items: center;
    }
    .element {
        width: 374px;
        height: 72vh;
        display: flex;
        flex-direction: column;
        font-family: "Montserrat", Sans-serif;
        justify-content: start;
        margin: 0px 0 0 0;
        padding: 0 0px 0 0px;
        align-items: center;
    }
    header {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        transition: 0.2s linear;
        height: 125px;
        z-index: 2;
    }
}

@media (max-width: 365px) {
    .imgInfo {
        width: 324px;
    }
    .textContainerSlider p {
        width: 100%;
        font-size: 15px;
        font-family: 'Montserrat';
        color: #0C4860;
        font-weight: 500;
        white-space: normal;
        text-align: start;
    }
    .textContainerSlider h1 {
        width: 100%;
        font-size: 39px;
    }
    #elementTable {
        width: 363px;
        display: flex;
        flex-direction: column;
        justify-content: start;
        height: auto;
        align-items: center;
    }
    .element {
        width: 363px;
        height: 72vh;
        display: flex;
        flex-direction: column;
        font-family: "Montserrat", Sans-serif;
        justify-content: start;
        margin: 0px 0 0 0;
        padding: 0 0px 0 0px;
        align-items: center;
    }
}

@media (max-width: 320px) {
    .textContainerSlider {
        width: 93%;
        padding: 21px;
        text-align: center;
    }
    #elementTable {
        width: 319px;
        display: flex;
        flex-direction: column;
        justify-content: start;
        height: auto;
        align-items: center;
    }

    .element img {
        width: 80%;
        height: fit-content;
        margin: 40px 0 0 0px;
    }

    .imgInfo {
        width: 294px;
    }
    .imgInfo img {
        width: 302px;
        height: fit-content;
    }
    .textContainerSlider {
        width: 100%;
        padding: 21px;
        text-align: center;
    }
    .element {
        width: 319px;
        height: 743px;
        display: flex;
        flex-direction: column;
        font-family: "Montserrat", Sans-serif;
        justify-content: start;
        margin: 0px 0 0 0;
        padding: 0 0px 0 0px;
        align-items: center;
    }
    .icons2 {
        width: 176px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 20px 0 20px;
        font-family: "Montserrat", Sans-serif;
        color: #0C4860;
        border-bottom: 2px solid grey;
    }
    .icons2 p {
        font-size: 10px;
    }
    #membershipBenefits span {
        margin-left: 4%;
    }
}

@media (max-width: 325px) {
    .imgInfo {
        width: 295px;
    }
    .imgInfo img {
        width: 244px;
        height: fit-content;
    }
    .textContainerSlider {
        width: 100%;
        padding: 12px;
        text-align: center;
    }
    .textContainerSlider p {
        width: 91%;
        font-size: 15px;
        font-family: 'Montserrat';
        color: #0C4860;
        font-weight: 500;
        white-space: normal;
        text-align: start;
    }
    #membershipBenefits span {
        margin-left: 4%;
    }
    #membershipBenefits span p {
        color: #D4E7F0;
        font-size: 28px;
        font-weight: 100;
        letter-spacing: 2.4px;
        word-spacing: 0px;
        margin: 6px 0 6px 0;
    }
    .link-logo {
        width: 100%;
    }
}

@media (max-width: 300px) {
    .imgInfo {
        width: 255px;
    }
    .textContainerSlider p {
        width: 100%;
        font-size: 13px;
        font-family: 'Montserrat';
        color: #0C4860;
        font-weight: 300;
        white-space: normal;
    }
    .img-logo {
        width: 230px;
    }
    .link-logo {
        width: 80%;
    }
}
@media (max-width: 266px) {
    #elementTable {
        width: 266px;
        display: flex;
        flex-direction: column;
        justify-content: start;
        height: auto;
        align-items: center;
    }
    .element {
        width: 319px;
        height: 102vh;
        display: flex;
        flex-direction: column;
        font-family: "Montserrat", Sans-serif;
        justify-content: start;
        margin: 0px 0 0 0;
        padding: 0 0px 0 0px;
        align-items: center;
    }
}

@media (max-width: 278px) {
    #elementTable {
        width: 277px;
    }
    .element {
        width: 277px;
    }
    .textContainerM h1 {
        width: 100%;
        font-size: 15px;
        color: #0C4860;
        padding: 0 0 0 0px;
        margin-bottom: 10px;
        text-align: center;
        font-family: 'Vogue';
    }
}
