/*!***************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./css/style.scss ***!
  \***************************************************************************************************************************************************************************************************************************************/
path.spin {
  transform-box: fill-box;
  transform-origin: center;
  animation-name: spin;
  animation-duration: 8000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
path.spin-left {
  transform-box: fill-box;
  transform-origin: center;
  animation-name: spin-left;
  animation-duration: 8000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes spin-left {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.btn {
  padding: 1.2em 1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-align: center;
  border-radius: 50%;
  font-weight: 600;
  font-size: clamp(1.3125rem, -0.75rem + 2.75vw, 2rem);
  line-height: 1;
}
.btn.btn-nav {
  color: var(--btn-color);
  border: 2px solid var(--btn-color);
}
.btn.btn-nav:hover {
  background: var(--btn-color);
  color: #FFF1F5;
}
.btn.btn-red {
  color: #FFF1F5;
  background: #EA023D;
}
.btn.btn-red:hover {
  background: #1EA9EA;
}
.btn.btn-butter {
  color: #06124C;
  background: #FFE482;
}
.btn.btn-butter:hover {
  background: #FFD22E;
}
.btn-signup {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  color: #FFF1F5;
  position: relative;
  text-decoration: none;
  font-size: 21px;
  font-weight: 400;
  padding: 0.75em 1em 0.75em 1em;
  transition: all 0.3s ease;
  white-space: nowrap;
}
@media (min-width: 576px) {
  .btn-signup {
    gap: 2em;
    padding: 0.75em 1.25em 0.75em 1.5em;
  }
}
.btn-signup::after {
  content: "";
  display: block;
  width: 3em;
  height: 1.5em;
  background: url(images/arrow.1b49ef78.png) center/contain no-repeat;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.btn-signup:hover::after {
  transform: translateX(10px);
}
.btn-signup.blue {
  background: #1126C1;
}
.btn-signup.transparent {
  background: transparent;
  border: 2px solid #FFF1F5;
}
.join-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 18, 76, 0.75);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.join-modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.join-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 40px));
  z-index: 9999;
  background: #1126C1;
  border: 2px solid #FFF1F5;
  border-radius: 12px;
  padding: 2rem 2rem 2.5rem;
  width: min(600px, 100vw - 2rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.join-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}
.join-modal .join-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #FFF1F5;
  font-size: 2.5rem;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  transition: color 0.2s ease;
}
.join-modal .join-modal__close:hover {
  color: #FFCAF0;
}
.join-modal .join-modal__heading {
  color: #FFF1F5;
  font-family: "Ragata", "Bowlby One", sans-serif;
  font-size: clamp(1.75rem, 1.25rem + 1.5vw, 2.5rem);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-align: center;
}
.join-modal .join-modal__sub {
  color: #FFCAF0;
  font-size: 18px;
  margin-bottom: 1.5rem;
  text-align: center;
}
.join-modal .gform_wrapper .gform_fields {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.join-modal .gform_wrapper .gfield {
  margin: 0;
}
.join-modal .gform_wrapper .gfield_label {
  color: #FFF1F5;
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}
.join-modal .gform_wrapper input[type=email],
.join-modal .gform_wrapper input[type=text] {
  width: 100%;
  background: rgba(255, 241, 245, 0.3);
  border: 2px solid #fff1f5;
  border-radius: 8px;
  color: #FFF1F5;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  padding: 0.75em 1em;
  transition: border-color 0.2s ease;
}
.join-modal .gform_wrapper input[type=email]::-moz-placeholder, .join-modal .gform_wrapper input[type=text]::-moz-placeholder {
  color: #fff1f5;
}
.join-modal .gform_wrapper input[type=email]::placeholder,
.join-modal .gform_wrapper input[type=text]::placeholder {
  color: #fff1f5;
}
.join-modal .gform_wrapper input[type=email]:focus,
.join-modal .gform_wrapper input[type=text]:focus {
  outline: none;
  border-color: #1EA9EA;
}
.join-modal .gform_wrapper .gform_footer,
.join-modal .gform_wrapper .gform_page_footer {
  margin-top: 1rem;
}
.join-modal .gform_wrapper input[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #FFF1F5;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  border: 2px solid #FFF1F5;
  border-radius: 8px;
  padding: 0.85em 2em;
  cursor: pointer;
  width: 200px;
  transition: background 0.25s ease;
}
.join-modal .gform_wrapper input[type=submit]:hover {
  background: #06124C;
}
.join-modal .gform_wrapper .gform_confirmation_message {
  color: #FFCAF0;
  font-size: 1rem;
  text-align: center;
  padding: 1rem 0;
}
.join-modal .gform_wrapper .gform_title {
  display: none;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
html {
  overflow-x: hidden;
  scrollbar-gutter: stable;
  background-color: #1126C1;
}
html,
body {
  line-height: 1.2;
  font-weight: 300;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
}
p,
a,
strong,
b,
span {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
}
p {
  margin-bottom: 0.5em;
}
p.is-nbsp {
  margin-bottom: 0;
}
li {
  font-size: 1.2em;
  line-height: 1.5;
}
body {
  font-family: "Outfit", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  color: #06124C;
  background: #FFF1F5;
  font-size: clamp(1.125rem, 0.9444rem + 0.7407vw, 1.5rem);
}
h1 {
  font-size: clamp(3.375rem, 1.8843rem + 6.1157vw, 8rem);
  line-height: 1.2;
  font-family: "Ragata", "Bowlby One", sans-serif;
}
h2 {
  font-size: clamp(3rem, 2.0331rem + 3.9669vw, 6rem);
  line-height: 1.2;
  font-family: "Ragata", "Bowlby One", sans-serif;
}
h3 {
  font-size: clamp(2.375rem, 1.713rem + 2.716vw, 3.75rem);
  line-height: 1;
  font-family: "Ragata", "Bowlby One", sans-serif;
}
h4 {
  font-size: clamp(2rem, 1.9398rem + 0.2469vw, 2.125rem);
  line-height: 1.3;
  font-family: "Ragata", "Bowlby One", sans-serif;
}
.svg-wrapper.has-hover svg .hover {
  fill: var(--default-color);
  transition: fill 0.3s ease;
}
.svg-wrapper.has-hover svg:hover .hover {
  fill: var(--hover-color);
}
.text-highlight {
  background-size: auto 100%;
  background-repeat: repeat-x;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  border-radius: 10px;
  font-family: inherit;
}
.text-highlight.yellow {
  background-image: url("https://www.droptheory.co/wp-content/uploads/2026/03/line.svg");
}
.text-highlight.blue {
  background-image: url("https://www.droptheory.co/wp-content/uploads/2026/03/blue-highlight.svg");
}
.text-underline {
  background-image: url("https://www.droptheory.co/wp-content/uploads/2026/03/underline.svg");
  background-size: auto 0.3em;
  background-repeat: repeat-x;
  background-position: bottom left;
  padding-bottom: 0.1em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  font-family: inherit;
}
.candy-red-text {
  color: #EA023D;
  font-family: inherit;
}
.blueberry-text {
  color: #1126C1;
  font-family: inherit;
}
.bubblegum-text {
  color: #FFCAF0;
  font-family: inherit;
}
.butter-text {
  color: #FFE482;
  font-family: inherit;
}
.marshmallow-text {
  color: #FFF1F5;
  font-family: inherit;
}
.mayluna-font {
  font-family: "Mayluna", "Sarina", sans-serif;
  font-size: 1.4em;
  line-height: 1;
}
.ragata-font {
  font-family: "Ragata", "Bowlby One", sans-serif;
  font-size: inherit;
}
.marshmallow-circle {
  border-radius: 45%;
  outline: 2px solid #FFF1F5;
  outline-offset: 10px;
  font-family: inherit;
  font-size: inherit;
  white-space: nowrap;
}
.bubblegum-circle {
  border-radius: 45%;
  outline: 2px solid #FFCAF0;
  outline-offset: 10px;
  font-family: inherit;
  font-size: inherit;
  white-space: nowrap;
}
.text-underline {
  background-image: url(https://www.droptheory.co/wp-content/uploads/2026/03/underline.svg);
  background-size: auto 0.3em;
  background-repeat: repeat-x;
  background-position: bottom left;
  padding-bottom: 0.1em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.solid {
  background-color: var(--bg-color, #FFF1F5);
}
.gradient {
  background: linear-gradient(to bottom, var(--bg-color), var(--gradient) 100%);
}
.tile {
  background-color: var(--bg-color, #FFF1F5);
  /* Defines the size of the repeating pattern (cell size) */
  background-size: 190px 190px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.47) 5px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.47) 5px, transparent 1px);
}
.checker-fade {
  --square-size: 240px;
  --color-a: #fff;
  --color-b: var(--gradient);
  background: linear-gradient(to bottom, var(--bg-color) 40%, transparent 100%), conic-gradient(var(--color-a) 90deg, var(--color-b) 90deg 180deg, var(--color-a) 180deg 270deg, var(--color-b) 270deg);
  background-size: 100% 100%, var(--square-size) var(--square-size);
}
.checkered {
  --square-size: 240px;
  /* Define the size of the squares */
  --color-a: #fff;
  /* First color (e.g., white) */
  --color-b: var(--bg-color, $marshmallow);
  /* Second color (e.g., light gray) */
  background: conic-gradient(var(--color-a) 90deg, var(--color-b) 90deg 180deg, var(--color-a) 180deg 270deg, var(--color-b) 270deg);
  background-size: var(--square-size) var(--square-size);
}
.font-36 {
  font-size: clamp(1.5rem, 1.1389rem + 1.4815vw, 2.25rem);
  line-height: 1;
}
.font-500 {
  font-weight: 500;
}
@media (max-width: 576px) {
  .mobile-padding {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.gform_wrapper #gform_1 .gform_fields .gfield--type-text input,
.gform_wrapper #gform_1 .gform_fields .gfield--type-email input {
  color: #fff;
  background-color: transparent;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 2px solid #FFCAF0;
}
.gform_wrapper #gform_1 .gform_fields .gfield--type-text input::-moz-placeholder, .gform_wrapper #gform_1 .gform_fields .gfield--type-email input::-moz-placeholder {
  color: #FFCAF0;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
}
.gform_wrapper #gform_1 .gform_fields .gfield--type-text input::placeholder,
.gform_wrapper #gform_1 .gform_fields .gfield--type-email input::placeholder {
  color: #FFCAF0;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
}
@media (min-width: 992px) {
  .gform_wrapper #gform_1 .gform_fields {
    display: flex !important;
    flex-wrap: wrap;
  }
  .gform_wrapper #gform_1 .gform_fields .gfield--type-text,
  .gform_wrapper #gform_1 .gform_fields .gfield--type-email {
    width: 32%;
  }
}
.gform_confirmation_wrapper {
  border: 1px solid #FFCAF0;
  border-radius: 10px;
  padding: 40px;
  color: #fff;
  font-size: 24px;
}
.gform_footer {
  display: flex !important;
  width: -moz-fit-content;
  width: fit-content;
}
.gform_fields #field_submit,
.gform_footer {
  position: relative !important;
}
.gform_fields #field_submit {
  width: 110px !important;
}
.gform_fields #field_submit input,
.gform_footer input {
  cursor: pointer !important;
  display: inline-block !important;
  position: relative !important;
  position: relative;
  background-color: transparent;
  border: 1px solid #FFCAF0;
  color: #fff;
  font-size: 18px;
  padding-left: 20px;
  width: 200px;
  height: 60px;
  text-align: left;
  transition: all 0.5s !important;
  margin-bottom: 0 !important;
}
.gform_footer::after {
  content: "";
  position: absolute !important;
  left: 120px !important;
  top: 50% !important;
  transition: 0.5s !important;
  color: #fff !important;
  transform: translateY(-50%);
  margin: 0;
  width: 55px;
  height: 40px;
  background-image: url(images/arrow.1b49ef78.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  pointer-events: none;
}
.gform_footer:hover:after {
  left: 130px !important;
}
/* Main Nav Styles */
.site-header .nav-logo {
  width: 100%;
  display: flex;
  justify-content: center;
}
.site-header .nav-logo svg {
  width: 100%;
}
/* Top Nav */
.top-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 0 12px;
}
.top-nav .tag,
.top-nav .button {
  display: flex;
  justify-content: center;
}
.top-nav .tag {
  font-size: 15px;
}
.top-nav .tag span {
  font-weight: 500;
  font-size: inherit;
}
.top-nav .nav-logo-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: -15px;
}
.top-nav .nav-logo-wrapper:hover .nav-logo.default {
  opacity: 0;
}
.top-nav .nav-logo-wrapper:hover .nav-logo.hover {
  opacity: 1;
}
.top-nav .nav-logo.default {
  opacity: 1;
  transition: opacity 0.6s ease;
}
.top-nav .nav-logo.hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}
@media (max-width: 1199px) {
  .site-header {
    border-bottom: 2px solid #06124C;
  }
  .site-header .tag {
    text-align: center;
    font-size: 16px;
    padding-bottom: 20px;
  }
  .site-header .nav-logo {
    max-width: 120px;
    height: 85px;
  }
  .site-header .nav-logo svg {
    height: 100%;
    width: 100%;
  }
  .mobile-nav {
    position: relative;
  }
  .mobile-nav .mobile-nav-bar {
    padding: 12px 0;
  }
  .mobile-nav .navbar-toggler-icon {
    height: 2.5em;
    width: 2.5em;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22203%22%20height%3D%22212%22%20viewBox%3D%220%200%20203%20212%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M94.2442%204.46486C94.8712%20-1.35924%20103.279%20-1.54206%20104.159%204.24926L111.889%2055.1405C112.522%2059.3079%20117.711%2060.8701%20120.539%2057.7447L155.079%2019.5785C159.01%2015.2353%20165.92%2020.0294%20163.227%2025.2318L139.568%2070.9472C137.63%2074.6908%20140.91%2079.0047%20145.036%2078.1387L195.412%2067.5638C201.145%2066.3604%20203.917%2074.3003%20198.681%2076.9265L152.67%20100.004C148.902%20101.894%20149.02%20107.312%20152.866%20109.036L199.838%20130.092C205.183%20132.488%20202.759%20140.541%20196.979%20139.588L146.19%20131.213C142.031%20130.528%20138.942%20134.98%20141.04%20138.636L166.665%20183.279C169.581%20188.36%20162.886%20193.45%20158.77%20189.281L122.604%20152.653C119.642%20149.654%20114.526%20151.44%20114.074%20155.631L108.564%20206.81C107.937%20212.634%2099.5294%20212.817%2098.6498%20207.026L90.9197%20156.135C90.2867%20151.967%2085.0976%20150.405%2082.2692%20153.53L47.7291%20191.697C43.7985%20196.04%2036.8889%20191.246%2039.5813%20186.043L63.2407%20140.328C65.1781%20136.584%2061.8983%20132.27%2057.7729%20133.136L7.39591%20143.711C1.6631%20144.915%20-1.10895%20136.975%204.12709%20134.349L50.1388%20111.271C53.9067%20109.381%2053.7888%20103.963%2049.9424%20102.239L2.97073%2081.1831C-2.37455%2078.787%200.0497442%2070.7341%205.82946%2071.6872L56.6186%2080.0617C60.7777%2080.7475%2063.8669%2076.2951%2061.7685%2072.6393L36.1438%2027.9957C33.2278%2022.9154%2039.9224%2017.8254%2044.0381%2021.9937L80.205%2058.6219C83.1666%2061.6214%2088.2829%2059.8351%2088.7341%2055.6441L94.2442%204.46486Z%22%20fill%3D%22%23EA023D%22%20fill-opacity%3D%220.67%22%20style%3D%22mix-blend-mode%3Aplus-darker%22%2F%3E%3C%2Fsvg%3E");
  }
  .mobile-nav .menu-text {
    color: #EA023D;
  }
  .mobile-nav .navbar-collapse {
    position: absolute;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    background-color: #FFF1F5;
    border-top: 2px solid #06124C;
    display: block !important;
    clip-path: inset(0 0 100% 100%);
    pointer-events: none;
    transition: clip-path 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .mobile-nav .navbar-collapse.show {
    clip-path: inset(0 0 0 0);
    pointer-events: auto;
  }
  .mobile-nav .navbar-collapse .mobile-nav-dropdown {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
  }
  .mobile-nav .navbar-collapse .mobile-nav-dropdown .navbar-nav .nav-item {
    text-align: center;
  }
  .mobile-nav .navbar-collapse .mobile-nav-dropdown .navbar-nav .nav-item a {
    font-size: 28px;
    font-weight: 500;
  }
}
/* Main Nav */
@media (min-width: 1200px) {
  .tag svg {
    margin: 0 10px;
  }
  .nav-logo {
    width: 100%;
  }
  .navbar {
    padding-top: 0;
    padding-bottom: 0;
  }
  .navbar .menu-main-nav-container {
    width: 100%;
  }
  .navbar .menu-main-nav-container .nav-item {
    text-align: center;
    border: 2px solid #06124C;
    border-left: none;
    text-transform: uppercase;
    color: #06124C;
  }
  .navbar .menu-main-nav-container .nav-item a {
    color: #06124C;
    padding: 5px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    padding: 10px;
  }
  .navbar .menu-main-nav-container .nav-item a:hover {
    background: #FFCAF0;
  }
  .navbar .menu-main-nav-container .nav-item span {
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
  }
  .navbar .menu-main-nav-container .nav-item:first-child {
    border-left: 2px solid #06124C;
  }
}
.site-footer {
  background: var(--bkg-image);
  background-color: var(--bkg-color);
  background-size: cover;
  padding: 70px 0;
  margin-top: -20px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .site-footer {
    clip-path: polygon(0 0, 100% 150px, 100% 100%, 0 100%);
    padding: 300px 100px 50px;
    margin-top: -150px;
  }
}
@media (min-width: 1600px) {
  .site-footer {
    padding: 200px 100px 50px;
  }
}
.site-footer .inner-footer {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
}
.site-footer .inner-footer .menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .site-footer .inner-footer .menu {
    padding-bottom: 50px;
  }
}
@media (min-width: 1200px) {
  .site-footer .inner-footer .menu {
    flex: 0 0 auto;
    width: 25%;
  }
}
.site-footer .inner-footer .menu nav {
  padding-bottom: 15px;
}
@media (min-width: 992px) {
  .site-footer .inner-footer .menu nav {
    padding-bottom: 125px;
    margin-top: -125px;
  }
}
.site-footer .inner-footer .menu li {
  margin-bottom: 10px;
}
.site-footer .inner-footer .menu li a {
  font-size: 16px;
  text-transform: uppercase;
}
.site-footer .inner-footer .menu li a:hover {
  text-decoration: underline;
  text-decoration-style: dashed;
  text-decoration-thickness: 2px;
  text-decoration-color: #FFF1F5;
  text-underline-offset: 4px;
}
.site-footer .inner-footer .menu svg {
  height: auto;
  width: 80%;
}
@media (min-width: 768px) {
  .site-footer .inner-footer .menu svg {
    width: 325px;
  }
}
@media (min-width: 1200px) {
  .site-footer .inner-footer .menu svg {
    width: 100%;
  }
}
.site-footer .inner-footer .image-container {
  display: none;
  flex: 0 0 auto;
  width: 28%;
}
@media (min-width: 1200px) {
  .site-footer .inner-footer .image-container {
    display: block;
    align-self: flex-end;
    margin-bottom: -50px;
  }
}
.site-footer .inner-footer .image-container .image img {
  width: 100%;
  height: auto;
  display: block;
}
.site-footer .inner-footer .signup-footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 1200px) {
  .site-footer .inner-footer .signup-footer {
    flex: 0 0 auto;
    width: 47%;
  }
}
.site-footer .inner-footer .signup-footer .heading {
  padding-bottom: 20px;
}
.site-footer .inner-footer .signup-footer .copyright {
  width: 100%;
  font-size: 12px;
  padding-top: 100px;
}
@media (min-width: 992px) {
  .site-footer .inner-footer .signup-footer .copyright {
    text-align: end;
  }
}
.site-footer .inner-footer * {
  color: var(--text-color, #FFF1F5);
}
.site-footer .inner-footer .menu li {
  width: -moz-fit-content;
  width: fit-content;
}
.site-footer .inner-footer .menu li a {
  padding: 0;
}
.site-footer .inner-footer .logo svg path {
  fill: var(--text-color);
}
.home-hero .container-fluid,
.home-hero .col-12,
.home-hero .row {
  height: 100%;
}
.home-hero .row {
  margin: 0;
  flex-direction: column-reverse;
}
.home-hero .top-left {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 60px;
}
.home-hero .top-left svg {
  max-width: 100%;
  height: 100%;
}
.home-hero .top-left .heading {
  color: var(--font-color, #06124C);
  line-height: 1;
}
.home-hero .top-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--bg, #EA023D);
  padding: 50px 25px;
  border-bottom: 2px solid #06124C;
}
@media (min-width: 1200px) {
  .home-hero .top-right {
    padding: 40px;
  }
}
.home-hero .top-right .subheading {
  font-family: "Mayluna", "Sarina", sans-serif;
}
.home-hero .top-right .heading,
.home-hero .top-right .subheading {
  text-align: center;
  color: var(--font-color, #06124C);
}
.home-hero .bottom-left {
  border-bottom: 2px solid #06124C;
}
.home-hero .bottom-right {
  position: relative;
  border-bottom: 2px solid #06124C;
}
.home-hero .bottom-right .svg-wrapper {
  position: absolute;
  top: 15px;
  left: 15px;
  height: 100%;
}
.home-hero .bottom-right .svg-wrapper.heading {
  height: auto;
  line-height: 1;
  color: var(--font-color, #06124C);
}
@media (min-width: 600px) {
  .home-hero .bottom-right .svg-wrapper.heading {
    width: 50%;
  }
}
.home-hero .bottom-right .svg-wrapper svg {
  width: 200px;
  height: auto;
  fill: var(--color);
}
@media (min-width: 768px) {
  .home-hero .bottom-right .svg-wrapper svg {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .home-hero .bottom-right .svg-wrapper svg {
    width: 400px;
  }
}
.home-hero .bottom-right .animate-svg {
  position: absolute;
  bottom: 30px;
  right: 30px;
}
@media (min-width: 768px) {
  .home-hero .bottom-right .animate-svg {
    bottom: 100px;
    right: 70px;
  }
}
.home-hero .bottom-right .animate-svg svg {
  width: 100px;
  height: auto;
}
@media (min-width: 768px) {
  .home-hero .bottom-right .animate-svg svg {
    width: 150px;
  }
}
@media (min-width: 992px) {
  .home-hero .bottom-right .animate-svg svg {
    width: 210px;
  }
}
.home-hero .bottom-right .animate-svg svg path {
  fill: var(--color, #FFF1F5);
}
.home-hero .bottom-right img,
.home-hero .bottom-left img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-hero .right-column,
.home-hero .left-column {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 1200px) {
  .home-hero {
    height: max(100vh, 1000px);
  }
  .home-hero .row {
    flex-direction: row;
  }
  .home-hero .left-column {
    flex: 1 0 48%;
  }
  .home-hero .right-column {
    flex: 1 0 52%;
  }
  .home-hero .left-column,
  .home-hero .right-column {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .home-hero .top-left {
    display: flex;
    flex: 0 0 50%;
    height: 50%;
    overflow: hidden;
    border-bottom: 2px solid #06124C;
  }
  .home-hero .bottom-left {
    flex: 0 0 50%;
    height: 50%;
    overflow: hidden;
  }
  .home-hero .top-right {
    flex: 0 0 30%;
    height: 30%;
    overflow: hidden;
    border-left: 2px solid #06124C;
  }
  .home-hero .bottom-right {
    flex: 0 0 70%;
    height: 70%;
    overflow: hidden;
    border-left: 2px solid #06124C;
  }
  .home-hero .bottom-right .svg-wrapper {
    display: none;
  }
}
:root {
  --general-overlap: clamp(250px, 30vw, 500px);
}
.general {
  padding: 60px 0;
  overflow: hidden;
}
.general:not(.second) h3 {
  line-height: 1.3;
}
.general.second {
  padding: 0 0 100px;
  margin-top: -50px;
}
@media (min-width: 992px) {
  .general {
    padding: 170px 0;
  }
  .general.second {
    padding: 0 0 200px;
    margin-top: -100px;
  }
}
.general {
  padding-bottom: var(--general-overlap);
}
.general + .products {
  margin-top: calc(-1 * var(--general-overlap));
}
.products {
  background: linear-gradient(to bottom, transparent 0%, transparent 40%, var(--bg-color) 40%, var(--bg-color) 100%);
}
.products .products-container {
  overflow: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
.products .products-container .scroll {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  animation: scroll-left var(--time) linear infinite;
  animation-play-state: paused;
}
.products .products-container .scroll.ready {
  animation-play-state: running;
}
.products .products-container .scroll img {
  height: 450px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
@media (min-width: 768px) {
  .products .products-container .scroll img {
    height: 650px;
  }
}
@media (min-width: 1200px) {
  .products .products-container .scroll img {
    height: 800px;
  }
}
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * var(--scroll-width, 50%)));
  }
}
.services {
  margin-top: -1px;
}
.services .services-container {
  overflow: hidden;
}
.services .services-container h1 {
  position: relative;
  z-index: 1;
  mix-blend-mode: soft-light;
}
.services .services-container h1 span {
  font-family: inherit;
  font-size: inherit;
}
.services .services-container .wpcp-carousel-wrapper {
  position: relative;
  z-index: 2;
  margin-top: -4em;
}
.services .services-container .wpcp-carousel-wrapper .wpcp-carousel-section .wpcp-swiper-dots .swiper-pagination-bullet {
  margin: 0 8px 4px;
  width: 20px;
  height: 20px;
}
@media (min-width: 1200px) {
  .services .services-container .wpcp-carousel-wrapper {
    margin-top: -6em;
  }
}
.services .services-container .scroll {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: scroll-left var(--time, 8s) linear infinite;
}
.services .services-container .scroll:has(img:hover) {
  animation-play-state: paused;
}
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.signup {
  padding: 60px 0 0;
  border-bottom: 2px solid #06124C;
}
.signup .sticker img {
  transform: rotate(0deg);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.signup .sticker img:hover {
  transform: rotate(-10deg);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media (min-width: 1200px) {
  .signup {
    padding: 170px 0 100px;
  }
}
.signup .image-container {
  position: relative;
  display: flex;
  flex-direction: column;
}
.signup .image-container > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.signup .image-container.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
.signup .image-container.is-visible > *:nth-child(1) {
  transition-delay: 0s;
}
.signup .image-container.is-visible > *:nth-child(2) {
  transition-delay: 0.15s;
}
.signup .image-container.is-visible > *:nth-child(3) {
  transition-delay: 0.3s;
}
.signup .image-container .image {
  display: flex;
  justify-content: center;
  margin-top: auto;
  height: 100%;
}
@media (min-width: 1200px) {
  .signup .image-container .image {
    justify-content: flex-end;
    position: absolute;
    bottom: -100px;
    right: 0;
  }
}
@media (max-width: 1199px) {
  .signup .image-container .image img {
    max-width: 100%;
    height: auto;
  }
}
.signup .image-container .animate-svg {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
}
@media (min-width: 768px) {
  .signup .image-container .animate-svg {
    left: 50px;
  }
}
@media (min-width: 992px) {
  .signup .image-container .animate-svg {
    left: 15%;
  }
}
@media (min-width: 1200px) {
  .signup .image-container .animate-svg {
    left: 0;
  }
}
@media (min-width: 1400px) {
  .signup .image-container .animate-svg {
    left: 20%;
  }
}
.signup .image-container .animate-svg svg {
  height: auto;
  width: 160px;
}
.showcase {
  padding: 100px 0;
}
.showcase .showcase-container {
  overflow: hidden;
}
.showcase .wpcp-carousel-section .wpcp-swiper-dots .swiper-pagination-bullet {
  margin: 0 8px 4px;
  width: 20px;
  height: 20px;
}
@media (min-width: 992px) {
  .showcase .wpcp-carousel-section {
    overflow: visible !important;
    width: calc(100% - 400px);
    margin: 0 auto !important;
  }
}
@media (min-width: 1200px) {
  .showcase .wpcp-carousel-section {
    width: calc(100% - 600px);
  }
}
@media (min-width: 1600px) {
  .showcase .wpcp-carousel-section {
    width: calc(100% - 800px);
  }
}
.showcase .wpcp-carousel-section .swiper-slide {
  margin: 0 auto;
  padding: 0 15px;
}
@media (min-width: 992px) {
  .showcase .wpcp-carousel-section .swiper-slide {
    padding: 0 40px;
  }
}
@media (min-width: 1600px) {
  .showcase .wpcp-carousel-section .swiper-slide {
    padding: 0 70px;
  }
}
.showcase .wpcp-carousel-section img {
  width: 100%;
  height: auto;
  display: block;
}
.showcase .heading {
  padding-bottom: 60px;
}
.showcase .heading svg {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .showcase .heading svg {
    width: 85%;
    height: auto;
  }
}
@media (min-width: 992px) {
  .showcase {
    padding: 200px 0;
  }
}
.ugc {
  background: linear-gradient(to bottom, var(--bg-color) 70%, var(--gradient) 70%, var(--gradient) 100%);
  position: relative;
}
.ugc .swiper-slide {
  padding: 0 20px;
  cursor: grab;
}
.ugc .video-wrapper {
  position: relative;
  display: block;
  cursor: pointer;
}
.ugc .video-wrapper:hover .play-btn:not(.hidden) {
  opacity: 1;
}
.ugc video {
  display: block;
  aspect-ratio: 9/16;
  border-radius: 67px;
  height: 100%;
  width: 100%;
  border: 2px solid #06124C;
  -o-object-fit: cover;
     object-fit: cover;
}
.ugc .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.85);
  border: none;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s ease, background 0.2s ease;
  z-index: 1;
  pointer-events: all;
}
.ugc .play-btn svg {
  width: 30px;
  height: 30px;
  color: #06124C;
  margin-left: 4px;
}
.ugc .play-btn.hidden {
  opacity: 0;
  pointer-events: none;
}
.ugc .play-btn:hover {
  background: #fff;
}
.ugc .sticker-1,
.ugc .sticker-2,
.ugc .sticker-3 {
  position: absolute;
  z-index: 2;
  display: none;
}
@media (min-width: 992px) {
  .ugc .sticker-1,
  .ugc .sticker-2,
  .ugc .sticker-3 {
    display: block;
  }
}
.ugc .sticker-1 {
  top: -70px;
  left: 100px;
  max-width: 250px;
}
.ugc .sticker-2 {
  bottom: -90px;
  left: 40%;
  transform: translateX(-50%);
  max-width: 300px;
}
.ugc .sticker-3 {
  top: -90px;
  right: 10%;
  max-width: 300px;
}
.pitch {
  overflow: hidden;
  padding: 120px 0;
  margin-top: -1px;
}
@media (min-width: 992px) {
  .pitch {
    padding: 240px 0 300px;
  }
}
.pitch h1 {
  position: relative;
  z-index: 1;
  mix-blend-mode: soft-light;
}
.pitch h1 span {
  font-family: inherit;
  font-size: inherit;
}
.pitch .scroll {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: scroll-left var(--time, 8s) linear infinite;
}
.pitch .scroll:has(img:hover) {
  animation-play-state: paused;
}
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.pitch .content-container {
  border-radius: 67px;
  overflow: hidden;
  border: 2px solid #06124C;
}
@media (min-width: 992px) {
  .pitch .content-container {
    border-radius: 156px;
  }
}
.pitch .content-container .top-content {
  background: var(--bg-color);
  position: relative;
  border-bottom: 2px solid #06124C;
}
.pitch .content-container .top-content img {
  pointer-events: none;
}
.pitch .content-container .top-content .col-12 > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.pitch .content-container .top-content.is-visible .col-12 > * {
  opacity: 1;
  transform: translateY(0);
}
.pitch .content-container .top-content.is-visible .col-12 > *:nth-child(1) {
  transition-delay: 0s;
}
.pitch .content-container .top-content.is-visible .col-12 > *:nth-child(2) {
  transition-delay: 0.15s;
}
.pitch .content-container .top-content .col-12 {
  position: relative;
}
@media (min-width: 1200px) {
  .pitch .content-container .top-content .col-12 {
    padding: 85px 45px;
  }
}
.pitch .content-container .top-content .col-12 .content {
  font-size: clamp(1.5rem, 1.1389rem + 1.4815vw, 2.25rem);
  padding: 80px 25px;
}
@media (min-width: 768px) {
  .pitch .content-container .top-content .col-12 .content {
    padding: 100px 85px;
  }
}
@media (min-width: 1200px) {
  .pitch .content-container .top-content .col-12 .content {
    padding: 0 45px 85px;
  }
}
@media (min-width: 1200px) {
  .pitch .content-container .top-content .col-12 .content {
    position: absolute;
    top: 120px;
    left: 140px;
    height: 100%;
    max-width: 54%;
    padding: 0;
  }
}
.pitch .content-container .middle-content .card-row {
  gap: 40px;
}
.pitch .content-container .middle-content .button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 70px 0 0;
}
.pitch .content-container .middle-content .col-12 .content {
  padding: 80px 30px;
}
@media (min-width: 768px) {
  .pitch .content-container .middle-content .col-12 .content {
    padding: 100px 70px;
  }
}
.pitch .content-container .middle-content h3 {
  text-align: center;
  padding-bottom: 60px;
}
.pitch .content-container .middle-content .work-card {
  display: flex;
  flex-direction: column;
  border: 2px solid #06124C;
  text-align: center;
  padding: 0;
  background: #fff;
  min-height: 430px;
}
@media (min-width: 992px) {
  .pitch .content-container .middle-content .work-card {
    flex: 0 0 calc(50% - 20px);
  }
}
.pitch .content-container .middle-content .work-card .image {
  width: 100%;
  border-bottom: 2px solid #06124C;
}
.pitch .content-container .middle-content .work-card .image img {
  width: 100%;
}
.pitch .content-container .middle-content .work-card .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 24px;
  font-weight: 500;
  background: #fff;
  padding: 25px 30px;
}
@media (min-width: 992px) {
  .pitch .content-container .middle-content .work-card .content {
    padding: 35px 40px;
  }
}
.pitch .content-container .middle-content .work-card .content h4 {
  font-weight: 400;
  color: #EA023D;
}
.pitch .content-container .bottom-content {
  border-top: 2px solid #06124C;
}
.pitch .content-container .bottom-content .left-column .image {
  position: relative;
  height: 100%;
  width: 100%;
  border-right: 2px solid #06124C;
  max-height: 600px;
  border-bottom: 2px solid #06124C;
}
@media (min-width: 992px) {
  .pitch .content-container .bottom-content .left-column .image {
    max-height: 100%;
    border-bottom: 0;
  }
}
.pitch .content-container .bottom-content .left-column .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pitch .content-container .bottom-content .right-column .content {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pitch .content-container .bottom-content .right-column .content .top {
  padding: 80px 25px;
  background: #79CCF3;
}
@media (min-width: 768px) {
  .pitch .content-container .bottom-content .right-column .content .top {
    padding: 80px 85px 50px;
  }
}
.pitch .content-container .bottom-content .right-column .content .bottom {
  padding: 50px 25px;
  color: #FFF1F5;
  background: #06124C;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .pitch .content-container .bottom-content .right-column .content .bottom {
    padding: 50px 85px;
  }
}
.divider-animation-section {
  position: relative;
  z-index: 2;
  width: 110%;
  left: -5%;
  margin-top: -10px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .divider-animation-section {
    margin-top: -110px;
  }
}
.divider-animation {
  position: relative;
  width: 100%;
  line-height: 0;
}
.divider-animation .frame {
  width: 100%;
  height: auto;
  opacity: 0;
  display: block;
  transition: opacity 0s;
}
.divider-animation .frame:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
}

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