@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
*,
::before,
::after {
  box-sizing: border-box;
}

* {
  margin: 0px;
}

html,
body {
  height: 100%;
  font-family: Inter, sans-serif;
  font-size: 22px;
  line-height: 1.5;
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

input,
button,
textarea,
select {
  font: inherit;
}

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

.cm-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0px -15px;
}

.cm-col-1,
.cm-col-10,
.cm-col-11,
.cm-col-12,
.cm-col-2,
.cm-col-3,
.cm-col-4,
.cm-col-5,
.cm-col-6,
.cm-col-7,
.cm-col-8,
.cm-col-9 {
  padding-left: 0px;
  padding-right: 0px;
}

.cm-align-items {
  -webkit-box-align: center;
  align-items: center;
}

.cm-justify-center {
  -webkit-box-pack: center;
  justify-content: center;
}

.cm-justify-space-between {
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.cm-col-1 {
  flex: 0 0 8.33333%;
  max-width: 8.33333%;
}

.cm-col-2 {
  flex: 0 0 16.6667%;
  max-width: 16.6667%;
}

.cm-col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.cm-col-4 {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}

.cm-col-5 {
  flex: 0 0 41.6667%;
  max-width: 41.6667%;
}

.cm-col-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding-right: 50px
}

.cm-col-7 {
  flex: 0 0 58.3333%;
  max-width: 58.3333%;
}

.cm-col-8 {
  flex: 0 0 66.6667%;
  max-width: 66.6667%;
}

.cm-col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.cm-col-10 {
  flex: 0 0 83.3333%;
  max-width: 83.3333%;
}

.cm-col-11 {
  flex: 0 0 91.6667%;
  max-width: 91.6667%;
}

.cm-col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.content-wrapper {
  max-width: 1430px;
  margin: 0px auto;
  padding-left: 60px;
  padding-right: 60px;
}

.header-logo img {
  max-height: 65px;
}

.header-nav ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

.header-nav ul li {
  display: inline-block;
  margin-left: 25px;
}

.header-nav ul li a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 16px;
}

/* External link arrow icon */
.header-nav ul li a.external-link::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: 3px;
  background-image: url("data:image/svg+xml,%3Csvg fill='%23ffffff' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg data-name='Layer 2'%3E%3Cg data-name='diagonal-arrow-right-up'%3E%3Crect width='24' height='24' transform='rotate(180 12 12)' opacity='0'%3E%3C/rect%3E%3Cpath d='M18 7.05a1 1 0 0 0-1-1L9 6a1 1 0 0 0 0 2h5.56l-8.27 8.29a1 1 0 0 0 0 1.42 1 1 0 0 0 1.42 0L16 9.42V15a1 1 0 0 0 1 1 1 1 0 0 0 1-1z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}

/* Mobile responsive adjustments for external link icon */
@media (max-width: 767px) {
  .header-nav ul li a.external-link::after {
    width: 16px;
    height: 16px;
    margin-left: 2px;
  }
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  padding: 20px 60px;
  z-index: 11;
  width: 100%;
  position: fixed;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Header background on scroll */
header.scrolled {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Fallback for browsers without backdrop-filter support */
@supports not (backdrop-filter: blur(8px)) {
  header {
    background: rgba(0, 0, 0, 0.5);
  }
  
  header.scrolled {
    background: rgba(0, 0, 0, 0.85);
  }
}

.section {
  background-image: url("../images/section_1.jpg");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.hero-banner .cm-row {
  min-height: 95vh;
  align-items: flex-end;
  padding-top: 50px;
  padding-bottom: 100px;
}

.tagline {
  font-weight: 600;
  margin-bottom: 30px;
  font-size: 20px;
  line-height: inherit;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1 {
  font-size: 64px;
  line-height: 1;
  font-weight: normal;
  margin: 0px 0px 50px;
  text-shadow: rgb(0, 0, 0) 0px 0px 40px;
}

.join-now {
  max-width: 480px;
  margin: 0px auto;
}

.btn {
  background: rgb(179, 62, 150);
  color: rgb(255, 255, 255);
  display: inline-block;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  width: 195px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.btn:hover {
  background-color: rgb(0, 0, 0);
  border-color: rgb(255, 255, 255);
}

.join-now p {
  margin-bottom: 70px;
}

h3 {
  font-size: 60px;
  line-height: 1.15em;
  margin: 0px 0px 30px;
}

.section_2,
.section_4 {
  padding-top: 100px;
  padding-bottom: 100px;
  background-image: url("../images/section_2.png");
}

.cm-counter-item {
  border: 1px solid rgb(179, 62, 150);
  border-radius: 45px;
  background: rgb(0, 0, 0);
  width: 100%;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: rgb(179, 62, 150) 0px 0px 10px;
  margin-bottom: 40px;
  padding: 0px 30px;
  font-size: 18px;
  text-transform: uppercase;
}

.cm-counter-box {
  max-width: 364px;
  margin: 0px auto;
}

.counter-row .cm-col-4:nth-child(2) {
  border-left: 1px solid rgb(255, 255, 255);
  border-right: 1px solid rgb(255, 255, 255);
}

.counter-row .cm-col-4:nth-child(2) .cm-counter-box {
  margin: 0px auto;
}

.cm-counter-box h4 {
  max-width: 260px;
  min-height: 79px;
  font-size: 18px;
  text-transform: uppercase;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 60px;
  padding-right: 60px;
}

.section * {
  position: relative;
  z-index: 1;
}

.cm-counter-row {
  justify-content: space-between;
  padding: 80px 15px 100px;
}

.count-text {
  font-size: 100px;
  font-weight: bold;
  margin-bottom: 10px;
  vertical-align: baseline;
}

.section_6,
.section_8,
.community,
.bg-wrap {
  padding-top: 100px;
  padding-bottom: 100px;
  background-image: url("../images/section_2.png");
}

.section_10 {
  background: none;
}

.counter-row {
  margin-top: 50px;
}

.bg-wrap {
  background-size: cover;
  background-repeat: no-repeat;
}



p.count-tag {
  font-weight: 600;
  min-height: 62px;
}

footer .content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer {
  background: rgb(255, 255, 255);
  padding-top: 25px;
  padding-bottom: 25px;
  color: rgb(0, 0, 0);
}

.footer_logo img {
  max-height: 50px;
}

footer .content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

form label {
  display: block;
  margin-bottom: 20px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  background: transparent;
  border: 1px solid rgb(255, 255, 255);
  width: 100%;
  margin-bottom: 20px;
  padding: 0px 10px;
  height: 57px;
  color: rgb(255, 255, 255);
}

textarea {
  height: auto;
}

.section_4 h4 {
  font-size: 25px;
  line-height: 30px;
  min-height: 60px;
}

.logo-group {
  display: flex;
  flex-wrap: wrap;
  margin: 50px -10px;
}

.logo-group .logo-item {
  width: calc(25% - 20px);
  margin: 0px 10px 40px;
  background: rgb(255, 255, 255);
  display: flex;
  align-items: center;
/*  padding: 10px;*/
  justify-content: center;
}

#why_now p {
  max-width: 768px;
}

.logo-group .logo-item img {
  object-fit: contain;
  margin: 0 auto;
  width: 100%;
}

.section_5 {
  padding-top: 100px;
  padding-bottom: 60px;
}

.feature-row {
  margin-top: 100px;
}

.feature-row .cm-col-4:nth-child(2) {
  border-left: 1px solid rgb(255, 255, 255);
  border-right: 1px solid rgb(255, 255, 255);
}

.feature-row .icon-image {
  margin-bottom: 50px;
  max-height: 150px;
  width: auto;
}

.feature-row {
  font-size: 20px;
  line-height: 24px;
}

.feature-row .feature-item {
  max-width: 390px;
  padding-bottom: 0px;
  line-height: 1.5em;
  margin: 0px auto;
  padding-left: 15px;
  padding-right: 15px;
}

.feature-row .cm-col-4:nth-child(2) .feature-item {
  margin: 0px auto;
}

.feature-row .cm-col-4:last-child .feature-item {
  margin: 0px 0px 0px auto;
}

.member-row h2 {
  max-width: 750px;
}

.section_3 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section_3 .ordered-item h2 {
  font-size: 100px;
  line-height: 1;
}

.border-bottom {
  padding-bottom: 50px;
  margin-bottom: 50px;
}

.ordered-item h3 {
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  margin: 19px 0px 20px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.border-bottom .cm-col-4 {
  padding-top: 85px;
  font-size: 20px;
}

.sponsors-row img {
  width: 354px;
}

.sponsors-row .cm-col-6 {
  display: flex;
  flex-direction: column;
}

.image-col {
  min-height: 110px;
  margin-bottom: 50px;
}

.sponsors-row .sponsors-row-content {
  padding-top: 80px;
}

.sponsors-row .cm-col-6:last-child {
  border-left: 1px solid rgb(221, 221, 221);
  padding-left: 20px;
}

.sponsors-row .cm-col-6:first-child {
  padding-right: 20px;
}

.partner-item ul {
  padding: 0px;
  margin: 30px 0px 0px;
  list-style: none;
}

.partner-item ul li {
  position: relative;
  padding-left: 53px;
  font-size: 20px;
  margin-bottom: 20px;
}

.partner-item ul li::before {
  width: 0px;
  height: 0px;
  content: "";
  border-top: 13.5px solid transparent;
  border-left: 28px solid rgb(179, 62, 150);
  border-bottom: 13.5px solid transparent;
  position: absolute;
  left: 0px;
  top: 7px;
}

h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.5em;
}

.sponsors-row .cm-col-6:last-child img {
  padding-top: 30px;
}

.sponsors-row {
  margin-top: 30px;
}

.cm-slider-item {
  padding-left: 80px;
  padding-right: 60px;
  background-image: url("../images/quote_image.png");
  background-repeat: no-repeat;
  background-size: 60px;
  padding-top: 60px;
  visibility: hidden;
}

.swiper-slide-active {
  visibility: visible;
}

.cm-slider-item blockquote {
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 30px;
  max-width: 1200px;
}

.cm-slider-item p {
  text-transform: uppercase;
  font-weight: 100;
  letter-spacing: 0.1em;
}

.cm-slider-item blockquote {
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 30px;
  max-width: 1200px;
}

.cm-slider-item p {
  text-transform: uppercase;
  font-weight: 100;
}

.cm-slider {
  padding-left: 60px;
  padding-right: 60px;
}

.cm-slider .swiper-button-next,
.cm-slider .swiper-button-prev {
  border-top: 15px solid transparent;
  border-right: 25px solid rgb(179, 62, 150);
  border-bottom: 15px solid transparent;
  position: absolute;
  left: 0px;
  height: auto;
}

.cm-slider .swiper-button-next::after,
.cm-slider .swiper-button-prev::after {
  display: none;
}

.cm-slider .swiper-button-next {
  left: auto;
  right: 0px;
  border-left: 25px solid rgb(179, 62, 150);
  border-right: none;
}

.form-row p {
  max-width: 508px;
}

.form-row form {
  max-width: 620px;
}

.mobile-trigger {
  display: none;
}

.quote-section {
  padding: 0px;
  background-image: url("../images/section_2.png") !important;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: static;
}

.quote-section::before {
  display: none !important;
}

.quote-section .cm-row {
  min-height: auto;
  padding: 0;
  align-items: center;
}

.quote {
  max-width: 95%;
  padding-left: 83px;
  position: relative;
  background-image: url("../images/quote_image.png");
  background-repeat: no-repeat;
  background-size: 67px;
  font-size: 1rem;
}

.quote p.author {
  margin-top: 30px;
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
}

/* New Image-Based Quote Section Styles */
.quote-image-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.quote-image-desktop,
.quote-image-mobile {
  width: 100%;
  height: auto;
  display: block;
}

.quote-image-mobile {
  display: none !important;
}

@media (min-width: 768px) {
  .quote-image-mobile {
    display: none !important;
  }
  
  .quote-image-desktop {
    display: block !important;
  }
}

.quote-content {
  padding: 80px 0;
  background: transparent;
  position: relative;
}

.quote-divider {
  width: 100%;
  height: 1px;
  background-color: #B33E96;
  margin: 0 auto 40px;
}

.quote-content .quote-divider:last-child {
  margin: 40px auto 0;
}

.quote-content .quote {
  max-width: 95%;
  margin: 0 auto;
  text-align: left;
  background-image: url("../images/quote_image.png");
  background-repeat: no-repeat;
  background-size: 67px;
  padding-left: 83px;
  position: relative;
  font-size: 1rem;
}

.quote-content .quote p {
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  line-height: 150%;
  letter-spacing: 0%;
  margin-bottom: 30px;
  color: #fff;
}

.quote-content .quote p.author {
  margin-top: 30px;
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #fff;
  vertical-align: middle;
}

/* Mobile responsive styles */
@media (max-width: 767px) {
  .quote-image-container {
    width: 100%;
  }
  
  .quote-image-desktop {
    display: none !important;
  }
  
  .quote-image-mobile {
    display: block !important;
  }
  
  .quote-content {
    padding: 50px 20px;
    background: transparent;
  }
  
  .quote-divider {
    margin: 0 auto 30px;
  }
  
  .quote-content .quote-divider:last-child {
    margin: 30px auto 0;
  }
  
  .quote-content .quote {
    max-width: 100%;
    padding: 70px 20px 50px 45px;
    background-size: 25px;
    background-position: 12px 50px;
  }
  
  .quote-content .quote p {
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    line-height: 150%;
    letter-spacing: 0%;
  }
  
  .quote-content .quote p.author {
    font-size: 14px;
    line-height: 19px;
  }
}

.feature-item h2 {
  font-size: 160px;
  line-height: 1;
  margin-bottom: 20px;
}

.footer-left {
  display: flex;
  align-items: center;
}

.footer-icons {
  margin-right: 30px;
}

.footer-icons ul li img {
  height: 25px;
  vertical-align: middle;
}

.footer-icons ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
  line-height: 1;
}

.footer-icons ul li {
  display: inline-block;
  margin-left: 10px;
}

.logo-group .logo-item a {
  display: block;
  width: 100%;
  text-align: center;
}

.cm-row.press-items {
  padding-top: 80px;
  padding-bottom: 0;
}

.press-items a {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 600;
  color: rgb(255, 255, 255);
  text-decoration: none;
  background-image: url("../images/arrow_icon.png");
  background-repeat: no-repeat;
  background-position: right 3px;
  padding-right: 25px;
  line-height: 1;
  background-size: 11px;
}

.press-item p {
  margin: 0px 0px 20px;
}

.press-item img {
  height: 45px;
  object-fit: cover;
  width: auto;
  margin-bottom: 30px;
}

#press h3 {
  font-size: 24px;
  line-height: 1.5em;
  font-weight: normal;
}

#press h3 a,
#press h3 a:visited,
#press h3 a:active {
  color: rgb(255, 255, 255);
}

#join {
  padding-top: 80px;
}

#press h3 a:focus,
#press h3 a:hover {
  color: rgba(255, 255, 255, 0.816);
}

.press-item {
  margin-bottom: 80px;
  padding-right: 40px;
  font-size: 22px;
  line-height: 35px;
  font-weight: normal;
}

section#press {
  padding-top: 100px;
  padding-bottom: 100px;
  background-image: url("../images/press_bg.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.form-popup {
  position: fixed;
  z-index: 11;
  top: 0px;
  left: 0px;
  right: 0px;
  padding: 20px 0px;
  overflow-y: auto;
  height: 100%;
  text-align: center;
  display: none;
}

.form-popup.show {
  display: block;
}

.form-popup .form-modal {
  width: 748px;
  box-shadow: rgb(179, 62, 150) 0px 0px 20px;
  border: 1px solid rgb(179, 62, 150);
  border-radius: 20px;
  opacity: 1;
  background: rgb(0, 0, 0);
  margin: auto;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  padding: 64px;
  position: relative;
}

.form-popup::before {
  content: "";
  width: 1px;
  height: 100%;
  display: inline-block;
  vertical-align: middle;
}

.close_btn::before,
.close_btn::after {
  content: "";
  width: 25px;
  height: 3px;
  background: rgb(255, 255, 255);
  position: absolute;
  left: 0px;
  transform: rotate(45deg);
}

.close_btn {
  position: absolute;
  border: none;
  background: transparent;
  width: 25px;
  height: 25px;
  right: 35px;
  top: 35px;
  cursor: pointer;
}

.close_btn::after {
  transform: rotate(-45deg);
}

.form-popup .form-modal h3 {
  text-align: left;
  font: bold 40px / 50px Inter;
  color: rgb(255, 255, 255);
  opacity: 1;
  letter-spacing: 0px;
}

.form-modal p {
  text-align: left;
  letter-spacing: 0px;
  color: rgb(255, 255, 255);
  opacity: 1;
}

.inline-form form {
  display: flex;
  flex-wrap: wrap;
  padding-top: 10px;
}

.inline-form form label {
  letter-spacing: 0px;
}

.form-input.email {
  width: 66.6%;
  padding: 0px 15px;
}

.form-input.zip {
  width: 33.3%;
  padding: 0px 15px;
}

.inline-form {
  margin: 0px -15px;
}

.form-footer {
  padding: 0px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.form-footer a {
  text-decoration: underline;
  font: 20px / 40px Inter;
  letter-spacing: 0px;
  color: rgb(255, 255, 255);
}

.header-nav ul li a.btn {
  width: auto;
}

.btn_2::after {
  border-top: 7.5px solid transparent;
  border-left: 13px solid rgb(216, 118, 192);
  border-bottom: 7.5px solid transparent;
  content: "";
  position: absolute;
  right: 0px;
  top: 9px;
}

.btn_2 {
  color: rgb(216, 118, 192);
  text-decoration: none;
  font-weight: 600;
  padding-right: 22px;
  position: relative;
  text-transform: uppercase;
}

.page-content {
  background: rgb(255, 255, 255);
  color: rgb(112, 112, 112);
  padding-top: 144px;
  font-size: 20px;
  line-height: 30px;
  padding-bottom: 120px;
}
.back-btn {
  color: #a44792;
  text-decoration: none;
  margin-bottom: 50px;
  display: inline-block;
  background-image: url("../images/back_btn.png");
  background-repeat: no-repeat;
  background-position: center left;
  padding-left: 20px;
  font-weight: 500;
}

.page-content .blog-post {
  max-width: 66.6667%;
  margin: 0px auto;
}

.page-content .date {
  margin-bottom: 30px;
}

.page-content .blog-post h1 {
  color: rgb(0, 0, 0);
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15em;
  box-shadow: none;
  text-shadow: none;
  margin: 0px 0px 60px;
}

.page-content blockquote {
  color: rgb(112, 112, 112);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.25em;
  border-left: 5px solid rgb(179, 62, 150);
  padding-left: 55px;
  margin-top: 60px;
  margin-bottom: 60px;
  background-image: url("../images/quote_image.png");
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: 12px 4px;
}

.page-content cite {
  color: rgb(112, 112, 112);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25em;
}

.page-content blockquote p {
  text-align: right;
  margin: 0px;
  line-height: 1.5;
}

.page-content p {
  margin: 0px 0px 30px;
}

.page-content hr {
  border-right: none;
  border-bottom: none;
  border-left: none;
  border-image: initial;
  border-top: 3px solid rgb(164, 71, 146);
  max-width: 236px;
  margin: 120px auto;
}

.page-content h2 {
  color: rgb(112, 112, 112);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5em;
  margin-bottom: 30px;
}

.page-content ul li::before {
  width: 0px;
  height: 0px;
  content: "";
  border-top: 7.5px solid transparent;
  border-left: 10px solid rgb(164, 71, 146);
  border-bottom: 7.5px solid transparent;
  position: absolute;
  left: 0px;
  top: 7px;
}

.page-content ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
}

.page-content ul {
  padding: 0px;
  margin: 0px 0px 30px;
  list-style: none;
}

.blog header {
  background: rgb(0, 0, 0);
}

.press-release-section {
  border-top: 1px solid rgb(87, 6, 87);
  padding-top: 80px;
}

.press-release-item .date {
  font-size: 20px;
  line-height: 25px;
  margin: 0px 0px 15px;
  font-weight: 500;
}
.blog-post .category {
  font-weight: 500;
  margin-bottom: 45px;
}
.press-release-item p {
  margin: 0 0 20px;
}
.press-release-item a {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
  color: rgb(255, 255, 255);
  text-decoration: none;
  background-image: url("../images/arrow_icon.png");
  background-repeat: no-repeat;
  background-position: right 3px;
  padding-right: 25px;
  line-height: 1;
  background-size: 11px;
}

.press-release-item {
  margin-bottom: 50px;
  padding-right: 30px
}

.press-release {
  padding-top: 30px;
}
a.view-all-btn {
  font-size: 20px;
  font-weight: 600;
  color: rgb(255, 255, 255);
  text-decoration: none;
  background-image: url(../images/arrow_icon.png);
  background-repeat: no-repeat;
  background-position: center right;
  padding-right: 25px;
  line-height: 1;
  background-size: 11px;
  position: absolute;
  right: 0;
  top: 10px;
}
.posts-wrapper {
  max-width: 66.6667%;
  margin: 0px auto;
}

.post-item h3 {
  font-size: 36px;
  line-height: 45px;
  font-weight: normal;
  color: #000000;
}

.post-item a {
  font-size: 20px;
  color: #a44792;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  background-image: url("../images/arrow_right.png");
  background-repeat: no-repeat;
  background-position: center right;
  padding-right: 23px;
}

.post-item {
  padding-bottom: 45px;
  border-bottom: 1px solid #d876c0;
  padding-top: 45px;
}
.thank-you-content h2 {
  font-size: 60px;
  margin-bottom: 10px;
}
.thank-you-section {
  background-image: url("../images/thank_you.jpg");
}
.thank-you-content {
  padding: 24px;
}

.footer-copyright {
    font-size: 18px;
  }

@media (min-width: 768px) {
  .mobile-bg {
    display: none;
  }
}

@media (max-width: 1199px) {
  header,
  .content-wrapper {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 1000px;
  }

  .header-nav ul li {
    margin-left: 8px;
  }

  .header-nav ul li a {
    font-size: 18px;
  }

  .header-nav ul li a.btn {
    padding: 5px 8px;
    font-size: 10px;
  }

  .header-logo img {
    max-width: 200px;
  }

  footer {
    padding-left: 30px;
    padding-right: 30px;
  }

  .footer_logo img {
    max-width: 200px;
  }

  .join-now p {
    margin-bottom: 30px;
  }
	
	
}

@media (max-width: 767px) {
  .cm-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0px -20px;
  }

  .cm-col-1,
  .cm-col-10,
  .cm-col-11,
  .cm-col-12,
  .cm-col-2,
  .cm-col-3,
  .cm-col-4,
  .cm-col-5,
  .cm-col-6,
  .cm-col-7,
  .cm-col-8,
  .cm-col-9 {
    padding-left: 20px;
    padding-right: 20px;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .cm-align-items {
    -webkit-box-align: center;
    align-items: center;
  }

  .cm-justify-center {
    -webkit-box-pack: center;
    justify-content: center;
  }

  .cm-justify-space-between {
    -webkit-box-pack: justify;
    justify-content: space-between;
  }

  .header-nav ul {
    position: absolute;
    width: 100%;
    left: 0px;
    top: 71px;
    background: rgb(0, 0, 0);
    margin: 0px;
    transition: height 0.35s ease-in-out 0s;
    overflow: hidden;
  }

  .toggle-container:not(.active) {
    display: none;
  }

  .header-nav ul li {
    margin: 0px;
    display: block;
  }

  .header-nav ul li a {
    display: block;
    padding: 10px 15px;
    border-bottom: 1px solid rgb(255, 255, 255);
  }

  .header-nav ul li:last-child a {
    border: none;
  }

  header {
    padding-left: 15px;
    padding-right: 15px;
    background: rgb(0, 0, 0);
  }

  .mobile-trigger {
    background: transparent;
    border: none;
    width: 20px;
    position: absolute;
    height: 18px;
    right: 15px;
    top: 25px;
    cursor: pointer;
    display: block;
  }

  .mobile-trigger span,
  .mobile-trigger span::before,
  .mobile-trigger span::after {
    position: absolute;
    content: "";
    background: rgb(255, 255, 255);
    height: 2px;
    width: 20px;
    left: 0px;
    top: 50%;
  }

  .mobile-trigger span::before {
    margin-top: -8px;
  }

  .mobile-trigger span::after {
    bottom: -8px;
    top: auto;
  }

  .header-logo img {
    max-width: 160px;
  }

  .join-now {
    max-width: 100%;
  }

  .hero-banner .cm-row {
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
	min-height: 90vh;
	padding-top: 0px;
  }

  .hero-banner h1 {
    margin-bottom: 20px;
  }

  .hero-banner .cm-row {
    padding-bottom: 50px;
  }

  .join-now {
    max-width: 100%;
  }

  .hero-banner .cm-row {
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    min-height: auto;
  }

  .hero-banner h1 {
    margin-bottom: 20px;
    font-size: 45px;
    line-height: 50px;
  }

  .hero-banner .cm-row {
    background-size: cover;
    background-position: center top;
  }

  h2 {
    font-size: 30px;
    line-height: 40px;
  }

  body {
    font-size: 18px;
  }

  .cm-counter-item {
    width: 100%;
    margin-bottom: 50px;
  }

  .cm-counter-row {
    padding-left: 30px;
    padding-right: 30px;
  }

  .cm-slider-item blockquote {
    font-size: 30px;
  }

  .cm-slider-item {
    padding-right: 0px;
    background-size: 30px;
    padding-left: 40px;
    padding-top: 10px;
  }

  .cm-slider {
    padding-left: 30px;
    padding-right: 30px;
  }

  .cm-slider .swiper-button-prev {
    left: 20px;
    border-width: 15px;
  }

  .cm-slider .swiper-button-next {
    border-width: 15px;
    right: 20px;
  }

  .cm-counter-row {
    padding-bottom: 50px;
  }

  .section_2 {
    padding-top: 50px;
    padding-bottom: 50px;
    overflow: hidden;
  }

  .cm-slider-item p {
    font-size: 14px;
  }

  .border-bottom .cm-col-4 {
    padding-top: 0px;
  }

  .border-bottom {
    max-width: calc(100% - 30px);
    margin: 0px auto 40px;
  }

  .border-bottom .cm-col-4,
  .border-bottom .cm-col-8 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .tagline {
    margin: 0px 0px 10px;
  }

  .ordered-item .cm-col-4 {
    margin-bottom: 60px;
  }

  .border-bottom .cm-col-4 {
    padding-top: 0px;
  }

  .border-bottom {
    max-width: calc(100% - 30px);
    margin: 0px;
    padding: 0px;
  }

  .border-bottom .cm-col-4,
  .border-bottom .cm-col-8 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .tagline {
    margin: 0px 0px 10px;
    font-size: 14px;
  }

  .ordered-item .cm-col-4 {
    margin-bottom: 60px;
  }

  .section_4 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .sponsors-row .cm-col-6:first-child {
    padding-right: 30px;
    padding-bottom: 40px;
  }

  .sponsors-row .cm-col-6:last-child {
    padding-left: 30px;
    border: none;
    position: relative;
    padding-top: 40px;
  }

  .sponsors-row .sponsors-row-content {
    padding-top: 20px;
  }

  .sponsors-row .cm-col-6:last-child::before {
    content: "";
    position: absolute;
    height: 1px;
    top: 0px;
    background: rgb(255, 255, 255);
    left: 30px;
    width: calc(100% - 60px);
  }

  .section_5 {
    padding-top: 0px;
    padding-bottom: 50px;
  }

  .logo-group .logo-item {
    width: calc(50% - 20px);
  }

  .logo-group .logo-item img {
    max-height: 100%;
    object-fit: contain;
    object-position: center center;
  }

  .section_6,
  .community {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .member-row h2 {
    margin-bottom: 20px;
  }

  .section form {
    margin-top: 60px;
  }

  footer {
    padding-left: 15px;
    padding-right: 15px;
  }
  a.view-all-btn {
    position: relative;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-copyright {
    font-size: 14px;
    margin-top: 0px;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"] {
    height: 40px;
  }

  .btn {
    width: 150px;
  }

  h3 {
    font-size: 30px;
    line-height: 40px;
  }

  .feature-row .feature-item {
    max-width: 100%;
    border-bottom: 1px solid rgb(255, 255, 255);
    margin-bottom: 40px;
	padding-bottom: 50px
  }

  .feature-row .cm-col-4:last-child .feature-item {
    border: none;
  }

  .feature-row .icon-image {
    max-height: 125px;
  }

  .cm-row.feature-row {
    padding-top: 60px;
  }

  .feature-row .cm-col-4:nth-child(2),
  .counter-row .cm-col-4:nth-child(2) {
    border: none;
  }

  .counter-row .cm-col-4:last-child .cm-counter-box,
  .counter-row .cm-col-4 .cm-counter-box,
  .counter-row .cm-col-4:nth-child(2) .cm-counter-box {
    margin: 0px auto;
  }

  .feature-row .feature-item .image-col {
    max-width: 364px;
  }

  .section::before {
    position: absolute;
    background: linear-gradient(
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.4) 40.39%,
      rgb(0, 0, 0) 100%
    );
    width: 100%;
    height: 100%;
    left: 0px;
    bottom: 0px;
    top: auto;
    content: "";
    display: none;
  }

  .feature-row .icon-image {
    max-height: 125px;
  }

  .quote {
    font-size: 20px;
    line-height: 28px;
    background-size: 25px;
    padding: 70px 20px 50px 45px;
    background-position: 12px 50px;
    background-color: transparent;
    max-width: 100%;
  }

  .quote-section .cm-row {
    align-items: center;
    padding: 0px;
    min-height: auto;
  }

  .section_6::before,
  .section_8::before,
  .section_4::before,
  .section_3::before,
  .section_5::before,
  .section_7::before,
  .section_9::before,
  .bg-wrap .section::before,
  .section_2::before {
    display: none;
  }

  section#vision h3 br {
    display: none;
  }

  .feature-row,
  section#vision {
    font-size: 18px;
    line-height: 28px;
  }

  .feature-row .cm-col-4:nth-child(2) .feature-item {
    margin: 0px 0px 40px;
  }

  .feature-row,
  section#vision {
    font-size: 18px;
    line-height: 28px;
  }

  .quote p.author {
    font-size: 14px;
    line-height: 19px;
  }

  .partner-item ul li {
    font-size: 18px;
    line-height: 28px;
    padding-left: 33px;
  }

  .partner-item ul li::before {
    border-top: 10.5px solid transparent;
    border-left: 20px solid rgb(179, 62, 150);
    border-bottom: 10.5px solid transparent;
  }

  .section_6,
  .section_8,
  .bg-wrap {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .section_4 h4 {
    min-height: auto;
    margin-bottom: 15px;
  }

  .cm-counter-box h4 {
    min-height: auto;
    margin: 0px 0px 50px;
  }

  .cm-counter-item h3 {
    font-size: 55px;
  }


  .section_5 {
    padding-bottom: 0px;
  }


  .hero-banner {
    background-image: none;
  }


  .footer-left {
    flex-direction: column;
    text-align: left;
    align-items: baseline;
  }

  .footer_logo {
    margin-bottom: 20px;
  }

  .footer-icons ul li:first-child {
    margin-left: 0px;
  }



  .cm-row.press-items {
    padding-top: 30px;
    padding-bottom: 40px;
  }



  .form-popup .form-modal {
    max-width: 90%;
    padding: 45px 40px;
  }

  .form-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-footer .btn {
    margin-bottom: 15px;
  }

  .header-nav ul li a.btn {
    max-width: 90%;
    margin: 15px auto;
    font-size: 16px;
  }

  #vision .cm-col-12 br {
    display: none;
  }

  .footer-icons {
    position: absolute;
    right: 0px;
    top: 23px;
  }

  footer {
    position: relative;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .footer_logo img {
    max-height: 50px;
  }

  .footer-icons ul li img {
    height: 30px;
  }

  .page-content .blog-post,
  .page-content .posts-wrapper {
    max-width: 100%;
  }

  .page-content .blog-post h1 {
    font-size: 28px;
    line-height: 32px;
  }

  .page-content blockquote {
    font-size: 24px;
    line-height: 30px;
  }

  .thank-you-content h2 {
    font-size: 45px;
  }
  .thank-you-content p.author br {
    display: none;
  }
}

.impact .cm-counter-item p,
.community .cm-counter-item p {
  font-weight: 600;
}

/* Community Section Spacing */
.community .community-header {
  padding-bottom: 60px;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .community .community-header {
    padding-bottom: 40px;
  }
}

/* Video Testimonials Section */
.community-videos-section {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.video-testimonials-container {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  scroll-snap-stop: always;
}

.video-testimonials-container::-webkit-scrollbar {
  display: none;
}

.video-card {
  flex: 0 0 auto;
  width: 55vw;
  max-width: 650px; /* Prevent cards from becoming too wide on ultra-wide screens */
  cursor: pointer;
  transition: transform 0.3s ease;
  padding-left: 0;
  padding-right: 0;
  scroll-snap-align: start;
}

.video-card:hover {
  transform: translateY(-5px);
}

.video-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 20px;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
  z-index: 2;
}

.video-card:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
}

.play-button svg {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.video-content {
  color: white;
  padding-left: 0;
  padding-right: 0;
}

.video-name {
  color: #FFF;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 8px;
  padding-left: 0;
  padding-right: 0;
  text-transform: none;
}

.video-description {
  color: #FFF;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 20px;
  padding-left: 0;
  padding-right: 0;
}

.video-quote {
  position: relative;
  padding-top: 30px;
  border-top: 1px solid #FFF;
  margin-top: 20px;
  padding-left: 83px;
  background-image: url('../images/quote_image.png');
  background-repeat: no-repeat;
  background-size: 67px;
  background-position: 0 30px;
  overflow: visible; /* Prevent quote mark clipping */
  min-height: 97px; /* Ensure container accommodates full quote mark (30px + 67px) */
}

.quote-mark {
  display: none;
}

.video-quote p {
  color: #FFF;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

/* Desktop and Mobile Navigation Dots */
.video-pagination-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  padding-bottom: 20px;
}

.pagination-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-dot.active {
  background-color: #B33E96;
  transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 1199px) {
  .video-card {
    width: 65vw;
    max-width: 550px; /* Prevent cards from becoming too wide on large tablets */
  }
  
  .video-testimonials-container {
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .community-videos-section {
    margin-top: 40px;
    padding-top: 40px;
  }
  
  .video-card {
    width: 85vw;
    scroll-snap-align: start;
  }
  
  .video-testimonials-container {
    gap: 20px;
    padding: 15px 0;
    scroll-snap-type: x mandatory;
  }
  
  .video-thumbnail {
    height: 200px;
    margin-bottom: 15px;
  }
  
  .video-name {
    font-size: 20px;
  }
  
  .video-description {
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .video-quote {
    padding-top: 25px;
    margin-top: 15px;
    padding-left: 45px;
    background-size: 25px;
    background-position: 12px 25px;
  }
  
  .quote-mark {
    display: none;
  }
  
  .video-quote p {
    font-size: 20px;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
  }
  
  .video-pagination-dots {
    display: flex;
  }
  
  .play-button svg {
    width: 50px;
    height: 50px;
  }
}
