* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

a, button, [role="button"] {
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
[role="button"]:focus:not(:focus-visible) {
    outline: none;
    box-shadow: none;
}

.sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--color-1);
    color: var(--color-2);
    padding: 10px 16px;
    z-index: 2000;
    text-decoration: none;
    border-radius: 0 0 8px 0;
    font-family: var(--font-display);
    letter-spacing: 1px;
}

.skip-link:focus {
    top: 0;
}

:root {
    --font-display: "Oswald", sans-serif;
    --font-body: "Inter", sans-serif;
    --color-1: #050A1B;
    --color-2: #E2E2E4;
    --color-3: #25D366;
    --color-4: #060A20;
    --color-5: #ececec;
    --color-6: #ffffff;
    --color-7: #E4E4E7;
    --color-8: #2d2db3;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.5px;
}

p {
    font-family: var(--font-body);
    font-size: 1.3rem;
    line-height: 30px;
    font-weight: 400;
}

span {
    font-family: var(--font-body);
    font-size: 1.3rem;
    line-height: 30px;
    font-weight: 600;
}

body {
    width: 100%;
    min-height: 100vh;
    background-color: var(--color-2);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--font-body);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
    transition: transform 0.3s ease;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: center;
    width: 100%;
    min-height: 10vh;
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    color: var(--color-2);
    background-color: var(--color-1);
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    height: 10vh;
    max-height: 10vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 15px;
}

.nav-img img {
    width: 80px;
}

.nav-link {
    display: flex;
    gap: 2rem;
    list-style: none;
    transition: all 0.3s ease;
}

.nav-link a {
    color: var(--color-2);
    text-decoration: none;
    transition: all 0.2s;
}

.nav-link a:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.menu-btn {
    display: flex;
    align-items: center;
    background-color: transparent;
    border: none;
    color: var(--color-2);
    font-size: 1rem;
    cursor: pointer;
    display: none;
}

.main {
    width: 100%;
    background-color: var(--color-6);
}

.main-section {
    color: var(--color-2);
    width: 100%;
    height: 100vh;
}

.main-section-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100vh;
    padding-top: 10vh;
    background-color: #060A20;
    color: var(--color-2);
}

.main-section-profile-one,
.main-section-profile-two {
    width: 100%;
    height: 50vh;
}

.main-section-profile-one {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    max-width: 1200px;
    gap: 50px;
    padding: 0px 15px;
}

.main-section-profile-one div {
    width: 100%;
    height: 100%;
}

.main-section-profile-one-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-section-profile-one-logo figure {
    width: 250px;
    height: 150px;
    overflow: hidden;
}

.main-section-profile-one-logo figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-section-profile-one-logo p,
.main-section-profile-one-logo h1 {
    font-family: serif;
    font-size: 0.7rem !important;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 30px;
}

.main-section-profile-one-desc {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-section-profile-one-desc p {
    font-size: 1rem !important;
}

.main-section-profile-one-logo span {
    width: 2px;
    height: 100px;
    background-color: var(--color-2);
}


.main-section-profile-two {
    width: 100%;
    height: 300px;
}

.main-section-profile-two figure {
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
}

.main-section-profile-two img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-section-text {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 20vh;
    background-color: var(--color-4);
    color: var(--color-2);
    text-align: center;
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 3rem;
}

.main-section-text p,
.main-section-text h2 {
    font-family: var(--font-body);
    font-size: 1.3rem;
    line-height: 30px;
    font-weight: 400;
    letter-spacing: 2px;
}

.carousel {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.track {
    display: flex;
    width: max-content;
    animation: scroll 20s linear infinite;
}

.card {
    width: 260px;
    height: 260px;
    margin: 0 10px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    background-color: #000;
}

.card-background {
    opacity: 0.6;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    color: #fff;
    gap: 10px;
}

.content img {
    width: 100px;
}

.icon {
    font-size: 20px;
}

.content h3 {
    margin: 5px 0 0;
    font-size: 18px;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.main-section-who_we_are {
    display: flex;
    justify-content: center;
    width: 100%;
}

.main-section-who_we_are > div {
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 50px;
    width: 100%;
    max-width: 1200px;
    padding: 80px 30px 80px;
}

.main-section-who_we_are p {
    color: var(--color-4);
}

.main-section-who_we_are .cta-wrap {
    margin: 0;
}

.main-section-who_we_are h3,
.main-section-who_we_are h2 {
    color: var(--color-4);
    font-size: 3rem;
    margin: 0;
}

.who-we-are-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    row-gap: 24px;
}

.who-we-are-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.who-we-are-tab {
    appearance: none;
    border: 0;
    cursor: pointer;
    padding: 14px 28px;
    border-radius: 999px;
    background-color: var(--color-8);
    color: var(--color-6);
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 1.25rem;
    line-height: 1;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 10px rgba(45, 45, 179, 0.18);
}

.who-we-are-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(45, 45, 179, 0.28);
}

.who-we-are-tab.is-active {
    background-color: var(--color-4);
    box-shadow: 0 4px 10px rgba(6, 10, 32, 0.3);
}

.who-we-are-tab:focus-visible {
    outline: 3px solid var(--color-3);
    outline-offset: 3px;
}

.who-we-are-panel {
    animation: fadeIn 0.25s ease;
}

.who-we-are-panel[hidden] {
    display: none;
}

.who-we-are-values {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: var(--color-4);
    font-family: var(--font-body);
    font-size: 1.3rem;
    line-height: 30px;
}

.who-we-are-values li {
    padding-left: 22px;
    position: relative;
}

.who-we-are-values li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 13px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-8);
}

.who-we-are-values strong {
    color: var(--color-4);
    font-weight: 700;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .who-we-are-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .who-we-are-tabs {
        width: 100%;
        justify-content: flex-start;
        margin-top: 15px;
    }

    .who-we-are-tab {
        padding: 12px 22px;
        font-size: 1.05rem;
        flex: 1 1 auto;
        min-width: 110px;
        text-align: center;
        border-radius: 0;
    }

    .main-section-who_we_are h3,
    .main-section-who_we_are h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .who-we-are-tabs {
        flex-direction: column;
    }

    .who-we-are-tab {
        width: 100%;
        border-radius: 0;
    }
}

.main-section-who_we_are a {
    padding: 15px 30px;
    border-radius: 10px;
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 1.5rem;
    text-decoration: none;
    color: var(--color-6);
    background-color: var(--color-8);
    margin-top: 20px;
}

.main-section-img {
    width: 100%;
    height: 300px;
    background-image: url("../assets/img/portada-nrw.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.main-section-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.main-section-certified {
    position: relative;
    background: #0b1a2f;
    padding: 80px 20px 40px;
    text-align: center;
    color: #fff;
}

.main-section-certified div {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
}

.main-section-certified img {
    width: 300px;
}

.main-section-certified h3,
.main-section-certified h2 {
    padding: 20px 0px;
}

.main-section-contact {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-section-contact-carousel {
    overflow: hidden;
    width: 80%;
    height: 80vh;
    border-radius: 20px;
}

.contact-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.contact-track article h3, .contact-track article span { color: var(--color-4); }

.slide {
    height: 100%;
    min-width: 100%;
    display: flex;
    font-size: 2rem;
    background: var(--color-7);
    justify-content: center;
    align-items: stretch;
}

.slide figure {
    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
    min-width: 0;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-sizing: border-box;
    margin: 0;
}

.slide img,
.slide-map-placeholder {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    display: block;
}

.slide-map-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: repeating-linear-gradient(45deg, #e9ecf1, #e9ecf1 10px, #f4f5f8 10px, #f4f5f8 20px);
    color: #6b7280;
    font-size: 0.95rem;
    font-family: var(--font-display);
    letter-spacing: 1px;
    text-align: center;
    padding: 8px;
}

.slide section,
.slide > div {
    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    height: auto;
    padding: 20px;
    box-sizing: border-box;
    list-style: none;
}

.slide address {
    font-style: normal;
}

.slide ul {
    display: flex;
    height: 100%;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 15px;
    list-style: none;
    padding: 0;
}

.slide ul a {
    color: inherit;
    text-decoration: none;
}

.slide ul a:hover {
    text-decoration: underline;
}

.item {
    display: flex;
    align-items: center;
}

.item img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 40px;
    cursor: pointer;
    color: var(--color-8);
}

.left {
  left: 10px;
}

.right {
  right: 10px;
}

.main-section-inf {
    display: grid;
    gap: 50px;
    padding: 40px 20px;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "item1 item2" "item3 item4";
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 80px;
}

.item1, .item2, .item3 , .item4 { 
    color: var(--color-4);
    height: 30vh; 
}

.item1 { grid-area: item1; }
.item2 { grid-area: item2; }
.item3 { grid-area: item3; }
.item4 { grid-area: item4; }

.main-section-inf div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 0px 10px;
    gap: 50px;
}

.item1, .item4 { container-type: inline-size; }

.item1 p ,
.item4 p {
    font-family: var(--font-display);
    font-size: 20cqw;
    font-weight: 700;
    line-height: 1;
}

.item1 p span,
.item4 p span {
    font-family: var(--font-display);
    font-size: 20cqw;
    font-weight: 700;
    color: var(--color-3);
}

.item1-text,
.item4-text {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 5cqw !important;
}

.main-section-products {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 15vh;
    background-color: var(--color-4);
    color: var(--color-6);
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 3px;
}

.main-section-products p,
.main-section-products h2 {
    font-family: var(--font-body);
    font-size: 1.3rem;
    line-height: 30px;
    font-weight: 600;
    letter-spacing: 3px;
}

.main-products {
    width: 100%;
    max-width: 1200px;
    height: 100vh;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    justify-content: center;
    margin-bottom: 70px;
}

.main-products-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-products-content h2 {
    color: var(--color-4);
}

.main-products-content-one {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
}

.main-products-content-two {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    list-style-position: inside;
    padding: 0px 40px;
    font-family: var(--font-body);
    font-weight: 500;
}

.main-products-content li, .main-products-button  { color: var(--color-4); }

.main-products-line {
    width: 2px;
    height: 50vh;
    background-color: var(--color-1);
}

.main-products-button {
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
}

.main-products-button p {
    font-family: serif;
    font-size: 1.3rem;
}

.main-products-button a {
    background-color: var(--color-8);
    color: var(--color-6);
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-decoration: none;
    padding: 20px 25px;
    border-radius: 10px;
}

.container-reverse {
    flex-direction: row-reverse;
}

.main-img {
    margin-top: 20px;
    width: 100%;
    height: 40vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

}

.main-img h2 {
    font-size: 1rem;   
    color: var(--color-6);
    font-weight: bold;
}

.main-img img {
    position: absolute;

    top: -65px;
    left: 50%;
    transform: translateX(-50%);

    width: 200px;
    height: auto;
}

.main-img-1 { background-image: url('../assets/img/limpieza-nrw.webp'); }
.main-img-2 { background-image: url('../assets/img/mezcla-nrw.webp'); }
.main-img-3 { background-image: url('../assets/img/agua-nrw.webp'); }
.main-img-4 { background-image: url('../assets/img/agricultura-nrw.webp'); }
.main-img-5 { background-image: url('../assets/img/alimenticia-nrw.webp'); }
.main-img-6 { background-image: url('../assets/img/pintura-nrw.webp'); }
.main-img-7 { background-image: url('../assets/img/mineria-nrw.webp'); }

.main-img-1, .main-img-2, .main-img-3, .main-img-4, .main-img-5, .main-img-6, .main-img-7 {
    background-blend-mode: darken;
    background-color: rgba(0, 0, 0, 0.5);
}


.contact-section{
    width:100%;
    max-width: 1000px;
    min-height: 100vh;
    margin:auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 20px;
}

.contact-section h4,
.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--color-4);
}
.contact-nav{
    display:flex;
    gap: 30px;
    flex-wrap:wrap;
    margin-bottom:30px;
}

.branch{
    border:none;
    background:none;
    font-family: var(--font-display);
    font-size:18px;
    font-weight:600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor:pointer;
    color:var(--color-4);
    transition:.3s;
}

.branch.active{ color:var(--color-8); }

.contact-form {
    border-radius: 20px;
    background-color: #DCE3F2;
    padding: 20px;
}

.form-top {
    display: flex;
    gap: 10px;
    color: var(--color-4);
}

.input-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 10px;
}

.input-group input {
    width: 100%;
    display: flex;
    height: 30px;
    border: none;
    background-color: #d3d9ee;
    border-radius: 5px;
    padding: 0px 10px;
    border: none;
    outline: none;
    color: var(--color-4);
}

.form-message { 
    color: var(--color-4);
    margin-top: 20px; 
}

.form-message textarea {
    width: 100%;
    min-height: 20vh;
    resize: none;
    border: none;
    background-color: #d3d9ee;
    margin-top: 10px;
    border-radius: 5px;
    outline: none;
    padding: 10px;
    color: var(--color-4);
}

.send-btn {
    width: 100%;
    background-color: var(--color-8);
    color: var(--color-6);
    padding: 8px;
    margin-top: 20px;
    border: none;
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 5px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.send-btn:disabled,
.send-btn.is-loading {
    cursor: not-allowed;
    opacity: 0.75;
}

.send-btn-spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: send-btn-spin 0.7s linear infinite;
}

.send-btn.is-loading .send-btn-spinner {
    display: inline-block;
}

@keyframes send-btn-spin {
    to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .send-btn-spinner { animation-duration: 2s; }
}

.footer{
    width:100%;
    min-height: 15vh;
    padding:30px 20px;

    display:flex;
    justify-content:center;
    align-items: center;

    background:var(--color-2);
}

.footer p{
    color: var(--color-4);
    font-size: 0.7rem;
    letter-spacing:1px;
    text-align: center;
}

.whatsapp-container{
    position: fixed;
    right: 20px;
    bottom: 30px;
    z-index: 999;
}

.whatsapp-btn{
    width: 65px;
    height: 65px;
    border: none;
    border-radius: 50%;
    background: var(--color-3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,.2);
}

.whatsapp-btn img{ width: 35px; }

.whatsapp-menu{
    position: absolute;
    right: 0;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: .3s;
}

.whatsapp-menu.active{
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.whatsapp-menu a{
    background: var(--color-3);
    padding: 12px 18px;
    border-radius: 15px;
    text-decoration: none;
    color: var(--color-6);
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0,0,0,.15);
}

@media (max-width: 768px) {
    .menu-btn { display: block; }

    .nav-link {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-1);
        flex-direction: column;
        align-items: center;
        padding: 1.5rem 0 3rem;
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .nav-link.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-link li {
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .nav-link.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-link li:nth-child(1) {transition-delay: 0.1s;}
    .nav-link li:nth-child(2) {transition-delay: 0.2s;}
    .nav-link li:nth-child(3) {transition-delay: 0.3s;}
    .nav-link li:nth-child(4) {transition-delay: 0.4s;} 
    .nav-link li:nth-child(5) {transition-delay: 0.5s;}

    .main-section-inf {
        grid-template-columns: 1fr;
        grid-template-areas: "item1" "item2" "item4" "item3";
    }

    .main-section-inf {
        gap: 0px;
    }

    .item1, .item2, .item3 , .item4 {
        height: auto;
        padding: 20px 0px !important;
    }

    .main-section-inf div {
        padding: 50px;
        gap: none;
    }

    .item1,
    .item4 {
        padding-top: 80px !important;
    }

    .main-products {
        height: 100vh;
        flex-direction: column;
        align-items: self-start;
        padding: 15vh 0vh;
        gap: 20px;
    }

    .main-products-content {
        width: 100%;
        gap: 10px;
    }

    .main-products-content-one img {
        width: 90px;
    }

    .main-products-content-one {
        margin-bottom: 20px;
    }

    .main-products-content-two {
        flex-direction: column;
        gap: 0px;
    }

    .main-products-line {display: none;}

    .main-products-button {
        justify-content: start;
        padding: 0px 30px 0px;
        margin-top: 50px;
    }

    .form-top {
        padding: 10px 0px;
        flex-direction: column;
    }

    .input-group {
        align-items: self-start;
        flex-direction: column;
    }

}

@media (max-width: 1025px) {
    .main-section-profile-one {
        flex-direction: column;
    }

    .main-section-profile-one-logo {
        justify-content: center;
        align-items: center;
    }

    .main-section-profile-one-logo figure {
        width: 120px;
        height: 50px;
    }

    .main-section-profile-one-logo span {
        height: 50px;
    }

    .main-section-profile-one-logo p { font-size: 0.8rem; }

    .main-section-profile-one-desc {
        padding: 0px 15px 40px;
        text-align: center;
    }

    .main-section-who_we_are h3,
    .main-section-who_we_are h2 { font-size: 1.8rem; }

    p {
        font-size: 1rem;
        line-height: 25px;
    }

    span {
        font-size: 0.8rem;
        line-height: 25px;
        font-weight: bold;
    }

    .main-section-who_we_are a {
        padding: 10px 25px;
        font-size: 1rem;
        line-height: 25px;
        margin-top: 20px;
    }

    .slide {
        font-size: 1.5rem;
        flex-direction: column;
    }

    .slide figure,
    .slide section,
    .slide > div {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
    }

    .item img {
        width: 20px;
        height: 20px;
    }

}
