/* Variables */
:root {
  --primary-color: red;
  --secondary-color: blue;
  --color-green: #9cc850;

  --font-din-medium: "DIN Pro Medium";
  --font-din-bold: "DIN Pro Bold";
  --font-din-italic: "DIN Pro Italic";

  --font-con-medium: "DIN Pro Cond Medium";
  --font-con-bold: "DIN Pro Cond Bold";
  --font-con-italic: "DIN Pro Cond Italic";
  --font-con-black-italic: "DIN Pro Cond Black Italic";

  --font-myriad-regular: "Myriad Pro Regular";
  --font-myriad-bold: "Myriad Pro Bold";
}

/* Fonts */
@font-face {
  font-family: "DIN Pro Medium";
  src: url("../fonts/DINPro-Medium.woff2") format("woff2"),
    url("../fonts/DINPro-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DIN Pro Bold";
  src: url("../fonts/DINPro-Bold.woff2") format("woff2"),
    url("../fonts/DINPro-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DIN Pro Italic";
  src: url("../fonts/DINPro-BoldItalic.woff2") format("woff2"),
    url("../fonts/DINPro-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "DIN Pro Cond Black Italic";
  src: url("../fonts/DINPro-CondensedBlackItalic.woff2") format("woff2"),
    url("../fonts/DINPro-CondensedBlackItalic.woff") format("woff");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "DIN Pro Cond Bold";
  src: url("../fonts/DINPro-CondensedBold.woff2") format("woff2"),
    url("../fonts/DINPro-CondensedBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DIN Pro Cond Italic";
  src: url("../fonts/DINPro-CondensedItalic.woff2") format("woff2"),
    url("../fonts/DINPro-CondensedItalic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "DIN Pro Cond Medium";
  src: url("../fonts/DINPro-CondensedMedium.woff2") format("woff2"),
    url("../fonts/DINPro-CondensedMedium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Myriad Pro Regular";
  src: url("../fonts/MyriadPro-Regular.woff2") format("woff2"),
    url("../fonts/MyriadPro-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Myriad Pro Bold";
  src: url("../fonts/MyriadPro-BoldCond.woff2") format("woff2"),
    url("../fonts/MyriadPro-BoldCond.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* Common CSS Here */
* {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: bold;
  font-family: var(--font-con-bold);
}
p {
  margin: 0;
  padding: 0;
}
ul,
li {
  margin: 0;
  padding: 0;
  list-style-type: disc;
}
a {
  text-decoration: none;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.2s all ease;
  -o-transition: 0.2s all ease;
  transition: 0.2s all ease;
}
a:active {
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}
button {
  background: transparent;
  border: none;
  outline: none;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.2s all ease;
  -o-transition: 0.2s all ease;
  transition: 0.2s all ease;
  cursor: pointer;
}
button:active {
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}
html {
  scroll-behavior: smooth;
}
body {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.4;
  font-family: var(--font-din-medium);
}
img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.btn_primary {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  font-weight: 600;
  max-width: 170px;
  color: #ffffff;
  background: var(--color-green);
  transition: 0.2s;
}
.btn_primary:hover {
  background: #79a62b;
}
.cxForDesktop {
  display: block;
}
.cxFor_mobile {
  display: none;
}
/* Main CSS Here */
.cxProgram {
  min-height: 100vh;
  background-image: url("../images/bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.cxProgram::after {
  position: fixed;
  content: "";
  width: 100%;
  height: 0px;
  z-index: -1;
  bottom: 0;
  left: 0;
  right: 0;
  background: transparent;
  pointer-events: none;
}
.cxContainer {
  max-width: 1534px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 100vh;
}
.cxWrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding: 20px;
}
.cxProgram_text h2,
.cxProgram_text h4 {
  font-size: 30px;
  font-style: italic;
  font-family: var(--font-con-italic);
  padding-bottom: 15px;
  text-transform: uppercase;
  font-weight: 500;
}
.cxProgram_text_box {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 500px;
  width: 100%;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding-top: 370px;
}
.main_top_shape {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 710px;
  width: 100%;
  height: 640px;
}
.cxProgram_text {
  position: relative;
  z-index: 99;
}
.cxProgram_text p {
  font-size: 12px;
  padding-bottom: 15px;
  font-weight: 500;
}
.cxProgram_text h4 {
  padding-bottom: 20px;
}
.cxProgram_text ul {
  list-style-type: none;
  padding-bottom: 20px;
}
.cxProgram_text ul li {
  font-size: 12px;
  list-style-type: none;
  font-weight: 500;
  line-height: 1.5;
}
.cxProgram_text h5 {
  font-size: 14px;
  padding-bottom: 5px;
  font-family: var(--font-din-italic);
  font-style: italic;
  font-weight: 500;
}
.cxProgram_text h3 {
  font-size: 20px;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 500;
  font-family: var(--font-con-italic);
}
/* Packages */
.cxProgram_packages {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
/* Package Head */
.cxProgram_package_head {
  padding-bottom: 40px;
  text-align: center;
  padding-top: 20px;
}
.cxProgram_package_footer h2,
.cxProgram_package_head h2 {
  font-size: 42px;
  font-weight: bold;
  text-transform: uppercase;
  font-style: italic;
  font-family: var(--font-con-black-italic);
}
.cxProgram_package_footer h2 {
  color: #d63929;
}
.cxProgram_package_footer {
  padding-top: 50px;
  text-align: center;
}
.cxProgram_package_footer h3 {
  padding-bottom: 15px;
  font-size: 30px;
  font-style: italic;
  font-weight: 400;
  font-family: var(--font-con-italic);
  text-transform: uppercase;
}
.cxProgram_package_footer p {
  padding-bottom: 40px;
  max-width: 450px;
  width: 100%;
  font-size: 12px;
  margin: 0 auto;
}
/* Cart */
.cxCart {
  max-width: 240px;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 20px;
  background: transparent;
  overflow: hidden;
}

.cxCart::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 0;
  right: 0;
  padding: 1px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(255, 255, 255, 0.5)),
    to(rgba(255, 255, 255, 0))
  );
  background: -o-linear-gradient(
    top,
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0)
  );
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0)
  );
  -webkit-mask: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0, #fff)
      )
      content-box,
    -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 50%;
}

.cxCart_thumb {
  max-width: 190px;
  width: 100%;
  display: inline-block;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.6);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.6);
  background: transparent;
  margin: 0 auto;
  text-align: center;
  cursor: pointer;
  -webkit-transition: 0.2s all ease;
  -o-transition: 0.2s all ease;
  transition: 0.2s all ease;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.cxCart_thumb:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.cxCart_thumb:active {
  -webkit-transform: scale(0.98);
  -ms-transform: scale(0.98);
  transform: scale(0.98);
}
.cxCart_thumb img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.cxCart_text {
  text-align: center;
  max-width: 190px;
  width: 100%;
  margin: 0 auto;
}
.cxCart_text p {
  font-size: 11px;
  font-weight: 500;
  padding-top: 20px;
  height: 105px;
}
.cxCart_text p strong {
  font-size: 12px;
  font-weight: 700;
  font-style: italic;
  font-family: var(--font-din-italic);
}
.cxCart_pricing {
  padding-top: 10px;
  text-align: center;
}
.cxCart_pricing h4 {
  font-size: 12px;
  padding-bottom: 10px;
  font-weight: bold;
}
.cxCart_pricing h2 {
  font-size: 27px;
  padding-bottom: 10px;
  font-weight: bold;
  font-family: var(--font-con-black-italic);
}
.cxCart_pricing h4 {
  font-size: 12px;
  font-weight: bold;
}
.cartSwiper {
  max-width: 760px;
}
/* Slider */
.cxSlider_box {
  position: absolute;
  overflow: hidden;
  height: 100vh;
  max-width: 960px;
  width: 100%;
  left: 14vw;
  z-index: -1;
  top: 0px;
}
.cxBodySlider {
  width: 700px;
  height: 100vh;
}
.cxBodySlider .swiper-slide {
  opacity: 0 !important;
  pointer-events: none;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.cxBodySlider .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
  pointer-events: auto;
}
.cxBodySlider .swiper-slide img {
  -o-object-fit: cover;
  object-fit: cover;
}
.cxBoxSlide_one img {
  height: 100vh;
}
.cxBoxSlide_two img {
  height: calc(100vh + 50px) !important;
  -o-object-fit: contain !important;
  object-fit: contain !important;
}
.cxBoxSlide_three img {
  height: 140vh !important;
  -o-object-fit: contain !important;
  object-fit: contain !important;
  width: 1100px !important;
}
.right_shape {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 279px;
  width: 1320px;
  z-index: -1;
}
/* For Modal */
.cxModal_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 100vh;
}
#modal-1 {
  display: none;
}
#modal-1.is-open {
  display: block;
}
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: #373737;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.modal__container {
  height: 100%;
  width: 100%;
  min-height: 100vh;
  overflow-y: auto;
}
.cxModal_bg {
  background: #373737;
}
.cxModal_wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
  max-width: 1530px;
  width: 100%;
  margin: 0 auto;
}
.cxModal_title {
  font-size: 50px;
  padding-bottom: 10px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: var(--font-con-bold);
}
.cxModal_text_wrapper {
  max-width: 520px;
  width: 100%;
}
.cxModal_text_head h3 {
  font-size: 28px;
  padding-bottom: 40px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: var(--font-con-bold);
}
.cxModal_text_head p {
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 20px;
  line-height: 1.2;
  font-family: var(--font-din-medium);
}
.cxModal_features {
  padding-top: 10px;
}
.cxModal_features .cxModal_single_feature:not(:last-child) {
  padding-bottom: 20px;
}
.cxModal_single_feature {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 43px 20px 1fr;
  grid-template-columns: 43px 1fr;
  grid-gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.cxModal_feature_thumb {
  max-width: 42px;
  width: 100%;
}
.cxModal_feature_text h4 {
  font-size: 17px;
  color: #d63929;
  font-weight: var(--font-con-black-italic);
  font-style: italic;
  text-transform: uppercase;
  font-weight: bold;
}
.cxModal_feature_text p {
  font-size: 14px;
  font-weight: 500;
  padding-top: 5px;
  font-family: var(--font-din-medium);
  line-height: 1;
}
.modal__header .btn_close {
  position: absolute;
  right: 100px;
  top: 50px;
  color: #ffffff;
  font-size: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 5px;
  -moz-column-gap: 5px;
  column-gap: 5px;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.2s all ease;
  -o-transition: 0.2s all ease;
  transition: 0.2s all ease;
  font-family: var(--font-myriad-bold);
}
.modal__header .btn_close span {
  font-family: var(--font-myriad-bold);
  font-size: 38px;
  margin-top: -2px;
}
.modal__header .btn_close small {
  font-size: 24px;
}
.modal__header .btn_close:hover {
  color: #d63929;
}
.modal__header .btn_close:active {
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}
.modal__header .btn_close:hover span {
  text-decoration: none;
}
.btn_close .close_icon {
  display: none;
}
/* Modal Slider */
.mySwiper2 {
  height: 610px;
  width: 610px;
}
.mySwiper2 .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.mySwiper {
  width: 420px;
  height: 120px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px 0;
  margin-top: 30px;
}

.mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
  cursor: pointer;
}
.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}
/* Optional: remove default arrow styles */
.cxTop_slider .swiper-button-next::after,
.cxTop_slider .swiper-button-prev::after {
  display: none;
}
.cxTop_slider .swiper-button-prev img,
.cxTop_slider .swiper-button-next img {
  width: 35px;
  height: 70px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cxTop_slider {
  position: relative;
  z-index: 1;
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
}
.cxTop_slider .swiper-slide {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cxTop_slider {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.cxTop_slider::before,
.cxTop_slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.cxTop_slider::before {
  left: 60px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(55, 55, 55, 1)),
    to(rgba(55, 55, 55, 0))
  );
  background: -o-linear-gradient(
    left,
    rgba(55, 55, 55, 1),
    rgba(55, 55, 55, 0)
  );
  background: linear-gradient(
    to right,
    rgba(55, 55, 55, 1),
    rgba(55, 55, 55, 0)
  );
}
.cxTop_slider::after {
  right: 60px;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(55, 55, 55, 1)),
    to(rgba(55, 55, 55, 0))
  );
  background: -o-linear-gradient(
    right,
    rgba(55, 55, 55, 1),
    rgba(55, 55, 55, 0)
  );
  background: linear-gradient(
    to left,
    rgba(55, 55, 55, 1),
    rgba(55, 55, 55, 0)
  );
}
.video-container {
  position: relative;
  padding-bottom: 200%;
  height: 100%;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  border-radius: 30px;
}

.video-container::after {
  position: absolute;
  content: "";
  z-index: -1;
  height: 100%;
  top: 0;
  left: 0;
  width: 100%;
  background-image: url("../images/youtube-frame.png");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: contain;
}
.video-container iframe {
  position: absolute;
  top: 20px;
  left: 19px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  border-radius: 24px;
}
.swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  text-align: center;
}
.cxCart_pricing_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 15px;
  -moz-column-gap: 15px;
  column-gap: 15px;
}
.cxCart_pricing_box button {
  display: none;
}
/* Responsive Design */
@media screen and (max-width: 1600px) {
  .right_shape {
    height: 269px;
    width: 1120px;
  }
  /* For Modal */
  .cxModal_wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 0.8fr;
    grid-template-columns: 1fr 0.8fr;
    max-width: 1530px;
    padding: 20px;
  }
}
@media screen and (max-width: 1440px) {
  .main_top_shape {
    max-width: 635px;
    height: 580px;
  }
  .right_shape {
    height: 263px;
    width: 882px;
  }
  .cxSlider_box {
    left: 10vw;
  }
  /* For Modal */
  .mySwiper2 {
    height: 500px;
    width: 500px;
  }
  .cxTop_slider {
    max-width: 660px;
  }
  .cxProgram_package_footer h2,
  .cxProgram_package_head h2 {
    font-size: 36px;
  }
  .cxCart_text {
    max-width: 220px;
  }
  .cxCart {
    padding: 10px;
  }
}
@media screen and (max-width: 1400px) {
  .cartSwiper {
    max-width: 500px;
  }
}
@media screen and (max-width: 1200px) {
  .cxProgram {
    background-image: url("../images/bg-mobile.png");
    background-attachment: fixed;
    height: 100vh;
  }
  .cxProgram::after {
    height: 360px;
    z-index: 1;
    background: -webkit-gradient(
      linear,
      left bottom,
      left top,
      from(rgba(0, 0, 0, 0.8)),
      to(transparent)
    );
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.8), transparent);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  }
  .main_top_shape {
    max-width: 575px;
    height: 520px;
  }
  .cxSlider_box {
    left: inherit;
    right: -15vh;
    height: 77vh;
  }
  .cxWrapper {
    display: block;
    padding-bottom: 100px;
    max-height: calc(100vh - 470px);
    overflow-y: auto;
    min-height: 100%;
    padding-top: 0px;
    padding-bottom: 40px;
    width: 100%;
    padding-left: 185px;
  }
  .cxProgram_package_head {
    text-align: left;
    padding-bottom: 30px;
  }
  .right_shape {
    top: 430px;
    right: 0;
  }
  .cxProgram_package_footer h2 {
    color: #fff;
  }
  h4.cxNoScroll {
    position: fixed;
    top: 390px;
    padding-bottom: 0px;
  }
  .cxProgram_text_box {
    padding-top: 0px;
  }
  .cxContainer {
    align-items: flex-end;
  }
  .cxProgram_packages {
    height: 100%;
    display: block;
  }
  /* For Modal */
  .cxModal_wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    max-width: 680px;
    width: 100%;
    padding: 40px 20px;
  }
  .cxTop_slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .mySwiper {
    display: none;
  }
  .cxFor_mobile {
    display: block;
  }
  .cxForDesktop {
    display: none;
  }
  .modal__header .btn_close small,
  .modal__header .btn_close span {
    display: none;
  }
  .btn_close .close_icon {
    display: block;
    height: 24px;
    width: 24px;
  }
  .cxModal_text_head h3 br {
    display: none;
  }
  .cxModal_text_head h3 {
    font-size: 24px;
    max-width: 420px;
  }
  .modal__header .btn_close {
    position: absolute;
    right: 45px;
    top: 30px;
  }
  .cxProgram_text_box {
    max-width: 100%;
  }
  .cxProgram_text p {
    font-size: 18px;
  }
  .cxProgram_text h5 {
    font-size: 22px;
  }
  .cxProgram_text h3 {
    font-size: 24px;
  }
  .cxProgram_text ul li {
    font-size: 16px;
  }
  .cxProgram_packages {
    max-width: 750px;
  }
  .cxProgram_text_box {
    max-width: 750px;
  }
}
@media screen and (max-width: 1080px) {
  .cartSwiper {
    max-width: 920px;
    padding: 30px 0;
  }
  .cxCart_pricing_box {
    justify-content: flex-start;
  }
  .cxCart {
    padding: 10px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 300px 30px 1fr;
    grid-template-columns: 300px 1fr;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    max-width: 100%;
    overflow: inherit;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .cxCart_text {
    max-width: 510px;
    width: 100%;
    text-align: left;
  }
  .cxCart_pricing {
    text-align: left;
  }
  .cxCart_thumb {
    max-width: 100%;
  }
  .cxCart_text p {
    font-size: 16px;
    padding-top: 0px;
    height: auto;
    line-height: 1.3;
  }
  .cxCart_pricing h4 {
    font-size: 24px;
  }
  .cxCart_pricing h2 {
    font-size: 52px;
  }
  .cxCart_pricing_box button {
    display: block;
  }
  .cxCart_pricing button.forDesk {
    display: none;
  }
  .btn_primary {
    font-size: 16px;
    max-width: 160px;
  }
  .cxCart::before {
    top: -15px;
    left: 150px;
    width: 70%;
    right: 0;
    padding: 1px;
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(rgba(255, 255, 255, 0.856)),
      to(rgba(255, 255, 255, 0))
    );
    background: -o-linear-gradient(
      left,
      rgba(255, 255, 255, 0.856),
      rgba(255, 255, 255, 0)
    );
    background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.856),
      rgba(255, 255, 255, 0)
    );
    -webkit-mask: -webkit-gradient(
          linear,
          left top,
          left bottom,
          color-stop(0, #fff)
        )
        content-box,
      -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: calc(100% + 30px);
  }
  .cxModal_bg,
  .modal__overlay {
    background: #231f20;
  }
  .cxTop_slider::before {
    left: 60px;
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(rgb(35, 31, 32, 1)),
      to(rgb(35, 31, 32, 0))
    );
    background: -o-linear-gradient(
      left,
      rgb(35, 31, 32, 1),
      rgb(35, 31, 32, 0)
    );
    background: linear-gradient(
      to right,
      rgb(35, 31, 32, 1),
      rgb(35, 31, 32, 0)
    );
  }
  .cxTop_slider::after {
    right: 60px;
    background: -webkit-gradient(
      linear,
      right top,
      left top,
      from(rgb(35, 31, 32, 1)),
      to(rgb(35, 31, 32, 0))
    );
    background: -o-linear-gradient(
      right,
      rgb(35, 31, 32, 1),
      rgb(35, 31, 32, 0)
    );
    background: linear-gradient(
      to left,
      rgb(35, 31, 32, 1),
      rgb(35, 31, 32, 0)
    );
  }
  .cxSlider_box {
    right: -280px;
    height: 700px;
  }
  .right_shape {
    height: 250px;
    width: 800px;
  }
  .cxBodySlider {
    width: 600px;
    height: 700px;
  }
  .cxBoxSlide_one img {
    height: 700px;
  }
  .cxBoxSlide_two img {
    height: 730px !important;
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }
  .cxBoxSlide_three img {
    height: 990px !important;
  }
  .cxProgram_packages .swiper-wrapper {
    display: grid;
    row-gap: 60px;
    grid-template-columns: 1fr;
  }
  .cxProgram_packages .cxCart_lastchild {
    display: none !important;
  }
}
@media screen and (max-width: 992px) {
  .right_shape {
    height: 260px;
    width: 900px;
    top: 472px;
    right: inherit;
    left: 175px;
  }
  .cartSwiper {
    max-width: 720px;
  }
  .cxWrapper {
    padding-left: 130px;
    max-height: calc(100vh - 415px);
  }
  .main_top_shape {
    max-width: 510px;
    height: 460px;
  }
  h4.cxNoScroll {
    top: 340px;
  }
  .cxProgram_text p {
    font-size: 14px;
  }
  .cxProgram_text h2,
  .cxProgram_text h4 {
    font-size: 28px;
  }
  .cxProgram_text ul li {
    font-size: 14px;
  }
  .cxProgram_text h5 {
    font-size: 18px;
  }
  .cxProgram_text h3 {
    font-size: 20px;
  }
  .cxProgram_package_footer h2,
  .cxProgram_package_head h2 {
    font-size: 32px;
  }
  .cxProgram_package_footer {
    padding-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .main_top_shape {
    max-width: 444px;
    height: 400px;
  }
  .cxSlider_box {
    right: -269px;
  }
  .cartSwiper {
    max-width: 560px;
  }
  .cxCart {
    -ms-grid-columns: 220px 1fr;
    grid-template-columns: 220px 1fr;
  }
  .cxCart::before {
    left: 110px;
  }
  h4.cxNoScroll {
    top: 300px;
  }
  .cxWrapper {
    padding-left: 60px;
    max-height: calc(100vh - 365px);
  }
  /* For Modal */
  .mySwiper2 {
    height: 420px;
    width: 420px;
  }
  .cxTop_slider::before {
    left: 50px;
  }
  .cxTop_slider::after {
    right: 50px;
  }
  .cxModal_title {
    font-size: 42px;
  }
  .cxModal_text_head h3 {
    font-size: 22px;
    max-width: 400px;
  }
  .cxCart_text p {
    font-size: 14px;
  }
  .cxCart_pricing h4 {
    font-size: 20px;
  }
  .cxCart_pricing h2 {
    font-size: 42px;
  }
  .cxCart_pricing_box .btn_primary {
    font-size: 14px;
  }
  .cxProgram_package_footer h2,
  .cxProgram_package_head h2 {
    font-size: 32px;
  }
  .right_shape {
    height: 250px;
    width: 760px;
  }
}
@media screen and (max-width: 576px) {
  .cxWrapper {
    padding-left: 60px;
    max-height: calc(100vh - 345px);
  }
  .main_top_shape {
    max-width: 420px;
    height: 380px;
  }
  h4.cxNoScroll {
    top: 285px;
  }
  .cartSwiper {
    max-width: 420px;
  }
  .cxSlider_box {
    right: -172px;
  }
  .cxProgram_text h2,
  .cxProgram_text h4 {
    font-size: 24px;
  }
  .cxProgram_package_footer h2,
  .cxProgram_package_head h2 {
    font-size: 24px;
  }
  .cxProgram_package_footer h2 br,
  .cxProgram_package_head h2 br,
  .cxProgram_package_footer h2 br,
  .cxProgram_package_head h2 br {
    display: none;
  }
  .cxCart_pricing_box {
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .cxCart_pricing_box .btn_primary {
    display: none;
  }
  .cxCart_pricing button.forDesk {
    display: block;
  }
  .cxCart_pricing h2 {
    font-size: 32px;
  }
  .cxCart_pricing h4 {
    font-size: 16px;
  }
  .btn_primary {
    font-size: 14px;
  }
  .cxCart {
    padding: 10px 0px;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
  }
  .cxSlider_box {
    height: 645px;
  }
  .right_shape {
    height: 220px;
    top: 380px;
    left: 100px;
  }
  .cxCart {
    display: block;
    row-gap: 20px;
  }
  .cxCart_thumb {
    max-width: 270px;
  }
  .cxCart_text {
    padding-top: 10px;
    max-width: 270px;
    text-align: center;
  }
  .cxCart_pricing {
    text-align: center;
  }
  .cxCart_pricing_box {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .cxCart_pricing button.forDesk {
    display: block;
    margin: 0 auto;
  }
  .cxCart::before {
    width: calc(100% + 40px);
    margin: 0 auto;
    content: "";
    position: absolute;
    top: 30%;
    left: -20px;
    right: 0;
    padding: 1px;
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(rgba(255, 255, 255, 0.5)),
      to(rgba(255, 255, 255, 0))
    );
    background: -o-linear-gradient(
      top,
      rgba(255, 255, 255, 0.5),
      rgba(255, 255, 255, 0)
    );
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.5),
      rgba(255, 255, 255, 0)
    );
    -webkit-mask: -webkit-gradient(
          linear,
          left top,
          left bottom,
          color-stop(0, #fff)
        )
        content-box,
      -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 70%;
  }
  .cxProgram_package_footer h3 {
    font-size: 24px;
  }
  .cxProgram_package_footer p {
    padding-bottom: 30px;
  }
  .cxWrapper {
    padding-bottom: 40px;
    padding-left: 20px;
  }
  .cxProgram_package_head {
    text-align: left;
    padding-bottom: 0px;
  }
  .cxBoxSlide_one img {
    height: 500px;
  }
  .cxBoxSlide_two img {
    height: 540px !important;
  }
  .cxBoxSlide_three img {
    height: 720px !important;
  }
  .cxBodySlider {
    width: 377px;
    height: 500px;
  }
  .cxProgram_package_footer {
    padding-top: 10px;
  }
  .cxProgram_packages .swiper-wrapper {
    row-gap: 40px;
  }
  /* For Modal */
  .mySwiper2 {
    height: 470px;
    width: 220px;
  }
  .cxTop_slider {
    max-width: 400px;
  }
  .cxTop_slider .swiper-button-prev img,
  .cxTop_slider .swiper-button-next img {
    width: 25px;
    height: 55px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .video-container iframe {
    top: 15px;
    left: 14px;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    border-radius: 24px;
  }
  .cxModal_title {
    font-size: 36px;
  }
  .cxModal_text_head h3 {
    font-size: 20px;
    max-width: 360px;
  }
  .modal__header .btn_close {
    position: absolute;
    right: 35px;
    top: 20px;
  }
  .cxModal_feature_text p br,
  .cxModal_feature_text h4 br,
  .cxModal_text_head p br {
    display: none;
  }
  .cxProgram_text ul li,
  .cxProgram_text p {
    font-size: 12px;
  }
  .cxProgram_text h2,
  .cxProgram_text h4 {
    font-size: 22px;
  }
  .cxProgram_text h5 {
    font-size: 14px;
  }
  .cxProgram_package_footer h2,
  .cxProgram_package_head h2 {
    font-size: 20px;
  }
  .cxProgram_package_footer h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 500px) {
  .main_top_shape {
    max-width: 353px;
    height: 320px;
  }
  h4.cxNoScroll {
    top: 240px;
  }
  .cxSlider_box {
    right: -130px;
  }
  .cxProgram_text h4 br,
  .cxProgram_text p br,
  .cxProgram_package_footer h2 br,
  .cxProgram_package_head h2 br {
    display: none;
  }
  .cxWrapper {
    max-height: calc(100vh - 300px);
  }
}
@media screen and (max-width: 450px) {
  .cxSlider_box {
    right: -100px;
  }
  .right_shape {
    height: 200px;
    top: 352px;
    left: 31px;
  }
  .cartSwiper {
    max-width: 340px;
  }
}
