:root {
  --c-black: #000000;
  --c-white: #ffffff;
  --c-grey: #a9a9a9;
  --c-gold: #baa15f;
  --c-grey-dark: #121212;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--c-black);
  color: var(--c-white);
  font-family: Montserrat, sans-serif;
  font-weight: 300;
}

.logo {
  display: block;
  width: 100%;
}

.responsive {
  height: auto;
  width: 100%;
}

header {
  background-image: url(../assets/img/background-mountain.jpg);
  background-size: cover;
}

.header-subpages {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../assets/img/background-mountain.jpg);
  background-size: cover;
}

.header-cards-1 {
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url(../assets/img/bg-cards.jpg);
  background-size: cover;
}

.header-cards-2 {
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url(../assets/img/bg-cards_2.jpg);
  background-size: cover;
}

.header-cards-3 {
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url(../assets/img/bg-cards_3.jpg);
  background-size: cover;
}

.header-cards-4 {
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url(../assets/img/bg-cards_4.jpg);
  background-size: cover;
}

.background-black {
  background-color: black;
  background-image: none;
}

.contenedor {
  max-width: 1300px;
  padding: 0 5rem;
}

/* EFECTO SCROLL */
@media (min-height: 30em) {
  main {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
  }
}

.section {
  color: white;
  min-height: 100vh;
  position: relative;
  scroll-snap-align: center;
}

@media (min-height: 30em) {
  .section {
    height: 100vh;
  }
}

.center-items-row {
  align-items: center;
  display: flex;
  justify-content: center;
}

.center-items-column {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ESTILOS TIPOGRÁFICOS */

.main-title {
  font-size: 48px;
  font-weight: 300;
  line-height: 62px;
  margin-bottom: 20px;
  margin-top: 0;
}

@media screen and (max-width: 800px) {
  .main-title {
    font-size: 24px;
    line-height: 1.5;
  }
}

.section-title {
  display: inline-block;
  font-size: 44px;
  font-weight: 300;
  line-height: 56px;
  margin-bottom: 20px;
  margin-right: 18px;
}

@media screen and (max-width: 800px) {
  .section-title {
    font-size: 20px;
    line-height: 1.5;
  }
}

.paragraph-sub {
  color: var(--c-grey);
  font-size: 28px;
  line-height: 44px;
}

@media screen and (max-width: 800px) {
  .paragraph-sub {
    font-size: 16px;
    line-height: 1.5;
  }
}

.bold {
  font-weight: 700;
}

.text-gold {
  color: var(--c-gold);
}

.text-center2 {
  text-align: center;
}

.support a {
  color: #fff;
}

.support p {
  color: #fff;
  font-size: 32px;
  margin-bottom: 1rem;
}

/* EFECTO A ELEMNTOS */

@media (min-height: 30em) {
  .section__content > * {
    opacity: 0;
    transform: translate3d(0, 4rem, 0);
    transition: opacity 800ms var(--delay), transform 800ms cubic-bezier(0.13, 0.07, 0.26, 0.99) var(--delay);
  }
}

.is-visible .section__content > * {
  opacity: 1;
  transform: translate3d(0, 1rem, 0);
}
.is-visible .section__img {
  opacity: 0.75;
}

/* FOOTER */

.d-block {
  display: block;
}

.d-flex {
  display: flex;
  justify-content: space-between;
}

.flex-direction-column {
  flex-direction: column;
}

.flex-direction {
  flex-direction: row;
}

@media only screen and (max-width: 800px) {
  .flex-direction {
    flex-direction: column;
  }
}

.flex-item-100 {
  flex: 0 1 100%;
}

.align-items-start {
  align-items: flex-start;
}

.w-100 {
  width: 100%;
}

.footer-menu {
  list-style: none;
  margin-top: 0;
}

.footer-link-dark {
  color: var(--c-grey);
  display: block;
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  margin-right: 20px;
  padding-bottom: 20px;
  padding-top: 20px;
  text-decoration: none;
  -webkit-transition: color 200ms ease;
  transition: color 200ms ease;
}

.footer-link-dark:hover {
  color: var(--c-white);
}

/* CAROUSEL */

.cita {
  font-family: Lora, sans-serif;
  font-size: 36px;
  line-height: 48px;
}

@media screen and (max-width: 800px) {
  .cita {
    font-family: Lora, sans-serif;
    font-size: 16px;
    line-height: 1.5;
  }
}

.cita-author {
  align-self: flex-end;
  color: var(--c-grey);
  font-size: 28px;
  font-style: italic;
  line-height: 44px;
  text-align: right;
}

@media screen and (max-width: 800px) {
  .cita-author {
    font-size: 12px;
    line-height: 1.5;
  }
}

.cita-author-name {
  color: var(--c-white);
}

.flex-corousel-center {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.corousel-item-1 {
  background-image: url(../assets/img/item-1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 600px;
}

.corousel-item-2 {
  background-image: url(../assets/img/item-2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 600px;
}

.corousel-item-3 {
  background-image: url(../assets/img/item-3.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 600px;
}

.corousel-item-4 {
  background-image: url(../assets/img/item-4.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 600px;
}

.courusel-width {
  width: 100%;
}

.courusel-width-inner {
  margin: 0 auto;
  max-width: 1100px;
}

/* @media only screen and (max-width: 1200px) {
  
} */

/* FONDO BARRAS GRISES */

.w-row::after {
  clear: both;
}

.w-row::before,
.w-row::after {
  content: " ";
  display: table;
  grid-column-end: 2;
  grid-column-start: 1;
  grid-row-end: 2;
  grid-row-start: 1;
}

.lines-row-form {
  -webkit-align-items: flex-end;
  align-items: flex-end;
  bottom: 0px;
  -webkit-box-align: end;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
  left: 0px;
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: -1;
}

.lines-row {
  bottom: 0px;
  display: none;
  left: 0px;
  position: fixed;
  right: 0px;
  top: 0px;
  z-index: -1;
}

.line-col {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  height: 100vh;
}

.line-col.dark {
  border-right-color: hsla(0, 0%, 100%, 0.1);
  border-right-style: none;
  height: 100%;
}

.line-col.dark._4 {
  background-color: #121212;
}

.line-col.dark._5 {
  background-color: #121212;
}

.line-col.dark._2 {
  background-color: #121212;
}

.line-col.dark._3 {
  background-color: #121212;
}

.line-col.dark._1 {
  background-color: #121212;
}

.line-col.dark._6 {
  background-color: #121212;
}

/* Menú */

.menuItem {
  color: var(--c-grey);
  display: block;
  font-size: 1.8rem;
  font-size: 72px;
  font-weight: 700;
  margin: 0 0 1.6rem 5rem;
  text-decoration: none;
  transition: all ease 0.1s;
}

@media only screen and (max-width: 400px) {
  .menuItem {
    font-size: 16px;
    margin: 0 0 1.6rem 1rem;
  }
}

@media only screen and (max-width: 800px) {
  .menuItem {
    font-size: 32px;
    margin: 0 0 1.6rem 3rem;
  }
}

.menuItem:hover {
  color: var(--c-white);
  font-weight: 700;
  transform: translateX(2%);
}

.nav-item-number {
  color: #fff;
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  line-height: 12px;
  margin-right: 20px;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.hamburger {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: fixed;
  right: 2rem;
  top: 1rem;
  z-index: 100;
}

.menuIcon {
  color: var(--c-white);
}

.closeIcon {
  color: none;
  display: none;
}

.menu {
  background: var(--c-grey-dark);
  bottom: 0;
  color: var(--c-white);
  left: 0;
  list-style: none;
  padding-left: 0;
  padding-top: 4rem;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(-100%);
  transition: transform 0.4s;
  z-index: 99;
}

.menu-flex {
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

.showMenu {
  transform: translateX(0);
}

#myBtn {
  background-color: red;
  border: none;
  border-radius: 4px;
  bottom: 20px;
  color: white;
  cursor: pointer;
  display: none;
  font-size: 18px;
  outline: none;
  padding: 15px;
  position: fixed;
  right: 30px;
  z-index: 99;
}

#myBtn:hover {
  background-color: #555;
}

/* form */

.form-contact label,
.form-contact input,
.form-contact textarea,
.form-contact select,
.form-contact button {
  font-size: 1.3rem;
  line-height: 1.2;
}

.wrap {
  flex-wrap: wrap;
}

.error {
  align-self: stretch;
}

.form-contact {
  flex: 1 1 auto;
}

.form-contact div {
  margin-top: 1rem;
}

.form-contact label {
  display: block;
  margin-bottom: 0.4rem;
}

.form-contact input,
.form-contact textarea {
  background-color: var(--c-black);
  border: none;
  border-bottom: 1px solid var(--c-white);
  color: var(--c-white);
  padding: 1rem 0.4rem;
  width: 100%;
}

.form-contact input:focus-visible,
.form-contact textarea:focus-visible {
  border: none;
  border-bottom: 1px solid var(--c-white);
  outline: none;
}

.form-contact button {
  background: #ff3434;
  border: none;
  color: var(--c-white);
  font-size: 14px;
  font-weight: 700;
  margin-top: 2rem;
  padding: 1rem 2rem;
  text-transform: uppercase;
}

.form-contact button:hover,
.form-contact button:focus {
  background: red;
}

.btn-terminos {
  background: transparent;
  border: none;
  color: var(--c-white);
  cursor: pointer;
  font-size: 44px;
  /* text-transform: uppercase; */
  transition: all 0.3s ease;
}

.btn-terminos:hover {
  color: var(--c-gold);
  /* text-decoration: underline; */
}

.lista {
  color: var(--c-grey);
  font-size: 28px;
  line-height: 44px;
  margin: 0;
  padding: 0;
}

.company-info {
  background-color: #f8f9fa;
  border-radius: 5px;
  margin-bottom: 20px;
  padding: 15px;
}
.footer {
  border-top: 1px solid #eee;
  font-size: 0.9em;
  margin-top: 40px;
  padding-top: 20px;
}
.sectionb {
  margin-bottom: 30px;
}

.sectionb p {
  font-size: 16px;
}
