@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Oswald:wght@200..700&display=swap');

:root {
    --primary: #d61e25;
    --secondary: #e5262a;
    --black: #0000;
    --white: #ffffff;
    --surface: #cfcfcf;
    --surface-transparent: #cfcfcf94;
    --black: #333;
}

* {
    font-family: "Mulish", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    overflow-x: hidden;
}

body {
    background: var(--primary);
    max-width: 100vw;
}   

#main title {
    color: rgba(0, 0, 0, 0.001);
    position: absolute;
    top: 0;
    z-index: 0;
}

.wp-btn {
    position: fixed;
    z-index: 90000;
    bottom: 16px;
    left: 16px;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 2.4em;
    align-items: center;
    text-align: center;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, .3);
    transition: 0.5s linear ease-in-out;
    -webkit-animation: slide-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: slide-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation-delay: 1.5s;
}

.wp-btn:hover {
    background: #25d366;
    color: #fff;
}

.wp-btn a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    font-style: none;
    color: black;
    margin: 0;
}

.wp-btn:hover a {
    color: #fff;
}

/**
 * ----------------------------------------
 * animation slide-right
 * ----------------------------------------
 */
@-webkit-keyframes slide-right {
0% {
    -webkit-transform: translateX(-160px);
            transform: translateX(-160px);
}
100% {
    -webkit-transform: translateX(16px);
            transform: translateX(16px);
}
}
@keyframes slide-right {
0% {
    -webkit-transform: translateX(-160px);
            transform: translateX(-160px);
}
100% {
    -webkit-transform: translateX(16px);
            transform: translateX(16px);
}
}

section.home {
    padding: 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

section.home .logo {
    position: absolute;
    height: 80px;
    top: 0px;
    z-index: 100;
    cursor: pointer;
    width: calc(100vw - 60px);
}

section.home .logo img {
    height: 100%;
}

/* shapes */
section.home .clip1 {
    width: 70vw;
    height: 50vh;
    clip-path: polygon(60% 0, 0 0, 0 100%);
    background: var(--surface);
    position: absolute;
    top: 0;
    left: 0;
}

section.home .clip2 {
    width: 70vw;
    height: 50vh;
    clip-path: polygon(60% 100%, 0 0, 0 100%);
    ;
    background: var(--secondary);
    position: absolute;
    bottom: 0;
    left: 0;
}

section.home .formside {
    position: absolute;
    top: 0;
    right: 45px;
    height: 100%;
    margin: 0;
    width: 45%;
    max-height: 100vh;
}

section.home .formside img {
    height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    right: 60px;
    animation: kenburns-bottom 2.5s ease-out both;
}

/* keyframes imagen */
/* ----------------------------------------------
 * Generated by Animista on 2024-9-4 14:31:4
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation kenburns-left
 * ----------------------------------------
 */
@keyframes kenburns-bottom {
    0% {
        transform: scale(1) translateY(10px) translateX(-10px);
        transform-origin: 50% 84%;
    }

    100% {
        transform: scale(1.10) translateY(0px);
        transform-origin: bottom;
    }
}

section.home .content {
    position: relative;
    max-width: 900px;
    z-index: 1;
    background: var(--surface-transparent);
    padding: 16px 64px;
    border-radius: 8px;
    min-width: 320px;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}

section.home .content h2 {
    margin: 20px 0;
    color: var(--black);
    font-size: 2em;
    font-weight: 700;
    line-height: 1.1em;
    animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}

@keyframes tracking-in-expand {
    0% {
        letter-spacing: -0.5em;
        opacity: 0;
    }

    40% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

section.home .content h3 {
    margin: 8px 0;
    color: var(--black);
    font-size: 1.4em;
    font-weight: 600;
    line-height: 0.9em;
    text-transform: uppercase;
}

section.home .content p {
    font-size: 1.3em;
    font-weight: 400;
    color: var(--white);
    margin: 20px 0 10px;
}

section.home .content a {
    color: var(--white);
    background: var(--secondary);
    font-size: 1.5em;
    margin: 20px 0;
    font-weight: 600;
    padding: 16px 32px;
    display: inline-block;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid transparent;
    animation: slide-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes slide-top {
    0% {
        transform: translateY(-100px);
    }

    100% {
        transform: translateY(0);
    }
}


section.home .content a:hover {
    color: var(--black);
    background: transparent;
    border: 2px solid var(--black);
}

/* navigation */

.toggle-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: var(--surface);
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3em;
    cursor: pointer;
    z-index: 1000;
}

.navigation {
    position: fixed;
    top: 0;
    left: calc(100% - 60px);
    width: 100%;
    height: 100%;
    background: var(--surface);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.navigation.active {
    left: 0px;
}

.navigation .loading {
    width: 300px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.navigation .loading.hidden {
    display: none;
}


.navigation .loading h2 {
    text-transform: capitalize;
    font-size: 2.5em;
    font-weight: 400;
    color: var(--black);
    animation: tracking-in-expand-fwd 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}

.navigation .loading .loading-bar {
    width: 100%;
    height: 10px;
    background: var(--primary);
    animation: loading 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes loading {
    0% {
        transform: scaleX(0);
        transform-origin: 0% 0%;
        opacity: 1;
    }

    100% {
        transform: scaleX(1);
        transform-origin: 0% 0%;
        opacity: 1;
    }
}


.navigation ul {
    position: relative;
    display: none;
}

.navigation ul.show {
    display: block;
}

.navigation ul li {
    position: relative;
    list-style: none;
    text-align: center;
}

.navigation ul li a {
    font-size: 2.8em;
    color: var(--black);
    text-decoration: none;
    font-weight: 400;

}

.navigation ul li a.active {
    animation-delay: 1s;
    animation: tracking-in-expand-fwd 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}

@keyframes tracking-in-expand-fwd {
    0% {
        letter-spacing: -0.5em;
        transform: translateZ(-700px);
        opacity: 0;
    }

    40% {
        opacity: 0.6;
    }

    100% {
        transform: translateZ(0);
        opacity: 1;
    }
}

.navigation ul li a:hover {
    color: var(--secondary);
}



/* # section 2 */

h3 {
    font-size: 3em;
    font-weight: 800;
    color: var(--primary);
}

p {
    font-size: 1.2em;
    font-weight: 400;
    color: var(--black);
}

h2,
h3,
h4 {
    text-transform: capitalize;
}

section.vertical {
    padding: 200px 20px;
    height: auto;
    width: calc(100vw - 60px);
    background: var(--secondary);
    position: relative;
}

.col.col-right {
    flex: 1;
    min-width: 300px;
    max-width: 35%;
    background: var(--secondary);
    padding: 30px;
}


.col-left {
    width: 65%;
    background: var(--surface);
    height: 100%;
    padding: 60px 30px;
    display: flex;
    flex-direction: column;
}

.col-left .heading {
    margin: 32px 0px;

}

.col-left .heading h3 {
    text-transform: none;
    color: rgba(0, 0, 0, 0.79);
    font-weight: 600;
    font-size: 2.2em;
    line-height: 1.2em;
    margin-bottom: 20px;

}

.vertical__content {
    display: flex;
    align-items: start;
    justify-content: flex-start;

}

.vertical__content h2 {
    color: var(--white);
    font-size: 4vw;
    font-weight: 900;
    line-height: 90%;
    margin: 40px 0;
    padding: 25px;
    border-left: 3px solid var(--surface);
}

.vertical__content h2 span {
    display: block;
    color: var(--black);
    font-size: 0.8em;
}

.vertical__item:not(:last-child) {
    margin-bottom: 50px;
}


/* Seccion 3 */

section.horizontal .horizontal__content {
    display: flex;
}

section.horizontal .horizontal__item {
    height: 100vh;
    min-width: calc(100vw - 0px);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    
}

section.horizontal .horizontal__item .left-bar{

    width: 10vw;
    height: 100%;
    background: var(--surface);
    display: flex;
    flex-direction: column;
    
}

section.horizontal .horizontal__item .left-bar .lb-text{
    writing-mode: vertical-lr;
    text-orientation: sideways-right;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 3em;
    font-weight: 900;
}

section.horizontal .horizontal__item .left-bar .square-top {
    background: #333;
    width: 100%;
    height: 20%;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

section.horizontal .horizontal__item .left-bar .square-top h1 {
    font-size: 6em;
    font-weight: 900;
    color: var(--surface);
    margin: auto;

}

section.horizontal .horizontal__item .left,
section.horizontal .horizontal__item .right {
    height: 100%;
    width: 50%;
    position: relative;
}

section.horizontal .horizontal__item .left {
    padding: 100px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

section.horizontal .horizontal__item .left.main {
    width: 100%;
}



section.horizontal .horizontal__item .left.main h3 {
    color: var(--surface);
    font-weight: 900;
    font-size: 3em;
}

section.horizontal .horizontal__item .left h3 {
    color: var(--surface);
    font-weight: 400;
    font-size: 3em;
}

section.horizontal .horizontal__item .right .img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--surface-transparent);
}

section.horizontal .horizontal__item .right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.horizontal .horizontal__item h2 {
    color: #333;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    font-size: 5em;
    text-transform: uppercase;
    font-weight: 900;
    text-align: center;
    z-index: 100;
    
}

section.horizontal .horizontal__item.vertical__item:not(:last-child){
    margin-right: 0px !important
}

/* section clientes */

section.clientes {
    height: 120vh;
    width: 100vw;
    background: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 40px 80px;
}

section.clientes .bottom {
    height: 260px;

}

section.clientes h1 {
    font-size: 6em;
    font-weight: 900;
    color: var(--surface-transparent);
    text-align: center;
    margin: 10px 0;
    margin-top: 0px;
}

section.clientes .clientes-container {
    margin: 32px 0;
    width: 100%;
    height: 300px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    transform: scale(0.9);
    gap: 10px; 
}

section.clientes .clientes-container .cl {
    display: flex;
    flex-direction: row;
}

section.clientes .clientes-container .cl img {
    margin: auto;
    height: 160px;
    object-fit: cover;
}

section.clientes .clientes-container .cl-1 img {
    margin: 0;
    height: 160px;
    object-fit: cover;
}

section.clientes .clientes-container .cl-2 img {
    margin: 0 auto;
    height: 160px;
    object-fit: fill;
}

section.clientes .clientes-container .cl-3 img {
    height: 100px;
    margin: auto;
    object-fit: fill;
}

section.clientes .clientes-container .cl-4 img {
    margin: 16px 0;
    height: 90px;
    object-fit: fill;
}

section.clientes .clientes-container .cl-5 img {
    margin: 16px 0;
    height: 100px;
    object-fit: fill;
}

section.clientes .clientes-container .cl-6 img {
    margin: auto;
    height: 100px;
    object-fit: cover;
}




section.clientes .clientes-container .cl-7 img {
    margin: auto;
    height: 100px;
    object-fit: fill;
}

section.clientes .clientes-container .cl-8 img {
    margin: auto;
    height: 100px;   
}

section.clientes .clientes-container .cl-9 img {
    margin: 16px 0;
    height: 100px;   
}

section.clientes .clientes-container .cl-10 img {
    margin: 16px 0;
    height: 100px;   
}

section.clientes .clientes-container .cl-11 img {
    margin: auto;
    height: 40px;   
}

section.clientes .clientes-container .cl-1 {
    grid-area: 1 / 1 / 2 / 2;
}

section.clientes .clientes-container .cl-2 {
    grid-area: 1 / 2 / 2 / 3;
}

section.clientes .clientes-container .cl-3 {
    grid-area: 1 / 3 / 2 / 4;
}

section.clientes .clientes-container .cl-4 {
    grid-area: 1 / 4 / 2 / 5;
}

section.clientes .clientes-container .cl-5 {
    grid-area: 2 / 1 / 3 / 2;
}

section.clientes .clientes-container .cl-6 {
    grid-area: 2 / 2 / 3 / 3;
}

section.clientes .clientes-container .cl-7 {
    grid-area: 2 / 3 / 3 / 4;
}

section.clientes .clientes-container .cl-8 {
    grid-area: 2 / 4 / 3 / 5;
}

section.clientes .clientes-container .cl-9 {
    grid-area: 3 / 1 / 4 / 2; 
}

section.clientes .clientes-container .cl-10 {
    grid-area: 3 / 2 / 4 / 3;
}

section.clientes .clientes-container .cl-11 {
    grid-area: 3 / 3 / 4 / 5;
}



/* Media queries */

@media (max-width: 800px) {

    .wp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.4em;
    }

    section {
        margin: 0;
        padding: 40px 8px;
        overflow: hidden;
    }

    section.home {
        flex-direction: column;
        padding: 65px 4px 4px 0;
    }

    section.home .logo {
        position: fixed;
        right: 0;
        background: var(--surface);
        width: 100%;
        height: 90px;
        padding: 0px 16px;
    }

    section .logo img {
        width: 40%;
        object-fit: contain;

    }

    section .clip1,
    section .clip2 {
        display: none;
    }

    section .formside {
        position: absolute;
        top: 0;
        right: 0;
        width: 100vw;
        height: 100%;
    }

    section.home .content {
        margin-top: 40px;
        padding: 48px 16px;
        background: #ffffff6f;
        text-align: center;
    }

    section .content h2 {
        margin: 10px 0;
        font-size: 2em;
        color: var(--black);
    }

    section .content h3 {
        font-size: 1.2em;
        color: var(--secondary);
    }

    section .content p {
        padding: 0px 8px;
        font-size: 1.2em;
        text-align: justify;
        color: var(--black);
    }

    section .content a {
        margin: 4px auto;
    }

    /* navigation */

    .navigation {
        left: 100%;
    }

}


/* Responsiveness Section 2 */

@media screen and (max-width: 1200px) {
    .wp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.4em;
    }

    h3 {
        font-size: 2.5em;
    }

    section.vertical {
        padding: 80px 20px;
    }
}

@media (max-width: 1200px) {
    .wp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.4em;
    }

    .vertical__content {
        flex-direction: column;
        align-items: center;
    }

    .vertical__content .col-left,
    .vertical__content .col-right {
        width: 100%;
        text-align: center;
    }

    .vertical__item {
        margin-bottom: 15px;
    }

    .vertical__heading {
        font-size: 2.5em;
    }
    
}

@media (max-width: 800px) {
    .wp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.4em;
    }

    .vertical__heading {
        font-size: 2em;
    }

    .vertical__content .col-left{
        width: 100%;
        padding: 0 10px;
    }

    .vertical__item h3 {
        font-size: 1.5em;
    }

    .vertical__item p {
        font-size: 1.2em;
    }
    .vertical__content {
        flex-direction: column;
    }

    section.vertical {
        width: 100%;
        height: 100%;
    }

    .col-right {
        display: none;
    }

    .vertical__item:not(:last-child) {
        margin-bottom: 30px;
    }

}

/* Responsividad section 2 */

@media (max-width: 450px) {
    .wp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
        background: #25d366;
        color: #fff;
        bottom: 40px;
        left: 16px;
    }

    .wp-btn a {
        color: #fff;
    }

    #horizontal {
        padding: 0px !important;
        padding-top: 100px !important;
    }

    section.horizontal .container {
        min-width: 100vh;
    }

    section.horizontal .horizontal__item {
        min-width: calc(100vw - 0px);
        flex-direction: column;
        border: 1px solid var(--primary);
    }

    section.horizontal .horizontal__item h2 {
        font-size: 2em;
    }

    section.horizontal .horizontal__item .left-bar {
        position: absolute;
        z-index: 900;
        width: 100%;
        height: 100px;
        flex-direction: row;
    }

    section.horizontal .horizontal__item .left-bar .lb-text {
        writing-mode: horizontal-tb;
    }

    section.horizontal .horizontal__item .left-bar .lb-text h1 {
        font-size: 0.8em !important;
    }

    section.horizontal .horizontal__item .left-bar .square-top {
        height: 100%;
        width: 30%;
    }

    section.horizontal .horizontal__item .left-bar .square-top h1 {
        font-size: 2em;
        
    }

    section.horizontal .horizontal__item .left.main {
        position: absolute;
    }

    section.horizontal .horizontal__item .left.main h3 {
        font-size: 2em;
    }

    section.horizontal .horizontal__item .right {
        position: absolute;
        width: calc(100vw - 2px);
    }
}

@media (max-width: 375px) {

    #horizontal {
        padding: 0px !important;
        padding-top: 50px !important;
    }

    section.horizontal .container {
        min-width: 100vh;
    }

    section.horizontal .horizontal__item {
        min-width: calc(100vw - 0px);
        flex-direction: column;
        border: 1px solid var(--primary);
    }

    section.horizontal .horizontal__item h2 {
        font-size: 1.5em;
    }

    section.horizontal .horizontal__item .left-bar {
        position: absolute;
        z-index: 900;
        width: 100%;
        height: 100px;
        flex-direction: row;
    }

    section.horizontal .horizontal__item .left-bar .lb-text {
        writing-mode: horizontal-tb;
    }

    section.horizontal .horizontal__item .left-bar .lb-text h1 {
        font-size: 0.6em !important;
    }

    section.horizontal .horizontal__item .left-bar .square-top {
        height: 100%;
        width: 30%;
    }

    section.horizontal .horizontal__item .left-bar .square-top h1 {
        font-size: 2em;
        
    }

    section.horizontal .horizontal__item .left.main {
        position: absolute;
    }

    section.horizontal .horizontal__item .left.main h3 {
        font-size: 1.6em;
    }

    section.horizontal .horizontal__item .right {
        position: absolute;
        width: calc(100vw - 2px);
    }
}

/* responsividad section clientes */
/* Hasta Pantallas de 1600px*/

@media screen and (max-width: 1600px) {
    section.home .logo {
        height: 60px;
    }
    section.horizontal  .horizontal__item h2 {
        font-size: 3em;
    }

    section.horizontal  .horizontal__item .left-bar .square-top h1 {
        font-size: 4em;
    }

    section.horizontal  .horizontal__item .left-bar .lb-text h1 {
        font-size: 1em;
    }

    section.horizontal  .horizontal__item .left h3{
        font-size: 2em;
    }

    section.clientes{
        padding: 10px 60px;
        height: 130vh;
    }

    section.clientes h1 {
        margin: 8px auto;
        font-size: 3.8em;  
    }

    section.clientes .clientes-container .cl img {
        width: 220px;
        object-fit: contain;
    }

}

/* Para pantallas de hasta 1200px */
@media screen and (max-width: 1200px) {
    section.clientes{
        padding: 10px 10px;
        height: 100vh;
    }
 
    section.clientes h1 {
        margin: 8px auto;
        font-size: 4em;  
    }

    section.clientes .clientes-container .cl img {
        width: 120px;
        object-fit: contain;
    }

}

@media screen and (max-width: 800px) {
    section.clientes{
        padding: 10px 10px;
        height: 70vh;
    }
    section.clientes h1{
        margin: 8px auto;
        font-size: 3.5em;
    }
    
    section.clientes .clientes-container .cl img {
        width: 100px;
        object-fit: contain;
    }
}

@media (max-width: 450px) {
    section.clientes {
        padding: 40px 8px;
        height: auto;
    }

    section.clientes h1 {
        margin: 8px auto;
        font-size: 2.5em;
    }

    section.clientes .clientes-container {
        height: 140vh;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(11, 1fr);
    }

    section.clientes .clientes-container .cl {
        display: flex;
        flex-direction: row;
        max-width: 100%;
    }

    section.clientes .clientes-container .cl img {
        width: 360px;
        object-fit: contain;
    
    }

    section.clientes .clientes-container .cl-2 img {
        width: 360px;
        object-fit: contain;
    }
    
    section.clientes .clientes-container .cl-3 img {
        width: 360px;
        object-fit: contain;
    }
    
    section.clientes .clientes-container .cl-5 img {
        width: 360px;
        object-fit: contain;
    }
    
    section.clientes .clientes-container .cl-6 img {
        width: 360px;
        object-fit: contain;
    }
    
    section.clientes .clientes-container .cl-4 img {
        width: 360px;
        object-fit: contain;
    }
    
    
    section.clientes .clientes-container .cl-7 img {
        width: 360px;
        object-fit: contain;
    }

    section.clientes .clientes-container .cl-8 img {
        width: 360px;
        object-fit: contain;
    }

    section.clientes .clientes-container .cl-9 img {
        width: 360px;
        object-fit: contain;
    }

    section.clientes .clientes-container .cl-10 img {
        width: 360px;
        object-fit: contain;
    }

    section.clientes .clientes-container .cl-11 img {
        width: 360px;
        object-fit: contain;
    }

    section.clientes .clientes-container .cl-1 { grid-area: 1 / 1 / 2 / 2; }
    section.clientes .clientes-container .cl-2 { grid-area: 2 / 1 / 3 / 2; }
    section.clientes .clientes-container .cl-3 { grid-area: 3 / 1 / 4 / 2; }
    section.clientes .clientes-container .cl-4 { grid-area: 4 / 1 / 5 / 2; }
    section.clientes .clientes-container .cl-5 { grid-area: 5 / 1 / 6 / 2; }
    section.clientes .clientes-container .cl-6 { grid-area: 6 / 1 / 7 / 2; }
    section.clientes .clientes-container .cl-7 { grid-area: 7 / 1 / 8 / 2; }
    section.clientes .clientes-container .cl-8 { grid-area: 8 / 1 / 9 / 2; }
    section.clientes .clientes-container .cl-9 { grid-area: 9 / 1 / 10 / 2; }
    section.clientes .clientes-container .cl-10 { grid-area: 10 / 1 / 11 / 2; }
    section.clientes .clientes-container .cl-11 { grid-area: 11 / 1 / 12 / 2; }


}

@media (max-width: 450px) {
    .vertical__heading {
        font-size: 1.8em;
    }

    .vertical__content .col-left{
        width: 100%;
        padding: 0 5px;
    }

    .vertical__item h3 {
        font-size: 1.2em;
    }

    .vertical__item p {
        font-size: 1em;
    }

    .vertical__heading span {
        font-size: 1.5em;
    }
    h2 {
        font-size: 2.5em;
    }
}

/* Footer */

.footer_class {
    max-height: 100%;
    max-width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: var(--primary);
    position: relative;
    clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
    margin-top: -200px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer_class .group-1 {
    display: flex;
    width: 100%;
    margin: auto;
    padding: 45px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.footer_class h1 {
    font-size: 3em;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin: 10px 0;
    position: relative;
    z-index: 2;
}

.footer_class .group-1 .box h3,
.footer_class .group-1 .box p {
    font-size: 1.3em;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    white-space: nowrap;
}

.footer_class .group-1 .box .contacts {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 20px;
}

.footer_class .group-1 .box .contacts .contact-item {
    flex: 1;
    display: flex;
    align-items: center;
    white-space: nowrap;
    text-align: center;
}

.footer_class .group-2 {
    background-color: var(--secondary);
    padding: 15px 10px;
    text-align: center;
    color: var(--white);
    margin-bottom: 0px;
    width: 100%;
    margin-top: auto;
    position: absolute;
    bottom: 0;
}

.hvdevs-container {
    width: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer_class .group-2 small {
    font-size: 0.8em;
}

.footer_class .group-1 .box .contacts .contact-item ion-icon {
    margin-right: 10px;
    flex-shrink: 0;
}

/* Footer Responsiveness  */

@media screen and (max-width:1200px) {
    .footer_class .group-1 {
        padding: 30px 10px;
    }
    .footer_class h1 {
        font-size: 3em;
    }
    .footer_class .group-1 .box h3,
    .footer_class .group-1 .box p {
        font-size: 1.1em;
    }
}

@media screen and (max-width:1100px) {
    .footer_class .group-1 .box .contacts {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .footer_class .group-1 .box .contacts .contact-item {
        text-align: center;
        width: 100%;
    }
    .footer_class .group-1 .box h3,
    .footer_class .group-1 .box p {
        font-size: 1.5em;
    }
    .footer_class .group-2 small {
        font-size: 0.8em;
    }
}

@media screen and (max-width:800px) {
    .footer_class {
        height: auto;
        margin: 20px 0px 0px 0px;
        padding-top: 10px;
        clip-path: polygon(0 0%, 100% 0, 100% 100%, 0% 100%)
    }

    .footer_class h1 {
        font-size: 2em;
        margin-top: 10px;
    }

    .footer_class .group-1 {
        padding: 16px 0px;
        justify-content: center; 
    }

    .footer_class .group-1 .box .contacts {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .footer_class .group-1 .box .contacts .contact-item {
        text-align: center;
        width: 100%;
    }

    .footer_class .group-1 .box .contacts .contact-item h3,
    .footer_class .group-1 .box .contacts .contact-item p {
        text-align: center;
        font-size: 1.2em;
        width: 100%;
    }
}
    @media screen and (max-width:450px) {
        .footer_class .group-1 .box .contacts .contact-item h3,
        .footer_class .group-1 .box .contacts .contact-item p {
            font-size: 1.1em
        }
        .footer_class h1 {
            font-size: 1.5em; 
        }

        .footer_class .group-1 {
            padding: 16px 0px;
            justify-content: center;
        }
    
        .footer_class .group-1 .box .contacts {
            flex-direction: column; 
            align-items: center;
            gap: 10px;
        }
    
        .footer_class .group-1 .box .contacts .contact-item {
            width: 100%; 
            text-align: center; 
        }
    
        .footer_class .group-2 small {
            font-size: 0.6em; 
        }


}

