/*Add npx sass --watch style.scss style.css* to connect sass to css.
This essentially is what we use to connect our css file to our css file
*/
@font-face {
  font-family: HighMount;
  src: url("./Font/HighMount/HighMount.ttf");
}
/*Font*/
.box {
  padding: 10px;
}
.box p {
  color: blue;
  margin: 10px;
}

.row {
  max-width: 1504px;
  margin-left: auto;
  margin-right: auto;
}
.row.pad {
  padding-left: 32px;
  padding-right: 32px;
}
.row.no-pad {
  max-width: 1440px;
}
.row.row-wide {
  max-width: 2000px;
}
@media screen and (max-width: 1176px) {
  .row.extra-pad {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}
@media (max-width: 767px) {
  .row {
    max-width: 1472px;
  }
  .row.pad {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/*Utility Classes*/
.reset-list {
  padding: 0;
  margin: 0;
  float: left;
  list-style: none;
}
.reset-list ul {
  padding: 0;
  margin: 0;
}
.reset-list li {
  float: left;
  list-style: none;
}

.margin-none {
  margin: 0;
}

.margin-top-none {
  margin-top: none;
}

.margin-right-none {
  margin-right: none;
}

.margin-bottom-none {
  margin-bottom: none;
}

.margin-left-none {
  margin-left: none;
}

.margin-auto {
  margin: auto;
}

.margin-top-auto {
  margin-top: auto;
}

.margin-right-auto {
  margin-right: auto;
}

.margin-bottom-auto {
  margin-bottom: auto;
}

.margin-left-auto {
  margin-left: auto;
}

.margin-centered {
  margin-left: auto;
  margin-right: auto;
}

.hide {
  background: #FFF;
  color: #fff;
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.slick-slide:not(.slick-active) a {
  visibility: hidden;
}

/*Colors*/
/*Heights*/
body {
  background: linear-gradient(90deg, #00A9F7 0%, #0159E0 40%);
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  font: 1rem/1.5 "Monsterrat", sans-serif;
  color: #262628;
  line-height: 125%;
  font-weight: 400;
}
body p {
  margin: 0;
}

/*Main Header*/
.main-header {
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0px 2px 18px 0 rgba(0, 0, 0, 0.12);
}
.main-header__primary {
  height: 60px;
  background: linear-gradient(90deg, #00A9F7 0%, #0159E0 60%);
  position: relative;
}
.main-header__primary-inner {
  display: flex;
  align-items: center;
  height: 100%;
}
.main-header__logo {
  margin-right: auto;
  z-index: 1;
}
.main-header__logo img {
  width: 60px;
}

.social-container ul li {
  margin-right: 16px;
  display: flex;
  transition: 0.25s;
}
.social-container ul li:last-of-type {
  margin-right: 0;
}
.social-container ul li:hover, .social-container ul li:focus {
  transform: translateY(-2px);
}

/*Top Container*/
.top-container {
  height: 100vh;
}
.top-container__inner {
  position: relative;
  height: 100%;
}
.top-container__item {
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  display: flex;
  height: 100%;
}
.top-container__logo {
  width: 100%;
  height: 377px;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.top-container__details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex: 1 1 60%;
}
.top-container__title {
  font-size: 48px;
  color: #FFF;
  font-family: "Monsterrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 32px;
  line-height: 125%;
}
.top-container__blurb {
  font-size: 18px;
  color: #FFF;
  font-weight: 400;
  line-height: 125%;
  font-style: normal;
}
.top-container__character {
  flex: 1 1 40%;
  object-fit: contain;
  opacity: 1;
  max-width: 500px;
  padding-top: 60px;
}

@media (max-width: 1024px) {
  .top-container__title {
    font-size: 32px;
  }
  .top-container__logo {
    height: calc(100% - 40px);
    position: absolute;
    top: 0;
  }
  .top-container__item {
    background-image: url(./images/Ade_Watercolor_400dpi.png);
    background-position: center;
    flex-wrap: wrap;
    justify-content: center;
    height: 100vh;
  }
  .top-container__details {
    flex: 1 1 100%;
    height: calc(100% - 36px);
    justify-content: flex-end;
  }
  .top-container__blurb {
    font-size: 24px;
  }
  .top-container__character {
    flex: 1 1 100%;
    display: none;
  }
}
@media (max-width: 767px) {
  .top-container__title {
    font-size: 24px;
    color: #EAAC1A;
  }
  .top-container__logo {
    height: 250px;
    object-fit: contain;
  }
  .top-container__item {
    background-position: center;
    flex-wrap: wrap;
    justify-content: center;
  }
  .top-container__details {
    flex: 1 1 100%;
    height: calc(100% - 36px);
    justify-content: flex-end;
    position: relative;
  }
  .top-container__blurb {
    font-size: 16px;
    color: #EAAC1A;
    font-weight: 700;
    line-height: 150%;
  }
  .top-container__character {
    flex: 1 1 100%;
  }
}
p {
  color: #FFF;
}

/*Subscribe Button*/
.btn-booknow {
  padding: 24px 24px;
  background-color: transparent;
  text-align: center;
  color: white;
  text-decoration: none;
  box-shadow: 0px 1px 12px 0px rgba(0, 0, 0, 0.12);
  border: 2px solid #FFF;
  margin-top: 32px;
  cursor: pointer;
  font-size: 20px;
  border-radius: 8px;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.btn-booknow:hover, .btn-booknow:focus {
  background-color: #0159E0;
  color: #EAAC1A;
}

/* Our Mission*/
.our-mission {
  background: #FFF;
  height: 100vh;
}
.our-mission__container {
  display: flex;
  height: 100%;
  width: 100%;
}
.our-mission__character {
  flex: 1 1 40%;
  object-fit: contain;
  max-width: 500px;
}
.our-mission__title {
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 32px;
  line-height: 125%;
  font-family: "HighMount";
}
.our-mission__statement {
  font-size: 16px;
  font-weight: 500;
  line-height: 125%;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.our-mission__details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex: 1 1 60%;
}

@media (max-width: 1024px) {
  .our-mission {
    height: unset;
  }
  .our-mission__container {
    flex-wrap: wrap;
    justify-content: center;
  }
  .our-mission__character {
    flex: 1 1 100%;
    width: 200px;
    height: 500px;
  }
  .our-mission__details {
    flex: 1 1 100%;
  }
}
.s-offers {
  height: 100vh;
}
.s-offers__inner {
  padding: 24px 0;
}
.s-offers__inner .offer__title {
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 32px;
  line-height: 125%;
  margin: 0 auto;
  font-family: "HighMount";
  max-width: 1440px;
  color: #FFF;
  display: flex;
  justify-content: center;
}
.s-offers__inner .offer__list {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 32px;
}
.s-offers__inner .offer__item {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.s-offers__inner .offer__item img {
  width: 300px;
  height: 300px;
  object-fit: contain;
}
.s-offers__inner .offer__item-title {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 125%;
  color: #FFF;
}
.s-offers__inner .offer__details {
  font-size: 24px;
  color: #FFF;
  font-family: "Monsterrat", sans-serif;
  line-height: 150%;
  font-weight: 400;
  text-align: center;
}

@media (max-width: 767px) {
  .s-offers {
    height: unset;
  }
  .s-offers__inner .offer__details {
    line-height: 125%;
  }
  .s-offers__inner .offer__title {
    font-size: 32px;
  }
  .s-offers__inner .offer__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
  }
  .s-offers__inner .offer__item {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .s-offers__inner .offer__item img {
    width: 200px;
    height: 200px;
    object-fit: contain;
  }
  .s-offers__inner .offer__item-title {
    font-size: 18px;
  }
}
.gameplay {
  background: #FFF;
}
.gameplay__inner .gameplay__container {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  position: relative;
}
.gameplay__inner .gameplay__details {
  padding: 32px;
  z-index: 9;
  left: 32px;
  top: 32px;
}
.gameplay__inner .gameplay__video {
  height: 100%;
  width: 600px;
  object-fit: cover;
  position: relative;
}
.gameplay__inner .gameplay__title {
  font-size: 48px;
  margin-bottom: 32px;
  color: #0159E0;
  line-height: 150%;
  white-space: nowrap;
  font-weight: 700;
  text-transform: uppercase;
}
.gameplay__inner .gameplay__top-text {
  font-size: 32px;
  margin-bottom: 24px;
  color: #262628;
  line-height: 150%;
  font-weight: 500;
}
.gameplay__inner .gameplay__bottom-text {
  font-size: 24px;
  color: #262628;
  line-height: 150%;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .gameplay__inner .gameplay__container {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .gameplay__inner .gameplay__container {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .gameplay__inner .gameplay__title {
    font-size: 32px;
  }
  .gameplay__inner .gameplay__top-text {
    font-size: 24px;
  }
  .gameplay__inner .gameplay__bottom-text {
    font-size: 18px;
  }
  .gameplay__inner .gameplay__video {
    width: 370px;
  }
}
.main-footer {
  background-image: url(./images/SJC_Banner-HD.jpg);
  background-position: center;
  background-size: cover;
  aspect-ratio: 16/9;
}

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