/* Asignacion de colores para pagina web */
:root{
    --rojo-principal:#f80c10;
    --rojo-secundario:#f9393c;
    --verde-principal:#096817;
    --verde-secundario:#0d9622;
    --verde-terciario: #c2d4c5;
    --verde-alternativo-negro: #bdc9bf;
    --blanco-principal: #ffffff;
    --blanco-secundario: #d6d6d6;
    --negro-principal: #000000;
    --negro-secundario: #1f1f1f;
}


/* Configuracion principal */
*{
    font-family: 'Roboto Slab', serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    transition: .2s linear;
}

*::selection{
  background: var(--verde-terciario);
}

html{
    font-size: 65%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 8rem;
}

::-webkit-scrollbar{
    height: 5rem;
    width: 1rem;
}

::-webkit-scrollbar-track{
    background-color: transparent;
}

::-webkit-scrollbar-thumb{
    background-color: var(--verde-principal);
    border-radius: 5rem;
}

body{
    background-color: var(--blanco-principal);
}

section{
    max-width: 1820px;
    margin: 0 auto;
    padding: 2rem;
}

/* Preloader */
.preloader{
  width: 100%;
  height: 100%;
  background-color: var(--blanco-principal);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  transition: 1s;
}

.pl {
  width: 6em;
  height: 6em;
}

.pl__ring {
  -webkit-animation: ringA 2s linear infinite;
          animation: ringA 2s linear infinite;
}

.pl__ring--a {
  stroke: var(--verde-principal);
}

.pl__ring--b {
  -webkit-animation-name: ringB;
          animation-name: ringB;
  stroke: var(--verde-secundario);
}

.pl__ring--c {
  -webkit-animation-name: ringC;
          animation-name: ringC;
  stroke: var(--rojo-secundario);
}

.pl__ring--d {
  -webkit-animation-name: ringD;
          animation-name: ringD;
  stroke: var(--rojo-principal);
}

/* Animations */
@-webkit-keyframes ringA {
  from, 4% {
    stroke-dasharray: 0 660;
    stroke-width: 20;
    stroke-dashoffset: -330;
  }

  12% {
    stroke-dasharray: 60 600;
    stroke-width: 30;
    stroke-dashoffset: -335;
  }

  32% {
    stroke-dasharray: 60 600;
    stroke-width: 30;
    stroke-dashoffset: -595;
  }

  40%, 54% {
    stroke-dasharray: 0 660;
    stroke-width: 20;
    stroke-dashoffset: -660;
  }

  62% {
    stroke-dasharray: 60 600;
    stroke-width: 30;
    stroke-dashoffset: -665;
  }

  82% {
    stroke-dasharray: 60 600;
    stroke-width: 30;
    stroke-dashoffset: -925;
  }

  90%, to {
    stroke-dasharray: 0 660;
    stroke-width: 20;
    stroke-dashoffset: -990;
  }
}
@keyframes ringA {
  from, 4% {
    stroke-dasharray: 0 660;
    stroke-width: 20;
    stroke-dashoffset: -330;
  }

  12% {
    stroke-dasharray: 60 600;
    stroke-width: 30;
    stroke-dashoffset: -335;
  }

  32% {
    stroke-dasharray: 60 600;
    stroke-width: 30;
    stroke-dashoffset: -595;
  }

  40%, 54% {
    stroke-dasharray: 0 660;
    stroke-width: 20;
    stroke-dashoffset: -660;
  }

  62% {
    stroke-dasharray: 60 600;
    stroke-width: 30;
    stroke-dashoffset: -665;
  }

  82% {
    stroke-dasharray: 60 600;
    stroke-width: 30;
    stroke-dashoffset: -925;
  }

  90%, to {
    stroke-dasharray: 0 660;
    stroke-width: 20;
    stroke-dashoffset: -990;
  }
}

@-webkit-keyframes ringB {
  from, 12% {
    stroke-dasharray: 0 220;
    stroke-width: 20;
    stroke-dashoffset: -110;
  }

  20% {
    stroke-dasharray: 20 200;
    stroke-width: 30;
    stroke-dashoffset: -115;
  }

  40% {
    stroke-dasharray: 20 200;
    stroke-width: 30;
    stroke-dashoffset: -195;
  }

  48%, 62% {
    stroke-dasharray: 0 220;
    stroke-width: 20;
    stroke-dashoffset: -220;
  }

  70% {
    stroke-dasharray: 20 200;
    stroke-width: 30;
    stroke-dashoffset: -225;
  }

  90% {
    stroke-dasharray: 20 200;
    stroke-width: 30;
    stroke-dashoffset: -305;
  }

  98%, to {
    stroke-dasharray: 0 220;
    stroke-width: 20;
    stroke-dashoffset: -330;
  }
}

@keyframes ringB {
  from, 12% {
    stroke-dasharray: 0 220;
    stroke-width: 20;
    stroke-dashoffset: -110;
  }

  20% {
    stroke-dasharray: 20 200;
    stroke-width: 30;
    stroke-dashoffset: -115;
  }

  40% {
    stroke-dasharray: 20 200;
    stroke-width: 30;
    stroke-dashoffset: -195;
  }

  48%, 62% {
    stroke-dasharray: 0 220;
    stroke-width: 20;
    stroke-dashoffset: -220;
  }

  70% {
    stroke-dasharray: 20 200;
    stroke-width: 30;
    stroke-dashoffset: -225;
  }

  90% {
    stroke-dasharray: 20 200;
    stroke-width: 30;
    stroke-dashoffset: -305;
  }

  98%, to {
    stroke-dasharray: 0 220;
    stroke-width: 20;
    stroke-dashoffset: -330;
  }
}

@-webkit-keyframes ringC {
  from {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: 0;
  }

  8% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -5;
  }

  28% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -175;
  }

  36%, 58% {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: -220;
  }

  66% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -225;
  }

  86% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -395;
  }

  94%, to {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: -440;
  }
}

@keyframes ringC {
  from {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: 0;
  }

  8% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -5;
  }

  28% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -175;
  }

  36%, 58% {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: -220;
  }

  66% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -225;
  }

  86% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -395;
  }

  94%, to {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: -440;
  }
}

@-webkit-keyframes ringD {
  from, 8% {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: 0;
  }

  16% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -5;
  }

  36% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -175;
  }

  44%, 50% {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: -220;
  }

  58% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -225;
  }

  78% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -395;
  }

  86%, to {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: -440;
  }
}

@keyframes ringD {
  from, 8% {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: 0;
  }

  16% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -5;
  }

  36% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -175;
  }

  44%, 50% {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: -220;
  }

  58% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -225;
  }

  78% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -395;
  }

  86%, to {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: -440;
  }
}

/* Header */
.header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.header.active{
    background-color: var(--blanco-secundario);
}

.header .flex{
  width: 90%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}

.header .flex .logo{
    width: 18rem;
    margin-left: 1.5rem;
}

.header .flex .navbar{
    margin-right: 1.5rem;
}

.header .flex .navbar a{
    margin-left: 3.5rem;
    color: var(--negro-principal);
    text-decoration: none;
    font-size: 1.7rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0.01rem;
    display: inline-block;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.header .flex .navbar a:hover{
    color: var(--verde-principal);
}


.header .flex .navbar .dot{
  width: 3rem;
  height: .25rem;
  background: var(--verde-principal);
  opacity: 0;
  margin-top: 0.3rem;
  -webkit-transform: translateX(40px);
  transform: translateX(40px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.header .flex .navbar a:nth-child(1):hover ~ .dot {
  -webkit-transform: translateX(45px);
  transform: translateX(45px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 1;
}

.header .flex .navbar a:nth-child(2):hover ~ .dot {
  width: 6rem;
  -webkit-transform: translateX(135px);
  transform: translateX(135px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 1;
}

.header .flex .navbar a:nth-child(3):hover ~ .dot {
  width: 6rem;
  -webkit-transform: translateX(256px);
  transform: translateX(256px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 1;
}

.header .flex .navbar a:nth-child(4):hover ~ .dot {
  width: 5rem;
  -webkit-transform: translateX(379px);
  transform: translateX(379px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 1;
}

.header .flex .navbar a:nth-child(5):hover ~ .dot {
  width: 5rem;
  -webkit-transform: translateX(494px);
  transform: translateX(494px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 1;
}

.header .flex .navbar a:nth-child(6):hover ~ .dot {
  width: 6rem;
  -webkit-transform: translateX(560px);
  transform: translateX(605px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 1;
}

#menu-btn{
    cursor: pointer;
    color: var(--negro-principal);
    font-size: 2rem;
    display: none;
}

#menu-btn.fa-times{
    transform: rotate(180deg);
}

.heading{
  margin-top: 0;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.2rem;
  text-align: center;
  font-size: 3rem;
  color: var(--negro-principal);
}

.heading span{
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.2rem;
  color: var(--verde-principal);
}

.btn-no{
  background: var(--verde-terciario);
  cursor: pointer;
  border: none;
  padding: 1rem 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--negro-principal);
  font-size: 1.3rem;
  position: relative;
  border-radius: .5rem;
}

.btn{
  background: var(--verde-terciario);
  cursor: pointer;
  border: none;
  padding: 1rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--negro-principal);
  font-size: 1.3rem;
  position: relative;
  border-radius: .5rem;
}

.btn-no:hover{
  background-color: var(--verde-principal);
  color: var(--blanco-principal);
}


.btn::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: linear-gradient(50deg,#ffffff, #ffffff, #096817,#ffffff, #ffffff);
  background-size: 800%;
  border-radius: .5rem;
  filter: blur(.5rem);
  animation: glowing 20s linear infinite;
}

@keyframes glowing {
  0% {
      background-position: 0 0;
  }
  50% {
      background-position: 250% 0;
  }
  100% {
      background-position: 0 0;
  }
}

.btn:hover{
  background-color: var(--verde-principal);
  color: var(--blanco-principal);
}

/* home */
.home{
  margin-top: 12rem;
  border-radius: 2rem;
  background: url(/Img/Clientes/clientes.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.home .row{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 5rem 2rem 5rem 2rem;
}

.home .row .content{
  flex:1 1 40rem;
  text-align: center;
}

.home .row .image{
  flex:1 1 40rem;
  display: flex;
  justify-content: center;
}

.home .row .image img{
  width: 80%;
  height: 20rem;
}

.home .row .capa{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  background: #000000;
  opacity: 0.3;
  z-index: -5;
}

.home .row .content h3{
  margin-bottom: .5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12rem;
  color: var(--blanco-principal);
  line-height: .8;
  letter-spacing: 0.2rem;
}

.home .row .content h2{
  font-size: 6rem;
  letter-spacing: 0.2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--blanco-principal);
  margin-bottom: 2.5rem;
}

.home .row .content .breadcrumb{
  display: flex;
  align-items: center;
  justify-content: center;
}

.home .row .content .breadcrumb li{
  list-style: none;
  margin-right: .5rem;
  font-weight: 400;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  color: var(--blanco-principal);
}

.home .row .content .breadcrumb a{
  color: var(--blanco-principal);
}

.home .row .content .breadcrumb a:hover{
  color: var(--verde-principal);
}

.home .row .content .breadcrumb .activo{
  color: var(--blanco-principal);
}

/* clientes */
.clientes{
  width: 90%;
  margin-bottom: 4rem;
}

.clientes p{
  margin-bottom: 3rem;
  padding: 1rem 0;
  line-height: 1.8;
  font-size: 1.5rem;
  color: var(--negro-secundario);
  font-family: 'Roboto Slab', serif;
  text-align: center;
}

.clientes .box_container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(22rem, 1fr));
  grid-auto-rows: minmax(150px, auto);
  gap: 3rem;
  margin-top: 3rem;
  grid-auto-flow: dense;
  align-items: center;
  justify-content: center;
}

.clientes .box_container .container_img{
  display: flex;
  align-items: center;
  justify-content: center;
}

.clientes .container_img .open_modal {
  border-radius: 1rem;
  height: 22rem;
  background: #d6d6d638;
  display: flex;
  justify-content: center;
  align-items: center;
}

.clientes .container_img .open_modal img{
  width: 70%;
}

.clientes .container_img .open_modal:hover img{
  scale: 1.1;
}

.container_all{
  top: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  visibility: hidden;
  opacity: 0;
  padding: 4rem;
  transition: all .5s;
  z-index: 100;
}

.container_all:target{
  background: rgba(0, 0, 0, 0.8);
  visibility: visible;
  opacity: 1;
}

.container_all:target .popup{
  top: 50%;
  left: 50%;
  transform: rotate(0deg) translate(-50%, -50%);
  visibility: visible;
}

.container_all .popup{
  width: 100%;
  max-width: 800px;
  height: 500px;
  border-radius: 2rem;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  visibility: hidden;
  top: -80%;
  left: -80%;
  transform: rotate(90deg) translate(-160%, 230%);
  transition: all 300ms;
  background: var(--blanco-principal);
}

.container_all .popup .btn_close_modal{
  width: 4rem;
  height: 4rem;
  position: absolute;
  font-family: 'Montserrat', sans-serif;
  top: -2rem;
  right: -2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--negro-principal);
  color: var(--blanco-principal);
  text-decoration: none;
  line-height: 1rem;
}

.container_all .popup .btn_close_modal:hover{
  scale: 1.2;
}

.container_all .un_dis{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Sector Educativo/Universidad_Distrital/3_Universidad_Distrital.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .un_lla{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Sector Educativo/Universidad_LLanos/3_Universidad_llanos.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .un_unal{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Sector Educativo/Universidad_Unal/3_Universidad_unal.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .un_libre{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Sector Educativo/Universidad_Libre/3_Universidad_libre.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .un_poli{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Sector Educativo/Universidad_Poli/3_Universidad_Poli.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .co_gm{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Sector Educativo/Gimnasio_Moderno/3_Gimnasio_Moderno.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .ji_mpgm{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Sector Educativo/Mi_Pequeno_Gran_Mundo/3_Mi_Pequeno_Gran_Mundo.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .enel{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Sector Publico/Enel_Codensa/3_enel_codensa.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .emsa{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Sector Publico/EMSA/3_emsa.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .ebsa{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Sector Publico/EBSA/3_ebsa.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .etolima{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Sector Publico/ENERTOLIMA/3_enertolima.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .lime{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Sector Publico/LIME/3_lime.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .aguasbogota{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Sector Publico/Aguas_Bogota/3_aguas_bogota.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .aseocapital{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Sector Publico/Aseo_Capital/3_aseo_capital.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .doñajuana{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Sector Publico/Dona_Juana/3_Dona_Juana.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .alcaldiabogota{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Sector Publico/Alcaldia_Bogota/3_Alcaldia_Bogota.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .bomberosbogota{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Sector Publico/Bomberos_Bogota/3_Bomberos_bogota.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .hospitalsanblas{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Sector Publico/Hospital_San_Blas/3_Hospital_San_Blas.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .inpec{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Sector Publico/INPEC/3_Inpec.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .humboldt{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Sector Publico/Humboldt/3_Humboldt.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .cas{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Sector Privado/CAS/3_Cas.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .kokoriko{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Sector Privado/Kokoriko/3_kokoriko.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .elpomar{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Sector Privado/El_Pomar/3_pomar.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .fiberglass{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Sector Privado/Fiberglass/3_fiberglass.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .corona{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Sector Privado/Corona/3_Corona.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .mansarovar{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Sector Privado/Mansarovar/3_Mansarovar.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .saxon{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Sector Privado/Saxon/3_Saxon.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .peldar{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Sector Privado/Peldar/3_Peldar.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .elportico{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Sector Privado/El_Portico/3_El_Portico.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .seminario{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Sector Privado/Seminario/3_Seminario.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .carmelitas{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Sector Privado/Carmelitas/3_carmelitas.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .unitedcolombia{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Sector Privado/United_Church/3_United_Church.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .pretecor{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Sector Privado/Pretecor/3_pretecor.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .celsia{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Sector Privado/Celsia/3_Celsia.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .minipak{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Sector Privado/Minipak/3_Minipak.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .eternit{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Sector Privado/Eternit/3_Eternit.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .conservation{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Constructoras_Fundaciones/Conservation_International/3_Conservation_International.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .challenger{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Constructoras_Fundaciones/Challenger/3_Challenger.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .fundacionnatura{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Constructoras_Fundaciones/Fundacion_Natura/3_Fundacion_Natura.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .minutodedios{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Constructoras_Fundaciones/Minuto_De_Dios/3_Minuto_De_Dios.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .pedrogomez{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Constructoras_Fundaciones/Pedro_Gomez/3_Pedro_Gomez.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .ariasarquitectos{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Constructoras_Fundaciones/Arias_Arquitectos/3_Arias_Arquitectos.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .prabyc{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Constructoras_Fundaciones/Prabyc/3_Prabyc.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .ligabogota{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Clubes_Parques/Liga_Bogota/3_Liga_Bogota.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .clubrancho{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Clubes_Parques/El_Rancho/3_Club_Rancho.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .clublagartos{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Clubes_Parques/Los_Lagartos/3_Club_Lagartos.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .salitremagico{
  width: 40%;
  height: 100%;
  background-image: url('/Img/Clientes/Clubes_Parques/Salitre_Magico/3_Salitre_Magico.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem 0 0 2rem;
}

.container_all .horizontal{
  width: 20rem;
}

.container_all .vertical{
  width: 12rem;
}

.container_all .logo {
  margin-bottom: 2rem;
}

.container_all .logo img{
  width: 100%;
}

.container_all .container_text{
  width: 60%;
  height: 100%;
  justify-content: center;
  padding: 4rem 4rem 4rem 4rem;
  overflow-y: auto;
}

.container_all .container_text h2{
  color: var(--negro-principal);
  text-align: right;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 2em;
}

.container_all .container_text p{
  font-family: 'Roboto Slab', serif;
  color: var(--negro-secundario);
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
  font-size: 1.3rem;
  margin-bottom: 1.8rem;
}

.container_all .container_text .año, .serviciosp{
  color: var(--negro-principal);
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 3rem;
  margin-bottom: .5rem;
}

.container_all .container_text .des-año, .des-servicio{
  font-family: 'Roboto Slab', serif;
  text-align: left;
  hyphens: auto;
  -webkit-hyphens: auto;
  margin-left: 1.5rem;
  color: var(--negro-secundario);
  font-size: 1.3rem;
  margin-bottom: .5rem;
}

.container_all .container_text .boton{
  display: flex;
  justify-content: right;
  margin-top: 5rem;
}

.container_all .container_text .boton a{
  display: inline-block;
  flex-direction:column;
  margin-left: 1rem;
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 50%;
  background-color: var(--verde-terciario);
  color: var(--blanco-principal);
  text-align: center;
  justify-content: center;
}

.container_all .container_text .boton svg{
  margin-top: 9px;
  margin-left: .8px;
}

.container_all .container_text .boton a:nth-child(1):hover{
  background: #e62714;
  scale: 1.1;
}
.container_all .container_text .boton a:nth-child(2):hover{
  background: #4267B2;
  scale: 1.1;
}
.container_all .container_text .boton a:nth-child(3):hover{
  background: #1DA1F2;
  scale: 1.1;
}
.container_all .container_text .boton a:nth-child(4):hover{
  background: #E1306C;
  scale: 1.1;
}
.container_all .container_text .boton a:nth-child(5):hover{
  background: #25D366;
  scale: 1.1;
}

/* Boton scroll */
#top-button{
  width: 5rem;
  height: 5rem;
  background: var(--verde-alternativo-negro);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  position: fixed;
  bottom: 9rem;
  right: 5rem;
  transform: scale(0);
  z-index: 20;
}

#top-button:hover{
  scale: 1.1;
  background: var(--verde-principal);
}

#top-button i{
  font-size: 1.8rem;
  color: var(--negro-principal);
}

#top-button:hover i{
  color: var(--blanco-principal);
}

/* Footer */
.footer{
  width: 100%;
  background-color: var(--blanco-secundario);
  text-align: center;
  justify-content: right;
}

.footer .share{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer .ventanas a:nth-child(1){
  margin-left: 0;
}

.footer .ventanas a{
  margin-top: 2rem;
  margin-left: 3rem;
  color: var(--negro-principal);
  text-decoration: none;
  font-size: 1.7rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.01rem;
  display: inline-block;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.footer .ventanas a:hover{
  color: var(--verde-principal);
}


.footer .share{
  margin-top: 3rem;
}

.footer .share .logo{
  flex: 1 1 40rem;
}

.flex .share .logo .info p{
  width: 60%;
  font-family: 'Roboto Slab', serif;
  font-weight: 200;
  font-size: 1.5rem;
  text-align: center;
}

.footer .share .logo img{
  width: 35rem;
}

.footer .share p{
  font-size: 1.3rem;
  margin-top: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.footer .share .redes_sociales .politica{
  margin-top: 1rem;
}

.footer .share .redes_sociales .politica a{
  text-decoration: none;
  color: var(--negro-principal);
  text-align: right;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
}

.footer .share .redes_sociales{
  flex: 1 1 40rem;
}

.footer .share .redes_sociales .descripcion {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.footer .share .redes_sociales h2{
  margin-top: 2.6rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.footer .share .redes_sociales p{
  width: 90%;
  font-family: 'Roboto Slab', serif;
  font-weight: 200;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.footer .share .redes_sociales .contenido{
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.footer .share .redes_sociales .contacto{
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  height: 4rem;
  width: 4rem;
  border-radius: 50%;
  background-color: var(--verde-alternativo-negro);
}

.footer .share .redes_sociales .contacto .ico{
  width: 45%;
  height: 45%;
}

.footer .share .redes_sociales .contacto:hover{
  background-color: var(--verde-principal);
  color: var(--blanco-principal);
  scale: 1.09;
}

.footer .share .redes_sociales .contacto svg{
  color: var(--negro-principal);
}

.footer .share .redes_sociales .contacto:hover svg{
  color: var(--blanco-principal);
}

.footer .credit{
  margin-top: 2rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem;
  padding-top: 2.5rem;
  width: 50%;
  border-top: .2rem solid var(--verde-principal);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--negro-principal);
}
.footer .credit .nombre{
  color: var(--verde-principal);
}

/* Responsive */
@media (max-width: 2220px){
}

@media (max-width: 1920px){
  .home{
    margin-top: 10rem;
    margin-bottom: 2rem;
  }

}

@media (max-width: 1280px){
  .home{
    margin: 12rem 3rem 2rem 3rem;
  }

  .home .row .content h3{
    font-size: 8rem;
  }  
  
  .home .row .content h2{
  font-size: 4rem;
  }  
}

@media (max-width: 1024px){
  .container_all .container_text .boton svg{
    margin-top: 8px;
  }
}

@media (max-width: 992px){
  html{
      font-size: 45%;
  }

  .header .flex .navbar .dot{
    display: none;
  }
  .header .flex .navbar a:nth-child(1):hover ~ .dot {
      -webkit-transform: translateX(39px);
      transform: translateX(39x);
  }
    
  .header .flex .navbar a:nth-child(2):hover ~ .dot {
      -webkit-transform: translateX(115px);
      transform: translateX(115px);
  }
    
  .header .flex .navbar a:nth-child(3):hover ~ .dot {
      -webkit-transform: translateX(218px);
      transform: translateX(218px);
  }
    
  .header .flex .navbar a:nth-child(4):hover ~ .dot {
      -webkit-transform: translateX(321px);
      transform: translateX(321px);
  }

  .header .flex .navbar a:nth-child(5):hover ~ .dot {
    -webkit-transform: translateX(418px);
    transform: translateX(418px);
  }

  .header .flex .navbar a:nth-child(6):hover ~ .dot {
    -webkit-transform: translateX(513px);
    transform: translateX(513px);
  }

  
}

@media (max-width: 820px){
  #menu-btn{
    display: inline-block;
    margin-left: 2rem;
  }

  #menu-btn:hover{
      color: var(--verde-principal);
  }
  .header{
    background-color: #ffffffa8;
  }
  .header .flex{
    width: 100%;
  }

  .header .flex .logo{
    margin-right: 2rem;
  }

  .header .flex .navbar{
      position: absolute;
      margin-right: 0;
      display: flex;
      flex-direction: column;
      font-family: 'Montserrat', sans-serif;
      top: 99%;
      left: 0;
      right: 0;
      border-top: .1rem solid var(--blanco-secundario);
      border-bottom: .1rem solid var(--blanco-secundario);
      background-color: #ffffffa8;
      clip-path: polygon(0 0, 100% 0%, 100% 0, 0 0);
  }
  .header .flex .navbar a{
      display: block;
      margin: 1rem;
      font-size: 1.5rem;
  }
  .header .flex .navbar.active.activo{
    background-color: var(--blanco-secundario); 
  }
  .header .flex .navbar.active{
      clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%);
  }
  
  .header .flex .navbar a{
    text-align: center;
  }

  .header .flex .navbar .dot{
    display: none;
  }

}

@media screen and (max-width: 700px) {
  .container_all .popup{
    flex-direction: column;
  }

  .container_all .img{
    border-radius: 2rem 2rem 0 0;
  }

  .container_all .img{
    width: 100%;
    height: 30%;
  }

  .container_all .horizontal{
    margin-left: 13.8rem;
  }

  .container_all .vertical{
    margin-left: 21.8rem;
  }

  .container_all .container_text {
    width: 100%;
    height: 60%;
    padding: 3rem;
  }

  .container_all .container_text p{
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
  }

  .container_all .container_text .des-año, .des-servicio{
  text-align: left;
  hyphens: auto;
  -webkit-hyphens: auto;
}

}

@media (max-width: 768px){
    .footer .share .redes_sociales .contacto{
      height: 3.8rem;
      width: 3.8rem;
    }

    .footer .share .redes_sociales p{
      font-size: 1.3rem;
      width: 100%;
    }

    .footer .credit{
      font-size: 1.1rem;
    }
    .footer .ventanas a{
      display: none;
    }

    .footer .credit{
      width: 80%;
      font-size: 1.1rem;
    }

    .home .row .content h3{
        font-size: 6rem;
    }
    .home .row .content h2{
        font-size: 2.6rem;
    }
  
}

@media (max-width: 650px){
  html{
      font-size: 50%;
  }
  .home .row .content h3{
      font-size: 6rem;
  }  

  .home .row .content h2{
    font-size: 3rem;
  }  

}

@media (max-width: 540px){
  html{
      font-size: 47%;
    }

  .container_all .logo{
    margin-bottom: 3.5rem;
  }

  .container_all .horizontal{
    margin-left: 32.5rem;
  }

  .container_all .vertical{
    margin-left: 40.5rem;
  }

  .container_all .container_text h2{
    text-align: left;
  }

  .container_all .container_text .des-año, .des-servicio{
    text-align: left;
  }

  .container_all .container_text .año, .serviciosp{
    text-align: left;
  }

  .container_all .container_text .boton{
    justify-content: left;
    margin-top: 4rem;
  }

  .container_all .container_text .boton svg{
    margin-top: 6px;
  }

}

@media (max-width: 450px){

  .home .row .content h3{
    font-size: 5.5rem;
  }
  .home .row .content h2{
    font-size: 2.5rem;
  }

  .clientes .box_container {
    grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  }
  .clientes .container_img .open_modal {
    height: 20rem;
  }

  .container_all .popup{
    max-height: 75rem;
  }

  .container_all .logo{
    margin-bottom: 3.5rem;
  }
  .container_all .container_text h2{
    font-size: 2rem;
    text-align: left;
  }

  .container_all .container_text .des-año, .des-servicio{
    font-size: 1.2rem;
    text-align: left;
  }

  .container_all .container_text .año, .serviciosp{
    font-size: 1.6rem;
    text-align: left;
  }

  .container_all .container_text .boton{
    justify-content: left;
    margin-top: 4rem;
  }

  .container_all .container_text .boton a{
    font-size: 1.2rem;
    margin-left: 0;
    margin-right: 1rem;
  }

  .container_all .container_text .boton svg{
    margin-top: 6px;
  }
}

@media (max-width: 414px){
  .container_all .vertical{
    margin-left: 24.8rem;
  }

  .container_all .horizontal{
    margin-left: 16.8rem;
  }
}

@media (max-width: 412px){
  .container_all .horizontal{
    margin-left: 16.5rem;
  }
  .container_all .vertical{
    margin-left: 24.5rem;
  }

}

@media (max-width: 393px){
  .home .row{
    margin: 5rem 0rem 5rem 0rem;
  }

  .home .row .content h3{
    font-size: 5.5rem;
  }
  .home .row .content h2{
    font-size: 2.5rem;
  }

  .container_all .horizontal{
    margin-left: 14.1rem;
  }

  .container_all .vertical{
    margin-left: 22.1rem;
  }

}

@media (max-width: 390px){
  .container_all .horizontal{
    margin-left: 13.8rem;
  }
  .container_all .vertical{
    margin-left: 21.8rem;
  }

}

@media (max-width: 375px){

  .home .row .content h3{
    font-size: 5rem;
  }
  .home .row .content h2{
    font-size: 2.5rem;
  }
  .container_all .popup{
    max-height: 75rem;
  }

  .container_all .horizontal{
    margin-left: 11.8rem;
  }

  .container_all .vertical{
    margin-left: 19.9rem;
  }

  .container_all .container_text h2{
    font-size: 2rem;
    text-align: left;
  }

  .container_all .container_text p{
    text-align: left;
  }

  .container_all .container_text .des-año, .des-servicio{
    font-size: 1.2rem;
    text-align: left;
  }

  .container_all .container_text .año, .serviciosp{
    font-size: 1.6rem;
    text-align: left;
  }

  .container_all .container_text .boton{
    justify-content: left;
    margin-top: 4rem;
  }

  .container_all .container_text .boton a{
    font-size: 1.2rem;
    margin-left: 0;
    margin-right: 1rem;
  }

  .container_all .container_text .boton svg{
    margin-top: 6px;
  }

}

@media (max-width: 360px){
  .container_all .horizontal{
    margin-left: 10rem;
  }

  .container_all .vertical{
    margin-left: 18rem;
  }

}

@media (max-width: 280px){
  html{
      font-size: 40%;
  }
  .home .row .content h3{
    font-size: 4.8rem;
  }

  .container_all .horizontal{
    margin-left: 8.9rem;
  }

  .container_all .vertical{
    margin-left: 16.9rem;
  }

  .clientes .box_container {
    grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
    grid-auto-rows: minmax(80px, auto);
  }
  .clientes .container_img .open_modal {
    height: 15rem;
  }

  .container_all .container_text .boton svg{
    width: 12px;
    margin-top: 3.5px;
    margin-left: .3px;
  }

}