/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/*====================== Google fonts ========================*/

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");


@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&display=swap');



/*====================== Basic css ========================*/


html {
  /* font-size: 62.5%; */
  font-size: 0.52vw;
}



:root {
  scroll-behavior: unset;
  --theme-color: #BAFF00;
  --theme-box-shadow: 0 .3rem .6rem rgb(0, 0, 0, 0.16);
  --black: #000000;
  --white: #ffffff;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: disc;
}

a,
a:hover {
  text-decoration: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: none;
}

/* body */
body {
  font-size: 3.4rem;
  font-weight: 400;
  line-height: 1.294;
  font-family: "Montserrat", sans-serif;
  color: var(--black);
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}



/* Title declaration */
.title_lg {
  color: #ffffff;
  font-size: 8rem;
  font-weight: 800;
  line-height: 1;
}

.title_md {
  color: #000000;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
}

.title_sm {
  color: #baff00;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.11;
}

.title_sm.v1 {
  font-size: 3.5rem;
}




/* color declaration */

.text_theme {
  color: var(--theme-color) !important;
}

.text_black {
  color: var(--black) !important;
}

.text_white {
  color: var(--white);
}

.bg_secondary {
  background: #f5f5f5;
}

.bg_black {
  background: var(--black);
}

.bg_white {
  background: var(--white);
}




/* Font weight direction */

.f-400 {
  font-weight: 400 !important;
}

.f-500 {
  font-weight: 500 !important;
}

.f-600 {
  font-weight: 600;
}

.f-700 {
  font-weight: 700;
}

b{
  font-weight: 600 !important;
}




/* button Direction */

.button {
  display: inline-block;
  border-radius: .5rem;
  background: var(--theme-color);
  border: 1px solid transparent;
  -webkit-box-shadow: var(--theme-box-shadow);
  box-shadow: var(--theme-box-shadow);
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  color: #000000;
  text-align: center;
  line-height: 1;
  padding: 1.9rem 2rem;
  -webkit-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.button:hover {
  background: var(--white);
  border-color: #b1e427;
  color: #b1e427;
}

.black_button {
  background: var(--black);
  color: var(--white);
}

.black_button:hover {
  background: var(--theme-color);
  color: var(--black);
  border-color: var(--theme-color);
}

/* button_outline */
.button_outline{
  background: transparent;
  color: var(--theme-color);
  border-color: var(--theme-color);
}


/*========== Page loader CSS ==========*/

#preloader {
  position: fixed;
  background: #f5f5f5;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  height: 100vh;
  width: 100vw;
  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;
}

.loader3 {
  width: 8rem;
  height: 8rem;
  display: inline-block;
  padding: 0;
  text-align: left;
}

.loader3 span {
  position: absolute;
  display: inline-block;
  width: 8rem;
  height: 8rem;
  border-radius: 100%;
  background: #a5d324;
  -webkit-animation: loader3 1.5s linear infinite;
  animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

@-webkit-keyframes loader3 {
  0% {
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    opacity: 0.8;
  }

  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes loader3 {
  0% {
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    opacity: 0.8;
  }

  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*========== return-to-top ==========*/

.back-to-top {
  width: 5rem;
  height: 5rem;
  line-height: 4.2rem;
  text-align: center;
  display: none;
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  border-radius: 0.5rem;
  background: #baff00;
  z-index: 1000;
}

.back-to-top:hover {
  background: var(--white);
  -webkit-box-shadow: var(--theme-box-shadow);
  box-shadow: var(--theme-box-shadow);
}

.back-to-top img {
  width: 2rem;
}



/*============ download toast ==============*/

.download_toast {
  background: #F5F5F5;
  padding: 3rem 0;
  font-size: 1.8rem;
}

.toast_logo {
  display: inline-block;
  width: 7rem;
}

.toast_btn {
  display: inline-block;
  width: 14.2rem;
  -webkit-transition: 200ms;
  -o-transition: 200ms;
  transition: 200ms;
}

.toast_close {
  width: 2.5rem;
  padding: 0;
  border: none;
  background: transparent;
  -webkit-transition: 200ms;
  -o-transition: 200ms;
  transition: 200ms;
}

.toast_close:hover {
  opacity: 0.4;
}


/*============ Header area start ==============*/

header {
  padding: 6rem 0;
  background: #000000;
  -webkit-transition: 500ms;
  -o-transition: 500ms;
  transition: 500ms;
}

.logo {
  display: inline-block;
  width: 24rem;
}

.logo img {
  width: 100%;
}

.menu li {
  display: inline-block;
  margin-right: 3rem;
}

.menu a {
  font-size: 2.2rem;
  font-weight: 500;
  color: #FFFFFF;
  -webkit-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.menu a:hover {
  color: #BAFF00;
}

.menu a.active{
  color: #BAFF00;
  font-weight: 600;
  text-decoration: underline;
}

.header_btn {
  display: inline-block;
  width: 18.4rem;
}

header .button{
  font-size: 2.2rem;
}

/* sticky */
.sticky {
  padding: 2rem 0;
}

.sticky .header_btn {
  width: 16rem;
  height: 6rem;
  font-size: 1.7rem;
}

.sticky .header_btn .icon {
  width: 2.6rem;
}


/*Hamburger menu*/
.hamburger-menu {
  cursor: pointer;
  position: relative;
  display: none;
  z-index: 999;
}

.hamburger-menu span {
  background: var(--white);
  width: 4rem;
  height: .4rem;
  display: block;
  margin: .65rem 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hamburger-menu .line-top {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}

.hamburger-menu .line-bottom {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}

.hamburger-menu .line-top.current {
  -webkit-transform: translateY(200%) rotate(135deg);
  -ms-transform: translateY(200%) rotate(135deg);
  transform: translateY(200%) rotate(135deg);
}

.hamburger-menu .line-center.current {
  opacity: 0;
}

.hamburger-menu .line-bottom.current {
  -webkit-transform: translateY(-325%) rotate(-135deg);
  -ms-transform: translateY(-325%) rotate(-135deg);
  transform: translateY(-325%) rotate(-135deg);
}


/*============ Hero area start ==============*/

.hero_area {
  background: var(--black);
  padding: 8rem 0 10rem 0;
  position: relative;
  z-index: 1;
}

.hero_area p {
  font-size: 2.4rem;
}

.hero_area a:hover {
  color: #ffffff;
}

.hero_content .badge {
  background: var(--theme-color);
  padding: 1.5rem;
  -webkit-box-shadow: var(--theme-box-shadow);
  box-shadow: var(--theme-box-shadow);
  font-size: 2rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
}

.hero_content .discription {
  color: rgb(255, 255, 255, 0.75);
}

.hero_video_lg {
  position: absolute;
  top: 0;
  right: 15px;
  margin-top: -5%;
  height: 110%;
  z-index: -1;
}

.hero_video_sm {
  display: none;
  position: relative;
  bottom: 0;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}


.hero_area .dicsription {
  color: rgba(255, 255, 255, 0.75);
}

/* video_play */
.video_play {
  position: absolute;
  bottom: 16.5rem;
  right: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: none;
  padding: 0;
  background: transparent;
  font-size: 1.8rem;
  color: var(--white);
  -webkit-transition: 200ms;
  -o-transition: 200ms;
  transition: 200ms;
  z-index: 111;
}

.video_play .icon {
  width: 5.3rem;
  height: 5.3rem;
  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;
  border-radius: 50%;
  background: var(--theme-color);
  margin-right: 1.6rem;
}

.video_play .icon img {
  width: 2rem;
  margin-left: .5rem;
}

.video_play:hover .icon {
  background: var(--white);
}

.video_play:active .icon {
  background: var(--theme-color);
}

.mobile_video_player {
  display: none;
}

.email_form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 0;
}

.email_form input {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 50rem;
  background: var(--white);
  border-radius: 0.5rem;
  height: 6.5rem;
  padding: 0 2rem;
  border: none;
  font-size: 2rem;
  color: var(--black);
}

.email_form input::-webkit-input-placeholder {
  font-size: 2rem;
  color: var(--black);
  opacity: 1;
}

.email_form input::-moz-placeholder {
  font-size: 2rem;
  color: var(--black);
  opacity: 1;
}

.email_form input:-ms-input-placeholder {
  font-size: 2rem;
  color: var(--black);
  opacity: 1;
}

.email_form input::-ms-input-placeholder {
  font-size: 2rem;
  color: var(--black);
  opacity: 1;
}

.email_form input::placeholder {
  font-size: 2rem;
  color: var(--black);
  opacity: 1;
}

.validation_message {
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  color: #ffffff;
  padding: 1rem 0;
  font-size: 2rem !important;
  pointer-events: none;
  opacity: 0;
}

.validation_message.current {
  opacity: 1;
  pointer-events: auto;
}

.hero_content .bottom {
  font-size: 1.5rem;
  line-height: 1.33;
  color: rgb(255, 255, 255, 0.5);
}



/* ============= short wrap =============== */

.marquee_wrap {
  background: var(--theme-color);
  padding: 3.9rem 0;
}

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

.marquee p {
  font-size: 2.8rem;
  font-weight: 600;
  display: inline-block;
  margin-right: 2rem;
  white-space: nowrap;
  color: var(--black);
  text-transform: uppercase;
}

/*============ Take care area start ==============*/

.take_care .img_wrap img {
  width: 61rem;
  margin: auto;
}

.list_group li {
  padding-bottom: 1.5rem;
}

.list_group li:last-child {
  padding-bottom: 0;
}

.take_care .btn_group a {
  display: inline-block;
  width: 14.2rem;
}



/*============ Our Experts area start ==============*/

.testimonial_slider1 {
  background: url(../img/testimonial-bg.jpg) no-repeat center;
  background-size: cover;
}

.testimonial_slider1 .content {
  position: absolute;
  right: 8rem;
  bottom: 23rem;
  width: 39.5rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: var(--white);
  -webkit-box-shadow: var(--theme-box-shadow);
  box-shadow: var(--theme-box-shadow);
  border-radius: 1rem;
  padding: 3rem;
}

.testimonial_slider1 h4 {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.6;
}

.testimonial_slider1 p {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.1;
  color: rgb(0, 0, 0, 0.5);
  padding: 1.1rem 0 2rem;
}

.testimonial_slider1 h5 {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--black);
}

/* slider Arrow */

.owl-nav {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 4rem;
}

.owl-nav button {
  width: 6.5rem;
  height: 6.5rem;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  border: none;
  margin: 0 1rem;
  -webkit-transition: 200ms;
  -o-transition: 200ms;
  transition: 200ms;
}

.owl-nav button:hover {
  opacity: 0.8;
}

.owl-nav button img {
  width: 100%;
}




/*============ feed your curiosity area start ==============*/

.feed_your_curiosity {
  text-align: center;
  background: var(--black);
  color: var(--white);
  padding: 12rem 0;
}

.feed_your_curiosity .sub_title {
  color: var(--theme-color);
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.42;
}

.ipad_icon {
  width: 12.2rem;
}

.feed_your_curiosity .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--theme-color);
}

.feed_your_curiosity .links span{
  display: block;
  width: 100%;
  text-align: center;
  flex-shrink: 0;
}

.feed_your_curiosity .links a {
  font-size: 1.5rem;
  color: var(--theme-color);
  display: inline-block;
  -webkit-transition: 200ms;
  -o-transition: 200ms;
  transition: 200ms;
  margin: 0 .25rem;
}

.feed_your_curiosity .links a:hover {
  color: var(--white);
}

.feed_your_curiosity .btn_group a {
  display: inline-block;
  width: 14.2rem;
}




/*============ About area start ==============*/

.about_area {
  padding: 16rem 0;
  text-align: center;
}

.about_wrap {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 10.8rem 0;
  border-radius: 1rem;
}

.about_area p {
  font-style: italic;
}

.about_area .button {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
}

.about_area .button:hover {
  color: var(--black);
  -webkit-box-shadow: var(--theme-box-shadow);
  box-shadow: var(--theme-box-shadow);
}

.about_area.v1 .button{
  width: 40rem;
}

.about_area .instragram_icon{
  display: inline-block;
  width: 6rem;
}


.about_area .abonne_btn{
  font-weight: 600;
  padding: 1.5rem 2.5rem;
}


/*============ Footer area start ==============*/

.footer_top {
  padding: 8rem 0;
  border-bottom: 1px solid var(--white);
}

footer.v1 .footer_top{
  padding-top: 13rem;
}

.footer_logo {
  display: inline-block;
  width: 24rem;
}

.footer_top .btn_group a {
  display: inline-block;
  width: 22.3rem;
}

.footer_links li {
  line-height: 1;
  list-style: none;
}

.footer_links li:not(:last-child) {
  padding-bottom: 2rem;
}

.footer_links a {
  font-size: 2.4rem;
  line-height: 1;
  color: var(--white);
}

footer.v1 .footer_links a{
  font-size: 2.1rem;
  color: rgb(255, 255, 255, 0.5);
}

footer.v1 .footer_links a:hover{
  color: var(--white);
}

footer h6{
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  padding-bottom: 2rem;
}

.footer_middle {
  padding: 8rem 0 10rem 0;
}

footer p {
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1.27;
}

footer.v1 p{
  font-size: 1.4rem;
}

footer h4 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
}

footer a:hover {
  color: var(--theme-color);
}

footer .email_form {
  margin: 3rem 0;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

footer .email_form input {
  width: 100%;
  -ms-flex-negative: unset;
  flex-shrink: unset;
}

.social_links li {
  display: inline-block;
}

.social_links li:not(:last-child) {
  margin-right: 8rem;
}

.social_links a {
  color: var(--theme-color);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 2.4rem;
}

.social_links a img {
  width: 3.2rem;
  margin-right: 1rem;
}

.social_links a:hover {
  color: var(--white);
}

.social_links a:hover img {
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(307deg) brightness(104%) contrast(101%);
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(307deg) brightness(104%) contrast(101%);
}




.social_links2{
  display: flex;
  justify-content: flex-end;
}

.social_links2 li{
  list-style: none;
}

.social_links2 li:not(:last-child){
  margin-right: 2rem;
}

.social_links2 a{
  width: 7.8rem;
  height: 7.8rem;
  border-radius: .7rem;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social_links2 a:hover{
  background: var(--theme-color);
}

.social_links2 .instra{
  width: 3.8rem;
}

.social_links2 .fb{
  width: 1.8rem;
}

.social_links2 .yt{
  width: 4.5rem;
}


.copyright {
  font-size: 2.2rem;
  color: var(--white);
  padding-bottom: 8rem;
}

footer.v1 .copyright{
  font-size: 1.5rem;
}






/*============ account create area start ==============*/

.account_create_area .discription {
  font-size: 2.4rem;
  line-height: 1.41;
  color: rgb(255, 255, 255, 0.55);
  padding: 3rem 0;
}

.text_sm {
  font-size: 1.5rem;
  line-height: 1.33;
  color: rgb(0, 0, 0, 0.5);
}

.text_md{
  font-size: 2.2rem;
  line-height: 1.09;
}

.italic{
  font-style: italic;
}

.account_create_area .text_sm {
  color: rgb(255, 255, 255, 0.5);
}

.download_btns a {
  display: inline-block;
  align-items: center;
  justify-content: center;
  width: 14rem;
}

.title_sub {
  color: var(--theme-color);
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.42;
}


/* --- Form ---- */

.form_wrapper {
  position: relative;
  padding: 4rem 7rem;
  border: 1px solid var(--white);
  border-radius: .7rem;
}

.form_group {
  padding-bottom: 2rem;
}

.label {
  font-size: 2rem;
  line-height: 1.5;
  color: var(--white);
  padding-bottom: 1rem;
}

.label span {
  color: var(--theme-color);
}

.input_box {
  width: 100%;
  height: 6.5rem;
  background: var(--white);
  border-radius: 1rem;
  border: 1px solid transparent;
  -webkit-box-shadow: 0 .3rem 1.5rem rgb(0, 0, 0, 0.05);
  box-shadow: 0 .3rem 1.5rem rgb(0, 0, 0, 0.05);
  padding: 2rem;
  font-size: 2rem;
  font-weight: 500;
  color: var(--black);
}

textarea {
  width: 100%;
  background: var(--white);
  border-radius: 1rem;
  border: 1px solid transparent;
  -webkit-box-shadow: 0 .3rem 1.5rem rgb(0, 0, 0, 0.05);
  box-shadow: 0 .3rem 1.5rem rgb(0, 0, 0, 0.05);
  padding: 2.1rem 2rem;
  font-size: 2rem;
  font-weight: 500;
  color: var(--black);
  resize: none;
}

.input_box::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: rgb(0, 0, 0, 0.8);
  opacity: 1;
  font-size: 2rem;
  font-weight: 400;
}

.input_box::-moz-placeholder,
textarea::-moz-placeholder {
  color: rgb(0, 0, 0, 0.8);
  opacity: 1;
  font-size: 2rem;
  font-weight: 400;
}

.input_box:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: rgb(0, 0, 0, 0.8);
  opacity: 1;
  font-size: 2rem;
  font-weight: 400;
}

.input_box::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: rgb(0, 0, 0, 0.8);
  opacity: 1;
  font-size: 2rem;
  font-weight: 400;
}

.input_box::placeholder,
textarea::placeholder {
  color: rgb(0, 0, 0, 0.8);
  opacity: 1;
  font-size: 2rem;
  font-weight: 400;
}

.input_wrap {
  position: relative;
}

.input_checkmark {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 1.5rem;
  width: 2.1rem;
  z-index: 111;
  display: none;
}

form p {
  font-size: 2rem;
  color: var(--white);
}

form .gx-4 {
  --bs-gutter-x: 2rem;
}

/* custom checkbox */
.checkbox-field {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-left: 5rem;
}

.checkbox-field input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  height: 3rem;
  width: 3rem;
  border: 2px solid #ffffff;
  background: transparent;
  border-radius: .3rem;
}

.checkmark:after {
  content: '';
  background: url('../img/check.png');
  background-size: 1.5rem 1.5rem;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  display: none;
}

.checkbox-field input:checked~.checkmark {
  border-color: var(--theme-color);
  background: var(--theme-color);
}

.checkbox-field input:checked~.checkmark:after {
  display: block;
}

.checkbox-field .checkmark:after {
  left: 0;
  top: .1rem;
  width: 100%;
  height: 100%;
}

.checkbox-field span {
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--white);
  line-height: 1.33;
}

.checkbox-field span a {
  color: var(--white);
  text-decoration: underline;
  -webkit-transition: 200ms;
  -o-transition: 200ms;
  transition: 200ms;
}

.checkbox-field span a:hover {
  color: var(--theme-color);
}




/* switch */

.switch input[type=checkbox] {
  height: 0;
  width: 0;
  visibility: hidden;
  position: absolute;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.switch label {
  display: block;
  cursor: pointer;
  text-indent: -9999px;
  width: 5.5rem;
  height: 3rem;
  background: rgb(255, 255, 255, 0.89);
  border-radius: 2.2rem;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.switch label:after {
  content: '';
  position: absolute;
  top: .25rem;
  left: .3rem;
  width: 2.6rem;
  height: 2.6rem;
  background: var(--black);
  border-radius: 50%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.switch input:checked+label:after {
  left: calc(100% - .2rem);
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  background: greenyellow;
}



/* toggle password */
.toggle_password {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 2rem;
  display: inline-block;
  width: 2.8rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.toggle_password img {
  width: 100%;
}

.toggle_password img:nth-child(1) {
  opacity: 0.2;
}

.toggle_password.current img:nth-child(1) {
  display: none;
}

.toggle_password:not(.current) img:nth-child(2) {
  display: none;
}


.arrow_shape {
  position: absolute;
  top: 0;
  right: 100%;
  width: 10rem;
  margin-right: 10rem;
}



/*============Registration confirmed area start ==============*/

.registration_confirmed_area {
  text-align: center;
  min-height: calc(100vh - 18.5rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.registration_confirmed_area .check_mark {
  width: 6rem;
}

.registration_confirmed_area li {
  list-style: none;
  font-size: 2.4rem;
  line-height: 1.41;
  color: var(--white);
}

.registration_confirmed_area .btn_group a {
  display: inline-block;
  width: 25rem;
}




/*============ masterclass hero area start ==============*/

.explore_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 2.8rem;
  font-weight: 500;
  border: 1px solid var(--white);
  border-radius: 1rem;
  padding: 3rem;
}

.explore_wrap span {
  font-size: 1.8rem;
}

.lead {
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1.36;
  color: rgb(255, 255, 255, 0.75);
}




/*============ Our theme area start ==============*/

.our_theme_area {
  padding: 12rem 0;
}

.our_theme_area .g-5 {
  --bs-gutter-y: 4rem;
}

.nav-tabs {
  border: none;
  overflow: auto;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  padding-bottom: 1.5rem;
  margin-bottom: 6.5rem;
}

.nav-tabs .nav-link {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 2.2rem;
  color: var(--white);
  padding: 0;
  border: none;
}

.nav-tabs .nav-link:not(:last-child) {
  margin-right: 2.5rem;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link.active {
  background: transparent;
  color: var(--theme-color);
  text-decoration: underline;
}


/* theme_box */
.theme_box {
  position: relative;
  border-radius: 1.6rem;
  overflow: hidden;
}

.theme_box .overly {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#000), to(transparent));
  background: -o-linear-gradient(bottom, #000, transparent);
  background: linear-gradient(0deg, #000, transparent);
}

.theme_box img {
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.theme_box:hover img {
  -webkit-transform: scale(1.07);
  -ms-transform: scale(1.07);
  transform: scale(1.07);
}

.theme_box .content {
  position: absolute;
  left: 4rem;
  bottom: 4rem;
}

.theme_box h4 {
  font-size: 4rem;
  line-height: 1.5;
  color: var(--white);
  font-weight: 700;
}

.theme_box p {
  font-size: 2.4rem;
  line-height: 1.08;
  padding: 1rem 0 4rem 0;
}

.theme_box .button {
  padding: 1.9rem 9.2rem;
}



/*============ Nos Guests area start ==============*/

.nos_guests_area {
  padding: 12rem 0;
}

.nos_guests_area .g-5 {
  --bs-gutter-y: 4rem;
}

.nos_guests_area .nav-tabs {
  margin-bottom: 4.5rem;
}

.nos_guests_area .nav-tabs .nav-link {
  color: var(--black);
}

.nos_guests_area .nav-tabs .nav-link.active {
  color: var(--black);
  font-weight: 600;
}



/*============ about area ==============*/

.about_area h3 {
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1.11;
}

.about_area h4 {
  font-size: 2.8rem;
  font-weight: 600;
}

.about_area .scan_img {
  width: 27rem;
  -webkit-box-shadow: 0 .3rem 1.5rem rgb(0, 0, 0, 0.15);
  box-shadow: 0 .3rem 1.5rem rgb(0, 0, 0, 0.15);
}



/*============ faq area ==============*/

.faq_are .title_sm {
  font-size: 4rem;
}

.accordion-item {
  background: transparent;
  border: 1px solid var(--white) !important;
  -webkit-box-shadow: var(--theme-box-shadow);
  box-shadow: var(--theme-box-shadow);
  padding: 4.9rem 6rem;
  border-radius: 1rem !important;
  margin-bottom: 3rem;
}

.accordion-button {
  background: none !important;
  border: none !important;
  padding: 0;
  font-size: 2.8rem;
  font-weight: 500;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  line-height: 1.42;
  color: var(--white) !important;
}

.accordion-button::after {
  background-image: url(../img/bottom-arrow.svg) !important;
  background-size: 100% 100%;
  width: 3.1rem;
  height: 1.8rem;
}

.accordion-body {
  padding: 0;
  padding-top: 6rem;
  margin-top: 6rem;
  border-top: 1px solid var(--white);
}




/*============ pricing area ==============*/


.nutri_team .img_wrap img {
  width: 64.8rem;
}

.price_card {
  position: relative;
  padding: 3rem;
  border: 1px solid var(--white);
  border-radius: .7rem;
  margin-top: 10.9rem;
}

.price_card .title_sm {
  font-size: 4rem;
}

.price_card .title_sm span {
  font-size: 2rem;
}

.price_card p {
  font-size: 2.5rem;
  font-weight: 500;
  padding: 1rem 0 4rem 0;
}

.price_card li {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1;
  padding-bottom: 1.5rem;
}

.price_card li img {
  width: 3rem;
  margin-right: 1.5rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.price_card del {
  position: absolute;
  top: -1px;
  right: -1px;
  color: var(--black);
  background: var(--theme-color);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.09;
  padding: 1rem;
  border-bottom-left-radius: .5rem;
  border-top-right-radius: .7rem;
}

.price_card.bg_white .button:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.discount_shape {
  position: absolute;
  left: 60%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 100%;
  width: 22.8rem;
}



/*============ testimonial2 area ==============*/

.testimonial2_area {
  padding: 12rem 0;
}

.testimonial_slider2 {
  margin: 0 -1.5rem;
}

.testimonial_slider2 .item {
  margin: 0 1.5rem;
}

.testimonial_card {
  position: relative;
  background: var(--white);
  padding: 2.8rem;
  border-radius: 1.5rem;
  min-height: 33rem;
}

.testimonial_card p {
  font-size: 2.5rem;
  line-height: 1.6;
}


.testimonial_card .avatar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.8rem;
  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;
  padding-top: 5rem;
}

.testimonial_card img {
  max-width: 15rem;
}



/*============ Gift card area ==============*/

.gift_card_area .button {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 1.9rem 4.3rem;
}

.gift_icon {
  width: 5.7rem;
}




/*============ Dwonload area ==============*/

.download_area {
  background: var(--black);
  padding: 12rem 0;
  color: var(--white);
}

.download_area .num {
  background: var(--theme-color);
  color: var(--black);
  padding: 2rem;
  border-radius: .3rem;
  font-weight: 600;
  margin-right: 2rem;
}

.download_area p {
  font-size: 2.8rem;
  line-height: 1.07;
}

.download_area a {
  display: inline-block;
  width: 25rem;
}

.download_area .logo_img {
  width: 25rem;
}




/*============ Best gift card area ==============*/

.best_gift_card_area {
  padding: 8rem 0 18rem 0;
}

.best_gift_card_area .gx-5 {
  --bs-gutter-x: 6rem;
}

.gift_card {
  padding: 4rem;
  border: 1px solid var(--white);
  text-align: center;
  border-radius: .5rem;
  margin-top: 8rem;
}

.gift_card .title_sm {
  font-size: 4rem;
  padding-bottom: .7rem;
}

.gift_card p {
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.42;
}


/* number_counter */
.number_counter {
  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;
}

.number_counter button {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  border: 1px solid var(--white);
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: transparent;
  color: var(--white);
  font-weight: 500;
}

.number_counter button:hover {
  border-color: var(--theme-color);
  color: var(--theme-color);
}

.number_counter input {
  width: 13rem;
  text-align: center;
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--white);
  background: transparent;
  border: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}




/*============ offer a gift card area ==============*/

.back_link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--theme-color);
}

.back_link img {
  width: 2.1rem;
  margin-right: 2rem;
}

.back_link:hover {
  color: var(--white);
}

.back_link:hover img {
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(5401%) hue-rotate(272deg) brightness(111%) contrast(97%);
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(5401%) hue-rotate(272deg) brightness(111%) contrast(97%);
}

.offer_card_wrap {
  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;
  padding: 4.8rem 3rem;
  border-radius: .7rem;
  border: 1px solid var(--white);
}

.offer_card_wrap li {
  list-style: none;
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--white);
}

.offer_card_wrap li span {
  color: var(--theme-color);
}

.offer_a_gift_card .form_wrapper {
  padding: 8rem;
}

.offer_a_gift_card .form_group {
  padding-bottom: 4rem;
}

.input_box.v2 {
  padding-left: 7.2rem;
}

.input_icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 2rem;
  width: auto;
  height: 3.2rem;
}

.input_icon.credit_card {
  height: 2.5rem;
}


.secure_payment_msg {
  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;
}

.secure_payment_msg img {
  width: 2.5rem;
}

.secure_payment_msg p {
  font-size: 2rem;
  font-weight: 500;
  color: var(--theme-color);
  margin-left: 2rem;
}



.registration_confirmed_area.v2 {
  min-height: calc(100vh - 35rem);
}

.download_notice {
  position: absolute;
  top: -4rem;
  right: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
}

.download_notice p {
  font-size: 2.4rem;
  font-style: italic;
  line-height: 1.41;
  color: var(--white);
}

.download_notice img {
  width: 16.2rem;
  margin-right: 2rem;
}


/* .hero_banner_area */
.hero_banner_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 75rem;
  padding-bottom: 8rem;
  position: relative;
}


.hero_banner_area .sh{
  position: absolute;
  right: 6.5rem;
  bottom: -9rem;
  width: 14rem;
}


.application_area {
  padding: 14rem 0;
}

.application_area p {
  font-size: 2.4rem;
  line-height: 1.41;
  color: var(--white);
}

.application_area .content_wrap {
  padding-left: 9rem;
  padding-top: 14rem;
}


.bg_img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


.social_links1 li {
  display: inline-block;
  list-style: none;
  margin-right: .5rem;
}

.social_links1 a {
  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;
  width: 5rem;
  height: 5rem;
  background: var(--black);
  border-radius: 50%;
}

.social_links1 a:hover {
  background: var(--theme-color);
}

.social_links1 a img {
  width: 3rem;
}

.social_links1 a:hover img {
  -webkit-filter: brightness(0) saturate(100%) invert(0%) sepia(84%) saturate(7500%) hue-rotate(329deg) brightness(89%) contrast(114%);
  filter: brightness(0) saturate(100%) invert(0%) sepia(84%) saturate(7500%) hue-rotate(329deg) brightness(89%) contrast(114%);
}




/*============ blog hero area start ==============*/

.blog_hero{
  position: relative;
  min-height: calc(100vh - 18rem);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 17.5rem;
  text-align: center;
  background-image: url(../img/blog-hero-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 1;
}

.blog_hero::before{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 54rem;
  background: linear-gradient(180deg, transparent, #000000);
  z-index: -1;
}

.blog_hero p.top{
  font-size: 2.4rem;
  font-weight: 500;
}


/*============ blog card area start ==============*/

.blog_card_area{
  padding: 12rem 0;
}

.blog_card{
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
}

.blog_card::before{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent, #000000);
  z-index: 1;
}

.blog_img{
  width: 100%;
  transition: 200ms;
}

.blog_card:hover .blog_img{
  transform: scale(1.06);
}

.blog_card_content{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 4rem;
  z-index: 2;
}

.blog_card .date{
  color: var(--theme-color);
  font-size: 2.2rem;
  line-height: 1.18;
}

.blog_card h2{
  font-size: 4rem;
  line-height: 1.5;
  color: var(--white);
  font-weight: 700;
  padding-top: 1rem;
}

.blog_card .ctg{
  display: inline-block;
  font-size: 2.4rem;
  line-height: 1.08;
  padding: .8rem 2rem;
  color: var(--white);
  border: 1px solid var(--white);
  border-radius: .5rem;
  transition: 200ms;
  margin: 2rem 0 4rem;
}

.blog_card .ctg:hover{
  color: var(--black);
  background: var(--white);
}

.blog_card .button{
  padding-left: 4.5rem;
  padding-right: 4.5rem;
}

.g_40{
  --bs-gutter-x: 4rem;
  --bs-gutter-y: 4rem;
}



/*============ pagination area start ==============*/

.pagination{
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination li:not(:last-child){
  margin-right: 6rem;
}

.pagination a{
  font-size: 2.2rem;
  color: var(--theme-color);
}

.pagination a:hover,
.pagination a.active{
  text-decoration: underline;
}

.pagination a img{
  width: 2.1rem;
}

.pagination a.disabled{
  pointer-events: none;
  opacity: 0.5;
}




/*============ blog content area start ==============*/

.blog_content_area{
  padding: 12rem 0 0;
}

.blog_content_area p{
  font-size: 3.5rem;
  line-height: 1.14;
}

.blog_content_area .text_sm{
  font-size: 2.4rem;
  line-height: 1.41;
  color: var(--white);
}


.blog_content_area .text_sm.v1{
  font-size: 2.8rem;
}

.blog_video_wrap{
  position: relative;
}

.blog_video_wrap::before{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 38rem;
  background: linear-gradient(180deg, transparent, #000000);
  z-index: 11;
}

.blog_play{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  z-index: 111;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.5);
}

.blog_play img{
  width: 5.5rem;
}

.blog_video{
  width: 100%;
  height: 60rem;
  object-fit: cover;
  border-radius: 1.5rem;
  overflow: hidden;
}

.blog_content_area .download_btns a{
  width: 21rem;
}

.blog_content_area .comment_text{
  font-size: 5rem;
  line-height: 1.1;
  font-weight: 600;
  font-style: italic;
}

.blog_content_area .comment_text span{
  font-size: 3.5rem;
  font-weight: 400;
}



/*============ about area v2 start ==============*/

.about_area.v2{
  padding: 12.5rem 0;
}

.about_area.v2 .about_wrap{
  padding: 12.5rem 0;
}

.about_area.v2 .title_md{
  font-size: 4rem;
}

.about_area.v2 .title_sm{
  font-size: 2.4rem;
}

.about_area.v2 p{
  font-size: 2rem;
  line-height: 1.5;
  color: var(--black);
  font-style: normal;
}

.about_area.v2 .download_btns a{
  width: 21rem;
}



.scroll_dwon{
  display: inline-block;
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--theme-color) !important;
  text-align: center;
}

.scroll_dwon img{
  width: 2.2rem;
  margin-top: 2rem;
}




/*============ blog similar items start ==============*/

.blog_similar_items{
  padding: 12rem 0 10rem;
}

/* guest apage */

.hero-2-area {
  padding: 8rem 0 9rem 0;
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#beff0f+0,f0ffc9+75,f0ffc9+75 */
background: rgb(190,255,15); /* Old browsers */
background: -moz-linear-gradient(top,  rgba(190,255,15,1) 0%, rgba(240,255,201,1) 75%, rgba(240,255,201,1) 75%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  rgba(190,255,15,1) 0%,rgba(240,255,201,1) 75%,rgba(240,255,201,1) 75%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  rgba(190,255,15,1) 0%,rgba(240,255,201,1) 75%,rgba(240,255,201,1) 75%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#beff0f', endColorstr='#f0ffc9',GradientType=0 ); /* IE6-9 */

  position: relative;
}
.hero-bg-box {
  background: #fff;
  padding: 3rem;
  border-radius: .6rem;
  box-shadow: 0px 1px 2px 1px rgba(0,0,0,0.16);
  margin-bottom: 13rem;
}
.hero-left-text p {
  font-size: 2.8rem;
  margin: 0;
  font-weight: 500;
}
.hero-left-text span {
  font-size: 2.8rem;
  font-weight: 500;
}
.hero-2-text h1 {
  font-size: 8rem;
  font-weight: 700;
  margin-bottom: 3rem;
}
.hero-2-text h3 {
  margin-bottom: 3rem;
  font-size: 2.8rem;
  font-weight: 500;
}
.hero-2-text p {
  font-size: 2.4rem;
  line-height: 3.4rem;
  margin-bottom: 3rem;
  letter-spacing: -0.2px;
}
.hero-2-text p span {
  font-weight: 700;
}
.hero-2-text p:last-child {
  margin-bottom: 0;
}
.hero-2-img {
  position: absolute;
  bottom: 0;
  margin-left: 3rem;
}
.hero-2-img img {
  width: 80rem;
}
/* guest apage */
/* tab arae */

.tabss-box {
  position: relative;
  margin-bottom: 3rem;
}
.tabs-text0 {
  position: absolute;
  bottom: 3.5rem;
  left: 3.5rem;
}
.tabs-text0 h3 {
  font-size: 4rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 2rem;
}
.tabs-text0 span {
  display: block;
  font-size: 2.4rem;
  color: #fff;
  font-weight: 700;
  line-height: 2.6rem;
  margin-bottom: .5rem;
}
.tabs-text0 p {
  font-size: 2.4rem;
  color: #fff;
  margin-bottom: 2rem;
}
.tabs-text0 a {
  display: inline-block;
  background: #BAFF00;
  width: 35rem;
  text-align: center;
  height: 6.5rem;
  line-height: 6.5rem;
  font-size: 2.2rem;
  color: #000000;
  font-weight: 600;
  border-radius: .5rem;
  transition: .3s;
  border: 1px solid transparent;
}
.tabs-text0 a:hover {
	background: #fff;
	color: #BAFF00;
  border-color: #b1e427;
}
.guest-title h2 {
  font-size: 6rem;
  margin-bottom: 6rem;
  font-weight: 700;
}
.guest-area {
  padding: 11rem 0 9rem 0;
}
.tabss-box img {
  width: 100%;
}


.guest-tab-wrapp li button {
  color: #000;
}
.guest-tab-wrapp .nav-item button {
  color: #000 !important;
  font-size: 2.2rem;
  margin: 0 1.4rem;
}
.guest-tab-wrapp  #myTab {
  justify-content: center;
}
.guest-tab-wrapp .nav-link.active {
  font-weight: 600;
}

.pt_30.pb_40.p-texttt {
  font-size: 4.5rem;
  font-style: normal !important;
  font-weight: 500;
}
.about-logo a img {
  width: 26rem;
  margin-bottom: 1rem;
}
.about-logo a {
	font-size: 2.8rem;
	color: #000;
	font-weight: 600;
  transition: .3s;
}
.about-logo a:hover {
  color: #BAFF00;
}







/*==================================================================================
masterclass 1 page star 
====================================================================================*/


/* masterclass 1 page basic css */


/* body */
.masterclass_body{
  font-size: 2.6rem;
}



/* title */
.masterclass_body .title_md{
  font-size: 6.8rem;
}

.masterclass_body .title_sm{
  font-size: 6rem;
}

.masterclass_body .title_sm.v1 {
  font-size: 4.5rem;
}

.masterclass_body .title_sub{
  font-size: 3.3rem;
}

/* button */
.masterclass_body .button{
  font-size: 2.6rem;
}

.masterclass_body header .button {
  font-size: 2.2rem;
}






/* ================ nutrition area ================ */

.nutrition_area{
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 14rem 0;
  position: relative;
  z-index: 1;
}


.nutrition_hero_content_bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 76%;
  height: 100%;
  background: linear-gradient(90deg, #000000 40%, transparent 87%);
  z-index: -1;
}


.time_icon{
  width: 2.5rem;
  margin-right: .8rem;
}

/* icon_list */
.icon_list li{
  display: flex;
  align-items: center;
  color: var(--white);
}

.icon_list li:not(:last-child){
  margin-bottom: 2.6rem;
}

.icon_list li img{
  width: 5rem;
  margin-right: 2.6rem;
}

.nutrition_area .button{
  width: 37.3rem;
}



/* ================ icon box area ================ */

.icon_box_area{
  padding: 6rem 0;
}

.icon_box{
  text-align: center;
}

.icon_box .icon{
  min-height: 6.4rem;
  margin-bottom: 2.6rem;
}

.icon_box .icon.one img{
  width: 4.5rem;
}

.icon_box .icon.two img {
  width: 9.7rem;
}

.icon_box .icon.three img {
  width: 5.7rem;
}

.icon_box .icon.four img {
  width: 5.3rem;
}

.icon_box h5{
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
}

.icon_box p{
  font-size: 2rem;
  color: var(--white);
}



/*============ eat healthy area ==============*/

.eat_healthy_area{
  background: #F5F5F5;
}

.eat_healthy_img{
  width: 24.5rem;
}

.eat_healthy_area .btn_group a {
  display: inline-block;
  width: 19rem;
}

.eat_healthy_area .title_sm{
  font-size: 4rem;
}

.eat_healthy_area .text_md{
  font-size: 2rem;
}



/*============ program area ==============*/

.program_area .blog_video{
  height: 93rem;
}

.program_area{
  padding: 10rem 0;
}

.blog_play.v1{
  width: 9rem;
  height: 9rem;
  background: var(--theme-color);
}

.blog_play.v1 img{
  width: 3.5rem;
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(335deg) brightness(104%) contrast(107%);
}

.blog_video_wrap.v1::before{
  height: 100%;
  border-radius: 1.5rem;
}

.program_area .icon_list{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 14.5rem;
}

.program_area .icon_list li{
  align-items: flex-start;
}

.program_area .icon_list li:not(:last-child){
  margin-bottom: 6.6rem;
}




/*============ program area ==============*/

.partner_area{
  padding: 5rem 0;
  background: #F5F5F5;
  text-align: center;
}

.partner_logos {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  justify-content: space-between;
}

.partner_logo{
  display: inline-block;
  width: 16rem;
  opacity: 0.2;
  transition: 200ms;
  margin-top: 3.2rem;
}

.partner_logo:nth-child(4){
  width: 17.8rem;
}

.partner_logo:hover{
  opacity: 1;
}



/*============ episodes area ==============*/

.episodes_area{
  padding: 13rem 0 9.5rem;
}

.episodes_area .gx-5 {
  --bs-gutter-x: 13rem;
}

.episodes_video{
  display: block;
  position: relative;
  margin-bottom: 5rem;
}

.episodes_video::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent, #000000);
  z-index: 1;
  border-radius: 1.5rem;
}

.episodes_video .playicon{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 7.7rem;
  z-index: 11;
}

.episodes_video_thumbnail{
  width: 100%;
  border-radius: 1.5rem;
}

.episodes_box .duration{
  display: flex;
  align-items: center;
}

.episodes_box .duration span{
  display: inline-flex;
  align-items: center;
  color: var(--theme-color);
  padding-left: 3.5rem;
}

.episodes_box .duration .time_icon{
  width: 3rem;
  margin-right: 1rem;
}

.episodes_box h6{
  font-size: 2.6rem;
  font-weight: 600;
  padding: 2rem 0;
}



.mfp-iframe-holder .mfp-content{
  max-width: 100rem;
}




/*============ join them area ==============*/

.join_them_area {
  padding: 13rem 0;
  background: #0D0D0D;
}

.number_boxs{
  display: flex;
  padding: 2rem 0;
}

.number_box{
  width: 10rem;
  height: 17rem;
  background: var(--white);
  border-radius: 1rem;
  color: var(--black);
  font-size: 12rem;
  line-height: 16rem;
  text-align: center;
  font-weight: 500;
  margin-right: 1.3rem;
  font-family: 'Oswald', sans-serif;
}

.number_box:first-child{
  margin-right: 4rem;
}

.five_star{
  width: 17rem;
}


.join_testimonial_wrap{
  padding-left: 4rem;
}

/* join_testimonial_card */
.join_testimonial_card{
  padding: 9rem 8rem 7.5rem 8rem;
  border-radius: 2rem;
  background: var(--white);
  font-size: 2.6rem;
  color: var(--black);
  line-height: 1.5;
}

.join_testimonial_card h6{
  font-weight: 700;
  font-size: 2.6rem;
  color: var(--black);
  line-height: 1.5;
}

.join_testimonial_card .name{
  padding-top: 4rem;
  text-align: right;
}


/* owl-dot */

.owl-dots{
  text-align: center;
  padding-top: 1rem;
}

.owl-dot * {
  display: none;
}

.owl-dot{
  width: 0;
  height: 0;
  padding: .8rem;
  border-radius: 50%;
  background: #565656;
  margin: 0 .7rem;
}

.owl-dot.active{
  background: var(--theme-color);
}



/*============ purpose area area ==============*/

.purpose_area{
  background: #FFFFFF;
}

.list_group li{
  list-style: none;
  font-weight: 700;
  margin-bottom: 1rem;
}

.list_group li span{
  font-size: 4rem;
}



/*============ dietitians area ==============*/

.dietitians_area{
  padding: 9.5rem 0;
  background: #0D0D0D;
}

.dietitians_area .accordion-button::after {
  background-image: url(../img/bottom-arrow-theme.svg) !important;
}

.dietitians_area .accordion-item{
  padding: 3.9rem;
  padding-right: 5rem;
}




/*============ masterclass area ==============*/

.masterclasses_area{
  padding: 13rem 0;
  border-bottom: .2rem solid var(--white);
}

/* masterclasses_card */
.masterclasses_card{
  display: block;
  position: relative;
  margin-left: 3rem;
  margin-right: 3rem;
}

.masterclasses_card::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent, #000000);
  z-index: 1;
  border-radius: 1.5rem;
}

.masterclasses_card_img{
  width: 100%;
  border-radius: 2rem;
}

.masterclasses_card_content{
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  padding: 6rem;
  z-index: 11;
}

.masterclasses_card .title_sm{
  color: var(--white);
  font-size: 5.3rem;
  line-height: 1.125;
  padding-bottom: 3.3rem;
}

.masterclasses_card p{
  font-size: 2.8rem;
  color: var(--theme-color);
}


/* owl-nav */
.masterclasses_slider .owl-nav{
  bottom: unset;
  top: 40%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 6rem;
}

.masterclasses_slider .owl-nav button{
  width: 7rem;
}




/*============ masterclass popup ==============*/

#masterclass_popup{
  text-align: center;
  color: var(--black);
}

#masterclass_popup .modal-dialog{
  max-width: 111rem;
}

#masterclass_popup .modal-content{
  background: var(--white);
  border-radius: 1.5rem;
  padding: 10rem 5rem;
}

#masterclass_popup .btn-close{
  position: absolute;
  top: 3rem;
  right: 3rem;
}

.popup_logo{
  width: 16rem;
  margin-bottom: 5.3rem;
}

#masterclass_popup .title_sm{
  font-size: 4rem;
  color: var(--black);
}

#masterclass_popup .download_button{
  display: inline-block;
  width: 20rem;
}

#masterclass_popup .scan{
  width: 17.7rem;
  margin-top: 7.5rem;
  margin-bottom: 2.6rem;
}




/* ================ goal area ================ */

.goal_area .icon_list{
  display: flex;
  align-items: center;
  justify-content: center;
}

.goal_area .icon_list li{
  margin-bottom: 0;
}

.goal_area .icon_list li:not(:last-child){
  margin-right: 5rem;
}


.goal_tab_nav{
  flex-wrap: nowrap;
  overflow: auto;
} 

.goal_tab_nav li{
  flex-shrink: 0;
}

.goal_tab_nav li:not(:last-child){
  margin-right: 2rem;
}

.goal_tab_nav .nav-link{
  background: rgb(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.94rem;
  line-height: 1;
  font-weight: 500;
  padding: 1.3rem;
  border-radius: .65rem;
}

.goal_tab_nav .nav-link.active{
  background: rgb(186, 253, 0, 0.3);
  color: var(--theme-color);
  font-weight: 600;
}

.register_box_wrap{
  border-color: var(--theme-color);
  font-size: 2.6rem;
}

.register_box_wrap .button{
  padding-left: 5.2rem;
  padding-right: 5.2rem;
}



.goal_area_cards.gx-5{
  --bs-gutter-x: 6.5rem;
}


.masterclasses_card.v1 .masterclasses_card_content{
  padding: 4rem;
}

.masterclasses_card.v1 .title_sm{
  font-size: 3.3rem;
  padding-bottom: .8rem;
}

.masterclasses_card.v1 .title_sm img{
  display: inline-block !important; 
  width: 2.2rem;
  max-width: 2.2rem;
  margin-bottom: .5rem;
}

.masterclasses_card .title_sm.v1{
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.masterclasses_card.v1 p{
  font-size: 2rem;
}