:root{
    --Yellow: #f6b436;
    --White: #ffffff;
    --Black: #000000;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Geneva, Verdana, sans-serif;
    font-size: 14px;
    scroll-behavior: smooth;
}

.Main_Container{
  width: 100vw;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
}

.Main_Content{
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  /* display: grid; */
  /* grid-template-rows:auto 1fr; */
  box-sizing: border-box;
  /* position: fixed; */
}

/* Header */

.Header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  border-top: .5rem solid var(--Yellow);
  background-color: rgba(255,255,255,0);
  transition: background-color .25s;

}

.Header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  /* background-color: var(--White); */
}

.Header li a {
  display: block;
  padding: 20px 20px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  color: var(--Yellow);
  font-size: 1.2rem;
}

.Header li a:hover,
.Header .menu-btn:hover {
  background-color: #5f5f5f45;
}

.Header a:active {
  color: var(--Black);
}

.Header a:visited {
  /* color: var(--Black); */
  color: var(--Yellow);
}

.Header a:visited:active {
  color: var(--Black);
}

/* .Header a:link {
  color: var(--Black);
} */

.Header a:link:active {
  color: var(--Black);
}

.Header .logo {
  display: block;
  float: left;
  padding: 10px 20px;
  text-decoration: none;
}

/* menu */

.Header .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
  background-color: transparent;
}

/* menu icon */

.Header .menu-icon {
  cursor: pointer;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}

.Header .menu-icon .navicon {
  background: var(--Black);
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

.Header .menu-icon .navicon:before,
.Header .menu-icon .navicon:after {
  background: var(--Black);
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.Header .menu-icon .navicon:before {
  top: 5px;
}

.Header .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */

.Header .menu-btn {
  display: none;
}

.Header .menu-btn:checked ~ .menu {
  /* max-height: 240px; */
  max-height: max-content;
}

.Header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.Header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.Header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.Header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.Header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

/* 48em = 768px */

@media (min-width: 48em) {
  .Header li {
    float: left;
  }
  .Header li a {
    padding: 20px 15px;
  }
  .Header .menu {
    clear: none;
    float: right;
    max-height: none;
  }
  .Header .menu-icon {
    display: none;
  }
 
}

/* END Header */

/* CONTENT */
.Content{
  width: 100%;
  height: 100%;
  position: fixed;
  box-sizing: border-box;

  display: grid;
  /* grid-template-rows:auto auto 1fr auto auto; */
  grid-template-rows:auto 1fr auto auto;


  overflow-y: auto;
  overflow-x: hidden;
}

  /* Background Video */

  .Contenedor_Video{
    display: block;
    width: 100%;
    height: 73vw;
    position: relative;
    overflow: hidden;
    text-align: center;
  }

    .Contenedor_Video video{
      position: absolute;
      display: block;
      top: 0;
      left: 0;
      width: 100%;
      object-fit: contain;
    }


  .Capa_Texto{
    width: 100%;
    display: block;
    position: absolute;
    color: var(--White);
    padding-top: 10%;
    padding-left: 7%;
    padding-right: 7%;
    z-index: 2;
    
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    letter-spacing: .2rem;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }


  .CapaOscura {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.7);
    /*mix-blend-mode: overlay;*/
}


/* Contenedor Información Contacto */

.Contenedor_Informacion{
  width: 100%;
  padding:2rem 2rem 5rem 2rem;
  margin-top: 2rem;
  background-color: var(--Yellow);
  box-sizing: border-box;

  display: grid;
  grid-template-rows: auto 1fr auto;
  
}

.Contenedor_SobreNosotros{
  width: 100%;
}

.Contenedor_SobreNosotros span{
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 3rem;
}

.Contenedor_SobreNosotros_Info{
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  display: grid;
  grid-template-columns: 50% 50%;
  padding-bottom: 2rem;
}

.ContenedorSobreNosotros_Img{
  display: flex;
  align-items: center;
  justify-content: center;
}

.ContenedorSobreNosotros_Img img{
  width: 15rem;
  height: 15rem;
}

.ContenedorSobreNosotros_Table table{
  width: 100%;
  border: 0;
  padding: 0;
}

.ContenedorSobreNosotros_Table td{
  border: 0;
  vertical-align: top;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
}

.ContenedorSobreNosotros_Table a{
  color: var(--Black);
}

#SubtituloContactanos{
  font-weight: bold; 
  font-size: 2.5rem;
}

.Contenedor_RedesSociales{
  width: 100%;
  margin-top: 2rem;
}

.Contenedor_RedesSociales span{
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: bold;
}


.Contenedor_RedesSociales table{
  width: 100%;
  border: 0;
  padding: 0;
}

.Contenedor_RedesSociales td{
  border: 0;
  vertical-align: top;
  font-size: 2rem;
  font-weight: bold;
}

/* Formulario Contacto */

.Contenedor_Contacto{
  width: 100%;
  display: grid;
  grid-template-columns: 40% 60%;
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.Contenedor_Info_Contacto{
  display: flex;
  align-items: center;
  flex-direction: column;
}

.Contenedor_Info_Contacto span{
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  margin: 1rem 2rem 1rem 2rem;
  text-align: center;
}

.Contenedor_Info_Contacto a {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  color: #075E54;
  font-weight: bold;
  letter-spacing: .1rem;
}

.Contenedor_Info_Contacto a:hover {
  color: #128C7E;
}

.Contenedor_Formulario_Contacto{
  width: 100%;
  box-sizing: border-box;
  padding: 2rem;
}

.Contenedor_Formulario_Contacto input{
  width: 100%;
  padding: .5rem .3rem .5rem .3rem;
  background-color: var(--White);
  margin-top: .2rem;
  margin-bottom: .2rem;
  border: .1rem solid var(--Black);
  border-radius: .3rem;
  font-family: "Poppins", sans-serif;
}

.Contenedor_Formulario_Contacto input:focus{
  outline: none;
}

.Contenedor_Formulario_Contacto textarea{
  width: 100%;
  padding: .2rem;
  background-color: var(--White);
  margin-top: .2rem;
  margin-bottom: .2rem;
  border: .1rem solid var(--Black);
  border-radius: .3rem;
  resize: none;
  font-family: "Poppins", sans-serif;
}

.Contenedor_Formulario_Contacto textarea:focus{
  outline: none;
}

.Contenedor_Formulario_Contacto span{
  font-weight: bold; 
  font-size: 2.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-family: "Poppins", sans-serif;
}

.Contenedor_Formulario_Contacto button{
  font-family: "Poppins", sans-serif;
  float: right;
  width: auto;
  padding: .5rem 1rem .5rem 1rem;
  margin: 1rem 0 1rem 0;
  cursor: pointer;
  background-color: var(--White);
  border: .1rem solid var(--Yellow);
  border-radius: .2rem;
  font-weight: bold;
  font-size: 1.1rem;
}

.Contenedor_Formulario_Contacto button:hover{
  background-color: var(--Yellow);
}

/* Proyectos */

.Contenedor_Proyectos{
  width: 100%;
  margin-top: 10rem;
  margin-bottom: 10rem;
  display: grid;
  grid-template-rows: auto 1fr;
  background-color: #dbdbdb33;
}

.Contenedor_Subtitulo_Proyectos{
  width: 100%;
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.Contenedor_Subtitulo_Proyectos span{
  font-size: 3rem;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
}

.Contenedor_Scroll_Proyectos {
  width: 100%;
  display: grid;
  grid-template-columns:auto 1fr auto;
}

.Arrow_Proyectos{
  display: flex;
  width: 100%;
  padding: 7rem 2rem 7rem 2rem;
  align-items: center;
  justify-content: center;
}

.Arrow_Proyectos:hover{
  background-color: #d7d7d74a;
}

.Arrow_Proyectos button{
  background-color: transparent;
  border: 0;
  font-weight: bold;
  font-size: 4rem;
  cursor: pointer;
}

.Arrow_Proyectos button:hover{
  color: var(--Yellow);
}

.Contenedor_Carrusel_Proyectos{
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 2rem;
  overflow-y: hidden;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.Contenedor_Carrusel_Proyectos::-webkit-scrollbar {
  height: 5px;
}

.Contenedor_Carrusel_Proyectos::-webkit-scrollbar-track {
  background: #c7c7c799; 
}
 
.Contenedor_Carrusel_Proyectos::-webkit-scrollbar-thumb {
  background: #feb42a; 
}

.Contenedor_Carrusel_Proyectos::-webkit-scrollbar-thumb:hover {
  background: #ffc966; 
}

.Carrusel_Proyectos_Box{
  width: 30%;
  height: 20rem;
  box-sizing: border-box;
  padding: 2rem;
  margin: 3rem 1rem 3rem 1rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: .3rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  flex: none;
  background-position: center; 
  background-size: cover;
}

.Carrusel_Proyectos_Box span{
  font-weight: bold;
  font-size: 1.5rem;
  word-break: normal;
  font-family: "Poppins", sans-serif;
  margin: 2rem 0 2rem 0;
  text-align: center;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.Carrusel_Proyectos_Box img{
  width: 15rem;
  height: 15rem;
  border-radius: .2rem;
  background-position: center; 
  background-size: cover; 
}

/* Servicios */

.Contenedor_Servicios{
  width: 100%;
  margin-top: 10rem;
  margin-bottom: 10rem;
  display: grid;
  grid-template-rows: auto 1fr;
  background-color: #dbdbdb33;
}

.Contenedor_Subtitulo_Servicios{
  width: 100%;
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.Contenedor_Subtitulo_Servicios span{
  font-size: 3rem;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
}

.Contenedor_Scroll_Servicios {
  width: 100%;
  display: grid;
  grid-template-columns:auto 1fr auto;
}

.Arrow_Servicios{
  display: flex;
  width: 100%;
  padding: 7rem 2rem 7rem 2rem;
  align-items: center;
  justify-content: center;
}

.Arrow_Servicios:hover{
  background-color: #d7d7d74a;
}

.Arrow_Servicios button{
  background-color: transparent;
  border: 0;
  font-weight: bold;
  font-size: 4rem;
  cursor: pointer;
}

.Arrow_Servicios button:hover{
  color: var(--Yellow);
}

.Contenedor_Carrusel_Servicios{
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 2rem;
  overflow-y: hidden;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.Contenedor_Carrusel_Servicios::-webkit-scrollbar {
  height: 5px;
}

.Contenedor_Carrusel_Servicios::-webkit-scrollbar-track {
  background: #c7c7c799; 
}
 
.Contenedor_Carrusel_Servicios::-webkit-scrollbar-thumb {
  background: #feb42a; 
}

.Contenedor_Carrusel_Servicios::-webkit-scrollbar-thumb:hover {
  background: #ffc966; 
}

.Carrusel_Servicios_Box{
  width: 30%;
  height: 10rem;
  box-sizing: border-box;
  padding: 2rem;
  margin: 3rem 1rem 3rem 1rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: .3rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  flex: none;
  background-position: center;
  background-size: cover;
}

.Carrusel_Servicios_Box span{
  font-weight: bold;
  font-size: 1.6rem;
  word-break: normal;
  font-family: "Poppins", sans-serif;
  margin: 2rem 0 2rem 0;
  text-align: center;
  color: var(--White);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.Carrusel_Servicios_Box img{
  width: 15rem;
  height: 15rem;
  border-radius: .2rem;
}


/* Clientes */
.Contenedor_Clientes{
  width: 100%;
  margin-top: 10rem;
  margin-bottom: 10rem;
  display: grid;
  grid-template-rows: auto 1fr;
  background-color: #dbdbdb33;
}

.Contenedor_Subtitulo_Clientes{
  width: 100%;
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.Contenedor_Subtitulo_Clientes span{
  font-size: 3rem;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
}

.Contenedor_Scroll_Clientes {
  width: 100%;
  display: grid;
  grid-template-columns:auto 1fr auto;
}

.Arrow_Clientes{
  display: flex;
  width: 100%;
  padding: 7rem 2rem 7rem 2rem;
  align-items: center;
  justify-content: center;
}

.Arrow_Clientes:hover{
  background-color: #d7d7d74a;
}

.Arrow_Clientes button{
  background-color: transparent;
  border: 0;
  font-weight: bold;
  font-size: 4rem;
  cursor: pointer;
}

.Arrow_Clientes button:hover{
  color: var(--Yellow);
}

.Contenedor_Carrusel_Clientes{
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 2rem;
  overflow-y: hidden;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.Contenedor_Carrusel_Clientes::-webkit-scrollbar {
  height: 5px;
}

.Contenedor_Carrusel_Clientes::-webkit-scrollbar-track {
  background: #c7c7c799; 
}
 
.Contenedor_Carrusel_Clientes::-webkit-scrollbar-thumb {
  background: #feb42a; 
}

.Contenedor_Carrusel_Clientes::-webkit-scrollbar-thumb:hover {
  background: #ffc966; 
}

.Carrusel_Clientes_Box{
  width: 30%;
  height: 10rem;
  box-sizing: border-box;
  padding: 2rem;
  margin: 3rem 1rem 3rem 1rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: .3rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  flex: none;
}

.Carrusel_Clientes_Box span{
  font-weight: bold;
  font-size: 1.5rem;
  word-break: normal;
  font-family: "Poppins", sans-serif;
  margin: 2rem 0 2rem 0;
  text-align: center;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Historia */
.Contenedor_Historia{
  width: 100%;
  margin-top: 10rem;
  margin-bottom: 10rem;
  display: grid;
  grid-template-rows: auto 1fr;
  background-color: #dbdbdb33;
}

.Contenedor_Subtitulo_Historia{
  width: 100%;
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.Contenedor_Subtitulo_Historia span{
  font-size: 3rem;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
}

.Contenedor_Scroll_Historia {
  width: 100%;
  display: grid;
  grid-template-columns:3% 94% 3%;
}

.Contenedor_Carrusel_Historia{
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  padding: 0 2rem 0 2rem;
  gap: 2rem;
  overflow-y: hidden;
  overflow-x: auto;
  scroll-behavior: smooth;
  background-color: #ffffff;
  background-size: 30px 30px;
  background-image:  repeating-linear-gradient(to right, #f6b436, #f6b436 1.5px, #ffffff 1.5px, #ffffff);
}

.Contenedor_Carrusel_Historia::-webkit-scrollbar {
  height: 5px;
}

.Contenedor_Carrusel_Historia::-webkit-scrollbar-track {
  background: #c7c7c799; 
}
 
.Contenedor_Carrusel_Historia::-webkit-scrollbar-thumb {
  background: #feb42a; 
}

.Contenedor_Carrusel_Historia::-webkit-scrollbar-thumb:hover {
  background: #ffc966; 
}

.Carrusel_Historia_Box{
  width: 90%;
  height: 23rem;
  box-sizing: border-box;
  padding: 2rem 3rem 2rem 3rem;
  margin: 3rem 1rem 3rem 1rem;
  background-color: var(--White);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: .3rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex: none;
}

.Carrusel_Historia_Box span{
  font-weight: bold;
  font-size: 2.3rem;
  word-break: normal;
  font-family: "Poppins", sans-serif;
  width: 100%;
  letter-spacing: .3rem;
  margin: .5rem 0 .5rem 0;
  text-align: left;
  text-decoration: underline;
  text-decoration-color: var(--Yellow);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.Carrusel_Historia_Box p{
  font-size: 1.8rem;
  word-break: normal;
  font-family: "Poppins", sans-serif;
  margin: 1rem 0 1rem 0;
  text-align: center;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.Carrusel_Historia_Box ul{
  width: 100%;
  text-align: left;
  padding-left: 2rem;
  padding-top: 1.5rem;
  list-style-type: square;
}

.Carrusel_Historia_Box li{
  padding-bottom: .5rem;
  font-size: 1.5rem;
  word-break: normal;
  font-family: "Poppins", sans-serif;

}


/* RESPONSIVE MEDIA */

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {

  * {
    font-size: 10px;
  }

  .Capa_Texto {
    padding-top: 30%;
    font-size: 1rem;
  }

  .Arrow_Servicios button{
    font-size: 2rem;
  }

  .Arrow_Clientes button{
    font-size: 2rem;
  }

  .ContenedorSobreNosotros_Img img {
    width: 9rem;
    height: 9rem;
  }

  .ContenedorSobreNosotros_Table td {
    font-size: 1.2rem;
  }

  .Contenedor_SobreNosotros_Info {
    grid-template-columns: 30% 70%;
  }

  .ContenedorSobreNosotros_Table{
    padding-left: 2rem;
  }

  .Carrusel_Servicios_Box{
    width: 90%;
    height: 15rem;
  }

  .Carrusel_Clientes_Box {
    width: 90%;
    height: 10rem;
  }

  .Contenedor_SobreNosotros{
    text-align: center;
  }

  #SubtituloContactanos{
    font-weight: bold; 
    font-size: 1.8rem;
  }

  .Contenedor_Contacto {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .Carrusel_Proyectos_Box {
    width: 90%;
  }

  .Carrusel_Historia_Box span{
    font-size: 1.8rem;
  }

  .Carrusel_Historia_Box p{
    font-size: 1.1rem;
  }

  .Carrusel_Historia_Box li{
    font-size: 1.1rem;
  }

}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  * {
    font-size: 11px;
  }

  .Capa_Texto {
    padding-top: 30%;
    font-size: 1rem;
  }

  .Arrow_Servicios button{
    font-size: 2rem;
  }

  .Arrow_Clientes button{
    font-size: 2rem;
  }

  .ContenedorSobreNosotros_Img img {
    width: 9rem;
    height: 9rem;
  }

  .ContenedorSobreNosotros_Table td {
    font-size: 1.3rem;
  }

  .Contenedor_SobreNosotros_Info {
    grid-template-columns: 35% 65%;
  }

  .Carrusel_Servicios_Box{
    width: 80%;
    height: 14rem;
  }

  .Carrusel_Clientes_Box {
    width: 50%;
    height: 14rem;
  }

  .Contenedor_SobreNosotros{
    text-align: center;
  }

  #SubtituloContactanos{
    font-weight: bold; 
    font-size: 2rem;
  }

  .Contenedor_Contacto {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .Carrusel_Proyectos_Box {
    width: 80%;
  }

    .Carrusel_Historia_Box span{
    font-size: 1.9rem;
  }

  .Carrusel_Historia_Box p{
    font-size: 1.2rem;
  }

  .Carrusel_Historia_Box li{
    font-size: 1.2rem;
  }

}


/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  
  * {
    font-size: 12px;
  }

  .Capa_Texto {
    padding-top: 25%;
    font-size: 1.8rem;
  }

  .Arrow_Servicios button{
    font-size: 2rem;
  }

  .Arrow_Clientes button{
    font-size: 2rem;
  }

  .ContenedorSobreNosotros_Img img {
    width: 12rem;
    height: 12rem;
  }

  .ContenedorSobreNosotros_Table td {
    font-size: 1.5rem;
  }

  .Contenedor_SobreNosotros_Info {
    grid-template-columns: 40% 60%;
  }

  .Carrusel_Servicios_Box{
    width: 30%;
    height: 15rem;
  }

  .Carrusel_Clientes_Box {
    width: 30%;
    height: 12rem;
  }

  .Contenedor_SobreNosotros{
    text-align: left;
  }

  .Contenedor_Contacto {
    grid-template-columns: 40% 60%;
    grid-template-rows:  1fr;
  }

  .Carrusel_Proyectos_Box {
    width: 30%;
  }

    .Carrusel_Historia_Box span{
    font-size: 2rem;
  }

  .Carrusel_Historia_Box p{
    font-size: 1.4rem;
  }

  .Carrusel_Historia_Box li{
    font-size: 1.4rem;
  }

}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  * {
    font-size: 13px;
  }

  .Capa_Texto {
    padding-top: 25%;
    font-size: 2.8rem;
  }

  .Arrow_Servicios button{
    font-size: 3.5rem;
  }

  .Arrow_Clientes button{
    font-size: 3.5rem;
  }

  .ContenedorSobreNosotros_Img img {
    width: 14rem;
    height: 14rem;
  }

  .ContenedorSobreNosotros_Table td {
    font-size: 1.8rem;
  }

  .Contenedor_SobreNosotros_Info {
    grid-template-columns: 50% 50%;
  }

  .Carrusel_Servicios_Box{
    width: 30%;
    height: 15rem;
  }

  .Carrusel_Clientes_Box {
    width: 23%;
    height: 12rem;
  }

  .Contenedor_SobreNosotros{
    text-align: left;
  }

  .Contenedor_Contacto {
    grid-template-columns: 40% 60%;
    grid-template-rows:  1fr;
  }

  .Carrusel_Proyectos_Box {
    width: 30%;
  }

  .Carrusel_Historia_Box span{
  font-size: 2.3rem;
  }

  .Carrusel_Historia_Box p{
    font-size: 1.8rem;
  }

  .Carrusel_Historia_Box li{
    font-size: 1.5rem;
  }

}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  * {
    font-size: 14px;
  }

  .Capa_Texto {
    padding-top: 10%;
    font-size: 3rem;
  }

  .Arrow_Servicios button{
    font-size: 4rem;
  }

  .Arrow_Clientes button{
    font-size: 4rem;
  }

  .ContenedorSobreNosotros_Img img {
    width: 15rem;
    height: 15rem;
  }

  .ContenedorSobreNosotros_Table td {
    font-size: 1.8rem;
  }

  .Contenedor_SobreNosotros_Info {
    grid-template-columns: 50% 50%;
  }

  .Carrusel_Servicios_Box{
    width: 30%;
    height: 15rem;
  }

  .Carrusel_Clientes_Box {
    width: 20%;
    height: 12rem;
  }

  .Contenedor_SobreNosotros{
    text-align: left;
  }

  .Contenedor_Contacto {
    grid-template-columns: 40% 60%;
    grid-template-rows:  1fr;
  }

  .Carrusel_Proyectos_Box {
    width: 30%;
  }

  .Carrusel_Historia_Box span{
  font-size: 2.3rem;
  }

  .Carrusel_Historia_Box p{
    font-size: 1.8rem;
  }

  .Carrusel_Historia_Box li{
    font-size: 1.5rem;
  }

}