@import "../fonts/bodoni-bt/stylesheet.css";

@import "../fonts/sansation/stylesheet.css";

._bg-white {
  background-color: #ffffff !important;
}

._bg-beige {
  background-color: #F2E3D3 !important;
}

._bg-light-beige {
  background-color: #FEF0E9 !important;
}

:root {
  --text--fs-12: 12px;
  --text--fs-14: 14px;
  --text--fs-16: 16px;
  --text--fs-18: 18px;
  --text--fs-20: 20px;
  --text--fs-22: 22px;
  --text--fs-24: 24px;
  --text--fs-26: 26px;
  --text--fs-28: 28px;
  --text--fs-30: 30px;
  --text--fs-32: 32px;
  --text--fs-36: 36px;
  --text--fs-40: 40px;
  --text--fs-48: 48px;
  --text--fs-50: 50px;
  --text--fs-60: 60px;
}

:root {
  --container: 100%;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: none;
  outline: none;
}

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

:focus {
  outline: 0;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Sansation";
  font-weight: 400;
  color: #000000;
  font-size: var(--text--fs-18);
  line-height: 1.2;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body._js-overflow-hidden {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p {
  margin: 0;
}

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

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

a:hover {
  color: inherit;
}

img,
svg {
  width: 100%;
  height: auto;
}

main {
  overflow-x: hidden;
}

._standard-text p {
  font-size: var(--text--fs-18);
  font-weight: 400;
}

._standard-text *:last-child {
  margin-bottom: 0;
}

.gap-20 {
  row-gap: 20px;
}

.gap-40 {
  row-gap: 40px;
}

.gap-60 {
  row-gap: 60px;
}

.bg-silver {
  background-color: #FAFAFA;
}

.btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 20px;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  margin-top: 40px;
}

.btn {
  display: inline-block;
  font-size: var(--text--fs-18);
  font-family: "Sansation";
  font-weight: 400;
  color: #ffffff;
  border-radius: 0;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 8px 24px;
  text-align: center;
  border-radius: 100px;
  position: relative;
}

.btn:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn._with--play {
  position: relative;
}

.btn._with--play::after {
  content: "";
  position: absolute;
  background-image: url(../img/desktop/play.svg);
  background-repeat: no-repeat;
  background-position: right;
  width: 20px;
  height: 20px;
  right: 16px;
  top: 10px;
}

.btn._with-white-arrow {
  position: relative;
  padding-right: 50px;
}

.btn._with-white-arrow::after {
  content: "";
  position: absolute;
  background-image: url(../img/desktop/white-arrow.svg);
  background-repeat: no-repeat;
  background-position: right;
  width: 16px;
  height: 16px;
  right: 20px;
  top: 12px;
}

._border--btn {
  border: 3px solid #AA7D50;
  color: #613813;
  padding-right: 50px;
}

._border--btn:hover {
  background-color: #AA7D50;
  color: #ffffff;
}

._brown-btn {
  background-color: #613813;
  color: #ffffff;
}

._brown-btn:hover {
  color: #ffffff;
  background-color: #aa7d50;
}

._brown-btn img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 6px;
}

.link-arrow {
  color: #613813;
  position: relative;
  padding-right: 30px;
}

.link-arrow::after {
  content: "";
  position: absolute;
  background-image: url(../img/desktop/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 12px;
  right: 0;
  top: 4px;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.link-arrow:hover::after {
  -webkit-transform: translateX(6px);
      -ms-transform: translateX(6px);
          transform: translateX(6px);
}

.btn-link {
  color: #613813;
  text-decoration: none;
}

.btn-link:hover {
  text-decoration: underline;
  color: #613813;
}

.pt-25 {
  padding-top: 25px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pv-25 {
  padding-top: 25px;
  padding-bottom: 25px;
}

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

.pv-75 {
  padding-top: 75px;
  padding-bottom: 75px;
}

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

.pt-header-90 {
  padding-top: 90px;
}

.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.slick-dots li .slick-dot {
  background-color: #AA7D50;
  border-radius: 50%;
  padding: 6px;
}

.slick-dots li.slick-active .slick-dot {
  background-color: #613813;
}

.slick-arrow {
  background-color: #efcfc0;
  border-radius: 50%;
  font-size: 0;
  padding: 10px;
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
}

.slick-arrow::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.slick-prev {
  left: 0;
  z-index: 1;
}

.slick-prev::after {
  background-image: url(../img/desktop/left-arrow.svg);
  margin-left: 3px;
}

.slick-next {
  right: 0;
}

.slick-next::after {
  background-image: url(../img/desktop/right-arrow.svg);
  margin-left: 6px;
}

.breadcrumb {
  margin-bottom: 0;
}

.breadcrumb li.active {
  color: #613813;
  text-decoration: underline;
}

.speaker-modal .modal-content {
  background-color: transparent;
  border: none;
}

.speaker-modal .modal-content .btn-close {
  background: url(../img/desktop/cross.svg);
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 1;
}

.speaker-modal__heading {
  text-align: center;
}

.speaker-modal__heading h1 {
  font-size: var(--text--fs-30);
  margin-bottom: 6px;
  color: #613813;
}

.speaker-modal__heading h2 {
  font-size: var(--text--fs-22);
  margin-bottom: 20px;
}

.speaker-modal__heading p {
  font-size: var(--text--fs-20);
}

.speaker-modal .modal-body {
  background-color: #FEF0E9;
  padding: 40px 20px;
}

.speaker-modal form {
  width: 90%;
  margin: auto;
}

.speaker-modal form p {
  margin-bottom: 10px;
}

.speaker-modal form .form-control {
  padding: 12px 24px;
  border-radius: 20px;
  color: #000000;
}

.speaker-modal form .form-control::-webkit-input-placeholder {
  color: #000000;
}

.speaker-modal form .form-control::-moz-placeholder {
  color: #000000;
}

.speaker-modal form .form-control:-ms-input-placeholder {
  color: #000000;
}

.speaker-modal form .form-control::-ms-input-placeholder {
  color: #000000;
}

.speaker-modal form .form-control::placeholder {
  color: #000000;
}

.speaker-modal form select {
  padding: 12px 24px;
  border-radius: 20px;
}

.header {
  position: fixed;
  width: 100%;
  padding: 16px 0;
  top: 0;
  z-index: 99;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.header.js-sticky {
  background-color: #ffffff;
}

.header__logo img {
  width: 150px;
}

.header.sub-header {
  background-image: url(../img/desktop/sub-header.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.header .navbar .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  margin-right: 60px;
}

.header .navbar .menu li {
  color: #AA7D50;
  position: relative;
}

.header .navbar .menu li::before {
  content: "";
  position: absolute;
  background-color: #613813;
  height: 5px;
  width: 0;
  left: 0;
  bottom: -10px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 2.5px;
}

.header .navbar .menu li:hover::before {
  width: 100%;
}

.header .navbar .menu li.active::before {
  width: 100%;
}

.header .navbar .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .navbar .social a {
  color: #613813;
}

.header .navbar .social a img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 10px;
}

.header .navbar .social a.btn {
  background-color: #613813;
  font-size: var(--text--fs-16);
  color: #ffffff;
  padding: 8px 16px;
}

.header .navbar .social a.btn:hover {
  background-color: #AA7D50;
}

.hero {
  background-image: url(../img/desktop/hero-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 90px;
}

.hero__text {
  padding: 20px 0;
}

.hero__text h1 {
  font-size: var(--text--fs-60);
  margin-bottom: 20px;
}

.hero__text h1 span {
  color: #AA7D50;
}

.counter {
  background-image: url(../img/desktop/counter-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-bottom: 25%;
  position: relative;
  padding-top: 75px;
}

.counter h2 {
  font-size: var(--text--fs-40);
  margin-bottom: 10px;
  color: #ffffff;
}

.counter h2 span {
  color: #F6B63C;
}

.counter h3 {
  font-size: var(--text--fs-24);
  color: #ffffff;
}

.counter__item {
  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;
  gap: 16px;
}

.counter__item__img {
  width: 70px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
}

.counter__item__value__number {
  font-size: var(--text--fs-40);
  font-family: "Bodoni";
  color: #F6B63C;
}

.counter__item__value__postfix {
  font-size: var(--text--fs-30);
  font-family: "Bodoni";
  color: #F6B63C;
}

.counter__item__value p {
  color: #ffffff;
}

.counter .btn-wrapper {
  position: absolute;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translate(-50%, 0px);
      -ms-transform: translate(-50%, 0px);
          transform: translate(-50%, 0px);
}

.query__content {
  border: 1px solid #613813;
  padding: 30px;
}

.query__content h2 {
  font-size: var(--text--fs-30);
  color: #613813;
  text-align: center;
  margin-bottom: 20px;
}

.query__content .form-control {
  padding: 12px 16px;
  border-radius: 20px;
}

.query__content .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.query__content .g-recaptcha {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  -webkit-transform: scale(0.77);
      -ms-transform: scale(0.77);
          transform: scale(0.77);
}

.query__content .btn-wrapper .btn {
  width: 90%;
  margin: auto;
}

.img-text.img-bg {
  background-image: url(../img/desktop/hero-2-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.img-text h2 {
  font-size: var(--text--fs-40);
  margin-bottom: 6px;
}

.img-text h3 {
  font-size: var(--text--fs-24);
  margin-bottom: 20px;
  color: #613813;
}

.img-text p a {
  text-decoration: underline;
}

.img-text__img {
  position: relative;
}

.img-text__img span {
  background-color: #4a83d8;
  padding: 6px 20px;
  border-radius: 20px;
  color: #fff;
  position: absolute;
  top: 20%;
  left: 22%;
}

.membership-program h2 {
  font-size: var(--text--fs-40);
  margin-bottom: 20px;
}

.membership-program .nav .nav-link {
  border: 1px solid #613813;
  margin-bottom: 10px;
  border-radius: 0;
  margin-right: 10px;
  padding: 16px;
}

.membership-program .nav .nav-link:last-child {
  margin-bottom: 0;
}

.membership-program .nav .nav-link.active {
  background-color: #F2E3D3;
  border: 1px solid transparent;
  margin-right: 0;
}

.membership-program .nav .nav-link.active .item__left p {
  color: #613813;
}

.membership-program .nav .nav-link .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.membership-program .nav .nav-link .item p {
  color: #000000;
  font-size: var(--text--fs-20);
}

.membership-program .nav .nav-link .item span {
  font-size: var(--text--fs-14);
  color: #000000;
}

.membership-program .tab-content {
  background-color: #F2E3D3;
  padding: 0 30px 30px 30px;
}

.membership-program .tab-content ul li {
  margin-bottom: 16px;
  position: relative;
}

.membership-program .tab-content ul li::before {
  content: "";
  position: absolute;
  background-image: url(../img/desktop/tick.svg);
  background-size: contain;
  width: 20px;
  height: 20px;
  right: 0;
}

.membership-program .tab-content__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
  padding-top: 30px;
}

.membership-program .tab-content__head ._left span {
  padding: 10px 32px 10px 80px;
  background-color: #4A83D8;
  position: relative;
  border-radius: 35px 0 0 35px;
  color: #ffffff;
}

.membership-program .tab-content__head ._left span::before {
  content: "";
  left: 0;
  position: absolute;
  background-image: url(../img/desktop/icon-tab.png);
  width: 60px;
  height: 60px;
  top: 50%;
  background-size: contain;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.membership-program .tab-content__head ._right {
  background-color: #4A83D8;
  border-radius: 24px;
  color: #ffffff;
}

.membership-program .tab-content__head ._right a {
  padding: 10px 16px;
  display: inline-block;
}

.other-speakers h2 {
  font-size: var(--text--fs-40);
  margin-bottom: 60px;
}

.other-speakers__slide .item {
  text-align: center;
  margin: 0 1rem;
}

.other-speakers__slide .item:hover img {
  -webkit-transform: scale(0.95);
      -ms-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.other-speakers__slide .item img {
  max-width: 300px;
  width: 100%;
  margin-bottom: 20px;
}

.other-speakers__slide .item h3 {
  font-size: var(--text--fs-20);
  margin-bottom: 10px;
}

.other-speakers__slide .item a {
  color: #613813;
}

.other-speakers__slide .item a:hover {
  text-decoration: underline;
}

.videos-section h2 {
  font-size: var(--text--fs-40);
  margin-bottom: 20px;
}

.videos-section h2 span {
  color: #AA7D50;
}

.videos-section .nav {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}

.videos-section .nav .nav-item .nav-link {
  border: 1px solid #613813;
  color: #613813;
  background-color: transparent;
  min-width: 140px;
  border-radius: 20px;
}

.videos-section .nav .nav-item .nav-link.active {
  background-color: #613813;
  color: #ffffff;
}

.tab-videos__grid .item {
  margin: 0 !important;
}

.tab-videos .item {
  border: 3px solid #fce4d1;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 16px;
  -webkit-box-shadow: -1px 4px 34px -10px rgba(0, 0, 0, 0.23);
          box-shadow: -1px 4px 34px -10px rgba(0, 0, 0, 0.23);
}

.tab-videos .item__video {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}

.tab-videos .item__video img {
  border-radius: 16px;
}

.tab-videos .item__video .play-btn {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  bottom: 0;
  right: 0;
  margin-right: 10px;
  margin-bottom: 10px;
}

.tab-videos .item__video:hover img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.tab-videos .item__text h3 {
  font-size: var(--text--fs-24);
  color: #613813;
  margin-bottom: 10px;
}

.tab-videos .item__text h3:hover {
  color: #613813;
}

.tab-videos .item__text h4 {
  font-size: var(--text--fs-20);
  margin-bottom: 10px;
}

.all-video-speaker {
  position: relative;
}

.all-video-speaker .nav {
  padding: 16px 0;
  gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.all-video-speaker .nav::before {
  content: "";
  position: absolute;
  background-color: #ca9f73;
  left: 0;
  width: 100%;
  height: 60px;
  top: 0;
  z-index: -1;
}

.all-video-speaker .nav .nav-item .nav-link {
  background-color: transparent;
  padding: 0;
  color: #ffffff;
  border-radius: 0;
  padding-bottom: 10px;
}

.all-video-speaker .nav .nav-item .nav-link.active {
  color: #613813;
  position: relative;
}

.all-video-speaker .nav .nav-item .nav-link.active::before {
  content: "";
  position: absolute;
  background-color: #613813;
  width: 100%;
  height: 5px;
  border-radius: 6.5px;
  left: 0;
  bottom: 0;
}

.playlist h2 {
  margin-bottom: 10px;
  font-size: var(--text--fs-40);
}

.playlist h2 span {
  color: #AA7D50;
}

.playlist .item {
  background-image: var(--playlist-bg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  margin: 0;
  border: 1px solid #ecd9c5;
  overflow: hidden;
}

.playlist .item__content {
  padding: 40px 40px 100px 40px;
  position: relative;
}

.playlist .item__content::after {
  content: "";
  position: absolute;
  background-color: rgba(97, 56, 19, 0);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.playlist .item__content:hover::after {
  background-color: rgba(97, 56, 19, 0.4);
}

.playlist .item__content img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 20px;
}

.playlist .item__content h3 {
  font-size: var(--text--fs-24);
  color: #ffffff;
  margin-bottom: 4px;
}

.playlist .item__content p {
  color: #ffffff;
}

.playlist .item__content p a:hover {
  text-decoration: underline;
}

.playlist .playlist-slide .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.playlist .playlist-slide .item {
  margin-right: 1rem;
}

.playlist .playlist-slide .slick-dots {
  margin-top: 20px;
}

.tab-content > .tab-pane {
  display: block !important;
  height: 0px;
  overflow: hidden;
  padding: 0;
}

.tab-pane.active {
  height: auto;
}

.footer {
  background-image: url(../img/desktop/footer-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.footer__logo img {
  width: 160px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 30px;
}

.footer p {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

.footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #613813;
}

.footer ul li {
  font-size: var(--text--fs-18);
}

.footer ul li:hover {
  color: #AA7D50;
}

.footer .social-icon {
  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;
  gap: 30px;
  padding-top: 20px;
  padding-bottom: 40px;
}

.footer .social-icon a:hover {
  color: #AA7D50;
}

.footer .social-icon a img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 10px;
}

.footer__bottom {
  background-color: #AA7D50;
  padding: 16px 0;
}

.footer__bottom p {
  color: #ffffff;
  width: 100%;
  text-align: left;
  font-size: var(--text--fs-16);
}

.footer__bottom a img {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
}

.other-speakers-deatils h2 {
  font-size: var(--text--fs-40);
}

.other-speakers-deatils h3 {
  font-size: var(--text--fs-24);
  color: #613813;
  margin-bottom: 6px;
}

.other-speakers-deatils p {
  margin-bottom: 3px;
}

.other-speakers-deatils .btn-wrapper .btn {
  font-size: var(--text--fs-16);
}

.other-speakers-deatils img:hover {
  -webkit-transform: scale(0.95);
      -ms-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.watch-all-videos h2 {
  font-size: var(--text--fs-40);
  margin-bottom: 20px;
  margin-left: 1rem;
}

.watch-all-videos .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  margin-left: 1rem;
}

.watch-all-videos .nav .nav-item .nav-link {
  background-color: transparent;
  color: #613813;
  position: relative;
  padding: 6px 0;
}

.watch-all-videos .nav .nav-item .nav-link.active {
  color: #000000;
}

.watch-all-videos .nav .nav-item .nav-link.active::after {
  content: "";
  position: absolute;
  background-color: #613813;
  height: 3px;
  width: 100%;
  border-radius: 10px;
  left: 0;
  bottom: 0;
}

.watch-all-videos .search {
  position: relative;
}

.watch-all-videos .search input {
  min-width: 400px;
  padding: 10px 32px 10px 44px;
  border-radius: 10px;
  color: #613813;
}

.watch-all-videos .search input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.watch-all-videos .search input::-webkit-input-placeholder {
  color: #613813;
}

.watch-all-videos .search input::-moz-placeholder {
  color: #613813;
}

.watch-all-videos .search input:-ms-input-placeholder {
  color: #613813;
}

.watch-all-videos .search input::-ms-input-placeholder {
  color: #613813;
}

.watch-all-videos .search input::placeholder {
  color: #613813;
}

.watch-all-videos .search img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  top: 50%;
  left: 10px;
}

.watch-all-videos .item {
  -webkit-box-shadow: -1px 4px 28px -10px rgba(0, 0, 0, 0.23);
          box-shadow: -1px 4px 28px -10px rgba(0, 0, 0, 0.23);
}

.watch-all-videos .playlist .item {
  border: none;
  padding: 0;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin: 0;
}

.video-text .item {
  background-image: var(--playlist-bg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: inherit;
  border-radius: 20px;
  margin: 0.5rem;
  border: 1px solid #ECD9C5;
}

.video-text .item__content {
  padding: 40px 40px 100px 40px;
}

.video-text .item__content img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 20px;
}

.video-text .item__content h3 {
  font-size: var(--text--fs-24);
  color: #ffffff;
  margin-bottom: 4px;
}

.video-text .item__content p {
  color: #ffffff;
}

.video-text .item__content p a:hover {
  text-decoration: underline;
}

.video-text__text {
  padding-left: 20px;
}

.video-text__text h2 {
  font-size: var(--text--fs-40);
  margin-bottom: 10px;
}

.video-text__text h3 {
  font-size: var(--text--fs-20);
  font-weight: 400;
  margin-bottom: 20px;
  display: block;
  position: relative;
  padding-bottom: 10px;
}

.video-text__text h3::after {
  content: "";
  position: absolute;
  background-color: #613813;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
}

.video-text__text h3 span {
  color: #613813;
}

.contact__map iframe {
  width: 100%;
  height: 400px;
  margin-bottom: 30px;
}

.contact__text span {
  display: block;
  font-size: var(--text--fs-20);
  color: #613813;
  text-decoration: underline;
  margin-bottom: 6px;
}

.contact__text p {
  margin-bottom: 10px;
}

.contact__links a {
  display: block;
  margin-bottom: 10px;
}

.contact__links a img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.contact h2 {
  font-size: var(--text--fs-24);
  color: #613813;
  margin-bottom: 40px;
}

.contact__form {
  padding: 40px 60px 40px 40px;
  border: 1px solid #613813;
}

.contact__form .form-control {
  padding: 12px 24px;
  border-radius: 20px;
  color: #000000;
}

.contact__form .form-control::-webkit-input-placeholder {
  color: #000000;
}

.contact__form .form-control::-moz-placeholder {
  color: #000000;
}

.contact__form .form-control:-ms-input-placeholder {
  color: #000000;
}

.contact__form .form-control::-ms-input-placeholder {
  color: #000000;
}

.contact__form .form-control::placeholder {
  color: #000000;
}

.contact__form select {
  padding: 12px 24px;
  border-radius: 20px;
}

.all-tracks {
  background-color: #fef3eb;
  position: relative;
  z-index: 1;
}

.all-tracks::before {
  content: "";
  position: absolute;
  background-color: #ca9f73;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: -1;
}

.all-tracks__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 22px 0 16px 0;
}

.all-tracks__heading p {
  color: #613813;
}

.all-tracks ._left {
  width: 33%;
}

.all-tracks ._center {
  width: 33%;
}

.all-tracks ._right {
  width: 33%;
}

.all-tracks__content .item ._img {
  padding: 6px;
  background-color: #ffffff;
  border: 3px solid #FCE4D1;
  border-radius: 10px;
  position: relative;
}

.all-tracks__content .item ._img img {
  width: 90px;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
}

.all-tracks__content .item ._img .play-btn {
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 0;
  right: 0;
  margin-right: 10px;
  margin-bottom: 10px;
}

.all-tracks__content .item ._text h3 {
  font-size: var(--text--fs-20);
  color: #613813;
  margin-bottom: 10px;
}

.checkout {
  background-color: #ffffff;
  margin: 6px 0;
}

.checkout__bg {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, rgb(255, 255, 255)), color-stop(50%, rgb(254, 243, 235)));
  background: -o-linear-gradient(left, rgb(255, 255, 255) 50%, rgb(254, 243, 235) 50%);
  background: linear-gradient(90deg, rgb(255, 255, 255) 50%, rgb(254, 243, 235) 50%);
}

.checkout h2 {
  font-size: var(--text--fs-36);
  color: #613813;
  margin-bottom: 10px;
}

.checkout__left {
  padding-right: 40px;
}

.checkout__left__content {
  margin: 0 10px;
}

.checkout__left__content ._border-bottom {
  border-bottom: 1px solid #707070;
  padding-bottom: 10px;
}

.checkout__left__content h3 {
  font-size: var(--text--fs-30);
  color: #613813;
}

.checkout__left__content h3 a {
  font-size: var(--text--fs-18);
  text-decoration: underline;
  color: #000000;
}

.checkout__left__content p {
  font-size: var(--text--fs-30);
}

.checkout .table tbody tr td {
  width: 60%;
  border: none;
  padding: 12px 6px;
}

.checkout .table tbody tr ._total {
  font-size: var(--text--fs-24);
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
}

.checkout__right {
  padding: 0 40px 40px 40px;
}

.checkout__right p {
  margin-bottom: 30px;
}

.checkout__right .form-bg {
  border: 1px solid #707070;
  border-radius: 20px;
  background-color: #ffffff;
  padding: 30px 40px;
  margin-bottom: 20px;
}

.checkout__right .form-bg h3 {
  font-size: var(--text--fs-24);
  margin-bottom: 30px;
}

.checkout__right .form-bg .icon-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.checkout__right .form-bg .icon-text img {
  width: 26px;
  height: 26px;
  -o-object-fit: contain;
     object-fit: contain;
}

.checkout__right .form-bg .icon-text .form-control {
  padding: 12px 16px;
  border-radius: 10px;
  background-color: #f9f9f9;
  font-size: 18px;
}

.checkout__right .form-bg .icon-text .form-control::-webkit-input-placeholder {
  font-size: 18px;
  color: #000000;
}

.checkout__right .form-bg .icon-text .form-control::-moz-placeholder {
  font-size: 18px;
  color: #000000;
}

.checkout__right .form-bg .icon-text .form-control:-ms-input-placeholder {
  font-size: 18px;
  color: #000000;
}

.checkout__right .form-bg .icon-text .form-control::-ms-input-placeholder {
  font-size: 18px;
  color: #000000;
}

.checkout__right .form-bg .icon-text .form-control::placeholder {
  font-size: 18px;
  color: #000000;
}

.checkout__right .form-bg .icon-text .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.checkout__right .form-bg .icon-text .form-select {
  width: 100px;
  padding: 12px 16px;
  border-radius: 10px;
  background-color: #f9f9f9;
  font-size: 18px;
}

.checkout__right .form-bg .icon-text .form-select::-webkit-input-placeholder {
  font-size: 18px;
  color: #000000;
}

.checkout__right .form-bg .icon-text .form-select::-moz-placeholder {
  font-size: 18px;
  color: #000000;
}

.checkout__right .form-bg .icon-text .form-select:-ms-input-placeholder {
  font-size: 18px;
  color: #000000;
}

.checkout__right .form-bg .icon-text .form-select::-ms-input-placeholder {
  font-size: 18px;
  color: #000000;
}

.checkout__right .form-bg .icon-text .form-select::placeholder {
  font-size: 18px;
  color: #000000;
}

.checkout__right .form-bg .icon-text .form-select:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.checkout__right .form-check {
  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;
  gap: 10px;
  margin-bottom: 20px;
}

.checkout__right .form-check .form-check-input {
  margin-top: 0;
  border-radius: 0;
}

.checkout__right .form-check .form-check-input:checked[type=checkbox] {
  background-image: url(../img/desktop/tick-blue.svg);
  background-color: transparent;
}

.checkout__right .form-check .form-check-input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.checkout__right .form-check .form-check-label a {
  color: #4A83D8;
  text-decoration: underline;
}

.checkout__right .btn {
  background-color: #4A83D8;
  color: #ffffff;
  border: 1px solid transparent;
  width: 85%;
}

.checkout__right .btn:hover {
  background-color: #ffffff;
  color: #4A83D8;
  border: 1px solid #4A83D8;
}

.checkout__right .upi-img {
  width: 60%;
  margin: 20px auto 20px auto;
}

#back-to-top {
  display: inline-block;
  background-color: #613813;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  -webkit-transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  -o-transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  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;
  cursor: pointer;
}

#back-to-top img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}

#back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.payment__img {
  text-align: center;
}

.payment__img img {
  width: 400px;
  margin-bottom: 50px;
}

.payment__content {
  background-color: #FEF0E9;
  padding: 50px;
  width: 50%;
  margin: auto;
  text-align: center;
}

.payment__content ._green {
  color: #29a860;
}

.payment__content ._red {
  color: #A82929;
}

.payment__content h1 {
  font-size: var(--text--fs-24);
  text-align: center;
  margin-bottom: 40px;
}

.payment__details p {
  margin-bottom: 10px;
  font-weight: 600;
}

.payment__details p span {
  font-weight: 400;
}

@media (min-width: 576px) {
  :root {
    --container: 520px;
  }
}

@media (min-width: 768px) {
  :root {
    --container: 720px;
  }
}

@media (min-width: 992px) {
  :root {
    --container: 960px;
  }
}

@media (min-width: 1200px) {
  :root {
    --container: 1140px;
  }
}

@media (min-width: 1400px) {
  :root {
    --container: 1320px;
  }
}

@media (min-width: 1680px) {
  :root {
    --container: 1540px;
  }

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: var(--container);
  }
}

@media (max-width: 1399.98px) {
  :root {
    --text--fs-12: 10px;
  }

  :root {
    --text--fs-14: 12px;
  }

  :root {
    --text--fs-16: 14px;
  }

  :root {
    --text--fs-18: 16px;
  }

  :root {
    --text--fs-20: 20px;
  }

  :root {
    --text--fs-22: 22px;
  }

  :root {
    --text--fs-24: 24px;
  }

  :root {
    --text--fs-26: 26px;
  }

  :root {
    --text--fs-28: 28px;
  }

  :root {
    --text--fs-30: 30px;
  }

  :root {
    --text--fs-32: 32px;
  }

  :root {
    --text--fs-36: 32px;
  }

  :root {
    --text--fs-40: 36px;
  }

  :root {
    --text--fs-48: 48px;
  }

  :root {
    --text--fs-50: 50px;
  }

  :root {
    --text--fs-60: 50px;
  }

  .pt-50 {
    padding-top: 40px;
  }

  .pt-75 {
    padding-top: 40px;
  }

  .pt-100 {
    padding-top: 50px;
  }

  .pb-50 {
    padding-bottom: 25px;
  }

  .pb-75 {
    padding-bottom: 40px;
  }

  .pb-100 {
    padding-bottom: 50px;
  }

  .pv-50 {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .pv-75 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .pv-100 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .speaker-modal__heading h2 {
    font-size: 20px;
  }

  .speaker-modal__heading p {
    font-size: 18px;
  }

  .speaker-modal .modal-body {
    padding: 30px 16px;
  }

  .header .navbar .menu {
    gap: 30px;
    margin-right: 40px;
  }
}

@media (max-width: 1199.98px) {
  :root {
    --text--fs-12: 10px;
  }

  :root {
    --text--fs-14: 12px;
  }

  :root {
    --text--fs-16: 14px;
  }

  :root {
    --text--fs-18: 16px;
  }

  :root {
    --text--fs-20: 20px;
  }

  :root {
    --text--fs-22: 22px;
  }

  :root {
    --text--fs-24: 20px;
  }

  :root {
    --text--fs-26: 26px;
  }

  :root {
    --text--fs-28: 28px;
  }

  :root {
    --text--fs-30: 26px;
  }

  :root {
    --text--fs-32: 30px;
  }

  :root {
    --text--fs-36: 30px;
  }

  :root {
    --text--fs-40: 30px;
  }

  :root {
    --text--fs-48: 48px;
  }

  :root {
    --text--fs-50: 50px;
  }

  :root {
    --text--fs-60: 40px;
  }

  .header .navbar .menu {
    gap: 16px;
    margin-right: 20px;
  }

  .img-text__img span {
    left: 16%;
  }

  .playlist .item__content {
    padding: 30px 30px 30px 20px;
  }

  .video-text .item__content {
    padding: 30px 30px 30px 20px;
  }
}

@media (max-width: 991.98px) {
  body {
    background-color: #F0F0F0;
  }

  #back-to-top {
    display: none;
  }
}
