/*
* 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");



/*====================== 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);
}

.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-500 {
  font-weight: 500;
}

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

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




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

.button-red {
    background: var(--bs-danger);
    color: white;
}

.button-red:hover {
    border-color: var(--bs-danger);
    color: var(--bs-danger);
}

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

.black_button:hover {
  background: var(--theme-color);
  color: var(--black);
  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;
}

/* 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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--theme-color);
}

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



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

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

.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_middle {
  padding: 8rem 0 10rem 0;
}

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

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%);
}

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



.footer-container {
    padding-bottom: 60px;
}

.footer-container-copyright {
    display: flex;
    align-items: center;
}

.footer-container-logo {
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 991px) {
    .footer-container-logo {
        justify-content: center;
    }
}



/*============ 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;
}

.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;
  height: 100%;
}

.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: 45rem;
}

.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: 7rem;
  height: 7rem;
  border-radius: 50%;
  border: 1px solid var(--white);
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: transparent;
  color: var(--white);
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
}

.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);
    border: none;
    background: none;
}

.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%);
}

.btn-close-preview-video {
    position: absolute;
    right: 10px;
    color: white;
    filter: invert(1);
    opacity: 0.3;
}

.page-link {
    background-color: transparent;
    border: none;
}

.page-link:hover {
    background-color: transparent;
    border: none;
}

.page-item.disabled {
    display: none;
}

.offer_card_wrap_masterclass {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.discount-form {
    display: flex;
    margin-top: 40px;
}

.offer_a_gift_card .discount-form .form_group {
    padding-bottom: 0;
    margin-right: 30px;
}
