/* GLOBAL */
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
@font-face {
  font-family: "ITC Century";
  src: url("../fonts/ITC_Century/font.woff") format("woff");
}
@font-face {
  font-family: "Centra Bold";
  src: url("../fonts/Centra_No1/Bold.woff") format("woff");
  font-weight: 700;
}
@font-face {
  font-family: "Centra Book";
  src: url("../fonts/Centra_No1/Book.woff") format("woff");
  font-weight: 500;
}
@font-face {
  font-family: "Centra ExtraBold";
  src: url("../fonts/Centra_No1/ExtraBold.woff") format("woff");
  font-weight: 900;
}
/* COLORS */
*,
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding: 3rem;
  scroll-snap-align: y mandatory;
  padding: 0;
  margin: 0;
}

body {
  color: #152651;
  font-size: 1rem;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  background-color: #f3f1ee;
  overflow-x: hidden;
}

ul {
  list-style: none;
  padding-left: 0px;
}

strong {
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: underline;
}
a:hover {
  color: inherit;
}
a:active, a:focus {
  outline: none;
  border: none;
}

p {
  font-size: 18px;
  line-height: 28px;
  font-family: "Centra Book", sans;
}
@media (max-width: 767px) {
  p {
    font-size: 1rem;
    line-height: 24px;
  }
}

h1,
h2,
h3 {
  font-family: "ITC Century", sans-serif;
}

h2,
h3 {
  font-family: "Centra Bold", sans;
}

h1 {
  font-size: 48px;
  line-height: 64px;
}
@media (max-width: 767px) {
  h1 {
    font-size: 29px;
    line-height: 34px;
    margin-bottom: 1rem;
  }
}

::-moz-selection {
  color: white;
  background-color: #152651;
}

::selection {
  color: white;
  background-color: #152651;
}

.border-bottom-white {
  border-bottom: 1px solid white !important;
}

.text-dark {
  color: #282828 !important;
}

.plex-sans {
  font-family: "IBM Plex Sans", sans-serif !important;
}

.mini-title {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 10px;
  font-size: 14px;
}

.subtitle {
  font-family: "Centra ExtraBold", sans;
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-transform: uppercase;
}

.line {
  width: 100%;
  height: 8px;
  display: block;
  margin-bottom: 0.5rem;
  background-color: #152651;
}
.line.white {
  background-color: white;
}

.button {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  background-color: #152651 !important;
  color: white;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
  line-height: 20px;
  transition: all 0.2s linear;
  text-decoration: none;
}
.button:hover {
  opacity: 0.7;
  color: white;
}

/* MAIN COMPONENTS */
header .navbar {
  transition: all 0.2s linear;
}
@media (max-width: 767px) {
  header .navbar .button {
    font-size: 0.8rem;
  }
}
header .navbar.scrolled {
  background-color: white;
}
header .navbar.scrolled #nav-icon-toggler span {
  background-color: #152651;
}
header .navbar.scrolled .nav-item .nav-link {
  color: #152651;
}
header .navbar.scrolled .navbar-brand img {
  filter: none;
}
header .navbar-brand img {
  filter: brightness(100);
}
header .navbar-nav .nav-item {
  position: relative;
  font-family: "IBM Plex Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 14px;
}
@media (max-width: 767px) {
  header .navbar-nav .nav-item {
    font-size: 1rem;
  }
}
header .navbar-nav .nav-item.current-menu-item .nav-link {
  color: #152651;
  font-weight: 500;
}
header .navbar-nav .nav-item .nav-link {
  font-family: "Centra ExtraBold", sans;
  font-size: 1rem;
  letter-spacing: 1px;
  color: white;
  padding: 0.5rem 0;
  transition: all 0.2s linear;
}
header .navbar-nav .nav-item .nav-link:hover {
  opacity: 0.7;
}

footer {
  background-color: #152651;
  color: white;
  padding: 50px;
}
@media (max-width: 767px) {
  footer {
    padding: 20px 0;
  }
}
footer p {
  font-size: 12px;
  line-height: 16px;
}
footer .nav-link {
  font-family: "Centra ExtraBold", sans;
  letter-spacing: 1px;
  color: white;
  text-transform: uppercase;
}
footer .nav-link:hover, footer .nav-link:focus, footer .nav-link:active {
  color: inherit;
}
@media (max-width: 767px) {
  footer .footer-logo {
    width: 100px;
  }
}

/* COMPONENTS */
#nav-icon-toggler {
  width: 40px;
  height: 25px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  border: none;
}
#nav-icon-toggler:focus, #nav-icon-toggler:active {
  box-shadow: none;
}

#nav-icon-toggler span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: white;
  opacity: 1;
  left: 0;
  border-radius: 4px;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

/* Icon 3 */
#nav-icon-toggler span:nth-child(1) {
  top: 0px;
}

#nav-icon-toggler span:nth-child(2),
#nav-icon-toggler span:nth-child(3) {
  top: 12px;
}

#nav-icon-toggler span:nth-child(4) {
  top: 24px;
}

#nav-icon-toggler.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#nav-icon-toggler.open span:nth-child(2) {
  transform: rotate(45deg);
}

#nav-icon-toggler.open span:nth-child(3) {
  transform: rotate(-45deg);
}

#nav-icon-toggler.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  background-color: white;
  z-index: 9999999999999;
}

.race-by {
  --uib-size: 80px;
  --uib-speed: 1.4s;
  --uib-color: #f37253;
  --uib-line-weight: 5px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--uib-line-weight);
  width: var(--uib-size);
  border-radius: calc(var(--uib-line-weight) / 2);
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.race-by::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--uib-color);
  opacity: 0.1;
}

.race-by::after {
  content: "";
  height: 100%;
  width: 100%;
  border-radius: calc(var(--uib-line-weight) / 2);
  animation: raceBy var(--uib-speed) ease-in-out infinite;
  transform: translateX(-100%);
  background-color: var(--uib-color);
}

@keyframes raceBy {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.form-wrapper {
  padding: 48px;
  border-radius: 4px;
  box-shadow: 0px 50px 75px 0px rgb(183, 181, 176);
}
@media (max-width: 767px) {
  .form-wrapper {
    padding: 20px;
  }
}

label {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: #282828;
  margin-bottom: 0.3rem;
}

input,
textarea,
select {
  border: none;
  width: 100%;
  margin-bottom: 0;
  display: block;
  resize: none;
  padding-bottom: 10px;
  background-color: transparent;
  color: white;
  border-radius: 4px;
}
input::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #64615f;
}
input::placeholder,
textarea::placeholder,
select::placeholder {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #64615f;
}
input:active, input:focus,
textarea:active,
textarea:focus,
select:active,
select:focus {
  border: none;
  box-shadow: none;
  border-bottom: 1px solid black;
  outline: none;
}

/* Replace select arrow button */
select,
select.form-select {
  background-image: url("../../assets/img/arrow-down.svg");
  background-repeat: no-repeat;
  background-position-x: 95%;
  background-position-y: 23px;
  margin-right: 2rem;
  padding: 1rem;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #64615f;
  padding-right: 2rem;
}
select .select-placeholder,
select option,
select.form-select .select-placeholder,
select.form-select option {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #64615f;
}

.form-control,
.form-select {
  border: none;
  min-height: 56px;
  padding: 8px;
  padding-left: 12px;
  border-radius: 4px;
}
.form-control:focus, .form-control:active,
.form-select:focus,
.form-select:active {
  box-shadow: none;
  border: none;
}
.form-control::-moz-placeholder, .form-select::-moz-placeholder {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #64615f;
}
.form-control::placeholder,
.form-select::placeholder {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #64615f;
}

/* CONTACT FORM 7 STYLES */
.wpcf7-submit {
  position: relative;
  display: inline-block;
  transition: opacity 0.2s linear;
  color: black;
  margin-top: 0;
  width: -moz-fit-content;
  width: fit-content;
}
.wpcf7-submit:focus, .wpcf7-submit:active {
  border: none;
}
.wpcf7-submit.arrow {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
  font-size: 1rem;
  color: #152651;
  background-color: transparent !important;
  padding: 0;
}
.wpcf7-submit.arrow:after {
  content: url("../img/arrow-violet.svg");
  margin-left: 8px;
  display: inline-block;
  vertical-align: middle;
  transition: all 0.2s;
}
.wpcf7-submit.arrow.dark {
  color: #282828;
}
.wpcf7-submit.arrow.dark:after {
  content: url("../img/arrow-black.svg");
}
.wpcf7-submit.arrow:hover {
  opacity: 1;
}
.wpcf7-submit.arrow:hover::after {
  margin-left: 12px;
}

.wpcf7-not-valid-tip {
  display: none;
  /* font-size: 12px;
  position: absolute;
  top: 30px; */
}

.wpcf7-not-valid {
  border: 1px solid #152651;
}

.wpcf7-spinner {
  position: absolute;
  right: 40px;
  top: 5px;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  border-color: #152651;
  text-align: center;
  border-color: #152651;
  border: 1px solid;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: block;
  margin-top: 2rem;
}

.wpcf7 .invalid .wpcf7-response-output,
.wpcf7 .unaccepted .wpcf7-response-output,
.wpcf7 .payment-required .wpcf7-response-output {
  color: #152651;
  padding: 1rem;
  border: 1px solid;
  font-size: 0.8rem;
  text-align: center;
  padding: 0.4em 1em;
  border: 1px solid #152651;
  border-radius: 4px;
  border-color: #152651 !important;
  width: -moz-fit-content;
  width: fit-content;
  margin: 2rem auto;
}

.wpcf7-spinner {
  visibility: hidden;
  display: inline-block;
  background-color: black;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  border: none;
  border-radius: 100%;
  padding: 0;
  margin: 0 24px;
}

.two-columns-block {
  max-height: 600px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .two-columns-block {
    max-height: unset;
  }
}
.two-columns-block.row-reverse {
  flex-direction: row-reverse !important;
}
@media (max-width: 767px) {
  .two-columns-block.row-reverse {
    flex-direction: column-reverse !important;
  }
}
.two-columns-block .column {
  flex-basis: 50%;
}
.two-columns-block .column.content {
  display: grid;
  place-content: center;
  padding: 5%;
  height: 600px;
}
@media (max-width: 767px) {
  .two-columns-block .column.content {
    padding: 10% 5%;
    height: unset;
  }
}
.two-columns-block img {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .two-columns-block img {
    height: 420px;
  }
}

.two-columns-text {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .two-columns-text {
    padding: 50px 0;
  }
}
.two-columns-text .two-columns-text-item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .two-columns-text .two-columns-text-item {
    margin-bottom: 1rem;
  }
}
.two-columns-text .two-columns-text-item:last-of-type {
  margin-bottom: 0;
}
.two-columns-text .two-columns-text-item h4 {
  font-family: "Centra Bold", sans;
}
.two-columns-text .two-columns-text-item p {
  max-width: 75%;
}
@media (max-width: 767px) {
  .two-columns-text .two-columns-text-item p {
    max-width: 100%;
  }
}

.main-hero {
  display: grid;
  align-items: end;
  padding: 100px 0;
  height: 100vh;
  /* background-image: url("../img/home-hero.jpg"); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #f3f1ee;
  position: relative;
}
@media (max-width: 767px) {
  .main-hero {
    padding: 50px 0;
  }
}
.main-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(115, 115, 115, 0.5);
  mix-blend-mode: multiply;
}
.main-hero .content {
  z-index: 2;
}
.main-hero h1 {
  font-size: 85px;
  line-height: 77px;
}
@media (max-width: 767px) {
  .main-hero h1 {
    font-size: 55px;
    line-height: 1;
  }
}

.carousel {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .carousel {
    padding: 50px 0;
  }
}
.carousel .carousel_swiper {
  min-height: 480px;
  position: relative;
}
@media (max-width: 767px) {
  .carousel .carousel_swiper {
    height: 800px;
  }
}
.carousel .carousel_swiper .swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 2;
}
@media (max-width: 767px) {
  .carousel .carousel_swiper .swiper-pagination {
    top: unset;
    width: 100%;
  }
}
.carousel .carousel_swiper .swiper-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background-color: transparent;
  border: 1px solid #152651;
  opacity: 1;
}
.carousel .carousel_swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #152651;
}
.carousel .carousel_swiper .subtitle {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  z-index: 3;
  font-size: 20px;
}
@media (max-width: 767px) {
  .carousel .carousel_swiper .subtitle {
    width: 100%;
    top: -20px;
  }
}
.carousel .carousel_swiper .carousel-swiper-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .carousel .carousel_swiper .carousel-swiper-item {
    flex-direction: column;
  }
}
.carousel .carousel_swiper .carousel-swiper-item .content {
  width: 53%;
  padding-right: 3rem;
}
@media (max-width: 767px) {
  .carousel .carousel_swiper .carousel-swiper-item .content {
    width: 100%;
  }
}
.carousel .carousel_swiper .carousel-swiper-item .content h1 {
  font-family: "Centra Bold", sans;
  margin-bottom: 10px;
}
.carousel .carousel_swiper .carousel-swiper-item .content h6 {
  font-family: "Centra ExtraBold", sans;
}/*# sourceMappingURL=main.css.map */