* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}
@media only screen and (max-width: 53.125em) {
  html {
    font-size: 50%;
  }
}
@media only screen and (max-width: 26.6em) {
  html {
    font-size: 37.5%;
  }
}

body {
  font-family: "Montserrat", sans-serif;
  color: #343a40;
  font-size: 1.6rem;
  line-height: 1.7;
  font-weight: 400;
}

.grid__cont {
  display: grid;
  grid-template-rows: 75vh;
  grid-template-columns: [full-start] 1fr repeat(12, [col-start] 1fr) 1fr [full-end];
  column-gap: 2rem;
  width: 100%;
  margin: 0 auto;
  position: absolute;
}
@media only screen and (max-width: 69em) {
  .grid__cont {
    grid-template-columns: [full-start] 0fr repeat(12, [col-start] 1fr) 0fr [full-end];
    column-gap: 2rem;
  }
}
@media only screen and (max-width: 41.875em) {
  .grid__cont {
    grid-template-rows: 60vh;
  }
}
.grid__full {
  grid-column: full-start/full-end;
}
.grid__center {
  grid-column: 2/14;
}

.heading-1 {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 4.4rem;
  letter-spacing: -1px;
  text-align: center;
}
.heading-2 {
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  font-size: 2.4rem;
}
.heading-3 {
  font-size: 6.2rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 1.6rem;
}

.footer {
  grid-row: 5;
  background-color: #000;
  padding-top: 3.2rem;
  padding-bottom: 6.4rem;
  position: relative;
}
@media only screen and (max-width: 41.875em) {
  .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.4rem;
  }
}
.footer__copy {
  color: #fff;
  font-size: 1rem;
  text-align: center;
}

.social-cont {
  display: flex;
  gap: 1.6rem;
  position: absolute;
  top: 2.4rem;
  right: 4.8rem;
}
@media only screen and (max-width: 41.875em) {
  .social-cont {
    position: relative;
    top: 0;
    right: 0;
  }
}
.social-icon {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  fill: #343a40;
  transition: fill 0.3s;
}
.social-icon:hover {
  fill: #7dcde9;
}

.nav {
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  width: 100%;
  height: 6.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2.4rem;
  z-index: 9000;
}
@media only screen and (max-width: 41.875em) {
  .nav {
    background: none;
  }
}
.nav__img-cont {
  width: 18rem;
  transform: translateY(0.5rem);
  z-index: 9001;
}
.nav__img {
  height: auto;
  width: 100%;
}
.nav__img--mobile {
  display: none;
  height: 100%;
  width: 100%;
}
@media only screen and (max-width: 41.875em) {
  .nav__img {
    display: none;
  }
  .nav__img--mobile {
    display: block;
    height: 5rem;
    width: 5rem;
    margin-top: 3rem;
  }
}
.nav__list {
  transition: all 0.4s;
  display: flex;
  list-style: none;
  gap: 3.2rem;
}
@media only screen and (max-width: 53.125em) {
  .nav__list {
    gap: 1.6rem;
  }
}
@media only screen and (max-width: 41.875em) {
  .nav__list {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(100%);
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3.2rem;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }
}
.nav__link:link, .nav__link:visited {
  color: #fff;
  text-decoration: none;
  font-size: 1.8rem;
  transition: color 0.3s;
}
@media only screen and (max-width: 41.875em) {
  .nav__link:link, .nav__link:visited {
    font-size: 3rem;
    font-weight: 500;
  }
}
.nav__link:hover, .nav__link:active {
  color: #45b8df;
}
.nav__mobile {
  display: none;
  border: none;
  border-radius: 2px;
  background-color: #fff;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
  z-index: 9000;
  margin-top: 3rem;
}
@media only screen and (max-width: 41.875em) {
  .nav__mobile {
    display: block;
  }
}
.nav__mobile-icon {
  width: 4.8rem;
  height: 4.8rem;
  color: #343a40;
  padding: 0 4px;
}
.nav__mobile-icon--close {
  display: none;
}
.nav-open .nav__list {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
  transform: translateX(0%);
}
.nav-open .nav__mobile-icon--open {
  display: none;
}
.nav-open .nav__mobile-icon--close {
  display: block;
}

.header {
  grid-column: 2/14;
  grid-row: 3;
  padding: 4.8rem 9.6rem;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2.4rem;
  margin-bottom: 2.4rem;
}
@media only screen and (max-width: 69em) {
  .header {
    grid-column: 2/14;
  }
}
@media only screen and (max-width: 62.5em) {
  .header {
    grid-column: 0/16;
    padding: 4.8rem 2.4rem;
  }
}
.header__text {
  text-align: center;
  font-size: 2rem;
  line-height: 1.4;
}
.header__divider {
  height: 2px;
  width: 80%;
  background-color: #343a40;
}

.hero__cont {
  position: relative;
}
.hero__cont:hover .hero__overlay {
  opacity: 0;
}
.hero__frame {
  height: 75vh;
  width: 100%;
}
@media only screen and (max-width: 41.875em) {
  .hero__frame {
    height: 60vh;
  }
}
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 75vh;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  pointer-events: none;
  transition: all 0.3s;
}
@media only screen and (max-width: 41.875em) {
  .hero__overlay {
    height: 60vh;
  }
}
.hero__overlay-cont {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero__overlay-cont p {
  color: #fff;
  text-transform: uppercase;
  font-size: 2.4rem;
  text-align: center;
}
.hero__overlay-cont img {
  height: 9.6rem;
  width: auto;
}

.tours {
  position: relative;
  grid-column: 3/13;
  grid-row: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 120rem;
  transition: height 0.4s linear;
  padding: 3.2rem 0;
}
@media only screen and (max-width: 41.875em) {
  .tours {
    grid-column: full-start/full-end;
  }
}
.tours__item {
  height: 20%;
  width: 100%;
  overflow: hidden;
  transition: all 0.4s;
}
.tours__item:hover, .tours__item:active {
  height: 33%;
}
.tours__item:hover .fadein, .tours__item:active .fadein {
  opacity: 1;
}
.tours__img-cont {
  width: 100%;
  position: relative;
}
.tours__img {
  width: 100%;
  transform: scale(1) translateY(-30%);
  object-fit: cover;
}
@media only screen and (max-width: 53.125em) {
  .tours__img {
    transform: scale(1.25) translateY(-15%);
  }
}
@media only screen and (max-width: 41.875em) {
  .tours__img {
    transform: scale(1.5) translateY(-10%);
  }
}
.tours__btn:link, .tours__btn:visited {
  text-decoration: none;
  color: #fff;
  font-size: 2rem;
  padding: 1.6rem 3.2rem;
  border: 2px solid #fff;
  border-radius: 1rem;
  transition: all 0.3s;
}
.tours__btn:hover, .tours__btn:active {
  border: 2px solid #45b8df;
  color: #45b8df;
}
.tours__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
.tours__content {
  position: absolute;
  top: 10%;
  color: #fff;
}
.tours__content--left {
  left: 10%;
  text-align: left;
}
.tours__content--right {
  right: 10%;
  text-align: right;
}

.fadein {
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.bg {
  position: absolute;
  width: 100vw;
  height: 100%;
  z-index: -1;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/CLOCKlocaationmarkersweb.jpg);
  background-position: center;
  background-size: cover;
}

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