html {
  scroll-behavior: smooth;
}

:root {
  --blue-dark: #0c3a52;
  --blue-darker: #072b3c;
  --text: #ffffff;
}

/* HEADER */
#site-header {
    position: fixed;
}
.header {
  background-color: rgb(28, 57, 87);
  border-bottom: 5px solid rgb(205, 167, 120);
  color: #fff;
}
.sticky {
    height: auto !important;
}

.header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.header__logo img {
  -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
  height: 85px;
}
.header.sticky .header__logo img {
  height: 60px;
}

/* NAV */
.header__nav {
  display: none;
  /* gap: 30px; */
}

.header__nav a {
  font-family: 'Open Sans';
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: normal;
  position: relative;
}

.header__nav a:nth-of-type(2) {
  /* padding: 0 30px;
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
    margin: 0 30px; */
}

.header__nav a.active {
  color: #cda778;
}

.header__nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: #cda778;
}

.header__nav .line {
  display: inline-block;
    width: 1px;
    height: 20px;
    background-color: #fff;
    margin: 0 30px;
}

/* CONTACT */
.header__contact {
  display: none;
  flex-direction: column;
  font-size: 16px;
  line-height: 32px;
}

.header__contact a {
  text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.header__contact a i {
  margin-right: 3px;
    position: relative;
    top: 8px;
}

/* HAMBURGER */
.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 30px;
    height: 3px;
    border-radius: 3px;
  background: white;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100%;
  background: var(--blue-darker);
  color: white;
  transition: 0.3s;
  z-index: 1000;
}

.mobile-menu.active {
  right: 0;
}

.close-menu {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  position: absolute;
  top: 30px;
  left: 30px;
}

.mobile-menu__content {
  padding: 90px 30px;
}

.mobile-logo {
  height: 50px;
  margin-bottom: 30px;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.mobile-menu nav a {
  color: white;
  text-decoration: none;
  font-size: 20px;
}

.mobile-contact p {
  font-size: 14px;
    font-weight: 500;
  margin-bottom: 10px;
}
.mobile-contact p a i {
  margin-right: 3px;
    position: relative;
    top: 8px;
}
/* MOBILE */
#brands,
#our-travel {
  padding: 50px 0;
}
#site-footer {
  padding: 60px 0;
}
#site-footer .social,
#site-footer .social2,
#site-footer .social3 {
  margin: 0px 0 20px 0px;
}
@media (max-width: 767px) {
  #content-top {
      margin: 70px 0 0 0;
  }
  .header__logo img,
  .header.sticky .header__logo img {
      height: 45px;
  }
  #servicios-fasanoromero {
      padding: 50px 0;
  }
  .sticky {
    height: 70px;
  }
  #quienes-somos {
    padding: 60px 0;
  }
  #brands {
    padding: 50px 0;
  }
}
@media (max-width: 575px) {
  .mobile-menu {
      width: 95%;
  }
}
/* DESKTOP */
@media (min-width: 768px) {
    .header {
        background-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.46) 100%);
    }
    #content-top {
        margin: 110px 0 0;
    }
    #servicios-fasanoromero {
        padding: 50px 0;
    }
    #quienes-somos {
        padding: 50px 0;
    }
}
@media (min-width: 1024px) {
  .header__nav {
    display: flex;
  }
  .header__contact {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
  .mobile-menu {
    display: none;
  }
}
@media (min-width: 1180px) {
    #servicios-fasanoromero {
        padding: 50px 0;
    }
}