* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  scroll-margin-top: 86px;
  -webkit-tap-highlight-color: transparent;
}

/* --------------------------------- BODY & MAIN -------------------------------- */
body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

main {
  opacity: 0;
  -webkit-animation: fadeIn ease-in 1;
          animation: fadeIn ease-in 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* --------------------------------- Typography -------------------------------- */
h1 {
  font-size: 50px;
  line-height: 1.1;
  font-weight: 400;
}

h2 {
  font-size: 38px;
  line-height: 1.1;
}

h3 {
  font-size: 22px;
  line-height: 1.1;
}

h4 {
  font-size: 18px;
  line-height: 1.1;
}

p {
  font-size: 16px;
  line-height: 1.6;
}

h2,
h3,
h4,
h5,
h6,
.logo span {
  font-weight: 400;
}

.btn {
  padding: 12px 20px !important;
  background-color: #191919;
  color: white !important;
  text-decoration: none;
  border-radius: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 2px solid #191919 !important;
}
.btn:hover {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
  background-color: #e64840;
  color: white !important;
}

/* --------------------------------- HEADER -------------------------------- */
header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: sticky;
  top: 0;
  background-color: white;
  border-bottom: 2px solid #191919;
  z-index: 1000;
  height: 86px;
}
header .header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
header .header-content .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 15px;
  text-decoration: none;
  color: #191919;
  font-weight: bold;
  font-size: 0;
  height: 100%;
  z-index: 1000;
}
header .header-content .logo img {
  width: auto;
  height: 100%;
  padding: 5px;
}
header .header-content .logo span {
  font-size: 25px;
  margin: auto;
}
header .header-content nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
header .header-content nav a {
  text-decoration: none;
  color: #191919;
  padding: 5px;
  -webkit-transition: 0.1s;
  transition: 0.1s;
  border-bottom: 2px solid white;
}
header .header-content nav a.active {
  border-color: #191919;
}
header .header-content nav .divider {
  display: none;
}
header .header-content nav.no-transition {
  -webkit-transition: none !important;
  transition: none !important;
}

#close-menu,
#open-menu {
  display: none;
  cursor: pointer;
}

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  /* Show social icons in the header by removing display: none */
  display: none;
}
.socials a {
  font-size: 15px;
  padding: 5px;
  background-color: #191919;
  color: white;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
.socials a:hover {
  background-color: #e64840;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

/* --------------------------------- HERO-------------------------------- */
.hero .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1300px;
  margin: 0 auto;
  gap: 20px;
  padding: 20px;
}
.hero .hero-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 25px;
  max-width: 540px;
}
.hero .hero-img {
  width: 100%;
  padding: 10%;
  height: auto;
}
/* --------------------------------- OVERLAYS -------------------------------- */




/* --------------------------------- CONTAINER -------------------------------- */
.container-full {
  padding: 80px 0;
}
.container-full.bg-1 {
  background-color: #e64840;
  color: white;
}
.container-full.bg-2 {
  background-color: #ffac3d;
  color: #191919;
}
.container-full.bg-3 {
  background-color: black;
  color: white;
}

.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.text-col {
  display: grid;
  gap: 10px;
}

.text-col:last-child {
  display: flex;
  align-items: center; 
  justify-content: center;
  gap: 40px;
}

.hero-content img {
  display: block;
  width: 90%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.text-col img {
  display: block;
  width: 90%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.text-col p {
display: table-cell;
vertical-align: middle;
}

.text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* --------------------------------- SWIPER-------------------------------- */
.swiper-container {
  display: grid;
  grid-template-columns: auto auto auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}

.swiper {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding: 25px;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  height: auto;
  border-radius: 10px;
  text-align: center;
  align-items: center;
  background-color: white;
  border: 2px solid #191919;
  color: #191919;
}
.swiper-slide p {
  max-width: 500px;
}
.swiper-slide i {
  font-size: 40px;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  position: relative !important;
  margin: 0;
  top: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  position: relative !important;
  top: auto;
  margin: 0;
}

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.cards .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: transparent;
  color: white;
  border: 2px solid white;
  border-radius: 10px;
  padding: 20px;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  max-width: 500px;
}
.cards .card i {
  font-size: 40px;
}

/* ---------------------------------- FOOTER-------------------------------- */
footer {
  background-color: #191919;
}
footer .footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  padding-top: 60px;
  padding-bottom: 100px;
  gap: 20px;
}
footer .footer-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: white;
  gap: 5px;
}
footer .footer-item h4 {
  margin-bottom: 10px;
}
footer .footer-item a {
  text-decoration: none;
  color: white;
}
footer .copyright {
  text-align: center;
  padding: 20px;
  color: white;
}
footer .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 7px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* --------------------------------- LEGAL -------------------------------- */
.banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 100px 20px;
  background-color: #e64840;
  color: white;
}

.legal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
}
.legal h2,
.legal h3 {
  font-weight: bold;
}

/* --------------------------------- FORM -------------------------------- */
form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  border-radius: 10px;
}
form input,
form textarea {
  padding: 15px;
  background: white;
  border-radius: 5px;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  border: 2px solid #191919;
}
form input[type=submit] {
  cursor: pointer;
  margin: 0 auto;
}
form .checkbox-label {
  display: block;
}
form .checkbox-label input {
  width: auto;
}
form .checkbox-label a {
  text-decoration: none;
  color: #e64840;
  font-weight: bold;
}

.spinner {
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto 10px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* --------------------------------- SILKTIDE COOKIE BANNER -------------------------------- */
#silktide-modal header,
#silktide-modal footer {
  background-color: black;
}

/* --------------------------------- MEDIA QUERIES-------------------------------- */
@media screen and (max-width: 1200px) {
  .container-full {
    padding: 20px 0;
    min-height: 500px;
  }
  header .header-content .logo img {
    padding-left: 0;
  }
  header .header-content .logo span {
    font-size: 22px;
  }
  header .header-content nav {
    gap: 15px;
  }
  .legal {
    padding: 40px 20px;
  }
  .container {
    gap: 40px;
    height: 100%;
  }
  footer .footer-content {
    padding: 40px;
  }
}
@media screen and (max-width: 1024px) {
  * {
    scroll-margin-top: 71px;
  }
  header {
    height: 71px;
  }
  header .header-content {
    padding: 0px 20px;
    padding-left: 10px;
  }
  header .header-content .logo {
    gap: 10px;
  }
  header .header-content .logo span {
    font-size: 22px;
  }
  header .header-content nav {
    background: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: 0.3s opacity;
    transition: 0.3s opacity;
    gap: 5px;
  }
  header .header-content nav .btn {
    margin: 10px 0;
  }
  header .header-content nav.active {
    opacity: 1;
    pointer-events: all;
  }
  header .header-content nav .divider {
    display: none;
  }
  #close-menu,
  #open-menu {
    display: block;
  }
  #close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
  }
  .hero .hero-content img {
    padding: 25px;
  }
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .container {
    gap: 25px;
  }
  .text-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    padding: 20px;
  }
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 25px;
  }
  h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .swiper-container {
    gap: 0;
  }
  .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    right: -10px;
  }
  .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    left: -10px;
  }
  .hero .hero-content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .hero .hero-content img {
    padding: 0;
  }
  .hero .hero-content .hero-text {
    gap: 15px;
  }
}
@media screen and (max-width: 500px) {
  .hero .hero-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 25px;
  }
  .hero .hero-content img {
    padding: 0;
    padding-right: 20px;
  }
  .hero .hero-content .hero-text {
    gap: 15px;
  }
}/*# sourceMappingURL=styles.css.map */