@charset "UTF-8";
@font-face {
  font-family: "Ortica Linear";
  src: url("../fonts/OrticaLinear-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ortica Linear";
  src: url("../fonts/OrticaLinear-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ortica Linear";
  src: url("../fonts/OrticaLinear-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Right Grotesk";
  src: url("../fonts/PPRightGroteskText-SpatialBold.woff2") format("woff2"), url("../fonts/PPRightGroteskText-SpatialBold.woff") format("woff"), url("../fonts/PPRightGroteskText-SpatialBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Right Grotesk";
  src: url("../fonts/PPRightGroteskText-SpatialMedium.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Right Grotesk";
  src: url("../fonts/PPRightGroteskText-SpatialLight.woff2") format("woff2"), url("../fonts/PPRightGroteskText-SpatialLight.woff") format("woff"), url("../fonts/PPRightGroteskText-SpatialLight.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Right Grotesk";
  src: url("../fonts/PPRightGroteskText-SpatialLightItalic.woff2") format("woff2"), url("../fonts/PPRightGroteskText-SpatialLightItalic.woff") format("woff"), url("../fonts/PPRightGroteskText-SpatialLightItalic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
:root {
  --nav-offset: 0px;
}

* {
  font-family: "Right Grotesk", sans-serif;
}

.bootik-site-main {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}

/* ######################################
/                HEADER                 /
/  ################################### */
.bootik-header {
  padding: 25px 50px;
  position: fixed;
  background-color: transparent;
  width: 100%;
  will-change: transform, backdrop-filter, padding;
  transition: transform 0.1s linear, backdrop-filter 0.3s ease, padding 0.3s ease;
  z-index: 1000;
}
@media (max-width: 768px) {
  .bootik-header {
    padding: 25px;
  }
}
.bootik-header.blurred {
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 5px 50px;
}
@media (max-width: 768px) {
  .bootik-header.blurred {
    padding: 5px 25px;
  }
}
.bootik-header .bootik-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.bootik-header__logo {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  z-index: 1001;
}
.bootik-header__logo a {
  display: grid;
  align-items: center;
  justify-items: start;
}
.bootik-header__logo img {
  grid-area: 1/1;
  display: block;
  height: 70px;
  width: auto;
  max-height: none;
  transition: opacity 0.5s ease;
}
@media (max-width: 768px) {
  .bootik-header__logo img {
    height: 35px;
  }
}
.bootik-header__logo img:last-child {
  opacity: 0;
}
.bootik-header.menu-open .bootik-header__logo img:first-child {
  opacity: 0;
}
.bootik-header.menu-open .bootik-header__logo img:last-child {
  opacity: 1;
}
.bootik-header.menu-open {
  padding: 25px 50px;
}
@media (max-width: 768px) {
  .bootik-header.menu-open {
    padding: 25px;
  }
}
.bootik-header__toggle {
  margin-left: auto;
  color: #fff;
  border: none;
  width: 45px;
  height: 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1001;
}
@media (max-width: 768px) {
  .bootik-header__toggle {
    width: 32px;
    height: 32px;
    gap: 3px;
  }
}
.bootik-header__toggle:hover, .bootik-header__toggle:focus {
  background: none;
}
.bootik-header__toggle span {
  width: 28px;
  height: 4px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
@media (max-width: 768px) {
  .bootik-header__toggle span {
    width: 14px;
    height: 2px;
    border-radius: 1px;
    transition: none;
  }
}
.bootik-header__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.bootik-header__toggle.active span:nth-child(2) {
  opacity: 0;
}
.bootik-header__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}
@media (max-width: 768px) {
  .bootik-header__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(3px, 3px);
  }
  .bootik-header__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }
}
.bootik-header .menu-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
}
.bootik-header .menu-overlay__content {
  position: fixed;
  top: calc(37.5px + var(--nav-offset));
  right: 50px;
  z-index: 10;
  background-color: #000;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  transform-origin: center center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), top 0.3s ease;
}
@media (max-width: 768px) {
  .bootik-header .menu-overlay__content {
    top: calc(26.5px + var(--nav-offset));
    right: 25px;
    width: 32px;
    height: 32px;
  }
}
.bootik-header .menu-overlay__content.close {
  transform: scale(1);
  pointer-events: none;
}
.bootik-header .menu-overlay__content.close ~ .menu-content-wrapper .menu-content {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.1s ease;
}
.bootik-header .menu-overlay__content.open {
  transform: scale(105);
  pointer-events: all;
}
.bootik-header .menu-overlay__content.open ~ .menu-content-wrapper .menu-content {
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.3s ease 0.4s;
}
.bootik-header .menu-overlay .menu-content {
  position: fixed;
  top: 500px;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease 0.4s;
  z-index: 1000;
  pointer-events: none;
}
@media (max-width: 768px) {
  .bootik-header .menu-overlay .menu-content {
    top: 350px;
  }
}
.bootik-header .menu-overlay .menu-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bootik-header .menu-overlay .menu-nav li {
  margin: 2rem 0;
}
.bootik-header .menu-overlay .menu-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 2.5rem;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
}
@media (max-width: 768px) {
  .bootik-header .menu-overlay .menu-nav a {
    font-size: 1.2rem;
    transition: none;
  }
}
.bootik-header .menu-overlay .menu-nav a:hover {
  color: #ccc;
  transform: translateY(-5px);
}
@media (max-width: 768px) {
  .bootik-header .menu-overlay .menu-nav a:hover {
    color: inherit;
    transform: none;
  }
}

.bootik-footer {
  background-color: #1d1d1b;
  color: #b2b2b2;
  padding: 0 2% 2% 2%;
  position: relative;
}
.bootik-footer__logo {
  text-align: right;
  margin-bottom: 20px;
  border-bottom: 1px solid #b2b2b2;
}
.bootik-footer__logo img {
  width: 65vw;
  max-width: 90vw;
  height: auto;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .bootik-footer__logo img {
    width: 100%;
  }
}
.bootik-footer__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  padding: 0 20px;
  justify-content: start;
  max-width: 80vw;
}
@media (max-width: 968px) {
  .bootik-footer__content {
    grid-template-columns: repeat(2, auto);
    gap: 40px;
    justify-content: center;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .bootik-footer__content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
    max-width: 100%;
  }
}
.bootik-footer__column .bootik-footer__title {
  font-size: clamp(0.9rem, 0.877rem + 0.104vw, 1rem);
  font-weight: 700;
  color: #ffb71b;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.bootik-footer__column .footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bootik-footer__column .footer-list li {
  margin: 0;
  line-height: 1.6;
  font-size: clamp(0.8rem, 0.777rem + 0.104vw, 0.9rem);
}
.bootik-footer__column .footer-list li a {
  color: #b2b2b2;
  text-decoration: none;
  font-size: clamp(0.8rem, 0.777rem + 0.104vw, 0.9rem);
  transition: all 0.3s ease;
}
.bootik-footer__column .footer-list li a:hover {
  color: #ffb71b;
  padding-left: 5px;
}
.bootik-footer__navigation .footer-list li a {
  position: relative;
}
.bootik-footer__navigation .footer-list li a:before {
  content: "+";
  margin-right: 8px;
  font-weight: bold;
}
.bootik-footer__social .social-links li a {
  position: relative;
}
.bootik-footer__social .social-links li a:hover {
  transform: translateX(5px);
}

.bootik-scroll-to-top {
  width: 52px;
  height: 80px;
  border: 2px solid #ffb71b;
  border-radius: 40px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
  padding: 0;
  cursor: pointer;
}
@media (max-width: 768px) {
  .bootik-scroll-to-top {
    width: 36px;
    height: 56px;
  }
}
.bootik-scroll-to-top:hover, .bootik-scroll-to-top:active, .bootik-scroll-to-top:focus {
  background-color: transparent;
}
.bootik-scroll-to-top .bootik-arrow__container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bootik-scroll-to-top .bootik-arrow__line {
  width: 2px;
  height: 56px;
  background-color: #ffb71b;
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .bootik-scroll-to-top .bootik-arrow__line {
    height: 39px;
    top: 6px;
  }
}
.bootik-scroll-to-top:hover {
  transform: translateY(-4px);
}
.bootik-scroll-to-top .bootik-arrow__arc-left {
  position: absolute;
  width: 18px;
  height: 21px;
  border: 2px solid #ffb71b;
  border-top: none;
  border-left: none;
  border-bottom-right-radius: 24px;
  top: 10px;
  right: 50%;
}
@media (max-width: 768px) {
  .bootik-scroll-to-top .bootik-arrow__arc-left {
    width: 12px;
    height: 15px;
    border-bottom-right-radius: 17px;
    top: 6px;
  }
}
.bootik-scroll-to-top .bootik-arrow__arc-right {
  position: absolute;
  width: 18px;
  height: 21px;
  border: 2px solid #ffb71b;
  border-top: none;
  border-right: none;
  border-bottom-left-radius: 24px;
  top: 10px;
  left: 50%;
}
@media (max-width: 768px) {
  .bootik-scroll-to-top .bootik-arrow__arc-right {
    width: 12px;
    height: 15px;
    border-bottom-left-radius: 17px;
    top: 6px;
  }
}
.bootik-scroll-to-top {
  position: absolute;
  bottom: 50px;
  right: 50px;
}
@media (max-width: 768px) {
  .bootik-scroll-to-top {
    bottom: 25px;
    right: 25px;
  }
}

[data-bg=white] {
  --bg-color: #ffffff;
}

[data-bg=cream] {
  --bg-color: #f5eedf;
}

[data-bg=grey] {
  --bg-color: #b0bfbc;
}

[data-bg=orange] {
  --bg-color: #ffb71b;
}

.bootik-home {
  background-color: var(--current-bg, #f5eedf);
  transition: background-color 1s ease;
}

.bootik-mission {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 50px;
  color: #101417;
  position: relative;
  overflow: clip;
}
@media (max-width: 768px) {
  .bootik-mission {
    padding: 25px;
  }
}
.bootik-mission__container {
  width: min(1200px, 100%);
  display: grid;
  justify-items: center;
  gap: clamp(6rem, 2rem + 10vw, 10rem);
  text-align: center;
  position: relative;
}
.bootik-mission__title {
  font-size: clamp(0.8rem, 1rem + 0.6vw, 1.5rem);
  font-weight: 300;
  max-width: 700px;
  color: #ffb71b;
}
.bootik-mission__quote {
  position: relative;
  font-family: "Ortica Linear", sans-serif;
  font-weight: 300;
  font-size: clamp(1.3rem, 1.1rem + 3.5vw, 3.25rem);
  line-height: 1.15;
  text-align: center;
  z-index: 1;
}
.bootik-mission__quote::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: clamp(220px, 28vw, 320px);
  height: calc(clamp(220px, 28vw, 320px) * 1.05);
  border-radius: 47%/47%;
  background: #ffb71b;
  z-index: -1;
  filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0.001));
}
.bootik-mission__quote strong {
  display: inline-block;
  padding-inline: 0.2em;
  font-family: "Ortica Linear", sans-serif;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
  z-index: 2;
}
.bootik-mission__arrow {
  position: absolute;
  top: -30px;
  left: 10px;
  width: clamp(160px, 22vw, 260px);
  color: #ffb71b;
  pointer-events: none;
}
.bootik-mission__arrow path {
  transition: stroke-dasharray 1200ms ease-out;
}
.bootik-mission__arrow--hide-head path {
  marker-end: none;
}
.bootik-mission__arrow.is-drawn path {
  stroke-dashoffset: 0;
}
@media (max-width: 1300px) {
  .bootik-mission__arrow {
    display: none;
  }
}

.bootik-scroll-down {
  width: 52px;
  height: 80px;
  border: 2px solid #ffb71b;
  border-radius: 40px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
  padding: 0;
  cursor: pointer;
}
@media (max-width: 768px) {
  .bootik-scroll-down {
    width: 36px;
    height: 56px;
  }
}
.bootik-scroll-down:hover, .bootik-scroll-down:active, .bootik-scroll-down:focus {
  background-color: transparent;
}
.bootik-scroll-down .bootik-arrow__container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bootik-scroll-down .bootik-arrow__line {
  width: 2px;
  height: 56px;
  background-color: #ffb71b;
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .bootik-scroll-down .bootik-arrow__line {
    height: 39px;
    top: 6px;
  }
}
.bootik-scroll-down:hover {
  transform: translateY(4px);
}
.bootik-scroll-down .bootik-arrow__arc-left {
  position: absolute;
  width: 18px;
  height: 21px;
  border: 2px solid #ffb71b;
  border-bottom: none;
  border-left: none;
  border-top-right-radius: 24px;
  bottom: 10px;
  right: 50%;
}
@media (max-width: 768px) {
  .bootik-scroll-down .bootik-arrow__arc-left {
    width: 12px;
    height: 15px;
    border-top-right-radius: 17px;
    bottom: 6px;
  }
}
.bootik-scroll-down .bootik-arrow__arc-right {
  position: absolute;
  width: 18px;
  height: 21px;
  border: 2px solid #ffb71b;
  border-bottom: none;
  border-right: none;
  border-top-left-radius: 24px;
  bottom: 10px;
  left: 50%;
}
@media (max-width: 768px) {
  .bootik-scroll-down .bootik-arrow__arc-right {
    width: 12px;
    height: 15px;
    border-top-left-radius: 17px;
    bottom: 6px;
  }
}
.bootik-scroll-down {
  position: absolute;
  bottom: 50px;
  right: 47px;
}
@media (max-width: 768px) {
  .bootik-scroll-down {
    bottom: 25px;
    right: 23px;
  }
}

.bootik-vision {
  min-height: 100svh;
  color: #101417;
  padding: 50px;
  align-content: center;
  z-index: 1;
}
@media (max-width: 768px) {
  .bootik-vision {
    padding: 25px;
  }
}
.bootik-vision__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4vw;
  gap: 60px;
}
@media (max-width: 768px) {
  .bootik-vision__container {
    padding: 20px 0;
    gap: 120px;
  }
}
.bootik-vision__row {
  display: flex;
  width: 100%;
  align-items: start;
  justify-content: center;
  overflow: hidden;
}
.bootik-vision__col p {
  margin: 0;
  line-height: 1.8;
  font-size: clamp(0.85rem, 0.581rem + 1.195vw, 2rem);
  font-weight: 300;
}
.bootik-vision__col p strong {
  font-family: "Ortica Linear", sans-serif;
  font-weight: 700;
}
.bootik-vision__col p em {
  display: inline-block;
  border-bottom: clamp(0.188rem, 0.135rem + 0.24vw, 0.375rem) solid #fff;
  text-decoration-color: #fff;
  height: clamp(1.06rem, 0.8rem + 1.35vw, 2.4rem);
  font-style: normal;
}
.bootik-vision__col p span {
  text-decoration: underline;
}
.bootik-vision__col--left {
  max-width: 70%;
  justify-self: start;
  text-align: left;
}
@media (max-width: 768px) {
  .bootik-vision__col--left {
    max-width: 100%;
  }
}
.bootik-vision__col--right {
  justify-self: end;
  text-align: right;
  max-width: 60%;
}
@media (max-width: 768px) {
  .bootik-vision__col--right {
    max-width: 100%;
  }
}
.bootik-vision__col--arrow1, .bootik-vision__col--arrow2 {
  width: 100%;
}
@media (max-width: 768px) {
  .bootik-vision__col--arrow1, .bootik-vision__col--arrow2 {
    display: none;
  }
}
.bootik-vision__arrow {
  color: #fff;
  opacity: 0.95;
  pointer-events: none;
  width: 100%;
  height: 100%;
  max-height: 350px;
}
@media (max-width: 768px) {
  .bootik-vision__arrow {
    display: none;
  }
}
.bootik-vision__arrow path {
  transition: stroke-dasharray 1200ms ease-out;
}
.bootik-vision__arrow--hide-head path {
  marker-end: none;
}
.bootik-vision__arrow.is-drawn path {
  stroke-dashoffset: 0;
}

.bootik-services {
  position: relative;
  color: #0f1416;
  padding: 50px;
  min-height: 100vh;
  z-index: 2;
}
@media (max-width: 768px) {
  .bootik-services {
    padding: 25px;
  }
}
.bootik-services__container {
  position: relative;
  width: 100%;
  margin-inline: auto;
}
.bootik-services__header {
  position: absolute;
  font-size: clamp(1rem, 0.719rem + 1.247vw, 2.2rem);
  top: 0;
  left: 0;
  z-index: 10;
  max-width: 40%;
}
@media (max-width: 768px) {
  .bootik-services__header {
    max-width: 60%;
  }
}
.bootik-services__header p {
  color: #101417;
  line-height: 1.3;
}
.bootik-services__header p strong {
  font-weight: 700;
  color: #ffb71b;
}
.bootik-services__header p span {
  font-size: clamp(1.6rem, 1.156rem + 1.974vw, 3.5rem);
  text-decoration: underline;
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.18em;
  text-decoration-color: #ffb71b;
  color: #101417;
}
.bootik-services__content {
  position: relative;
  padding-top: clamp(100px, 10vw, 200px);
  padding-bottom: clamp(100px, 10vw, 200px);
  height: clamp(106.25rem, 59.505rem + 97.259vw, 175rem);
}
.bootik-services__service {
  position: absolute;
  width: 100%;
  min-height: clamp(200px, 20vw, 400px);
}
.bootik-services__text {
  position: absolute;
  z-index: 15;
  transition: transform 0.1s ease-out;
}
.bootik-services__title {
  font-size: clamp(1.5rem, 0.7rem + 4vw, 6rem);
  line-height: 0.9;
  font-weight: 400;
  color: #101417;
  margin: 0;
}
.bootik-services__media {
  position: absolute;
  z-index: 5;
  transition: transform 0.1s ease-out;
}
.bootik-services__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.bootik-services__grey-circle {
  position: absolute;
  top: 100px;
  right: clamp(0rem, -0.584rem + 2.597vw, 2.5rem);
  width: clamp(12.5rem, 7.094rem + 24.026vw, 35.625rem);
  height: calc(clamp(12.5rem, 7.094rem + 24.026vw, 35.625rem) * 1.02);
  border-radius: 49%/49%;
  border: 0.15rem solid #b0bfbc;
  pointer-events: none;
  z-index: -1;
}
.bootik-services__orange-circle {
  position: absolute;
  top: 0;
  left: -100px;
  width: clamp(25rem, 13.312rem + 51.948vw, 75rem);
  height: calc(clamp(25rem, 13.312rem + 51.948vw, 75rem) * 1.02);
  border-radius: 49%/49%;
  border: 0.15rem solid #ffb71b;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
}
.bootik-services__service:nth-child(1) {
  top: clamp(0px, 0vw, 50px);
}
.bootik-services__service:nth-child(1) .bootik-services__text {
  top: clamp(150px, 14vw, 300px);
  left: clamp(9.375rem, -20.372rem + 61.892vw, 53.125rem);
  z-index: 5;
}
.bootik-services__service:nth-child(1) .bootik-services__media {
  top: 0px;
  right: clamp(5rem, 4.575rem + 0.884vw, 5.625rem);
  width: clamp(225px, 24vw, 450px);
  z-index: 15;
}
.bootik-services__service:nth-child(2) {
  top: clamp(500px, 30vw, 800px);
}
.bootik-services__service:nth-child(2) .bootik-services__text {
  top: clamp(100px, 10vw, 300px);
  left: clamp(13.5%, 26vw, 27%);
  z-index: 15;
}
.bootik-services__service:nth-child(2) .bootik-services__media {
  top: clamp(-15px, 2vw, -30px);
  left: clamp(2.5%, 4vw, 5%);
  width: clamp(275px, 29vw, 550px);
  z-index: 5;
}
.bootik-services__service:nth-child(3) {
  top: clamp(900px, 75vw, 1600px);
}
.bootik-services__service:nth-child(3) .bootik-services__text {
  top: 0;
  left: clamp(0rem, -12.749rem + 26.525vw, 18.75rem);
  text-align: right;
  z-index: 5;
}
.bootik-services__service:nth-child(3) .bootik-services__media {
  top: 0;
  right: clamp(-50px, -4vw, -50px);
  width: clamp(450px, 55vw, 1100px);
  z-index: 15;
}
.bootik-services__service:nth-child(4) {
  top: clamp(1300px, 120vw, 2500px);
}
.bootik-services__service:nth-child(4) .bootik-services__text {
  top: 0;
  right: clamp(0rem, -11.899rem + 24.757vw, 17.5rem);
  z-index: 15;
  text-align: center;
}
.bootik-services__service:nth-child(4) .bootik-services__media {
  top: 0;
  left: clamp(3.125rem, -6.649rem + 20.336vw, 17.5rem);
  width: clamp(400px, 37vw, 700px);
  z-index: 5;
}
.bootik-services__footer {
  position: absolute;
  bottom: clamp(25px, 2.5vw, 50px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  text-align: center;
  width: 100%;
}
.bootik-services__claim {
  font-family: "Ortica Linear", sans-serif;
  font-weight: 300;
  font-size: clamp(1.25rem, 0.888rem + 1.61vw, 2.8rem);
  margin-bottom: 3rem;
  color: #101417;
  line-height: 1.2;
}
.bootik-services__claim strong {
  font-family: "Ortica Linear", sans-serif;
  font-weight: 700;
  text-decoration-line: underline;
}
.bootik-services__pill {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 50px;
  background: #101417;
  color: white;
  text-decoration: none;
  font-family: "Ortica Linear", sans-serif;
  font-size: clamp(1rem, 0.883rem + 0.519vw, 1.5rem);
  font-weight: 400;
  transition: all 0.3s ease;
}
.bootik-services__pill strong {
  font-family: "Ortica Linear", sans-serif;
  font-weight: 700;
  text-decoration-line: underline;
}
.bootik-services__pill:hover {
  transform: translateY(-4px);
}
.bootik-services__pill:hover, .bootik-services__pill:active {
  color: white;
}
@media (max-width: 768px) {
  .bootik-services__content {
    padding-top: 0;
    padding-bottom: clamp(50px, 5vw, 100px);
    height: clamp(66.5rem, 34.926rem + 122.549vw, 93.75rem);
  }
  .bootik-services__service {
    display: flex;
    gap: clamp(1rem, 2vw, 2rem);
  }
  .bootik-services__service:nth-child(1) {
    top: 0;
  }
  .bootik-services__service:nth-child(1) .bootik-services__text {
    top: 120px;
    left: 15px;
    z-index: 5;
  }
  .bootik-services__service:nth-child(1) .bootik-services__media {
    top: -100px;
    right: 20px;
    width: clamp(9.375rem, 2.946rem + 28.571vw, 16.875rem);
    z-index: 15;
  }
  .bootik-services__service:nth-child(2) {
    top: clamp(17.5rem, 9.228rem + 36.765vw, 26.875rem);
  }
  .bootik-services__service:nth-child(2) .bootik-services__text {
    top: 80px;
    right: 15px;
    text-align: right;
    z-index: 15;
  }
  .bootik-services__service:nth-child(2) .bootik-services__media {
    top: 0;
    right: 0;
    width: clamp(13.563rem, 10.64rem + 12.99vw, 16.875rem);
    z-index: 5;
  }
  .bootik-services__service:nth-child(3) {
    top: clamp(37.5rem, 20.956rem + 73.529vw, 56.25rem);
  }
  .bootik-services__service:nth-child(3) .bootik-services__text {
    top: 0px;
    left: 0;
    text-align: center;
    z-index: 5;
  }
  .bootik-services__service:nth-child(3) .bootik-services__media {
    top: 0px;
    right: -25px;
    width: clamp(13.563rem, 0.713rem + 57.108vw, 28.125rem);
    z-index: 15;
  }
  .bootik-services__service:nth-child(4) {
    top: clamp(51.875rem, 25.956rem + 115.196vw, 81.25rem);
  }
  .bootik-services__service:nth-child(4) .bootik-services__text {
    top: -50px;
    right: 0;
    text-align: center;
    z-index: 15;
  }
  .bootik-services__service:nth-child(4) .bootik-services__media {
    top: 50px;
    left: 40px;
    width: clamp(13.563rem, 4.574rem + 39.951vw, 23.75rem);
    z-index: 5;
  }
  .bootik-services__footer {
    position: relative;
    bottom: 0;
  }
}
@media (max-width: 480px) {
  .bootik-services__content {
    padding-bottom: clamp(30px, 3vw, 50px);
  }
  .bootik-services__service {
    margin-bottom: clamp(1.5rem, 3vw, 3rem);
  }
  .bootik-services__title {
    font-size: clamp(1.5rem, 0.8rem + 2.5vw, 3rem);
  }
  .bootik-services__mockup {
    width: clamp(200px, 60vw, 300px) !important;
    margin: 0 auto;
  }
}

.bootik-carousel {
  margin-top: 80px;
  background: #ffb71b;
  padding-block: clamp(20px, 4vw, 60px);
  overflow: hidden;
  position: relative;
}
.bootik-carousel__container {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  gap: clamp(20px, 4vw, 40px);
  align-items: center;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.bootik-carousel__container.animate {
  animation: scroll-horizontal var(--duration, 35s) linear infinite;
}
.bootik-carousel__frame {
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
  border: clamp(0.188rem, 0.149rem + 0.138vw, 0.313rem) solid #fff;
  background: #000;
  height: clamp(10rem, 3.987rem + 21.379vw, 29.375rem);
  aspect-ratio: 16/10;
}
.bootik-carousel__frame .bootik-carousel__image,
.bootik-carousel__frame .bootik-carousel__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.bootik-carousel__frame--rectangle {
  border-radius: 470px;
}
.bootik-carousel__frame--circle {
  aspect-ratio: 1/1;
  border-radius: 50%;
}

@keyframes scroll-horizontal {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(var(--distance, -1380px));
  }
}
.bootik-contact {
  display: grid;
  background-color: #fff;
}

.bootik-hero {
  width: 100%;
  height: clamp(28.125rem, 14.338rem + 61.275vw, 43.75rem);
  background-image: var(--bg-contact-image);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  position: relative;
  order: 1;
}
@media screen and (min-width: 768px) {
  .bootik-hero {
    height: 100vh;
    order: 1;
  }
}
.bootik-hero__text {
  position: absolute;
  width: 100%;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 25px;
  text-align: center;
  color: #101417;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .bootik-hero__text {
    top: 120px;
    padding: 0 50px;
  }
}
.bootik-hero__text p {
  font-family: "Ortica Linear", sans-serif;
  font-weight: 300;
  font-size: clamp(0.9rem, 0.652rem + 0.63vw, 1.4rem);
  line-height: 1.4;
  margin: 0;
}
.bootik-hero__text p strong {
  font-family: "Ortica Linear", sans-serif;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.18em;
  text-decoration-color: #ffb71b;
}
.bootik-hero__text h1 {
  font-family: "Right Grotesk", sans-serif;
  text-transform: uppercase;
  font-size: clamp(2.35rem, 0.094rem + 10.026vw, 12rem);
  font-weight: 600;
  margin: 0;
  margin-top: clamp(-1.8rem, 0.174rem - 1.662vw, -0.2rem);
  letter-spacing: clamp(-1.3rem, -0.017rem - 1.081vw, -0.26rem);
}
.bootik-hero__arrow {
  position: absolute;
  width: clamp(4rem, 0.967rem + 13.48vw, 7.438rem);
  left: clamp(1rem, -0.765rem + 7.843vw, 3rem);
  top: clamp(10rem, 8.235rem + 7.843vw, 12rem);
}
@media screen and (min-width: 768px) {
  .bootik-hero__arrow {
    width: clamp(5.938rem, 4.538rem + 2.915vw, 8rem);
    left: clamp(3rem, 2.322rem + 1.413vw, 4rem);
    top: clamp(14rem, 13.322rem + 1.413vw, 15rem);
  }
}
.bootik-hero__arrow svg {
  color: #ffb71b;
}

.bootik-form {
  position: absolute;
  width: clamp(15.625rem, 7.353rem + 36.765vw, 25rem);
  height: auto;
  background: linear-gradient(to bottom, #fff 0%, #fff calc(100% - 80px), transparent 100%);
  border-radius: 15px;
  padding: 20px;
  z-index: 3;
  top: clamp(18.75rem, 7.721rem + 49.02vw, 31.25rem);
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .bootik-form {
    width: clamp(25rem, 21.608rem + 7.067vw, 30rem);
    left: 50px;
    top: clamp(31rem, 26.251rem + 9.894vw, 38rem);
    transform: none;
  }
}
.bootik-form h3 {
  color: #b0bfbc;
  text-align: left;
  margin-left: -5px;
  margin-bottom: 15px;
  font-size: clamp(1.75rem, 1.318rem + 1.922vw, 3.6rem);
}
.bootik-form .wpcf7-form label {
  font-size: clamp(0.9rem, 0.83rem + 0.312vw, 1.2rem);
  font-weight: bold;
}
.bootik-form .wpcf7-form .form-name, .bootik-form .wpcf7-form .form-email, .bootik-form .wpcf7-form .form-message {
  font-size: clamp(0.75rem, 0.659rem + 0.456vw, 1.2rem);
  color: #333;
  padding: 10px 0 0 0;
  outline: 0;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #ffb71b;
}
.bootik-form .wpcf7-form .wpcf7-not-valid-tip {
  font-size: clamp(0.8rem, 0.777rem + 0.104vw, 0.9rem);
  margin-top: 0.6rem;
}
.bootik-form .wpcf7-form .form-message {
  background-image: linear-gradient(transparent, transparent 28px, #ffb71b 28px, #ffb71b 29px);
  background-size: 100% 29px;
  line-height: 29px;
  padding: 5px 0px !important;
  border-bottom: 0 !important;
}
.bootik-form .wpcf7-form .wpcf7-submit {
  font-family: "Ortica Linear", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 0.883rem + 0.519vw, 1.5rem);
  background-color: #000;
  color: #fff;
  padding: 2px 30px;
  border: 0;
  border-radius: 50px;
}
.bootik-form .wpcf7-form .wpcf7-submit:visited {
  text-decoration: none;
}
.bootik-form .wpcf7-form > p:last-of-type {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bootik-map {
  width: 100%;
  height: clamp(28.125rem, 14.338rem + 61.275vw, 43.75rem);
  order: 2;
}
@media screen and (min-width: 768px) {
  .bootik-map {
    order: 3;
  }
}
.bootik-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.bootik-address {
  width: 100%;
  padding: 10px;
  text-align: center;
  justify-self: end;
  order: 3;
}
@media screen and (min-width: 768px) {
  .bootik-address {
    order: 2;
    padding: 15px;
    text-align: right;
  }
}
.bootik-address p {
  margin: 0;
  font-size: clamp(0.7rem, 0.548rem + 0.675vw, 1.35rem);
  color: #101417;
  font-weight: 500;
}
.bootik-address p strong {
  font-weight: 600;
}

[data-bg=white] {
  --bg-color: #ffffff;
}

[data-bg=cream] {
  --bg-color: #f5eedf;
}

[data-bg=grey] {
  --bg-color: #b0bfbc;
}

[data-bg=orange] {
  --bg-color: #ffb71b;
}

.bootik-about {
  background-color: var(--current-bg, #f5eedf);
  transition: background-color 1s ease;
}

.about-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 200px);
  overflow-x: hidden;
}
.about-header__title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-size: 20vw;
  color: #1d1d1b;
  transform: scaleX(1.155);
  font-weight: 600;
  line-height: 1;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .about-header__title {
    font-size: clamp(4rem, -0.588rem + 20.392vw, 9.2rem);
  }
}
.about-header__letter--image {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.about-header__letter-image {
  width: 0.7em;
  height: 0.69em;
  border-radius: 49%;
  object-fit: cover;
  border: 0.02em solid #ffb71b;
  display: inline-block;
  transform: scaleY(1.1);
  margin-bottom: clamp(0rem, -0.175rem + 0.779vw, 0.75rem);
}
.about-header__marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  margin-top: clamp(-1.5rem, -0.39rem - 0.935vw, -0.6rem);
}
@media screen and (max-width: 768px) {
  .about-header__marquee {
    width: 90%;
  }
}
.about-header__marquee-content {
  display: inline-block;
  animation: marquee-continuous 40s linear infinite;
  font-family: "Ortica Linear", sans-serif;
  font-size: clamp(0.88rem, -0.004rem + 1.839vw, 2.18rem);
  font-weight: 300;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .about-header__marquee-content {
    font-size: clamp(0.7rem, 0.621rem + 0.353vw, 0.79rem);
  }
}

@keyframes marquee-continuous {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.about-values {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
}
.about-values__holistic {
  max-width: 43em;
  margin: 0;
  padding-top: 50px;
  padding-left: 50px;
  padding-right: 50px;
  text-align: left;
  font-size: clamp(0.9rem, 0.63rem + 0.312vw, 1rem);
}
@media screen and (max-width: 768px) {
  .about-values__holistic {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.about-values__container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 150px;
  width: 100%;
  padding: clamp(2.5rem, 1.623rem + 3.896vw, 6.25rem) clamp(1.563rem, -1.725rem + 14.61vw, 15.625rem);
}
.about-values__box {
  border: 2px solid #000;
  border-radius: 400px;
  text-align: center;
  padding: 10px 50px;
  max-width: 600px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .about-values__box {
    padding: 20px 20px 10px 20px;
    border-radius: 80px;
    max-width: 300px;
  }
}
.about-values__box--white {
  background-color: white;
  border-color: #1d1d1b;
  font-size: clamp(1.6rem, 0.805rem + 3.532vw, 5rem);
  align-self: start;
}
.about-values__box--black {
  background-color: #1d1d1b;
  border-color: white;
  color: white;
  font-size: clamp(0.85rem, 0.63rem + 0.312vw, 1rem);
  align-self: end;
}
.about-values .about-scroll-down {
  width: 52px;
  height: 80px;
  border: 2px solid #1d1d1b;
  border-radius: 40px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
  padding: 0;
  cursor: pointer;
}
@media (max-width: 768px) {
  .about-values .about-scroll-down {
    width: 36px;
    height: 56px;
  }
}
.about-values .about-scroll-down:hover, .about-values .about-scroll-down:active, .about-values .about-scroll-down:focus {
  background-color: transparent;
}
.about-values .about-scroll-down .bootik-arrow__container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-values .about-scroll-down .bootik-arrow__line {
  width: 2px;
  height: 56px;
  background-color: #1d1d1b;
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .about-values .about-scroll-down .bootik-arrow__line {
    height: 39px;
    top: 6px;
  }
}
.about-values .about-scroll-down:hover {
  transform: translateY(4px);
}
.about-values .about-scroll-down .bootik-arrow__arc-left {
  position: absolute;
  width: 18px;
  height: 21px;
  border: 2px solid #1d1d1b;
  border-bottom: none;
  border-left: none;
  border-top-right-radius: 24px;
  bottom: 10px;
  right: 50%;
}
@media (max-width: 768px) {
  .about-values .about-scroll-down .bootik-arrow__arc-left {
    width: 12px;
    height: 15px;
    border-top-right-radius: 17px;
    bottom: 6px;
  }
}
.about-values .about-scroll-down .bootik-arrow__arc-right {
  position: absolute;
  width: 18px;
  height: 21px;
  border: 2px solid #1d1d1b;
  border-bottom: none;
  border-right: none;
  border-top-left-radius: 24px;
  bottom: 10px;
  left: 50%;
}
@media (max-width: 768px) {
  .about-values .about-scroll-down .bootik-arrow__arc-right {
    width: 12px;
    height: 15px;
    border-top-left-radius: 17px;
    bottom: 6px;
  }
}
.about-values .about-scroll-down {
  position: absolute;
  top: 70px;
  right: 47px;
}
@media (max-width: 768px) {
  .about-values .about-scroll-down {
    display: none;
  }
}

.about-team {
  color: white;
  padding: 50px 0;
  align-content: center;
}
@media (max-width: 768px) {
  .about-team {
    padding: 25px 0;
  }
}
.about-team__carousel {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(0.313rem, 0.093rem + 0.974vw, 1.25rem);
  padding: 50px 0;
  margin-top: clamp(0rem, -0.877rem + 3.896vw, 3.75rem);
  justify-content: center;
  overflow: hidden;
}
.about-team__frame {
  display: flex;
  flex: 0 0 17%;
  justify-content: center;
  align-items: center;
  margin: 0;
  min-width: 0;
}
@media (max-width: 768px) {
  .about-team__frame {
    flex: 0 0 28%;
  }
}
.about-team__image {
  max-height: 500px;
  aspect-ratio: 9/16;
  border-radius: 300px;
  object-fit: cover;
  display: inline-block;
  filter: grayscale(100%);
  transition: transform 1s ease;
  width: 100%;
}
.about-team__image.active {
  border: clamp(0.125rem, 0.096rem + 0.13vw, 0.25rem) solid white;
  transform: translateY(-5%);
  filter: grayscale(0);
}
.about-team__buttons {
  display: flex;
  justify-content: space-between;
}
.about-team .about-scroll-left {
  width: 39px;
  height: 60px;
  border: 1px solid #1d1d1b;
  border-radius: 30px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
  padding: 0;
  cursor: pointer;
}
@media (max-width: 768px) {
  .about-team .about-scroll-left {
    width: 27px;
    height: 42px;
  }
}
.about-team .about-scroll-left:hover, .about-team .about-scroll-left:active, .about-team .about-scroll-left:focus {
  background-color: white;
}
.about-team .about-scroll-left .bootik-arrow__container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-team .about-scroll-left .bootik-arrow__line {
  width: 1px;
  height: 42px;
  background-color: #1d1d1b;
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .about-team .about-scroll-left .bootik-arrow__line {
    height: 29px;
    top: 5px;
  }
}
.about-team .about-scroll-left {
  width: 60px;
  height: 39px;
}
.about-team .about-scroll-left:hover {
  transform: translateX(-4px);
}
.about-team .about-scroll-left .bootik-arrow__line {
  width: 42px;
  height: 1px;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .about-team .about-scroll-left .bootik-arrow__line {
    width: 29px;
    left: 5px;
  }
}
.about-team .about-scroll-left .bootik-arrow__arc-left {
  position: absolute;
  width: 16px;
  height: 13px;
  border: 1px solid #1d1d1b;
  border-left: none;
  border-top: none;
  border-bottom-right-radius: 18px;
  bottom: 50%;
  left: 8px;
}
@media (max-width: 768px) {
  .about-team .about-scroll-left .bootik-arrow__arc-left {
    width: 11px;
    height: 9px;
    border-bottom-right-radius: 13px;
    left: 5px;
  }
}
.about-team .about-scroll-left .bootik-arrow__arc-right {
  position: absolute;
  width: 16px;
  height: 13px;
  border: 1px solid #1d1d1b;
  border-left: none;
  border-bottom: none;
  border-top-right-radius: 18px;
  top: 50%;
  left: 8px;
}
@media (max-width: 768px) {
  .about-team .about-scroll-left .bootik-arrow__arc-right {
    width: 11px;
    height: 9px;
    border-top-right-radius: 13px;
    left: 5px;
  }
}
.about-team .about-scroll-left {
  left: 20%;
}
@media (max-width: 768px) {
  .about-team .about-scroll-left {
    display: none;
  }
}
.about-team .about-scroll-right {
  width: 39px;
  height: 60px;
  border: 1px solid #1d1d1b;
  border-radius: 30px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
  padding: 0;
  cursor: pointer;
}
@media (max-width: 768px) {
  .about-team .about-scroll-right {
    width: 27px;
    height: 42px;
  }
}
.about-team .about-scroll-right:hover, .about-team .about-scroll-right:active, .about-team .about-scroll-right:focus {
  background-color: white;
}
.about-team .about-scroll-right .bootik-arrow__container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-team .about-scroll-right .bootik-arrow__line {
  width: 1px;
  height: 42px;
  background-color: #1d1d1b;
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .about-team .about-scroll-right .bootik-arrow__line {
    height: 29px;
    top: 5px;
  }
}
.about-team .about-scroll-right {
  width: 60px;
  height: 39px;
}
.about-team .about-scroll-right:hover {
  transform: translateX(4px);
}
.about-team .about-scroll-right .bootik-arrow__line {
  width: 42px;
  height: 1px;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .about-team .about-scroll-right .bootik-arrow__line {
    width: 29px;
    left: 5px;
  }
}
.about-team .about-scroll-right .bootik-arrow__arc-left {
  position: absolute;
  width: 16px;
  height: 13px;
  border: 1px solid #1d1d1b;
  border-right: none;
  border-top: none;
  border-bottom-left-radius: 18px;
  bottom: 50%;
  right: 8px;
}
@media (max-width: 768px) {
  .about-team .about-scroll-right .bootik-arrow__arc-left {
    width: 11px;
    height: 9px;
    border-bottom-left-radius: 13px;
    right: 5px;
  }
}
.about-team .about-scroll-right .bootik-arrow__arc-right {
  position: absolute;
  width: 16px;
  height: 13px;
  border: 1px solid #1d1d1b;
  border-right: none;
  border-bottom: none;
  border-top-left-radius: 18px;
  top: 50%;
  right: 8px;
}
@media (max-width: 768px) {
  .about-team .about-scroll-right .bootik-arrow__arc-right {
    width: 11px;
    height: 9px;
    border-top-left-radius: 13px;
    right: 5px;
  }
}
.about-team .about-scroll-right {
  right: 20%;
}
@media (max-width: 768px) {
  .about-team .about-scroll-right {
    display: none;
  }
}
.about-team .about-team-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  display: none;
}
.about-team .about-team-info.active {
  display: flex;
}
.about-team .about-team-info__name {
  font-size: clamp(1rem, 0.513rem + 0.831vw, 2rem);
  font-weight: 600;
  background-color: #1d1d1b;
  padding: 0 10px;
}
.about-team .about-team-info__position {
  text-align: center;
  font-size: clamp(0.7rem, 0.583rem + 0.519vw, 1.2rem);
  max-width: 300px;
}
.about-team .about-team-info__arrow {
  width: 39px;
  height: 60px;
  border: 0 solid #1d1d1b;
  border-radius: 30px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
  padding: 0;
  cursor: pointer;
}
@media (max-width: 768px) {
  .about-team .about-team-info__arrow {
    width: 27px;
    height: 42px;
  }
}
.about-team .about-team-info__arrow:hover, .about-team .about-team-info__arrow:active, .about-team .about-team-info__arrow:focus {
  background-color: transparent;
}
.about-team .about-team-info__arrow .bootik-arrow__container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-team .about-team-info__arrow .bootik-arrow__line {
  width: 1px;
  height: 42px;
  background-color: #1d1d1b;
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .about-team .about-team-info__arrow .bootik-arrow__line {
    height: 29px;
    top: 5px;
  }
}
.about-team .about-team-info__arrow:hover {
  transform: translateY(4px);
}
.about-team .about-team-info__arrow .bootik-arrow__arc-left {
  position: absolute;
  width: 13px;
  height: 16px;
  border: 1px solid #1d1d1b;
  border-bottom: none;
  border-left: none;
  border-top-right-radius: 18px;
  bottom: 8px;
  right: 50%;
}
@media (max-width: 768px) {
  .about-team .about-team-info__arrow .bootik-arrow__arc-left {
    width: 9px;
    height: 11px;
    border-top-right-radius: 13px;
    bottom: 5px;
  }
}
.about-team .about-team-info__arrow .bootik-arrow__arc-right {
  position: absolute;
  width: 13px;
  height: 16px;
  border: 1px solid #1d1d1b;
  border-bottom: none;
  border-right: none;
  border-top-left-radius: 18px;
  bottom: 8px;
  left: 50%;
}
@media (max-width: 768px) {
  .about-team .about-team-info__arrow .bootik-arrow__arc-right {
    width: 9px;
    height: 11px;
    border-top-left-radius: 13px;
    bottom: 5px;
  }
}
@media (max-width: 768px) {
  .about-team .about-team-info__arrow {
    display: none;
  }
}
.about-team .about-team-info__bio {
  font-family: "Ortica Linear", sans-serif;
  font-size: clamp(0.9rem, 0.806rem + 0.416vw, 1.3rem);
  font-weight: 300;
  text-align: center;
  max-width: 900px;
}
.about-team .about-team-info__bio strong {
  font-family: "Ortica Linear", sans-serif;
  font-weight: 700;
}
.about-team .about-team-info__skills {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: clamp(0rem, -0.292rem + 1.299vw, 1.25rem);
  flex-wrap: wrap;
  justify-content: center;
}
.about-team .about-team-info__skill {
  font-size: clamp(0.7rem, 0.406rem + 0.416vw, 0.9rem);
  color: #1d1d1b;
  background-color: white;
  padding: 0 clamp(0.313rem, -0.053rem + 1.623vw, 1.875rem);
  border-radius: 60px;
}

.about-manifest {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.about-manifest__title {
  width: 100%;
  font-family: "Ortica Linear", sans-serif;
  font-size: clamp(2.5rem, 1.791rem + 3.544vw, 6rem);
  font-weight: 300;
}
@media (max-width: 768px) {
  .about-manifest__title {
    padding-left: 25px;
  }
}
.about-manifest__title span {
  display: block;
  text-align: center;
  text-transform: uppercase;
  font-family: "Right Grotesk", sans-serif;
  align-self: center;
}
.about-manifest__title strong {
  font-weight: 700;
}
.about-manifest__title-wrapper {
  margin-top: 4rem;
  display: flex;
}
.about-manifest__title-arrow {
  width: 65px;
  height: 100px;
  border: 0 solid #000;
  border-radius: 50px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
  padding: 0;
  top: 30px;
}
@media (max-width: 768px) {
  .about-manifest__title-arrow {
    width: 46px;
    height: 70px;
  }
}
.about-manifest__title-arrow:hover, .about-manifest__title-arrow:active, .about-manifest__title-arrow:focus {
  background-color: transparent;
}
.about-manifest__title-arrow .bootik-arrow__container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-manifest__title-arrow .bootik-arrow__line {
  width: 3px;
  height: 70px;
  background-color: #000;
  position: absolute;
  left: 50%;
  top: 12px;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .about-manifest__title-arrow .bootik-arrow__line {
    height: 49px;
    top: 8px;
  }
}
.about-manifest__title-arrow {
  width: 100px;
  height: 65px;
}
.about-manifest__title-arrow .bootik-arrow__line {
  width: 70px;
  height: 3px;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .about-manifest__title-arrow .bootik-arrow__line {
    width: 49px;
    left: 8px;
  }
}
.about-manifest__title-arrow .bootik-arrow__arc-left {
  position: absolute;
  width: 26px;
  height: 22px;
  border: 3px solid #000;
  border-right: none;
  border-top: none;
  border-bottom-left-radius: 30px;
  bottom: 50%;
  right: 12px;
}
@media (max-width: 768px) {
  .about-manifest__title-arrow .bootik-arrow__arc-left {
    width: 18px;
    height: 15px;
    border-bottom-left-radius: 21px;
    right: 8px;
  }
}
.about-manifest__title-arrow .bootik-arrow__arc-right {
  position: absolute;
  width: 26px;
  height: 22px;
  border: 3px solid #000;
  border-right: none;
  border-bottom: none;
  border-top-left-radius: 30px;
  top: 50%;
  right: 12px;
}
@media (max-width: 768px) {
  .about-manifest__title-arrow .bootik-arrow__arc-right {
    width: 18px;
    height: 15px;
    border-top-left-radius: 21px;
    right: 8px;
  }
}
@media (max-width: 768px) {
  .about-manifest__title-arrow {
    display: none;
  }
}
.about-manifest__container {
  padding: 50px;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  z-index: 2;
}
.about-manifest__card {
  padding: 10px;
  border-radius: 1.5rem;
}
.about-manifest__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  border-bottom: 1px solid #000;
}
.about-manifest__card-subtitle {
  margin: 1rem 0 0.3rem 0;
  font-size: 1.2rem;
  font-weight: 600;
}
.about-manifest__card-text {
  font-size: clamp(0.9rem, 0.63rem + 0.312vw, 1rem);
}
.about-manifest__card-2 {
  background-color: #ffb71b;
}
.about-manifest__card-2 .about-manifest__card-title {
  color: #fff;
}
.about-manifest__bg-path {
  position: absolute;
  top: 200px;
  z-index: 1;
  object-fit: cover;
}
@media (min-width: 680px) {
  .about-manifest__container {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }
  .about-manifest__card-5 {
    grid-column: 2;
    grid-row: 3;
  }
  .about-manifest__card-6 {
    grid-column: 1;
    grid-row: 4;
  }
  .about-manifest__card-7 {
    grid-column: 2;
    grid-row: 4;
  }
}
@media (min-width: 1100px) {
  .about-manifest__container {
    grid-template-columns: repeat(3, 400px);
    justify-content: center;
  }
  .about-manifest__card-1 {
    grid-column: 2;
    grid-row: 1;
  }
  .about-manifest__card-2 {
    grid-column: 3;
    grid-row: 1;
  }
  .about-manifest__card-3 {
    grid-column: 1;
    grid-row: 2;
  }
  .about-manifest__card-4 {
    grid-column: 2;
    grid-row: 2;
  }
  .about-manifest__card-5 {
    grid-column: 3;
    grid-row: 3;
  }
  .about-manifest__card-6 {
    grid-column: 2;
    grid-row: 4;
  }
  .about-manifest__card-7 {
    grid-column: 3;
    grid-row: 4;
  }
}

/* Estilos para mejorar la experiencia touch en móviles */
@media (max-width: 768px) {
  .about-team__carousel {
    touch-action: pan-x;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: grab;
  }
  .about-team__carousel:active {
    cursor: grabbing;
  }
  .about-team__image {
    pointer-events: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
  }
}
.services-hero {
  min-height: 100svh;
  background-image: var(--bg-services-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px;
  text-align: center;
  position: relative;
  padding-top: clamp(3.125rem, 13.625rem - 8.842vw, 9.375rem);
}
@media (max-width: 768px) {
  .services-hero {
    padding: 25px;
    padding-top: 100px;
    min-height: clamp(25rem, 16.176rem + 39.216vw, 35rem);
  }
}
.services-hero__subtitle {
  text-transform: uppercase;
  font-family: "Ortica Linear", sans-serif;
  font-size: clamp(0.8rem, 0.519rem + 1.247vw, 2rem);
  font-weight: 300;
  color: #1d1d1b;
  margin-top: 1em;
}
.services-hero__title {
  font-family: "Right Grotesk", sans-serif;
  font-size: clamp(3.05rem, 0.49rem + 11.377vw, 14rem);
  font-weight: 600;
  text-transform: uppercase;
  color: #1d1d1b;
  margin-top: -0.3em;
}
.services-hero__title .services-hero__letter {
  color: #ffb71b;
}
.services-hero .services-scroll-down {
  width: 52px;
  height: 80px;
  border: 2px solid white;
  border-radius: 40px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
  padding: 0;
  cursor: pointer;
}
@media (max-width: 768px) {
  .services-hero .services-scroll-down {
    width: 36px;
    height: 56px;
  }
}
.services-hero .services-scroll-down:hover, .services-hero .services-scroll-down:active, .services-hero .services-scroll-down:focus {
  background-color: transparent;
}
.services-hero .services-scroll-down .bootik-arrow__container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.services-hero .services-scroll-down .bootik-arrow__line {
  width: 2px;
  height: 56px;
  background-color: white;
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .services-hero .services-scroll-down .bootik-arrow__line {
    height: 39px;
    top: 6px;
  }
}
.services-hero .services-scroll-down:hover {
  transform: translateY(4px);
}
.services-hero .services-scroll-down .bootik-arrow__arc-left {
  position: absolute;
  width: 18px;
  height: 21px;
  border: 2px solid white;
  border-bottom: none;
  border-left: none;
  border-top-right-radius: 24px;
  bottom: 10px;
  right: 50%;
}
@media (max-width: 768px) {
  .services-hero .services-scroll-down .bootik-arrow__arc-left {
    width: 12px;
    height: 15px;
    border-top-right-radius: 17px;
    bottom: 6px;
  }
}
.services-hero .services-scroll-down .bootik-arrow__arc-right {
  position: absolute;
  width: 18px;
  height: 21px;
  border: 2px solid white;
  border-bottom: none;
  border-right: none;
  border-top-left-radius: 24px;
  bottom: 10px;
  left: 50%;
}
@media (max-width: 768px) {
  .services-hero .services-scroll-down .bootik-arrow__arc-right {
    width: 12px;
    height: 15px;
    border-top-left-radius: 17px;
    bottom: 6px;
  }
}
.services-hero .services-scroll-down {
  position: absolute;
  bottom: 50px;
  right: 47px;
}
@media (max-width: 768px) {
  .services-hero .services-scroll-down {
    display: none;
  }
}

.services {
  background-color: #f5eedf;
  padding: 50px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .services {
    padding: 25px;
    padding-top: 60px;
  }
}
.services__info {
  display: flex;
  gap: 3rem;
  z-index: 2;
}
@media (max-width: 768px) {
  .services__info {
    flex-direction: column;
  }
}
.services__info-left {
  width: 70%;
  display: flex;
  justify-content: end;
}
@media (max-width: 768px) {
  .services__info-left {
    justify-content: start;
    width: 85%;
  }
}
.services__info-left p {
  font-family: "Ortica Linear", sans-serif;
  font-weight: 700;
  font-size: clamp(0.7rem, 0.583rem + 0.519vw, 1.2rem);
  text-align: right;
  max-width: 450px;
  margin: 0;
}
@media (max-width: 768px) {
  .services__info-left p {
    text-align: left;
  }
}
.services__info-left p strong {
  font-family: "Ortica Linear", sans-serif;
  font-weight: 700;
  color: white;
  background-color: #ffb71b;
  padding: 2px 5px;
}
.services__info-wrapper {
  width: 100%;
  display: flex;
  gap: 25px;
}
.services__info-separator {
  width: 2px;
  background-color: #ffb71b;
  margin-top: -50px;
}
@media (max-width: 768px) {
  .services__info-separator {
    margin-top: 0;
  }
}
.services__info-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 700px;
}
@media (max-width: 768px) {
  .services__info-right {
    min-height: auto;
    padding: 25px 0;
  }
}
.services__info-right h2 {
  font-size: clamp(1.5rem, 1.266rem + 1.039vw, 2.5rem);
  font-weight: 700;
  color: #ffb71b;
  margin: 0;
}
.services__info-right p {
  font-size: clamp(0.7rem, 0.63rem + 0.312vw, 1rem);
  max-width: 700px;
}
.services__title {
  text-transform: uppercase;
  display: inline-block;
  font-size: clamp(0.9rem, 0.701rem + 0.883vw, 1.75rem);
}
.services__title--bg {
  color: #fff;
  background-color: #b0bfbc;
}
.services__image {
  flex-shrink: 0;
  margin: 0;
}
.services__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 7/5;
  display: block;
}
.services__horizontal-slider {
  overflow: hidden;
  position: relative;
  width: 90%;
  margin: 0 0 0 auto;
  z-index: 2;
}
@media (max-width: 768px) {
  .services__horizontal-slider {
    width: 100%;
    margin-top: 50px;
  }
}
.services__horizontal-container {
  display: flex;
  gap: 2rem;
}
@media (max-width: 768px) {
  .services__horizontal-container {
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .services__horizontal-container::-webkit-scrollbar {
    display: none;
    height: 0;
  }
}
.services__horizontal-container .services__image {
  max-width: clamp(17.5rem, -3.977rem + 95.455vw, 43.75rem);
}
@media (max-width: 768px) {
  .services__horizontal-container .services__image {
    scroll-snap-align: start;
  }
}
.services__vertical-slider {
  overflow: hidden;
  position: relative;
  display: flex;
  max-width: 1400px;
  max-height: 710px;
  margin: 8rem 0 0 auto;
  z-index: 2;
}
@media (max-width: 768px) {
  .services__vertical-slider {
    max-height: none;
    flex-direction: column;
    align-items: end;
    margin-top: 4rem;
  }
}
.services__vertical-slider .services__title {
  text-align: right;
  margin-right: 2rem;
}
@media (max-width: 768px) {
  .services__vertical-slider .services__title {
    margin: 0.5rem 0 1rem 0;
    width: 50%;
  }
}
.services__vertical-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 768px) {
  .services__vertical-container {
    gap: 1rem;
  }
}
.services__vertical-container .services__image {
  max-width: 100%;
}
.services__swiper-slider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 8rem;
  z-index: 2;
}
@media (max-width: 768px) {
  .services__swiper-slider {
    margin-top: 4rem;
  }
}
.services__swiper-slider .services__title {
  text-align: center;
  margin-bottom: 0;
}
.services__swiper-wrapper {
  text-align: center;
}
.services .swiper-cards .swiper-slide {
  padding: clamp(0.625rem, -0.714rem + 5.952vw, 3.75rem);
}
.services .swiper-3d .swiper-slide-shadow {
  display: none;
}
.services__more-services {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 8rem;
  gap: 60px;
  z-index: 2;
}
@media (max-width: 768px) {
  .services__more-services {
    margin-top: 4rem;
  }
}
.services__more-services p {
  display: block;
  width: fit-content;
  background-color: white;
  padding: 5px 20px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  margin: 0;
  margin-right: -50px;
  align-self: end;
  font-family: "Ortica Linear", sans-serif;
  font-weight: 300;
  font-size: clamp(0.8rem, 0.683rem + 0.519vw, 1.3rem);
  text-align: center;
}
@media (max-width: 768px) {
  .services__more-services p {
    align-self: center;
    border-radius: 20px;
    margin: 0;
    padding: 5px 10px;
  }
}
.services__more-services p strong {
  font-family: "Ortica Linear", sans-serif;
  font-weight: 600;
}
.services__more-services a {
  align-self: center;
  margin-bottom: 50px;
}
.services__shape-grey {
  position: absolute;
  top: 20%;
  left: -30%;
  width: clamp(15.625rem, -2.638rem + 81.169vw, 93.75rem);
  height: calc(clamp(15.625rem, -2.638rem + 81.169vw, 93.75rem) * 1.7);
  border-radius: clamp(15.625rem, -2.638rem + 81.169vw, 93.75rem);
  border: clamp(0.15rem, 0.115rem + 0.156vw, 0.3rem) solid #b0bfbc;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 768px) {
  .services__shape-grey {
    top: clamp(29.375rem, 50.551rem - 44.118vw, 40.625rem);
  }
}
.services__shape-orange {
  position: absolute;
  bottom: 10%;
  right: clamp(-14.375rem, -8.206rem - 5.195vw, -9.375rem);
  width: clamp(18.75rem, 8.523rem + 45.455vw, 62.5rem);
  height: calc(clamp(18.75rem, 8.523rem + 45.455vw, 62.5rem) * 1.02);
  border-radius: 47%/47%;
  border: clamp(0.15rem, 0.115rem + 0.156vw, 0.3rem) solid #ffb71b;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 768px) {
  .services__shape-orange {
    bottom: 20%;
  }
}

.method-hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff;
}
@media (max-width: 768px) {
  .method-hero {
    padding: 25px;
    padding-top: 150px;
    min-height: 10rem;
    background: #f5eedf;
  }
}
.method-hero__subtitle {
  font-family: "Ortica Linear", sans-serif;
  font-size: clamp(1rem, 0.766rem + 1.039vw, 2rem);
  font-weight: 300;
  color: #1d1d1b;
}
.method-hero__title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Right Grotesk", sans-serif;
  font-size: clamp(4rem, -0.208rem + 18.701vw, 22rem);
  font-weight: 400;
  text-transform: uppercase;
  color: #000;
  margin-top: -0.3em;
  margin-left: clamp(-2rem, 0.468rem - 2.078vw, 0rem);
}
.method-hero__title strong {
  letter-spacing: clamp(-0.8rem, 0.187rem - 0.831vw, 0rem);
  font-size: clamp(4rem, -0.675rem + 20.779vw, 24rem);
  font-weight: 800;
}
.method-hero__letter-shape {
  display: inline-block;
  width: clamp(2.813rem, 0.548rem + 10.065vw, 12.5rem);
  height: calc(clamp(2.813rem, 0.548rem + 10.065vw, 12.5rem) * 1.05);
  border-radius: 47%/47%;
  background: #b0bfbc;
}
.method-hero__shape {
  position: absolute;
  top: -450px;
  left: -300px;
  width: 680px;
  height: 714px;
  border-radius: 47%/47%;
  background: #ffb71b;
}
@media (max-width: 768px) {
  .method-hero__shape {
    display: none;
  }
}
.method-hero .method-scroll-down {
  width: 52px;
  height: 80px;
  border: 2px solid #ffb71b;
  border-radius: 40px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
  padding: 0;
  cursor: pointer;
}
@media (max-width: 768px) {
  .method-hero .method-scroll-down {
    width: 36px;
    height: 56px;
  }
}
.method-hero .method-scroll-down:hover, .method-hero .method-scroll-down:active, .method-hero .method-scroll-down:focus {
  background-color: transparent;
}
.method-hero .method-scroll-down .bootik-arrow__container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.method-hero .method-scroll-down .bootik-arrow__line {
  width: 2px;
  height: 56px;
  background-color: #ffb71b;
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .method-hero .method-scroll-down .bootik-arrow__line {
    height: 39px;
    top: 6px;
  }
}
.method-hero .method-scroll-down:hover {
  transform: translateY(4px);
}
.method-hero .method-scroll-down .bootik-arrow__arc-left {
  position: absolute;
  width: 18px;
  height: 21px;
  border: 2px solid #ffb71b;
  border-bottom: none;
  border-left: none;
  border-top-right-radius: 24px;
  bottom: 10px;
  right: 50%;
}
@media (max-width: 768px) {
  .method-hero .method-scroll-down .bootik-arrow__arc-left {
    width: 12px;
    height: 15px;
    border-top-right-radius: 17px;
    bottom: 6px;
  }
}
.method-hero .method-scroll-down .bootik-arrow__arc-right {
  position: absolute;
  width: 18px;
  height: 21px;
  border: 2px solid #ffb71b;
  border-bottom: none;
  border-right: none;
  border-top-left-radius: 24px;
  bottom: 10px;
  left: 50%;
}
@media (max-width: 768px) {
  .method-hero .method-scroll-down .bootik-arrow__arc-right {
    width: 12px;
    height: 15px;
    border-top-left-radius: 17px;
    bottom: 6px;
  }
}
.method-hero .method-scroll-down {
  position: absolute;
  bottom: 50px;
  right: 47px;
}
@media (max-width: 768px) {
  .method-hero .method-scroll-down {
    display: none;
  }
}

.method {
  background: linear-gradient(to bottom, #fff 0%, #f5eedf 2%);
  padding: 50px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .method {
    padding: 25px;
    background: #f5eedf;
  }
}
.method__shape {
  position: absolute;
  top: clamp(6.25rem, 5.519rem + 3.247vw, 9.375rem);
  right: clamp(-6.25rem, -6.981rem + 3.247vw, -3.125rem);
  width: clamp(15.625rem, 10.511rem + 22.727vw, 37.5rem);
  height: calc(clamp(15.625rem, 10.511rem + 22.727vw, 37.5rem) * 1.02);
  border-radius: 48%/48%;
  background: #b0bfbc;
  z-index: 1;
}
.method__shape-orange {
  position: absolute;
  top: clamp(31.25rem, 42.817rem - 9.74vw, 40.625rem);
  left: clamp(-34.375rem, -1.989rem - 27.273vw, -8.125rem);
  width: clamp(15.625rem, 4.667rem + 48.701vw, 62.5rem);
  height: calc(clamp(15.625rem, 4.667rem + 48.701vw, 62.5rem) * 1.05);
  border-radius: 48%/48%;
  background: #ffb71b;
  z-index: 1;
}
.method__info {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, -0.487rem + 8.831vw, 10rem);
  margin-top: 50px;
  padding: 0 50px;
}
@media (max-width: 768px) {
  .method__info {
    padding: 0;
  }
}
.method__box {
  border: 2px solid #000;
  border-radius: 400px;
  text-align: center;
  padding: 30px 50px;
  margin: 0;
  background-color: white;
  border-color: #1d1d1b;
  align-self: center;
  font-size: clamp(0.9rem, 0.513rem + 0.831vw, 1.5rem);
  width: 100%;
  max-width: clamp(25rem, 19.156rem + 25.974vw, 50rem);
  z-index: 2;
}
@media (max-width: 768px) {
  .method__box {
    padding: 10px;
    margin-bottom: clamp(6.25rem, 3.493rem + 12.255vw, 9.375rem);
  }
}
.method__box strong {
  font-weight: 700;
}
.method__box em {
  color: #ffb71b;
  font-weight: 700;
  font-style: normal;
}
.method__box span {
  text-decoration: underline;
}
.method__text {
  width: 100%;
  max-width: clamp(25rem, 19.156rem + 25.974vw, 50rem);
  text-align: center;
  align-self: center;
  font-size: clamp(0.9rem, 0.583rem + 0.519vw, 1.2rem);
  z-index: 2;
}
.method__text--right {
  align-self: end;
}
.method__text--left {
  align-self: start;
}
.method__separator {
  margin: clamp(3rem, 2.299rem + 3.117vw, 6rem) -50px;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 2;
}
.method__schema {
  display: flex;
  position: relative;
  flex-direction: column;
  gap: 20px;
  z-index: 2;
  justify-content: center;
  align-items: center;
}
.method__schema-title h2 {
  font-size: clamp(1.4rem, 0.792rem + 2.701vw, 4rem);
}
.method__schema-title-box {
  border: 2px solid #1d1d1b;
  border-radius: 400px;
  background-color: white;
  padding: 5px 10px;
}
.method__schema-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 5rem 0;
}
@media (max-width: 768px) {
  .method__schema-icons {
    flex-direction: column;
    margin: 2rem 0;
  }
}
.method__schema-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 200px;
}
@media (max-width: 768px) {
  .method__schema-icon {
    max-width: 150px;
  }
}
.method__schema-icon h3 {
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(0.8rem, 0.566rem + 1.039vw, 1.8rem);
  font-weight: 700;
  margin: 1.5rem 0 0 0;
}
@media (max-width: 768px) {
  .method__schema-icon h3 {
    margin: 1rem 0 0 0;
  }
}
.method__schema-icon img {
  max-height: 150px;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .method__schema-icon img {
    max-height: 100px;
  }
}
.method__schema-arrow {
  width: 52px;
  height: 80px;
  border: 0 solid #1d1d1b;
  border-radius: 40px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
  padding: 0;
}
@media (max-width: 768px) {
  .method__schema-arrow {
    width: 36px;
    height: 56px;
  }
}
.method__schema-arrow:hover, .method__schema-arrow:active, .method__schema-arrow:focus {
  background-color: transparent;
}
.method__schema-arrow .bootik-arrow__container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.method__schema-arrow .bootik-arrow__line {
  width: 2px;
  height: 56px;
  background-color: #1d1d1b;
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .method__schema-arrow .bootik-arrow__line {
    height: 39px;
    top: 6px;
  }
}
.method__schema-arrow {
  width: 80px;
  height: 52px;
}
.method__schema-arrow .bootik-arrow__line {
  width: 56px;
  height: 2px;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .method__schema-arrow .bootik-arrow__line {
    width: 39px;
    left: 6px;
  }
}
.method__schema-arrow .bootik-arrow__arc-left {
  position: absolute;
  width: 21px;
  height: 18px;
  border: 2px solid #1d1d1b;
  border-right: none;
  border-top: none;
  border-bottom-left-radius: 24px;
  bottom: 50%;
  right: 10px;
}
@media (max-width: 768px) {
  .method__schema-arrow .bootik-arrow__arc-left {
    width: 15px;
    height: 12px;
    border-bottom-left-radius: 17px;
    right: 6px;
  }
}
.method__schema-arrow .bootik-arrow__arc-right {
  position: absolute;
  width: 21px;
  height: 18px;
  border: 2px solid #1d1d1b;
  border-right: none;
  border-bottom: none;
  border-top-left-radius: 24px;
  top: 50%;
  right: 10px;
}
@media (max-width: 768px) {
  .method__schema-arrow .bootik-arrow__arc-right {
    width: 15px;
    height: 12px;
    border-top-left-radius: 17px;
    right: 6px;
  }
}
@media (max-width: 768px) {
  .method__schema-arrow {
    width: 52px;
    height: 80px;
    border: 0 solid #1d1d1b;
    border-radius: 40px;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
    padding: 0;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .method__schema-arrow {
    width: 36px;
    height: 56px;
  }
}
@media (max-width: 768px) {
  .method__schema-arrow:hover, .method__schema-arrow:active, .method__schema-arrow:focus {
    background-color: transparent;
  }
  .method__schema-arrow .bootik-arrow__container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .method__schema-arrow .bootik-arrow__line {
    width: 1px;
    height: 56px;
    background-color: #1d1d1b;
    position: absolute;
    left: 50%;
    top: 11px;
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .method__schema-arrow .bootik-arrow__line {
    height: 39px;
    top: 7px;
  }
}
@media (max-width: 768px) {
  .method__schema-arrow .bootik-arrow__arc-left {
    position: absolute;
    width: 18px;
    height: 21px;
    border: 1px solid #1d1d1b;
    border-bottom: none;
    border-left: none;
    border-top-right-radius: 24px;
    bottom: 11px;
    right: 50%;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .method__schema-arrow .bootik-arrow__arc-left {
    width: 12px;
    height: 15px;
    border-top-right-radius: 17px;
    bottom: 7px;
  }
}
@media (max-width: 768px) {
  .method__schema-arrow .bootik-arrow__arc-right {
    position: absolute;
    width: 18px;
    height: 21px;
    border: 1px solid #1d1d1b;
    border-bottom: none;
    border-right: none;
    border-top-left-radius: 24px;
    bottom: 11px;
    left: 50%;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .method__schema-arrow .bootik-arrow__arc-right {
    width: 12px;
    height: 15px;
    border-top-left-radius: 17px;
    bottom: 7px;
  }
}
@media (max-width: 768px) {
  .method__schema-arrow .bootik-arrow__arc-right {
    top: auto;
  }
}

.portfolio-hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: start;
  overflow: hidden;
  padding: 50px;
}
@media (max-width: 768px) {
  .portfolio-hero {
    padding: 25px;
    padding-top: 100px;
    min-height: clamp(21.875rem, 16.36rem + 24.51vw, 28.125rem);
  }
}
.portfolio-hero__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  flex-grow: 1;
  max-width: clamp(15rem, 10.325rem + 20.779vw, 35rem);
}
.portfolio-hero__wrapper p {
  font-family: "Ortica Linear", sans-serif;
  font-size: clamp(0.9rem, 0.76rem + 0.623vw, 1.5rem);
  font-weight: 300;
  line-height: clamp(1rem, 0.79rem + 0.935vw, 1.9rem);
  margin-top: 0.8rem;
}
.portfolio-hero__subtitle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: -55px;
}
@media (max-width: 768px) {
  .portfolio-hero__subtitle {
    gap: 0;
    margin-left: 0;
  }
}
.portfolio-hero__subtitle span {
  font-size: clamp(0.8rem, 0.753rem + 0.208vw, 1rem);
  text-transform: uppercase;
  color: #b0bfbc;
}
.portfolio-hero__separator-arrow {
  width: 33px;
  height: 50px;
  border: 0 solid #b0bfbc;
  border-radius: 25px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
  padding: 0;
}
@media (max-width: 768px) {
  .portfolio-hero__separator-arrow {
    width: 23px;
    height: 35px;
  }
}
.portfolio-hero__separator-arrow:hover, .portfolio-hero__separator-arrow:active, .portfolio-hero__separator-arrow:focus {
  background-color: transparent;
}
.portfolio-hero__separator-arrow .bootik-arrow__container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.portfolio-hero__separator-arrow .bootik-arrow__line {
  width: 1px;
  height: 35px;
  background-color: #b0bfbc;
  position: absolute;
  left: 50%;
  top: 7px;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .portfolio-hero__separator-arrow .bootik-arrow__line {
    height: 25px;
    top: 4px;
  }
}
.portfolio-hero__separator-arrow {
  width: 50px;
  height: 33px;
}
.portfolio-hero__separator-arrow .bootik-arrow__line {
  width: 35px;
  height: 1px;
  top: 50%;
  left: 7px;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .portfolio-hero__separator-arrow .bootik-arrow__line {
    width: 25px;
    left: 4px;
  }
}
.portfolio-hero__separator-arrow .bootik-arrow__arc-left {
  position: absolute;
  width: 13px;
  height: 11px;
  border: 1px solid #b0bfbc;
  border-right: none;
  border-top: none;
  border-bottom-left-radius: 15px;
  bottom: 50%;
  right: 7px;
}
@media (max-width: 768px) {
  .portfolio-hero__separator-arrow .bootik-arrow__arc-left {
    width: 9px;
    height: 8px;
    border-bottom-left-radius: 11px;
    right: 4px;
  }
}
.portfolio-hero__separator-arrow .bootik-arrow__arc-right {
  position: absolute;
  width: 13px;
  height: 11px;
  border: 1px solid #b0bfbc;
  border-right: none;
  border-bottom: none;
  border-top-left-radius: 15px;
  top: 50%;
  right: 7px;
}
@media (max-width: 768px) {
  .portfolio-hero__separator-arrow .bootik-arrow__arc-right {
    width: 9px;
    height: 8px;
    border-top-left-radius: 11px;
    right: 4px;
  }
}
@media (max-width: 768px) {
  .portfolio-hero__separator-arrow {
    display: none;
  }
}
.portfolio-hero__title {
  text-transform: uppercase;
  font-family: "Right Grotesk", sans-serif;
  font-size: clamp(3.43rem, -0.21rem + 16.177vw, 19rem);
  font-weight: 600;
  color: #000;
  letter-spacing: clamp(-2rem, 0.097rem - 1.766vw, -0.3rem);
  margin: -5rem -1.8rem;
}
@media (max-width: 768px) {
  .portfolio-hero__title {
    margin: 0 -0.2rem;
  }
}
.portfolio-hero__shape {
  position: absolute;
  bottom: clamp(-18.75rem, 4.383rem - 19.481vw, 0rem);
  right: clamp(-3.125rem, -4.221rem + 4.87vw, 1.563rem);
  width: clamp(15.625rem, 7.589rem + 35.714vw, 50rem);
  height: calc(clamp(15.625rem, 7.589rem + 35.714vw, 50rem) * 1.03);
  border-radius: 48%/48%;
  background: #ffb71b;
  pointer-events: none;
  z-index: -1;
}
.portfolio-hero .portfolio-scroll-down {
  width: 52px;
  height: 80px;
  border: 2px solid #fff;
  border-radius: 40px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
  padding: 0;
  cursor: pointer;
}
@media (max-width: 768px) {
  .portfolio-hero .portfolio-scroll-down {
    width: 36px;
    height: 56px;
  }
}
.portfolio-hero .portfolio-scroll-down:hover, .portfolio-hero .portfolio-scroll-down:active, .portfolio-hero .portfolio-scroll-down:focus {
  background-color: transparent;
}
.portfolio-hero .portfolio-scroll-down .bootik-arrow__container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.portfolio-hero .portfolio-scroll-down .bootik-arrow__line {
  width: 2px;
  height: 56px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .portfolio-hero .portfolio-scroll-down .bootik-arrow__line {
    height: 39px;
    top: 6px;
  }
}
.portfolio-hero .portfolio-scroll-down:hover {
  transform: translateY(4px);
}
.portfolio-hero .portfolio-scroll-down .bootik-arrow__arc-left {
  position: absolute;
  width: 18px;
  height: 21px;
  border: 2px solid #fff;
  border-bottom: none;
  border-left: none;
  border-top-right-radius: 24px;
  bottom: 10px;
  right: 50%;
}
@media (max-width: 768px) {
  .portfolio-hero .portfolio-scroll-down .bootik-arrow__arc-left {
    width: 12px;
    height: 15px;
    border-top-right-radius: 17px;
    bottom: 6px;
  }
}
.portfolio-hero .portfolio-scroll-down .bootik-arrow__arc-right {
  position: absolute;
  width: 18px;
  height: 21px;
  border: 2px solid #fff;
  border-bottom: none;
  border-right: none;
  border-top-left-radius: 24px;
  bottom: 10px;
  left: 50%;
}
@media (max-width: 768px) {
  .portfolio-hero .portfolio-scroll-down .bootik-arrow__arc-right {
    width: 12px;
    height: 15px;
    border-top-left-radius: 17px;
    bottom: 6px;
  }
}
.portfolio-hero .portfolio-scroll-down {
  position: absolute;
  bottom: 50px;
  right: 47px;
}
@media (max-width: 768px) {
  .portfolio-hero .portfolio-scroll-down {
    display: none;
  }
}

.portfolio {
  display: flex;
  flex-direction: column;
  padding: 50px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .portfolio {
    padding: 25px;
  }
}
.portfolio__filters {
  display: flex;
  justify-content: end;
  margin-bottom: 2rem;
}
.portfolio__filters-categories {
  text-align: right;
  list-style: none;
  line-height: clamp(1.2rem, 1.106rem + 0.416vw, 1.6rem);
  margin-right: 20px;
}
.portfolio__filters-btn {
  font-size: clamp(0.8rem, 0.753rem + 0.208vw, 1rem);
  position: relative;
  padding: 0;
  border: none;
  color: inherit;
  transition: none;
}
.portfolio__filters-btn:hover:not(.portfolio__filters-btn.is-active) {
  background: none;
  color: inherit;
  text-decoration: underline;
}
.portfolio__filters-btn:focus, .portfolio__filters-btn:focus-visible, .portfolio__filters-btn:active {
  background: none;
  color: inherit;
}
.portfolio__filters-btn::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1px solid #000;
  border-radius: 50%;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
}
.portfolio__filters-btn.is-active {
  font-weight: 600;
  cursor: auto;
  pointer-events: none;
}
.portfolio__filters-btn.is-active::after {
  content: "";
  background-color: #000;
}
.portfolio__circle {
  position: absolute;
  top: 420px;
  left: 15%;
  width: 530px;
  height: 540.6px;
  border-radius: 47%/47%;
  border: 0.35rem solid #b0bfbc;
  pointer-events: none;
  z-index: -1;
}
@media (max-width: 768px) {
  .portfolio__circle {
    display: none;
  }
}
.portfolio__row {
  display: flex;
  gap: 2rem;
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .portfolio__row {
    flex-direction: column;
    margin-bottom: 3rem;
  }
}
.portfolio__row--right {
  justify-content: end;
  margin-bottom: 25rem;
}
@media (max-width: 768px) {
  .portfolio__row--right {
    margin-bottom: 5rem;
  }
}
.portfolio__row--scroll .portfolio__swiper {
  width: 100%;
}
.portfolio__row--scroll .swiper-slide {
  flex-shrink: 0;
  max-width: 40rem;
  transition: all 0.5s ease;
}
.portfolio__row--scroll .portfolio__card .swiper-slide.is-featured {
  max-width: 60rem;
}
.portfolio__row--scroll .portfolio__card-image {
  max-width: 100%;
}
.portfolio__row--center {
  justify-content: center;
  position: relative;
}
.portfolio__row--center .portfolio__card-image-wrapper {
  display: flex;
}
.portfolio__row--center .portfolio__card-image {
  display: block;
  max-width: 680px;
  aspect-ratio: 4/5;
  object-fit: cover;
}
@media (max-width: 768px) {
  .portfolio__row--center .portfolio__card-image {
    max-width: 50%;
  }
}
.portfolio__row--center .portfolio__card-meta {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}
.portfolio__row--center .portfolio__row-circle {
  position: absolute;
  top: 0;
  right: -230px;
  width: 300px;
  height: 306px;
  border-radius: 47%/47%;
  border: 0.35rem solid #b0bfbc;
  pointer-events: none;
  z-index: -1;
}
.portfolio__row--center .portfolio__row-circle-orange {
  position: absolute;
  bottom: -200px;
  right: 100px;
  width: 600px;
  height: 360px;
  border-radius: 500px;
  border: 0.3rem solid #ffb71b;
  pointer-events: none;
  z-index: -1;
}
@media (max-width: 768px) {
  .portfolio__row--center .portfolio__row-circle-orange {
    display: none;
  }
}
.portfolio__row--wide {
  justify-content: end;
  gap: 0;
  min-height: 1800px;
  position: relative;
}
@media (max-width: 768px) {
  .portfolio__row--wide {
    min-height: auto;
    gap: 3rem;
  }
}
.portfolio__row--wide .portfolio__row-circle-orange {
  position: absolute;
  top: -300px;
  left: -800px;
  width: 1500px;
  height: 2400px;
  border-radius: 1500px;
  border: 0.3rem solid #ffb71b;
  pointer-events: none;
  z-index: -1;
}
.portfolio__card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  transition: opacity 0.5s ease, transform 0.5s ease;
  opacity: 1;
  transform: scale(1);
}
.portfolio__card.is-hiding {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
}
.portfolio__card-image {
  display: block;
  max-width: 600px;
  aspect-ratio: 9/6;
  object-fit: cover;
}
@media (max-width: 768px) {
  .portfolio__card-image {
    max-width: 100%;
  }
}
.portfolio__card-meta {
  font-size: clamp(1rem, 0.93rem + 0.312vw, 1.3rem);
}
.portfolio__card-meta span {
  position: relative;
  font-weight: 700;
  padding-right: 0.8rem;
}
.portfolio__card-meta span::after {
  content: "/";
  position: absolute;
  right: 0;
}
.portfolio__card-top-img {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(35%, -40%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .portfolio__card-top-img {
    max-width: 50%;
  }
}
.portfolio__card-bottom-img {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-75%, 40%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .portfolio__card-bottom-img {
    max-width: 30%;
    transform: translate(-45%, 40%);
  }
}
.portfolio__card--right .portfolio__card-image {
  width: 1175px;
  max-width: 1200px;
}
@media (max-width: 768px) {
  .portfolio__card--right .portfolio__card-image {
    width: 100%;
    max-width: 100%;
  }
}
.portfolio__card--right .portfolio__card-meta {
  display: flex;
  justify-content: end;
  gap: 0.8rem;
}
.portfolio__card--full .portfolio__card-image {
  max-width: 100%;
  width: 100%;
  aspect-ratio: 3/2;
}
.portfolio__wrapper {
  display: flex;
  justify-content: end;
  min-height: 100%;
  width: 100%;
}
.portfolio__wrapper .portfolio__card {
  align-self: end;
}
.portfolio__wrapper .portfolio__card--right {
  align-self: start;
}
.portfolio__wrapper .portfolio__card-image {
  max-width: 100%;
  width: 100%;
  aspect-ratio: 7/11;
}
.portfolio__wrapper .portfolio__card-image-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.portfolio__wrapper .portfolio__card-image-wrapper .portfolio__card-image {
  aspect-ratio: 8/5;
  max-width: 730px;
}

.blog-hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: start;
  overflow: hidden;
  padding: 50px;
}
@media (max-width: 768px) {
  .blog-hero {
    min-height: 65svh;
    padding: 25px;
  }
}
.blog-hero__pill {
  background-color: #ffb71b;
  font-size: clamp(0.75rem, 0.692rem + 0.26vw, 1rem);
  padding: clamp(0.125rem, 0.081rem + 0.195vw, 0.313rem) 10px;
  border-radius: 50px;
  text-transform: uppercase;
  color: white;
}
.blog-hero__title {
  font-family: "Right Grotesk", sans-serif;
  font-size: clamp(2.8rem, 1.584rem + 5.403vw, 8rem);
  font-weight: 400;
  line-height: clamp(3rem, 2.065rem + 4.156vw, 7rem);
  color: #000;
  margin: 0;
}
.blog-hero__shape-rotator {
  position: absolute;
  top: clamp(5rem, 4.708rem + 1.299vw, 6.25rem);
  right: clamp(-5rem, -4.708rem - 1.299vw, -6.25rem);
  width: clamp(15.625rem, 11.534rem + 18.182vw, 33.125rem);
  height: calc(clamp(15.625rem, 11.534rem + 18.182vw, 33.125rem) * 1.03);
  display: grid;
  place-items: center;
  pointer-events: none;
}
.blog-hero__shape {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(12.5rem, 8.847rem + 16.234vw, 28.125rem);
  height: calc(clamp(12.5rem, 8.847rem + 16.234vw, 28.125rem) * 1.03);
  border-radius: 48%/48%;
  background: #b0bfbc;
  transform: translate(-50%, -50%);
  pointer-events: auto;
}
.blog-hero__spinning-text {
  position: absolute;
  inset: 0;
  animation: spin 50s linear infinite;
  will-change: transform;
}
.blog-hero__spinning-text p {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  font-family: "Right Grotesk", sans-serif;
  font-size: clamp(0.9rem, 0.713rem + 0.831vw, 1.7rem);
  font-weight: 500;
}
.blog-hero__spinning-text span {
  position: absolute;
  top: 0;
  left: 50%;
  transform-origin: 0 clamp(8.125rem, 6.036rem + 9.286vw, 17.063rem);
  white-space: pre;
}
.blog-hero .blog-scroll-down {
  width: 52px;
  height: 80px;
  border: 2px solid #ffb71b;
  border-radius: 40px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
  padding: 0;
  cursor: pointer;
}
@media (max-width: 768px) {
  .blog-hero .blog-scroll-down {
    width: 36px;
    height: 56px;
  }
}
.blog-hero .blog-scroll-down:hover, .blog-hero .blog-scroll-down:active, .blog-hero .blog-scroll-down:focus {
  background-color: transparent;
}
.blog-hero .blog-scroll-down .bootik-arrow__container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.blog-hero .blog-scroll-down .bootik-arrow__line {
  width: 2px;
  height: 56px;
  background-color: #ffb71b;
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .blog-hero .blog-scroll-down .bootik-arrow__line {
    height: 39px;
    top: 6px;
  }
}
.blog-hero .blog-scroll-down:hover {
  transform: translateY(4px);
}
.blog-hero .blog-scroll-down .bootik-arrow__arc-left {
  position: absolute;
  width: 18px;
  height: 21px;
  border: 2px solid #ffb71b;
  border-bottom: none;
  border-left: none;
  border-top-right-radius: 24px;
  bottom: 10px;
  right: 50%;
}
@media (max-width: 768px) {
  .blog-hero .blog-scroll-down .bootik-arrow__arc-left {
    width: 12px;
    height: 15px;
    border-top-right-radius: 17px;
    bottom: 6px;
  }
}
.blog-hero .blog-scroll-down .bootik-arrow__arc-right {
  position: absolute;
  width: 18px;
  height: 21px;
  border: 2px solid #ffb71b;
  border-bottom: none;
  border-right: none;
  border-top-left-radius: 24px;
  bottom: 10px;
  left: 50%;
}
@media (max-width: 768px) {
  .blog-hero .blog-scroll-down .bootik-arrow__arc-right {
    width: 12px;
    height: 15px;
    border-top-left-radius: 17px;
    bottom: 6px;
  }
}
.blog-hero .blog-scroll-down {
  position: absolute;
  bottom: 50px;
  right: 47px;
}
@media (max-width: 768px) {
  .blog-hero .blog-scroll-down {
    display: none;
  }
}

.blog-featured {
  background: linear-gradient(to bottom, #fff 0, rgba(255, 255, 255, 0) 15px), linear-gradient(to top, #fff 0, rgba(255, 255, 255, 0) 15px), #ffb71b;
  padding: 50px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .blog-featured {
    padding: 25px;
  }
}
.blog-featured__title {
  font-family: "Ortica Linear", sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: white;
  line-height: clamp(2.1rem, 2.006rem + 0.416vw, 2.5rem);
}
.blog-featured__title span {
  text-transform: capitalize;
  font-size: clamp(2.6rem, 2.156rem + 1.974vw, 4.5rem);
  margin-left: -5px;
}
.blog-featured__wrapper {
  display: flex;
  gap: 40px;
  position: relative;
  margin: 50px 0 0 auto;
  width: 90%;
  padding: 2px 0 0 2px;
}
@media (max-width: 768px) {
  .blog-featured__wrapper {
    width: 100%;
    gap: 20px;
    margin-top: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .blog-featured__wrapper::-webkit-scrollbar {
    display: none;
    height: 0;
  }
}
.blog-featured__card {
  display: flex;
  flex-direction: column;
  width: min-content;
}
@media (max-width: 768px) {
  .blog-featured__card {
    scroll-snap-align: start;
  }
}
a:hover .blog-featured__card-image, a:focus-visible .blog-featured__card-image {
  outline: 2px solid #000;
}
.blog-featured__card-image {
  width: clamp(18.75rem, 14.367rem + 19.481vw, 37.5rem);
  margin: 0;
}
.blog-featured__card-image img {
  display: block;
  width: 100%;
  aspect-ratio: 8/5;
  object-fit: cover;
  filter: grayscale(100%);
}
.blog-featured__card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: clamp(0.2rem, 0.13rem + 0.312vw, 0.5rem) 0;
}
.blog-featured__card-meta span, .blog-featured__card-meta time {
  font-size: clamp(0.7rem, 0.677rem + 0.104vw, 0.8rem);
  color: white;
}
.blog-featured__card-meta time {
  position: relative;
  padding-left: 0.3rem;
}
@media (max-width: 768px) {
  .blog-featured__card-meta time {
    display: none;
  }
}
.blog-featured__card-meta time::before {
  content: "/";
  position: absolute;
  left: 0;
}
.blog-featured__card-title {
  margin: 0;
}
.blog-featured__card-title a {
  display: block;
  font-weight: 700;
  font-size: clamp(0.9rem, 0.83rem + 0.312vw, 1.2rem);
  color: white;
  text-decoration: none;
}
.blog-featured__card-title a:hover, .blog-featured__card-title a:active {
  color: white;
  text-decoration: underline;
}

.blog-posts {
  background: white;
  padding: 50px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .blog-posts {
    padding: 25px;
  }
}
.blog-posts__title {
  text-align: center;
  font-family: "Ortica Linear", sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: clamp(2.2rem, 2.013rem + 0.831vw, 3rem);
  margin-top: 30px;
}
.blog-posts__title span {
  font-family: "Right Grotesk", sans-serif;
  font-size: clamp(3rem, 2.532rem + 2.078vw, 5rem);
  font-weight: 500;
  text-transform: capitalize;
}
.blog-posts__header {
  display: flex;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .blog-posts__header {
    flex-direction: column;
    margin-top: 60px;
  }
}
.blog-posts__header-card {
  display: flex;
  flex-direction: column;
  width: 70%;
}
@media (max-width: 768px) {
  .blog-posts__header-card {
    width: 100%;
    padding-right: 0;
    align-items: start;
    order: 2;
  }
}
a:hover .blog-posts__header-card-image img, a:focus-visible .blog-posts__header-card-image img {
  filter: grayscale(0%);
}
a:hover .blog-posts__header-card-text, a:focus-visible .blog-posts__header-card-text {
  opacity: 1;
}
@media (max-width: 768px) {
  a:hover .blog-posts__header-card-text, a:focus-visible .blog-posts__header-card-text {
    opacity: 0;
  }
}
.blog-posts__header-card-image {
  position: relative;
  border: clamp(0.125rem, 0.067rem + 0.26vw, 0.375rem) solid #ffb71b;
}
.blog-posts__header-card-image img {
  display: block;
  width: 100%;
  aspect-ratio: 8/5;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.blog-posts__header-card-badge {
  position: absolute;
  top: clamp(-1.8rem, -0.69rem - 0.935vw, -0.9rem);
  left: 5%;
  text-transform: uppercase;
  color: white;
  padding: 0px 15px;
  border-radius: 30px;
  background-color: #ffb71b;
  font-size: clamp(1rem, 0.766rem + 1.039vw, 2rem);
}
.blog-posts__header-card-text {
  opacity: 0;
  position: absolute;
  bottom: 0;
  right: 0;
  color: white;
  padding: 2rem;
  background-color: #1d1d1b;
  font-size: 0.8rem;
  text-align: center;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  transition: opacity 0.3s ease;
}
@media (max-width: 768px) {
  .blog-posts__header-card-text {
    display: none;
  }
}
.blog-posts__header-card-text p {
  margin: 0;
}
.blog-posts__header-card-meta {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
}
.blog-posts__header-card-meta span, .blog-posts__header-card-meta time {
  font-size: clamp(0.7rem, 0.677rem + 0.104vw, 0.8rem);
}
.blog-posts__header-card-meta time {
  position: relative;
  padding-left: 0.3rem;
}
.blog-posts__header-card-meta time::before {
  content: "/";
  position: absolute;
  left: 0;
}
.blog-posts__header-card-title {
  margin: 0;
}
.blog-posts__header-card-title a {
  display: block;
  font-weight: 700;
  font-size: clamp(1.2rem, 1.013rem + 0.831vw, 2rem);
  color: black;
  text-decoration: none;
}
.blog-posts__header-card-title a:hover, .blog-posts__header-card-title a:focus-visible {
  color: black;
  text-decoration: underline;
}
.blog-posts__header-filter {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: end;
  padding-right: 40px;
}
@media (max-width: 768px) {
  .blog-posts__header-filter {
    width: 100%;
    padding: 0 0 0 25px;
    align-items: start;
    margin-bottom: 80px;
    order: 1;
  }
}
.blog-posts__header-filter-title {
  display: inline-block;
  font-size: clamp(1rem, 0.953rem + 0.208vw, 1.2rem);
  font-weight: 600;
  text-decoration: underline;
  position: relative;
}
.blog-posts__header-filter-title::after {
  content: "";
  width: 20px;
  height: 20px;
  background-color: #ffb71b;
  border-radius: 50%;
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .blog-posts__header-filter-title::after {
    left: -25px;
    width: 12px;
    height: 12px;
  }
}
.blog-posts__header-filter-categories {
  text-align: right;
  list-style: none;
  line-height: 1.8rem;
}
@media (max-width: 768px) {
  .blog-posts__header-filter-categories {
    display: flex;
    padding: 1rem 0 0 0;
    gap: 0.8rem;
    flex-wrap: wrap;
    line-height: 0.5rem;
  }
}
.blog-posts__header-filter-btn {
  padding: 0;
  border: none;
  color: inherit;
  transition: none;
  font-size: clamp(0.8rem, 0.706rem + 0.416vw, 1.2rem);
}
.blog-posts__header-filter-btn:hover:not(.blog-posts__header-filter-btn.is-active) {
  background: none;
  color: inherit;
  text-decoration: underline;
}
.blog-posts__header-filter-btn:focus, .blog-posts__header-filter-btn:focus-visible, .blog-posts__header-filter-btn:active {
  background: none;
  color: inherit;
}
.blog-posts__header-filter-btn.is-active {
  background: none;
  color: #ffb71b;
  font-weight: 600;
  cursor: auto;
  pointer-events: none;
}
.blog-posts__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 80px;
  position: relative;
}
@media (max-width: 768px) {
  .blog-posts__wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }
}
.blog-posts__card {
  display: flex;
  flex-direction: column;
  isolation: isolate;
}
a:hover .blog-posts__card-image img, a:focus-visible .blog-posts__card-image img {
  filter: grayscale(0%);
}
a:hover .blog-posts__card-text, a:focus-visible .blog-posts__card-text {
  opacity: 1;
}
@media (max-width: 768px) {
  a:hover .blog-posts__card-text, a:focus-visible .blog-posts__card-text {
    opacity: 0;
  }
}
.blog-posts__card-image {
  position: relative;
  overflow: hidden;
}
.blog-posts__card-image img {
  display: block;
  width: 100%;
  aspect-ratio: 6/8;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.blog-posts__card-text {
  opacity: 0;
  position: absolute;
  bottom: 0;
  right: 0;
  color: white;
  padding: 2rem;
  background-color: #1d1d1b;
  font-size: 0.8rem;
  text-align: center;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  transition: opacity 0.3s ease;
}
.blog-posts__card-text p {
  margin: 0;
}
.blog-posts__card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
}
.blog-posts__card-meta span, .blog-posts__card-meta time {
  font-size: clamp(0.7rem, 0.677rem + 0.104vw, 0.8rem);
}
.blog-posts__card-meta time {
  position: relative;
  padding-left: 0.3rem;
}
.blog-posts__card-meta time::before {
  content: "/";
  position: absolute;
  left: 0;
}
.blog-posts__card-title {
  margin: 0 0 30px;
}
.blog-posts__card-title a {
  display: block;
  font-weight: 700;
  font-size: clamp(1.2rem, 1.013rem + 0.831vw, 2rem);
  color: black;
  text-decoration: none;
}
.blog-posts__card-title a:hover, .blog-posts__card-title a:focus-visible {
  color: black;
  text-decoration: underline;
}
.blog-posts__shape-grey {
  position: absolute;
  top: calc(50% - 40px);
  right: -300px;
  width: 600px;
  height: 500px;
  border-radius: 500px;
  background: #b0bfbc;
  transform: translate(0%, -50%);
  mix-blend-mode: multiply;
  pointer-events: none;
}
@media (max-width: 768px) {
  .blog-posts__shape-grey {
    opacity: 0;
  }
}
.blog-posts__shape-orange {
  position: absolute;
  top: -5%;
  left: -350px;
  width: 600px;
  height: 618px;
  border-radius: 48%/48%;
  background: #ffb71b;
  transform: translate(0%, -50%);
  mix-blend-mode: multiply;
  pointer-events: none;
}
@media (max-width: 768px) {
  .blog-posts__shape-orange {
    opacity: 0;
  }
}
.blog-posts .no-results {
  grid-column: 1/-1;
  opacity: 0.7;
}
.blog-posts__pagination {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}
.blog-posts__pagination-btn {
  border-radius: 20px !important;
  border-color: #b0bfbc !important;
  background: none !important;
  padding: 0.5rem 1.5rem !important;
  cursor: pointer;
  transition: none !important;
  color: inherit !important;
}
.blog-posts__pagination-btn:hover {
  background: none;
  color: #b0bfbc !important;
}
.blog-posts__pagination-num:hover {
  background: none;
  color: #ffb71b !important;
}
.blog-posts__pagination-btn[disabled] {
  opacity: 0.5;
  color: inherit !important;
  cursor: auto;
  position: none;
}
.blog-posts__pagination-num {
  padding: 0;
  border-radius: 50% !important;
  border-color: #ffb71b !important;
  background: none !important;
  transition: none !important;
  color: inherit !important;
}
.blog-posts__pagination-num.is-active {
  color: #ffb71b !important;
  font-weight: 700;
  pointer-events: none;
}
.blog-posts__pagination-dots {
  padding: 0 0.25rem;
}

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

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