/*
  Theme Name: Harrison Carloss
  Author: Harrison Carloss
*/
/* Partials */
@import url("https://use.typekit.net/ine8xad.css");
@import url("https://use.typekit.net/ine8xad.css");
@media only screen and (max-width: 2200px) {
  .hide-xxl {
    display: none !important; } }

.show-xxl,
.show-xxl-flex {
  display: none !important; }

@media only screen and (max-width: 2200px) {
  .show-xxl {
    display: block !important; }
  .show-xxl-flex {
    display: flex !important; } }

@media only screen and (max-width: 1600px) {
  .hide-xl {
    display: none !important; } }

.show-xl,
.show-xl-flex {
  display: none !important; }

@media only screen and (max-width: 1600px) {
  .show-xl {
    display: block !important; }
  .show-xl-flex {
    display: flex !important; } }

@media only screen and (max-width: 1200px) {
  .hide-lg {
    display: none !important; } }

.show-lg,
.show-lg-flex {
  display: none !important; }

@media only screen and (max-width: 1200px) {
  .show-lg {
    display: block !important; }
  .show-lg-flex {
    display: flex !important; } }

@media only screen and (max-width: 992px) {
  .hide-md {
    display: none !important; } }

.show-md,
.show-md-flex {
  display: none !important; }

@media only screen and (max-width: 992px) {
  .show-md {
    display: block !important; }
  .show-md-flex {
    display: flex !important; } }

@media only screen and (max-width: 768px) {
  .hide-sm {
    display: none !important; } }

.show-sm,
.show-sm-flex {
  display: none !important; }

@media only screen and (max-width: 768px) {
  .show-sm {
    display: block !important; }
  .show-sm-flex {
    display: flex !important; } }

@media only screen and (max-width: 600px) {
  .hide-xs {
    display: none !important; } }

.show-xs,
.show-xs-flex {
  display: none !important; }

@media only screen and (max-width: 600px) {
  .show-xs {
    display: block !important; }
  .show-xs-flex {
    display: flex !important; } }

/*_variables.scss */
:root {
  --font-primary: 'tachyon', sans-serif;
  --font-secondary: 'kanit', sans-serif;
  --font-size: 16px;
  --color-primary: #24b1c3;
  --color-secondary: #000;
  --content-width: 1600px;
  --content-width-opposite: calc(
        ((100vw - var(--content-width)) / 2) + 100px
    ); }

/* mixins.scss */
/*  Flexbox  */
.flex {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.flex-center {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.flex-v-center {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

/* ----------------------------- */
.vertical-center {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

/* ----------------------------- */
.default-transition {
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease; }

/* ----------------------------- */
.background-cover {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }

.background-contain {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center; }

/* ----------------------------- */
.absolute {
  position: absolute;
  top: 0;
  left: 0; }

/* ----------------------------- */
.border-radius {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px; }

.shadow {
  -webkit-box-shadow: 0px 0px 81px -15px rgba(0, 0, 0, 0.31);
  -moz-box-shadow: 0px 0px 81px -15px rgba(0, 0, 0, 0.31);
  box-shadow: 0px 0px 81px -15px rgba(0, 0, 0, 0.31); }

.img-fit {
  width: 100%;
  height: 100%; }
  .img-fit img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; }

.header--text {
  height: 70vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column; }
  @media only screen and (max-width: 992px) {
    .header--text {
      align-items: flex-start;
      justify-content: flex-end;
      width: 90vw; } }
  .header--text h2,
  .header--text p {
    font-size: 30px;
    font-weight: 400;
    color: white;
    letter-spacing: 2px;
    margin: 20px 0; }
    @media only screen and (max-width: 992px) {
      .header--text h2,
      .header--text p {
        font-size: 16px; } }
  .header--text h1 {
    font-size: 100px;
    font-weight: 200;
    color: white;
    letter-spacing: 4px; }
    @media only screen and (max-width: 992px) {
      .header--text h1 {
        font-size: 50px; } }
    .header--text h1 strong {
      font-weight: 600; }

/*_layout.scss */
/* Layout */
#holder {
  min-height: 100%;
  position: relative;
  height: 100%; }

#container {
  height: 100%; }
  @media only screen and (max-width: 992px) {
    #container {
      height: unset; } }

.content {
  max-width: var(--content-width);
  width: 100%;
  margin: 0 auto;
  position: relative; }

/* CSS needed site-wide */
* {
  margin: 0;
  padding: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  scroll-behavior: smooth; }

body {
  font-family: var(--font-secondary);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s; }

html {
  color: var(--secondary-color);
  font-size: var(--font-size); }

h1 {
  font-size: 2.5em;
  font-family: var(--primary-font);
  margin-bottom: 20px; }

h2 {
  font-size: 1.5rem;
  font-family: var(--primary-font);
  margin: 40px 0px 0px; }

h3 {
  font-size: 1.1rem;
  font-family: var(--primary-font); }

h4 {
  font-size: 1rem;
  font-family: var(--primary-font); }

h5 {
  font-size: 1rem;
  font-family: var(--primary-font); }

p {
  font-size: 1rem;
  font-weight: 400;
  font-family: var(--primary-font); }

.h1 {
  font-size: large;
  font-family: var(--primary-font); }

.h2 {
  font-size: 1.2rem;
  font-family: var(--secondary-font); }

.h3 {
  font-size: 1.1rem;
  font-family: var(--primary-font); }

.h4 {
  font-size: 1rem;
  font-family: var(--primary-font); }

.h5 {
  font-size: 1rem;
  font-family: var(--primary-font); }

.p {
  font-size: 1rem;
  font-weight: 400;
  font-family: var(--primary-font); }

.modal {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  padding: 20px;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease; }
  .modal.active {
    opacity: 1;
    pointer-events: all; }
  .modal__background {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); }
  .modal__body {
    position: relative;
    max-width: 960px;
    max-height: 80vh;
    width: 100%;
    color: #000;
    background: #fff; }
  .modal__content {
    padding: 50px;
    overflow-y: auto;
    cursor: auto;
    /* background of the scrollbar except button or resizer */
    /* scrollbar itself */
    /* set button(top and bottom of the scrollbar) */ }
    .modal__content::-webkit-scrollbar {
      background-color: #fff;
      width: 16px; }
    .modal__content::-webkit-scrollbar-track {
      background-color: #fff; }
    .modal__content::-webkit-scrollbar-thumb {
      background-color: #babac0;
      border-radius: 16px;
      border: 4px solid #fff; }
    .modal__content::-webkit-scrollbar-button {
      display: none; }
  .modal__close {
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 20px;
    width: 20px;
    box-sizing: content-box;
    cursor: pointer;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease; }
    .modal__close:hover {
      transform: scale(0.9); }

/*_header.scss */
/* Header Styles */
header {
  padding: 30px 0;
  position: block;
  width: 100%;
  background: #231f20; }
  @media only screen and (max-width: 992px) {
    header {
      padding: 30px 0; } }

.home header {
  background: transparent;
  position: fixed; }
  @media only screen and (max-width: 992px) {
    .home header {
      position: initial; } }
  @media only screen and (max-width: 992px) {
    .home header .content {
      display: flex;
      justify-content: center; } }

/*_footer.scss */
/* Footer Styles */
.clearFooter {
  clear: both; }

.privacy-policy footer {
  display: flex;
  justify-content: space-between;
  padding: 80px 0;
  color: #231f20; }
  @media only screen and (max-width: 992px) {
    .privacy-policy footer {
      flex-direction: column;
      gap: 5px;
      padding: 0 10px; } }
  .privacy-policy footer a {
    text-decoration: none;
    color: #231f20; }

.home footer {
  position: fixed;
  bottom: 60px;
  width: 100%;
  max-width: var(--content-width);
  width: 100%;
  margin: 0 auto;
  position: relative;
  color: #8c8a8b;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-secondary); }
  @media only screen and (max-width: 992px) {
    .home footer {
      flex-direction: column;
      gap: 5px;
      padding: 20px;
      bottom: unset; } }
  .home footer a {
    text-decoration: none;
    color: #8c8a8b; }

.loading {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  background: #231f20;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  animation-name: loading;
  animation-delay: 3.6s;
  animation-duration: 1.5s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards; }
  .loading .anim-holder {
    min-width: 800px; }
    @media only screen and (max-width: 992px) {
      .loading .anim-holder {
        min-width: unset;
        width: 100%;
        padding: 0 10px; } }
    .loading .anim-holder svg {
      height: 100%;
      width: 100%; }
      .loading .anim-holder svg #circle-top,
      .loading .anim-holder svg #circle-bottom,
      .loading .anim-holder svg #circle-left,
      .loading .anim-holder svg #arrow {
        scale: 0; }
      .loading .anim-holder svg #arrow {
        transform: rotate(-180deg); }

@keyframes loading {
  0% {
    opacity: 1;
    display: block; }
  100% {
    opacity: 0;
    display: none; } }

.home {
  background-color: #231f20;
  background-image: url("./../img/background.png");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100vw; }
  @media only screen and (max-width: 992px) {
    .home {
      background-attachment: fixed; } }
  .home .landing {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%; }
    @media only screen and (max-width: 992px) {
      .home .landing {
        align-items: flex-start; } }
    .home .landing .form-holder {
      color: white;
      font-family: var(--font-secondary);
      display: flex;
      flex-direction: column;
      align-items: center; }
      @media only screen and (max-width: 992px) {
        .home .landing .form-holder {
          width: 100%;
          padding: 20px;
          margin: 50px 0; } }
      .home .landing .form-holder a {
        color: white; }
      .home .landing .form-holder h1 {
        font-family: var(--font-primary);
        font-size: 50px;
        color: white;
        text-transform: uppercase;
        font-weight: 400;
        text-align: center;
        margin-bottom: 40px;
        letter-spacing: 5px; }
        @media only screen and (max-width: 992px) {
          .home .landing .form-holder h1 {
            font-size: 24px; } }
        .home .landing .form-holder h1 span {
          color: var(--color-primary); }
      .home .landing .form-holder h3 {
        font-weight: 400;
        font-size: 16px;
        text-transform: uppercase;
        margin-bottom: 20px;
        letter-spacing: 2px; }
        @media only screen and (max-width: 992px) {
          .home .landing .form-holder h3 {
            text-align: center; } }
      .home .landing .form-holder .form-input {
        padding: 5px;
        background: white;
        border-radius: 50px;
        width: auto; }
        @media only screen and (max-width: 992px) {
          .home .landing .form-holder .form-input {
            background: transparent; } }
        .home .landing .form-holder .form-input p {
          display: flex; }
          @media only screen and (max-width: 992px) {
            .home .landing .form-holder .form-input p {
              align-items: center; } }
        .home .landing .form-holder .form-input input {
          border: 0;
          background-color: transparent;
          height: 100%;
          margin-left: 10px;
          display: flex;
          padding-left: 10px;
          font-size: 16px; }
          @media only screen and (max-width: 992px) {
            .home .landing .form-holder .form-input input {
              background-color: white;
              border-radius: 50px;
              height: 50px;
              text-align: center;
              font-size: 14px; } }
      .home .landing .form-holder .submit {
        background-color: var(--color-primary);
        padding: 15px 25px;
        color: white;
        border-radius: 50px;
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 2px;
        border: 0;
        display: flex;
        gap: 10px;
        align-items: center; }
      .home .landing .form-holder .wpcf7-not-valid-tip {
        display: none;
        visibility: hidden;
        height: 0;
        width: 0; }
      .home .landing .form-holder .wpcf7-text.wpcf7-not-valid {
        border: 1px solid red !important; }
      .home .landing .form-holder .wpcf7-spinner {
        height: 0;
        width: 0;
        visibility: hidden;
        position: absolute;
        display: none; }
      .home .landing .form-holder .gdpr {
        padding-top: 5px; }
  @media only screen and (max-width: 992px) {
    .home form {
      display: flex;
      justify-content: center;
      flex-direction: column;
      gap: 10px;
      align-items: center; } }

/*_footer.scss */
/* Footer Styles */
.clearFooter {
  clear: both; }

.privacy-policy footer {
  display: flex;
  justify-content: space-between;
  padding: 80px 0;
  color: #231f20; }
  @media only screen and (max-width: 992px) {
    .privacy-policy footer {
      flex-direction: column;
      gap: 5px;
      padding: 0 10px; } }
  .privacy-policy footer a {
    text-decoration: none;
    color: #231f20; }

.home footer {
  position: fixed;
  bottom: 60px;
  width: 100%;
  max-width: var(--content-width);
  width: 100%;
  margin: 0 auto;
  position: relative;
  color: #8c8a8b;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-secondary); }
  @media only screen and (max-width: 992px) {
    .home footer {
      flex-direction: column;
      gap: 5px;
      padding: 20px;
      bottom: unset; } }
  .home footer a {
    text-decoration: none;
    color: #8c8a8b; }
