/* MOBILE VIEWPORT SIZES BY OCCURANCE RATE
375x667  --> 25.98%
360x640  --> 21.22%
414x736  --> 10.53%
320x568  --> 9.83%
360x740  --> 4.99%
375x812  --> 4.91% */
/*TABLET VIEWPORT SIZES BY OCCURANCE RATE
768x1024  --> 75.23%
1280x800  --> 3.97%
1024x1366  --> 3.55%
834x1112  --> 2.52%
800x1280   --> 1.86%
1024x768  --> 1.59%*/
/*DESKTOP VIEWPORT SIZES BY OCCURANCE RATE
1920x1080  --> 21.72%
1366x768  --> 18.57%
1440x900  --> 8.94%
1280x800  --> 6.1%
1536x864  --> 6.05%
1600x900  --> 5.28%*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
}
@media only screen and (max-width: 64em) {
  html {
    font-size: 50%;
  }
}

.container {
  display: grid;
  grid-template-columns: [sidebar-start] 9rem [sidebar-end center-start] repeat(8, [col-start] minmax(min-content, 1fr) [col-end]) [center-end] 9rem [full-end];
  grid-template-rows: 9rem 45vw min-content 65vw 93rem 175vh min-content;
}
@media only screen and (max-width: 64em) {
  .container {
    grid-template-rows: 9rem 45vw min-content 65vw 145rem 125vh min-content;
  }
}
@media only screen and (max-width: 910px) {
  .container {
    grid-template-rows: 9rem 45vw min-content 65vw 145rem 175vh min-content;
  }
}
@media only screen and (max-width: 420px) {
  .container {
    grid-template-rows: 9rem 90vw min-content 125vh 110rem 110vh min-content;
  }
}

.contact__input, .contact__message > textarea {
  width: 100%;
  height: 62px;
  background: rgba(0, 0, 0, 0.4);
  font-size: 14px;
  letter-spacing: 0.24em;
  color: #fff;
  text-transform: uppercase;
  border: none;
  padding-left: 22px;
  padding-right: 22px;
  outline: none;
}
@media only screen and (max-width: 565px) {
  .contact__input, .contact__message > textarea {
    font-size: 9px;
  }
}

.contact {
  position: relative;
  grid-row: 6/7;
  grid-column: sidebar-start/full-end;
  background-image: url("..//img/contact-background.jpg");
  background-attachment: fixed;
  background-size: cover;
}
.contact__color-overlay {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.95) 7%, rgba(255, 255, 255, 0.25));
}
.contact__container {
  width: 75%;
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 4rem;
}
@media only screen and (max-width: 440px) {
  .contact__container {
    margin-top: 12rem;
  }
}
.contact__text {
  margin-bottom: 2rem;
  text-align: center;
}
.contact__text span {
  display: block;
  letter-spacing: 0.4em;
  font-size: 24px;
  color: #000;
  margin-bottom: 10px;
  text-align: center;
}
.contact__text {
  font-family: "Cormorant Garamond", serif;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 80px;
  letter-spacing: 0.034em;
  color: #832920;
  line-height: 1;
}
@media only screen and (max-width: 565px) {
  .contact__text {
    font-size: 50px;
  }
}
.contact__form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.contact__div {
  width: 50%;
  padding: 0.4rem;
}
.contact__button {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}
.contact__submit {
  background-color: #DEBF89;
  text-transform: uppercase;
  padding: 2rem 4rem;
  font-size: 1.4rem;
  outline: none;
  border: none;
  font-weight: 700;
  font-family: "PT Sans Narrow", sans-serif;
  letter-spacing: 0.26em;
}
.contact__message {
  width: 100%;
  padding: 0.4rem;
  padding-bottom: 1.2rem;
  margin: 0.4rem;
  margin-top: -0.4rem;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}
.contact__message > textarea {
  height: 20rem;
  padding-top: 1rem;
  width: 100%;
  margin-left: -1.5rem;
  background-color: transparent;
  font-family: "PT Sans Narrow", sans-serif;
}
.contact__message > textarea::-webkit-input-placeholder {
  color: white;
}
.contact__input::-webkit-input-placeholder {
  color: white;
}

.radio {
  width: 100%;
  padding: 0.4rem;
}
.radio__encapsulator {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  padding: 30px 20px;
}
.radio .containers {
  position: relative;
  display: inline-block;
  width: 10rem;
  vertical-align: middle;
}
@media only screen and (max-width: 468px) {
  .radio .containers {
    font-size: 9px;
  }
}
.radio__radio-input-text {
  position: absolute;
  left: 60%;
  font-size: 14px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-family: "PT Sans Narrow", sans-serif;
  letter-spacing: 0.14em;
}
@media only screen and (max-width: 565px) {
  .radio__radio-input-text {
    left: 1.2rem;
    font-size: 10px;
  }
}
@media only screen and (max-width: 468px) {
  .radio__radio-input-text {
    font-size: 9px;
  }
}
.radio__text {
  font-size: 14px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-family: "PT Sans Narrow", sans-serif;
  letter-spacing: 0.14em;
  margin-left: 1.2em;
  outline: none;
  display: inline-block;
  font-weight: 300;
  margin-right: 1.5rem;
}
@media only screen and (max-width: 565px) {
  .radio__text {
    font-size: 9px;
    width: 100%;
    margin-bottom: 2rem;
  }
}
.radio__boxer {
  left: 20%;
  position: absolute;
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
  background-color: rgb(196, 196, 196);
  display: inline-block;
}
@media only screen and (max-width: 565px) {
  .radio__boxer {
    left: 50%;
    height: 1.5rem;
    width: 1.5rem;
  }
}
.radio input {
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.radio .containers input:checked ~ .radio__boxer {
  background-color: rgb(131, 42, 33);
}

.current-houses {
  position: relative;
  margin-top: 17vh;
  margin-bottom: 8vh;
  display: grid;
  grid-row: 3/4;
  grid-column: center-start/center-end;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(11, 5vw);
  gap: 1rem;
  padding: 1.5rem;
}
@media only screen and (max-width: 886px) {
  .current-houses {
    margin-top: 8vh;
  }
}
@media only screen and (max-width: 722px) {
  .current-houses {
    grid-column: sidebar-start/full-end;
  }
}
@media only screen and (max-width: 414px) {
  .current-houses {
    display: block;
    margin-top: 1rem;
    margin-bottom: 3.5vh;
  }
}
.current-houses__background {
  grid-row: 3/4;
  grid-column: sidebar-start/full-end;
  background-image: linear-gradient(to right bottom, #fff 25%, #777);
}
@media only screen and (max-width: 414px) {
  .current-houses__background {
    background-image: none;
    background-color: white;
  }
}
.current-houses__text {
  z-index: 0;
  margin-top: -5rem;
  position: relative;
  left: -5rem;
  grid-column: 1/5;
  grid-row: 1/4;
  padding-left: 10rem;
}
@media only screen and (max-width: 48em) {
  .current-houses__text {
    padding-left: 6.5rem;
    margin-top: -2.5rem;
  }
}
@media only screen and (max-width: 414px) {
  .current-houses__text {
    text-align: center;
    left: 0;
    padding: 0;
    margin: 0 2rem;
  }
}
.current-houses__text h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 8rem;
  letter-spacing: 0.034em;
  color: #832920;
  line-height: 1;
  margin-bottom: 1.2rem;
}
@media only screen and (max-width: 886px) {
  .current-houses__text h2 {
    font-size: 6rem;
    margin-bottom: 0.8rem;
  }
}
@media only screen and (max-width: 414px) {
  .current-houses__text h2 {
    font-size: 5.25rem;
  }
}
.current-houses__text span {
  display: block;
  letter-spacing: 0.4em;
  font-size: 2.4rem;
  color: #000;
  margin-bottom: 10px;
}
@media only screen and (max-width: 886px) {
  .current-houses__text span {
    font-size: 1.8rem;
    margin-bottom: 7.5px;
  }
}
.current-houses__text p {
  display: block;
  width: 110%;
  font-family: "PT Sans Narrow", sans-serif;
  font-size: 1.9rem;
  font-weight: 400;
  color: #838383;
  letter-spacing: 0.05em;
  vertical-align: baseline;
}
@media only screen and (max-width: 886px) {
  .current-houses__text p {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 414px) {
  .current-houses__text p {
    margin: 0 auto;
    width: 85%;
    font-size: 14px;
  }
}
.current-houses__horizontal-line {
  height: 1px;
  width: 200px;
  background-color: #832920;
  position: absolute;
  left: -28%;
  bottom: 63%;
  z-index: 50;
}
@media only screen and (max-width: 64em) {
  .current-houses__horizontal-line {
    left: -46%;
  }
}
@media only screen and (max-width: 48em) {
  .current-houses__horizontal-line {
    left: -64%;
  }
}
@media only screen and (max-width: 722px) {
  .current-houses__horizontal-line {
    display: none;
  }
}
.current-houses__horizontal-line::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -7;
  height: 7px;
  width: 7px;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: #832920;
}
.current-houses__horizontal-line::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -12.5;
  height: 18px;
  width: 18px;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid rgba(131, 41, 32, 0.29);
}
.current-houses__item {
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.current-houses__item:hover > img {
  filter: sepia(25%) saturate(0) brightness(85%);
  transform: scale(1.1);
}
.current-houses__item:hover > .current-houses__figcaption {
  transform: translateY(-160%);
}
.current-houses__item--1 {
  grid-row: 1/4;
  grid-column: 6/9;
}
.current-houses__item--2 {
  grid-row: 8/12;
  grid-column: 1/span 4;
}
.current-houses__item--3 {
  grid-row: 4/8;
  grid-column: 3/7;
}
.current-houses__item--4 {
  grid-row: 4/span 2;
  grid-column: 7/span 2;
}
.current-houses__item--5 {
  grid-row: 4/span 4;
  grid-column: 1/span 2;
}
.current-houses__item--6 {
  grid-row: 6/span 2;
  grid-column: 7/span 2;
}
.current-houses__item--7 {
  grid-row: 8/span 4;
  grid-column: 5/span 4;
}
@media only screen and (max-width: 414px) {
  .current-houses__item {
    display: none;
  }
}
.current-houses__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: all 0.4s ease;
  z-index: 1;
  position: absolute;
  transition: all 0.35s;
}
.current-houses__img--5 {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 1131px) {
  .current-houses__img--2 {
    width: 115%;
  }
}
.current-houses__figcaption {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 7.5rem;
  z-index: 2;
  color: white;
  font-size: 1.8rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.75);
  transition: all 0.35s;
  cursor: pointer;
}
.current-houses__figcaption p {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.current-houses__figcaption span {
  display: block;
}
.current-houses__button {
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  width: 20rem;
  transform: translateX(-50%);
  z-index: 16454654654;
  cursor: pointer;
  padding: 1.2rem 1.8rem;
  font-size: 1.5rem;
  font-weight: 500;
  background-color: rgb(230, 193, 138);
  color: black;
  font-family: "PT Sans Narrow", sans-serif;
  text-transform: uppercase;
}
.current-houses__button span {
  position: relative;
  display: inline-block;
}
.current-houses__button span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -15%;
  height: 1px;
  width: 8px;
  z-index: -1;
  background-color: black;
}
.current-houses__button span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -15%;
  height: 1px;
  width: 8px;
  z-index: -1;
  background-color: black;
}

.carousel__item {
  position: relative;
}
.carousel__figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 7.5rem;
  z-index: 2;
  color: white;
  font-size: 1.8rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.75);
  transition: all 0.35s;
  cursor: pointer;
}
.carousel__figcaption p {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.carousel__figcaption span {
  display: block;
}
.carousel__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
  z-index: 1;
  position: absolute;
  transition: all 0.35s;
}
@media only screen and (min-width: 414px) {
  .carousel {
    width: 0;
    height: 0;
    display: 0;
  }
}
@media only screen and (max-width: 414px) {
  .carousel {
    display: block;
    width: 90%;
    height: 30rem;
    margin: 2rem auto 0;
  }
}

.buttons {
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  width: 80%;
}
@media only screen and (min-width: 414px) {
  .buttons {
    width: 0;
    height: 0;
    display: none;
  }
}
.buttons a {
  display: block !important;
  font-family: "PT Sans Narrow", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.3rem;
  text-decoration: none;
  color: black;
  text-transform: uppercase;
  padding: 1.2rem 3rem;
  background-color: #DEBF89;
}
@media only screen and (min-width: 414px) {
  .buttons a {
    width: 0;
    height: 0;
    display: none;
  }
}

.featured-areas {
  position: relative;
  background-image: url(../img/map-background.png);
}
@media only screen and (max-width: 64em) {
  .featured-areas {
    background-position: center;
  }
}
.featured-areas {
  background-size: cover;
  grid-row: 5/6;
  grid-column: sidebar-start/full-end;
  padding: 5rem 9rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.featured-areas__img {
  position: absolute;
}
.featured-areas__title {
  color: white;
  margin-bottom: 3.5rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 5.5rem;
  letter-spacing: 0.25rem;
  border-bottom: 0.25px solid white;
  max-width: min-content;
}
.featured-areas__map {
  position: absolute;
  top: 19%;
  left: 39%;
}
@media only screen and (max-width: 64em) {
  .featured-areas__map {
    top: 39%;
    left: 24%;
  }
}
@media only screen and (max-width: 822px) {
  .featured-areas__map {
    top: 44%;
    left: 12.5%;
  }
}
@media only screen and (max-width: 710px) {
  .featured-areas__map {
    transform: scale(0.8);
    top: 41%;
    left: 7.5%;
  }
}
@media only screen and (max-width: 605px) {
  .featured-areas__map {
    transform: scale(0.5);
    top: 41%;
    left: -10%;
  }
}
@media only screen and (max-width: 420px) {
  .featured-areas__map {
    transform: scale(0.5);
    top: 47%;
    left: -28%;
  }
}
@media only screen and (max-width: 370px) {
  .featured-areas__map {
    transform: scale(0.5);
    top: 47%;
    left: -47%;
  }
}
.featured-areas__map-text {
  position: absolute;
  top: 17%;
  left: 37.25%;
  height: 430px;
  width: 575px;
}
@media only screen and (max-width: 64em) {
  .featured-areas__map-text {
    top: 37%;
    left: 22.5%;
  }
}
@media only screen and (max-width: 822px) {
  .featured-areas__map-text {
    top: 41%;
    left: 11%;
  }
}
@media only screen and (max-width: 710px) {
  .featured-areas__map-text {
    top: 44%;
    left: 13%;
    height: 344px;
    width: 460px;
  }
}
@media only screen and (max-width: 605px) {
  .featured-areas__map-text {
    top: 49%;
    left: 15%;
    height: 215px;
    width: 287.5px;
  }
}
@media only screen and (max-width: 420px) {
  .featured-areas__map-text {
    display: none;
  }
}
.featured-areas__map-text__title a {
  pointer-events: none;
  cursor: default;
  color: #424242;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Cinzel", serif;
  font-size: 1.25rem;
  text-shadow: -1px -1px 0 rgba(223, 223, 223, 0.7), 1px -1px 0 rgba(223, 223, 223, 0.7), -1px 1px 0 rgba(223, 223, 223, 0.7), 1px 1px 0 rgba(223, 223, 223, 0.7);
}
.featured-areas__map-text__title-northyork {
  position: absolute;
  top: 42%;
  left: 30%;
  z-index: 1;
}
.featured-areas__map-text__title-etobicoke {
  position: absolute;
  top: 76%;
  left: 18%;
  z-index: 1;
}
.featured-areas__map-text__title-york {
  position: absolute;
  top: 66%;
  left: 35%;
  z-index: 1;
}
.featured-areas__map-text__title-toronto {
  position: absolute;
  top: 75%;
  left: 49%;
  z-index: 1;
}
.featured-areas__map-text__title-eastyork {
  position: absolute;
  top: 62%;
  left: 60%;
  z-index: 1;
}
.featured-areas__map-text__title-scarborough {
  position: absolute;
  top: 31%;
  left: 75%;
  z-index: 1;
}
.featured-areas__map-text__sub-title a {
  position: relative;
  color: #555555;
  text-decoration: none;
  text-shadow: -1px -1px 0 rgba(223, 223, 223, 0.7), 1px -1px 0 rgba(223, 223, 223, 0.7), -1px 1px 0 rgba(223, 223, 223, 0.7), 1px 1px 0 rgba(223, 223, 223, 0.7);
  font-family: "Poppins", sans-serif;
  z-index: 1;
}
.featured-areas__map-text__sub-title a::before {
  position: absolute;
  height: 0.45rem;
  width: 0.45rem;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  left: -0.5rem;
  background-color: #7b7b7b;
  content: " ";
}
.featured-areas__map-text__sub-title__1 {
  position: absolute;
  top: 35%;
  left: 40%;
  color: white;
}
.featured-areas__map-text__sub-title__2 {
  display: none;
  position: absolute;
  top: 35%;
  left: 57%;
  color: white;
}
.featured-areas__map-text__sub-title__3 {
  display: none;
  position: absolute;
  top: 45%;
  left: 18%;
  color: white;
}
.featured-areas__map-text__sub-title__4 {
  display: none;
  position: absolute;
  top: 35%;
  left: 40%;
  color: white;
}
.featured-areas__map-text__sub-title__5 {
  position: absolute;
  top: 45%;
  left: 80%;
  color: white;
}
.featured-areas__map-text__sub-title__6 {
  position: absolute;
  top: 84%;
  left: 25%;
  color: white;
}
.featured-areas__map-text__sub-title__7 {
  position: absolute;
  top: 71%;
  left: 60%;
  color: white;
}
.featured-areas__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
}
.featured-areas__item {
  margin: 2.5rem 0;
  position: relative;
}
.featured-areas__item:hover > div {
  width: 24rem;
  background-color: transparent;
  background-image: linear-gradient(to right, #404040 70%, transparent);
}
.featured-areas__grey-div {
  position: absolute;
  height: 4.5rem;
  width: 8rem;
  top: 50%;
  transform: translateY(-50%);
  background-color: 404040;
  transition: all 0.45s;
}
.featured-areas__grey-div.selected {
  width: 24rem;
  background-color: transparent;
  background-image: linear-gradient(to right, #404040 70%, transparent);
}
.featured-areas__link {
  color: white;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.4px;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  left: 2%;
}

.footer {
  grid-row: 7/8;
  grid-column: sidebar-start/full-end;
  background-color: rgb(41, 41, 41);
  height: 100%;
  width: 100%;
  padding: 5rem;
}
.footer .logo {
  width: 18rem;
  height: 5rem;
  margin: 0 auto 4rem;
}
.footer .logo__img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: all 0.6s;
  cursor: pointer;
}
.footer .logo__img:hover {
  content: url("../img/logo-color.png");
}
.footer__list {
  width: 45rem;
  border-top: 0.5px solid white;
  padding-top: 2rem;
  margin-right: 4.5rem;
}
@media only screen and (max-width: 769px) {
  .footer__list {
    width: 100%;
    margin: 0 0 0 0;
    border-top: 0;
    padding-top: 0;
  }
}
.footer__list--item {
  display: inline-block;
}
.footer__list--item:last-child {
  margin-right: -0.2rem;
}
.footer__list--link {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-family: "PT Sans Narrow", sans-serif;
  font-size: 1.2rem;
  transition: all 0.6s;
  display: block;
  width: max-content;
}
.footer__list--link:hover {
  color: rgb(230, 193, 138);
}
@media only screen and (max-width: 374px) {
  .footer__list--link {
    letter-spacing: 0.1em;
  }
}
.footer__text {
  width: 45rem;
  color: white;
  font-family: "PT Sans Narrow", sans-serif;
  font-size: 1.2rem;
  display: inline-block;
  padding-bottom: 1.5rem;
  border-top: 0.5px solid white;
  padding-top: 2rem;
  margin-left: 4.5rem;
}
@media only screen and (max-width: 48em) {
  .footer__text {
    margin-left: 0rem;
    padding-top: 0.25rem;
    border-top: none;
    width: 75%;
    word-break: break-all;
  }
}

.li__wrapper {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 769px) {
  .li__wrapper {
    width: 75%;
    padding-top: 0.25rem;
    margin: 0 auto 4rem;
  }
}
@media only screen and (max-width: 474px) {
  .li__wrapper {
    width: 100%;
  }
}
@media only screen and (max-width: 374px) {
  .li__wrapper {
    width: 120%;
    margin-left: -10%;
  }
}

.space-around {
  display: flex;
  justify-content: space-around;
}
@media only screen and (max-width: 48em) {
  .space-around {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.four-options {
  overflow: hidden;
  position: relative;
  grid-row: 4/5;
  grid-column: sidebar-start/full-end;
  cursor: pointer;
}
.four-options__text {
  z-index: 10;
  font-family: "Cinzel", serif;
  color: white;
  font-size: 5rem;
  width: max-content;
  text-transform: uppercase;
  letter-spacing: -1px;
  font-stretch: condensed;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 782px) {
  .four-options__text {
    font-size: 2.5rem;
    letter-spacing: 1.5px;
  }
}
.four-options__container {
  width: 50%;
  height: 50%;
  float: left;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 25.9em) {
  .four-options__container {
    width: 100%;
    height: 25%;
  }
}
.four-options__container:hover > img {
  filter: brightness(60%);
  transform: scale(1.05);
}
.four-options__container--img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
  z-index: 1;
  position: absolute;
  transition: all 0.15s;
}
.four-options__container--img--1 {
  object-position: 0 -69px;
}
.four-options__container--img--2 {
  object-position: default;
}

.nav {
  display: flex;
  justify-content: space-between;
  z-index: 55;
  padding-left: 12rem;
  align-items: center;
  width: 100vw;
  height: 9rem;
  background-color: rgb(41, 41, 41);
  position: fixed;
}
@media only screen and (max-width: 48em) {
  .nav {
    z-index: 55;
    width: 100vw;
    height: 9rem;
    position: fixed;
    background-color: black;
    display: grid;
    grid-template-columns: 1fr min-content;
  }
}
.nav__logo-box {
  order: -1;
  width: 18rem;
  height: 4rem;
  background-image: url(../img/logo.png);
  background-size: cover;
  transition: all 0.6s;
  cursor: pointer;
}
.nav__logo-box:hover {
  background-image: url(../img/logo-color.png);
}
@media only screen and (max-width: 48em) {
  .nav__logo-box {
    justify-self: center;
  }
}
@media only screen and (max-width: 420px) {
  .nav__logo-box {
    transform: scale(1.4);
    position: relative;
    left: -4.5rem;
  }
}
@media only screen and (max-width: 393px) {
  .nav__logo-box {
    position: absolute;
    left: 11rem;
  }
}
@media only screen and (max-width: 340px) {
  .nav__logo-box {
    position: absolute;
    left: 40%;
    transform: translateX(-50%);
  }
}
.nav__logo {
  height: 5rem;
}
.nav__menu-list {
  list-style: none;
  display: flex;
}
@media only screen and (max-width: 48em) {
  .nav__menu-list {
    display: none;
  }
}
.nav__menu-item {
  min-width: min-content;
  margin: 0 0.2rem;
  padding: 1.5rem 0.5rem;
  cursor: pointer;
  position: relative;
  display: block;
}
.nav__menu-item:hover {
  background-color: rgba(230, 193, 138, 0.75);
}
.nav__menu-item:hover .dropdown {
  opacity: 1;
  transform: translateY(0) translateX(-50%);
  display: block;
  pointer-events: auto;
}
.nav__menu-link {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.35rem;
  font-family: sans-serif;
  letter-spacing: 2px;
  font-family: "PT Sans Narrow", sans-serif;
}
.nav__remix {
  fill: wheat !important;
  width: 8%;
  filter: saturate(0.55);
}
@media only screen and (max-width: 48em) {
  .nav__remix {
    display: none;
  }
}
.nav__menu-collapsed {
  background-color: rgb(230, 193, 138);
  width: 10rem;
  height: 100%;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: 1.7rem;
  text-decoration: none !important;
  color: black;
  cursor: pointer;
}
@media only screen and (max-width: 48em) {
  .nav__menu-collapsed {
    justify-self: end;
  }
}
@media only screen and (max-width: 393px) {
  .nav__menu-collapsed {
    margin-right: 0rem;
  }
}
.nav__menu-input {
  display: none;
}
.nav__menu-input:checked ~ .nav__menu-collapsed > * {
  display: none;
}
.nav > * p {
  position: relative;
  font-family: "PT Sans Narrow", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 2px;
  font-weight: 300;
  top: 9px;
}
.nav__menu-lines {
  width: 3.5rem;
  height: 2px;
  background-color: black;
  position: relative;
}
.nav__menu-lines::after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  background-color: black;
  top: -400%;
}
.nav__menu-lines::before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  background-color: black;
  top: 400%;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 180%;
  min-width: 180px;
  font-family: "PT Sans Narrow", sans-serif;
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-1rem) translateX(-50%);
}
.dropdown__list {
  list-style: none;
}
.dropdown__item {
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.8);
  transition: background-color 0.25s;
}
.dropdown__item:hover {
  background-color: rgb(230, 193, 138);
}
.dropdown__item:hover .dropdown__link {
  color: black;
}
.dropdown__link {
  color: #9d9d9d;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: color 0.25s;
}

.sidebar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  grid-column: sidebar-start/sidebar-end;
  grid-row: 1/4;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0));
  top: 0;
  left: 0;
}
@media only screen and (max-width: 48em) {
  .sidebar {
    display: none;
  }
}
.sidebar__wrapper {
  position: fixed;
  bottom: 23%;
  z-index: 555;
}
.sidebar__item {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem;
  background-color: rgb(230, 193, 138);
  border-radius: 50%;
  height: 4.1rem;
  width: 4.1rem;
  transition: all 0.25s;
  z-index: 500000000000000000000000000;
}
.sidebar__item:hover {
  background-color: #aaa;
}
.sidebar__item:hover .sidebar__social {
  fill: rgb(230, 193, 138);
}
.sidebar__social {
  width: 1.6rem;
  height: 1.6rem;
  position: relative;
  transition: all 0.25s;
  z-index: 50000000000000000000000;
}

.slider {
  grid-column: sidebar-start/full-end;
  grid-row: 1/3;
  overflow: hidden;
  position: relative;
  background-color: white;
  z-index: -1;
}
.slider__img {
  position: absolute;
  animation: slider-transition 28s infinite;
  opacity: 0;
  filter: brightness(65%) saturate(150%) contrast(105%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider__img--3 {
  object-position: center;
}
.slider__img:nth-child(4) {
  animation-delay: 0s;
}
.slider__img:nth-child(3) {
  animation-delay: 7s;
}
.slider__img:nth-child(2) {
  animation-delay: 14s;
}
.slider__img:nth-child(1) {
  animation-delay: 21s;
}
.slider__overlay {
  position: absolute;
  height: 100%;
  width: 100%;
}
.slider__text-container {
  position: absolute;
  bottom: 0;
  padding-bottom: 10vw;
  left: 14vw;
  padding-left: 6vw;
  display: block;
  font-size: 8rem;
}
@media only screen and (max-width: 48em) {
  .slider__text-container {
    display: flex;
    flex-direction: column;
    padding: 0;
    align-items: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -10%);
    font-size: 8rem;
    width: max-content;
  }
}
@media only screen and (max-width: 706px) {
  .slider__text-container {
    font-size: 4rem;
  }
}
.slider__header {
  font-size: 100%;
  letter-spacing: 0.2rem;
  font-weight: 400;
  color: white;
  text-transform: uppercase;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 48em) {
  .slider__header {
    text-align: center;
  }
}
.slider__header > span {
  font-size: 30%;
  letter-spacing: 200%;
  font-weight: 75%;
  display: block;
  line-height: 125%;
}
@media only screen and (max-width: 48em) {
  .slider__header > span {
    font-size: 37.5%;
    letter-spacing: 9.6px;
    font-weight: 300;
  }
}
.slider__btn {
  font-weight: 700;
  font-size: 18%;
  text-decoration: none;
  font-family: "PT Sans Narrow", sans-serif;
  text-align: center;
  letter-spacing: 0.26em;
  color: #fff;
  text-transform: uppercase;
  padding: 1.75rem 1.3rem;
  border: 2px solid #fff;
}
@media only screen and (max-width: 420px) {
  .slider__btn {
    font-size: 40%;
  }
}
.slider__btn:hover {
  background-color: rgb(230, 193, 138);
  border: 2px solid rgb(230, 193, 138);
  color: #000;
}
.slider__btn:hover::before, .slider__btn:hover::after {
  background-color: #000;
}
.slider__btn::after {
  content: " ";
  display: inline-block;
  vertical-align: middle;
  width: 11px;
  height: 1px;
  background-color: #fff;
  transition: all 0.3s ease;
}
.slider__btn::before {
  content: " ";
  display: inline-block;
  vertical-align: middle;
  width: 11px;
  height: 1px;
  background-color: #fff;
  transition: all 0.3s ease;
}
.slider__line-slider {
  position: absolute;
  height: 97%;
  bottom: 0;
  left: 0;
  width: 0.5px;
  background-color: #fff;
}
@media only screen and (max-width: 48em) {
  .slider__line-slider {
    display: none;
  }
}
.slider__line-slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -100%);
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 50%;
  background-color: #fff;
}
.slider__line-slider::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -65%);
  height: 1.7rem;
  width: 1.7rem;
  border-radius: 50%;
  clip-path: polygon(0 35%, 100% 35%, 100% 100%, 0 100%);
  background-color: transparent;
  border: 0.75px solid rgba(241, 241, 241, 0.5);
  clip-path: circle(50%, 50% 50%);
}

@keyframes slider-transition {
  15% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  35% {
    opacity: 0;
  }
}

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