@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;900&display=swap");

* {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  transition: 0.2s linear;
}

:root {
  --black: #4d4d4f;
  --white: #fff;
  --light-color: #87878786;
  --light-bg: #ded7d2;
  --google-color: #4285f4;
  --twitter-color: #1da1f2;
  --youtube-color: #ff0000;
  --linkedin-color: #0e76a8;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

html::-webkit-scrollbar {
  width: 1rem;
}

html::-webkit-scrollbar-track {
  background: var(--white);
}

html::-webkit-scrollbar-thumb {
  background: var(--black);
}

section {
  padding: 5rem 4%;
}

.btn {
  color: var(--white);
  font-weight: 600;
  font-size: 1.7rem;
  border: 0.1rem solid var(--white);
  border-radius: 10rem;
  padding: 1.5rem 4rem;
}

.boton {
  color: #005ca9;
  font-weight: 600;
  font-size: 1.7rem;
  border: 0.1rem solid #32a7ca;
  border-radius: 10rem;
  padding: 2rem 4rem;
}

.btn:hover {
  background: #005ca9;
  color: var(--white);
}

.boton:hover {
  background: #005ca9;
  color: var(--white); 
}

.go-top-btn {
  position: fixed;
  bottom: 35px;
  right: 35px;
  border-radius: 50%;
  cursor: pointer;
  /* height: 100px;
  width: 100px; */
  /* background: #fff;
  border: 3px solid #333;
  display: none;
  justify-content: center;
  align-items: center; */
  z-index: 1000;
}

.go-top-btn img {
  width: 50px;
  height: 50px;
}

.heading {
  font-size: 3.5rem;
  font-weight: 600;
  margin-top: 3rem;
  margin-bottom: 2rem;
  text-align: center;
}
/* home */
.home {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(images/parqueIndustrial.jpeg) no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  text-align: center;
}

.home h1 {
  font-size: 6rem;
  font-weight: 400;
  margin-bottom: 3rem;
  color: var(--white);
}

.home p {
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 3rem;
  text-transform: none;
  color: var(--white);
}
/* home */

/* header */

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100px;
  background: #005ca9;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 99;
}
nav .navbar {
  height: 100%;
  max-width: 1250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  /*background: red;*/
  padding: 0px 50px;
}

nav .navbar .nav-links {
  line-height: 100px;
  /*height: 100%;*/
}
nav .navbar .links {
  display: flex;
}
nav .navbar .links li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 20px;
}
nav .navbar .links li a {
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow {
  transform: rotate(180deg);
}

nav .navbar .links li .arrow {
  /* background: red; */
  height: 100%;
  width: 22px;
  line-height: 100px;
  text-align: center;
  display: inline-block;
  color: #ffffff;
  transition: all 0.3s ease;
}
nav .navbar .links li .sub-menu {
  position: absolute;
  top: 100px;
  left: 0;
  line-height: 40px;
  background: #005ca9;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
}
nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu {
  display: block;
}
.navbar .links li .sub-menu li {
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.navbar .links li .sub-menu a {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
}
.navbar .links li .sub-menu .more-arrow {
  line-height: 40px;
}
.navbar .links li .htmlCss-more-sub-menu {
  line-height: 40px;
}
.navbar .links li .sub-menu .more-sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}
.links li .sub-menu .more:hover .more-sub-menu {
  display: block;
}
.navbar .search-box {
  position: relative;
  height: 40px;
  width: 40px;
}
.navbar .search-box i {
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}
.navbar .search-box .input-box {
  position: absolute;
  right: calc(100% - 30px);
  top: 80px;
  height: 60px;
  width: 300px;
  background: #3e8da8;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}
.navbar.showInput .search-box .input-box {
  top: 65px;
  opacity: 1;
  pointer-events: auto;
  background: #005ca9;
}
.search-box .input-box::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  background: #005ca9;
  right: 10px;
  top: -6px;
  transform: rotate(45deg);
}
.search-box .input-box input {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  height: 35px;
  width: 280px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  border: none;
}
.navbar .nav-links .sidebar-logo {
  display: none;
}
.navbar .bx-menu {
  display: none;
}

.header {
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  /*padding: 5rem 9%;*/
  display: flex;
  align-items: center;
  z-index: 100;
}

.header.active {
  background: #005ca9;
  padding: 3rem 9%;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.header.active .logo,
.header.active .navbar a,
.header.active .menu {
  color: var(--black);
}

/* header */

/* about */

.about .box-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about .box-container .box p {
  font-size: 1.7rem;
  line-height: 1.5;
  text-align: justify;
  margin: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--black);
  text-transform: none;
}
.about .box-container .box .image {
  height: 50rem;
}

.about .box-container .box .image img {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  overflow: hidden;
} 

.about .box-container .box .image iframe {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  overflow: hidden;
}

/* about */

/* datos */

.titulo {
  font-size: 3.5rem;
  font-weight: 600;
  margin-top: 3rem;
  margin-bottom: 5rem;
  text-align: center;
}

.caja{
  text-align: center;
  border-radius: 3rem;
  padding: 3rem;

  /* background-size: cover;
  background-position: center;
  background-repeat: no-repeat; */
}


.contenedor .caja-contenedora {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
  gap: 5rem;
}

.contenedor .caja-contenedora .caja p {
  font-size: 1.7rem;
  line-height: 1.5;
  text-align: justify;
  margin-bottom: 1.5rem;
  padding-inline: 20px;
  text-transform: none;
}

.contenedor .caja-contenedora .caja .imagen {
  height: 45rem;
}

.contenedor .caja-contenedora .caja .imagen img {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  overflow: hidden;
  
} 


.contenedor .caja-contenedora .caja .imagen iframe {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  overflow: hidden;
  
} 

/* datos */


/* footer*/
.footer {
  PADDING: 20px;
  margin-top: 40px;
  text-align: center;
  background-color: #005ca9;
}

.footer .logo {
  font-size: 2rem;
  color: var(--white);
  font-weight: 700;
}

.footer .logo span {
  font-weight: normal;
}

.footer p {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 1.7rem;
  color: #ffffff;
}

.footer .socials {
  background: #262626;
  border-radius: 20px;
  cursor: pointer;
}

/* footer */

/* media queries */
@media (max-width: 920px) {
  nav .navbar {
    max-width: 100%;
    padding: 0 25px;
  }

  nav .navbar .logo a {
    font-size: 27px;
  }
  nav .navbar .links li {
    padding: 0 10px;
    white-space: nowrap;
  }
  nav .navbar .links li a {
    font-size: 15px;
  }
}
@media (max-width: 800px) {
  nav {
    position: absolute;
  }
  .navbar .bx-menu {
    display: block;
  }
  nav .navbar .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    max-width: 270px;
    width: 100%;
    background: #005ca9;
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
  }
  .navbar .nav-links .sidebar-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sidebar-logo .logo-name {
    font-size: 25px;
    color: #fff;
  }
  .sidebar-logo i,
  .navbar .bx-menu {
    font-size: 25px;
    color: #fff;
  }
  nav .navbar .links {
    display: block;
    margin-top: 20px;
  }
  nav .navbar .links li .arrow {
    line-height: 40px;
  }
  nav .navbar .links li {
    display: block;
  }
  nav .navbar .links li .sub-menu {
    position: relative;
    top: 0;
    box-shadow: none;
    display: none;
  }
  nav .navbar .links li .sub-menu li {
    border-bottom: none;
  }
  .navbar .links li .sub-menu .more-sub-menu {
    display: none;
    position: relative;
    left: 0;
  }
  .navbar .links li .sub-menu .more-sub-menu li {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .links li:hover .htmlcss-arrow,
  .links li:hover .js-arrow {
    transform: rotate(0deg);
  }
  .navbar .links li .sub-menu .more-sub-menu {
    display: none;
  }
  .navbar .links li .sub-menu .more span {
    /* background: red; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
  }

  .links li .sub-menu .more:hover .more-sub-menu {
    display: none;
  }
  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu {
    display: none;
  }
  .navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .navbar .nav-links.show3 .links .js-sub-menu,
  .navbar .nav-links.show2 .links .more .more-sub-menu {
    display: block;
  }
  .navbar .nav-links.show1 .links .htmlcss-arrow,
  .navbar .nav-links.show3 .links .js-arrow {
    transform: rotate(180deg);
  }
  .navbar .nav-links.show2 .links .more-arrow {
    transform: rotate(90deg);
  }
}
@media (max-width: 370px) {
  nav .navbar .nav-links {
    max-width: 100%;
  }
}

@media (max-width: 1200px) {
  .header {
    padding: 2rem;
  }

  .header.active {
    padding: 1.5rem;
  }

  .section {
    padding: 3rem 2rem;
  }

  .home h1 {
    font-size: 5rem;
  }

  .about .box-container .box .image {
    height: 40rem;
  }
}

@media (max-width: 991px) {
  html {
    font-size: 60%;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 55%;
  }
}
 
/* @media (min-width: 600px) {
  .wide {
    grid-column: span 2;
  }

  .tall {
    grid-row: span 2;
  }
}  */

@media screen and (max-width:800px) {
  .content-modal{
      width: 90%;
  }
}