main {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}
.right {
  height: 100%;
  width: 60%;
}
.left {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 40%;
}
.left .title {
  text-align: center;
}
.left .title h1,
.left .title h2 {
  font-family: "Paytone";
  color: white;
}
.left .title h1,
.left .title h2,
.left .title p {
  text-shadow: 0 0 15px black;
}
.left .title h1 {
  font-size: 7.5vw;
  line-height: 1;
}
.left .title h2 {
  font-size: 2vw;
  letter-spacing: 1.25vw;
}
.left .title p {
  color: #fff;
}
.left picture {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  filter: brightness(55%);
}
.left picture img {
  position: absolute;
  left: -60%;
  top: 0;
  object-fit: cover;
  max-height: 100%;
}
.left .title {
  position: relative;
}

/* Right */
.right {
  padding: 1rem;
  background-color: #030303;
  background-image: url(../assets/concrete-wall.png);
}
.right .info {
  height: calc(42vh - 1rem);
}
.right .top-boxes {
  padding-bottom: 1rem;
  height: calc(58vh - 2rem);
}
.right .info,
.right .map,
.right .menu {
  border-radius: 20px;
  border: 2px solid #333333;
  overflow: hidden;
  position: relative;
}

.right .info div {
  color: #fff;
}
.right .info > div {
  width: 90%;
}
.right .info > div > div {
  padding-bottom: 25px;
}
.right .info > div a {
  color: #fff;
  transition: 0.25s ease;
}
.right .info > div a:hover,
.right .info > div a:focus {
  color: var(--primary-clr);
}
.right .info hr {
  border: none;
  border-top: 1px dotted #5d5d5d;
  flex: 1;
  margin: 0;
  margin-bottom: 0.4em;
}
.right .info > div br {
  display: none;
}
.right .info > div > div a.social-icon:first-of-type {
  height: 45px;
}
.right .info > div > div a.social-icon:last-of-type {
  height: 53px;
}

.right .menu {
  cursor: pointer;
}
.right .menu picture img,
.right .menu > div {
  transition: 0.25s ease;
}
.right .menu picture {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.right .menu picture img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  filter: brightness(55%);
}
.right .menu > div {
  position: relative;
  color: #fff;
}
.right .menu:hover picture img,
.right .menu:focus picture img {
  scale: 1.05;
}
.right .menu:hover > div,
.right .menu:focus > div {
  scale: 1.1;
}

.right .map iframe {
  height: 100%;
  width: 100%;
}

/* 1280px */
@media screen and (max-width: 1280px) {
  .right .info > div br {
    display: block;
  }
  .left picture img {
    left: -80%;
  }
}

/* 1000px */
@media screen and (max-width: 1000px) {
  .left picture img {
    left: -120%;
  }
}

/* 900px */
@media screen and (max-width: 900px) {
  main {
    flex-direction: column;
    height: unset;
    overflow-y: scroll;
  }
  main .left {
    width: calc(100% - 20px);
  }
  main .right {
    width: calc(100% - 2rem);
  }
  .left {
    padding: 100px 10px;
  }
  .left .title h1 {
    font-size: 15vw;
  }
  .left .title h2 {
    font-size: 5vw;
  }
  .left picture img {
    left: 0;
    height: 100%;
    width: 100%;
  }
  .right .top-boxes {
    height: 200px;
  }
  .right .info {
    height: fit-content;
  }
}

/* 550px */
@media screen and (max-width: 550px) {
  .left .title h1 {
    font-size: 17vw;
  }
  .left .title h2 {
    font-size: 6vw;
  }
  .right .top-boxes {
    flex-direction: column;
    height: fit-content;
  }
  .right .top-boxes .map,
  .right .top-boxes .menu {
    width: calc(100% - 4px);
    height: 200px;
  }
  .right .top-boxes .menu {
    margin-bottom: 1rem;
  }
  .right .info {
    width: calc(100% - 4px);
  }
  .right .info .h5 {
    display: none;
  }
  .right .info hr,
  .right .info > div br {
    display: none;
  }
}
