/* ---------------- Google fonts ------------------ */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

/* ---------------- Fonts ------------------ */

/* Regular */
@font-face {
  font-family: 'SimplerPro';
  src: url('../fonts/SimplerPro_HLAR-Regular.woff2') format('woff2'),
  url('../fonts/SimplerPro_HLAR-Regular.woff') format('woff'),
  url('../fonts/SimplerPro_HLAR-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Bold */
@font-face {
  font-family: 'SimplerPro';
  src: url('../fonts/SimplerPro_HLAR-Bold.woff2') format('woff2'),
  url('../fonts/SimplerPro_HLAR-Bold.woff') format('woff'),
  url('../fonts/SimplerPro_HLAR-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* ---------------- Basic css ------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  color-scheme: light only;
}

:root {
  scroll-behavior: unset;
  --white: #ffffff;
  --black: #000000;
  --darkblue: #304753;

  --white_img: brightness(0) saturate(100%) invert(99%) sepia(0%)
    saturate(7498%) hue-rotate(67deg) brightness(112%) contrast(100%);
  --black_img: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(16%);

  /*--primaryfont: "Inter", sans-serif;*/
  /*--secondaryfont: "Montserrat", sans-serif;*/
  --primaryfont: "SimplerPro", sans-serif;
  --secondaryfont: "SimplerPro", sans-serif;

  --MenuHeight: 9.1rem;

  --shadow: 0 0 0.4rem 0 #00000040;
}

img {
  width: 100%;
}

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: none;
}

a {
  text-decoration: none !important;
  transition: 200ms;
  color: inherit;
}

.f-right {
  float: right;
}
button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: none;
}

button {
  background: none;
  border: none;
  outline: none;
  padding: 0;
}

/* body */
body {
  font-size: 1.6rem;
  line-height: 100%;
  font-weight: 400;
  color: var(--darkblue);
  overflow-x: hidden;
  font-family: var(--primaryfont);
  background: #ffffff;
}

.container {
  margin: 0 auto;
  width: 100%;
}

main {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.figure img,
.figure {
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  font-family: var(--primaryfont);
  color: var(--darkblue);
}

/* link_text */
.link_text {
  color: #0077ff;
}

a.link_text:hover {
  color: var(--darkblue);
}

.border {
  border: 0.1rem solid #07205d66 !important;
}

.text-white {
  color: var(--white) !important;
}

/* colros */

/* image colros */
.white_img {
  -webkit-filter: brightness(0) saturate(100%) invert(99%) sepia(0%)
    saturate(7498%) hue-rotate(67deg) brightness(112%) contrast(100%);
  filter: brightness(0) saturate(100%) invert(99%) sepia(0%) saturate(7498%)
    hue-rotate(67deg) brightness(112%) contrast(100%);
}
.black_img {
  -webkit-filter: brightness(0) saturate(100%) invert(0%) sepia(0%)
    saturate(16%) hue-rotate(309deg) brightness(93%) contrast(107%);
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(16%)
    hue-rotate(309deg) brightness(93%) contrast(107%);
}

/* Font Weights */
.f_300 {
  font-weight: 300 !important;
}
.f_400 {
  font-weight: 400 !important;
}
.f_500 {
  font-weight: 500 !important;
}
.f_600 {
  font-weight: 600 !important;
}
.f_700 {
  font-weight: 700 !important;
}
.f_800 {
  font-weight: 800 !important;
}
.f_900 {
  font-weight: 900 !important;
}

/* titles */
h1 {
  font-size: 4.8rem;
  line-height: 1;
}
.title_31 {
  font-size: 3.1rem;
  line-height: 1;
}
h2 {
  font-size: 3rem;
  line-height: 1;
}
h4 {
  font-size: 2.8rem;
  line-height: 1;
}
h5 {
  font-size: 2.4rem;
  line-height: 1;
}
.title_23 {
  font-size: 2.3rem;
  line-height: 1;
}

/* texts */
.text_xl {
  font-size: 2rem;
  line-height: 1;
}
.text_lg {
  font-size: 1.8rem;
  line-height: 1;
}
.text_md {
  font-size: 1.6rem;
  line-height: 1;
}
.text_sm {
  font-size: 1.4rem;
  line-height: 1;
}
.text_xsm {
  font-size: 1.2rem;
  line-height: 1;
}
.text_2xsm {
  font-size: 1rem;
  line-height: 1;
}

/* -------------- preloader --------------- */
#preloader {
  position: fixed;
  background: var(--white);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999999999999999999999;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloaderVideo {
  width: 16rem;
}

/* -------------- Back to top ------------ */
.back-to-top {
  width: 4.5rem;
  height: 4.5rem;
  line-height: 4.5rem;
  text-align: center;
  position: fixed;
  bottom: 4.7rem;
  left: 2rem;
  border-radius: 50%;
  background: var(--darkblue);
  z-index: 1000;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top img {
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(100%)
    saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%)
    hue-rotate(288deg) brightness(102%) contrast(102%);
  width: 2.5rem;
  transform: rotate(180deg);
}

.topbtn_hide {
  opacity: 1;
}

/* icons size */
.icon_14 {
  width: 1.4rem;
}
.icon_16 {
  width: 1.6rem;
}
.icon_18 {
  width: 1.8rem;
}
.icon_20 {
  width: 2rem;
}
.icon_22 {
  width: 2.2rem;
}
.icon_24 {
  width: 2.4rem;
}
.icon_26 {
  width: 2.6rem;
}
.icon_28 {
  width: 2.8rem;
}
.icon_34 {
  width: 3.4rem;
}

/* =========== Buttons ========== */
.button {
  gap: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.4rem;
  border-radius: 10rem;
  font-size: 1.633rem;
  font-weight: 400;
  line-height: 1;
  transition: 0.25s ease;
  width: 30rem;
}

.button_darkblue {
  background: #304753;
  color: #fff;
}

.button_darkblue:hover {
  background: #ffffff;
  color: #304753;
}

.button_darkblue img {
  filter: var(--white_img);
}

.button_darkblue:hover img {
  filter: brightness(0) saturate(100%) invert(20%) sepia(5%) saturate(4851%)
    hue-rotate(157deg) brightness(94%) contrast(77%);
}

.button_white {
  background: #ffffff;
  color: #304753;
}

.button_white:hover {
  background: #304753;
  color: #ffffff;
}

.button_white:hover img {
  filter: var(--white_img);
}

.button_white_transparent {
  background: transparent;
  border: 0.1rem solid #fff;
  color: #fff;
}

.button_white_transparent:hover {
  background: #fff;
  color: #304753;
}

.hover_shadow:hover {
  box-shadow: 0 0 1.5rem 0.1rem rgba(0, 0, 0, 0.2);
}

.button_darkblue_transparent {
  background: transparent;
  border: 0.1rem solid #304753;
  color: #304753;
}

.button_darkblue_transparent:hover {
  background: #304753;
  color: #fff;
}

/* -------------- Header Styles by Sahriar --------------- */
.site_header {
  padding: 0;
  position: fixed;
  z-index: 99999;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: transparent;
  height: var(--MenuHeight);
  display: flex;
  align-items: center;
  border-bottom: 0.1rem solid #ffffff26;
}

.logo img {
  width: 6rem;
}

.header_right {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.site_header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site_header .button {
  width: fit-content;
  padding: 0 3.1rem;
  cursor: pointer;
}

.primary_menu {
  display: flex;
  align-items: center;
  gap: 2.8rem;
}

.menu_link {
  height: 6rem;
  display: flex;
  align-items: center;
}

.menu_link:hover {
  color: var(--darkblue);
  opacity: 0.5;
}

.logo_black {
  display: none;
}

.mobile_menu,
.toggled_menu {
  display: none;
}

/* site_header two */
.site_header.menu_sticky {
  box-shadow: 0 0 2rem 0.1rem rgba(0, 0, 0, 0.2);
}

.site_header.menu_sticky,
.site_header.menu_white {
  background: #ffffff;
  border-color: #30475333;
}

.site_header.menu_sticky .menu_link,
.site_header.menu_white .menu_link {
  color: var(--darkblue) !important;
}

.site_header.menu_sticky .logo_black,
.site_header.menu_white .logo_black {
  display: block;
}

.site_header.menu_sticky .logo_white,
.site_header.menu_white .logo_white {
  display: none;
}

.site_header.menu_sticky .toggled_menu img,
.site_header.menu_white .toggled_menu img {
  filter: brightness(0) saturate(100%) invert(23%) sepia(29%) saturate(546%)
    hue-rotate(156deg) brightness(94%) contrast(89%);
}

/* ====== Submenu ======= */
.dropdown_wrapper {
  position: relative;
}

.dropdown_content {
  width: 95.3rem;
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 3.2rem 2.3rem 3.5rem 3.5rem;
  background: #fff;
  border-radius: 2.5rem;
  right: 0;
  transform: translateY(1rem);
  transition: 0.5s ease;
  opacity: 0;
  pointer-events: none;
}

.dropdown_wrapper:hover .dropdown_content {
  opacity: 1;
  pointer-events: all;
  transform: translateY(-1rem);
}

.submenu_box {
  display: flex;
  align-items: end;
  gap: 2.4rem;
  background: #e4f2f5;
  border-radius: 1.2rem;
  box-shadow: 0 0 1.5rem 0 rgba(0, 0, 0, 0.25);
  cursor: pointer;
  height: fit-content;
}

.submenu_img {
  width: 16.6rem;
  height: 14.6rem;
}

.submenu_info h6 {
  padding-bottom: 0.4rem;
  font-size: 1.5rem;
}

.submenu_info p {
  color: #8a9da4;
  line-height: 1.2;
  padding-bottom: 1.2rem;
}

.submenu_info a {
  height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  width: fit-content;
  padding: 0 1.8rem;
  background: #304753;
  border-radius: 10rem;
}

.submenu_links_box .submenu_links_btn {
  font-size: 1.4rem;
}

.submenu_links_box ul li a {
  color: #97a3a9;
  display: block;
  line-height: 1.25;
}

/* ============= Hero area ============= */
.hero_area {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
}

.hero_area:before {
  content: "";
  width: 100%;
  position: absolute;
  height: 35.8rem;
  background: linear-gradient(
    178deg,
    rgba(255, 255, 255, 0) 40.73%,
    #ffffff 98.4%
  );
  left: 0;
  bottom: 0;
  z-index: 1;
}

.hero_area > video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero_area .container {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 2;
}

.hero_img {
  width: 24.6rem;
}

.hero_content {
  max-width: 54.8rem;
  padding: 0 2.6rem 0 0.9rem;
  text-align: center;
}

.hero_content > p {
  color: #fff;
  padding: 2.2rem 0;
  width: 47rem;
  line-height: 1.15;
}

.hero_content .button {
  width: 21.1rem;
  margin: 0 auto;
}

/* ===================== experience area ======================= */
.experience_area {
  padding: 6.1rem 0 7rem;
}

.experience img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience {
  display: block;
  width: 100%;
  height: 100%;
}

.experience_slider .swiper-slide {
  width: 24.1rem;
  height: 35.8rem;
  border-radius: 1.2rem;
  overflow: hidden;
  transition: 0.35s ease;
}

.experience_slider .swiper-slide:hover,
.experience_slider .swiper-slide.first_item {
  width: 55.3rem;
}

/* ====== swiper-scrollbar ====== */
.swiper-scrollbar {
  background: #d7d7d7;
  position: relative !important;
  margin-top: 6rem;
  height: 0.3rem !important;
}

.swiper-scrollbar-drag {
  background: #304753;
}

.swiper-scrollbar-drag:hover {
  background: #22333b;
}
/* ====== swiper-scrollbar ====== */

.experience_content {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 14, 16, 0) 45%, #000000 100%);
  left: 0;
  top: 0;
  display: grid;
  align-items: flex-end;
}

.experience_inner {
  padding: 2rem 1.5rem 2rem 1.5rem;
}

.experience_inner {
  width: 32rem;
}

.experience_inner a {
  width: 30rem;
  padding: 0;
}

.experience_inner h4,
.experience_inner > p {
  padding-right: 1.5rem;
}

.experience_inner > p {
  padding: 1.5rem 1.5rem 2.5rem;
  opacity: 0;
}

.experience_inner .button {
  opacity: 0;
}

.experience_inner h4 {
  font-weight: 400;
}

.experience_inner {
  transform: translateY(11.5rem);
  transition: 0.35s ease;
}

.experience_slider .swiper-slide:hover .experience_inner,
.experience_slider .swiper-slide.first_item .experience_inner {
  transform: translateY(0);
}

.experience_slider .swiper-slide:hover .experience_inner .button,
.experience_slider .swiper-slide.first_item .experience_inner .button {
  opacity: 1;
}

.experience_slider .swiper-slide:hover .experience_inner p,
.experience_slider .swiper-slide.first_item .experience_inner p {
  opacity: 1;
}

.experience_area .section_top {
  display: flex;
  align-items: center;
}

/* ============= parallax slider ============== */

/* ======= swiper-pagination ======== */
.swiper-pagination-bullet {
  background: #f1ece2;
  width: 1.5rem;
  height: 1.5rem;
  margin: 0 1rem !important;
  opacity: 1;
}

.swiper-pagination {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0;
  padding-bottom: 2rem;
}

.swiper-pagination-bullet-active {
  background: #ffffff;
}
/* ======= swiper-pagination ======== */

.text_center {
  text-align: center;
}

/* ======= structure ======== */
.row {
  width: 100%;
  display: flex;
  align-items: center;
}

.col-lg-6 {
  width: 50%;
}

.col-lg-4 {
  width: 33.333333%;
}

.col-lg-4 {
  width: 25%;
}

.col_2 .col-lg-6:first-child {
  padding-left: var(--gutter-x);
}

.col_2 .col-lg-6:last-child {
  padding-right: var(--gutter-x);
}
/* ======= structure ======== */

/* ============== pamper area ================ */
.pamper_area {
  padding: 12rem 0 7.7rem;
}

.pamper_area .row {
  --gutter-x: 2rem;
}

.pamper_info {
  text-align: center;
  padding-bottom: 3.3rem;
}

.pamper_info .button {
  margin: 0 auto;
}

.pamper_info .button:hover {
  box-shadow: 0 0 1rem 0.1rem rgba(0, 0, 0, 0.1);
}

.pamper_info h6 {
  font-size: 2.1rem;
  padding: 3rem 0 1.6rem;
}

.pamper {
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: 0 0 0.4rem 0 #00000040;
  border-radius: 1.2rem;
  overflow: hidden;
  transition: 0.25s ease;
}

.section_bg_wrapper {
  position: relative;
}

.shape_img {
  position: absolute;
  bottom: -17rem;
}

.section_bg_wrapper > div {
  position: relative;
}

/* =================== instagram_area  ===================== */
.instagram_area {
  position: relative;
}

.underline {
  text-decoration: underline !important;
  transition: 0.2s ease;
}

.underline:hover {
  text-decoration: none !important;
}

.insta_slider {
  width: 113rem;
  margin: 0 auto;
}

/* =================== Tobvk area ===================== */
.tovik_area {
  height: 53.8rem;
  display: flex;
  align-items: center;
}

.tovik_img img {
  width: 50vw;
  height: 100%;
  object-fit: cover;
}

.tovik_img {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  left: 0;
  height: 53.8rem;
}

.tovik_img:before {
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ffffff 69.57%);
  position: absolute;
  width: 100%;
  height: 100%;
  right: -30%;
}

.tovik_area .container {
  position: relative;
}

.tovik_area .content {
  width: 57rem;
}

.tovik_area p {
  font-size: 2.059rem;
  line-height: 1;
  font-weight: 300;
}

/* ============== slider_arrows =========== */
.slider_arrows > div {
  position: relative;
  right: 0;
  top: 1.2rem;
  background: transparent;
  opacity: 1 !important;
  height: auto;
  bottom: 0;
  transform: translate(0, 0);
  pointer-events: all !important;
  cursor: pointer !important;
}

.slider_arrows > div:after {
  display: none;
}

.slider_arrows {
  display: flex;
  align-items: center;
  gap: 2.9rem;
  height: 2.8rem;
}

.slider_arrows .swiper-button-lock {
  display: flex;
}

.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35 !important;
}

/* ================== Blog area =================== */
.blog_area {
  padding: 4.7rem 0 17.2rem;
}

.blog.v1 {
  background: #304753;
}

.swiper-slide {
  width: 35.2rem;
}

.blog_img img {
  height: 23.3rem;
  object-fit: cover;
}

.blog.v1 .blog_info1 > * {
  color: #fff;
}

.blog.v1 .blog_info2 > p {
  color: #fff;
}

.blog {
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 0 0.4rem 0 #00000040;
  transition: 0.25s ease;
  background: #fff;
}

.blog_img {
  display: flex;
}

.flex_center {
  display: flex;
  align-items: center;
}

.blog:not(.v1) .button_darkblue:hover {
  border: 0.1rem solid #304753;
}

.blog:not(.v1) .button_darkblue {
  border: 0.1rem solid #304753;
}

.blog.v1 .button_white:hover {
  border: 0.1rem solid #fff;
}

.blog.v1 .button_white {
  border: 0.1rem solid #fff;
}

.slider_overflow {
  overflow: visible;
}

.blog_area .swiper-scrollbar {
  display: none;
}

/* =================== Follower area ==================== */
.follower_function {
  display: grid;
  grid-template-columns: 0fr 1fr;
  gap: 5rem;
  align-items: center;
}

.follower_contents_list {
  width: 69.2rem;
  height: 40.3rem;
  border-radius: 1.2rem;
  overflow: hidden;
}

.follower_content,
.follower_content img {
  width: 100%;
  object-fit: cover;
}

.follower_nav h6 {
  color: #8d9aa1;
  font-size: 1.5rem;
  line-height: 122.3%;
  padding-bottom: 0.7rem;
}

.follower_nav p {
  line-height: 122.3%;
  font-size: 1.5rem;
  font-weight: 400;
}

.hover_nav {
  cursor: pointer;
}

.follower_nav {
  padding-top: 2rem;
  padding-bottom: 2.4rem;
}

.follower_nav:not(:first-child) {
  border-top: 0.1rem solid #c5cccf;
}

.follower_nav:last-child {
  border-bottom: 0.1rem solid #c5cccf;
}

.follower_nav_list {
  width: 45.8rem;
  display: block !important;
}

.follow_area {
  padding: 12.5rem 0 6rem;
}

.follower_nav:first-child {
  padding-top: 0;
}

.tovik_follow_wrapper {
  position: relative;
}

.bg_shape2 {
  position: absolute;
  width: 100%;
  top: -6rem;
  pointer-events: none;
  z-index: -1;
}

.followers_info,
.follower_content_close,
.follower_content_close_overlay {
  display: none;
}

/* ========================= expHover_area ======================= */
.expHover_nav.v1 .expHover_nav_top_icon img {
  width: 1.2rem;
}

.expHover_nav.v2 .expHover_nav_top_icon img {
  width: 1.9rem;
}

.expHover_nav.v3 .expHover_nav_top_icon img,
.expHover_nav.v4 .expHover_nav_top_icon img,
.expHover_nav.v5 .expHover_nav_top_icon img,
.expHover_nav.v6 .expHover_nav_top_icon img,
.expHover_nav.v7 .expHover_nav_top_icon img,
.expHover_nav.v8 .expHover_nav_top_icon img {
  width: 1.8rem;
}

.exp_hover_img {
  width: 29.686rem;
}

.exphover_nav_wrapper {
  width: 60.7rem;
  height: 47.9rem;
  display: flex;
  align-items: center;
  margin-left: 3.5rem;
}

.expHover_function {
  display: grid;
  grid-template-columns: 0fr 0fr;
  width: fit-content;
  align-items: center;
  margin: 0 auto;
}

.expHover_content img {
  max-width: 41.6rem;
}

.expHover_content {
  display: grid;
}

.expHover_content_info {
  width: 38.2rem;
}

.expHover_content_info p {
  line-height: 122.3%;
  font-size: 1.5rem;
}

.expHover_contents_list {
  position: relative;
  padding-right: 7.2rem;
}

.expHover_contents_list:before {
  height: 30.3rem;
  width: 0.1rem;
  background: #d6dadd;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  content: "";
}

/* ================= Movable code ================== */
.expHover_nav {
  position: absolute;
  transition: 0.25s ease;
}

.expHover_nav * {
  transition: 0.25s ease;
}

.expHover_nav_list {
  width: fit-content;
  position: relative;
  transform: translateX(-13rem);
}

.expHover_nav_top_icon {
  width: 4.54rem;
  height: 4.54rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.1rem solid #d6dadd;
  border-radius: 10rem;
}

.expHover_nav.v1 {
  left: -11.5rem;
  top: 5rem;
}

.expHover_nav_top p {
  font-size: 1.5rem;
  color: #d6dadd;
  font-weight: 400;
  line-height: 122.3%;
}

.expHover_nav.v1 .expHover_nav_top p {
  padding-right: 5.2rem;
  margin-top: -0.8rem;
}

.expHover_nav.v2 {
  left: -3.5rem;
  top: -4.7rem;
}

.expHover_nav.v2 .expHover_nav_top p {
  padding-right: 6rem;
  margin-top: -6rem;
}

.expHover_nav.v3 .expHover_nav_top p {
  padding-right: 0;
  position: absolute;
  left: 3rem;
  top: -2.5rem;
}

.expHover_nav.v3 {
  left: 19.4rem;
  top: -5rem;
}

.expHover_nav_top {
  display: block;
}

.expHover_nav.v4 {
  left: 30.2rem;
  top: 6rem;
}

.expHover_nav.v4 .expHover_nav_top p {
  position: absolute;
  left: 3rem;
  top: -2.5rem;
}

.expHover_nav.v5 {
  left: 29.7rem;
  bottom: 5.8rem;
}

.expHover_nav.v5 .expHover_nav_top p {
  left: 5.8rem;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
}

.expHover_nav.v8 {
  left: -5rem;
  bottom: 5.8rem;
}

.expHover_nav.v8 .expHover_nav_top p {
  position: absolute;
  white-space: nowrap;
  bottom: -4.6rem;
  right: 4rem;
}

.expHover_nav.v7 {
  left: 5.5rem;
  bottom: -4.4rem;
}

.expHover_nav.v7 .expHover_nav_top p {
  position: absolute;
  bottom: -3rem;
  right: 0rem;
  white-space: nowrap;
}

.expHover_nav.v6 {
  right: 4rem;
  bottom: -5.6rem;
}

.exh_icon_v2 {
  display: none;
}

.expHover_nav.active .exh_icon_v2 {
  display: block;
}

.expHover_nav.active .exh_icon_v1 {
  display: none;
}

.expHover_nav.active p {
  color: var(--darkblue);
}

.expHover_nav.active .expHover_nav_top_icon {
  border-color: var(--darkblue);
}

/* =========================== tovik_friend_area ============================ */
.tovik_friend_area {
  padding-bottom: 10.7rem;
}

.tovik_friend_content img {
  width: 73.6rem;
}

.tovik_friend_content {
  display: grid;
  grid-template-columns: 0fr 1fr;
  box-shadow: 0 0 0.4rem 0 #00000040;
  border-radius: 1.2rem;
  overflow: hidden;
  background: #fff;
}

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

/* ==================== Contact area ======================== */
.form_control {
  border: 0.1rem solid #b9b9b9;
  height: 3.9rem;
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  border-radius: 0.7rem;
  resize: none;
  width: -webkit-fill-available;
}

.col-md-6 {
  width: 50%;
}

.col-md-4 {
  width: 33.3333333%;
}

.col-12 {
  width: 100%;
}

.contact_form .row {
  flex-wrap: wrap;
  gap: 1.6rem 0;
}

.form_group {
  width: auto;
}

.form_textarea {
  min-height: 8rem;
  padding-top: 1rem;
}

.contact_form {
  max-width: 52.2rem;
  margin: 0 auto;
}

.contact_form .button {
  margin: 0 auto;
  cursor: pointer;
}

.contact_form .col_l .form_group {
  padding-right: 0.9rem;
}

.contact_form .col_r .form_group {
  padding-left: 0.9rem;
}

.form_control:focus {
  border-color: #304753;
}

.contact_form .button:hover {
  box-shadow: var(--shadow);
}

.form_control,
.form_control::placeholder {
  color: #5c5555;
  font-size: 1.5rem;
  font-weight: 500;
}

/* ==================== product_area =================== */
.product_area {
  padding-top: 19.5rem;
  padding-bottom: 10rem;
}

.product {
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 1.2rem;
  transition: 0.25s ease;
  cursor: pointer;
}

.product:hover {
  box-shadow: 0 0 2rem 0.1rem rgba(0, 0, 0, 0.1);
}

.product .button:hover {
  box-shadow: var(--shadow);
}

.product_area .swiper-scrollbar {
  display: none;
}

.product_info p.p2.text_xl {
  padding-bottom: 0.5rem;
}

/* ================= Accordion area =================== */
.accordion_area {
  background: #fff;
  padding: 5rem 0 15rem;
}

.accordion_collapse {
  display: none;
}
.accordion_collapse.collapse {
  display: none;
}

.accordion_area .accordion {
  max-width: 85.5rem;
}

.accordion_button {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 1.6rem;
  cursor: pointer;
  align-items: center;
  font-size: 1.6rem;
  color: #304753;
}

.accordion_item {
  padding-bottom: 1.4rem;
  border-bottom: 0.1rem solid #d1d3d3;
  width: 100%;
  margin-bottom: 3.1rem;
}

.accordion-body p {
  padding: 1.5rem;
  font-size: 1.6rem;
  line-height: 1.4;
  color: #304753;
}

.accordion_button img {
  transition: 0.25s ease;
}

.accordion_button:not(.collapsed) img {
  transform: rotate(180deg);
}

.product_accordion_wrapper {
  position: relative;
}

.product_accordion_wrapper .accordion_area {
  background: #ebedee;
}

.bg_shape3 {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: -1;
}

/* ================= Footer area ================= */
.footer_section {
  background: #304753;
}

.footer_logo img {
  width: 16.2rem;
  margin-left: 9.5rem;
}

.footer_box img {
  width: 8rem;
}

.footer_map iframe {
  width: 100%;
  height: 18.8rem;
  border-radius: 1.8rem;
}

.footer_box {
  width: 14.3rem;
  height: 18.7rem;
  display: grid;
  border: 0.1rem solid #596c75;
  border-radius: 1.8rem;
  gap: 0;
  align-content: space-between;
  justify-content: center;
  text-align: center;
}

.footer_box p {
  line-height: 1.7;
}

.footer_box.fb1 {
  padding: 2rem 0 1.5rem;
}

.footer_boxes {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.footer_box.fb2 {
  padding: 1.4rem 0;
}

.footer_row_one {
  display: grid;
  grid-template-columns: 0fr 1fr 0fr;
  align-items: flex-start;
  padding-bottom: 2.5rem;
}

.footer_widget {
  padding: 7.1rem 11rem 6rem 11rem;
}

.footer_map {
  padding-left: 4rem;
}

.footer_link_box.flb1 {
  width: 18.8rem;
}

.footer_link_box.flb2,
.footer_link_box.flb3 {
  width: 10rem;
}

.footer_row_two {
  display: grid;
  grid-template-columns: 0fr 0fr 0fr 1fr;
}

.footer_link_box h6 {
  padding-bottom: 1rem;
  white-space: nowrap;
}

.footer_link_box ul li {
  font-size: 1.5rem;
  line-height: 1.7;
  font-weight: 400;
  white-space: nowrap;
}

.footer_link_box ul li a:hover {
  text-decoration: underline !important;
}

.social_icons {
  gap: 2rem;
  display: flex;
  align-items: center;
}

.footer_link_box .form_control {
  background: transparent;
  border-radius: 0;
  border: 0;
  border-bottom: 0.1rem solid #acb5ba;
  color: #cdd3d6;
}

.footer_link_box .form_control::placeholder {
  color: #cdd3d6;
}

.footer_copywrite p {
  font-size: 1.5rem;
  line-height: 1.7;
  color: #fff;
  text-align: center;
}

.footer_copywrite {
  padding: 1.8rem 0;
  background: #293d47;
}

.button_white_transparent {
  background: transparent;
  border: 0.1rem solid #fff;
  color: #fff;
}

.footer_link_box .button {
  margin: 0;
  width: 18.1rem;
}

.footer_row_one .accordion {
  display: none;
}

.footer_link_box .form_textarea,
.social_icons_footer_sm {
  display: none;
}

/* ===================== Fixed widget ======================= */
.fixed_widget {
  position: fixed;
  right: 0;
  bottom: 4.7rem;
  background: #ffffff;
  height: auto;
  display: flex;
  align-items: center;
  z-index: 999;
  padding: 0 1.4rem 0 2.7rem;
  border-radius: 0.8rem 0 0 0.8rem;
  cursor: pointer;
  height: 9.1rem;
  box-shadow: 0 0 0.8rem 0.1rem rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: 0.35s ease;
}

.fixed_widget.active {
  overflow: visible;
}

.widget_buttons {
  display: flex;
  align-items: center;
  padding-left: 4rem;
  white-space: nowrap;
  overflow: hidden;
}

.widget_btn {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.widget_btn p {
  line-height: 1.5;
}

.widget_btn img {
  width: 6rem;
}

.widget_icon {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0 2.5rem;
  border-left: 0.1rem solid #cccccc;
}

.widget_icon img {
  width: 4.8rem;
}

.widget_icon:last-child {
  border-left: 0;
  padding-left: 0;
}

.widget_toggle {
  position: absolute;
  display: block;
  left: 1rem;
  top: 0.8rem;
  cursor: pointer;
}

.widget_toggle img {
  width: 2.4rem;
}

.widget_buttons_wrap {
  background: #ffffff;
  position: absolute;
  height: 9.1rem;
  display: flex;
  align-items: center;
  padding: 0 1.4rem 0 5rem;
  border-radius: 0.8rem 0 0 0.8rem;
  right: -70rem;
  transition: 0.35s ease-out;
  opacity: 0;
  box-shadow: 0 0 0.8rem 0.1rem rgba(0, 0, 0, 0.2);
}

.fixed_widget.active .widget_btn {
  opacity: 0;
  pointer-events: none;
}

.fixed_widget.active .widget_buttons_wrap {
  opacity: 1;
  right: 0;
}

/* ========= modal styles =========== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #304753f0;
  z-index: 99999999;
  display: flex;
  align-items: flex-start;
  padding-top: 5rem;
  justify-content: center;
}

.modal_content {
  min-width: 33.1rem;
  max-width: 50rem;
  background: #fff;
  padding: 4rem 3.3rem;
  border-radius: 3.1rem;
  position: relative;
}

.content_main .button {
  height: 6.2rem;
  width: 100%;
}

.content_main {
  display: grid;
  gap: 2.2rem;
}

.modal_close {
  position: absolute;
  right: 2.7rem;
  top: 1.7rem;
  display: flex;
  cursor: pointer;
}

.d-none {
  display: none;
}

/* ===================== navigation ====================== */
.navigation ul {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #797979;
  white-space: nowrap;
}

.navigation {
  padding: 1.3rem 0;
  background: #effaff;
}

.overflow_ellipses {
  overflow: hidden;
  text-overflow: ellipsis;
  direction: rtl;
}

/* ===================== treatment_area ====================== */
.section_block_img {
  width: 58%;
  border-radius: 1.2rem;
  overflow: hidden;
}

.section_blocks {
  display: flex;
  align-items: center;
}

.section_blocks.v1 {
  gap: 6.6rem;
}

.section_blocks .content {
  width: 42.7rem;
}

.mt_top {
  margin-top: var(--MenuHeight);
}

.treatment_area .section_blocks {
  padding-left: 6rem;
  padding-right: 3rem;
}

.section_blocks.v2 {
  justify-content: space-between;
}

.slider_arrow_white_bottom {
  position: absolute;
  bottom: 0.8rem;
  padding: 0 1.2rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.arrow_right_icon {
  transform: rotate(180deg);
}

.treatment_area .swipper_dots_small,
.treatment_area .slider_arrow_white_bottom {
  display: none;
}

.section_block_img .swiper-pagination {
  padding-bottom: 0.8rem;
}

/* ============= swipper_dots_small =============== */
.swipper_dots_small .swiper-pagination-bullet {
  width: 0.95rem;
  height: 0.95rem;
  margin: 0 0.4rem !important;
}

.swipper_dots_small .swiper-pagination {
  padding-bottom: 1rem;
}

/* ================== Contact area v2 =================== */
.contact_form.v2 {
  max-width: 81.2rem;
}

.form_group {
  position: relative;
}

.form_left_icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 1.2rem;
}

.contact_form.v2 .col-md-4 {
  padding: 0 0.9rem;
}

.nice-select {
  line-height: 4rem;
}

.nice-select::after {
  border-color: #000;
  left: 1.3rem;
  right: auto;
  width: 0.6rem;
  height: 0.6rem;
  border-width: 0.25rem;
}
.list {
  width: 100%;
}

/* ============ review_images ============= */
.Reviews_img_sm {
  display: none;
}

/* ================== Sub category area ==================== */
.category {
  display: grid;
  grid-template-columns: 0fr 1fr;
  position: relative;
  padding: 4.7rem 0;
}

.category > img {
  width: 35rem;
  height: 19rem;
  border-radius: 1.2rem;
  object-fit: cover;
}

.category_info {
  width: 44.9rem;
  padding-top: 1.8rem;
}

.category:before {
  width: 100000vw;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  background: #d6dadd;
  height: 0.05rem;
  bottom: 0;
  position: absolute;
}

.category:last-child:before {
  display: none;
}

.category:after {
  width: 100000vw;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  background: #f4f9fd;
  height: 100%;
  bottom: 0;
  position: absolute;
  opacity: 0;
  transition: 0.25s ease;
  z-index: -1;
}

.category:hover:after {
  opacity: 1;
}

.spa_package {
  width: 35.2rem;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  border-radius: 1.2rem;
  transition: 0.35s box-shadow ease-in;
  height: min-content;
  background: #fff;
  left: calc(50% - 48rem);
  transform: translateX(-50%);
  position: sticky;
  top: 11rem;
}

.spa_package > img {
  height: 23.3rem;
}

.spa_package_info {
  text-align: center;
  padding: 2.1rem 2.7rem 4.7rem;
}

.spa_package_info h6 {
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1;
}

.spa_package_info_btns a {
  width: 29.3rem;
  margin: 0 auto;
}

.spa_package_info_btns {
  display: grid;
  gap: 0.7rem;
}

.spa_package:hover {
  box-shadow: 0 0 2rem 0.1rem rgba(0, 0, 0, 0.1);
}

.subcategory_content {
  display: grid;
  grid-template-columns: 1fr 0fr;
  position: sticky;
  top: 1rem;
}

/* ============ Video box ============ */
.video_area {
  padding: 15rem 0 24.5rem;
  position: relative;
}

.video_area:before {
  content: "";
  width: 100%;
  position: absolute;
  height: 25rem;
  background: linear-gradient(
    178deg,
    rgba(255, 255, 255, 0) 40.73%,
    #ffffff 98.4%
  );
  left: 0;
  bottom: 0;
  z-index: 1;
}

.video_box {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}

.video_box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.soundOn_and_sound_toggle img {
  width: 2.417rem;
}

.video_actions {
  position: absolute;
  bottom: 6.4rem;
  left: 2rem;
  display: flex;
  gap: 1.6rem;
  flex-direction: row-reverse;
  z-index: 9999;
}

.video_actions button {
  cursor: pointer;
}

.soundOn_and_soundOff_toggle img {
  width: 2.175rem;
}

.video_area .container {
  position: relative;
  text-align: center;
}

.tags {
  display: flex;
  justify-content: center;
  gap: 1.3rem;
}

.tags a {
  width: 9.7rem;
  height: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.5rem;
  background: rgb(255 255 255 / 15%);
  color: #fff;
  font-size: 1.12rem;
  border-radius: 0.7rem;
  transition: 0.25s;
}

.tags a:hover {
  background: rgb(255 255 255 / 55%);
}

.video_content p {
  line-height: 1.2;
}

/* ============== Video area two ============= */
.video2_box {
  max-width: 104.4rem;
  margin: 0 auto;
  height: 55rem;
  position: relative;
  cursor: pointer;
}

.video2_box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video_pause img {
  width: 9rem;
  height: 9rem;
}

.video_pause {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

/* ======================= section_blocks2 ========================= */
.section_blocks2 .section_block_img.sm {
  position: relative;
  width: 41.3rem;
  overflow: visible;
}

.section_blocks2 .swiper-slide img {
  height: 52.2rem;
  object-fit: cover;
  width: 100%;
  border-radius: 1.2rem;
}

.section_blocks2 .parallax_area {
  border-radius: 1.2rem;
  overflow: hidden;
}

.section_blocks2 {
  display: grid;
  gap: 9.3rem;
  align-items: center;
  padding: 4rem 7.5rem 4rem;
}

.section_blocks2.v1 {
  grid-template-columns: 0fr 1fr;
}

.section_blocks2.v1 .section_block_content {
  width: 59rem;
}

.section_blocks2 .section_block_content .button {
  width: 26.1rem;
}

.section_blocks2.v2 {
  grid-template-columns: 1fr 0fr;
}

.section_blocks2.v2 .section_block_content {
  max-width: 51.1rem;
}

.section_blocks2 {
  width: fit-content;
  margin: 0 auto;
}

.section_blocks2.v2 .slider_arrows,
.section_blocks2.v2 .swiper-pagination {
  display: none;
}

/* ======================= Benifit of tobik area ======================= */
.benifit_tubik_area .container {
  position: relative;
}

.bt_point img {
  width: 6rem;
}

.bt_point {
  display: grid;
  grid-template-columns: 0fr 1fr;
  align-items: center;
  gap: 1.1rem;
}

.benifit_tubik_points {
  display: grid;
  grid-template-columns: 0fr 0fr 0fr;
  width: fit-content;
  margin: 0 auto;
  gap: 4.5rem 5rem;
}

.bt_point_info {
  width: 24.2rem;
}

.section_top .text_2xsm {
  letter-spacing: 0.3em;
  padding-bottom: 0.3rem;
}

.logos_spark {
  position: absolute;
  width: 6.4rem;
  right: 11rem;
  top: 0rem;
  animation: bounceSpark 3.5s ease-in-out infinite;
}

@keyframes bounceSpark {
  0%,
  100% {
    transform: translate(0);
  }
  50% {
    transform: translate(-2rem, 0);
  }
}

.bt_point_info p.f_700 {
  font-size: 1.8rem;
  line-height: 1;
}

/* ================ therapy_packages ==================== */
.therapy_packages .section_top p {
  padding-bottom: 1rem;
  display: none;
}

.therapy_packages .swiper-slide {
  width: 38.4rem;
}

.tp_img img {
  height: 25.9rem;
  object-fit: cover;
  border-radius: 1.2rem;
}

.thera_package {
  padding: 1.5rem;
  background: #fafafa;
  border-radius: 1.2rem;
  box-shadow: 0 0 1.05rem 0 #00000040;
  transition: 0.25s ease;
}

.thera_package:hover {
  box-shadow: 0 0 3rem 0.3rem #00000040;
}

.tp_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tp_bottom .button {
  width: fit-content;
  padding: 0 3rem;
}

.tp_bottom p {
  color: #5c5555;
  font-size: 2.1rem;
}

.tp_bottom p span {
  font-size: 1.6rem;
}

.tags.v2 {
  justify-content: flex-start;
}

.tags.v2 a {
  background: #dce0e1;
  color: #304753;
}

.tags.v2 a:hover {
  background: #304753;
  color: #fff;
}

.tp_info .title_23 {
  font-weight: 300;
}

.thera_packages_slider {
  overflow: visible;
}

.tp_img {
  display: flex;
}

.content .text_2xsm {
  letter-spacing: 0.3em;
}

/* ================ whatsapp_icon ================ */
.whatsapp_icon img {
  width: 6rem;
}

.whatsapp_icon {
  position: fixed;
  right: 2.5rem;
  bottom: 3.5rem;
  display: block;
  z-index: 9999;
}

/* ================== tags_sm ================== */
.tags_sm {
  display: none;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
  align-items: center;
}

.tags_sm_select {
  position: relative;
}

.tags_sm_select_down {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 8rem;
}

.tags_sm_select_btn {
  cursor: pointer;
  margin: 0 1.5rem;
}

.tags_sm_select_down ul {
  display: grid;
  gap: 0.9rem;
}

.d_block {
  display: block !important;
}

.d_lg_block {
  display: block !important;
}

.d_lg_none {
  display: none !important;
}

.d_sm_block {
  display: none !important;
}

.d_md_none {
  display: none !important;
}

.d_md_block {
  display: block !important;
}

.d_md_flex {
  display: flex !important;
}

/* =================== Mixitup area ======================== */
.mixitup_container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}

.mixitup_btn {
  height: 4rem;
  width: 11.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.1rem solid #304753;
  border-radius: 10rem;
  transition: 0.35s ease;
  cursor: pointer;
  gap: 0.8rem;
}

.mixitup_btn img {
  display: none;
}

.mixitup_btn.mixitup-control-active img {
  display: block;
}

.mixitup_btn:hover,
.mixitup_btn.mixitup-control-active {
  background: #304753;
  color: #fff;
}

.mixitup_nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mixitup_nav_wrap {
  display: flex;
  align-items: center;
}

.thera_package.v2 {
  width: 100%;
  height: 53rem;
  position: relative;
}

.tags.v3 {
  flex-wrap: wrap;
  gap: 0.9rem 0.6rem;
  justify-content: flex-start;
}

.tags.v3 a {
  background: #dce0e1;
  color: #304753;
  white-space: pre;
  width: fit-content;
  padding: 0 0.6rem;
  font-size: 1.15rem;
  align-items: center;
  display: flex;
  justify-content: center;
  padding-bottom: 0;
}

.tags.v3 a:hover,
.tags.v3 a.active {
  color: #86949a;
}

.therapy_packages_area .mixitup_container,
.therapy_packages_area .mixitup_nav_wrap {
  padding: 0 5rem;
}

.thera_package.v2 .tp_info {
  padding-right: 2rem;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  right: 3.5rem;
  position: absolute;
  bottom: 2.4rem;
  font-size: 2.1rem;
}

.price p {
  color: #5c5555;
}

.price.discount_price p {
  color: #304753;
}

.price .discount {
  text-decoration: line-through;
}

.thera_package.v2 .desc p {
  line-height: 1.1;
}

.tag_last {
  margin-right: 26.1rem;
}

/* ================ Package modal ================= */
.package_modal .tp_infov2_bottom {
  display: flex;
  flex-direction: column-reverse;
}

.package_modal .tp_infov2_bottom .price {
  position: relative;
  right: 0;
  bottom: 10px;
}

.package_modal .tp_infov2_bottom .button {
  width: fit-content;
  padding: 0 2rem;
  margin-right: auto;
}

.package_modal_content .tags.v3 {
  gap: 1.4rem 0.7rem;
  padding-left: 16rem;
}

.package_modal .modal_content {
  min-width: 52.1rem;
  padding: 2.1rem 5.8rem 2.3rem 1.8rem;
  border-radius: 1.5rem;
}

.package_modal .modal_close {
  left: 1.5rem;
  right: auto;
}

.package_modal_content .desc {
  max-width: 40.6rem;
  padding: 1.4rem 0 1.8rem;
}

/* ======================== Sub category ============================ */
.subcategory_area {
  padding-bottom: 12rem;
  padding-top: 5rem;
}

.subcategory_area.v2 {
  padding-top: 3.5rem;
}

.subcategory > img {
  width: 55rem;
  height: 40.5rem;
  object-fit: cover;
  border-radius: 1.8rem;
}

.subcategory {
  display: flex;
  gap: 4.3rem;
  padding: 5.1rem 8.7rem 5.8rem 5rem;
  border-top: 0.1rem solid #d6dadd;
  transition: 0.25s ease;
}

.subcategory_info_top .price {
  position: sticky;
  right: 0;
  top: 0;
  flex-direction: column;
  align-items: normal;
}

.subcategory_info_top .price p {
  gap: 0.5rem;
  display: flex;
  font-size: 2.1rem;
}

.subcategory_info_top .price p span {
  font-size: 1.6rem;
}

.subcategory_info {
  display: grid;
  align-content: space-between;
  padding-top: 1.2rem;
}

.subcategory_info_top {
  max-width: 34.7rem;
  padding-right: 1.7rem;
}

.subcategory_list {
  max-width: 118.6rem;
  margin: 0 auto;
}

.subcategory_info .button {
  width: 34.6rem;
  height: 6.3rem;
}

.subcategory:hover {
  background: #f1f1f1;
}

.subcategory_info_top h2 {
  font-weight: 400;
}

.subcategory_info.v2 {
  align-content: center;
}

/* ================= Sync slider ================== */
.single_slider {
  width: 77.8rem;
}

.swiper.mySwiper2 .swiper-slide img {
  height: 40.7rem;
  object-fit: cover;
  border-radius: 1.2rem;
}

.swiper.mySwiper2 {
  overflow: hidden;
  border-radius: 1.2rem;
  margin-bottom: 2rem;
}

.sync_slider_arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  justify-content: space-between;
}

.swiper.mySwiper .swiper-slide img {
  height: 12.9rem;
  object-fit: cover;
  opacity: 0.4;
  transition: 0.25s;
}

.swiper.mySwiper .swiper-slide {
  border-radius: 1.1rem;
  overflow: hidden;
  cursor: pointer;
  display: flex;
}

.swiper.mySwiper .swiper-slide.swiper-slide-thumb-active img {
  opacity: 1;
}

.slider_sync_main {
  display: block;
  position: relative;
}

.slider_arrow_middle_black {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: calc(100% + 10rem);
  left: 50%;
}

.slider_arrow_middle_black img {
  filter: var(--black_img) !important;
}

.position_relative {
  position: relative !important;
}

.single_slider_Wrap {
  display: grid;
  grid-template-columns: 0fr 1fr;
  gap: 7.5rem;
  padding: 5.2rem 3.5rem 2.5rem 0;
}

.single_slider_details {
  width: 39.7rem;
}

.blue_tik_point {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #4999cb;
}

.single_slider_details_bottom {
  padding-top: 1.7rem;
}

.ssdb_top .price {
  top: 0;
  justify-content: center;
  right: 0;
  padding-bottom: 1.2rem;
  gap: 3rem;
}

.ssdb_top {
  align-content: center;
}

.ssdb_top .button {
  margin: 0 auto;
}

.ssdb_top .price p {
  font-size: 1.4rem;
}

.ssdb_top .price h4 {
  font-weight: 400;
}

.ssdb_top p {
  color: #5c5555;
  text-align: center;
}

.ssdb_top > p {
  padding-top: 1.5rem;
}

.text_dark {
  color: #5c5555 !important;
}

.text_black2 {
  color: #040303 !important;
}

.ssdb_top .mb_10 {
  margin-bottom: 1rem;
}

/* ======================= treatment_package_area =========================== */
.video_box.v2.sm {
  position: relative;
  width: 22.5rem;
  height: 20.6rem;
  border-radius: 1.2rem;
  overflow: hidden;
}

.video_box.v2.sm .video_actions {
  bottom: 0.9rem;
  left: 1.2rem;
}

.video_box.v2.sm .video_actions .play_and_pause_toggle {
  display: flex;
}

.video_box.v2.sm .video_actions .play_and_pause_toggle img {
  width: 2rem;
}

.treatment_package {
  display: grid;
  grid-template-columns: 0fr 1fr;
  align-items: center;
  padding: 1.8rem 2rem 1.8rem 4rem;
  background: #eff1f2;
  border-radius: 1.2rem;
  gap: 3rem;
  transition: 0.15s ease;
}

.treatment_package:hover {
  box-shadow: 0.5rem 0.5rem 2rem 0.1rem rgba(0, 0, 0, 0.2);
  transform: scale(1.005);
}

.treatment_packages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem 4.6rem;
}

.treatment_package_info .desc {
  padding: 1.5rem 0 3rem;
}

.play_and_pause_toggle img {
  width: 2.4rem;
}

/* ===================== Brands logo ====================== */
.brand_logo1 {
  width: 19.2rem;
}

.brands_area .swiper-slide a {
  display: block;
}

.brands_slider .swiper-slide {
  width: fit-content;
}

.brand_logo2 {
  width: 19.3rem;
}

.brand_logo3 {
  width: 22.7rem;
}

.brand_logo4 {
  width: 28.7rem;
}

/* ====================== expHover_area.v2 ======================= */
.expHover_area.v3 .expHover_nav {
  position: relative;
  display: flex;
}

.expHover_area.v3 .expHover_nav_top_icon {
  width: auto;
  height: auto;
  border: none;
  justify-content: flex-start;
}

.expHover_area.v3 .expHover_nav_top_icon img {
  width: 1.5rem;
}

.expHover_area.v3 .expHover_nav_top p {
  position: relative;
  right: 0;
  left: 0;
  transform: translate(0, 0);
  margin: 0;
  padding: 0;
}

.expHover_area.v3 .expHover_nav_top {
  display: grid;
  align-items: self-start;
  gap: 1.8rem;
  grid-template-columns: 1rem 1fr;
}

.expHover_area.v3 .expHover_nav_list {
  display: grid;
  gap: 2rem;
  transform: translateX(0);
}

.expHover_area.v3 .expHover_content img {
  width: 50.7rem;
  height: 37.4rem;
  object-fit: cover;
  border-radius: 1.2rem;
  max-width: max-content;
}

.expHover_area.v3 .expHover_contents_list {
  padding-right: 0;
  grid-column: 1;
  grid-row: 1;
}

.expHover_area.v3 .expHover_contents_list:before {
  display: none;
}

.expHover_area.v3 .exphover_nav_wrapper {
  margin-left: 0;
  width: 30rem;
  display: block;
  grid-column: 2;
  height: auto;
  padding-top: 2rem;
}

.expHover_area.v3 .expHover_function {
  gap: 5rem;
  align-items: flex-start;
  margin: 0;
  margin-right: 8rem;
}

.expHover_area.v3 .expHover_nav_top_icon .exh_icon_v2 {
  display: block;
}

.expHover_area.v3 .exp2_icon2 {
  width: 1.2rem !important;
}

.expHover_area.v3 .expHover_content_info {
  display: none;
}

/* ================== Gallery area =================== */
.gallery_area {
  padding-bottom: 17.6rem;
}

.section_top.text_center .button {
  margin: 0 auto;
}

.gallery_area .section_top {
  margin-right: 8.5rem;
  margin-left: 8.5rem;
  border-bottom: 0.1rem solid #d6dadd;
}

.gallery_area .section_top .button {
  width: fit-content;
  padding: 0 2.5rem;
}

.gallery_col.v1 {
  display: grid;
  grid-template-columns: 49.9% 1fr 1fr;
  gap: 0.3rem;
}
.gallery_col img {
  height: 42.7rem;
  border-radius: 1.2rem;
}

.gallery_row {
  display: grid;
  gap: 0.3rem;
}

.gallery_col.v2 {
  display: grid;
  grid-template-columns: 1fr 1fr 49.9%;
  gap: 0.3rem;
}

.gallery_row .accordion_item {
  margin: 0;
  padding: 0;
  border: none;
}

.gallery_row .accordion_item .accordion_button {
  display: flex;
  margin: 0 auto;
  margin-top: 11.5rem;
}

.gallery_row .accordion_item .accordion_button img {
  transform: rotate(0deg) !important;
}

/* ===================== about_area ======================== */
.about_area .section_top {
  margin-left: 8.5rem;
  margin-right: 8.5rem;
  border-bottom: 0.1rem solid #d6dadd;
}

.about_slider_area {
  padding: 9rem 0 17.5rem;
}

.about_slide img {
  height: 31.8rem;
  border-radius: 1.2rem;
  object-fit: cover;
}

.about_info h5 {
  line-height: 1.2;
}

.about_slider_wrapper {
  position: relative;
  max-width: 106rem;
  margin: 0 auto;
}

.about_slider_wrapper .sync_slider_arrows img {
  filter: var(--black_img) !important;
}

.about_slider_wrapper .sync_slider_arrows {
  width: 110%;
  transform: translate(-50%, -50%);
  left: 50%;
}

.about_slider_area .section_top .slider_arrows,
.about_slider_area .swiper-scrollbar {
  display: none;
}

/* ================= review_images_page ================== */
.review_images_page {
  padding-bottom: 27rem;
}

.position_realtive {
  position: relative !important;
}

/* =================== Blog page ====================== */
.video_area.v3 .video_box video {
  height: 54.1rem;
}

.video_area.v3 .video_box {
  margin: 0 auto;
  border-radius: 1.2rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.blog_video_wrapper {
  width: 109rem;
  margin: 0 auto;
  position: relative;
}

.video_area.v3 .video_content {
  position: absolute;
  bottom: 4.7rem;
  left: 0;
  width: 100%;
  z-index: 1;
}

.video_area.v3 .video_content .button {
  margin: 0 auto;
}

.video_area.v3 .video_content .desc {
  padding: 1.6rem 0 2.1rem;
}

.video_area.v3 .video_box:before {
  content: "";
  width: 100%;
  position: absolute;
  height: 25rem;
  left: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(174.21deg, rgba(0, 0, 0, 0) 3.61%, #000000 90.6%);
}

.video_area.v3 .video_actions {
  bottom: 2rem;
  left: 2rem;
}

.video_area.v3 .video_content h2 {
  font-size: 2.1rem;
}

.video_area.v3 .video_content .desc p {
  font-size: 1.5rem;
  max-width: 29.8rem;
  margin: 0 auto;
}

/* ==================== Blog page ======================= */
.blog_area.v2 .swiper-scrollbar {
  display: block;
}

.blog_area.v2 {
  padding: 0;
  padding-bottom: 7rem;
}

.blog_page_sections {
  padding-bottom: 5.5rem;
  padding-top: 9rem;
  border-top: 0.1rem solid #d6dadd;
}

.video_area.v3 {
  padding: 8.5rem 0;
}

/* ========================== subcategory_area3 ========================== */
.subcategory_area3 .subcategory_info_top {
  max-width: 48.9rem;
}

/* ========================== thank_you_area ========================== */
.thank_you_area {
  padding: 13.6rem 0 11.7rem;
}

.check3_icon {
  width: 5.2rem;
}

.thank_u_img {
  max-width: 59.5rem;
  margin: 5.6rem 0 7rem;
}

.th_content h5 {
  font-weight: 400;
  padding: 1.2rem 0 1.4rem;
}

.th_content a {
  display: block;
  color: #97a3a9;
}

.th_content > p,
.th_content .desc p {
  color: #97a3a9;
}

.th_content .desc p {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}

/* ====================== error_page ====================== */
.error_page img {
  width: 27.3rem;
}

.error_page h1 {
  font-size: 8.9rem;
  font-weight: 400;
}

.error_page p {
  font-size: 2.3rem;
}

.error_page {
  padding: 18.8rem 0 31.7rem;
}

/* ================= policy_area =================== */
.policy_area {
  padding: 8.5rem 0 44.4rem;
}

.policy_area .desc {
  max-width: 88.4rem;
}

/* ================= Blog_section =================== */
.Blog_section_content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 109rem;
  margin: 0 auto;
  gap: 1.6rem;
}

.Blog_section .section_top {
  width: 109rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2.7rem;
}

.Blog_section .section_top h5 {
  font-weight: 400;
}

.Blog_section .section_top a {
  color: #6e7e87;
}

.Blog_section {
  padding: 12rem 0 17rem;
  border-top: 0.1rem solid #30475333;
}

/* ======================== article_area =================== */
.article_right {
  width: 76.2rem;
}

.article_content {
  display: grid;
  grid-template-columns: 0fr 0fr;
  justify-content: flex-end;
  gap: 8.5rem;
}

.article_left .spa_package {
  position: sticky;
  top: 11rem;
  left: 0;
  transform: translateX(0);
}

.single_article_page,
.single_article_page main {
  overflow: visible;
}

.single_aricle_top .section_top {
  width: 109rem;
  margin: 0 auto;
}

.single_aricle_top {
  border-bottom: 0.1rem solid #30475333;
}

.article_text_block.v1 ul {
  list-style: disc;
  padding-right: 2.5rem;
  display: grid;
  gap: 1rem;
  padding-top: 3rem;
}

.article_text_block.v1 {
  padding-bottom: 8rem;
}

.article_area {
  padding: 6.5rem 0 16rem;
}

.article_text_block.v2 {
  padding: 5.5rem 0 7rem;
}

.article_text_block h5 {
  padding-bottom: 0.5rem;
}

.article_text_block.v3 {
  padding: 6rem 0 6rem;
}

.article_text_block.v4,
.article_text_block.v5,
.article_text_block.v6 {
  padding-bottom: 6rem;
}

.single_aricle_top .section_top p {
  color: #97a3a9;
}

/* ======================= comming_home_area ======================= */
.video_block_wrapper .video2_box {
  max-width: 31.594rem;
  height: 53.135rem;
  margin: 0;
}

.video_block_wrapper {
  display: flex;
  gap: 5.5rem;
  padding-right: 13rem;
}

.video_block_content .desc {
  max-width: 42rem;
}

.video_block_content {
  padding-top: 3rem;
}

.video_block_wrapper.v2 .desc {
  max-width: 42rem;
}

.video_block_wrapper.v2 {
  gap: 14.7rem;
  align-items: center;
}

.video_block_wrapper .desc p {
  line-height: 1.14;
}

.video_block_wrapper.v2 .video_block_content {
  padding: 0;
}

.section_block_content .content .desc p {
  line-height: 1.14;
}

.video_block_slider {
  display: none;
}

/* ====================== singlecourse_area ====================== */
.gray_tab {
  width: 11.3rem;
  height: 3.2rem;
  display: flex;
  background: #d6dadd;
  border-radius: 0.7rem;
  cursor: pointer;
}

.gray_tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.singlecourse_area .slider_arrows {
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 113%;
}

.singlecourse_area .parallax_area {
  position: relative;
}

.singlecourse_area .slider_arrows img {
  filter: var(--black_img) !important;
}

.singlecourse_area .section_block_img {
  overflow: visible;
}

.singlecourse_area .parallax_slider {
  border-radius: 1.2rem;
  overflow: hidden;
}

/* ================ courses_area ==================== */
.courses_area {
  border-top: 0.1rem solid #d6dadd;
  border-bottom: 0.1rem solid #d6dadd;
}

.course_right ul li {
  display: grid;
  grid-template-columns: 0fr 1fr;
  gap: 1.5rem;
}

.course_right ul {
  display: grid;
  gap: 1.7rem;
}

.course_right .desc {
  width: 61rem;
}

.course_content {
  display: flex;
  justify-content: space-between;
}

.course_info .row .form_group {
  width: 100%;
}

.course_box {
  max-width: 35.2rem;
  border-radius: 1.2rem;
  box-shadow: var(--shadow);
  transition: 0.35s ease;
}

.course_info {
  padding: 2.1rem 5rem 3.3rem 5rem;
  text-align: center;
}

.course_info .button {
  width: 100%;
}

.course_box:hover {
  box-shadow: 0 0 2rem 0.1rem rgba(0, 0, 0, 0.2);
}

.course_box img {
  border-radius: 1.2rem 1.2rem 0 0;
}

/* ================ course_tabs =============== */

.course_tabs {
  padding: 7.7rem 0 11rem;
}

.course_tab_right {
  width: 21.8rem;
  height: 38.3rem;
  padding: 2rem 2.7rem 2rem 2.7rem;
  border-radius: 2rem;
  border: 0.1rem solid #d6dadd;
}

.course_tab_nav {
  display: flex;
  height: 3rem;
  width: 100%;
  gap: 1.2em;
  align-items: center;
  color: #fff;
  border-radius: 0.7rem;
  padding: 0 1.3rem;
  color: #304753;
  cursor: pointer;
}

.course_tab_right .tab_navs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.course_tab_nav img {
  filter: brightness(0) saturate(100%) invert(84%) sepia(6%) saturate(314%)
    hue-rotate(157deg) brightness(87%) contrast(85%);
}

.tab_nav.active .course_tab_nav {
  background: #304753;
  color: #fff;
}

.course_tab_right .section_top {
  text-align: center;
  border-bottom: 0.1rem solid #d6dadd;
  width: calc(100% - 1rem);
  margin: 0 auto;
}

.tab_nav.active .course_tab_nav img {
  filter: var(--white_img);
}

.tab_wrapper {
  display: grid;
  grid-template-columns: 0fr 1fr;
  gap: 5rem;
  max-width: 88rem;
  margin: 0 auto;
}

.tab_content .content img {
  width: 37rem;
  height: 20rem;
  border-radius: 0.65rem;
}

/* ====================== course_contact ========================= */
.course_contact {
  padding-bottom: 14rem;
}

.course_contact .contact_form {
  max-width: 52rem;
}

.course_contact .contact_form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem 1.6rem;
}

.course_contact .contact_form .row > div {
  width: 100%;
}

.contact_top_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact_top_wrap_left .contact_content .section_top {
  text-align: justify;
}

.contact_top_wrap_left .contact_content .button {
  margin: 0;
}

.contact_top_wrap_left .contact_content .contact_form {
  max-width: 100%;
}

.contact_content_wrap {
  max-width: 108.3rem;
  margin-right: 6.5rem;
}

.contact_links a {
  display: grid;
  grid-template-columns: 0fr 1fr;
  gap: 1rem;
}

.contact_links {
  display: grid;
  gap: 2rem;
}

.contact_page .footer_map {
  padding: 0;
}

.contact_page .footer_map iframe {
  height: 32.8rem;
  border-radius: 3rem;
}

.contact_page {
  padding: 4rem 0 16rem;
}

/* ================== faq_accordion ================== */

.faq_accordion {
  width: 42.1rem;
  position: relative;
}

.faq_accordion_body .faq_img {
  margin-top: 2.5rem;
  border-radius: 1.2rem;
  overflow: hidden;
  position: absolute;
  left: -62.4rem;
  top: 0;
  opacity: 0;
}

.faq_accordion_body {
  padding-top: 1.5rem;
  border-top: 0.1rem solid #b9b9b9;
  padding-bottom: 3rem;
  margin-top: 0.8rem;
  padding-right: 4.3rem;
}

.faq_accordion_item {
  padding-bottom: 1.2rem;
  margin-bottom: 3.5rem;
}

.faq_accordion_body .faq_img img {
  width: 48.4rem;
  height: 38.4rem;
  object-fit: cover;
}

.accordion_collapse:not(.collapse) .faq_img {
  opacity: 1;
  transition-delay: 0.2s;
}

.faq_accordion_body ul li {
  line-height: 1.2;
  color: #596c75;
}

.faq_area .faq_accordion,
.faq_area .section_top {
  padding-right: 10rem;
}

.course_tab_right .sectop_top {
  border-bottom: 0.1rem solid #3047532e;
  text-align: center;
}

/* =============== video_area v2================= */
.video_area.v2 {
  position: relative;
}

.video_area.v2:after {
  content: "";
  width: 100%;
  position: absolute;
  height: 35.8rem;
  background: linear-gradient(
    178deg,
    rgba(255, 255, 255, 0) 40.73%,
    #ffffff 98.4%
  );
  left: 0;
  bottom: 0;
  z-index: 1;
}

/* =================== New update codes =================== */
.modal_toggle {
  cursor: pointer;
}

p.modal_toggle:hover {
  opacity: 0.75;
  display: block;
}

/* ============= text_contents ============== */
.info_modal .modal_content {
  border-radius: 1.5rem;
  padding: 1.9rem 5.7rem 3.5rem;
}

.text_contents {
  max-width: 40rem;
}

.text_contents p {
  font-size: 1.6rem;
  line-height: 1.3;
}

.close_left {
  left: 1rem;
  top: 1rem;
  right: auto;
}

.close_left img {
  width: 2.4rem;
}

.text_contents h4 {
  line-height: 1.5;
}

.text_contents > * {
  color: #5c5555;
}

/* ======================= Step area ======================= */
.step_area {
  padding: 6.5rem 0 8.7rem;
  overflow: hidden;
}

.tooltip_text {
  width: 46.3rem;
  padding: 0.8rem;
  border-radius: 0.7rem;
  background: #fff;
  box-shadow: 0 0 1.5rem 0 #00000059;
  font-weight: 400;
  font-size: 1.4rem;
  position: absolute;
  opacity: 0;
  color: #5c5555;
  transition: 0.25s ease;
  left: 50%;
  transform: translateX(-50%);
  top: 3.5rem;
  pointer-events: none;
}

.step_tooltip {
  position: relative;
  cursor: pointer;
}

.step_tooltip:hover .tooltip_text {
  opacity: 1;
  pointer-events: all;
}

.step {
  position: relative;
  text-align: center;
}

.step_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 53rem;
  margin: 0 auto;
}

.step_number {
  width: 3.1rem;
  height: 3.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ebebeb;
  color: #fff;
  border-radius: 10rem;
  margin: 0 auto;
  font-size: 1.3rem;
}

.step_active .step_number {
  background: #304753;
}

.step_number span {
  line-height: 1;
}

.step_tooltip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-top: 1rem;
  color: #5c5555;
}

.step_number_wrap {
  width: fit-content;
  margin: 0 auto;
  position: relative;
}

.step_line {
  background: #ebebeb;
  display: block;
  height: 0.9rem;
  width: 100vw;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  z-index: -1;
}

.step1 .step_line {
  left: 0;
}

.step2 .step_line {
  left: 0;
  z-index: -2;
}

.step2.step_active .step_line,
.step1.step_active .step_line,
.step3.step_active .step_line:not(.step_line2),
.last_step .step_line2 {
  background: #304753;
}

.step3 .step_line {
  opacity: 1;
  left: 0;
  z-index: -3;
}

.step_line2 {
  right: 0.5rem;
}

/* ============ openstate_content ===========  */
.text_area_with_options {
  position: relative;
}

.text_area_with_options textarea {
  height: 13.9rem;
  padding-bottom: 3.5rem;
}

.ai {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: #2565c5;
  font-size: 1.4rem;
  position: absolute;
  right: 1.9rem;
  bottom: 1rem;
  cursor: pointer;
  transition: 0.25s;
}

.count_chars {
  color: #b9b9b9;
  font-size: 1.2rem;
  position: absolute;
  left: 1.2rem;
  bottom: 0.6rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 0.2rem;
}

.ai:hover {
  opacity: 0.75;
}

.openstate_content {
  max-width: 34.7rem;
}

.openstate_content > h5 {
  font-size: 2.3rem;
  font-weight: 400;
  padding-bottom: 1rem;
}

.openstate_form .row {
  padding-top: 0.8rem;
}

.openstate_form_wrap h4:not(.title_23) {
  font-weight: 700;
  font-size: 1.75rem;
  padding-top: 1.2rem;
}

.openstate_content > p {
  font-size: 1.6rem;
  line-height: 1.45;
}

.openstate_form .col_r .form_group {
  padding-left: 0.7rem;
}

.openstate_form .col_l .form_group {
  padding-right: 0.7rem;
}

.radio_dot {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
  border-radius: 10rem;
  border: 0.2rem solid #373737;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radio_dot span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 10rem;
  background: #fff;
}

.active.radio .radio_dot {
  background: #373737;
}

.radio {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #5c5555;
  font-weight: 400;
  font-size: 1.5rem;
}

.radios {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}

.form_bottom_area > p {
  font-size: 1.6rem;
  color: #5c5555;
  margin-bottom: 1.1rem;
}

.form_bottom_area .span2 {
  font-size: 2.1rem;
  margin-right: 0.35rem;
}

.form_bottom_area .button_info {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111111;
  font-size: 1.65rem;
  margin-top: 0.8rem;
  gap: 0.8rem;
  cursor: pointer;
}

.form_bottom_area .button {
  height: 6.3rem;
  width: 100%;
}

.openstate_content > p a {
  font-weight: 700;
}

/* ========= Voucher box ========== */
.voucher_box {
  position: relative;
  width: 100%;
  border-radius: 1.2rem;
  overflow: hidden;
  padding: 1.5rem 2.2rem 0.8rem 1.5rem;
  box-shadow: 0 0 1.2rem 0 rgba(0, 0, 0, 0.25);
}

.openstate_left {
  width: 72rem;
}

.voucher_top img {
  width: 11.2rem;
}

.voucher_top {
  display: flex;
  align-items: center;
  gap: 2.3rem;
  color: #040303;
}

.voucher_top h5 {
  font-weight: 400;
  font-size: 2.3rem;
}

.voucher_content p .f_700 {
  font-weight: 700;
}

.voucher_content > span {
  color: #b9b9b9;
  font-size: 1.2rem;
  font-weight: 700;
}

.voucher_content > p {
  line-height: 1.2;
}

.voucher_content {
  max-width: 43.8rem;
  position: relative;
  z-index: 1;
}

.voucher_img_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 37.7rem;
  height: 100%;
}

.voucher_bg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -12.4rem;
  height: 100%;
  width: 48.2rem;
}

.voucher_img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.openstate_area .container > .row {
  justify-content: space-between;
  align-items: flex-start;
  gap: 5rem;
}

/* ============= Voucher items ============== */
.voucher_bottom {
  display: grid;
  grid-template-columns: 0fr 1fr;
}

.voucher_bottom p {
  font-size: 1.77rem;
  color: #5c5555;
  line-height: 1.5;
  width: 14.5rem;
}

.voucher_bottom p .span1 {
  font-size: 2.3rem;
}

.voucher_items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.3rem;
}

.voucher_item_img img {
  width: 7.9rem;
  height: 7.7rem;
  object-fit: cover;
  border-radius: 0.7rem;
}

.voucher_item {
  display: flex;
  align-items: center;
  padding: 1rem;
  gap: 1.4rem;
  border-radius: 0.7rem;
  position: relative;
  border: 0.1rem solid #b9b9b9;
  overflow: hidden;
  cursor: pointer;
  transition: 0.25s;
}

.voucher_info p {
  font-size: 1.5rem;
  color: #5c5555;
  padding-bottom: 0.35rem;
}

.button_delete,
.button_add {
  width: 3rem;
  height: 3rem;
  background: #cf3636;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: 0.25s;
  position: absolute;
  left: 1.4rem;
  bottom: 1.4rem;
}

.button_delete:hover {
  background: #c26161;
}

.button_add {
  background: #304753;
}

.voucher_badge {
  background: #304753;
  height: 2rem;
  width: 7.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.7rem;
  position: absolute;
  left: -2rem;
  top: 0.6rem;
  transform: rotate(-45deg);
  font-weight: 200;
}

.voucher_more {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.voucher_more p {
  text-align: center;
  color: #5c5555;
}

.voucher_item:hover {
  background: #f1f1f1;
}

.p-0 {
  padding: 0 !important;
}

/* =============== voucher_popup ================ */
.modal_inner .voucher_bottom {
  grid-template-columns: 1fr;
}

.modal_inner .voucher_items {
  grid-template-columns: 1fr;
  gap: 1.7rem;
}

.voucher_popup .modal_content {
  padding: 1.5rem 2.6rem 3.8rem 2.6rem;
  min-width: 30.8rem;
  border-radius: 1.5rem;
  height: 87vh;
}

.voucher_popup2 .modal_content {
  overflow: auto;
}

.voucher_popup .modal_content::-webkit-scrollbar {
  scrollbar-width: 0;
  display: none;
}

.voucher_item {
  padding: 0.7rem;
}

.voucher_item_img {
  display: flex;
}

.modal_inner .voucher_bottom > p {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 1.1rem;
}

.modal_inner .voucher_bottom {
  padding-top: 0;
}

/* =================== Schedule area ====================== */
.sms_icon {
  width: 4.9rem;
}

.email_icon {
  width: 4.6rem;
}

.carbon_close {
  width: 3.1rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -2rem;
  z-index: 2;
  cursor: pointer;
  transition: 0.25s ease;
}

.carbon_close:hover {
  transform: scale(1.025) translateX(-50%);
}

.schedule_icon {
  width: 11.1rem;
  height: 9.7rem;
  background: #304753;
  border-radius: 0.7rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.3rem;
  padding-top: 1rem;
}

.schedule_icons {
  display: flex;
  gap: 1rem;
}

.schedule_icon p {
  font-size: 1.6rem;
}

.schedule_top .title_23 {
  color: #5c5555;
}

/* ==================== schedule_area ==================== */
.schedule_main_area {
  padding-bottom: 12rem;
}

.schedule_area {
  max-width: 40rem;
}

.schedule_area .row {
  gap: 1rem;
  padding-bottom: 4.4rem;
  border-bottom: 0.1rem solid #dfdfdf;
  margin-bottom: 3rem;
}

.schedule_area .radio_flex {
  display: flex;
}

.schedule_area .radios h5 {
  font-weight: 400;
}

.schedule_area .title_23 {
  font-weight: 400;
}

.schedule_area .date_selection_form {
  gap: 0;
}

.position-relative {
  position: relative !important;
}

/* ============== Calender ============ */
.calender_container {
  width: 26.7rem;
  border: 0.1rem solid #b9b9b9;
  border-radius: 0.7rem;
  position: absolute;
  z-index: 9999;
  background: #fff;
  transform: translateY(1rem);
  display: none;
}
.calender_arrow span {
  font-size: 3.5rem;
  font-family: monospace;
}
.calender_daynames,
.calender_dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.dayname {
  padding: 0;
  background: transparent;
  color: #79849a;
  font-size: 1.4rem;
}

.calender_daynames {
  padding: 0.8rem;
  border-top: 0.1rem solid #e1e4ea;
  border-bottom: 0.1rem solid #e1e4ea;
}

.day {
  padding: 0;
  background: transparent;
  color: #503836;
  font-size: 1.4rem;
  text-align: center;
  cursor: pointer;
  transition: 0.25s ease;
}

.prev_after_month_day {
  color: #dadbdd;
  font-size: 1.4rem;
  text-align: center;
}

.calender_dates {
  gap: 2rem 0;
  padding: 2.5rem 0 1.5rem;
}

.calender_month {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 0.6rem 0;
}

.calender_month button {
  cursor: pointer;
}

.calender_left {
  color: #ffa126;
}

.calender_right {
  color: #e1e4ea;
}

.calender_arrow {
  line-height: 1;
  line-height: 2rem;
}

.month {
  font-size: 1.4rem;
  color: #262b36;
  font-weight: 300;
}

.day:hover,
.day.selected {
  color: #ffa234;
}

/* ==================== payment_area ===================== */
.payment_top hr {
  margin: 4.5rem 0;
  border: none;
  border-bottom: 0.1rem solid #dfdfdf;
  background: #dfdfdf;
}

.payment_area {
  width: 36.5rem;
}

.payment_accordion .accordion_button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1rem;
  background: #f6f7f8;
  border-radius: 0.8rem 0.8rem 0 0;
  transition-delay: 0.15s;
}

.payment_accordion .accordion_right {
  display: flex;
  gap: 1.2rem;
}

.payment_bottom_logos {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: center;
}

.payment_bottom_logos a .playplus {
  width: 12rem;
}

.payment_bottom_logos a .globe {
  width: 2.4rem;
}

.payment_bottom_logos a {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 0.6rem;
  color: #aca5af;
  font-weight: 400;
  padding: 0 1.2rem;
}

.payment_bottom_logos a:last-child {
  border-left: 0.1rem solid #e3e6e9;
}

.button_yellow {
  width: 100%;
  background: #34aa53;
  border-radius: 0.6rem;
  color: #fff;
  height: 3.8rem;
  font-size: 1.4rem;
  margin: 1.6rem 0 1.2rem;
  transition: 0.25s;
}

.button_yellow:hover {
  background: #23b349;
}

.payment_bottom > p {
  font-size: 1.6rem;
  color: #290000;
}

.bag_search_icon {
  width: 2rem;
}

.payment_accordion > p {
  font-size: 1.6rem;
  color: #290000;
  padding-bottom: 1.4rem;
}

.payment_form .form_group label {
  font-size: 1.6rem;
  color: #1d1d1d;
  padding-bottom: 1rem;
  display: block;
}

.payment_accordion .nice-select {
  width: 100%;
  display: flex;
  padding: 0 1.5rem;
  height: 4rem;
}

.payment_form_mid .col-6 {
  width: 50%;
}

.payment_form_mid .row {
  flex-wrap: wrap;
}

.payment_form_mid .col-3 {
  width: 25%;
}

.payment_form_mid .form_control,
.payment_form_mid .form_control::placeholder {
  border-radius: 0;
  font-size: 1.4rem;
}

.payment_form_mid .col-12 .form_control {
  border-top-right-radius: 0.8rem;
  border-top-left-radius: 0.8rem;
  border-bottom: 0;
}

.payment_form_mid .nice-select .option {
  font-size: 1.2rem;
  text-align: right;
  padding: 0 1.5rem;
  min-height: 3rem;
  line-height: 3rem;
  display: flex;
  align-items: center;
}

.payment_form_mid .form_control::placeholder {
  font-size: 1.4rem;
}

.payment_form_mid .current {
  font-size: 1.2rem;
  color: #a6a6a6;
}

.payment_form {
  padding: 2rem 1.4rem;
  border-top: 0.1rem solid #d9d9d9;
}

.payment_accordion .accordion_item {
  border-radius: 0.8rem;
  border: 0.1rem solid #d9d9d9;
  padding-bottom: 0;
}

.payment_accordion .accordion_button.collapsed {
  border-radius: 0.8rem 0.8rem 0.8rem 0.8rem;
}

.payment_accordion .accordion_button:not(.collapsed) .accordion_right img {
  transform: rotate(0deg);
}

.payment_form_mid .form_control:focus {
  border-color: #b9b9b9;
}

.payment_form .form_control:focus {
  border-color: #b9b9b9;
}


.payment_form .form_control,
.payment_form .form_control::placeholder {
  font-size: 1.4rem;
}

.payment_form_mid .form_control {
  height: 4rem;
}

.payment_form_mid .col-6 .form_control {
  border-bottom-left-radius: 0.8rem;
}

.payment_form_mid .col-3:nth-child(2) .form_control {
  border-bottom-right-radius: 0.8rem;
}

.payment_form_mid .form_control:focus {
  border-color: #b9b9b9;
}

.payment_form .form_control:focus {
  border-color: #b9b9b9;
}

.payment_form .form_control,
.payment_form .form_control::placeholder {
  font-size: 1.4rem;
}

.payment_form_mid .form_control {
  height: 4rem;
}

.payment_form_mid .col-6 .form_control {
  border-bottom-left-radius: 0.8rem;
}

.payment_form_mid .col-3:nth-child(2) .form_control {
  border-bottom-right-radius: 0.8rem;
}

hr {
  border: none;
  border-bottom: 0.1rem solid #dfdfdf;
}

.payment_bottom .title_21 {
  font-size: 2.1rem;
  color: #5c5555;
  line-height: 1.5;
}

.cntct_links img {
  width: 3.5rem;
}

.cntct_links a {
  display: flex;
  align-items: center;
  color: #909090;
  gap: 1rem;
}

.cntct_links {
  display: grid;
  gap: 1rem;
}

.payment_bottom p.mt_35 {
  color: #464545;
  width: 50.8rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4;
}

.payment_main_area {
  padding: 0 0 12rem;
}

.mx-auto {
  margin: 0 auto !important;
}

/* =============== Thankyou2 =============== */
.Thankyou2_area {
  padding: 4rem 0 15rem;
}

.thankyou_bottom .cntct_links {
  grid-template-columns: 0fr 0fr;
  white-space: nowrap;
  gap: 6rem;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

.check_icon {
  width: 5rem;
}

.thankyou2_left > h5,
.thankyou2_left > p {
  color: #5c5555;
}

.thankyou_bottom .button {
  height: 5.2rem;
  width: 36.9rem;
  margin-left: auto;
  margin-right: auto;
}

.thankyou_bottom .button_darkblue:hover {
  box-shadow: 0.5rem 0.5rem 1.5rem 0.2rem rgba(0, 0, 0, 0.2);
}

.thankyou_bottom .button_darkblue_transparent:hover img {
  filter: var(--white_img);
}

.text_grey_70 {
  color: #5c5555 !important;
  opacity: 0.7;
}

.text_grey {
  color: #5c5555 !important;
}
