:root{
    --rojo: #EE4136;
    --gris: #7C838B;
    --rojo-hover: #b91c11;
    --azul: rgba(132, 139, 200, 0.18);
    --gris-dark: #333;

    --card-border-radius: 2rem;
    --card-padding: 1.8rem;
    --box-shadow: 0 2rem 3rem var(--azul);
}
@font-face {
    font-family: 'Myriad Pro';
    src: url(/assets/fonts/MyriadPro.otf) format('opentype');
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Myriad Pro', sans-serif;
}
.noscroll{
    overflow-y: hidden;
}
.header{
    position: fixed;
    max-height: 4.5rem;
    height: 100%;
    max-width: 100vw;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}
.header img{
    max-height: 4.5rem;
}
.navbar{
    height: 100%;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    transition: all 0.3s ease;
}
.navbar-fixed{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.navbar-fixed .logo{
    max-width: 12rem;
    width: 100%;
    margin-left: 1.5rem;
    cursor: pointer;
}
.navbar-fixed .log{
    margin-right: 1.5rem;
    border-radius: 1.5rem;
    border: none;
    outline: none;
    padding: .5rem 1rem;
    background-color: var(--rojo);
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}
.navbar.scrolled{
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.navbar.scrolled .logo{
    filter: none;
}
.navbar.scrolled a{
    color: black;
}
.navbar.scrolled .log{
    background-color: var(--rojo);
}
.navbar.scrolled .log:hover{
    background-color: var(--rojo-hover);
}
.navbar .logo{
    max-width: 12rem;
    width: 100%;
    cursor: pointer;
    margin-left: 1.5rem;
    filter: brightness(0) invert(1);
}
.navbar .log{
    margin-right: 1.5rem;
    background: transparent;
    border-radius: 1.5rem;
    border: none;
    outline: none;
    padding: .5rem 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}
.navbar .log:hover,
.navbar-fixed .log:hover{
    scale: 1.05;
}
.navbar .log a,
.navbar-fixed .log a{
    text-decoration: none;
    color: white;
}
.navbar ul li,
.navbar-fixed ul li{
    list-style: none;
    display: inline-block;
    margin: 0 1.5rem;
    position: relative;
}
.navbar ul li a{
    text-decoration: none;
    color: white;
    text-transform: uppercase;
}
.navbar-fixed ul li a{
    text-decoration: none;
    color: black;
    text-transform: uppercase;
}
.navbar ul li::after,
.navbar-fixed ul li::after{
    content: '';
    height: .25rem;
    width: 0;
    background: var(--rojo);
    position: absolute;
    left: 0;
    bottom: -.25rem;
    transition: 0.5s;
}
.navbar ul li:hover::after,
.navbar-fixed ul li:hover::after{
    width: 100%;
}
.menu{
    display: none;
    position: fixed;
    top: 0;
    right: -15.5rem;
    max-width: 15.5rem;
    width: 100%;
    max-height: 100vh;
    height: 100%;
    background-color: var(--rojo);
    padding-top: 4.5rem;
    transition: right 0.5 ease;
}
.menu li{
    padding-right: 1.25rem;
    padding-top: .6rem;
    padding-bottom: .6rem;
    display: flex;
    align-items: center;
    justify-content: end;
    font-size: 1.1rem;
}
.navbar .menu li a,
.navbar.scrolled .menu li a,
.navbar-fixed .menu li a{
    text-decoration: none;
    color: white;
    text-transform: uppercase;
}
.barras{
    display: none;
    width: 2rem;
    height: 1.25rem;
    position: relative;
    cursor: pointer;
    margin-right: 1.25rem;
}
.barra1, .barra2, .barra3{
    width: 100%;
    height: 2px;
    background-color: white;
    position: absolute;
    left: 0;
    transition: all 0.3s ease-in-out;
}
.barra1{
    top: 0;
}
.barra2{
    top: 50%;
    transform: translateY(-50%);
}
.barra3{
    bottom: 0;
}
.activebarra1{
    transform: translateY(-50%) rotate(-45deg);
    top: 50%;
    left: 0;
    transition: all 0.3s ease-in-out;
}
.activebarra2{
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.2s ease-in-out;
}
.activebarra3{
    transform: translateY(50%) rotate(45deg);
    bottom: 50%;
    left: 0;
    transition: all 0.3s ease-in-out;
}
.parallax_bg .content{
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    color: white;
}
.content h1{
    font-size: 4.5rem;
}
.content p{
    width: 80%;
    margin: 2rem auto;
}
.content button{
    width: 12.5rem;
    padding: 1rem 0;
    text-align: center;
    margin: 0 1rem;
    border-radius: 1.5rem;
    font-weight: bold;
    border: 3px solid var(--rojo);
    background: transparent;
    color: white;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.content span{
    background: var(--rojo);
    height: 100%;
    width: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: all 0.5s ease;
}
.content button:hover span{
    width: 100%;
}
.parallax_bg{
    position: relative;
    width: 100%;
    height: 25rem;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.parallax_bg.bg1::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    align-items: center;
}
.hero{
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url(../images/BG2.jpg);
    display: flex;
    align-items: center;
    justify-content: center;
}
.bg1{
    background-image: url(../images/metal.jpg);
}
.about{
    background-color: #eee;
    padding: 2rem;
    padding-bottom: 5rem;
    text-align: center;
}
.about h2{
    font-size: 2rem;
    font-weight: bold;
}
.about .grid_container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 1rem;
    gap: 2rem;
}
.about p{
    text-align: justify;
}
.grid_container .name{
    font-weight: bold;
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.grid_container div{
    background: white;
    border-radius: 1.5rem;
    color: var(--gris-dark);
}
.serv, .serv2{
    padding: 2rem;
    box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.serv:hover,
.serv2:hover{
    box-shadow: 0 0 2rem rgba(0, 0, 0, 0.3);
    cursor: pointer;
}
.grid_container .serv2{
    margin: 2rem 0 -2rem;
}
.cta{
    height: 25rem;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cta-wrapper{
    height: 75%;
    width: 75%;
    margin: auto;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/banner.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 1.5rem;
    text-align: center;
    position: relative;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    color: white;
}
.cta-wrapper h1{
    margin-bottom: 2.5rem;
}
.btn-rojo{
    color: white;
    background-color: var(--rojo);
    border: none;
    outline: none;
    padding: .5rem 1.2rem;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-rojo:hover{
    background-color: var(--rojo-hover);
}
.container{
    margin-top: 4.5rem;
    height: 30rem;
    position: relative;
    background-size: cover;
    background-position: bottom;
    background-attachment: scroll;
    margin: 0 auto;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#nosotros-container{
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5)), url(../images/Cerro_de_La_Silla.jpg);
}
.container .content{
    width: 80%;
    text-align: center;
    margin: 0 auto;
}
.content h1{
    font-size: 3rem;
}
.content p{
    margin-top: 2rem;
    font-size: 1.2rem;
}
.mvv-section {
    padding: 2rem 0;
    text-align: center;
    background: linear-gradient(-45deg,#7C838B, #EE4136, #cf3227,#981a11);
    background-size: 400% 400%;
    animation: gradientAnimation 10s ease infinite;
  }
  
@keyframes gradientAnimation {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
}
.mvv-heading {
    font-size: 2rem;
    color: white;
    margin-bottom: 2rem;
} 
.mvv-item {
    margin-bottom: 1.5rem;
} 
.mvv-title {
    font-weight: bold;
    color: white;
    padding: 1.5rem;
    text-transform: uppercase;
}  
.mvv-text {
    color: white;
}
.mvv-icon {
    font-size: 2rem;
    color: white;
}
.slider{width: 100%}
.slider input{
    display: none;
}
.values{
    display: flex;
    align-items: baseline;
    justify-content: center;
    position: relative;
    min-height: 20rem;
    perspective: 65rem;
    overflow: hidden;
    margin-top: 1.5rem;
}
.values .item{
    transform: translateY(2.5rem);
    width: 20rem;
    height: 15rem;
    padding: 2rem;
    border-radius: 1.5rem;
    background-color: #f7f7f7;
    position: absolute;
    top: 0;
    box-sizing: border-box;
    text-align: center;
    transition: transform 0.4s;
    box-shadow: 0 0 1rem rgba(0,0,0,0.3);
    user-select: none;
    cursor: pointer;
  }
.values .item h1{
    padding-bottom: 20px;
}
.dots{
   display: flex;
   justify-content: center;
   align-items: center;
}
.dots label{
    height: 5px;
    width: 5px;
    border-radius: 50%;
    cursor: pointer;
    background-color: #ccc;
    margin: 7px;
    transition-duration: 0.2s;
}
#t-1:checked ~ .dots label[for="t-1"],
#t-2:checked ~ .dots label[for="t-2"],
#t-3:checked ~ .dots label[for="t-3"],
#t-4:checked ~ .dots label[for="t-4"],
#t-5:checked ~ .dots label[for="t-5"]{
    transform: scale(2);
    background-color:white;
    box-shadow: 0px 0px 0px 3px #ffffff6d;
}
#t-1:checked ~ .dots label[for="t-2"],
#t-2:checked ~ .dots label[for="t-1"],
#t-2:checked ~ .dots label[for="t-3"],
#t-3:checked ~ .dots label[for="t-2"],
#t-3:checked ~ .dots label[for="t-4"],
#t-4:checked ~ .dots label[for="t-3"],
#t-4:checked ~ .dots label[for="t-5"],
#t-5:checked ~ .dots label[for="t-4"]{
    transform: scale(1.5);
} 
#t-1:checked ~ .values label[for="t-3"],
#t-2:checked ~ .values label[for="t-4"],
#t-3:checked ~ .values label[for="t-5"],
#t-4:checked ~ .values label[for="t-1"],
#t-5:checked ~ .values label[for="t-2"]{
    transform: translate3d(600px, 0, -180px) rotateY(-25deg);
    z-index: 2;
} 
#t-1:checked ~ .values label[for="t-2"],
#t-2:checked ~ .values label[for="t-3"],
#t-3:checked ~ .values label[for="t-4"],
#t-4:checked ~ .values label[for="t-5"],
#t-5:checked ~ .values label[for="t-1"]{
    transform: translate3d(300px, 0, -90px) rotateY(-15deg);
    z-index: 3;
} 
#t-2:checked ~ .values label[for="t-1"],
#t-3:checked ~ .values label[for="t-2"],
#t-4:checked ~ .values label[for="t-3"],
#t-5:checked ~ .values label[for="t-4"],
#t-1:checked ~ .values label[for="t-5"]{
    transform: translate3d(-300px, 0, -90px) rotateY(15deg);
    z-index: 3;
} 
#t-3:checked ~ .values label[for="t-1"],
#t-4:checked ~ .values label[for="t-2"],
#t-5:checked ~ .values label[for="t-3"],
#t-2:checked ~ .values label[for="t-5"],
#t-1:checked ~ .values label[for="t-4"]{
    transform: translate3d(-600px, 0, -180px) rotateY(25deg);   
} 
#t-1:checked ~ .values label[for="t-1"],
#t-2:checked ~ .values label[for="t-2"],
#t-3:checked ~ .values label[for="t-3"],
#t-4:checked ~ .values label[for="t-4"],
#t-5:checked ~ .values label[for="t-4"],
#t-5:checked ~ .values label[for="t-5"]{
    z-index: 4;
}
.values i{
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--rojo);
}
#servicios-container{
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.85)), url(../images/servicios.jpg);
}
.servicios{
    width: 100%;
    background-color: #eee;
    padding: 2rem;
}
.servicios h1{
    text-align: center;
    margin-bottom: 1rem;
}
.servicios p{
    margin: 0 auto;
    text-align: center;
    margin-bottom: 2rem;
}
.servcont{
    width: 80%;
    margin: 0 auto;
}
.row{
    display: flex;
    flex-wrap: wrap;
}
.column{
    width: 100%;
    padding: 0 1rem 1rem 1rem;
    text-align: center;
    flex: 0 0 33.33%;
    max-width: 33.33%;
}
.card{
    width: 100%;
    height: 100%;
    padding: 2rem;
    background: linear-gradient(#fff 50%, var(--rojo) 50%);
    background-size: 100% 200%;
    background-position: 0 5.5%;
    border-radius: 1.5rem;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    cursor: pointer;
}
.card h3{
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f194c;
    margin-bottom: 1rem;
}
.mainul{
    list-style-position: inside;
    padding-bottom: 1rem;
}
.mainul li{
    font-weight: bold;
    margin: .5rem;
    font-size: 18px;
}
.column ul li::marker{
    color: var(--rojo);
}
.cardul li{
    color: #575a7b;
    line-height: 1.6;
    font-weight: normal;
    font-size: 16px;
}
.icon-wrapper{
    background-color: var(--rojo);
    position: relative;
    margin: auto;
    font-size: 2rem;
    height: 4rem;
    width: 4rem;
    color: white;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    transition: 0.5s;
}
.icon-wrapper img{
    position: relative;
    margin: auto;
    height: 2.9rem;
    width: 2.9rem;
    filter: invert(1);
}
.cardul{
    margin-bottom: 1.5rem;
}
.card:hover{
    background-position: 0 100%;
}
.card:hover .icon-wrapper{
    background-color: white;
    color: var(--rojo);
}
.card:hover .icon-wrapper img{
    filter: invert(45%) sepia(41%) saturate(6843%) hue-rotate(339deg) brightness(93%) contrast(100%);
}
.card:hover h3{
    color: white;
}
.card:hover ul li::marker{
    color: white;
}
.card:hover .cardul li{
    color: white;
}
.card:hover .cardul li:hover{
    color: #575a7b;
}
#contacto-container{
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.95)), url(../images/banner2.jpg);
}
.contacto-wrapper{
    position: relative;
    width: 100%;
    min-height: 64vh;
    padding: 3rem;
    overflow: hidden;
    display: flex;
    align-items: top;
    justify-content: center;
    background-color: #eee;
}
.form{
    width: 100%;
    max-width: 88vw;
    border-radius: 1.5rem;
    background-color: white;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.3);
    z-index: 999;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.contact-form{
    background-color: var(--rojo);
    position: relative;
}
.circle{
    border-radius: 50%;
    background: linear-gradient(135deg, transparent 20%, #ffbdb8);
    position: absolute;
}
.circle.one{
    width: 130px;
    height: 130px;
    top: 130px;
    right: -40px;
}
.circle.two{
    width: 80px;
    height: 80px;
    top: 10px;
    right: 30px;
}
.contacto-wrapper form{
    padding: 2.3rem 2.2rem;
    z-index: 10;
    overflow: hidden;
    position: relative;
}
.contact-form:before{
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    background-color: var(--rojo);
    transform: rotate(45deg);
    top: 50px;
    left: -13px;
}
.contact-form .title{
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.input-container{
    position: relative;
    margin: 1rem 0;
}
.contact-form .input{
    width: 100%;
    outline: none;
    border: 2px solid white;
    background: none;
    padding: 0.6rem 1.2rem;
    color: white;
    border-radius: 1.5rem;
    transition: 0.3s;
}
.contact-form textarea.input{
    padding: 0.8rem 1.2rem;
    min-height: 9.5rem;
    resize: none;
    overflow-y: auto;
}
.input-container label{
    position: absolute;
    top: 1.25rem;
    left: 1rem;
    transform: translateY(-50%);
    padding: 0 0.5rem;
    transition: 0.5s;
    pointer-events: none;
    z-index: 1000;
    color: white;
}
.input-container.textarea label{
    top: 1.5rem;
}
.contacto-wrapper .btn{
    padding: 0.6rem 1.2rem;
    background: white;
    border: 2px solid white;
    color: var(--rojo);
    border-radius: 1.5rem;
    font-size: 1rem;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
}
.contacto-wrapper .btn:hover{
    background-color: transparent;
    color: white;
    scale: 1.05;
}
.input-container span{
    position: absolute;
    top: 0;
    left: 1.5rem;
    transform: translateY(-50%);
    padding: 0 0.4rem;
    color: transparent;
    pointer-events: none;
    z-index: 500;
}
.input-container span:before,
.input-container span:after{
    content: '';
    position: absolute;
    width: 10%;
    opacity: 0;
    transition: 0.3s;
    height: 5px;
    background-color: var(--rojo);
    top: 50%;
    transform: translateY(-50%);
}
.input-container span:before{
    left: 50%;
}
.input-container span:after{
    right: 50%;
}
.input-container.focus label{
    top: 0;
    transform: translateY(-50%);
    left: 23px;
}
.input-container.focus span:before,
.input-container.focus span:after{
    width: 50%;
    opacity: 1;
}
.contact-info{
    padding: 2.3rem 2.2rem;
    position: relative;
}
.contact-info .title{
    color: var(--rojo);
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.contact-info .text{
    color: #333;
    margin: 1.5rem 0 2rem 0;
}
.contact-info .information{
    display: flex;
    color: #555;
    margin: 0.7rem 0;
    align-items: center;
}
.contact-info .information i{
    color: var(--rojo);
    margin: .5rem;
    font-size: 1.2rem;
}
.contact-info .social-media{
    padding: 2rem 0 0 0;
}
.contact-info .social-media p{
    color: #333;
    font-weight: bold;
}
.contact-info .social-icons{
    display: flex;
    margin-top: .5rem;
}
.contact-info .social-icons a{
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(45deg, #ff5061, #EE4136);
    border-radius: 5px;
    color: white;
    text-align: center;
    line-height: 2.5rem;
    margin-right: 1rem;
    transition: 0.3s;
    font-size: 1.1rem;
}
.contact-info .social-icons a:hover{
    transform: scale(1.05);
}
.contact-info:before{
    content: '';
    position: absolute;
    width: 110px;
    height: 100px;
    border: 22px solid var(--rojo);
    border-radius: 50%;
    bottom: -77px;
    right: 50px;
    opacity: 0.4;
}
.big-circle{
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #ff776d, #EE4136);
    bottom: 50%;
    right: 50%;
    transform: translate(-40%, 38%);
}
.big-circle:after{
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    background-color: #eee;
    border-radius: 50%;
    top: calc(50% - 180px);
    left: calc(50% - 180px);
}
.body{
    min-height: 100vh;
    background-color: var(--rojo);
    align-items: center;
    justify-content: center;
}
.center{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 30rem;
    width: 100%;
    background-color: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.center h1{
    text-align: center;
    border-bottom: 1px solid silver;
    margin-bottom: 1rem;
}
.center form{
    padding: 0 2rem;
    box-sizing: border-box;
}
.center form .txt_field{
    position: relative;
    border-bottom: 2px solid #adadad;
    margin: 30px 0;
}
.center .txt_field input{
    width: 100%;
    padding: 0 5px;
    height: 40px;
    border: none;
    background: none;
    outline: none;
}
.center .txt_field label{
    position: absolute;
    top: 50%;
    left: 5px;
    color: #adadad;
    transform: translateY(-50%);
    pointer-events: none;
    transition: 0.5s;
}
.center .txt_field span::before{
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--rojo);
    transition: 0.5s;
}
.center .txt_field input:focus ~ label,
.center .txt_field input:valid ~ label{
    top: -5px;
    color: var(--rojo);
}
.center .txt_field input:focus ~ span::before,
.center .txt_field input:valid ~ span::before{
    width: 100%;
}
.center input[type="submit"]{
    width: 100%;
    height: 50px;
    background: var(--rojo);
    border-radius: 1.5rem;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    outline: none;
    border: none;
    transition: 0.5s;
}
.center input[type="submit"]:hover{
    background: var(--rojo-hover);
}
.footer{
    height: 5rem;
    max-height: none;
    max-width: 100vw;
    width: 100%;
    text-align: center;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}
.footer h5{
    font-weight: 600;
    color: black;
    font-size: 1rem;
    margin-bottom: .5rem;
}
.footer p{
    color: #333;
    font-weight: 300;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.footer .icons .fa{
    color: black;
    margin: 0 1rem 1rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.footer .icons .fa:hover{
    scale: 1.05;
}
.footer .icons .fa:focus{
    scale: .95;
}
.footer .fa-heart-o{
    color: var(--rojo);
}
.dlo p{
    font-size: 0.5rem;
}

@media (max-width: 992px) {
    body{
        max-width: 100vw;
    }
    .navbar .links,
    .navbar-fixed .links{
        display: none;
    }
    .navbar .log,
    .navbar-fixed .log{
        display: none;
    }
    .barras{
        display: block;
        margin-right: 1.25rem;
        z-index: 1000;
    }
    .navbar.scrolled .barras span,
    .navbar-fixed .barras span{
        background: black;
    }
    .navbar.scrolled .barras span.barra1.activebarra1,
    .navbar.scrolled .barras span.barra3.activebarra3,
    .navbar-fixed .barras span.barra1.activebarra1,
    .navbar-fixed .barras span.barra3.activebarra3{
        background: white;
    }
    .menuabierto{
        display: block;
        right: 0;
        box-shadow: 0 0 0 100vmax rgba(0, 0, 0, 0.5);
    }
    .content h1{
        font-size: 2rem;
    }
    .about .grid_container{
        grid-template-columns: repeat(1, 1fr)
    }
    .about .serv, .about .serv2{
        margin: 0;
    }
    .cta-wrapper{
        width: 80vw;
    }
    .cta-wrapper h1{
        width: 70%;
    }
    .container{
        height: 20rem;
        margin-top: 4.5rem;
    }
    .container .content{
        width: 95%;
    }
    .servcont{
        width: 90%;
    }
    .row{
        flex-direction: column;
    }
    .column{
        max-width: 90vw;
        width: 100%;
    }
    .contacto-wrapper .form{
        grid-template-columns: 1fr;
    }
    .contacto-wrapper .contact-info:before{
        bottom: initial;
        top: -75px;
        right: 65px;
        transform: scale(0.95);
    }
    .contacto-wrapper .contact-form:before{
        top: -13px;
        left: initial;
        right: 70px;
    }
    .contacto-wrapper .big-circle{
        bottom: 75%;
    }
    .center{
        max-width: 80vw;
    }
    .footer{
        margin-top: 3rem;
    }
}