@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@500;700&display=swap");
html {
  scroll-behavior: smooth;
}

/*
Colors
**************
*/
/*
Font Import & Family
***********
*/
/*
Line Heights
**************
*/
/*
Root Font Size
***********
*/
html {
  font-size: 16px;
}

body {
  color: #101010;
  font-family: "Barlow Semi Condensed", sans-serif;
}

/*
Font Sizes
***********
*/
h1,
header .menu-item a {
  font-weight: 600;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2.4rem, 5.2vw, 5.2rem);
  letter-spacing: 0px;
  line-height: 1;
}

h2 {
  text-wrap: balance;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.9rem, 3.2vw, 3.6rem);
  line-height: 1;
}

h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  line-height: 1;
}

h4 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  line-height: 1.2;
}

h5 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: clamp(1.1rem, 1.4vw, 1.4rem);
  line-height: 1.2;
}

h6 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.2;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 300;
}

a {
  color: white;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: clamp(1rem, 1.1vw, 1.2rem);
}

p,
input {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  line-height: 1.25;
  font-weight: 300;
}

/*
Font Weights
**************
*/
/*
Breakpoints and Containers
***********
*/
.container {
  margin: 0 auto;
  padding: 0;
  width: calc(100% - 40px);
}
@media (min-width: 414px) {
  .container {
    width: calc(100% - 60px) !important;
  }
}
@media (min-width: 768px) {
  .container {
    width: calc(100% - 100px) !important;
  }
}
@media (min-width: 1024px) {
  .container {
    width: calc(100% - 100px) !important;
  }
}
@media (min-width: 1352px) {
  .container {
    width: calc(100% - 120px) !important;
  }
}
@media (min-width: 1900px) {
  .container {
    width: calc(100% - 250px) !important;
  }
}

.container-padding {
  padding: 0 30px;
}
@media (min-width: 768px) {
  .container-padding {
    padding: 0 50px;
  }
}
@media (min-width: 1024px) {
  .container-padding {
    padding: 0 50px;
  }
}
@media (min-width: 1352px) {
  .container-padding {
    padding: 0 60px;
  }
}
@media (min-width: 1900px) {
  .container-padding {
    padding: 0 125px;
  }
}

.med-container {
  margin: 0 auto;
  padding: 0;
  width: calc(100% - 20px);
}
@media (min-width: 414px) {
  .med-container {
    width: calc(100% - 60px);
  }
}
@media (min-width: 768px) {
  .med-container {
    width: calc(100% - 100px);
  }
}
@media (min-width: 1024px) {
  .med-container {
    width: calc(100% - 300px);
  }
}
@media (min-width: 1352px) {
  .med-container {
    width: calc(100% - 450px);
  }
}
@media (min-width: 1900px) {
  .med-container {
    width: calc(100% - 600px);
  }
}

.tight-container {
  margin: 0 auto;
  padding: 0;
  width: calc(100% - 60px);
}
@media (min-width: 768px) {
  .tight-container {
    width: calc(100% - 300px);
  }
}
@media (min-width: 1024px) {
  .tight-container {
    width: calc(100% - 450px);
  }
}
@media (min-width: 1352px) {
  .tight-container {
    width: calc(100% - 750px);
  }
}
@media (min-width: 1900px) {
  .tight-container {
    width: calc(100% - 1150px);
  }
}

/*
Border Radius
***********
*/
strong,
b {
  color: rgb(221, 17, 32);
}

/*
Border Radius
***********
*/
/*
Transitions
***********
*/
/*
Transitions
***********
*/
.wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .wrap {
    gap: 4rem;
  }
}
@media (min-width: 1352px) {
  .wrap {
    gap: 5rem;
  }
}
@media (min-width: 1900px) {
  .wrap {
    gap: 6rem;
  }
}

/*
Bold
***********
*/
.bold {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 900;
}

/*
Top Margin
***********
*/
.top-margin {
  margin-top: 100px;
}
@media (min-width: 1024px) {
  .top-margin {
    margin-top: 150px;
  }
}

/*
Padding Classes
***********
*/
.padding {
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .padding {
    padding: 6rem 0;
  }
}
@media (min-width: 1352px) {
  .padding {
    padding: 8rem 0;
  }
}

.top-padding {
  padding: 4rem 0 0 0;
}
@media (min-width: 1024px) {
  .top-padding {
    padding: 6rem 0 0 0;
  }
}
@media (min-width: 1352px) {
  .top-padding {
    padding: 8rem 0 0 0;
  }
}

.bottom-padding {
  padding: 0 0 4rem 0;
}
@media (min-width: 1024px) {
  .bottom-padding {
    padding: 0 0 6rem 0;
  }
}
@media (min-width: 1352px) {
  .bottom-padding {
    padding: 0 0 8rem 0;
  }
}

/*
Image Wrapper Class
***********
*/
.imgWrap {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}
@media (min-width: 1024px) {
  .imgWrap {
    border-radius: 15px;
  }
}
.imgWrap img,
.imgWrap iframe,
.imgWrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/*
Wrapper Class
***********
*/
/*
Glass
***********
*/
.glass {
  position: relative;
  overflow: hidden;
  border: 0;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: 10px;
  box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.5), inset -1px -1px 2px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.glass > * {
  position: relative;
  z-index: 2;
}
.glass::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: skewX(-20deg);
  transition: all 0.6s ease;
  z-index: 1;
}
.glass:hover {
  transform: translateY(-2px) scale(1.02);
}
.glass:hover::before {
  left: 125%;
}

.glass.no-hover:hover {
  transform: none !important;
}
.glass.no-hover:hover::before {
  left: -75% !important;
}

/*
Shadow
***********
*/
.shadow-lg {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

/*
Card
***********
*/
.article {
  transition: 0.2s ease all;
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
  background: #f3f3f3;
  border-radius: 10px;
}
@media (min-width: 1024px) {
  .article {
    border-radius: 15px;
    padding: 0.75rem;
  }
}
.article .content,
.article .text {
  padding: 1.25rem 0.75rem;
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 1rem;
}
@media (min-width: 1352px) {
  .article .content,
  .article .text {
    padding: 1.5rem 1rem;
  }
}
.article .content h3,
.article .text h3 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
}
@media (min-width: 1024px) {
  .article .content h3,
  .article .text h3 {
    font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  }
}
.article .content h4,
.article .text h4 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
}
.article .content .text-link,
.article .text .text-link {
  margin-top: auto;
}
.article:hover {
  background: rgb(221, 17, 32);
  color: white;
}
.article:hover h3,
.article:hover h4 {
  color: white;
}
.article:hover .text-link {
  color: white;
}

/*
background
***********
*/
.bg {
  background-attachment: fixed;
  background-color: white; /* base color */
  background-color: #fff;
  background-image: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.025), rgba(0, 0, 0, 0.025) 1px, transparent 1px, transparent 26px), repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.025), rgba(0, 0, 0, 0.025) 1px, transparent 1px, transparent 26px);
}
@media (min-width: 1024px) {
  .bg {
    background-image: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.025), rgba(0, 0, 0, 0.025) 1px, transparent 1px, transparent 52px), repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.025), rgba(0, 0, 0, 0.025) 1px, transparent 1px, transparent 52px);
  }
}

.bg-red {
  background: rgb(221, 17, 32);
  background-image: url(../img/red-lines.svg);
  background-position: center;
  background-size: cover;
}

/*
Text Link
***********
*/
.text-link {
  color: rgb(221, 17, 32);
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: bold;
}

/*
Tags
***********
*/
.tag,
.red-tag {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1;
  gap: 0.5rem;
  width: fit-content;
  border-radius: 999999px;
  text-transform: uppercase;
  color: white;
}
@media (min-width: 1024px) {
  .tag,
  .red-tag {
    padding: 0.75rem 1.5rem;
  }
}
.tag:hover,
.red-tag:hover {
  transform: none;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 0;
  box-shadow: 0;
}
.tag:hover::before,
.red-tag:hover::before {
  left: -75%;
}
.tag svg,
.red-tag svg {
  margin-top: 0.1rem;
}

.red-tag {
  background: rgb(221, 17, 32);
  color: white;
}

/*
top overlay
***********
*/
.head {
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .head {
    width: 100%;
    max-width: 750px;
  }
}
@media (min-width: 1352px) {
  .head {
    gap: 2rem;
    max-width: 1000px;
  }
}
.head p {
  margin-top: -0.35rem;
  z-index: 5;
  color: white;
}
@media (min-width: 1024px) {
  .head p {
    width: 100%;
    max-width: 550px;
  }
}
@media (min-width: 1352px) {
  .head p {
    max-width: 700px;
  }
}
.head h5 {
  z-index: 5;
  font-weight: 400;
  font-size: clamp(1rem, 1.1vw, 1.2rem);
}
@media (min-width: 1024px) {
  .head h5 {
    width: 100%;
    max-width: 750px;
    font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  }
}
@media (min-width: 1352px) {
  .head h5 {
    max-width: 875px;
  }
}
.head .buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .head .buttons {
    gap: 1rem;
    flex-direction: row;
  }
}
.head .title {
  position: relative;
  display: inline-block;
}
.head .title .back-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 800;
  white-space: nowrap;
  font-size: 6rem;
  color: transparent;
  -webkit-text-stroke: 1px #f30714;
  pointer-events: none;
  z-index: 1;
}
@media (min-width: 1024px) {
  .head .title .back-title {
    font-size: 8rem;
  }
}
@media (min-width: 1352px) {
  .head .title .back-title {
    font-size: 12rem;
  }
}
.head .title .front-title {
  position: relative;
  z-index: 2;
  color: #fff;
}

/*
Top Overlay
***********
*/
.top-overlay {
  margin-top: -100px;
}
@media (min-width: 768px) {
  .top-overlay {
    margin-top: -100px;
  }
}
@media (min-width: 1024px) {
  .top-overlay {
    margin-top: -150px;
  }
}
@media (min-width: 1352px) {
  .top-overlay {
    margin-top: -175px;
  }
}
@media (min-width: 1900px) {
  .top-overlay {
    margin-top: -250px;
  }
}

/*
Pop up
***********
*/
.popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.popup.active {
  opacity: 1;
  pointer-events: auto;
}
.popup .showcase-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup .showcase {
  width: 100%;
  position: relative;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  background: white;
  overflow: hidden;
  transition: all 0.3s ease;
}
@media (min-width: 1024px) {
  .popup .showcase {
    border-radius: 15px;
    flex-direction: row;
    align-items: stretch;
  }
}
@media (min-width: 1352px) {
  .popup .showcase {
    width: 75%;
  }
}
.popup .showcase:hover p {
  color: #101010;
}
.popup.active .popup .showcase {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.popup .showcase .imgWrap {
  width: 100%;
}
@media (min-width: 1024px) {
  .popup .showcase .imgWrap {
    height: auto;
    width: 50%;
  }
}
@media (min-width: 1352px) {
  .popup .showcase .imgWrap {
    width: 52.5%;
  }
}
.popup .showcase .imgWrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.popup .showcase .content {
  width: 100%;
}
@media (min-width: 1024px) {
  .popup .showcase .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    padding: 2.5rem;
    width: 50%;
  }
}
@media (min-width: 1352px) {
  .popup .showcase .content {
    padding: 3.5rem;
    width: 47.5%;
  }
}
@media (min-width: 1900px) {
  .popup .showcase .content {
    padding: 4rem;
  }
}
.popup .showcase .content h3 {
  color: rgb(221, 17, 32);
}
.popup .showcase .content .popup-close {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 20px;
  height: 20px;
  margin: 20px;
  cursor: pointer;
  z-index: 10;
}
.popup .showcase .content .popup-close::before,
.popup .showcase .content .popup-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #000;
  transform-origin: center;
}
.popup .showcase .content .popup-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.popup .showcase .content .popup-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.style-guide {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}
.style-guide .flex {
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 9999;
  opacity: 0; /* hidden initially */
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.back-to-top svg {
  width: 100%;
  height: 100%;
  display: block;
}
.back-to-top.show {
  opacity: 1;
}
.back-to-top:hover {
  transform: scale(1.1);
}

.btn {
  transition: 0.2s ease all;
  position: relative;
  z-index: 1;
  border-radius: 10px;
  width: fit-content;
  color: white;
  padding: 1rem 1.5rem;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  overflow: hidden;
}
.btn svg {
  width: 12px;
  height: auto;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-20deg);
  transition: all 0.6s ease;
  z-index: 1;
}
.btn:hover::before {
  left: 125%;
}
.btn--red {
  background: rgba(221, 17, 32, 0.8);
  border: 0;
}
.btn--red:hover {
  transform: translateY(-2px) scale(1.02);
}
.btn.no-hover:hover {
  transform: none !important;
}
.btn.no-hover:hover::before {
  left: -75% !important;
}

/*
Reset CSS
***********
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

:root {
  font-size: 16px;
}

body {
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
}

ol,
ul {
  list-style: none;
  padding: 0;
}

button,
a {
  cursor: pointer;
}

#root,
#__next {
  isolation: isolate;
}

header {
  transition: transform 0.4s ease;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8;
}
header .navWrap {
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  border-radius: 10px;
  transition: 0.2s ease all;
  margin-top: 15px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 1024px) {
  header .navWrap {
    padding: 1rem;
    height: auto;
    margin-top: 25px;
    margin-bottom: 25px;
    gap: 1.5rem;
    border-radius: 15px;
  }
}
@media (min-width: 1352px) {
  header .navWrap {
    gap: 2rem;
  }
}
header .navWrap .custom-logo-link {
  display: block;
  position: relative;
  z-index: 5;
  width: 175px;
  height: auto;
}
@media (min-width: 768px) {
  header .navWrap .custom-logo-link {
    width: 150px;
  }
}
@media (min-width: 1024px) {
  header .navWrap .custom-logo-link {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
  }
}
@media (min-width: 1352px) {
  header .navWrap .custom-logo-link {
    width: 20%;
  }
}
@media (min-width: 1900px) {
  header .navWrap .custom-logo-link {
    width: 15%;
  }
}
header .navWrap .custom-logo-link .custom-logo {
  width: 100%;
  height: auto;
}
header .navWrap .contact-desk {
  display: none;
}
@media (min-width: 1024px) {
  header .navWrap .contact-desk {
    position: relative;
    z-index: 9999999;
    display: block;
  }
}
header .navWrap .navMenu {
  overflow: hidden;
  background: rgb(221, 17, 32);
  background-image: url(../img/red-lines.svg);
  background-position: center;
  background-size: auto 100%;
  background-repeat: no-repeat;
  top: 0;
  height: 100%;
  position: relative;
  transition: 0.2s ease all;
  width: 100%;
  left: -100%;
  z-index: 1;
  position: fixed;
}
@media (min-width: 414px) {
  header .navWrap .navMenu {
    gap: 3rem;
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (min-width: 1024px) {
  header .navWrap .navMenu {
    gap: 0;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    height: 90%;
    max-height: 700px;
    padding-bottom: 50px;
  }
}
@media (min-width: 1900px) {
  header .navWrap .navMenu {
    height: 87.5%;
    max-height: 900px;
  }
}
header .navWrap .navMenu .main {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  header .navWrap .navMenu .main {
    justify-content: flex-end;
    align-items: flex-start;
    width: 40%;
  }
}
@media (min-width: 1352px) {
  header .navWrap .navMenu .main {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  header .navWrap .navMenu .main .contact-mob {
    display: none;
  }
}
header .navWrap .navMenu .main ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 1024px) {
  header .navWrap .navMenu .main ul {
    align-items: flex-start;
  }
}
header .navWrap .navMenu .main ul li a {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2.4rem, 5.2vw, 5.2rem);
  color: white;
  position: relative;
  display: inline-block;
}
header .navWrap .navMenu .main ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 5px;
  background: white;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
@media (min-width: 1352px) {
  header .navWrap .navMenu .main ul li a {
    font-size: 5.5rem;
  }
}
@media (min-width: 1900px) {
  header .navWrap .navMenu .main ul li a {
    font-size: 6.5rem;
  }
}
header .navWrap .navMenu .main ul li:hover a::after {
  transform: scaleX(1);
}
header .navWrap .navMenu .main ul li:not(:hover) a::after {
  transform-origin: right;
}
header .navWrap .navMenu .main .social-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 1024px) {
  header .navWrap .navMenu .main .social-details {
    gap: 1.5rem;
  }
}
header .navWrap .navMenu .main .social-details .details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: center;
  color: white;
}
@media (min-width: 1024px) {
  header .navWrap .navMenu .main .social-details .details {
    gap: 0.5rem;
    align-items: flex-start;
    text-align: left;
  }
}
header .navWrap .navMenu .main .social-details .details p {
  color: white;
}
header .navWrap .navMenu .main .social-details .details a {
  font-size: inherit;
}
header .navWrap .navMenu .main .social-details .socials {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
header .navWrap .navMenu .main .social-details .socials .glass {
  border-radius: 999999px !important;
  padding: 0.5rem;
}
header .navWrap .navMenu .main .social-details .socials img {
  height: 16px;
  width: auto;
}
header .navWrap .navMenu .featured {
  display: none;
}
@media (min-width: 1024px) {
  header .navWrap .navMenu .featured {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    width: 60%;
  }
}
@media (min-width: 1352px) {
  header .navWrap .navMenu .featured {
    gap: 1.5rem;
    padding: 2rem;
    width: 50%;
  }
}
@media (min-width: 1900px) {
  header .navWrap .navMenu .featured {
    gap: 2rem;
    padding: 2.5rem;
  }
}
header .navWrap .navMenu .featured .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .navWrap .navMenu .featured .title h3 {
  color: white;
}
header .navWrap .navMenu .featured .title .glass {
  background: none;
  backdrop-filter: none;
  background: rgba(255, 255, 255, 0.05);
}
header .navWrap .navMenu .featured .featured-content {
  transition: 0.2s ease all;
  padding: 0.5rem;
  border-radius: 10px;
  background: white;
  display: flex;
  align-items: stretch;
}
header .navWrap .navMenu .featured .featured-content:hover {
  background: rgb(221, 17, 32);
  color: white;
}
header .navWrap .navMenu .featured .featured-content:hover .content {
  color: white;
}
header .navWrap .navMenu .featured .featured-content:hover .content h4 {
  color: white;
}
@media (min-width: 1024px) {
  header .navWrap .navMenu .featured .featured-content {
    border-radius: 15px;
  }
}
header .navWrap .navMenu .featured .featured-content .imgWrap {
  aspect-ratio: none;
  width: 35%;
  height: auto;
}
header .navWrap .navMenu .featured .featured-content .content {
  width: 65%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
}
@media (min-width: 1024px) {
  header .navWrap .navMenu .featured .featured-content .content {
    padding: 1rem 2rem;
  }
}
@media (min-width: 1352px) {
  header .navWrap .navMenu .featured .featured-content .content {
    gap: 0.75rem;
  }
}
@media (min-width: 1900px) {
  header .navWrap .navMenu .featured .featured-content .content {
    padding: 2rem;
  }
}
header .navWrap .navMenu .featured .featured-content .content h4 {
  color: rgb(221, 17, 32);
}
header .navWrap .navMenu.is-active {
  left: 0;
}
header .navWrap .menuToggle {
  position: relative;
  z-index: 99999;
  background: rgba(255, 255, 255, 0.154);
  border-radius: 5px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  width: 40px;
}
header .navWrap .menuToggle .hamburger {
  position: relative;
  display: block;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
  width: 18px;
  height: 14px;
}
header .navWrap .menuToggle .bar,
header .navWrap .menuToggle .hamburger:before,
header .navWrap .menuToggle .hamburger:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: white;
  transition: 0.2s ease all;
}
header .navWrap .menuToggle .bar {
  top: 50%;
  transform: translateY(-50%);
}
header .navWrap .menuToggle .hamburger:before {
  top: 0;
}
header .navWrap .menuToggle .hamburger:after {
  bottom: 0;
}
header .navWrap .menuToggle .hamburger.is-active:before {
  transform: rotate(45deg);
  top: 50%;
}
header .navWrap .menuToggle .hamburger.is-active:after {
  transform: rotate(-45deg);
  bottom: auto;
  top: 50%;
}
header .navWrap .menuToggle .hamburger.is-active .bar {
  opacity: 0;
}
header .navWrap.scrolled {
  background: rgb(221, 17, 32);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  padding: 0.5rem 0.5rem 0.5rem 1rem;
}
@media (min-width: 1024px) {
  header .navWrap.scrolled {
    padding: 1rem;
  }
}

footer {
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  background: rgb(221, 17, 32);
  background-image: url(../img/red-lines.svg);
  background-position: center;
  background-size: cover;
}
footer .footer-wrap {
  padding-bottom: 50px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 1024px) {
  footer .footer-wrap {
    flex-direction: row;
    flex-flow: wrap;
    justify-content: space-between;
    gap: 4rem 2rem;
  }
}
@media (min-width: 1900px) {
  footer .footer-wrap {
    gap: 6rem 2rem;
  }
}
footer .footer-wrap .icon {
  margin-top: -50px;
  width: 100px;
  height: auto;
  position: relative;
  z-index: 5;
}
@media (min-width: 1352px) {
  footer .footer-wrap .icon {
    width: 125px;
  }
}
@media (min-width: 1900px) {
  footer .footer-wrap .icon {
    margin-top: -75px;
    width: 150px;
  }
}
footer .footer-wrap .menus {
  display: flex;
  flex-flow: wrap;
  gap: 2rem 0;
}
@media (min-width: 1024px) {
  footer .footer-wrap .menus {
    gap: 2rem;
    width: 60%;
  }
}
@media (min-width: 1352px) {
  footer .footer-wrap .menus {
    width: 60%;
  }
}
footer .footer-wrap .menus h1 {
  color: white;
}
@media (min-width: 1024px) {
  footer .footer-wrap .menus h1 {
    width: 100%;
  }
}
@media (min-width: 1900px) {
  footer .footer-wrap .menus h1 {
    padding-top: 2rem;
  }
}
footer .footer-wrap .menus .main-list {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: white;
}
@media (min-width: 1024px) {
  footer .footer-wrap .menus .main-list {
    gap: 1rem;
    width: 30%;
  }
}
footer .footer-wrap .menus .main-list .title {
  color: white;
  font-weight: 800;
  font-family: "Bricolage Grotesque", sans-serif;
}
@media (min-width: 1024px) {
  footer .footer-wrap .menus .main-list .title {
    font-size: clamp(1.1rem, 1.4vw, 1.4rem);
  }
}
footer .footer-wrap .menus .main-list ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
footer .footer-wrap .menus .main-list .footer-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 1024px) {
  footer .footer-wrap .menus .main-list .footer-menu {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
footer .footer-wrap .menus .main-list .footer-menu li {
  list-style: none;
  position: relative;
}
@media (min-width: 1024px) {
  footer .footer-wrap .menus .main-list .footer-menu li {
    width: 45%;
  }
}
footer .footer-wrap .menus .main-list .footer-menu li a {
  color: white;
  position: relative;
  display: inline-block;
  text-decoration: none;
}
footer .footer-wrap .menus .main-list .footer-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: white;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
footer .footer-wrap .menus .main-list .footer-menu li:hover a::after {
  transform: scaleX(1);
  transform-origin: left;
}
footer .footer-wrap .menus .main-list .footer-menu li:not(:hover) a::after {
  transform-origin: right;
}
footer .footer-wrap .menus .menu-wrap {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  footer .footer-wrap .menus .menu-wrap {
    width: 62.5%;
    flex-direction: row;
  }
}
@media (min-width: 1352px) {
  footer .footer-wrap .menus .menu-wrap {
    width: 60%;
  }
}
footer .footer-wrap .menus .menu-wrap .menu-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: white;
}
@media (min-width: 1024px) {
  footer .footer-wrap .menus .menu-wrap .menu-list {
    gap: 1rem;
    width: 50%;
  }
}
footer .footer-wrap .menus .menu-wrap .menu-list .title {
  color: white;
  font-weight: 800;
  font-family: "Bricolage Grotesque", sans-serif;
}
@media (min-width: 1024px) {
  footer .footer-wrap .menus .menu-wrap .menu-list .title {
    font-size: clamp(1.1rem, 1.4vw, 1.4rem);
  }
}
footer .footer-wrap .menus .menu-wrap .menu-list ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
footer .footer-wrap .menus .menu-wrap .menu-list ul li {
  list-style: none;
  position: relative;
}
footer .footer-wrap .menus .menu-wrap .menu-list ul li a {
  color: white;
  position: relative;
  display: inline-block;
  text-decoration: none;
}
footer .footer-wrap .menus .menu-wrap .menu-list ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: white;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
footer .footer-wrap .menus .menu-wrap .menu-list ul li:hover a::after {
  transform: scaleX(1);
  transform-origin: left;
}
footer .footer-wrap .menus .menu-wrap .menu-list ul li:not(:hover) a::after {
  transform-origin: right;
}
footer .footer-wrap .menus .menu-wrap .menu-list .socials {
  padding-top: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
footer .footer-wrap .menus .menu-wrap .menu-list .socials .glass {
  border-radius: 999999px !important;
  padding: 0.5rem;
}
footer .footer-wrap .menus .menu-wrap .menu-list .socials img {
  height: auto;
  width: 16px;
}
footer .footer-wrap .menus .menu-wrap .menu-list .countries {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 1024px) {
  footer .footer-wrap .menus .menu-wrap .menu-list .countries {
    gap: 0.5rem;
  }
}
footer .footer-wrap .menus .menu-wrap .menu-list .countries a {
  border-radius: 999999px;
  box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.4), inset -1px -1px 2px rgba(0, 0, 0, 0.25), 0 5px 10px rgba(0, 0, 0, 0.25);
}
footer .footer-wrap .menus .menu-wrap .menu-list .countries img {
  width: 22px;
  height: auto;
}
@media (min-width: 1024px) {
  footer .footer-wrap .menus .menu-wrap .menu-list .countries img {
    width: 30px;
  }
}
@media (min-width: 1024px) {
  footer .footer-wrap .contact {
    padding-top: 50px;
    width: 35%;
  }
}
@media (min-width: 1352px) {
  footer .footer-wrap .contact {
    padding-top: 75px;
  }
}
footer .footer-wrap .contact form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
footer .footer-wrap .contact form input,
footer .footer-wrap .contact form textarea,
footer .footer-wrap .contact form .cf7-upload {
  padding: 1rem;
  outline: 0;
  appearance: none;
  border: 0;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  font-weight: 500;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  color: white;
}
@media (min-width: 1024px) {
  footer .footer-wrap .contact form input,
  footer .footer-wrap .contact form textarea,
  footer .footer-wrap .contact form .cf7-upload {
    padding: 1.5rem;
  }
}
footer .footer-wrap .contact form input::placeholder,
footer .footer-wrap .contact form textarea::placeholder,
footer .footer-wrap .contact form .cf7-upload::placeholder {
  color: white;
}
footer .footer-wrap .contact form .split {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
footer .footer-wrap .contact form .split input {
  width: 100%;
}
footer .footer-wrap .contact form textarea {
  width: 100%;
  height: 100px;
}
footer .footer-wrap .contact form .file {
  width: 100%;
}
footer .footer-wrap .contact form button {
  display: flex;
  justify-content: center;
  text-align: center;
  width: 100%;
}
footer .footer-wrap .contact form .cf7-upload {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  border: 2px dashed rgba(255, 255, 255, 0.3);
}
footer .footer-wrap .contact form .cf7-upload .upload-text {
  color: white !important;
}
footer .footer-wrap .contact form .cf7-upload .upload-text b {
  color: white;
}
footer .footer-wrap .contact form .cf7-upload .glass {
  margin-left: auto;
  aspect-ratio: 1/1;
  border-radius: 999999px;
  pointer-events: none;
}
footer .footer-wrap .contact form .cf7-upload .glass img {
  margin: 0.75rem;
  width: 12px;
  height: auto;
}
footer .footer-wrap .contact form .cf7-upload .select-file {
  text-decoration: underline;
  font-weight: bold;
}
footer .footer-wrap .contact form .cf7-upload {
  /* CF7 wrapper */
}
footer .footer-wrap .contact form .cf7-upload .wpcf7-form-control-wrap {
  position: absolute;
  inset: 0;
}
footer .footer-wrap .contact form .cf7-upload {
  /* actual file input */
}
footer .footer-wrap .contact form .cf7-upload input[type=file] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
footer .footer-wrap .contact form .wpcf7-form .wpcf7-submit {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
footer .footer-wrap .contact form .wpcf7-form .wpcf7-spinner {
  display: inline-block;
  vertical-align: middle;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  margin: 0;
}
footer .footer-wrap .contact form .wpcf7-form.submitting .wpcf7-spinner {
  visibility: visible;
  opacity: 1;
}
footer .footer-wrap .contact form .wpcf7-not-valid-tip {
  margin-top: 0.75rem;
  padding: 10px;
  color: white;
  border-radius: 10px;
  border: 1px solid red;
}
footer .footer-wrap .contact form .wpcf7-response-output {
  margin: 0;
  padding: 10px;
  color: white;
  border-radius: 10px;
}
footer .footer-wrap .small-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  footer .footer-wrap .small-text {
    flex-direction: row;
    justify-content: space-between;
  }
}
footer .footer-wrap .small-text .small-links {
  order: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 75%;
  color: white;
  font-size: clamp(0.7rem, 0.8vw, 0.8rem);
}
@media (min-width: 1024px) {
  footer .footer-wrap .small-text .small-links {
    order: 2;
    flex-direction: row;
    width: auto;
  }
}
footer .footer-wrap .small-text .small-links .middle {
  display: none;
}
@media (min-width: 1024px) {
  footer .footer-wrap .small-text .small-links .middle {
    display: block;
  }
}
@media (min-width: 1024px) {
  footer .footer-wrap .small-text .small-links .middle b {
    color: white;
    margin: 0;
  }
}
footer .footer-wrap .small-text .small-links p {
  font-size: clamp(0.7rem, 0.8vw, 0.8rem);
}
footer .footer-wrap .small-text .small-links p a {
  font-size: inherit;
  font-family: inherit;
}
footer .footer-wrap .small-text .small-links p b {
  margin: 0 0.25rem;
  color: white;
}
footer .footer-wrap .small-text .copyright {
  order: 2;
}
@media (min-width: 1024px) {
  footer .footer-wrap .small-text .copyright {
    order: 1;
  }
}
footer .footer-wrap .small-text p {
  opacity: 0.75;
  color: white;
  font-size: clamp(0.7rem, 0.8vw, 0.8rem);
}

.top-section-alt,
.top-section-news {
  background: rgb(221, 17, 32);
  background-image: url(../img/red-lines.svg);
  background-position: center;
  background-size: cover;
}
.top-section-alt .top-wrap,
.top-section-news .top-wrap {
  color: white;
}
.top-section-alt .top-wrap p,
.top-section-news .top-wrap p {
  color: white;
}

.top-section-news {
  padding: 7rem 0 5rem 0;
}
@media (min-width: 1024px) {
  .top-section-news {
    padding: 9rem 0 7rem 0;
  }
}
@media (min-width: 1352px) {
  .top-section-news {
    padding: 10rem 0 8rem 0;
  }
}

.top-section-alt {
  padding: 6rem 0 10rem 0;
}
@media (min-width: 768px) {
  .top-section-alt {
    padding: 7rem 0 10rem 0;
  }
}
@media (min-width: 1024px) {
  .top-section-alt {
    padding: 9rem 0 14rem 0;
  }
}
@media (min-width: 1352px) {
  .top-section-alt {
    padding: 10rem 0 16rem 0;
  }
}
@media (min-width: 1900px) {
  .top-section-alt {
    padding: 10rem 0 20rem 0;
  }
}

.terms-padding {
  padding: 6rem 0 3rem 0;
}
@media (min-width: 768px) {
  .terms-padding {
    padding: 7rem 0 4rem 0;
  }
}
@media (min-width: 1024px) {
  .terms-padding {
    padding: 9rem 0 5rem 0;
  }
}
@media (min-width: 1352px) {
  .terms-padding {
    padding: 10rem 0 6rem 0;
  }
}

.top-section-platform {
  position: relative;
  overflow: hidden;
}
.top-section-platform .video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.top-section-platform .video-bg::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 2;
  background: #000000;
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 6, 38, 0) 75%);
}
.top-section-platform .video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.top-section-platform .top-wrap {
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-end;
  gap: 2.5rem;
  height: 100vh;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .top-section-platform .top-wrap {
    padding-bottom: 4rem;
  }
}
@media (min-width: 1024px) {
  .top-section-platform .top-wrap {
    gap: 4rem;
  }
}
@media (min-width: 1352px) {
  .top-section-platform .top-wrap {
    padding-bottom: 5rem;
  }
}
@media (min-width: 1900px) {
  .top-section-platform .top-wrap {
    padding-bottom: 6rem;
    gap: 6rem;
  }
}
.top-section-platform .head {
  position: relative;
  z-index: 2;
  gap: 0;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 1024px) {
  .top-section-platform .head {
    width: 100%;
    max-width: 700px;
  }
}
@media (min-width: 1352px) {
  .top-section-platform .head {
    max-width: 800px;
  }
}
@media (min-width: 1900px) {
  .top-section-platform .head {
    max-width: 1000px;
  }
}
.top-section-platform .head p {
  z-index: 5;
  color: white;
}
@media (min-width: 1024px) {
  .top-section-platform .head p {
    width: 100%;
    max-width: 550px;
  }
}
@media (min-width: 1352px) {
  .top-section-platform .head p {
    max-width: 700px;
  }
}
.top-section-platform .head h1 {
  text-wrap: balance;
}
.top-section-platform .head h5 {
  z-index: 5;
  font-weight: 400;
  font-size: clamp(1rem, 1.1vw, 1.2rem);
}
@media (min-width: 1024px) {
  .top-section-platform .head h5 {
    width: 100%;
    max-width: 750px;
    font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  }
}
@media (min-width: 1352px) {
  .top-section-platform .head h5 {
    max-width: 900px;
  }
}
@media (min-width: 1900px) {
  .top-section-platform .head h5 {
    max-width: 1100px;
  }
}
.top-section-platform .head .buttons {
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .top-section-platform .head .buttons {
    gap: 1rem;
    flex-direction: row;
  }
}
.top-section-platform .head .buttons a {
  min-width: 220px;
}
.top-section-platform .head .title {
  width: 100%;
  position: relative;
  z-index: 5;
}
.top-section-platform .head .title .back-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: max-content;
  z-index: 1;
  height: 50px;
}
@media (min-width: 1024px) {
  .top-section-platform .head .title .back-title {
    top: 5%;
    height: 75px;
  }
}
@media (min-width: 1352px) {
  .top-section-platform .head .title .back-title {
    height: 100px;
  }
}
@media (min-width: 1900px) {
  .top-section-platform .head .title .back-title {
    height: 125px;
  }
}
.top-section-platform .head .title .back-title img {
  max-width: none;
  height: 100%;
  width: auto;
}
.top-section-platform .head .title .front-title {
  padding: 2rem 0;
  position: relative;
  z-index: 2;
  color: #fff;
}
.top-section-platform .top-right,
.top-section-platform .top-left {
  pointer-events: none;
}

.content-editor .content-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .content-editor .content-wrap {
    gap: 3rem;
  }
}
@media (min-width: 1352px) {
  .content-editor .content-wrap {
    gap: 4rem;
  }
}
.content-editor .content-wrap .imgWrap {
  width: 100%;
}
@media (min-width: 1024px) {
  .content-editor .content-wrap .imgWrap {
    width: 60%;
  }
}
@media (min-width: 1352px) {
  .content-editor .content-wrap .imgWrap {
    width: 50%;
  }
}
.content-editor .content-wrap .content-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .content-editor .content-wrap .content-section {
    flex-direction: row;
    flex-flow: wrap;
    justify-content: space-between;
    gap: 2rem 0;
  }
}
@media (min-width: 1024px) {
  .content-editor .content-wrap .content-section {
    gap: 2.5rem 0;
  }
}
@media (min-width: 1352px) {
  .content-editor .content-wrap .content-section {
    gap: 3rem 0;
  }
}
.content-editor .content-wrap .content-section .top-border {
  text-transform: uppercase;
  width: 100%;
  padding: 0 0 1rem 0;
  border-bottom: 4px solid rgb(221, 17, 32);
  color: rgb(221, 17, 32);
}
.content-editor .content-wrap .content-section .content {
  width: 95%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .content-editor .content-wrap .content-section .content {
    width: 60%;
  }
}
@media (min-width: 1352px) {
  .content-editor .content-wrap .content-section .content {
    gap: 1.5rem;
  }
}
.content-editor .content-wrap .content-section .content ul {
  list-style-type: disc; /* default bullet */
  padding-left: 1.5rem; /* space from the edge */
}
.content-editor .content-wrap .content-section .content ul li {
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  line-height: 1.5;
  color: #101010;
}
.content-editor .content-wrap .content-section .content h4 {
  padding: 0.5rem 0;
}
.content-editor .content-wrap .content-section .content .share-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
}
@media (min-width: 768px) {
  .content-editor .content-wrap .content-section .content .share-wrap {
    flex-direction: row;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .content-editor .content-wrap .content-section .content .share-wrap {
    margin-top: 1rem;
  }
}
.content-editor .content-wrap .content-section .content .share-wrap .btn--red {
  min-height: 100%;
}
.content-editor .content-wrap .content-section .content .share {
  width: fit-content;
  background: rgb(221, 17, 32);
  display: flex;
  align-items: center;
}
.content-editor .content-wrap .content-section .content .share h6 {
  line-height: 1;
  color: white;
  width: fit-content;
}
.content-editor .content-wrap .content-section .content .share .socials {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.content-editor .content-wrap .content-section .content .share .socials .glass {
  border-radius: 999999px !important;
  padding: 0.5rem;
}
.content-editor .content-wrap .content-section .content .share .socials img {
  height: auto;
  width: 16px;
}
@media (min-width: 1024px) {
  .content-editor .content-wrap .content-section .post-wrap {
    width: 35%;
    position: sticky;
    top: 150px;
    align-self: flex-start;
  }
}
.content-editor .content-wrap .content-section .post-wrap .posts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 1352px) {
  .content-editor .content-wrap .content-section .post-wrap .posts {
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .content-editor .content-wrap .content-section .post-wrap .posts h4 {
    text-align: right;
  }
}
.content-editor .content-wrap .content-section .post-wrap .posts a {
  transition: 0.2s ease all;
  border-radius: 10px;
  padding: 0.25rem;
  display: flex;
  align-items: stretch;
  background: #f3f3f3;
}
.content-editor .content-wrap .content-section .post-wrap .posts a:hover {
  background: rgb(221, 17, 32);
  color: white;
}
.content-editor .content-wrap .content-section .post-wrap .posts a .imgWrap {
  width: 40%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 10px;
  height: 100%;
}
.content-editor .content-wrap .content-section .post-wrap .posts a .imgWrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.content-editor .content-wrap .content-section .post-wrap .posts a h4 {
  text-align: left;
}
.content-editor .content-wrap .content-section .post-wrap .posts a .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 1rem;
  width: 60%;
}
@media (min-width: 1352px) {
  .content-editor .content-wrap .content-section .post-wrap .posts a .content {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1900px) {
  .content-editor .content-wrap .content-section .post-wrap .posts a .content {
    padding: 0 2rem;
  }
}

.fourOfour {
  height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  color: white;
  background: rgb(221, 17, 32);
}
@media (min-width: 768px) {
  .fourOfour {
    height: calc(100vh - 140px);
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .fourOfour {
    height: calc(100vh - 185px);
    gap: 2rem;
  }
}
.fourOfour h1 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 8rem;
  line-height: 8rem;
}
@media (min-width: 768px) {
  .fourOfour h1 {
    font-size: 12rem;
    line-height: 12rem;
  }
}
@media (min-width: 1900px) {
  .fourOfour h1 {
    font-size: 20rem;
    line-height: 20rem;
  }
}
.fourOfour h3 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 1rem;
  line-height: 1.4rem;
  width: 80%;
  text-align: center;
}
@media (min-width: 768px) {
  .fourOfour h3 {
    width: 60%;
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
}

.content-editor .content-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .content-editor .content-wrap {
    gap: 3rem;
  }
}
@media (min-width: 1352px) {
  .content-editor .content-wrap {
    gap: 4rem;
  }
}
.content-editor .content-wrap .imgWrap {
  width: 100%;
}
@media (min-width: 1024px) {
  .content-editor .content-wrap .imgWrap {
    width: 60%;
  }
}
@media (min-width: 1352px) {
  .content-editor .content-wrap .imgWrap {
    width: 50%;
  }
}
.content-editor .content-wrap .terms-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .content-editor .content-wrap .terms-section {
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .content-editor .content-wrap .terms-section {
    width: 75%;
    flex-direction: row;
    flex-flow: wrap;
  }
}
@media (min-width: 1352px) {
  .content-editor .content-wrap .terms-section {
    gap: 2rem;
    width: 60%;
  }
}
.content-editor .content-wrap .terms-section h3 {
  font-family: "Barlow Semi Condensed", sans-serif;
}
.content-editor .content-wrap .terms-section .Accordion {
  display: flex;
  flex-direction: column;
}
.content-editor .content-wrap .terms-section .Accordion-item {
  border-bottom: 1px solid #ddd;
}
.content-editor .content-wrap .terms-section .Accordion-item.is-active .Accordion-header {
  color: rgb(221, 17, 32);
}
.content-editor .content-wrap .terms-section .Accordion-item.is-active .Accordion-header svg {
  rotate: 90deg;
}
.content-editor .content-wrap .terms-section .Accordion-header {
  transition: 0.2s ease all;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.5rem 0;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
@media (min-width: 1352px) {
  .content-editor .content-wrap .terms-section .Accordion-header {
    align-items: center;
  }
}
.content-editor .content-wrap .terms-section .Accordion-header svg {
  flex-shrink: 0;
  transition: 0.2s ease all;
  padding: 0.5rem;
  aspect-ratio: 1/1;
  border-radius: 999999px;
  background: #f3f3f3;
  width: 32px;
  height: 32px;
  max-width: none;
}
.content-editor .content-wrap .terms-section .Accordion-header svg path {
  fill: rgb(221, 17, 32);
}
.content-editor .content-wrap .terms-section .Accordion-header svg:hover {
  background: rgb(221, 17, 32);
}
.content-editor .content-wrap .terms-section .Accordion-header:hover {
  color: rgb(221, 17, 32);
}
.content-editor .content-wrap .terms-section .Accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.content-editor .content-wrap .terms-section .Accordion-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 0 1.5rem;
  gap: 1rem;
}
@media (min-width: 768px) {
  .content-editor .content-wrap .terms-section .Accordion-inner {
    gap: 1.5rem;
  }
}

.overview .head h2 {
  color: rgb(221, 17, 32);
}
.overview .head p {
  color: #101010;
}
.overview .wrap {
  padding: 8rem 0 4rem 0;
}
@media (min-width: 1024px) {
  .overview .wrap {
    padding: 6rem 0 4rem 0;
  }
}
@media (min-width: 1352px) {
  .overview .wrap {
    padding: 8rem 0;
  }
}
.overview .statistics {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
@media (min-width: 1024px) {
  .overview .statistics {
    gap: 1.5rem;
  }
}
@media (min-width: 1352px) {
  .overview .statistics {
    gap: 2rem;
  }
}
.overview .statistics .stat {
  transition: 0.2s ease all;
  padding: 1rem;
  border-radius: 10px;
  background: #f3f3f3;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #101010;
}
@media (min-width: 768px) {
  .overview .statistics .stat {
    padding: 2rem;
  }
}
@media (min-width: 1024px) {
  .overview .statistics .stat {
    padding: 2rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 1352px) {
  .overview .statistics .stat {
    padding: 2.5rem;
  }
}
.overview .statistics .stat p {
  color: #101010;
}
@media (min-width: 1024px) {
  .overview .statistics .stat p {
    text-align: right;
    font-size: clamp(1.4rem, 1.8vw, 1.8rem);
    width: 45%;
  }
}
.overview .statistics .stat p strong,
.overview .statistics .stat p b {
  font-weight: bold;
}
.overview .statistics .active {
  background: rgb(221, 17, 32);
  color: white;
}
.overview .statistics .active p {
  color: white;
}

.services .wrap {
  border-radius: 10px;
  padding: 1.5rem;
}
@media (min-width: 1024px) {
  .services .wrap {
    padding: 2.5rem;
    flex-direction: row;
    align-items: center;
  }
}
@media (min-width: 1352px) {
  .services .wrap {
    padding: 4rem;
  }
}
@media (min-width: 1900px) {
  .services .wrap {
    padding: 6rem;
  }
}
@media (min-width: 1024px) {
  .services .head {
    align-items: flex-start;
    text-align: left;
    width: 50%;
  }
}
@media (min-width: 1352px) {
  .services .head p {
    width: 80%;
  }
}
.services .services-wrap {
  padding: 0;
  width: 100%;
  border-radius: 10px;
  background: white;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .services .services-wrap {
    width: 50%;
  }
}
.services .services-wrap .selectors {
  padding: 0.25rem;
  background: #f3f3f3;
}
@media (min-width: 1024px) {
  .services .services-wrap .selectors {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.services .services-wrap .selectors p {
  border-radius: 5px;
  width: 100%;
  transition: all ease 0.3s;
  padding: 0.75rem 0.25rem;
  text-align: center;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: bolder;
}
@media (min-width: 1352px) {
  .services .services-wrap .selectors p {
    padding: 0.75rem;
  }
}
.services .services-wrap .selectors .active {
  background: white;
  color: rgb(221, 17, 32);
}
.services .services-wrap .services-slider {
  display: flex;
  width: 100%;
}
.services .services-wrap .services-slider .slick-track {
  display: flex;
  align-items: center;
}
.services .services-wrap .services-slider .service {
  height: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .services .services-wrap .services-slider .service {
    justify-content: flex-start;
    background: white;
    padding: 4rem 2rem;
  }
}
@media (min-width: 1352px) {
  .services .services-wrap .services-slider .service {
    padding: 4rem;
  }
}
@media (min-width: 1900px) {
  .services .services-wrap .services-slider .service {
    padding: 4rem 6rem;
  }
}

.testimonials .test-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
@media (min-width: 1024px) {
  .testimonials .test-wrap {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.testimonials .review-embla {
  width: 100%;
  position: relative;
}
@media (min-width: 1024px) {
  .testimonials .review-embla {
    width: 80%;
  }
}
@media (min-width: 1352px) {
  .testimonials .review-embla {
    width: 75%;
  }
}
.testimonials .review-embla::before {
  content: "";
  width: 100%;
  height: 20%;
  top: -1%;
  left: 0;
  position: absolute;
  z-index: 4;
  background: #ffffff;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}
.testimonials .review-embla::after {
  content: "";
  width: 100%;
  height: 20%;
  bottom: -1%;
  left: 0;
  position: absolute;
  z-index: 4;
  background: #ffffff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}
@media (min-width: 1024px) {
  .testimonials .review-embla::after {
    bottom: 0;
  }
}
.testimonials .embla__viewport {
  position: relative;
  overflow: hidden;
  height: 60vh;
  max-height: 600px;
}
@media (min-width: 1024px) {
  .testimonials .embla__viewport {
    height: 50vh;
    max-height: 500px;
  }
}
.testimonials .embla__container {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.testimonials .embla__slide {
  flex: 0 0 33.333%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease 0.3s;
}
.testimonials .embla__slide:first-of-type {
  padding-top: 10%;
}
@media (min-width: 1024px) {
  .testimonials .embla__slide:first-of-type {
    padding-top: 5%;
  }
}
@media (min-width: 1900px) {
  .testimonials .embla__slide:first-of-type {
    padding-top: 2.5%;
  }
}
.testimonials .embla__slide:last-of-type {
  padding-bottom: 10%;
}
@media (min-width: 1024px) {
  .testimonials .embla__slide:last-of-type {
    padding-bottom: 5%;
  }
}
@media (min-width: 1900px) {
  .testimonials .embla__slide:last-of-type {
    padding-bottom: 4.5%;
  }
}
.testimonials .is-selected .review .content h2 {
  color: rgb(221, 17, 32);
}
.testimonials .review {
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}
@media (min-width: 1024px) {
  .testimonials .review {
    margin: 1.5rem 0;
  }
}
.testimonials .review .details {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .testimonials .review .details {
    align-items: stretch;
    gap: 2.5rem;
  }
}
@media (min-width: 1352px) {
  .testimonials .review .details {
    gap: 3rem;
  }
}
@media (min-width: 1900px) {
  .testimonials .review .details {
    gap: 4rem;
  }
}
.testimonials .review .details .imgWrap {
  min-height: 100px;
  width: 20%;
  align-self: stretch;
  aspect-ratio: auto;
  border-radius: 10px;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .testimonials .review .details .imgWrap {
    min-height: 250px;
    width: 20%;
    align-self: stretch;
    aspect-ratio: auto;
    border-radius: 10px;
  }
}
@media (min-width: 1352px) {
  .testimonials .review .details .imgWrap {
    width: 17.5%;
  }
}
@media (min-width: 1900px) {
  .testimonials .review .details .imgWrap {
    min-height: 350px;
  }
}
.testimonials .review .details .imgWrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonials .review .details .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
}
.testimonials .review .details .content .quote {
  display: none;
}
@media (min-width: 1024px) {
  .testimonials .review .details .content .quote {
    padding-top: 1rem;
    display: block;
  }
}
.testimonials .review .details .content .grey {
  color: #9c9c9c;
}
.testimonials .review .details .content h2 {
  transition: 0.2s ease all;
}
.testimonials .review .details .content h5 {
  font-family: "Bricolage Grotesque", sans-serif;
}
.testimonials .review .quote-mob {
  font-family: "Bricolage Grotesque", sans-serif;
}
@media (min-width: 1024px) {
  .testimonials .review .quote-mob {
    display: none;
  }
}
.testimonials .buttons {
  display: none;
}
@media (min-width: 1024px) {
  .testimonials .buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
}
.testimonials .buttons .review-next,
.testimonials .buttons .review-prev {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s ease all;
}
.testimonials .buttons .review-next:hover,
.testimonials .buttons .review-prev:hover {
  background: rgb(221, 17, 32);
}
.testimonials .dotss {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
@media (min-width: 1024px) {
  .testimonials .dotss {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
}
.testimonials .dotss .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: 0.3s ease;
}
.testimonials .dotss .dot.active {
  background: #c40000;
  transform: scale(1.2);
}
.testimonials .dotss .review-next,
.testimonials .dotss .review-prev {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 999999px;
  width: 30px;
  height: 30px;
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
}
@media (min-width: 1024px) {
  .testimonials .dotss .review-next,
  .testimonials .dotss .review-prev {
    display: none;
  }
}
.testimonials .dotss .review-next svg,
.testimonials .dotss .review-prev svg {
  display: block;
}

.spotlight {
  padding-bottom: 10rem;
}
@media (min-width: 1024px) {
  .spotlight {
    padding-bottom: 13rem;
  }
}
@media (min-width: 1352px) {
  .spotlight {
    padding-bottom: 16rem;
  }
}
@media (min-width: 1900px) {
  .spotlight {
    padding-bottom: 22rem;
  }
}

.video-wrapper {
  position: relative;
  cursor: pointer;
  width: 100%;
  display: flex;
  justify-content: center;
}
.video-wrapper video {
  width: 85%;
  display: block;
  border-radius: 12px;
}
@media (min-width: 768px) {
  .video-wrapper video {
    width: 50%;
  }
}
.video-wrapper .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: #ff0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .video-wrapper .play-button {
    width: 80px;
    height: 80px;
  }
}
.video-wrapper .play-button .triangle {
  width: 0;
  height: 0;
  border-left: 16px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
@media (min-width: 768px) {
  .video-wrapper .play-button .triangle {
    border-left: 18px solid #fff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
  }
}
.video-wrapper:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.4);
  z-index: 99999;
  display: none;
}

@media (min-width: 1024px) {
  .video-wrapper.is-active {
    position: fixed;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    z-index: 99999;
  }
}
.video-wrapper.is-active video {
  width: 100%;
}

.why-us .why-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem !important;
}
@media (min-width: 1024px) {
  .why-us .why-wrap {
    gap: 6rem;
    flex-direction: row;
  }
}
@media (min-width: 1352px) {
  .why-us .why-wrap {
    gap: 8rem;
  }
}
@media (min-width: 1024px) {
  .why-us .head {
    width: 40%;
    align-items: flex-start;
  }
}
.why-us .head h2 {
  color: rgb(221, 17, 32);
}
@media (min-width: 1024px) {
  .why-us .head h2 {
    text-align: left;
  }
}
.why-us .head p {
  color: #101010;
}
@media (min-width: 1024px) {
  .why-us .head p {
    text-align: left;
  }
}
.why-us .columns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .why-us .columns {
    flex-direction: row;
    align-items: stretch;
    width: 60%;
  }
}
.why-us .columns .col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .why-us .columns .col {
    width: 33%;
  }
}
.why-us .columns .col .stat-box {
  padding: 1.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  border-radius: 10px;
  background: rgb(221, 17, 32);
  color: white;
  text-align: center;
}
@media (min-width: 1352px) {
  .why-us .columns .col .stat-box {
    padding: 2rem;
  }
}
.why-us .columns .col .text-box {
  overflow: hidden;
  border-radius: 10px;
  background: #f3f3f3;
  text-align: left;
}
@media (min-width: 1024px) {
  .why-us .columns .col .text-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.why-us .columns .col .text-box .content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start !important;
  padding: 1.5rem;
}
@media (min-width: 1024px) {
  .why-us .columns .col .text-box .content {
    padding: 1rem;
  }
}
@media (min-width: 1352px) {
  .why-us .columns .col .text-box .content {
    padding: 1.5rem;
  }
}
@media (min-width: 1900px) {
  .why-us .columns .col .text-box .content {
    padding: 2rem;
  }
}
.why-us .columns .col .text-box h4 {
  font-family: "Bricolage Grotesque", sans-serif;
  color: rgb(221, 17, 32);
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
}
@media (min-width: 1024px) {
  .why-us .columns .col .text-box h4 {
    font-size: clamp(1.1rem, 1.4vw, 1.4rem);
  }
}
.why-us .columns .col .text-box h6 {
  opacity: 0.7;
}
.why-us .columns .col .text-box h4,
.why-us .columns .col .text-box h6 {
  width: 90%;
}
@media (min-width: 1024px) {
  .why-us .columns .col .text-box h4,
  .why-us .columns .col .text-box h6 {
    width: 100%;
  }
}
.why-us .columns .col .text-box img {
  width: 100%;
}
.why-us .columns .col:first-of-type .stat-box {
  height: 25%;
}
@media (min-width: 1352px) {
  .why-us .columns .col:first-of-type .stat-box {
    height: auto;
  }
}
.why-us .columns .col:first-of-type .text-box {
  height: 75%;
}
.why-us .columns .col:last-of-type .stat-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
.why-us .columns .middle-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
}
@media (min-width: 1024px) {
  .why-us .columns .middle-image {
    height: auto;
    width: 33%;
  }
}
.why-us .columns .middle-image img {
  width: 100%;
}

.team {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team .head h2 {
  color: rgb(221, 17, 32);
}
.team .head p {
  color: #101010;
}
.team .team-slider {
  width: 100%;
  margin-bottom: 0 !important;
}
@media (min-width: 1024px) {
  .team .team-slider {
    width: 90%;
  }
}
@media (min-width: 1352px) {
  .team .team-slider {
    width: 75%;
  }
}
.team .team-slider .team-member {
  overflow: hidden;
  position: relative;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  aspect-ratio: 12/16;
  border-radius: 10px;
  transition: all ease 0.3s;
  margin: 0 0.5rem;
}
@media (min-width: 1024px) {
  .team .team-slider .team-member {
    margin: 0 1rem;
  }
}
@media (min-width: 1352px) {
  .team .team-slider .team-member {
    margin: 0 1.5rem;
  }
}
.team .team-slider .team-member::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: 2;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}
@media (min-width: 1024px) {
  .team .team-slider .team-member::after {
    height: 50%;
  }
}
.team .team-slider .team-member .team-content {
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1.5rem;
  z-index: 5;
  flex-grow: 0;
  transition: all 0.5s ease;
  background: transparent;
}
@media (min-width: 1352px) {
  .team .team-slider .team-member .team-content {
    height: 45%;
    padding: 2rem;
  }
}
@media (min-width: 1900px) {
  .team .team-slider .team-member .team-content {
    height: 32.5%;
  }
}
.team .team-slider .team-member .team-content h4 {
  font-family: "Bricolage Grotesque", sans-serif;
  color: white;
  transition: all 0.5s ease;
}
.team .team-slider .team-member .team-content h5 {
  margin-bottom: 0.25rem;
  color: #9c9c9c;
  font-family: "Bricolage Grotesque", sans-serif;
  transition: all 0.5s ease;
}
.team .team-slider .team-member .team-content p {
  color: #f3f3f3;
  text-align: center;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transform: translateY(10px);
  transition: max-height 0.4s ease, transform 0.4s ease, opacity 0.3s ease 0.4s;
}
.team .team-slider .team-member .team-content .socials {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.5s ease;
}
.team .team-slider .team-member .team-content .socials .glass {
  border-radius: 999999px !important;
  padding: 0.5rem;
  transition: all 0.5s ease;
}
.team .team-slider .team-member .team-content .socials img {
  height: 18px;
  width: auto;
  transition: all 0.5s ease;
}
.team .team-slider .team-member .team-content.active {
  flex-grow: 1;
  background: rgb(221, 17, 32);
  height: 100%;
}
.team .team-slider .team-member .team-content.active p {
  height: auto;
  opacity: 1;
  transform: translateY(0);
}
.team .team-slider .team-member .team-content.active h5 {
  color: white;
}
.team .team-slider .team-member .team-content.active .socials {
  transform: translateY(0);
  opacity: 1;
}
.team .team-slider .slick-dots {
  margin-top: 2rem;
  position: static;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  bottom: 20px;
}
@media (min-width: 1024px) {
  .team .team-slider .slick-dots {
    display: none !important;
  }
}
.team .team-slider .slick-dots li {
  margin: 0;
  width: auto;
  height: auto;
}
.team .team-slider .slick-dots li button {
  font-size: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  padding: 0;
  border: none;
  background: #9c9c9c;
  transition: all 0.3s ease;
}
.team .team-slider .slick-dots li button::before {
  display: none;
}
.team .team-slider .slick-dots li button:hover {
  background: rgb(221, 17, 32);
}
.team .team-slider .slick-dots li.slick-active button {
  transform: scale(1.1);
  background: rgb(221, 17, 32);
}

.news-showcase {
  width: 100%;
}
.news-showcase .show-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
@media (min-width: 1352px) {
  .news-showcase .show-wrap {
    gap: 4rem;
  }
}
.news-showcase .show-wrap .showcase {
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  background: #f3f3f3;
  overflow-x: hidden;
}
@media (min-width: 1024px) {
  .news-showcase .show-wrap .showcase {
    border-radius: 15px;
    flex-direction: row;
    align-items: stretch;
  }
}
.news-showcase .show-wrap .showcase:hover {
  color: #101010;
}
@media (min-width: 1024px) {
  .news-showcase .show-wrap .showcase .imgWrap {
    height: auto;
    width: 50%;
  }
}
@media (min-width: 1352px) {
  .news-showcase .show-wrap .showcase .imgWrap {
    width: 52.5%;
  }
}
@media (min-width: 1024px) {
  .news-showcase .show-wrap .showcase .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    padding: 2.5rem;
    width: 50%;
  }
}
@media (min-width: 1352px) {
  .news-showcase .show-wrap .showcase .content {
    padding: 3.5rem;
    width: 47.5%;
  }
}
@media (min-width: 1900px) {
  .news-showcase .show-wrap .showcase .content {
    padding: 4rem;
  }
}
.news-showcase .show-wrap .showcase .content h3 {
  color: rgb(221, 17, 32);
}
.news-showcase .show-wrap .showcase .content .btn {
  margin-top: 0.5rem;
}
.news-showcase .show-wrap .filters {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .news-showcase .show-wrap .filters {
    width: 100%;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
  }
}
.news-showcase .show-wrap .filters h2,
.news-showcase .show-wrap .filters h3 {
  text-align: center;
  color: rgb(221, 17, 32);
}
@media (min-width: 1024px) {
  .news-showcase .show-wrap .filters h2,
  .news-showcase .show-wrap .filters h3 {
    text-align: left;
  }
}
.news-showcase .show-wrap .filters h2 strong,
.news-showcase .show-wrap .filters h3 strong {
  color: #101010;
}
.news-showcase .show-wrap .filters .search-form {
  position: relative;
}
@media (min-width: 1024px) {
  .news-showcase .show-wrap .filters .search-form {
    width: calc(33% - 0.3333rem);
  }
}
.news-showcase .show-wrap .filters .search-form .search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url(/wp-content/themes/arnold-ash/img/search-black.svg) no-repeat center;
  background-size: contain;
  pointer-events: none;
}
.news-showcase .show-wrap .filters .search-form input[type=search]::-webkit-search-cancel-button {
  display: none;
}
.news-showcase .show-wrap .filters .search-form input {
  padding: 0.75rem 0.75rem 0.75rem 2rem;
  border-radius: 10px;
  border: 2px solid rgb(221, 17, 32);
  color: #101010;
  font-family: "Barlow Semi Condensed", sans-serif;
  outline: 0;
  appearance: none;
  width: 100%;
}
.news-showcase .show-wrap .filters .search-form input::placeholder {
  text-align: center;
  color: #101010;
  opacity: 0.7;
}
@media (min-width: 1024px) {
  .news-showcase .show-wrap .filters .search-form input::placeholder {
    text-align: left;
  }
}
.news-showcase .show-wrap .news-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .news-showcase .show-wrap .news-grid {
    flex-direction: row;
    flex-flow: wrap;
  }
}
@media (min-width: 1024px) {
  .news-showcase .show-wrap .news-grid {
    margin-top: -1rem;
  }
}
.news-showcase .show-wrap .news-grid .article {
  justify-content: flex-start;
  width: 100%;
}
@media (min-width: 1024px) {
  .news-showcase .show-wrap .news-grid .article {
    width: calc(33% - 0.82rem);
    height: auto;
  }
}
.news-showcase .show-wrap .news-grid .article:hover .text-link {
  color: white;
}
.news-showcase .show-wrap .news-grid .article:hover .text-link::after {
  transform: scaleX(1);
  transform-origin: left;
}
.news-showcase .show-wrap .news-grid .article .text {
  height: auto;
  flex-grow: 1;
}
.news-showcase .show-wrap .news-grid .article .text-link {
  width: fit-content;
  color: rgb(221, 17, 32);
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.news-showcase .show-wrap .news-grid .article .text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: white;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.impact-embla {
  overflow: hidden;
}
.impact-embla__viewport {
  overflow: hidden;
  width: 100%;
}
.impact-embla__container {
  padding: 1rem 0;
  display: flex;
}
@media (min-width: 768px) {
  .impact-embla__container {
    padding: 2rem 0;
  }
}
@media (min-width: 1352px) {
  .impact-embla__container {
    padding: 3rem 0;
  }
}
.impact-embla__slide {
  transition: 0.2s ease all;
  flex: 0 0 70%;
  position: relative;
  margin: 0 0.75rem;
}
@media (min-width: 768px) {
  .impact-embla__slide {
    flex: 0 0 50%;
    margin: 0 2rem;
  }
}
@media (min-width: 1024px) {
  .impact-embla__slide {
    flex: 0 0 33.3333%;
    margin: 0 2rem;
  }
}
@media (min-width: 1352px) {
  .impact-embla__slide {
    margin: 0 2.5rem;
  }
}
@media (min-width: 1900px) {
  .impact-embla__slide {
    margin: 0 3.5rem;
  }
}
.impact-embla .is-active {
  scale: 1.1;
}
@media (min-width: 768px) {
  .impact-embla .is-active {
    scale: 1.25;
  }
}
.impact-embla__imgWrap {
  width: 100%;
}
.impact-embla img {
  display: block;
  width: 100%;
  height: auto;
}

.success-stories .impact-slider .imgWrap {
  transition: all ease 0.3s;
  margin: 0 1.2rem;
}
@media (min-width: 1024px) {
  .success-stories .impact-slider .imgWrap {
    margin: 0 2rem;
  }
}
@media (min-width: 1352px) {
  .success-stories .impact-slider .imgWrap {
    margin: 0 2.5rem;
  }
}
@media (min-width: 1900px) {
  .success-stories .impact-slider .imgWrap {
    margin: 0 3rem;
  }
}
.success-stories .impact-slider .slick-active {
  scale: 1.2;
}
.success-stories .impact-slider .slick-track {
  padding: 1rem 0;
}
@media (min-width: 1024px) {
  .success-stories .impact-slider .slick-track {
    padding: 1.75rem 0;
  }
}
@media (min-width: 1352px) {
  .success-stories .impact-slider .slick-track {
    padding: 2rem 0;
  }
}
@media (min-width: 1900px) {
  .success-stories .impact-slider .slick-track {
    padding: 2.25rem 0;
  }
}
.success-stories .head {
  color: #101010;
}
.success-stories .head h2 {
  color: rgb(221, 17, 32);
}
.success-stories .head p {
  color: #101010;
}
.success-stories .stories {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .success-stories .stories {
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    flex-flow: wrap;
  }
}
.success-stories .stories .story {
  display: flex;
  flex-direction: column;
  height: auto;
  border-radius: 10px;
  background: #f3f3f3;
  transition: 0.2s ease all;
}
@media (min-width: 768px) {
  .success-stories .stories .story {
    width: calc(50% - 0.5rem);
  }
}
@media (min-width: 1024px) {
  .success-stories .stories .story {
    border-radius: 15px;
    gap: 1rem;
    padding: 0.75rem;
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 1352px) {
  .success-stories .stories .story {
    padding: 1rem;
  }
}
.success-stories .stories .story:hover {
  background: rgb(221, 17, 32);
}
.success-stories .stories .story:hover .content {
  color: white;
}
.success-stories .stories .story:hover .content .text-link {
  color: white;
}
.success-stories .stories .story .content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .success-stories .stories .story .content {
    justify-content: center;
    padding: 1rem;
    width: 50%;
  }
}
@media (min-width: 1900px) {
  .success-stories .stories .story .content {
    padding: 2rem 1.25rem;
  }
}
.success-stories .stories .story .imgWrap {
  margin-bottom: auto;
}
@media (min-width: 1024px) {
  .success-stories .stories .story .imgWrap {
    margin-bottom: 0;
    height: auto;
    width: 45%;
  }
}
@media (min-width: 1352px) {
  .success-stories .stories .story .imgWrap {
    aspect-ratio: 1/1;
  }
}

.partners {
  position: relative;
}
.partners .trusted-slider {
  margin-bottom: 0 !important;
}
.partners .trusted-slider__viewport {
  overflow: hidden;
  width: 100%;
  margin: 3rem 0;
}
@media (min-width: 1024px) {
  .partners .trusted-slider__viewport {
    margin: 4rem 0;
  }
}
@media (min-width: 1352px) {
  .partners .trusted-slider__viewport {
    margin: 5rem 0;
  }
}
.partners .trusted-slider__container {
  display: flex;
  align-items: center;
}
.partners .trusted-slider__slide {
  flex: 0 0 75%;
  position: relative;
  margin: 0 0.5rem;
}
@media (min-width: 768px) {
  .partners .trusted-slider__slide {
    flex: 0 0 50%;
    margin: 0 1rem;
  }
}
@media (min-width: 1352px) {
  .partners .trusted-slider__slide {
    flex: 0 0 40%;
    margin: 0 1rem;
  }
}
.partners .trusted-slider .imgWrap {
  display: block;
  transition: all ease 0.3s;
  margin: 0 0.5rem;
}
@media (min-width: 1024px) {
  .partners .trusted-slider .imgWrap {
    margin: 0 1rem;
  }
}
.partners .trusted-slider img {
  width: 100%;
  height: auto;
  display: block;
}
.partners .arrows-dot {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.partners .arrows-dot .dots {
  position: static;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
  list-style: none;
}
.partners .arrows-dot .dots li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners .arrows-dot .dots li:hover {
  background: rgba(255, 255, 255, 0.8);
}
.partners .arrows-dot .dots li.active {
  background: #fff;
  transform: scale(1.1);
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
}
.partners .arrows-dot .next,
.partners .arrows-dot .prev {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 999999px;
  width: 30px;
  height: 30px;
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
}
.partners .arrows-dot .next svg,
.partners .arrows-dot .prev svg {
  display: block;
}

.organisations {
  background: white;
  background-image: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%), url(../img/world.svg);
  background-position: center 120%;
  background-size: 200% auto;
  background-repeat: no-repeat;
}
@media (min-width: 1024px) {
  .organisations {
    background-image: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.75) 100%), url(../img/world.svg);
    background-position: center 0%;
    background-size: 125% auto;
  }
}
.organisations .head h2 {
  color: rgb(221, 17, 32);
}
.organisations .head p {
  color: #101010;
}
.organisations .logo-slider__viewport {
  overflow: hidden;
  margin: 4rem 0 0 0;
}
@media (min-width: 1352px) {
  .organisations .logo-slider__viewport {
    margin: 5rem 0 0 0;
  }
}
.organisations .logo-slider__container {
  display: flex;
  align-items: center;
}
.organisations .logo-slider__slide {
  flex: 0 0 25%;
  margin: 0 0.25rem;
}
@media (min-width: 1024px) {
  .organisations .logo-slider__slide {
    flex: 0 0 15%;
    margin: 0 0.5rem;
  }
}
@media (min-width: 1352px) {
  .organisations .logo-slider__slide {
    flex: 0 0 12%;
  }
}
.organisations .logo-slider .imgWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #101010;
  aspect-ratio: 1/1;
  transition: 0.2s ease all;
  margin: 0 0.25rem;
  border: 2px solid #101010;
}
@media (min-width: 1352px) {
  .organisations .logo-slider .imgWrap {
    margin: 0 0.5rem;
  }
}
.organisations .logo-slider .imgWrap img {
  width: 75%;
  height: auto;
}

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