<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html {
    scroll-behavior: smooth;

}

body {
    margin: 0;
    padding: 0;
    font-family: 'Alata', sans-serif;
    background-color: #f7f7f7;

}

:root {
    --neu-bg: linear-gradient(145deg, #f3f3f3, #cccccc);
    --neu-shadow: 20px 20px 40px #cccccc,
        -20px -20px 40px #fafafa;
    --shadow: #000000;
    --scrollbarBG: #eee;
    --thumbBG: #2e2e2e;
    --background-gradient: linear-gradient(30deg, #f39c12 30%, #f1c40f);
    --gray: #34495e;
    --darkgray: #282828;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: rgb(255, 255, 255);
}

::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.912);
    box-shadow: 0 -100vh 0 100vh var(--shadow), 0 0 15px 5px rgba(44, 44, 44, 0.134);
}

/* Menu */
#menu-check {
    display: none;
}

.menu-button-phone {
    display: none;
}

header {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    transition: all 0.4s ease-out;
    width: 100%;
    backdrop-filter: blur(4px);
    z-index: 9999999;
}

header&gt;div&gt;p {
    background-image: url(../img/whiteLogo.svg);
    background-size: 250px;
    background-repeat: no-repeat;
    background-position: center center;
    margin: 0;
    overflow: hidden;
    height: 50px;
    width: 300px;
}


header&gt;div&gt;p&gt;a {
    padding: 25px 25px 25px 500px;
}

header&gt;div,
header&gt;nav {
    margin: 0 60px;
}

.menu {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.menu&gt;li {
    margin: 0 20px;
}

.menu&gt;li a {
    color: white;
    text-decoration: none;
}

.menu a {
    position: relative;
    display: block;
}

.menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    margin-bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
    transform: scaleX(0);
    transform-origin: center;
    transition: all 0.3s ease-in-out;
}

.menu a:hover::before {
    transform: scaleX(1);
    transform-origin: center;
}

.menu li:nth-child(1)&gt;a {
    animation-delay: .4s !important;
}

.menu li:nth-child(2)&gt;a {
    animation-delay: .6s !important;
}

.menu li:nth-child(3)&gt;a {
    animation-delay: .8s !important;
}

.menu li:nth-child(4)&gt;a {
    animation-delay: 1s !important;
}

.menu li:nth-child(5)&gt;a {
    animation-delay: 1.2s !important;
}

.menu li:nth-child(6)&gt;a {
    animation-delay: 1.4s !important;
}

@media (min-width: 1200px) {
    header {
        height: 90px;
    }

    .abajo p {
        background-image: url(../img/blackLogo.svg);
        background-size: 250px;
        background-repeat: no-repeat;
        background-position: center center;
        margin: 0;
        overflow: hidden;
        height: 50px;
        width: 300px;
    }

    .abajo {
        background-color: white;
        height: 75px;
    }

    .abajo a {
        color: black !important;
    }

    .abajo .menu a::before {
        background-color: rgb(0, 0, 0);
    }

    .abajo2 p {
        background-image: url(../img/whiteLogo.svg);
    }

    .abajo2 {
        background-color: rgb(0, 0, 0);
        height: 75px;
    }

    .abajo2 a {
        color: rgb(255, 255, 255) !important;
    }

}

/* Phone - Menu */
@media (max-width: 1100px) {
    header {
        position: fixed;
        background-color: #ffffff;
    }

    header&gt;div {
        margin: 0 20px;

    }

    header&gt;nav {
        margin: 0 40px;
    }

    header&gt;div&gt;p {
        background-size: 160px;
        height: 50px;
        width: 170px;
    }

    header&gt;div&gt;p&gt;a {
        padding: 25px 0px 25px 500px;
    }

    .menu-button-phone {
        display: flex;
        height: 100%;
        width: 30px;
        cursor: pointer;
        justify-content: center;
        align-items: center;
    }

    .menu {
        position: absolute;
        top: 0;
        margin-top: 70px;
        left: 0;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .menu&gt;li {
        width: 100%;
        display: flex;
        background-color: #ffffff;
        justify-content: center;
    }

    .menu&gt;li&gt;a {
        color: black;
        font-size: 14px;
    }

    #menu-check~.menu li {
        height: 0;
        visibility: hidden;
        transition: height 700ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    #menu-check:checked~.menu li {
        visibility: visible;
        align-items: center;
        height: 25px;
        padding: 8px 0;
        margin: -1px 0;
        transition: height 700ms cubic-bezier(0.23, 1, 0.32, 1);

    }

    .menu-button-line,
    .menu-button-line::before,
    .menu-button-line::after {
        content: '';
        display: block;
        background-color: rgb(0, 0, 0);
        position: absolute;
        height: 1px;
        width: 20px;
        transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    .menu-button-line::before {
        margin-top: -7px;
    }

    .menu-button-line::after {
        margin-top: 7px;
    }

    #menu-check:checked+.menu-button-phone .menu-button-line::before {
        margin-top: 0px;
        transform: rotate(45deg);
        visibility: visible;
    }

    #menu-check:checked+.menu-button-phone .menu-button-line {
        visibility: hidden;
    }

    #menu-check:checked+.menu-button-phone .menu-button-line::after {
        margin-top: 0px;
        transform: rotate(-45deg);
        visibility: visible;
    }

}

/*End - Phone - Menu */


/* End - Menu */


/* Banner */

#banner {
    min-height: 100vh;
    background: url(../img/homeBanner.jpg) no-repeat;
    background-size: cover;
    background-position: center top;
}

#banner div:nth-child(1) {
    width: 70%;
    padding: 33vh 0 0 0;
    margin: auto;
    text-align: center;
}

#banner div:nth-child(1) h1 {
    font-size: 85px;
    color: white;
    margin: 0;
    font-size: 90px;
    padding-top: 90px;
}

#banner div:nth-child(1)&gt;p {
    font-size: 25px;
    margin: 0;
    color: rgb(225, 225, 225);
}

#banner div:nth-child(1) .arrow {
    display: inline-block;
    margin-top: 24vh;
}

.arrow span {
    display: block;
    width: 30px;
    height: 30px;
    border-bottom: 2px solid rgb(230, 230, 230);
    border-right: 2px solid rgb(230, 230, 230);
    transform: rotate(45deg);
    margin: -10px;
    animation: animate 2s infinite;
    transition: all 1s ease;
}

.arrow&gt;a:hover span {
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    transition: all 1s ease;
}

.arrow span:nth-child(2) {
    animation-delay: -0.2s;
}

.arrow span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes animate {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-15px, -15px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: rotate(45deg) translate(15px, 15px);
    }
}

.contactBanner {
    position: absolute;
    right: 0;
    margin-right: 35px;
    margin-top: -280px;
}

.contactBanner span {
    content: "";
    background-color: rgba(255, 255, 255, 0.279);
    display: block;
    border-radius: 50%;
    margin: 25px auto 5px auto;
}

.contactBanner span:nth-child(1) {
    margin-top: 0;
    width: 6px !important;
    height: 6px;
}

.contactBanner span:nth-child(2) {
    width: 8px !important;
    height: 8px;
}

.contactBanner span:nth-child(3) {
    width: 10px !important;
    height: 10px;
}

.contactBanner span:nth-child(4) {
    width: 12px !important;
    height: 12px;
}

.contactBanner span:nth-child(5) {
    width: 14px !important;
    height: 14px;
}

.contactBanner span:nth-child(6) {
    width: 16px !important;
    height: 16px;
}

.contactBanner span:nth-child(7) {
    width: 18px !important;
    height: 18px;
    margin-bottom: 26px;
}

.contactBanner p:nth-child(8) a {
    padding: 0 0 30px 150px;
    scroll-behavior: smooth;
}

/* 
.contactBanner p:nth-child(8) {
    background-image: url(../img/whatsapp.png);
    transition: all .4s ease;
} */

.contactBanner p:nth-child(8) {
    background-image: url(../img/mail.svg);
    transition: all .4s ease;
}

.contactBanner p:nth-child(8),
.contactBanner p:nth-child(9) {
    background-repeat: no-repeat;
    background-size: 35px;
    background-color: rgba(255, 255, 255, 0.161);
    background-position: center center;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    transition: all .4s ease;
    overflow: hidden;
}

.whatsapp,
.mail {
    background-color: rgba(255, 255, 255, 0.161);
    transition: all .4s ease;
}

.whatsapp:hover,
.mail:hover {
    background-color: rgba(255, 255, 255, 0.569);
    transition: all .4s ease;
}

/* End - Banner */

/* About */


#about {
    margin-top: -70px;
    padding-top: 70px;
}

#about&gt;div {
    display: flex;
    max-width: 950px;
    margin: auto;
    justify-content: center;
}

#about&gt;div:nth-child(1) {
    text-align: left;
    padding: 80px 0 60px 0;
}

#about&gt;div:nth-child(1) img {
    width: 47%;
    margin: auto auto auto 5%;
    box-shadow: 30px -30px 0px 5px rgba(216, 216, 216, 0.515);

}

#about&gt;div:nth-child(1) div {
    margin: auto;
    width: 53%;
}
.imgCelu{
    display: none;
    height: fit-content!important;
}
.imgEsc{
    display: block;
}
#about&gt;div:nth-child(2) img {
    width: 50%;
    margin: auto 5% auto auto;
    box-shadow: -30px 30px 0px 5px rgba(216, 216, 216, 0.515);
    box-shadow: -30px 30px 0px 5px rgba(200, 200, 200, 0.515);
}

#about&gt;div:nth-child(2) {
    text-align: right;
    padding: 60px 0 170px 0;
}

#about&gt;div:nth-child(2) div {
    margin-top: 10%;
    width: 50%;
}

#about&gt;div div p {
    font-size: 15.5px;
    color: #686868;
    line-height: 25px;
    margin-top: 30px;
}

#about&gt;div div p:nth-child(3) {
    margin-top: 15px;
}

#about&gt;div div p:nth-child(1) {
    margin: 0px 0 2px 0;
    font-size: 15px;
    color: #2f2f2f;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 4px;
}

#about&gt;div div ul {
    padding: 0 0 0 20px;
    margin: 0;
}

#about&gt;div div ul li {
    font-size: 15.5px;
    color: #727272;

    margin: 5px 0;
}

#about&gt;div div h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 45px;
    margin: 0;
}

/* End - About */


/* Services */
#services {
    margin: auto;
    width: 75%;
    margin-top: -60px;
    padding-top: 60px;
}

#services h2 {
    margin-bottom: 0;
    text-align: center;
    font-size: 80px;
    font-family: 'Montserrat', sans-serif;
}

#services hr {
    margin-top: 5px 0 0px 0;
    width: 8%;
    border: 1px solid black;
    text-align: center;
}

.cards {
    display: flex;
    margin: 40px 0;
}

.cards&gt;div {
    width: 33%;
    display: inline-block;
    text-align: center;
    background-size: 100%;
    background-position: center center;
    transition: all .5s ease;
    height: 60vh;
    margin: 30px 45px 110px 35px;
    padding: 0px 30px 0px 30px;
    justify-content: center;
    display: grid;
    transform: scale(1);
    transition: all .4s ease;
}

.cards&gt;div:hover {
    transform: scale(1.1);
    background-size: 105%;
    transition: all .4s ease;
    opacity: 0.8;
}

.cards&gt;div:nth-child(1) {
    background-image: url(../img/services1.jpg);
    background-size: cover;
}

.cards&gt;div:nth-child(2) {
    background-image: url(../img/services2.jpg);
    background-size: cover;
}

.cards&gt;div:nth-child(3) {
    background-image: url(../img/services3.jpg);
    background-size: cover;
}


.cards&gt;div h3 {
    font-size: 40px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    margin-top: 200px;
    transition: all .4s ease;
}

.cards&gt;div:nth-child(3) h3 {
    font-size: 40px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    margin-top: 145px;
    transition: all .4s ease;
}

.cards&gt;div:hover&gt;h3 {
    margin-top: 70px;
    transform: scale(1);
    opacity: 1;
    transition: all .4s ease;
    display: block;

}

.cards&gt;div p {
    height: 10%;
    margin-top: -150px;
    transition: all .4s ease;
    opacity: 0;
    line-height: 25px;
    font-size: 15px;
    color: white;
    transform: scale(0.8);
}

.cards&gt;div:hover&gt;p {
    margin-top: -70px;
    transform: scale(1);
    opacity: 1;
    transition: all .4s ease;
}

.cards&gt;div a {
    margin: -150px auto 0 auto;
    font-size: 18px;
    color: rgb(0, 0, 0);
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    background-color: white;
    padding: 8px 20px;
    right: 0;
    transition: all .4s ease;
    display: block;
    width: 65%;
}

.cards&gt;div:hover&gt;div&gt;a {
    margin-top: -50px;
    transition: all .4s ease;

}

.cards&gt;div a:hover {
    color: rgb(255, 255, 255);
    transition: all .4s ease;
    background-color: rgb(70, 70, 70);
    padding: 8px 20px;
}

/* End - Services */

/* Contact */

#contact {
    display: flex;
    height: 70vh;

    margin-top: -180px;
    padding-top: 180px;
}

#contact img {
    width: 50%;
}

#contact&gt;div {
    background-color: #dbdbdb;
    width: 50%;
    padding: 50px;
}

#contact&gt;div form {
    width: 90%;
}

#contact&gt;div h2 {
    font-size: 40px;
    margin-top: 0px;
}

#contact&gt;div form .name {
    display: flex;
    justify-content: space-between;
}

#contact&gt;div form input:nth-child(2) {
    width: 95.5%;

}

#contact input {
    border: 2px solid #8c8c8c;
    border-radius: 0px;
    padding: 12px;
    font-size: 16px;
    font-family: 'Alata', sans-serif;
    margin: 15px 0;
    transition: all .3s ease;

}

#contact input:hover {
    transition: all .3s ease;
    border: 2px solid #4a4a4a;
    color: #5c5c5c;
}

#contact input:focus-visible {
    transition: all .3s ease;
    border: 2px solid #0d0d0d;
    color: #0b0b0b;
    outline: 0px;
    box-shadow: 0px 0px 15px -5px rgb(158, 158, 158) inset;
}

#contact&gt;div form .name input {
    display: block;
    width: 40%;
}

textarea {
    height: 120px;
    width: 95.5%;
    resize: none;
    border: 2px solid #8c8c8c;
    border-radius: 0px;
    padding: 12px;
    font-size: 16px;
    margin-top: 15px;
    font-family: 'Alata', sans-serif;
}

textarea:hover {
    transition: all .3s ease;
    border: 2px solid #4a4a4a;
    color: #5c5c5c;
}

textarea:focus-visible {
    transition: all .3s ease;
    border: 2px solid #0d0d0d;
    color: #0b0b0b;
    outline: 0px;
    box-shadow: 0px 0px 15px -5px rgb(158, 158, 158) inset;
}

.submit input {
    border: 0px !important;
    background-color: rgb(199, 199, 199);
    transition: all .3s ease;

}

.submit input:hover {
    transition: all .3s ease;
    border: 0px !important;
    background-color: rgb(226, 226, 226);

}

#send {

    visibility: hidden !important;
    margin-top: -700px;
    padding-top: 700px;
}

#send:target {
    visibility: visible !important;
}

#send&gt;p {
    color: #ffffff;
    position: relative;
    padding: 10px 20px;
    display: inline-block;
    background-color: #676767;
    margin: 8px 0 0px 0;
    font-size: 15px;
    color: #ffffff;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 3px;
    visibility: hidden !important;
}

#send:target&gt;p {
    visibility: visible !important;
}

#contact&gt;div:nth-child(2)&gt;p {
    margin: 0px 0 2px 0;
    font-size: 15px;
    color: #151515;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 3px;
}

#contact&gt;div:nth-child(2) h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 45px;
    margin: 0;
}

/* End - Contact  */

/* Footer */

footer {
    background-color: #000000;
    ;
    color: #a7a7a7;
    font-size: 16px;
    padding-top: 50px;
}

footer h3 {
    color: white;
    font-size: 22px;
}

footer ul {
    margin-top: 10px;
    list-style: none;
    padding: 0;
}

footer ul li {
    margin: 10px 0;
}

footer ul li a {
    color: #a7a7a7;
    text-decoration: none;
    transition: all .3s ease;
}

footer ul li a:hover {
    transition: all .3s ease;
    color: #e9e9e9;
}

.footercolumn {
    justify-content: center;
}

.footerMain {
    display: flex;
    width: 95%;
    margin: 0 auto 60px auto;
}

.footerMain&gt;div:nth-child(2) {
    margin-left: -50px;
    width: 10%;
}

.footerMain&gt;div {
    width: 12%;
    padding-left: 80px;
}

.footerMain&gt;div:nth-child(3) {
    padding-left: 20px;
    width: 20%;
}

.footerMain&gt;div:nth-child(4) {
    padding-left: 40px;
}

.footerLogoDiv {
    width: 28% !important;
    padding-left: 0px !important;
}

.footerLogoDiv&gt;h3 {
    background-image: url(../img/whiteLogo.svg);
    background-size: 250px;
    background-repeat: no-repeat;
    background-position: center center;
    margin: 0;
    overflow: hidden;
    height: 50px;
    width: 200px;
}

.footerLogoDiv&gt;h3&gt;a {
    padding: 25px 0px 25px 500px;
}

.footerLogoDiv&gt;div {
    display: flex;
    margin: 35px 0 0 0;
}

.footerLogoDiv&gt;div&gt;p {
    background-image: url(../img/mail.svg);
}

.footerLogoDiv&gt;div&gt;p {
    background-size: 30px;
    margin: 0 10px;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: rgba(255, 255, 255, 0.299);
    border-radius: 50%;
    overflow: hidden;
    height: 45px;
    width: 45px;
    transition: all .2s ease;
}

.footerLogoDiv&gt;div&gt;p:hover {
    background-color: rgba(255, 255, 255, 0.422);
    transition: all .2s ease;
}

.footerLogoDiv&gt;div&gt;p&gt;a {
    padding: 25px 0px 25px 500px;
}

.footerLogoDiv p {
    margin-top: 20px;
}

.copy {
    padding: 11px;
    background-color: #0c0c0c;
}

.copy p {
    font-size: 12px;
    color: #909090;
    margin: 0;
    text-align: center;
}



/* End - Footer */





.direccion_nav {
    position: absolute;
    padding-top: 10vh;
    color: rgb(216, 216, 216);
    transition: all .7s ease;
    margin-left: 60px;
    font-size: 18px;
}

.direccion_nav a {
    color: rgb(217, 217, 217);
    text-decoration: none;
    cursor: pointer;
    transition: all .2s ease;
}

.direccion_nav a:hover {
    color: rgb(255, 255, 255);
    text-decoration: none;
    cursor: pointer;
    transition: all .2s ease;
}

@media (max-width: 1700px) {
    .product&gt;div&gt;div {
        width: 40% !important;
    }

    .product&gt;div&gt;img {
        width: 35% !important;
    }
}

@media (max-width: 1400px) {
    #services {
        width: 95%;
    }

    .direccion_nav {
        padding-top: 9vh;
        margin-left: 23px;
    }

    #serviceBanner&gt;div h1 {
        padding: 23% 0px 0 0 !important;
    }

    #serviceBanner&gt;div {
        width: 70% !important;
    }

    .product&gt;div&gt;div {
        width: 40% !important;
    }

    .product&gt;div&gt;img {
        width: 35% !important;
    }



}

@media (max-width: 1500px) {
    #serviceSection1&gt;div {
        width: 85% !important;
    }

    .product {
        width: 95% !important;
    }

    .cards {
        display: flex;
        margin: 40px 0;
        flex-wrap: wrap;
        justify-content: center;
    }

    .cards&gt;div {
        width: 23%;
        margin: 30px 25px 110px 25px;
    }
}

@media (max-width: 1100px) {
    header&gt;div&gt;p {
        background-image: url(../img/blackLogo.svg)!important;
        background-size: 150px;
        background-repeat: no-repeat;
        background-position: center center;
        margin: 0;
        overflow: hidden;
        height: 50px;
        width: 150px;
        
    }
    header&gt;div&gt;p&gt;a {
        padding: 25px 0px 25px 156px;
    }
    .cards&gt;div{
        width: 30%;
    }
    .cards&gt;div&gt;h3 {
        margin-top: 70px;
        transform: scale(1);
        opacity: 1;
        transition: all .4s ease;
        display: block;

    }

    .cards&gt;div&gt;p {
        margin-top: -70px;
        transform: scale(1);
        opacity: 1;
        transition: all .4s ease;
    }

    .cards&gt;div&gt;div&gt;a {
        margin-top: -50px;
        transition: all .4s ease;

    }
    .cards&gt;div {
        transition: all .4s ease;
        opacity: 0.9;
    }
    .cards&gt;div:nth-child(3) h3 {
        margin-top: 145px;
    }
    #contact img {
        display: none;
    }
    #contact&gt;div {
        width: 100%;
        padding: 100px;
    }
    #contact&gt;div form {
        width: 100%;
    }
    #contact &gt; div form &gt; input:nth-child(2) {
        width: 97%;
    }
    textarea{
        width: 97%;
        
    }
    .footerMain {
        display: flex;
        flex-wrap: wrap;
        width: 95%;
        margin: 0 auto 60px auto;
        justify-content: center;
        text-align: center;
    }
    #about&gt;div img {
        width: 30%!important;
    }
    #about&gt;div:nth-child(2) img {
        margin: auto 5% auto 0;
    }
    #about&gt;div:nth-child(2) {
        padding: 10px 0 66px 0;
    }
    .footerLogoDiv&gt;h3{
        margin: auto;
    }
    .footerLogoDiv {
        width: 100% !important;
        text-align: center;
        display: block!important;
    }
    .footerLogoDiv&gt;div{
        justify-content: center;
    }
    .footerMain&gt;div{
        padding: 0!important;
        width: 20%;
        margin: 0!important;
    }
    .footerMain&gt;div:nth-child(2){
        width: 20%;
    }
    
    #about &gt; div:nth-child(1){
        padding: 80px 0px 10px;
    }
    
}
@media (max-width: 900px) {
    .contactBanner {
        margin-top: -245px;
    }
    .cards&gt;div {
        max-height: 45vh;
        width: 30%;
        margin: 30px 25px 30px 25px;
    }
    #about&gt;div img {
        width: 35%!important;
    }
    #contact {
        height: 63vh;
    }
}
@media (max-width: 800px) {
    .cards {
        display: block;
        margin: 40px 0;
        flex-wrap: wrap;
        justify-content: center;
    }
    .cards&gt;div {
        width: 50%;
        margin: 30px auto 110px auto;
    }
    #banner {
        min-height: 100vh;
        background: url(../img/homeBannerCelu.jpg) no-repeat;
        background-size: cover;
        background-position: center 50px;
    }
}
@media (max-width: 600px) {
    .footerMain&gt;div {
        width: 50%;
    }
    
    .footerMain&gt;div:nth-child(2){
        width: 50%;
    }
    .footerMain&gt;div:nth-child(3) {
        width: 50%;
    }
    #contact &gt; div form &gt; input:nth-child(2) {
        width: 93%;
    }
    textarea{
        width: 93%;
        
    }
}
@media (max-width: 450px) {
    .imgCelu{
        display: block;
    }
    .imgEsc{
        display: none;
    }
    
    #banner div:nth-child(1) h1 {
        font-size: 60px;
        padding-top: 60px;
    }
    #banner div:nth-child(1)&gt;p {
        font-size: 18px;
    }
    #banner div:nth-child(1) {
        width: 80%;
        padding: 32vh 0 0 0;
        margin: auto;
        text-align: center;
    }
    .arrow span {
        width: 20px;
        height: 20px;
        border-bottom: 1px solid rgb(230, 230, 230);
        border-right: 1px solid rgb(230, 230, 230);
    }
    .contactBanner p:nth-child(8), .contactBanner p:nth-child(9) {
        background-size: 25px;
        height: 40px;
        width: 40px;
    }
    .contactBanner span{
        display: none;
    }
    .contactBanner {
        margin-top: -10px;
    }
    #about&gt;div {
        display: block;
    }
    #about&gt;div div {
        margin: auto !important;
        width: 90% !important;
    }
    #about&gt;div div p{
        font-size: 12px ;
    }
    #about&gt;div div ul li{
        font-size: 12px ;
        list-style-type: none;
    }
    #about&gt;div img {
        width: 80%!important;
        box-shadow: 0px 0px 0px 0px rgb(216 216 216 / 52%)!important;
        height: 30vh ;
        margin: 30px auto !important;
    }
    #about &gt; div:nth-child(1) {
        padding: 28px 0px 10px;
    }
    #about&gt;div:nth-child(2) img {
        display: none;
    }
    #about &gt; div {
        text-align: center !important;
    }
    #services h2 {
        font-size: 60px;
        margin: 0;
    }
    .cards&gt;div h3 {
        font-size: 30px;
        height: 80px;
    }
    .cards&gt;div&gt;p {
        display: none;
    }
    .cards&gt;div&gt;h3{
        margin-bottom: 110px;
    }
    .cards&gt;div {
        width: 80%;
        height: fit-content;
        margin: 30px auto 30px auto;
    }
    .cards&gt;div&gt;div&gt;a{
        margin-top: -80px;
    }
    .cards&gt;div:nth-child(3) h3 {
        font-size: 30px;
        margin-top: 55px;
    }
    .cards&gt;div a {
        font-size: 14px;
        padding: 8px 10px;
    }
    #contact&gt;div {
        padding: 18px;
    }
    #contact input {
        font-size: 12px;
    }
    textarea {
        font-size: 12px;
    }
    #contact {
        height: 78vh;
    }
    footer {
        font-size: 14px;
    }
    footer h3 {
        color: white;
        font-size: 18px;
    }
    .footerMain&gt;div {
        width: 100%;
    }
    .footerMain&gt;div:nth-child(2) {
        width: 100%;
    }
    
    
}</pre></body></html>