

body, html {
    padding: 0;
    margin: 0;
    overflow-x: clip;
}
a {
    text-decoration: none;
    color: black;
}
img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* Hero */
.hero-section {
    width: 100%;
    height: 89vh;
}
.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
}
.hero-text {
    position: absolute;
    top: 50%;
    left: 26%;
    transform: translate(-50%, -100%);
}
.hero-text-responsive {
    display: none;
}
.hero-text p {
    color: white;
    font-size: 3em;
    font-family: 'Inter';
    margin: 0;
}
.hero-text span {
    background-color: #3CBEB1;
}


/* Texto */
.text-section {
    width: 100%;
    padding: 4% 0;
    white-space: nowrap;
    flex-wrap: nowrap;
    border-top: 12px solid #3CBEB1;
    border-bottom: 12px solid #3CBEB1;
}
.text-section p, .text-section span {
    font-family: 'Inter';
    font-weight: 600;
    margin: 0;
    text-align: center;
}
.text-section p {
    font-size: 2.3em;
}
.text-section span {
    color: white;
    background-color: black;
    font-size: 1em;
    padding: 5px 12px;
    line-height: 2em;
}


/* Team */
.team-section {
    width: 100%;
    position: relative;
}
.gradient {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
}
.team-flex {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 70vh;
}
.flex-image1 {
    width: 50%;
    height: 100%;
}
.flex-image {
    width: 50%;
    height: 100%;
}
.flex-image-middle {
    width: 50%;
    height: 100%;
}
.flex-image-middle-column {
    display: none;
}
.flex-image1 img {
    object-position: 0% 5%;
}
.flex-info {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}
.flex-info-middle {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}
.flex-image-middle img {
    object-position: 0% 12%;
}
.flex-info svg {
    width: 27vw;
    height: auto;
    opacity: 8%;
}
.flex-title svg {
    width: 20vw;
    height: auto;
}
.flex-info-middle svg {
    width: 27vw;
    height: auto;
    opacity: 8%;
}
.flex-text {
    width: 50%;
    position: absolute;
}
.flex-title h2 {
    font-size: 2.3em;
    font-family: 'Inter';
    font-weight: 800;
    text-align: center;
    position: relative;
    z-index: 2;
}
.text-info p {
    font-size: 1.2em;
    font-family: 'Inter';
    font-weight: 400;
}
.blue-title {
    height: 0;
}
.blue-title svg {
    width: 25vw;
    height: auto;
    transform: translateY(-160%);
    opacity: 100%;
}


/* Card */
.info-section {
    width: 100%;
    padding: 4% 0;
    border-top: 12px solid #3CBEB1;
}
.info-title p, .info-title span {
    font-family: 'Inter';
    font-weight: 600;
    margin: 0;
    text-align: center;
    white-space: nowrap;
    flex-wrap: nowrap;
}
.info-title p {
    font-size: 2.3em;
}
.info-title span {
    color: white;
    background-color: black;
    font-size: 1em;
    padding: 5px 12px;
    line-height: 2em;
}
.info-flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 33.5%;
    padding-top: 5%;
    box-sizing: border-box;
    width: 100%;
    height: auto;
}
.info-card {
    width: 45%;
    height: 55vh;
    background-color: #F1F0F0;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.info-card h3 {
    font-size: 1.5em;
    font-weight: 600;
    font-family: 'Inter';
    padding-left: 15%;
}
.card-logo {
    height: 43%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.card-logo svg {
    width: 3vw;
    height: auto;
    padding-left: 15%;
    padding-top: 20%;
}
.card-info {
    width: 70%;
    padding: 0 15%;
    height: 57%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.card-info p {
    font-size: 0.8em;
    font-family: 'Inter';
    line-height: 1.6em;
}
.card-button {
    margin-bottom: 20%;
}
.card-button a {
    font-size: 0.8em;
    font-family: 'Inter';
    font-weight: 600;
    color: white;
    background-color: black;
    padding: 10px 15px;
}




@media only screen and (max-width:1600px){
    .hero-text {
        transform: translate(-50%, -100%);
    }
    .hero-text p {
        font-size: 2.7em;
    }
    .text-section p {
        font-size: 2em;
    }
    .flex-info svg {
        width: 30vw;
    }
    .flex-text {
        width: 65%;
    }
    .text-info p {
        font-size: 1.1em;
    }
    .blue-title svg {
        width: 31vw;
    }
    .info-flex {
        padding: 0 30%;
        padding-top: 5%;
    }
    .info-card {
       height: 65vh;
    }
} 


@media only screen and (max-width:1280px){
    .hero-text {
        left: 29%;
        transform: translate(-50%, -140%);
    }
    .hero-text p {
        font-size: 2.4em;
    }
    .text-section p {
        font-size: 1.6em;
    }
    .flex-info svg, .flex-info-middle svg {
        width: 35vw;
    }
    .flex-text {
        width: 70%;
    }
    .info-title {
        padding-bottom: 5%;
    }
    .info-title p {
        font-size: 1.6em;
    }
    .info-flex {
        padding: 0 23%;
    }
    .card-logo svg {
        width: 4.6vw;
    }
}


@media only screen and (max-width:985px){
    .hero-text {
        left: 29%;
        transform: translate(-37%, -140%);
    }
    .hero-image img {
        object-position: 70% 0%;
    }
    .text-section {
        white-space: unset;
        flex-wrap: unset;
    }
    .flex-info svg, .flex-info-middle svg {
        width: 44vw;
    }
    .blue-title svg {
        width: 40vw;
        transform: translateY(-200%);
    }
    .flex-title h2 {
        font-size: 2.1em;
    }
    .flex-text {
        width: 80%;
    }
    .text-info p {
        font-size: 1em;
    }
    .info-flex {
        padding: 0 12%;
    }
    .card-logo {
        height: 39%;
    }
    .card-logo svg {
        width: 7vw;
    }
    .card-info {
        height: 61%;
    }
}


@media only screen and (max-width:650px){
    .hero-text {
        display: none;
    }
    .hero-text-responsive {
        display: block;
        top: 45%;
        left: 47%;
        transform: translate(-50%, -100%);
        width: 81%;
        position: absolute;
    }
    .hero-text-responsive p {
        color: white;
        font-size: 1.8em;
        font-family: 'Inter';
        margin: 0;
    }
    .hero-text-responsive span {
        background-color: #3CBEB1;
    }
    .text-section p {
        font-size: 1.4em;
    }
    .team-flex {
        flex-direction: column;
        height: auto;
    }
    .flex-image-middle {
        display: none;
    }
    .flex-image-middle-column {
        display: block;
    }
    .flex-image1, .flex-image-middle-column, .flex-image {
        width: 100%;
        height: 50vh;
    }
    .flex-title h2 {
        font-size: 1.9em;
    }
    .flex-text {
        width: 85%;
    }
    .flex-info, .flex-info-middle {
        height: auto;
        width: 100%;
    }
    .flex-info p, .flex-info-middle p {
        text-align: center;
        font-size: 1.1em;
    }
    .flex-info svg, .flex-info-middle svg {
        width: 55vw;
        padding: 3% 0;
    }
    .blue-title svg {
        width: 65vw;
        transform: translate(14%, -110%);
    }
    .info-title {
        width: 100%;
        padding: 5% 2%;
        box-sizing: border-box;
    }
    .info-title p, .info-title span {
        text-align: center;
        white-space: unset;
        flex-wrap: unset;
    }
    .info-title p {
        font-size: 1.4em;
    }
    .info-flex {
        padding: 0 5%;
        flex-direction: column;
    }
    .info-card {
        width: 75%;
        margin: 2% 0%;
    }
    .info-card h3 {
        padding-left: 0;
        text-align: center;
    }
    .card-logo {
        height: 30%;
        align-items: center;
        margin-top: 15%;
    }
    .card-logo svg {
        width: 65px;
        padding-left: 0;
        padding-top: 0;
    }
    .card-info {
        height: 70%;
    }
    .card-info p {
        font-size: 0.9em;
        text-align: center;
    }
    .card-button {
        text-align: center;
    }
}


@media only screen and (max-width:430px){
    .hero-text-responsive {
        left: 50%;
        width: 91%;
    }
    .hero-text-responsive p {
        font-size: 1.7em;
    }
    .hero-image img {
        object-position: 69% 0%;
    }
    .text-section {
        padding: 10% 1%;
        box-sizing: border-box;
    }
    .flex-title {
        width: 100%;
        padding: 0 3%;
        box-sizing: border-box;
    }
    .flex-info p, .flex-info-middle p {
        font-size: 1em;
    }
    .flex-info svg, .flex-info-middle svg {
        width: 70vw;
        padding: 3% 0;
    }
    .blue-title svg {
        width: 73vw;
        transform: translate(5%, -140%);
    }
    .info-card {
        width: 90%;
    }
    .card-logo svg {
        width: 60px;
    }
}
