@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@1,100&family=Sen:wght@400;700&display=swap");

:root {
  --red: #c6302b;
  --off-white: #efefef;
  --grey: #818181;
  --light-black: #272727;
  --off-black: #1b1b1b;
  --fast: 0.15s;
}

.plunge-load-box {
  display: none !important;
}

body {
  background-color: var(--red);
  color: white;
  font-family: "Sen", sans-serif;
  font-weight: 400;
}

textarea,
input.text,
input[type="text"],
input[type="button"],
input[type="submit"] {
  -webkit-appearance: none;
  border-radius: 0;
}

input[type="text"] {
  background-color: var(--light-black);
  color: white;
  width: 100%;
  max-width: 350px;
  margin: auto;
  margin-bottom: 10px;
  display: block;
  font-size: 18px;
  padding: 10px 15px;
  box-sizing: border-box;
  border: none;
  border-radius: 5px;
  -webkit-transition: all var(--fast);
  transition: all var(--fast);
}

input[type="button"] {
  margin-top: 20px;
  font-weight: 700;
  font-size: 26px;
  color: white;
  text-decoration: none;
  background-color: transparent;
  border: 4px solid white;
  border-radius: 30px;
  padding: 8px 15px 8px 15px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}

input[type="button"]:hover,
input[type="button"]:focus,
input[type="button"]:active {
  cursor: pointer;
  color: white;
  text-decoration: underline;
  background-color: var(--red);
  border-color: var(--red);
  box-shadow: 0px 5px 17px rgba(0, 0, 0, 0.15), 0px 1px 5px rgba(0, 0, 0, 0.2);
}

h2 {
  font-weight: 700;
  font-size: 48px;
}

nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background-color: transparent;
  color: white;
  font-weight: 700;
  font-size: 20px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}

nav:hover {
  background-color: var(--red);
  box-shadow: 0px 5px 17px rgba(0, 0, 0, 0.2);
}

nav > ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

nav li {
  margin: 15px 30px;
}

nav a {
  color: inherit;
  text-decoration: none;
}

nav a:hover,
nav a:focus,
nav a:active {
  text-decoration: underline;
}

#overlay {
  position: absolute;
  width: 100%;
  height: 65vh;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.2);
}

#bg-pano {
  width: 100%;
  height: 65vh;
}

#logo-wrapper {
  position: absolute;
  width: 100%;
  height: 65vh;
  display: flex;
  flex-flow: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  z-index: 101;
}

#logo {
  width: 70%;
}

.down-arrow {
  color: white;
  font-size: 52px;
  margin-top: -15px;
  margin-bottom: 25px;
  text-shadow: 0px 5px 17px rgba(0, 0, 0, 0.15), 0px 1px 5px rgba(0, 0, 0, 0.2);
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-name: scrollHint;
  animation-timing-function: ease;
}

@keyframes scrollHint {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-40px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}

.container {
  position: absolute;
  width: 100%;
  height: 100vh;
  z-index: 102;
  text-align: center;
}

#slanted {
  position: relative;
  width: 100%;
  height: 300px;
  background-color: var(--red);
  z-index: 100;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

#slanted:after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background-color: inherit;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform-origin: top left;
  transform: skewY(-4deg);
}

#section-1 {
  background-color: var(--red);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.playing {
  background-color: hsl(2, 64%, 17%) !important;
}

#demo-wrapper {
  max-width: 1200px;
  padding: 0px 40px;
  margin: auto;
  overflow: hidden;
}

iframe {
  width: 960px;
  height: 540px;
  border: 4px solid white;
  border-radius: 4px;
  box-shadow: 0px 5px 17px rgba(0, 0, 0, 0.3), 0px 1px 5px rgba(0, 0, 0, 0.4);
  margin: 10px 0px 20px 0px;
}

#demo-lead {
  font-size: 52px;
  font-weight: 700;
  margin: 100px 50px;
  text-shadow: 0px 5px 17px rgba(0, 0, 0, 0.15), 0px 1px 5px rgba(0, 0, 0, 0.2);
}

#demo-footer {
  padding: 75px 0px 100px 0px;
}

#view-tour {
  font-weight: 700;
  font-size: 26px;
  color: white;
  text-decoration: none;
  background-color: transparent;
  border: 4px solid white;
  border-radius: 30px;
  padding: 8px 15px 8px 15px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}

#view-tour:hover,
#view-tour:focus,
#view-tour:active {
  color: var(--red);
  text-decoration: underline;
  background-color: white;
  box-shadow: 0px 5px 17px rgba(0, 0, 0, 0.15), 0px 1px 5px rgba(0, 0, 0, 0.2);
}

#section-2 {
  background-color: var(--off-black);
  padding: 40px 0px;
}

#section-2 > h2 {
  margin-top: 20px;
}

.about-us-content {
  margin: auto;
  max-width: 1200px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 65px 5px 45px 5px;
  gap: 60px;
}

.about-us-content > img {
  border-radius: 50%;
  width: 300px;
  border: 8px solid var(--red);
}

.about-us-content > p {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-size: 28px;
  max-width: 500px;
  line-height: 1.2;
}

.seh-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.seh-item {
  margin: 40px;
  max-width: 350px;
  overflow: hidden;
  border-radius: 15px;
  background-color: white;
  color: var(--off-black);
  text-align: left;
  font-size: 16px;
}

.seh-item > img {
  width: 100%;
}

.seh-title {
  margin: -40px 0px 10px 0px;
  font-size: 26px;
  text-shadow: 0px 5px 17px rgba(0, 0, 0, 0.15), 0px 1px 5px rgba(0, 0, 0, 0.2);
}

.seh-body {
  padding: 0px 20px 20px 20px;
  line-height: 1.2;
}

.seh-link {
  text-align: right;
}

.seh-link > a {
  color: inherit;
}

.seh-link > a:hover,
.seh-link > a:focus,
.seh-link > a:active {
  color: var(--red);
}

.seh-i {
  font-size: 48px;
  text-shadow: 0px 5px 17px rgba(0, 0, 0, 0.15), 0px 1px 5px rgba(0, 0, 0, 0.2);
}

.circle {
  transform: translate(0px, -50px);
  margin: auto;
  color: white;
  width: 100px;
  height: 100px;
  text-align: center;
  line-height: 125px;
  border-radius: 50%;
  background-color: var(--red);
  box-shadow: 0px 5px 17px rgba(0, 0, 0, 0.15), 0px 1px 5px rgba(0, 0, 0, 0.2);
}

#contact-wrapper {
  padding: 40px 20px;
}

#contact-wrapper > a {
  margin-bottom: -5px;
}

#contact-wrapper > p {
  margin: 25px 0px;
  font-size: 26px;
  font-weight: 700;
}

#contact {
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 26px;
  color: white;
  text-decoration: none;
  background-color: transparent;
  border: 4px solid white;
  border-radius: 30px;
  padding: 8px 15px 8px 15px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}

#contact:hover,
#contact:focus,
#contact:active {
  color: white;
  text-decoration: underline;
  background-color: var(--red);
  border: 4px solid var(--red);
  box-shadow: 0px 5px 17px rgba(0, 0, 0, 0.15), 0px 1px 5px rgba(0, 0, 0, 0.2);
}

#form-message {
  color: var(--red);
}

#section-3 {
  padding: 15px 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: var(--red);
}

.footer-links {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  text-align: left;
}

.footer-links > a {
  color: white;
}

@media screen and (max-width: 1200px) {
  iframe {
    width: 720px;
    height: 405px;
  }
}

@media only screen and (max-width: 800px) {
  #overlay {
    height: 90vh;
  }

  #bg-pano {
    height: 90vh;
  }

  #logo-wrapper {
    height: 90vh;
  }

  .down-arrow {
    font-size: 48px;
    margin-bottom: 50px;
  }

  #logo {
    width: 90%;
  }

  #slanted:after {
    transform: skewY(-8deg);
  }

  #demo-wrapper {
    padding: 0px 20px;
  }

  h2 {
    font-size: 38px;
  }

  #view-tour {
    color: var(--red);
    text-decoration: underline;
    background-color: white;
    box-shadow: 0px 5px 17px rgba(0, 0, 0, 0.15), 0px 1px 5px rgba(0, 0, 0, 0.2);
  }

  #contact {
    color: white;
    text-decoration: underline;
    background-color: var(--red);
    border: 4px solid var(--red);
    box-shadow: 0px 5px 17px rgba(0, 0, 0, 0.15), 0px 1px 5px rgba(0, 0, 0, 0.2);
  }

  iframe {
    width: 384px;
    height: 216px;
  }

  .about-us-content > img {
    width: 200px;
  }

  input[type="button"] {
    cursor: pointer;
    color: white;
    text-decoration: underline;
    background-color: var(--red);
    border-color: var(--red);
    box-shadow: 0px 5px 17px rgba(0, 0, 0, 0.15), 0px 1px 5px rgba(0, 0, 0, 0.2);
  }
}

@media only screen and (max-width: 500px) {
  iframe {
    width: 256px;
    height: 144px;
  }
}

@media only screen and (min-width: 1200px) {
  #logo {
    width: 850px;
  }
}
