@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap');
@font-face {
    font-family: 'Edensor';
    src: url('fonts/EdensorFree.woff2') format('woff2'),
        url('fonts/EdensorFree.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



:root{
  --cs-primary-color: #BF8A03;
}



/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.cs-mb-10{
  margin-bottom: 10px;
}
.cs-mb-15{
  margin-bottom: 15px;
}
.cs-mb-20{
  margin-bottom: 20px;
}
.cs-mb-25{
  margin-bottom: 25px;
}
.cs-mb-40{
  margin-bottom: 40px;
}
h1{
  font-size: 60px;
}
h2{
  font-size: 48px;
  letter-spacing: 2%;
}
body {
  background: #100b00;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  line-height: 1.5;
}
img{
  display: block;
  margin: 0;
}
h1,h2,h3,h4,h5,h6{
  font-family: 'Edensor';
  font-weight: 400;
}
/* COMMON */
.cs-container {
  width: 100%;
  max-width: 1380px;
  margin: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.cs-btn {
  display: inline-block;
  background: var(--cs-primary-color);
  color: #000;
  padding: 12px 26px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  border-radius: 4px;
}

.cs-btn:hover {
  background: #b88b12;
}
.cs-logo img {
    width: auto;
    height: 100px;
}
header{
  position: relative;
  z-index: 1;
}
/* HEADER */
.cs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.cs-logo {
  font-size: 42px;
  font-weight: bold;
  color: #fff;
}
/* HERO */
.cs-hero {
  position: relative;
  /* height: 100vh; */
  overflow: hidden;
  margin-top: -140px;
 
}

.cs-hero-bg {
  width: 100%;
  object-fit: cover;
  z-index: -1;
  top: 0;
  left: 0;
  min-height: 800px;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
}
.cs-hero .cs-container {
    padding-top: 180px;
    padding-bottom: 200px;
    display: flex;
    justify-content: space-between;
    gap: 105px;
    align-items: center;
}
.cs-hero-img-block{
  max-width: 400px;
  width: 100%;
  position: relative;
}
.cs-hero-img-block img{
  width: 100%;
}



/* HERO CONTENT */
.cs-hero-content {
  max-width: 650px;
  width: 100%;
  position: relative;
}
.cs-hero-content:before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: calc(100% + 100px);
  height: calc(100% + 100px);
  background: #100B00;
  z-index: -1;
  filter: blur(200px);
}
.cs-feature p {
  font-size: 20px;
}
.cs-live {
  display: inline-flex;
  background: #FFD7D7;
  color: #FF0000;
  font-size: 18px;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 15px;
  gap: 12px;
  align-items: center;
  position: relative;
}
.cs-live:before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #FF0000;
  box-shadow: 0 0 0 5px rgba(255,255,255.5);
  position: relative;
  top: -1px;
}
span.cs-live:after {
    animation: pulse 1.5s infinite;
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(255, 0, 0, .9);
    position: absolute;
    top: calc(50% - 1px);
    transform: translateY(-50%);
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.9);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(255, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
  }
}

.cs-sub {
  color: var(--cs-primary-color);
  font-size: 36px;
  margin-bottom: 10px;
}

.cs-title {
  font-size: 60px;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: 5%;
  font-weight: 400;
}

.cs-desc {
  font-size: 20px;
}

/* PRICE DIAMOND */
.cs-price {
    position: absolute;
    left: -60px;
    bottom: 10px;
    width: 160px;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}
.cs-price:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: #BF8A03;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: rotate(45deg);
  box-shadow: 0px 0px 0px 10px rgba(191,138,3,.5);
}
.cs-price span,
.cs-price h2 {
  text-align: center;
}

.cs-price span {
  display: block;
  font-size: 20px;
}

.cs-price h2 {
  font-size: 70px;
}

/* FEATURES STRIP */
.cs-features {
  background: transparent;
  position: relative;
  z-index: 3;
  padding-left: 30px;
  padding-right: 30px;
  margin-top: -40px;
}

.cs-features-inner {
  background: #FFFBF0;
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  clip-path: polygon(40px 0, calc(100% - 40px) 0, 100% 50%, calc(100% - 40px) 100%, 40px 100%, 0 50%);
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  gap: 30px;
}

.cs-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.cs-feature span {
  font-size: 18px;
}

/* ABOUT SECTION */
.cs-about {
  padding: 90px 0;
  background: #100B00;
}

.cs-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

/* IMAGES */
.cs-about-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cs-img-large {
  width: 100%;
}

.cs-img-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.cs-img-small {
  width: 60%;
}

/* EXPERIENCE BOX */
.cs-exp {
  background: var(--cs-primary-color);
  color: #fff;
  padding: 15px;
  text-align: center;
  flex: 1;
  aspect-ratio: 1 /1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  clip-path: polygon(30px 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px);
}

.cs-exp h2 {
  font-size: clamp(32px, 5vw + 1rem, 110px); 
  line-height: 1;
}

.cs-exp p {
  font-size: 20px;
}

/* ABOUT CONTENT */
.cs-featured-interview{
  background-color: #100B00;
  padding: 0 0 90px;
}
.cs-featured-interview .cs-header-block{
  max-width: 865px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.cs-about-title {
  position: relative;
}

.cs-about-title::before {
  content: "◆";
  color: var(--cs-primary-color);
  margin-right: 10px;
}
.cs-featured-video iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 4px;
    display: block;
}

/* SECTION */
.cs-exp-sec {
  padding: 90px 0 0;
  position: relative;
  overflow: hidden;
}

/* GRID */
.cs-exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cs-exp-title {
  position: relative;
}

.cs-exp-title::before {
  content: "◆";
  color: var(--cs-primary-color);
  margin-right: 10px;
}



/* RIGHT IMAGE */
.cs-exp-image {
  position: relative;
}

.cs-exp-image img {
  width: 100%;
  display: block;
}


.masterclass-section {
  background: #0f0f0f;
  color: #fff;
  padding: 90px 0;
}


.section-title {
  text-align: center;
  position: relative;
}

.section-title::before {
  content: "◆";
  color: var(--cs-primary-color);
  margin-right: 10px;
}

/* LEARN GRID */
.learn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 90px;
}

.learn-card {
  border: 1px solid var(--cs-primary-color);
  padding: 10px 15px 10px 65px;
  position: relative;
  border-radius: 4px;
  transition: 0.3s;
  margin-left: 55px;
  display: flex;
  align-items: center;
  min-height: 130px;
}

.learn-card:hover {
  transform: translateY(-3px);
}

.learn-card .icon {
  font-size: 22px;
  background-color: #bf8a03;
  position: absolute;
  left: -55px;
  width: 110px;
  top: 50%;
  transform: translateY(-50%);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  padding: 25px;
}
.learn-card .icon img{
  width: 100%;
  filter: brightness(10);
}

/* COMPARE GRID */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 23px;
}

.box {
  padding:0 20px 30px;;
}

.box-title {
  font-weight: 700;
  padding: 10px 15px;
  margin-bottom: 15px;
  border-radius: 4px;
  display: table;
  margin: -23px auto 30px;
  text-align: center;
}

.box ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.box ul li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  font-size: 16px;
}
.box ul li:last-child{
  margin-bottom: 0;
}
.box ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--cs-primary-color);
  width: 17px;
  height: 17px;
  background-image: url("data:image/svg+xml,%3Csvg width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.85938 0C5.52686 0 8.5 2.97314 8.5 6.64062C8.5 2.97314 11.4731 0 15.1406 0H17V10.3594C17 14.0269 14.0269 17 10.3594 17H6.64062C2.97314 17 0 14.0269 0 10.3594V0H1.85938Z' fill='%23878787'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
}
.box.highlight ul li::before{
  background-image: url("data:image/svg+xml,%3Csvg width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.85938 0C5.52686 0 8.5 2.97314 8.5 6.64062C8.5 2.97314 11.4731 0 15.1406 0H17V10.3594C17 14.0269 14.0269 17 10.3594 17H6.64062C2.97314 17 0 14.0269 0 10.3594V0H1.85938Z' fill='%23BF8A03'/%3E%3C/svg%3E%0A");
}

/* LEFT (highlight) */
.compare-grid .box {
  position: relative;
  z-index: 1;
}
.compare-grid .box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #353535;
    z-index: -1;
    border-radius: 8px;
}
.compare-grid .box:after {
  content: '';
  position: absolute;
  left: 0;
  width: calc(100% + 20px);
  height: calc(100% - 40px);
  left: -10px;
  bottom: -10px;
  background-color: #BF8A03;
  border-radius: 4px;
  z-index: -2;
}
.compare-grid .box.muted:after{
  background-color: #878787;
}

.highlight .box-title {
  background: var(--cs-primary-color);
}
p.cs-light-title {
    background-color: #262626;
    margin: 0 -20px;
    padding: 10px 25px;
    text-align: center;
    font-size: 20px;
    text-transform: uppercase;
}


.muted .box-title {
  background: #878787;
}


.cs-instafeed{
  padding: 90px 0;
  overflow: hidden;
}



/* SECTION */
.cs-info-sec {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.cs-info-bg {
    width: 100%;
    min-height: 650px;
    object-fit: cover;
    height: auto;
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
}
.cs-info-sec{
  padding-top: 90px;
  padding-bottom: 90px;
}
.cs-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
}
.cs-container.cs-info-wrap {
    /* position: absolute; */
    top: 0;
}

/* WRAP */
.cs-info-wrap {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: space-between;
}

.cs-info-left-img img {
  max-width: 500px;
  width: 100%;
}
/* CONTENT */
.cs-info-content {
  max-width: 590px;
  width: 100%;
  position: relative;
}
.cs-info-content:after{
  content: '';
  position: absolute;
  width: calc(100% + 100px);
  height: calc(100% + 100px);
  left: -50px;
  top: -50px;
  z-index: -1;
  background-color: #100B00;
  filter: blur(150px);
}

.cs-info-title {
  position: relative;
}

.cs-info-title::before {
  content: "◆";
  color: #d4a017;
  margin-right: 10px;
}

/* GRID */
.cs-info-grid {
  display: grid;
  grid-template-columns: auto auto;
  gap: 50px;
  margin-bottom: 60px;
}

.cs-info-item {
  display: flex;
  gap: 12px;
}

.cs-icon {
  font-size: 20px;
}

.cs-info-item h4 {
  font-size: 18px;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  color: #fff;
}

.cs-info-item p {
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
}
.cs-info-item p span{
  display: block;
  font-weight: 700;
  font-size: 18px;
}

/* PRICE BOX */
.cs-info-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.5);
  padding: 20px;
  margin-bottom: 10px;
  border-radius: 6px;
}

.cs-price-left span {
  font-size: 16px;
  color: #fff;
}
.cs-price-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cs-price-left h3 {
  font-size: 48px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
}


/* NOTE */
.cs-note {
  font-size: 14px;
  color: #fff;
  font-style: italic;
}



/* SECTION */
.cs-faq-sec {
  background: #1F1501;
  padding: 90px 0;
  color: #fff;
}

/* GRID */
.cs-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* TITLES */
.cs-faq-title {
  position: relative;
}

.cs-faq-title::before {
  content: "◆";
  color: #d4a017;
  margin-right: 10px;
}

/* FAQ LIST */

.cs-faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 15px 0;
}
.cs-faq-list .cs-faq-item:nth-child(1){
  padding-top: 0;
}

/* HEAD */
.cs-faq-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
}

.cs-faq-head span:first-child {
  color: #fff;
  font-size: 18px;
}

/* ICON */
.cs-icon {
  font-size: 24px;
  transition: 0.3s;
  line-height: 1;
}

/* BODY */
.cs-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: all 0.7s ease;
}

.cs-faq-body p {
  font-size: 16px;
  color: #fff;
  margin-top: 10px;
  line-height: 1.6;
}

/* ACTIVE STATE */
.cs-faq-item.active .cs-faq-body {
  max-height: 200px;
}

.cs-faq-item.active .cs-icon {
  transform: rotate(180deg);
}

.cs-footer-cta{
  background-color: #000;
  position: relative;
  z-index: 1;
}
.cs-footer-cta:after{
  content: '';
  position: absolute;
  width: 100%;
  height: 120px;
  background: #1F1501;
  top: 0;
  left: 0;
  z-index: -1;
}
.cs-footer-cta-inner {
  position: relative;
  padding: 70px;
  border-radius: 10px;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
}
.cs-footer-cta-inner:after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(191,138,3,.8);
}
.cs-footer-cta-row{
  position: relative;
  z-index: 1;
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}
.cs-footer-cta-left p {
  display: flex;
  align-items: center;
}
.cs-footer-cta-left p span {
  font-size: 48px;
  font-weight: 700;
  margin-left: 20px;
}


footer {
  background: #000000;
  padding: 70px 0 30px;
}
.cs-footer-content > a {
  display: table;
  margin: 0 auto 15px;
}
.cs-footer-content > a > img {
  max-width: 130px;
  width: 100%;
  height: auto;
}
.cs-follow-link {
  display: table;
  margin: 0 auto 40px;
}
.cs-follow-link a {
  display: inline-flex;
  color: #Fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  gap: 5px;
}

.cs-follow-link a img {width: 18px;}
.cs-footer-contact ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cs-footer-contact ul li + li {
    margin-top: 10px;
}
.cs-footer-contact ul li a {
    display: inline-flex;
    gap: 15px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    align-items: center;
    text-decoration: none;
}
.cs-footer-contact ul li a img{
  width: 26px;
  height: 26px;
  object-fit: contain;
}
.cs-chef-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 30px 0 0;
}
.cs-chef-links a {
  color: #fff;
  text-decoration: none;
}
.cs-footer-contact{
  display: flex;
  justify-content: center;
  text-align: center;
}
.cs-copyright{
  margin-top: 35px;
  padding: 0 30px;
}
.cs-copyright p{
  text-align: center;
  font-size: 18px;
}
.cs-copyright p a{
  color: #fff;
}

.cs-instafeed{
  position: relative;
}
.cs-instafeed:before {
    content: '';
    position: absolute;
    bottom: 92px;
    left: 0;
    width: 100%;
    height: 40px;
    background: #100b00;
    z-index: 1;
    top: initial;
}
.cs-btn-lang{
  display: flex;
  gap: 15px;
  align-items: center;
}
.cs-lang-link a{
  display: block;
  padding: 2px;
  background-color: #fff;
  border-radius: 2px;
}
.cs-lang-link img{
  width: 100%;
  height: auto;
  border-radius: 2px;
  width: 26px;
}
.cs-book-btn {
  border-radius: 6px;
  overflow: hidden;
  max-width: 170px;
  height: 44px;
}
.cs-book-btn stripe-buy-button {
    margin-left: -59px !important;
}
@media (max-width: 1199px){
  .cs-about-grid {
    gap: 40px;
  }
  .learn-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .cs-about-grid {
    grid-template-columns: 1fr;
  }

  .cs-hero-content {
    margin-top: 60px;
  }
  .cs-hero .cs-container{
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
  }
  .cs-hero-img-block {
    max-width: 470px;
    align-self: center;
  }
  .cs-price {
    right: 100px;
    bottom: 50%;
    width: 120px;
    height: 120px;
    transform: translateY(50%);
  }
   .cs-exp-grid {
    grid-template-columns: 1fr;
  }

  .cs-exp-content {
    max-width: 100%;
    order: 2;
  }
  .cs-exp-image{
    order: 1;
  }

  .compare-grid {
    grid-template-columns: 1fr;
  }
  .cs-info-sec {
    height: auto;
  }
  .cs-faq-grid {
    grid-template-columns: 1fr;
  }
  .cs-price h2 {
    font-size: 50px;
  }
  .cs-feature p {
    font-size: 16px;
  }
  .cs-footer-cta-inner {
      padding: 20px;
  }
  .cs-footer-cta-left p span {
    font-size: 36px;
  } 
  .cs-info-wrap{
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .cs-title {
    font-size: 36px;
  }
  h2 {
    font-size: 30px;
  }
  p{
    font-size: 16px !important;
  }
  .cs-info-sec,
  .cs-exp-sec,
  .cs-instafeed,
  .cs-faq-sec,
  .masterclass-section,
  .cs-about{
    padding-top: 60px;
  }
  .cs-info-sec,
  .cs-faq-sec,
  .masterclass-section,
  .cs-featured-interview,
  .cs-about{
    padding-bottom: 60px;
  }
  .cs-instafeed{
    padding-bottom: 20px;
  }
  .learn-grid{
    margin-bottom: 60px;
  }
  .cs-container{
    padding-left: 15px;
    padding-right: 15px;
  }
  .cs-info-grid,
  .learn-grid {
    grid-template-columns: 1fr;
  }
  .cs-info-price {
    flex-direction: column;
    gap: 30px;
  }
  .cs-header,
  .cs-footer-cta-row {
    flex-wrap: wrap;
  }
  .cs-exp-grid{
    gap: 30px
  }
  .cs-header {
    gap: 15px;
  }
  .cs-logo img {
    height: 70px;
  }
  .cs-footer-contact ul li a{
    font-size: 18px;
  }
  p.cs-light-title{
    padding: 10px;
  }
  .cs-info-bg{
    position: absolute;
    height: 100%;
  }
  .cs-hero {
    margin-top: -191px;
  }
  .cs-hero-bg{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }
  .cs-hero .cs-container{
    position: relative;
    top: 0;
    transform: none;
  }
  .cs-sub {
    font-size: 18px !important;
  }
  .cs-price span {
    display: block;
    font-size: 16px;
  }
  .cs-price h2 {
    font-size: 30px;
  }
  .cs-price {
    right: inherit;
    bottom: 100%;
    width: 90px;
    height: 90px;
    left: calc(100% - 120px);
  }
  .cs-features {
    padding-left: 15px;
    padding-right: 15px;
  }
  .cs-hero .cs-container{
    padding-bottom: 110px;
  }
  .cs-features-inner{
    overflow: auto;
  }
  .cs-feature{
    min-width: max-content;
  }
  .learn-card .icon{
    width: 80px;
    left: -40px;
  }
  .learn-card {
    padding: 10px 15px 10px 50px;
    margin-left: 40px;
  }
  .cs-footer-content > a > img {
    max-width: 90px;
  }
  .cs-footer-contact ul li a img {
    width: 26px;
    height: 26px;
  }
  .cs-info-grid {
    gap: 30px;
  } 
  .cs-exp {
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
  }
  .cs-faq-title{
    text-align: center;
  }
  .cs-instafeed:before{
    bottom: 22px;
  }
  .cs-faq-right .cs-book-btn{
    display: none;
  }
  .cs-faq-right p.cs-mb-40 {
    margin: 0;
  }
}

@media (max-width: 480px){
  .cs-copyright{
    max-width: 275px;
    width: 100%;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
  }
}

