@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Inter/Inter-VariableFont_opsz,wght.ttf");
}
@font-face {
  font-family: "Inter bold";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Inter/Inter-VariableFont_opsz,wght.ttf");
}
@font-face {
  font-family: "Inter Italic";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/Inter/Inter-Italic-VariableFont_opsz,wght.ttf");
}
:root {
  --primary: #363f57;
  --secondary: #262e44;
  --link: #01bbdb;
  --font_family: Inter, sans-serif;
  --font_weight: 400;
  --font_weight_title: 700;
  --acento: #ffcc00;
}

html {
  height: 100%;
}

body {
  height: 100%;
  font-family: var(--font_family);
  font-weight: var(--font_weight);
}

a {
  text-decoration: none;
}

.box {
  width: 100%;
  position: relative;
  min-height: 100%;
}
.box:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
}
.box .box-img {
  width: 40%;
  position: absolute;
  top: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 2;
  display: flex;
  align-items: center;
  background: url(../images/main-image.jpg) no-repeat top center;
  background-size: cover;
}
.box .box-img:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
}
.box .box-contenedor {
  width: 60%;
  background: rgba(10, 23, 55, 0.8);
  position: absolute;
  top: 0;
  left: 40%;
  bottom: 0;
  z-index: 2;
  padding: 100px;
  display: flex;
  align-items: center;
}
.box .box-contenedor .box-contenido {
  width: 100%;
  margin: 0 auto;
}

.logo {
  margin-bottom: 30px;
}
.logo .logo_img {
  margin-bottom: 20px;
  height: 60px;
}
.logo h2 {
  font-size: 28px;
  color: #fff;
  margin-top: 10px;
  line-height: 1.3;
  font-weight: var(--font_weight_title);
}
.logo h3 {
  font-size: 21px;
  color: var(--acento);
  margin-top: 10px;
  line-height: 1.3;
  font-weight: var(--font_weight);
}

.contact {
  margin-top: 20px;
}
.contact .btn-contact {
  transition: all 0.3s;
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
  border-radius: 0;
  padding: 5% 10%;
  font-weight: 700;
}
.contact .btn-contact i {
  margin-right: 0.5rem;
  color: var(--acento);
  font-size: 1.5rem;
}
.contact .btn-contact:hover {
  background-color: var(--acento);
  border-color: var(--acento);
  color: black;
}
.contact .btn-contact:hover i {
  color: black;
}

p {
  color: #fff;
  font-size: 14px;
  line-height: 1.5em;
}

.about {
  margin-top: 30px;
  margin-bottom: 30px;
}

.ubicacion p {
  color: var(--acento);
}

/****************************************
		Responsive Media Query
****************************************/
@media only screen and (max-width: 1024px) {
  .logo h2 {
    font-size: 32px;
  }

  .logo h3 {
    font-size: 24px;
  }

  .box .box-contenedor {
    background: rgba(10, 23, 55, 0.8);
    width: 80%;
    position: absolute;
    left: 20%;
    bottom: auto;
    min-height: 100%;
    padding: 50px;
  }

  .box .box-img {
    width: 20%;
    bottom: 0;
  }
}
@media only screen and (max-width: 768px) {
  .logo {
    margin-bottom: 20px;
  }
  .logo .logo_img {
    margin-bottom: 15px;
    height: 40px;
  }
  .logo .logo h2 {
    font-size: 36px;
  }
  .logo .logo h3 {
    font-size: 24px;
  }

  .box .box-contenedor {
    background: rgba(10, 23, 55, 0.8);
    width: 100%;
    position: absolute;
    left: 0;
    bottom: auto;
    min-height: 100%;
    padding: 10px;
  }

  .box .box-img {
    width: 100%;
    bottom: 0;
  }

  .box .box-contenedor {
    position: absolute;
    padding: 30px;
    height: 100%;
    overflow: auto;
  }
}
@media only screen and (max-width: 480px) {
  .logo {
    margin-bottom: 20px;
  }
  .logo .logo_img {
    margin-bottom: 15px;
    height: 40px;
  }
  .logo .logo h2 {
    font-size: 24px;
  }
  .logo .logo h3 {
    font-size: 18px;
  }

  .box .box-contenedor {
    position: absolute;
    padding: 30px;
    height: 100%;
    overflow: auto;
  }
}

/*# sourceMappingURL=custom.css.map */
