
*{
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  overflow: hidden;
}

body {
  font-family: "BrownLogitechPan", sans-serif;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.relative {
  position: relative;
}

button.my-btn:focus,
button.my-btn:active {
  border: none !important;
  outline: none !important;
}

.main {
  height: 100vh;
  margin-top: 0 !important;
  scroll-snap-type: y mandatory;
  overflow-y: auto;
  scroll-behavior: smooth; 
}
.my-scroll {
  scroll-snap-align: start;
  will-change: transform; 
  backface-visibility: hidden; 
}

.no-scroll {
  overflow: hidden;
}

.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.my-swiper {
  scroll-snap-align: start;
}

.my-section {
  min-height: calc(var(--vh, 1vh) * 100);
  position: relative;
}

.gradient-bg {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  height: 380px;
  pointer-events: none;
}

.section-title {
  font-size: 38px;
  font-weight: 300;
  line-height: 1;
  text-align: center;
}

.my-btn {
  width: 100%;
  line-height: 1.2;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 18.5px 50px;
  border-radius: 20px;
  font-family: inherit;
  color: var(--color-black-90);
  transition: background 0.25s ease;
}

.my-btn:hover {
  background: var(--color-primary-aqua);
}

@media screen and (min-width: 1200px) {
  .section-title {
    font-size: 60px;
  }
  .my-btn {
    max-width: fit-content;
  }
  .my-section {
    height: auto;
  } 
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 224px;
  padding-top: 80px;
}

.hero-video-wrapper,
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-video-wrapper {
  background: rgba(0, 0, 0, 0.05);
  pointer-events: none;
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-title {
  margin: 0;
  font-size: 53px;
  font-weight: 300;
  letter-spacing: -4%;
  color: #fff;
  display: flex;
  flex-direction: column;
  line-height: 0.9;
  gap: 77px;
  margin-bottom: 72px;
}
.hero-title__right {
  text-align: right;
}
.hero-desc {
  font-size: 14px;
  color: #fff;
  line-height: 1.2;
  max-width: 230px;
  font-weight: 400;
  margin-left: 5px;
}

.hero-author-wrapper {
  min-width: fit-content;
  max-width: fit-content;
}

.hero-author {
  padding: 10px 24px 10px 14px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 22px;
  display: flex;
  align-items: center;
  font-size: 14px;
  gap: 10px;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
}
.author-name {
  margin: 0;
}
.author-company {
  margin: 0;
  color: var(--color-primary-aqua);
  cursor: pointer;
}

@media screen and (min-width: 1200px) {
  .hero-desc {
    max-width: 350px;
  }
  .hero-title {
    font-size: 128px;
    font-weight: 300;
    gap: 0;
    margin-bottom: 137px;
  }
  .hero-author {
    font-size: 20px;
  }
}

/*---------bloggers-------------*/

.blogger-card {
  height: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 130px;
  height: calc(var(--vh, 1vh) * 100);
}

.blogger-logos {
  margin-left: 20px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.blogger-card {
  background-size: cover!important;
  background-position: top center;
  background-repeat: no-repeat;
}

.blogger-card__1 {
  background-image: url("../img/mob/olga2.jpg");
}

.blogger-card__2 {
  background-image: url("../img/mob/mike2.jpg");
}

.blogger-card__3 {
  background-image: url("../img/mob/tanya2.jpg");
}

.blogger-card__4 {
  background-image: url("../img/mob/vitaliy2.jpg");
}

.blogger-card__5 {
  background-image: url("../img/mob/dmytro2.jpg");
}

.blogger-card__6 {
  background-image: url("../img/mob/compare2.jpg");
}

.blogger-video-btn {
  position: relative;
  margin-bottom: 24px;
  max-width: 500px;
}

.blogger-video-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 26px;
  transform: translateY(-50%);

  width: 0;
  height: 0;

  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid var(--color-black-90);
}

.blogger-subtitle {
  color: var(--color-primary-aqua);
  line-height: 1.1;
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 8px;
}

.blogger-name {
  line-height: 1.2;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  margin-bottom: 24px;
  margin-top: 0;
}

.blogger-body {
  padding: 0 20px;
}

.blogger-awards {
  padding-left: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.1;
  display: grid;
  gap: 8px;
  margin-bottom: 15px;
  max-width: 400px;
}

.blogger-awards li {
  font-weight: 400;
}

.blogger-next-btn {
  background: transparent;
  font-size: 14px;
  font-family: inherit;
  color: #fff;
  line-height: 1.2;
  transition: color 0.25s ease;
}

.blogger-next-btn:hover {
  color: var(--color-primary-aqua);
}

.blogger-next-btn span {
  text-decoration: underline;
}

.blogger-left-col {
  display: none;
}

@media screen and (min-width: 768px) {
  .blogger-card__1 {
    background: url("../img/des/olga.jpg");
  }
  .blogger-card__2 {
    background: url("../img/des/mike.jpg");
  }
  .blogger-card__3 {
    background: url("../img/des/tanya.jpg");
  }
  .blogger-card__4 {
    background: url("../img/des/vitaliy.jpg");
  }
  .blogger-card__5 {
    background: url("../img/des/dmytro.jpg");
  }
  .blogger-card__6 {
    background: url("../img/des/compare.jpg");
  }
  .blogger-video-btn {
    max-width: 375px;
  }
}

@media screen and (min-width: 1200px) {
  .blogger-card .container {
    display: flex;
    flex-direction: column;
  }
  .blogger-card .row {
    display: flex;
    align-items: flex-end;
  }
  .blogger-left-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .blogger-video-btn {
    margin-bottom: 148px;
  }
  .blogger-logos {
    margin-left: 40px;
  }
  .blogger-awards,
  .blogger-subtitle {
    font-size: 18px;
  }

  .blogger-awards {
    margin-bottom: 0;
  }
  .blogger-name {
    font-size: 46px;
    margin-top: 0;
    margin-bottom: 36px;
  }
}

/*---------secret-------------*/
.secret {
  padding: 20px 0 80px 0;
  background: #e4e8eb;
  height: fit-content;
  display: flex;
  flex-direction: column;
}

.secret .container {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.secret-video {
  max-width: 100%;
  width: 100%;
}

.secret-left-col {
  display: none;
}

.secret-title {
  max-width: 335px;
  margin: 0 auto;
  color: var(--color-gray);
  margin-bottom: 24px;
}

.secret-slider {
  margin-top: auto;
  max-width: calc(100vw - 30px);
}

/* .secret-card {
  max-width: 300px;
} */

.secret-card-title {
  font-size: 24px;
  line-height: 1.1;
  color: var(--color-gray);
  font-weight: 300;
  padding-top: 20px;
  margin: 0 0 24px 0;
  position: relative;
}

.secret-card-img {
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
}

.quote-top {
  position: absolute;
  top: 0;
  left: 0;
}

.quote-bottom {
  transform: rotate(180deg);
  margin-bottom: 5px;
}

.secret-card-body {
  display: flex;
  justify-content: space-between;
  padding-bottom: 40px;
}

.secret-card-text {
  padding: 13px 20px 13px 10px;
  line-height: 1.2;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-gray);
}

.secret-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 20px;
}

.secret-slider-prev,
.secret-slider-next {
  background: transparent;
  border: none;
  font-weight: 700;
  color: var(--color-gray);
}

.secret-slider-btn {
  display: flex;
}

.secret-slider-hint {
  margin: 0;
  color: var(--color-gray);
  line-height: 1.1;
}

.design-links,
.secret-links {
  display: flex;
  justify-content: space-between;
}

.secret-links {
  margin-top: 80px;
}

.design-link,
.secret-link {
  font-size: 14px;
  text-decoration: underline;
  color: var(--color-black-90);
  transition: color 0.25s ease;
}

.design-link:hover,
.secret-link:hover {
  color: var(--color-primary-aqua);
}

.my-slider-navigation {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (min-width: 1200px) {
  .secret {
    padding: 190px 0 80px 0;
  }
  .secret .row {
    display: flex;
    align-items: center;
  }
  .secret-title {
    max-width: none;
    margin: 0 0 45px 0;
    text-align: left;
  }
  .secret-left-col {
    display: flex;
    flex: 1;
  }
  .secret-card-title {
    font-size: 26px;
    width: calc(100% - 60px);
  }
  .design-link,
  .secret-link {
    font-size: 18px;
  }
  .secret-slider-controls {
    display: none;
  }
  .my-slider-navigation {
    display: block;
    z-index: 20;
  }
  .swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
}

/*---------design-------------*/

.design {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 0 130px 0;
  height: calc(var(--vh, 1vh) * 100);
}

.design-1 {
  background-image: url("../img/mob/MX-Master-4-LIFE-Graphite-SCROLL.webp");
}

.design-2 {
  background-image: url("../img/mob/vlcsnap.webp");
}

.design-3 {
  background-image: url("../img/mob/SUSTAIN_POST_5_2.webp");
}

.design-4 {
  background-image: url("../img/mob/vid-bg.webp");
}

.design-5 {
  background-image: url("../img/mob/MX-Master-4-LIFE.webp");
}

.design-card {
  color: #fff;
  position: relative;
  z-index: 2;
  font-size: 14px;
  line-height: 1.2;
  padding: 0 25px;
}

.design-number {
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: 300;
}

.design-title {
  text-transform: uppercase;
  font-size: 18px;
  margin-top: 0;
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1.2;
}

.design-text {
  margin-bottom: 40px;
  font-weight: 400;
}

.design-link {
  color: var(--color-primary-aqua);
}

@media screen and (min-width: 768px) {
  .design-1 {
    background-image: url("../img/des/MX-Master-4-LIFE-Graphite-SCROLL-des.webp");
  }
  .design-2 {
    background-image: url("../img/des/MX-Master1.webp");
  }
  .design-3 {
    background-image: url("../img/des/MX-Master2.webp");
  }
  .design-4 {
    background-image: url("../img/des/MX-Master3.webp");
  }
  .design-5 {
    background-image: url("../img/des/MX-Master4.webp");
  }
}

@media screen and (min-width: 1200px) {
  .design {
    padding-bottom: 80px;
  }
  .design .row {
    display: flex;
    align-items: flex-end;
  }
  .design-card {
    padding: 0;
  }
  .design-text,
  .design-number {
    font-size: 18px;
  }
  .design-text {
    margin-bottom: 0;
  }
  .design-title {
    font-size: 46px;
  }
}

/*------------new-power---------------*/

.new-power {
  padding: 20px 0 80px 0;
  background: #000;
}

.new-power-title {
  color: #fff;
  margin-top: 0;
  margin-bottom: 25px;
}

.new-power-card {
  background: #fff;
  border-radius: 30px;
  padding: 10px;
  max-width: 300px;
  margin-bottom: 30px;
}

.new-power-image {
  border-radius: 16px;
  overflow: hidden;
}

.new-power-image img {
  width: 100%;
}

.new-power-body {
  padding: 0 10px 5px 10px;
}

.new-power-body-title {
  color: var(--color-gray);
  text-transform: uppercase;
  line-height: 1.2;
  margin: 10px 0 8px 0;
  font-weight: 500;
  font-size: 18px;
  min-height: 65px;
}

.new-power-text {
  color: var(--color-gray);
  line-height: 1.2;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
  min-height: 85px;
}

@media screen and (min-width: 1200px) {
  .new-power {
    padding: 120px 0 80px 0;
  }
  .new-power-title {
    margin-bottom: 74px;
  }
  .new-power-slider .swiper-wrapper {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
  }
}

/*---------adobe-creative-------------*/

.adobe-creative {
  background: url("../img/mob/adobe.webp") top center no-repeat;
  background-size: cover;
  padding: 30px 0 24px 0;
}

.adobe-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.adobe-img {
  margin-bottom: 30px;
}

.adobe-creative-title {
  color: #fff;
  margin-bottom: 20px;
  margin-top: 0;
  letter-spacing: -4%;
  line-height: 1.1;
}

.adobe-creative-title span {
  display: block;
}

.adobe-note,
.adobe-text {
  text-align: center;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 40px;
  font-size: 14px;
  padding: 0 49px;
}

.adobe-btn {
  background: #fff;
  color: var(--color-black-90);
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .adobe-creative {
    background-image: url("../img/des/adobe.webp");
  }
  .adobe-creative-title span {
    display: inline;
  }
}

@media screen and (min-width: 1200px) {
  .adobe-creative {
    padding-top: 180px;
  }
  .adobe-creative-title {
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 32px;
  }
  .adobe-note,
  .adobe-text {
    font-size: 18px;
    padding: 0;
  }
  .adobe-text {
    max-width: 660px;
    padding: 0;
    margin: 0 auto;
    margin-bottom: 32px;
  }
  .adobe-note {
    max-width: 500px;
    margin: 0 auto;
  }
}

/*---------call-to-action-----------*/

.call-to-action {
  padding: 30px 0 80px 0;
  background: #eee;
  display: flex;
  flex-direction: column;
}

.call-to-action .container {
  height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.call-to-action-title {
  margin-bottom: 40px;
}

.call-to-action-title span {
  display: block;
}

.gallery {
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 80px;
  height: 500px;
}

.item1 {
  grid-area: 1 / 1 / 2 / 4;
}
.item2 {
  max-height: 184px;
  grid-area: 1 / 4 / 2 / 5;
}
.item2 img {
  max-height: 144px;
}
.item3 {
  grid-area: 1 / 5 / 2 / 7;
}
.item4 {
  grid-area: 2 / 1 / 3 / 5;
}
.item6 {
  grid-area: 2 / 5 / 3 / 7;
}
.item7 {
max-width: 90px;
grid-area: 3 / 2 / 4 / 4;
}
.item8 {
  grid-area: 3 / 4 / 4 / 7;
}

.item1,
.item2,
.item3,
.item4,
.item5,
.item6,
.item7,
.item8 {
  display: flex;
  align-items: center;
}

.item4,
.item8,
.item7,
.item2 {
  justify-content: center;
}

.item8 {
  justify-content: flex-end;
}

.dot {
  width: 12px;
  height: 12px;
  background: var(--color-primary-aqua);
  border-radius: 50%;
  position: absolute;
  cursor: pointer;
}

.dot1 {
  bottom: 30px;
  right: 50px;
}

.dot2 {
  left: 50%;
  transform: translateX(-50%);
  bottom: 40px;
}

.dot3 {
  left: 50%;
  transform: translate(-50%, 100%);
  bottom: 0;
}

.dot4 {
  left: 80px;
  bottom: 10px;
}

.dot4 + picture img {
  max-width: 180px;
}

.dot8,
.dot6 {
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
}

.dot7 {
  left: 50%;
  bottom: 5px;
}

.dot8 {
  bottom: 70px;
}

.cta-btn {
  margin: 0 auto;
  display: block;
  background: var(--color-primary-aqua);
}

@media screen and (min-width: 768px) {
  .call-to-action-title span {
    display: inline;
  }
}
@media screen and (min-width: 1200px) {
  .call-to-action {
    padding: 120px 0 80px 0;
  }
  .call-to-action-title {
    margin-bottom: 80px;
  }
  .dot {
    width: 24px;
    height: 24px;
  }
  .dot2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .dot3 {
    transform: translate(-50%, 50%);
  }
  .gallery {
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(9, 1fr);
    gap: 40px;
    column-gap: 60px;
    height: 630px;
  }

  .item1 {
    grid-area: 1 / 1 / 5 / 5;
  }
  .item3 {
    max-width: 240px;
    align-items: flex-end;
    grid-area: 1 / 7 / 4 / 9;
  }
  .item2 {
    max-width: 400px;
    grid-area: 4 / 6 / 5 / 9;
  }
  .item2 img {
    max-height: auto;
  }
  .item4 {
    justify-content: center;
    grid-area: 5 / 1 / 10 / 4;
  }

  .dot4 + picture img {
    max-width: 400px;
  }
  .item6 {
    align-items: flex-end;
    justify-content: flex-end;
    max-width: 250px;
    grid-area: 1 / 5 / 4 / 7;
  }
  .item7 {
    max-width: 220px;
    align-items: center;
    grid-area: 5 / 4 / 10 / 6;
  }
  .item8 {
    grid-area: 5 / 6 / 10 / 9;
  }

  .item4,
  .item5,
  .item8 {
    align-items: flex-start;
  }
}

.gallery .relative {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.gallery .dot {
  opacity: 0;
  transition: opacity 2s ease;
}

.gallery .relative.show .dot {
  transition-delay: 1s;
  opacity: 1;
}

.gallery .item1 .relative,
.gallery .item4 .relative,
.gallery .item7 .relative {
  transform: translateY(100px);
}

.gallery .item2 .relative,
.gallery .item5 .relative {
  transform: translateX(-100px);
}

.gallery .item3 .relative,
.gallery .item8 .relative,
.gallery .item6 .relative {
  transform: translateX(100px);
}

.gallery .relative.show {
  opacity: 1;
  transform: translate(0, 0);
}

.gallery .item1 .relative {
  transition-delay: 0s;
}
.gallery .item2 .relative {
  transition-delay: 0.1s;
}
.gallery .item3 .relative {
  transition-delay: 0.2s;
}
.gallery .item4 .relative {
  transition-delay: 0.3s;
}
.gallery .item5 .relative {
  transition-delay: 0.4s;
}
.gallery .item6 .relative {
  transition-delay: 0.5s;
}
.gallery .item7 .relative {
  transition-delay: 0.6s;
}
.gallery .item8 .relative {
  transition-delay: 0.7s;
}

/*-----------animation button----------------*/
.btn-outline-ripple {
  position: relative;
}

.btn-outline-ripple,
.dot-outline-ripple {
  cursor: pointer;
  border: none;
}

.dot-outline-ripple span,
.btn-outline-ripple span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-primary-aqua);
  border-radius: inherit;
  opacity: 0;
  transform: scale(1);
  pointer-events: none;
}

.btn-outline-ripple:hover span {
  animation: ripple-outline 3s ease-out infinite;
}

.dot-outline-ripple:hover span {
  animation: ripple-outline2 3s ease-out infinite;
}

.dot-outline-ripple:hover span:nth-child(2),
.btn-outline-ripple:hover span:nth-child(2) {
  animation-delay: 0.6s;
}
.dot-outline-ripple:hover span:nth-child(3),
.btn-outline-ripple:hover span:nth-child(3) {
  animation-delay: 1.2s;
}
.dot-outline-ripple:hover span:nth-child(4),
.btn-outline-ripple:hover span:nth-child(4) {
  animation-delay: 1.8s;
}
.dot-outline-ripple:hover span:nth-child(5),
.btn-outline-ripple:hover span:nth-child(5) {
  animation-delay: 2.4s;
}

@keyframes ripple-outline {
  0% {
    transform: scale(1);
    opacity: 1;
    height: 100%;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
    top: -30px;
    height: 120px;
  }
}

@keyframes ripple-outline2 {
  0% {
    transform: scale(1);
    opacity: 1;
    height: 100%;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
    top: -38px;
    left: -38px;
    height: 100px;
    width: 100px;
  }
}

/*---------slider------------*/
.bloggers-slider-wrapper {
  position: absolute;
  width: 100vw;
  bottom: 140px;
  left: 0;
}

.bloggers-slider .swiper-wrapper {
  transition-timing-function: linear !important;
}

.my-swiper-scrollbar .swiper-scrollbar-drag {
  background: var(--color-black-90);
}

.my-swiper-scrollbar {
  background: rgba(0, 0, 0, 0.1);
}

.swiper-slide {
  width: 100% !important;
  flex-shrink: 0;
}

.swiper {
  width: 100%;
  overflow: hidden;
}

/*-----------modal----------------*/
.overlay {
  opacity: 0;
  pointer-events: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  transition: opacity 0.5s ease;
}

.overlay.open {
  opacity: 1;
  pointer-events: all;
}

.my-modal {
  background: #fff;
  border-radius: 20px;
  padding: 40px 20px 30px 20px;
  width: calc(100vw - 30px);
  max-width: 375px;
  max-height: calc(var(--vh, 1vh) * 100 - 30px);
  overflow-y: auto;
}

.modal-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
.my-modal-content {
  text-align: center;
  line-height: 1.2;
  margin-bottom: 40px;
}
.modal-title {
  font-size: 18px;
  color: var(--color-black-90);
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 6px 0;
}

.modal-subtitle {
  font-size: 14px;
  color: var(--color-gray);
  font-weight: 400;
  margin-bottom: 14px;
}
.modal-price {
  font-size: 18px;
  color: var(--color-black-90);
  font-weight: 500;
}
.modal-old-price {
  color: var(--color-gray);
  margin-left: 10px;
  text-decoration: line-through;
}

.modal-btn {
  width: 100%;
  max-width: 100%;
  background: var(--color-primary-aqua);
  margin-bottom: 30px;
}
.modal-close {
  text-align: center;
  color: var(--color-gray);
  font-size: 14px;
  padding: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.hero-video {
  cursor: default; 
  border: none !important; 
  pointer-events: none;
  width: 100%; 
  height: 100%;
}

video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

.design-links.col-lg-6 a {
    color: #fff;
}

p.hero-desc a {
    color: #fff;
}