@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@font-face {
    font-family: 'Edensor';
    font-style: normal;
    src: local('Edensor'), url('fonts/Edensor-Free.woff') format('woff');
}
a {
  text-decoration: none !important;
}
*{
	line-height: normal;
	list-style: none;
	box-sizing: border-box;
  font-family: "Lato", sans-serif;
}
:root{
  --white:#fff;
  --black:#000;
  --primary:#f5e9d5;
  --secondary:#c6868f;
}
body{
	font-size: 13px;
  font-family: "Lato", sans-serif;
  overflow-x: hidden;
	background: #f5e9d5;
}
input:focus,
button:focus,
textarea:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline: none !important;
}
div{
  outline: none !important;
}
.jcen{
  justify-content: center;
}
ul,ol{
  margin: 0;
  padding: 0;
}
.jbet{
  justify-content: space-between;
}
.jend{
  justify-content: end;
}
.flex{
  display: flex;
}
.fc{
  flex-direction: column;
}
.ac{
  align-items: center;
}
.wrap{
  flex-wrap: wrap;
}
.g5{
  gap: 5px;
}
.g10{
  gap:10px;
}
.g15{
  gap: 15px;
}
.g20{
  gap: 20px;
}
.g30{
  gap: 30px;
}
.g40{
  gap: 40px;
}
.g50{
  gap: 50px;
}
.padd{
  padding: 100px 0;
}
.padd2{
  padding: 50px 0;
}
.padd3{
  padding: 150px 0;
}
header{
  position: relative;
  z-index: 10;
}
.menubar{
  padding: 30px 50px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}
.mainmenu{
  display: flex;
  gap: 100px;
  align-items: center;
}
.mainmenu nav ul{
  display: flex;
  gap: 60px;
  align-items: center;
}
.mainmenu nav ul li{
  position: relative;
}
.mainmenu nav ul li a{
  color: var(--secondary);
  font-weight: bold;
  text-transform: uppercase;
  transition: 0.4s all;
  position: relative;
}
.mainmenu nav ul li a:hover{
  color: var(--black);
}
.mainmenu nav ul li a::after{
  content: "";
  bottom: -5px;
  width: 0;
  background: var(--black);
  height: 1px;
  position: absolute;
  left: 0;
  transition: 0.4s all;
}
.mainmenu nav ul li a:hover::after{
  width: 100%;
}
.bookbtn{
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--secondary);
  position: relative;
  cursor: pointer;
  transition: 0.4s all;
}
.bookbtn a{
  transition: 0.4s all;
  color: var(--secondary);
}
.bookbtn a:hover{
  color: var(--black);
}
.bookbtn:hover::after{
  width: 0;
}
.bookbtn:hover{
  color: var(--black);
}
.bookbtn::after{
  position: absolute;
  content: "";
  bottom: -5px;
  height: 1px;
  width: 100%;
  background: var(--secondary);
  left: 0;
  transition: 0.4s all;
}
.bookbtn:hover::after{
  background: var(--black);
}
.hero{
  position: relative;
  overflow: hidden;
}
.hero-slide-title h1{
  text-transform: uppercase;
}
.hero{
  margin-top: -128px;
}
.hero-slide{
  position: relative;
  height: 100vh;
  padding: 128px 0 120px;
  display: flex;
  align-items: end;
}
.hero-slide img{
  width: 100%;
  left: 0;
  top: 0;
  position: absolute;
  z-index: -1;
  height: 100%;
  object-fit: cover;
  transition: transform 16s;
  transform: scale(1);
}
.hero .zoom .hero-image {
  transform: scale(1.2);
}
.hero-slide-title{
  color: var(--white);
}
.hero-slide-title h1{
  font-size: 170px;
  white-space: pre-line;
  position: relative;
  font-family: 'edensor'!important;
  line-height: 0.9;
  transition: 2s all;
  transform: translateX(-100px);
}
.hero .hero-r1 ,.hero .hero-r2{
  opacity: 0;
  transition: 2s all;
  font-family: 'edensor'!important;
  line-height: 0.9;
}
.swiper-slide-active .hero-slide-title h1{
  transform: translateX(0);
}
.swiper-slide-active .hero-r1 {
  opacity: 1;
}
.swiper-slide-active .hero-r2 {
  animation: fadeInRight 2s ease forwards;
  animation-delay: 500ms; 
  opacity: 0;
}
@keyframes fadeInRight {
  from {
    transform: translateX(0);
    opacity: 0;
  }
  to {
    transform: translateX(100px);
    opacity: 1;
  }
}
.hero .swiper-button-next{
  margin: 0;
  right: 50px;
  background: none;
  width: auto;
  height: auto;
}
.hero .swiper-button-prev{
  margin: 0;
  left: 50px;
  background: none;
  width: auto;
  height: auto;
}
.hero .swiper-pagination{
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: fit-content;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  align-items: center;
}
.hero .swiper-pagination span{
  width: 10px;
  height: auto;
  aspect-ratio: 1;
  border: 1px solid var(--white);
  transform: rotate(45deg);
  border-radius: 0;
  display: block;
  opacity: 1;
  background: none;
  transition: 0.4s all;
}
.hero .swiper-pagination-bullet-active{
  background: var(--white)!important;
}
.introimgbox{
  position: relative;
}
.introimgbox .introimg1{
  margin: 0 0 0 auto;
  display: block;
  width: calc(100% - 200px);
}
.introimgbox .introimg2{
  position: absolute;
  left: 0;
  top: 100px;
  z-index: 2;
  width: calc(100% - 200px);
}
.mytitle{
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--secondary);
  white-space: pre-line;
  margin-bottom: 15px;
}
.intro ul{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  margin-top: 30px;
  font-size: 15px;
  color: var(--secondary);
}
.intro ul li{
  position: relative;
  padding-left: 25px;
}
.intro ul li::before{
  content: url(img/introicon.svg);
  position: absolute;
  left: 0;
  top: 0;
}
.intro-slide .row{
  flex-direction: row-reverse;
}
.intro-slide img{
  border-radius: 999px;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}
.mytext{
  color: var(--secondary);
  font-size: 18px;
  line-height: 1.8;
}
.mybtn{
  background: var(--secondary);
  transition: 0.4s all;
  border-radius: 15px 0 15px 0;
  padding: 15px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-size: 13px;
  text-transform: uppercase;
  width: 187px;
}
.mybtn:hover{
  background: var(--white);
  color: var(--secondary);
}
.courses{
  background: url(img/products-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  overflow: hidden;
}
.myicon{
  display: block;
  margin: 0 auto 20px;
  text-align: center;
}
.courses h2{
  text-align: center;
}
.course-slide{
  background: var(--white);
  padding: 15px;
  position: relative;
}
.courseimgbox img{
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
  margin-bottom: 20px;
}
.courses .nav{
  display: flex;
  justify-content: center;
  gap: 50px;
  font-size: 13px;
  margin: 50px auto;
  color: var(--secondary);
  text-transform: uppercase;
}
.courses .nav li{
  cursor: pointer;
}
.courses .nav li div{
  position: relative;
}
.courses .nav li div::after{
  content: "";
  bottom: -5px;
  width: 0;
  height: 1px;
  background: var(--secondary);
  position: absolute;
  transition: 0.4s all;
  left: 0;
}
.courses .nav li .active::after{
  width: 100%;
}
.course-offer{
  position: absolute;
  left: 15px;
  top: 0;
  background: var(--secondary);
  padding: 10px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  font-size: 16px;
  gap: 5px;
}
.course-offer span:last-child{
  font-weight: bold;
}
.course-cats{
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  align-items: center;
}
.course-cats li a{
  color: #A7ABA5;
  font-size: 12px;
  transition: 0.4s all;
}
.course-cats li a:hover{
  color: var(--secondary);
}
.course-slide h3{
  font-size: 17px;
  text-transform: uppercase;
  font-weight: bold;
}
.course-slide h3 a{
  color: var(--secondary);
  transition: 0.4s all;
}
.course-slide h3 a:hover{
  color: var(--black);
}
.pricebox{
  margin-top: 10px;
}
.course-stitle{
  margin-bottom: 5px;
  color: #A7ABA5;
  font-size: 12px;
}
.price-text{
  color: var(--secondary);
  font-size: 19px;
  font-weight: bold;
}
.time-level-text{
  color: var(--secondary);
  font-size: 13px;
  text-transform: uppercase;
}
.tab-pane{
  position: relative;
}
.courses .swiper-button-next{
  background: none;
  margin: -80px 0 0;
  width: auto;
  height: auto;
  right: -100px;
}
.courses .swiper-button-prev{
  background: none;
  margin: -80px 0 0;
  width: auto;
  height: auto;
  left: -100px;
}
.courses .swiper-pagination{
  margin: 50px auto 0;
  width: fit-content;
  display: flex;
  gap: 20px;
  position: inherit;
}
.courses .swiper-pagination span{
  display: block;
  width: 10px;
  border: 1px solid #AEA17E;
  transform: rotate(45deg);
  border-radius: 0;
  height: auto;
  aspect-ratio: 1;
  opacity: 1;
  background: none;
  transition: 0.4s all;
}
.courses .swiper-pagination span.swiper-pagination-bullet-active{
  background: #AEA17E!important;
}
.courses .mybtn{
  margin: 50px auto 0;
  background: none;
  border: 1px solid var(--secondary);
  color: var(--secondary);
}
.courses .mybtn:hover{
  background: var(--secondary);
  color: var(--white);
}
.video-slider{
  margin-top: 100px;
  cursor: pointer;
}
.video-slider{
  padding: 0 400px;
}
.video-slide{
  position: relative;
}
.video-slide::after{
  pointer-events: none;
  content: url(img/play.svg);
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  transition: 0.4s all;
}
.video-slide:hover::after{
  transform: translate(-50%,-50%) scale(1.1);
}
.video-slide.videobox{
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/10;
  transition: 0.4s all;
  scale: 0.8;
}
.video-slide.videobox img{
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/10;
}
.swiper-slide-active .video-slide{
  scale: 1;
}
.contact  {
  overflow: hidden;
}
.reserves .swiper-wrapper{
  align-items: center;
}
.played::after{
  display: none;
}
.products{
  background: url(img/products-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.mytext2{
  width: 700px;
  margin: 0 auto;
  max-width: 100%;
}
.product-imgbox img{
  width: 100%;
  aspect-ratio: 1/1.28;
  object-fit: cover;
  transition: 0.4s all;
  height: auto;
}
.product-slide:hover .product-imgbox img{
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}
.product-slide h3{
  font-size: 18px;
  font-weight: 600;
  margin: 20px auto 10px;
}
.product-slide h3 a{
  transition: 0.4s all;
  color: var(--secondary);
}
.product-slide h3 a:hover{
  color: var(--black);
}
.product-addtocart-price{
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 25px;
}
.product-addtocart-price .product-price{
  justify-content: center;
}
.product-price{
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary);
  display: flex;
  gap: 5px 10px;
  transition: 0.7s all;
  flex-direction: row-reverse;
  justify-content: start;
  flex-wrap: wrap;
}
.related-product-box .product-price{
  justify-content: end;
}
del{
  color: #888;
}
.product-slide:hover .product-price{
  transform: translateY(-25px);
}
.product-addtocart{
  padding-bottom: 2px;
  border-bottom: 1px solid var(--secondary);
  font-size: 15px;
  text-transform: uppercase;
  transition: 0.7s all;
  color: var(--secondary);
  width: fit-content;
  margin: 0 auto;
  cursor: pointer;
}
.product-slide:hover .product-addtocart{
  transform: translateY(-19px);
}
.product-slider-area{
  position: relative;
}
.product-slider-area .swiper-button-next{
  background: none;
  right: -100px;
  margin: -50px 0 0;
  width: auto;
  height: auto;
}
.product-slider-area .swiper-button-prev{
  background: none;
  left: -100px;
  margin: -50px 0 0;
  width: auto;
  height: auto;
}
.blogimgbox img{
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: 0.4s all;
}
.blog-slider{
  padding: 0 200px;
}
.blog-slider .swiper-slide:nth-child(even) img{
  aspect-ratio: 1/1.3;
}
.blog-slide:hover img{
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}
.blog-slide{
  position: relative;
}
.blog-date{
  position: absolute;
  left: 10px;
  top: 0;
  background: var(--white);
  padding: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  text-align: center;
  color: var(--secondary);
}
.blog-date span{
  font-weight: bold;
}
.blog-cat{
  margin: 20px 0 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.blog-cat li a{
  color: var(--secondary);
  transition: 0.4s all;
}
.blog-cat li a:hover{
  color: var(--black);
}
.blog-slide h3{
  font-size: 19px;
  font-weight: bold;
}
.blog-slide h3 a{
  color: var(--secondary);
  text-transform: uppercase;
  transition: 0.4s all;
}
.blog-slide h3 a:hover{
  color: var(--black);
}
.item-box{
  text-align: center;
}
.item-box img{
  height: 40px;
}
.item-box h3{
  font-size: 19px;
  font-weight: bold;
  margin: 20px auto 10px;
  color: var(--secondary);
}
.item-box p{
  line-height: 1.8;
  font-size: 15px;
  color: var(--secondary);
}
.contact .row{
  flex-direction: row-reverse;
}
.contact iframe{
  width: 100%;
  aspect-ratio: 1;
  height: auto;
}
.contact form{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact form input,.contact form textarea{
  border: 0;
  border-bottom: 1px solid #A7ABA5;
  background: none;
  padding: 10px 0;
  font-size: 15px;
  color: #C7858F;
  width: 100%;
}
.contact form input[aria-invalid="true"]{
  border-bottom: 1px solid red;
}
.contact form input[aria-invalid="true"]::placeholder{
  color: red;
}
.gform_validation_errors{
  display: none;
}
.gfield_validation_message{
  margin-top: 5px;
  color: red;
}
.gform_confirmation_message{
  background: #2dc32d;
  padding: 20px;
  color: #fff;
  text-align: center;
}
.contact form label{
  display: none;
}
.contact form input::placeholder,.contact form textarea::placeholder{
  color: #C7858F
}
.contact form textarea{
  height: 100px;
}
.contact-formbox{
  width: 400px;
  margin: 0 auto;
  max-width: 100%;
}
.contact .gform_fields{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact form input[type=submit]{
  width: fit-content;
  margin: 30px auto 0 0;
  background: var(--secondary);
  transition: 0.4s all;
  border-radius: 15px 0 15px 0;
  color: var(--white);
  width: 209px;
  display: flex;
  border: 0;
  padding: 15px;
}
.contact form input[type=submit]:hover{
  background: var(--white);
  color: var(--secondary);
}
.map{
  filter: grayscale(100%);
}
.marquee-container {
  width: 100%;
  overflow: hidden;
  color: var(--secondary);
  font-size: 45px;
}
.marquee-text {
  display: flex;
  width: max-content;
  animation: marquee 20s linear infinite;
}
.marquee-group {
  display: flex;
}
.marquee-group span {
  white-space: nowrap;
  margin-right: 0; 
  font-family: 'Edensor'!important;
  display: block;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); 
  }
}
.gallery-slider{
  padding: 0 150px;
}
.gallery-slider img{
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
}
footer{
  background: url(img/fbg.jpg);
  padding: 200px 100px 80px;
}
.ftitle{
  font-size: 19px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--secondary);
  text-transform: uppercase;
}
.footer-box form{
  display: flex;
  border-bottom: 1px solid #A7ABA5;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  margin-top: 70px;
  gap: 0;
}
.footer-box form input{
  background: none;
  padding: 0;
  color: var(--secondary);
  font-size: 15px;
  border: 0;
  width: 100%;
}
.footer-box form input::placeholder{
  color: var(--secondary);
}
.footer-box form input[type=submit]{
  background: url(img/right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 30px;
  cursor: pointer;
  padding: 0;
  border: 0;
}
.footerflex{
  display: flex;
  gap: 50px;
}
.f1{
  flex: 1;
  padding-right: 100px;
}
.footerbox{
  width: 200px;
}
.flinks a{
  font-size: 15px;
  color: var(--secondary);
  transition: 0.4s all;
}
.flinks a:hover{
  color: var(--black);
}
.flinks ul{
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.f4{
  color: var(--secondary);
  font-size: 15px;
}
.f4 ul{
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.f4 a{
  font-size: 15px;
  color: var(--secondary);
  transition: 0.4s all;
}
.f4 a:hover{
  color: var(--black);
}
.footercopybox{
  margin-top: 100px;
  display: flex;
  gap: 50px;
  align-items: end;
}
.fct{
  color: var(--secondary);
  font-size: 15px;
}
.fct hr{
  margin: 0;
  border: 1px solid var(--black);
}
.fct p{
  margin: 0;
}
.footerbigtitle img{
  max-width: 100%;
}
.courses-hero{
  height: 100vh;
  margin-top: -128px;
  padding-top: 128px;
  display: flex;
  align-items: center;
}
.courses-hero h1{
  font-size: 96px;
  font-family: 'Edensor';
  text-transform: uppercase;
  color: var(--secondary);
}
.courses-hero p{
  font-size: 18px;
  color: #A7ABA5;
  margin: 20px 0 50px;
}
.rc-imgbox{
  margin-bottom: 20px;
}
.rc-imgbox img{
  width: 300px;
  height: auto;
  aspect-ratio: 1/1.3;
  object-fit: cover;
}
.courses-area{
  background: url(img/fbg.jpg);
  overflow: hidden;
}
.rc-slide h3 a{
  color: var(--secondary);
  transition: 0.4s all;
}
.rc-slide h3{
  font-size: 18px;
}
.rc-slide h3 a:hover{
  color: var(--black);
}
.courses-area .swiper-slide{
  width: 180px;
  transition: 0.4s all;
  overflow: hidden;
}
.active-slide{
  width: 300px!important;
}
/* .courses-area .swiper-slide:last-child:hover{
  position: relative;
  transform: translateX(-120px);
} */
.rcs-area{
  position: relative;
}
.rcs-area .swiper-button-next{
  margin: -30px 0 0;
  right: -100px;
  background: none;
  width: auto;
  height: auto;
}
.rcs-area .swiper-button-prev{
  margin: -30px 0 0;
  left: -100px;
  background: none;
  width: auto;
  height: auto;
}
.rcs-area .swiper-pagination{
  margin: 50px auto 0;
  width: fit-content;
  display: flex;
  gap: 20px;
  position: inherit;
}
.rcs-area .swiper-pagination span{
  display: block;
  width: 10px;
  border: 1px solid #AEA17E;
  transform: rotate(45deg);
  border-radius: 0;
  height: auto;
  aspect-ratio: 1;
  opacity: 1;
  background: none;
  transition: 0.4s all;
}
.rcs-area .swiper-pagination span.swiper-pagination-bullet-active{
  background: #AEA17E!important;
}
.items2.padd{
  padding: 150px 0 100px;
}
.testimonials{
  overflow: hidden;
  background: url(img/fbg.jpg);
}
.swiper-btn-slider{
  max-width: 900px!important;
}
.swiper-btn-slider .swiper-wrapper{
  margin: 0 auto;
  width: fit-content;
}
.swiper-btn-slider button{
  padding: 10px;
  border: 0;
  width: 100%;
  background: none;
}
.swiper-btn-slider button img{
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 999px;
  opacity: 0.5;
  transition: 0.4s all;
}
.testi-active img{
  opacity: 1!important;
  scale: 1.1;
}
.swiper-btn-slider .swiper-slide{
  display: flex;
  justify-content: center;
}
.testi-comments{
  position: relative;
  width: 700px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}
.testi-comments .swiper-button-next{
  margin: -40px 0 0;
  right: -100px;
  background: none;
  width: auto;
  height: auto;
}
.testi-comments .swiper-button-prev{
  margin: -40px 0 0;
  left: -100px;
  background: none;
  width: auto;
  height: auto;
}
.testi-comments .swiper-pagination{
  margin: 50px auto 0;
  width: fit-content;
  display: flex;
  gap: 20px;
  position: inherit;
}
.testi-comments .swiper-pagination span{
  display: block;
  width: 10px;
  border: 1px solid #AEA17E;
  transform: rotate(45deg);
  border-radius: 0;
  height: auto;
  aspect-ratio: 1;
  opacity: 1;
  background: none;
  transition: 0.4s all;
}
.testi-comments .swiper-pagination span.swiper-pagination-bullet-active{
  background: #AEA17E!important;
}
.testi-slide{
  padding: 50px;
  background: #F0F0F0;
  position: relative;
  min-height: 250px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.testi-slide h3{
  font-size: 24px;
  font-weight: bold;
  color: var(--black);
  margin-bottom: 10px;
}
.testi-slide .testi-smt{
  font-size: 14px;
  color: #A7ABA5;
  margin-bottom: 10px;
}
.testi-slide p{
  font-size: 16px;
  color: var(--black);
}
.faq .accordion-button{
  background: none;
  color: #A7ABA5;
  transition: 0.4s all;
  border: 0;
  padding: 0;
  box-shadow: none;
  font-weight: bold;
  padding-right: 70px;
}
.faq .accordion-item{
  border: 0;
  background: 0;
  text-align: left;
}
.faq h3{
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 1px solid #888;
  cursor: pointer;
}
.faq h3 div{
  font-size: 19px;
}
.faq .accordion{
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.faq .accordion-body{
  font-size: 18px;
  padding: 20px 0;
}
.faq .accordion-button[aria-expanded="true"]{
  color: var(--secondary);
}
.accordion-button::after{
  background-image: url(img/arrdown.svg);
  width: 20px;
  scale: 1.5;
  position: absolute;
  right: 0;
  transition: 0.4s all;
}
.accordion-button:not(.collapsed)::after{
  background-image: url(img/arrdown.svg);
  top: -5px;
}
.course-login h1{
  font-size: 50px;
  margin-top: 70px;
  font-family: 'Edensor';
  text-transform: uppercase;
  color: var(--secondary);
}
.course-login p{
  color: #A7ABA5;
  margin-top: 20px;
}
.course-login .mybtn{
  margin: 50px auto 0;
}
.contact-page h1{
  font-size: 160px;
  font-family: 'Edensor'!important;
  color: var(--secondary);
  text-transform: uppercase;
  z-index: 10;
  position: relative;
}
.iframebox{
  margin-top: -100px;
}
.contact-page iframe{
  width: 100%;
  height: 600px;
}
.iframebox{
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}
.contact-form-box{
  width: 800px;
  margin: 0 auto;
  max-width: 100%;
}
.contact-form-box {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 15px;
}
.rightcourses-slider .swiper-wrapper{
  width: fit-content;
  margin: 0 auto;
}
.contact-form-box form textarea{
  grid-column: span 2;
}
.contact-form-box form input[type=submit]{
  grid-column: span 2;
  background: var(--secondary);
  color: var(--white);
  padding: 15px;
  border: 0;
  width: 200px;
  transition: 0.4s all;
  margin: 50px auto 0;
  border-radius: 15px 0 15px 0;
}
.contact-form-box form input,.contact-form-box form textarea{
  border: 0;
  background: none;
  border-bottom: 1px solid #A7ABA5;
  padding-bottom: 10px;
  font-size: 15px;
}
.contact-form-box form input::placeholder,.contact-form-box form textarea::placeholder{
  color: var(--secondary);
}
.contact-form-box form textarea{
  height: 100px;
}
.contact-form-box form input[type=submit]:hover{
  background: var(--white);
  color: var(--secondary);
}
.contact-form-box-cp input,.contact-form-box-cp textarea{
  width: 100%;
}
.contact-form-box-cp{
  display: block;
}
.contact-form-box-cp .gform_fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info h3{
  color: var(--secondary);
  text-transform: uppercase;
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 20px;
}
.contact-info ul{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-info ul li a{
  color: var(--secondary);
  font-size: 15px;
  position: relative;
  transition: 0.4s all;
}
.contact-info ul li a::after{
  content: "";
  bottom: -3px;
  width: 0;
  background: var(--black);
  transition: 0.4s all;
  left: 0;
  height: 1px;
  position: absolute;
}
.contact-info ul li a:hover::after{
  width: 100%;
}
.contact-info ul li a:hover{
  color: var(--black);
}
.other-pages{
  padding: 0 0 100px;
}
.other-imgbox{
  margin-top: -100px;
}
.other-imgbox img{
  height: 575px;
  object-fit: cover;
}
.about-text{
  max-width: 100%;
  width: 800px;
  margin: 0 auto;
  font-size: 25px;
  text-transform: uppercase;
  line-height: 1.6;
  color: var(--secondary);
  font-weight: bold;
  text-align: center;
}
.brands{
  padding: 50px 50px 150px;
}
.brand-grid{
  display: grid;
  gap: 50px;
  justify-content: center;
  grid-template-columns: repeat(6,auto);
}
.brand-box img{
  max-width: 100%;
  margin: 0 auto;
  display: block;
}
.single-team-hello{
  font-size: 160px;
  font-family: 'Edensor' !important;
  color: var(--secondary);
  text-transform: uppercase;
  z-index: 10;
  position: relative;
}
.singleteam-intro{
  margin-top: -70px;
  padding: 150px 0 100px;
}
.singleteam-intro img{
  width: 698px;
  border-radius: 999px 999px 0 0;
  margin: 0 auto;
  display: block;
  max-width: 100%;
}
.singleteam-intro h1{
  text-align: center;
  font-size: 120px;
  color: var(--secondary);
  margin-top: -70px;
}
.st-introbox .row{
  flex-direction: row-reverse;
}
.st-introbox2{
  padding: 150px 0;
}
.st-introbox2b2{
  padding:0 100px;
}
.team{
  position: relative;
}
.vector1{
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 500px;
}
.team h1{
  font-size: 160px;
  color: var(--secondary);
  white-space: pre-line;
  font-family: 'Edensor';
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
}
.team h1 span{
  font-family: 'Edensor';
  position: relative;
  left: -250px;
}
.team-post{
  padding: 0 25px;
}
.team-post .team-imgbox{
  overflow: hidden;
  width: 100%;
  margin-bottom: 20px;
  aspect-ratio: 1/1.5;
}
.team-post .team-imgbox img{
  width: 100%;
  aspect-ratio: 1/1.5;
  object-fit: cover;
  height: auto;
  transition: 1s all;
}
.team-post:hover .team-imgbox img{
  scale: 1.1;
}
.team-post h3{
  font-size: 19px;
  font-weight: bold;
}
.team-post h3 a{
  color: var(--secondary);
  transition: 0.4s all;
}
.team-post p{
  font-size: 15px;
  color: var(--secondary);
  margin: 0;
}
.team-box{
  position: relative;
  z-index: 10;
  margin: 250px auto 200px;
}
.team-box .col-lg-4:nth-child(3n + 2){
  position: relative;
  top: -150px;
}
.team-box .col-lg-4:nth-of-type(4n+3) .team-imgbox,
.team-box .col-lg-4:nth-of-type(4n+4) .team-imgbox {
  border-radius: 0 300px 0 0;
}
.team-box .row{
  gap: 150px 0;
}
.tour-imgbox{
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
  overflow: hidden;
}
.tour-imgbox img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1.5s all;
}
.tour-slide{
  overflow: hidden;
}
.tours-slider .swiper-slide:nth-child(odd) .tour-imgbox{
  aspect-ratio: 16/11;
}
.tours-slider{
  padding: 0 550px;
}
.tours-slider .swiper-slide .tour-imgbox img:hover{
  scale: 1.1;
}
.tour-date{
  text-align: center;
  margin-top: 20px;
  color: #c6868ed8;
  font-size: 16px;
}
.tour-slide h3{
  margin-top: 10px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 0;
  text-transform: uppercase;
  color: var(--secondary);
}
.tour-slide h3 a{
  color: var(--secondary);
  transition: 0.4s all;
}
.video-retreats{
  background: url(img/products-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
}
.video-retreats h2{
  font-size: 160px;
  font-family: 'Edensor' !important;
  color: var(--secondary);
  text-transform: uppercase;
  z-index: 10;
  position: relative;
  text-align: center;
  margin-bottom: -60px;
}
.videobox{
  position: relative;
  cursor: pointer;
}
.videobox:hover::after{
  transform: translate(-50%, -50%) scale(1.1);
}
.videobox::after {
  pointer-events: none;
  content: url(img/play.svg);
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s all;
  pointer-events: none;
}
.video-retreats p{
  margin: 50px auto 30px;
  color: var(--secondary);
  text-align: center;
  font-size: 28px;
  text-transform: uppercase;
  font-weight: bold;
}
.video-retreats a{
  text-align: center;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--secondary);
  transition: 0.4s all;
}
.video-retreats a:hover{
  gap: 15px;
  color: var(--black);
}
.video-modal{
  position: fixed;
  top: calc(50% - 20px);
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 100;
  width: 900px;
  max-width: 90%;
  opacity: 0;
  visibility: hidden;
}
.video-modal video{
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  cursor: pointer;
  background: var(--black);
}
.video-modal svg{
  width: 30px;
  height: 30px;
  color: var(--white);
  margin: 0 -6px 0 auto;
  display: block;
  transition: 0.4s all;
  cursor: pointer;
  width: fit-content;
  margin-bottom: 20px;
}
.video-modal svg:hover{
  transform: rotate(180deg);
}
.close-modal{
  position: fixed;
  z-index: 99;
  background: rgba(0, 0, 0, 0.776);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.ret-title{
  margin-bottom: -70px;
}
.video-retreats2{
  padding-top: 200px;
}
.single-ret{
  position: relative;
}
.ret-vector{
  position: absolute;
  right: 0;
  top: 250px;
  width: 500px;
}
.ret-single-con{
  width: 800px;
  max-width: 100%;
}
.ret-single-con ul{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  font-size: 16px;
  margin-top: 30px
}
.ret-single-con ul li{
  padding-left: 20px;
  position: relative;
}
.ret-single-con ul li::before{
  content: '*';
  color: var(--secondary);
  font-size: 25px;
  position: absolute;
  left: 0;
  top: -1px;
}
.single-ret-price{
  margin-top: 100px;
  text-transform: uppercase;
  font-size: 24px;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 20px;
}
.ret-time{
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 50px;
}
.ret-btns{
  display: flex;
  gap: 15px;
}
.ret-btns a{
  border-radius: 15px 0 15px 0;
  border: 1px solid var(--secondary);
  transition: 0.4s all;
  background: var(--secondary);
  color: var(--white);
  padding: 15px 50px;
  font-weight: 600;
  text-transform: uppercase;
}
.ret-btns a:hover{
  background: none;
  color: var(--secondary);
}
.ret-btns a:last-child{
  background: none;
  color: var(--secondary);
}
.ret-btns a:last-child:hover{
  background: var(--secondary);
  color: var(--white);
}
.ret-gallery .col-lg-6:first-child{
  padding-right: 100px;
}
.ret-gallery .col-lg-6:last-child{
  padding-left: 70px;
}
.ret-gallery .col-lg-6:last-child img{
  margin-top: 100px;
}
.ret-slide{
  padding-bottom: 200px;
  position: relative;
}
.ret-slide p{
  padding-right: 100px;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.7;
  color: var(--secondary);
  text-transform: uppercase;
}
.ret-slide-vector{
  position: absolute;
  left: 0;
  bottom: 0;
}
.ret-gallery2{
  padding: 0 50px 50px;
}
.ret-gallery-flex{
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
.rg-2 img{
  width: calc(50% - 25px);
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}
.rg-1{
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}
.rg-1-1 img{
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
}
.rg-1-1{
  width: calc(33% - 25px);
  display: flex;
  gap: 50px;
  flex-direction: column;
}
.rg-1-2{
  width: calc(67% - 25px);
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}
.ret-flex{
  display: flex;
  gap: 50px;
}
.rg-1{
  width: calc(60% - 25px);
}
.rg-2{
  width: calc(40% - 25px);
}
.bread-box{
  display: flex;
  gap: 5px;
  align-items: center;
  color: var(--black);
  font-size: 16px;
}
.bread-box a{
  color: var(--black);
  transition: 0.4s all;
}
.bread-box a:hover{
  color: var(--secondary);
}
.bread{
  background: url(img/bread.png);
  background-repeat: no-repeat;
  padding: 40px 0;
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
  background-size: cover;
}
.bread2{
  background: url(img/bread2.jpg);
  background-repeat: no-repeat;
  padding: 50px 0;
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
  background-size: cover;
}
.bread3{
  background: url(img/bread3.jpg);
  background-repeat: no-repeat;
  padding: 50px 0;
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
  background-size: cover;
}
.bread2 h1{
  color: #3e4939;
}
.instructor ul{
  display: flex;
  gap: 20px;
  font-size: 16px;
  flex-direction: column;
  margin-top: 30px
}
.instructor ul li{
  padding-left: 20px;
  position: relative;
}
.instructor ul li::before{
  content: '*';
  color: var(--secondary);
  font-size: 25px;
  position: absolute;
  left: 0;
  top: -1px;
}
.qodef-svg--search{
  fill: none;
  stroke: var(--black);
}
.maincontent p{
  line-height: 1.7;
  font-size: 18px;
}
.maincontent h2,.maincontent h3,.maincontent h4,.maincontent h5,.maincontent h6{
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
}
.maincontent h2{
  font-size: 24px;
}
.maincontent h3{
  font-size: 22px;
}
.maincontent h4{
  font-size: 20px;
}
.maincontent h5{
  font-size: 18px;
}
.maincontent h6{
  font-size: 16px;
}
.instructor{
  margin-top: 100px;
}
.instructor h3{
  color: var(--secondary);
  font-weight: 600;
  font-size: 24px;
  text-transform: uppercase;
}
.instructor .col-lg-7{
  padding-left: 50px;
}
.smt{
  font-size:20px;
  margin-bottom: 20px;
  color: var(--secondary);
}
.instructor p{
  line-height: 1.5;
  font-size: 16px;
}
.social-box{
  width: 35px;
  height: auto;
  aspect-ratio: 1;
  background: #ffffff8e;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 12px;
  border-radius: 999px;
  border: 1px solid #99999946;
  transition: 0.4s all;
}
.social-box:hover{
  color: var(--white);
  background: var(--secondary);
  border: 1px solid var(--secondary);
}
.inst-hours{
  margin-top: 100px;
}
.scs-banner,.scs-search,.scs-cats,.scr-recent{
  margin-bottom: 100px;
}
.scs-filter{
  margin-bottom: 80px;
}
.scs-title{
  text-transform: uppercase;
  font-size: 20px;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 20px;
}
.scs-search form{
  width: 100%;
  border-bottom: 1px solid var(--black);
  padding: 0 0 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.scs-search form input{
  background: none;
  border: 0;
  width: 100%;
  padding: 0;
}
.scs-search form input::placeholder{
  font-size: 16px;
  color: var(--black);
}
.scs-search form button{
  background: none;
  padding: 0;
  border: 0;
}
.scs-cats ul{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.scs-cats ul li a{
  color: var(--black);
  transition: 0.4s all;
  font-size: 16px;
}
.scs-cats ul li a:hover{
  color: var(--secondary);
}
.blog-post{
  margin-bottom: 100px;
}
.blog-post:last-child{
  margin: 0;
}
.blog-post-img{
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}
.blog-post-img img{
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: 1.5s all;
}
.blog-post-date{
  position: absolute;
  left: 15px;
  top: 0;
  background: var(--white);
  width: 50px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 5px;
  color: var(--black);
  font-size: 16px;
  padding: 10px 0;
}
.blog-post-img:hover img{
  scale: 1.1;
}
.blog-post-cats{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  margin-bottom: 20px;
}
.blog-post-cats li a{
  color: var(--black);
  text-align: left;
  transition: 0.4s all;
}
.blog-post-cats li a:hover{
  color: var(--secondary);
}
.blog-post h2,.blog-post h1{
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}
.blog-post h2 a,.blog-post h1{
  color: var(--secondary);
  transition: 0.4s all;
}
.blog-post h2 a:hover{
  color: var(--black);
}
.blog-post p{
  font-size: 16px;
  line-height: 1.5;
}
.blog-post-links{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.bp-readmore{
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.4s all;
  font-size: 16px;
  text-transform: uppercase;
}
.bp-readmore:hover{
  color: var(--black);
  gap: 15px;
}
.author-box1{
  margin-bottom: 100px;
}
.author-box1 img{
  width: 100%;
  border-radius: 0 200px 0 0;
  margin-bottom: 20px;
  height: auto;
}
.author-box1 h4{
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}
.author-box1 h4 a{
  color: var(--secondary);
}
.author-box1 .smt{
  font-size: 18px;
  color: var(--black);
}
.scr-recent{
  margin-top: 50px;
}
.scr-recent ul{
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.scr-imgbox{
  aspect-ratio: 16/10;
  overflow: hidden;
  margin-bottom: 20px;
}
.scr-imgbox img{
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  transition: 1.5s all;
  object-fit: cover;
}
.scr-imgbox img:hover{
  scale: 1.1;
}
.scr-date{
  font-size: 14px;
  color: var(--black);
}
.scr-recent ul li h4{
  margin: 10px 0 0;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
}
.scr-recent ul li h4 a{
  color: var(--secondary);
}
.scr-tags{
  margin-bottom: 100px;
}
.scr-tags ul{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.scr-tags ul li a{
  color: var(--black);
  background: #ffffff8e;
  padding: 8px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 12px;
  transition: 0.4s all;
  border: 1px solid #99999946;
}
.scr-tags ul li a:hover{
  color: var(--secondary);
  background: none;
  border: 1px solid var(--secondary);
}
.author-box2 {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 50px;
  background: #ffffff73;
}
.author-box2 img{
  border-radius: 0 80px 0 0;
  width: 160px;
  height: auto;
}
.ab2-box h4{
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
}
.ab2-box h4 a{
  color: var(--secondary);
}
.ab2-box .smt{
  font-size: 16px;
  margin-bottom: 10px;
}
.ab2-box p{
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.5;
}
.next-prev-posts{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
}
.next-prev-posts .prevp:first-child svg{
  transform: rotate(180deg);
}
.menu2icon span{
  display: block;
  width: 45px;
  height: 20px;
  position: relative;
  cursor: pointer;
}
.menu2icon span:hover::after{
  transform: translateX(-4px);
}
.menu2icon span:hover::before{
  transform: translateX(4px);
}
.menu2icon span::before{
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--secondary);
  transition: 0.4s all;
}
.menu2icon span::after{
  content: "";
  position: absolute;
  top: calc(50% + 6px);
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background: var(--secondary);
  transition: 0.4s all;
}
.fixed-sidebar{
  position: fixed;
  top: 0;
  right: -450px;
  max-width: 90%;
  width: 450px;
  height: 100%;
  background: url(img/Side-area-bacg-img-2.png);
  background-position: bottom -200px;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px;
  z-index: 1000;
  gap: 40px;
  text-align: center;
  color: var(--white);
  transition: 0.4s all;
}
.fx-close{
  position: absolute;
  top: 50px;
  right: 40px;
  width: 40px;
  height: 40px;
  transition: 0.4s all;
  cursor: pointer;
}
.fx-close:hover{
  transform: rotate(180deg);
}
.fx-logo{
  margin-top: 80px;
  margin-bottom: 30px;
  display: block;
}
.fx-logo img{
  width: 70px;
}
.fx-title{
  white-space: pre-line;
  font-size: 40px;
  font-family: "Edensor";
  text-transform: uppercase;
  margin-bottom: 30px;
}
.fx-links{
  color: var(--white);
  display: block;
  font-size: 16px;
  margin: 15px auto;
}
.fixed-sidebar .social-box{
  background: #ffffff53;
  color: var(--white);
  border: 1px solid #ffffff53;
}
.fixed-sidebar .social-box:hover{
  background: var(--secondary);
  color: var(--white);
  border: 1px solid var(--secondary);
}
.bookly-form .bookly-progress-tracker > .active .step, .bookly-form .bookly-columnizer .bookly-hour:active .bookly-hour-icon span, .bookly-form .bookly-btn, .bookly-form .bookly-btn:active, .bookly-form .bookly-btn:focus, .bookly-form .bookly-btn:hover, .bookly-form .bookly-btn-submit, .bookly-form .bookly-round, .bookly-form .bookly-pagination > li.active, .bookly-form .bg-bookly, .bookly-form .hover\:bg-bookly:hover, .bookly-form .bg-bookly-not-hover:not(:hover),.bookly-form .bookly-service-step .bookly-week-days input[type='checkbox'], .bookly-form .bookly-repeat-step .bookly-week-days input[type='checkbox'],.bookly-form .bookly-columnizer .bookly-day, .bookly-form .bookly-schedule-date{
  background-color: var(--secondary)!important;
}
.bookly-form .bookly-form-group > label, .bookly-form .bookly-label-error, .bookly-form .bookly-progress-tracker > .active, .bookly-form .bookly-columnizer .bookly-hour span.bookly-waiting-list, .bookly-form .hover\:text-bookly:hover, .bookly-form .text-bookly:not(:hover), .bookly-form .hover\:text-bookly:hover{
  color: var(--secondary)!important;
}
.bookly-form .bookly-columnizer .bookly-day, .bookly-form .bookly-schedule-date{
  border: 1px solid var(--secondary)!important;
}
.nav-links{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.nav-links a{
  color: var(--black);
  font-size: 20px;
  transition: 0.4s all;
}
.nav-links a:hover{
  color: var(--secondary);
}
.nav-links span{
  color: var(--secondary);
  font-size: 20px;
}
.next,.prev{
  border: 0!important;
  padding: 0!important;
}
.contact-form-box form label{
	display:none;
}
.product-mythumbnail{
  overflow: hidden;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  background: #fff;
}
.product-mythumbnail img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  display: block;
  cursor: crosshair;
}
.product-images{
  display: flex;
  gap: 10px;
}
.product-gallery{
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 150px;
}
.product-gallery img{
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1;
  cursor: pointer;
}
.quantity-wrapper {
  display: flex;
  align-items: center;
  gap: 1px;
}
.quantity-wrapper input{
  width: 45px!important;
  height: 45px;
  text-align: center;
  border: 1px solid var(--secondary);
  background: none;
  border-radius: 0;
  font-size: 20px;
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}
.qty-btn {
  width: 45px;
  height: auto;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--secondary);
  background: var(--secondary);
  transition: 0.4s all;
  color: var(--white);
  font-size: 24px;
}
.qty-btn:hover{
  background: var(--black);
  border: 1px solid var(--black);
}
.product-details{
  padding-left: 70px;
}
.product-title{
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: bold;
  font-size: 36px;
}
.product-price-sp{
  color: var(--black);
  font-size: 24px;
  font-weight: bold;
  margin: 20px auto 20px 0;
}
.product-rating{
  color: var(--black);
  font-size: 16px;
}
.product-excerpt{
  margin: 20px auto 40px;
  line-height: 1.5;
  font-size: 16px;
}
.product-add-to-cart{
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 40px;
}
.single_add_to_cart_button,.praddtoc a{
  border-radius: 20px 0 20px 0!important;
  background: var(--black)!important;
  height: 45px!important;
  display: flex!important;
  justify-content: center!important;
  align-items: center!important;
  text-align: center!important;
  color: var(--white)!important;
  padding: 0 30px!important;
  font-size: 16px!important;
  text-transform: uppercase;
  transition: 0.4s all;
}
.single_add_to_cart_button:hover,.praddtoc a:hover{
  background: var(--secondary)!important;
}
.praddtoc a{
  width: max-content!important;
  font-size: 12px!important;
  opacity: 0;
}
.form-submit input{
  border-radius: 20px 0 20px 0!important;
  background: var(--secondary)!important;
  height: 45px!important;
  display: flex!important;
  justify-content: center!important;
  align-items: center!important;
  text-align: center!important;
  color: var(--white)!important;
  padding: 0 30px!important;
  font-size: 16px!important;
  text-transform: uppercase;
  transition: 0.4s all;
}
.form-submit input:hover{
  background: var(--black)!important;
}
.product-sku{
  margin-bottom: 10px;
  font-size: 16px;
  text-transform: uppercase;
}
.product-cats,.product-tagss{
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  align-items: center;
}
.product-categories{
  font-size: 16px;
}
.product-small-titles{
  text-transform: uppercase;
  font-size: 16px;
}
.product-cats ul{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.product-cats ul li a{
  color: var(--secondary);
  transition: 0.4s all;
}
.product-cats ul li a:hover{
  color: var(--black);
}
.product-tagss ul{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.product-tagss ul li a{
  color: var(--secondary);
  transition: 0.4s all;
  font-size: 16px;
}
.product-tagss ul li a:hover{
  color: var(--black);
}
.ptb-btn{
  background: none;
  padding: 0;
  color: var(--black);
  font-size: 20px;
  text-transform: uppercase;
  padding-bottom: 5px;
  cursor: pointer;
  position: relative;
  font-weight: 600;
}
.ptb-btn::after{
  content: "";
  bottom: 0;
  left: 0;
  width: 0;
  transition: 0.4s all;
  background: var(--black);
  height: 1px;
  position: absolute;
}
.ptb-btn:hover::after,.ptb-btn.active::after{
  width: 100%;
}
.product-tabs-box .nav{
  gap: 10px 50px;
}
#pills-description{
  font-size: 18px;
  line-height: 1.8;
}
.product-attributes{
  font-size: 18px;
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.woocommerce .star-rating span::before{
  font-family: woocommerce!important;
  color: var(--secondary);
}
.woocommerce .star-rating{
  float: none;
  margin-bottom:15px;
  scale: 1.1;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta{
  font-size: 18px;
  color: var(--black);
  margin-bottom: 10px;
}
.woocommerce .star-rating::before{
  color: var(--secondary);
}
.woocommerce #reviews #comments ol.commentlist li .comment-text{
  padding: 0;
  border: 0;
}
.woocommerce #reviews #comments ol.commentlist li img.avatar{
  width: 90px;
  border: 0!important;
  padding: 0;
  background: none;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text{
  margin-left: 115px;
}
.woocommerce #reviews #comments h2{
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-weight: 600;
}
.woocommerce-review__awaiting-approval{
  color: var(--white);
  background: var(--secondary);
  font-style: normal;
  padding: 6px 10px;
  display: block;
  font-size: 13px;
  width: fit-content;
}
.woocommerce #reviews #comments ol.commentlist li{
  border-bottom: 1px solid #555;
  padding-bottom: 15px;
}
.woocommerce #reviews #comments ol.commentlist li{
  margin-bottom: 15px;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p{
  font-size: 16px;
}
.woocommerce #reviews #comments ol.commentlist li:last-child{
  border: 0;
}
.woocommerce-review__author{
  text-transform: uppercase;
}
#review_form_wrapper{
  margin-top: 50px;
}
.comment-reply-title{
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  display: block;
}
.product-rating{
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.comment-notes{
  font-size: 18px;
}
.comment-form-rating{
  font-size: 16px;
  margin: 15px 0;
}
.comment-form-rating{
  display: flex;
  gap: 10px;
  align-items: center;
}
.woocommerce #review_form #respond p{
  margin: 0;
}
.woocommerce p.stars a::before{
  color: var(--secondary);
}
.comment-form-comment{
  font-size: 16px;
}
.comment-form label{
  display: none!important;
  margin-bottom: 10px;
}
.comment-form input,.comment-form textarea{
  border: 0;
  border-bottom: 1px solid var(--secondary);
  padding: 10px 0;
  background: none;
  width: 100%;
  margin-bottom: 20px;
}
.comment-form input::placeholder,.comment-form textarea::placeholder{
  color: var(--secondary);
}
.comment-form-cookies-consent{
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 20px 0!important;
}
.comment-form-cookies-consent label{
  margin: 0;
  display: block!important;
}
.comment-form-cookies-consent input{
  width: fit-content;
  margin: 0;
}
.comment-form-rating label{
  display: block!important;
  margin: 0 0 8px 0!important;
}
.form-submit input{
  width: fit-content;
}
.admin-comment::after{
  content: "admin";
  text-transform: uppercase;
  position: absolute;
  top: 75px;
  left: 13px;
  background: var(--secondary);
  color: var(--white);
  padding: 5px 10px;
  font-size: 13px;
}
.woocommerce-noreviews{
  font-size: 16px;
}
.woocommerce #reviews #comments ol.commentlist ul.children{
  padding-bottom: 10px;
}
.praddtoc p{
  padding: 0!important;
  border: 0!important;
  margin: 0;
}
.related-products h2{
  font-weight: bold;
  text-transform: uppercase;
  font-size: 28px;
}
.rpr-imgbox{
  position: relative;
  overflow: hidden;
}
.rpr-imgbox::after{
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.841);
  position: absolute;
  transition: 0.4s all;
  opacity: 0;
}
.rpr-imgbox img{
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
}
.praddtoc{
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  transform: translate(-50%,-50%);
}
.related-product-box:hover .praddtoc a,.related-product-box:hover .rpr-imgbox::after{
  opacity: 1;
  scale: 1.1;
}
.rpr-title-price{
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin: 20px 0 10px;
}
.rpr-title-price h3{
  font-size: 18px;
  margin: 0;
}
.rpr-title-price h3 a{
  color: var(--black);
}
.rpr-title-price .product-price{
  margin: 0!important;
  color: var(--black);
  font-weight: normal;
}
.related-product-box .product-categories{
  display: flex;
  gap:5px 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.related-product-box .product-categories a,.related-product-box .no-rating{
  color: var(--black);
  font-size: 13px;
  transition: 0.4s all;
}
.related-product-box .product-categories a:hover{
  color: var(--secondary);
}
.praddtoc .woocommerce-Price-amount{
  display: none;
}
.filter-w-price select{
  background: none;
  border: 0;
  padding: 0 20px 0 0;
  appearance: none;
  background-image: url(img/download.svg);
  background-repeat: no-repeat;
  cursor: pointer;
  background-position: right 0 center;
  font-size: 18px;
  color: var(--black);
}
.filter-w-price select:focus{
  outline: none;
}
.showing-count{
  font-size: 18px;
  margin: 0;
}
.price-range-label-flex{
  margin-top: 15px;
  font-size: 16px;
}
.price-range-label-flex{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px; 
}
#price-slider{
  width: calc(100% - 13px);
  display: block;
  margin: 0 auto;
  height: 2px;
}
.myrange-bns{
  justify-content: end;
}
.myrange-bns button{
  background: none;
  color: var(--black);
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 0;
  font-size: 16px;
  border: 0;
  text-transform: uppercase;
  color: var(--secondary);
}
#reset-slider{
  display: none;
}
.ui-widget-header{
  background: var(--secondary);
}
.ui-widget-content{
  border: 0!important;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active{
  border-radius: 999px;
  background: #b16670;
  border: 0;
  outline: none!important;
}
.ui-slider .ui-slider-handle{
  height: 10px;
  width: 10px;
}
.ui-widget-content{
  background: #cf868f3b;
}
.scr-recent .product-categories{
  display: flex;
  gap: 5px 10px;
  flex-wrap: wrap;
  margin: 10px 0;
}
.scr-recent .product-categories a{
  color: var(--black);
  font-size: 13px;
  transition: 0.4s all;
}
.scr-recent .product-categories a:hover{
  color: var(--secondary);
}
.shop-posts{
  gap: 70px 0;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button{
  background: var(--black);
  color: var(--white);
  border: 0;
  border-radius: 0;
  min-height: 38px;
  transition: 0.4s all;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
}
.woocommerce-cart .product-name a{
  color: var(--secondary);
}
.woocommerce-cart .product-price{
  color: var(--black);
  font-size: 13px;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:disabled[disabled]:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:disabled[disabled]:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:disabled[disabled]:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:disabled[disabled]:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit:disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit:disabled[disabled]:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:disabled[disabled]:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:disabled[disabled]:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:disabled[disabled]:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:hover{
  background: var(--secondary);
  color: var(--white);
}
#add_payment_method table.cart td.actions .coupon .input-text, .woocommerce-cart table.cart td.actions .coupon .input-text, .woocommerce-checkout table.cart td.actions .coupon .input-text{
  width: fit-content;
}
#add_payment_method .wc-proceed-to-checkout a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce-checkout .wc-proceed-to-checkout a.checkout-button,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt{
  background: var(--secondary);
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:hover{
  background: var(--black);
}
.woocommerce-cart input,.woocommerce-cart textarea,.woocommerce-cart select,.woocommerce-checkout input,.woocommerce-checkout textarea,.woocommerce-checkout select,.select2-container .select2-dropdown, .select2-container .select2-selection{
  border: 1px solid var(--secondary)!important;
  padding: 10px!important;
  background: none!important;
  border-radius: 0!important;
}
button[name="update_cart"]{
  float: right!important;
}
.woocommerce table.shop_table{
  border-radius: 0;
}
.woocommerce textarea{
  height: 200px!important;
}
.woocommerce{
  text-align: left;
}
.select2-container.select2-container--open .select2-dropdown--below{
  background: var(--white)!important;
}
.woocommerce h3{
  text-transform: uppercase;
  font-size: 18px;
  font-weight: bold;
  width: 100%;
}
#order_review_heading{
  margin-top: 50px
}
.woocommerce-cart a,.woocommerce-checkout a{
  color: var(--secondary);
}
.checkout_coupon{
  display: flex;
  gap: 15px;
  align-items: center;
}
.checkout_coupon p{
  width: 100%!important;
  margin: 0;
}
.checkout_coupon button{
  width: 100%;
  height: 38px;
}
.checkout_coupon .clear{
  display: none;
}
.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register{
  background: var(--white);
  border: 0;
  margin-top: 10px!important;
  border-radius: 0;
}
.woocommerce-error, .woocommerce-info, .woocommerce-message{
  margin-bottom: 15px;
}
.woocommerce #payment #place_order, .woocommerce-page #payment #place_order{
  float: inherit;
  padding: 15px;
  width: 100%;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__submit{
  width: 100%;
}
.woocommerce-thankyou-order-received{
  text-align: center;
  background: var(--secondary);
  padding: 10px;
  color: var(--white);
  font-size: 18px;
}
.woocommerce-thankyou-order-details{
  display: flex;
  justify-content: center;
  gap: 50px;
  font-size: 18px;
}
.woocommerce ul.order_details li{
  float: inherit;
  padding: 0;
  margin: 0;
  border: 0;
}
.course-btn{
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
  cursor: pointer;
}
.course-content .nav {
  gap: 10px 50px;
}
.course-btn::after {
  content: "";
  bottom: 0;
  left: 0;
  width: 0;
  transition: 0.4s all;
  background: var(--black);
  height: 1px;
  position: absolute;
}
.course-btn.active::after {
  width: 100%;
}
.course-title{
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.course-list ul{
  display: grid;
  grid-template-columns: repeat(2,auto);
  gap: 20px;
  font-size: 18px;
}
.course-list ul li{
  padding-left: 15px;
  position: relative;
}
.course-list ul li::before{
  content: "*";
  color: var(--secondary);
  position: absolute;
  top: 0;
  left: -3px;
  font-size: 25px;
}
.course-content h2,.course-content h3,.course-content h4,.course-content h5,.course-content h6{
  color: var(--black);
  margin-bottom: 20px;
}
.course-acca h3{
  font-size: 18px;
  margin: 0;
}
.course-acca h3 div{
  margin: 0;
  color: var(--secondary);
  background: #cf868f1a;
  border: 1px solid var(--secondary);
  padding: 15px;
  cursor: pointer;
  position: relative;
  border-radius: 10px;
  padding-right: 60px;
  font-weight: 600;
}
.course-acca h3 div::before{
  position: absolute;
  content: "";
  border-bottom: 2px solid var(--secondary);
  border-right: 2px solid var(--secondary);
  top: 12px;
  right: 15px;
  transform: scale(0.7) rotate(45deg);
  width: 20px;
  height: 20px;
  transition: 0.4s all;
}
.course-acca h3 div[aria-expanded="true"]{
  background: var(--secondary);
  color: var(--white);
  border: 2px solid var(--secondary);
}
.course-acca h3 div[aria-expanded="true"]::before{
  transform: rotate(225deg) scale(0.7) ;
  top: 18px;
  border-bottom: 2px solid var(--white);
  border-right: 2px solid var(--white);
}
.course-acca-body{
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 5px;
}
.course-acca-body ul{
  display: flex;
  flex-direction: column;
}
.course-acca-body ul li{
  padding: 15px;
  font-size: 18px;
  position: relative;
  display: flex;
  border-bottom: 1px solid #f3d2d6d8;
  gap: 10px 50px;
  justify-content: space-between;
  cursor: pointer;
  align-items: center;
  transition: 0.4s all;
}
.course-acca-body ul li:hover{
  background: #cf868f1a;
}
.course-acca-body ul li:last-child{
  border: 0;
}
.bi-play-btn-fill{
  width: 20px;
  height: 20px;
  color: #999;
}
.eye-class,.lock-class{
  width: 20px;
  height: 20px;
  color: #999;
}
.eye-class{
  display: none;
}
.course-acca-title{
  display: flex;
  gap: 10px;
  align-items: center;
  flex: 1;
  color: #999;
}
.course-acca-times{
  display: flex;
  font-size: 14px;
  color: #999;
  gap: 30px;
  align-items: center;
}
.course-videobox video{
  aspect-ratio: 16/10;
  width: 100%;
  height: auto;
  background: var(--black);
  object-fit: contain;
}
.course-videobox video[poster]{
  object-fit: cover;
}
.courses-acca{
  display: flex;
  gap: 10px 0;
  flex-direction: column;
}
.course-price-box{
  display: flex;
  gap: 10px 20px;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 18px;
  font-weight: bold;
  color: #000;
}
.cp-b1-head .course-price-box{
  font-size: 35px;
}
.cp-b1-head .course-price-box ins{
  font-size: 35px;
}
.cp-b1-head .course-price-box del{
  font-size: 18px;
}
.discount-badge{
  font-size: 18px;
}
.course-price-box-inline ins{
  text-decoration: none;
  position: relative;
  bottom: -5px;
  color: var(--secondary);
}
ins{
  text-decoration: none;
}
.course-price-box-inline{
  display: flex;
  gap: 15px;
  align-items: flex-end;
  flex-direction: row-reverse;
}
.course-price-box-inline ins .woocommerce-Price-amount{
  font-size: 35px;
}
.course-addtocart p{
  padding: 0!important;
  border: 0!important;
  margin: 20px 0 0!important;
}
.course-addtocart p a{
  width: 100%!important;
  font-size: 18px!important;
  border-radius: 0 20px 0 20px!important;
  padding: 20px!important;
}
.cp-b1{
  border: 1px solid var(--secondary);
  border-radius: 15px;
  overflow: hidden;
}
.cp-b1-head{
  background: #c6868f26;
  padding: 20px 30px 30px;
}
.cp-list{
  padding: 30px;
  display: flex;
  font-size: 16px;
  flex-direction: column;
  gap: 15px;
}
.cp-list li{
  display: flex;
  align-items: center;
  gap: 10px;
}
.cp-list svg{
  width: 20px;
  color: var(--secondary);
  height: 20px;
}
.course-single .col-lg-8{
  padding-right: 50px;
}
.cp-tags{
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.cp-tags a{
  display: block;
  border: 1px solid var(--black);
  font-size: 14px;
  padding: 8px 10px;
  background: none;
  transition: 0.4s all;
  color: var(--black);
}
.cp-tags a:hover{
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
}
.cp-title{
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}
.cp-lists{
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 16px;
}
.cp-lists li{
  padding-left: 20px;
  position: relative;
}
.cp-lists li::before{
  font-size: 30px;
  color: var(--secondary);
  content: "*";
  position: absolute;
  left: 0;
  top: 0;
}
.cp-b2{
  padding: 30px;
  border-radius: 15px;
  border: 1px solid var(--secondary);
  background: #cf868f1a;
}
.course-slide .price-text{
  flex-direction: row-reverse;
  display: flex;
  gap: 10px;
  justify-content: start;
}
.woo_fp .course-acca-title,.woo_fp .course-acca-times,.woo_fp .eye-class{
  color: var(--black);
}
.woo_fp .eye-class{
  color: var(--secondary);
  display: block;
}
.woo_fp .lock-class{
  display: none;
}
.woo_fp .bi-play-btn-fill{
  color: var(--secondary);
}
.woocommerce-MyAccount-content{
  font-size: 16px;
}
.woocommerce-MyAccount-navigation{
  padding: 20px;
  border: 1px solid var(--secondary);
}
.woocommerce-MyAccount-navigation ul li{
  border-bottom: 1px solid #f3d2d6d8;
  padding-bottom: 10px;
}
.woocommerce-MyAccount-navigation ul li:last-child{
  border: 0;
}
.woocommerce-MyAccount-navigation ul li a{
  color: var(--secondary);
  transition: 0.4s all;
}
.woocommerce-MyAccount-navigation ul li a:hover{
  color: var(--black);
}
.woocommerce-MyAccount-navigation ul{
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 16px;
  text-transform: uppercase;
}
.woocommerce-MyAccount-navigation ul .is-active a{
  color: var(--black);
}
.woocommerce-MyAccount-content {
  padding: 20px;
  border: 1px solid var(--secondary);
}
.woocommerce-MyAccount-content a{
  color: var(--secondary);
}
.woocommerce-account .addresses .title .edit{
  float: inherit;
  margin-bottom: 20px;
  display: block;
}
.woocommerce-MyAccount-content input{
  border: 1px solid var(--secondary)!important;
  background: none!important;
  padding: 10px!important;
  border-radius: 0!important;
}
.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register{
  background: none;
  padding: 20px;
  border: 1px solid var(--secondary);
  background: #e0bec30f;
}
.woocommerce form.login input, .woocommerce form.register input{
  border: 1px solid var(--secondary)!important;
  background: none!important;
  padding: 10px!important;
  border-radius: 0!important;
}
.woocommerce form.login a, .woocommerce form.register a{
  color: var(--secondary);
  transition: 0.4s all;
}
.woocommerce form.login a:hover, .woocommerce form.register a:hover{
  color: var(--black);
}
.woocommerce form.login button, .woocommerce form.register button{
  width: 100%;
  margin: 20px 0;
}
.show-password-input{
  width: fit-content!important;
  margin: 0!important;
}
.woocommerce form.login , .woocommerce form.register {
  margin: 30px 0!important;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
} 
.woocommerce form.login p, .woocommerce form.register p{
  width: 100%;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme{
  display: flex!important;
  gap: 5px!important;
  align-items: center!important;
}
.resmenu-icon{
  display: none;
  align-items: center;
  justify-content: center;
}
.resmenu-icon span{
  display: block;
  width: 50px;
  background: var(--secondary);
  height: 1px;
  transition: 0.4s all;
}
.resmenu{
  position: absolute;
  top: 108px;
  left: 0;
  background: #ffffffe0;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 30px 8px;
  z-index: 100;
  width: 100%;
  font-size: 18px;
  display: none;
}
.resmenu ul{
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.resmenu ul li a{
  color: var(--secondary);
}
.menu-active .line1{
  transform: rotate(45deg);
}
.menu-active .line2{
  transform: rotate(-45deg);
  margin-top: -6px;
}
.comment-form-url{
  display: none;
}
.cmbox{
  margin-top: 100px;
}
.cmbox #comments{
  margin-bottom: 30px;
}
.cmbox .comment-author img{
  width: 90px;
  aspect-ratio: 1;
  height: auto;
  margin-right: 20px;
}
.cmbox .fn{
  font-size: 18px;
  font-weight: bold;
  font-style: normal;
  text-transform: uppercase;
  position: relative;
  top: -5px;
}
.cmbox .says{
  display: none;
}
.cmbox .comment-awaiting-moderation{
  background: var(--secondary);
  padding: 10px;
  color: var(--white);
  font-style: normal;
  font-size: 12px;
  width: fit-content;
  margin: 10px 0 -5px;
}
.cmbox .comment-meta{
  position: absolute;
  top: 50px;
  left: 112px;
} 
.cmbox .comment-meta a{
  color: var(--black);
  font-size: 16px;
}
.cmbox ul,.cmbox ol{
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.cmbox li{
  position: relative;
  border-bottom: 1px solid #555;
}
.cmbox li:last-child{
  border: 0;
}
.cmbox li p{
  font-size: 16px;
  margin: 20px 0;
}
.cmbox .reply{
  display: none;
}
.cmbox #respond{
  margin-top: 100px;
}
.cmbox .fn a{
  color: var(--black);
}
.cmbox .children{
  margin: 20px auto 0 50px;
}
.cmbox .logged-in-as a{
  color: var(--secondary);
}
.related-product-box .product-price{
  text-align: right;
}
.course-archives .row{
  gap: 24px 0;
}
.courses-head{
  padding: 300px 0 200px;
  color: var(--white);
  margin-top: -128px;
  position: relative;
}
.ch-flex a{
  display: flex;
  gap: 15px;
  align-items: center;
  text-transform: uppercase;
  color: var(--white);
  font-size: 18px;
}
.ch-flex{
  margin-bottom: 10px;
}
.courses-head h1{
  font-family: "Edensor";
  text-transform: uppercase;
  font-size: 100px;
}
.courses-head .container{
  position: relative;
  z-index: 10;
}
.courses-head::after{
  content: "";
  background: #0005;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}







/* maincontent */
.maincontent blockquote{
  padding: 30px;
  margin: 20px 0;
  background: #ffffff52;
  border: 1px solid var(--secondary);
  color: var(--secondary)
}
.maincontent p{
  font-size: 18px;
  white-space: pre-line;
  margin-bottom: 0;
  line-height: 1.5;
}
.maincontent a{
  color: var(--primary);
  transition: 0.4s all;
  font-weight: bold;
  text-decoration: underline;
}
.maincontent a:hover{
  color: var(--secoundary);
}
.maincontent .aligncenter{
  display: block;
  margin: 20px auto;
}
.maincontent .alignleft{
  display: block;
  margin: 20px auto 20px 0;
}
.maincontent .alignright{
  display: block;
  margin: 20px 0 20px auto;
}
.maincontent img{
  margin: 30px 0;
  max-width: 100%;
  display: block;
}
.maincontent ul{
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 16px;
  margin: 30px auto;
}
.maincontent li{
  padding-left: 20px;
  position: relative;
}
.maincontent li::before{
  content: '*';
  color: var(--secondary);
  font-size: 25px;
  position: absolute;
  left: 0;
  top: -1px;
}
.maincontent ol{
  padding: 0 15px 0 0;
  display: flex;
  gap: 5px 0;
  flex-direction: column;
  margin: 20px 0;
}
.maincontent ol li{
  list-style: decimal!important;
}
.maincontent .wp-video{
  margin: 20px auto;
  overflow: hidden;
  width: 100%!important;
}
/* maincontent */


@media(max-width:1500px){
  .mainmenu nav ul{
    gap: 0 40px;
  }
  .mainmenu{
    gap: 0 50px;
  }
  .tours-slider{
    padding: 0 400px;
  }
}
@media(max-width:1400px){
  .hero-slide-title h1{
    font-size: 130px;
  }
  .video-slider{
    padding: 0 200px;
  }
  .contact-page h1,.single-team-hello{
    font-size: 130px;
  }
  .other-imgbox,.iframebox,.single-team-hello{
    margin-top: -70px;
  }
  .team-page{
    margin-top: 70px;
  }
  .tours-slider{
    padding: 0 300px;
  }
  .video-retreats h2{
    font-size: 130px;
  }
}
@media(max-height:1000px){
  .hero-slide-title h1{
    font-size: 100px;
  }
}
@media(max-width:1300px){
  .mainmenu nav ul{
    gap: 0 30px;
  }
  .mainmenu{
    gap: 0 30px;
  }
}
@media(max-width:1200px){
  .mainmenu nav ul{
    gap: 0 20px;
  }
  .menubar{
    padding: 30px;
  }
  .introimgbox .introimg1{
    width: calc(100% - 100px);
  }
  .introimgbox .introimg2{
    top: 100px;
    width: calc(100% - 150px);
  }
  .courses-hero h1{
    font-size: 70px
  }
  .course-single .col-lg-8{
    padding-right: 12px;
  }
  .cp-b1-head .course-price-box ins{
    font-size: 25px;
  }
  .cp-b1-head{
    padding: 15px 15px 25px;
  }
  .cp-list{
    padding: 15px;
  }
  .product-details{
    padding-left: 12px;
  }
  .product-images{
    align-items: center;
  }
  .product-intro .row,.related-products .row{
    gap: 50px 0;
  }
  .menu-items{
    gap: 0 20px;
  }
  .courses-head h1{
    font-size: 70px;
  }
  .courses-head{
    padding: 300px 0 200px;
  }
}
@media(max-width:992px){
  .mainmenu{
    display: none;
  }
  .hero-slide-title h1{
    font-size: 80px;
  }
  .intro .row{
    gap: 100px 0;
  }
  .mytitle{
    font-size: 24px;
  }
  .padd{
    padding: 50px 0;
  }
  .intro-slide .row{
    gap: 50px 0;
  }
  .video-slider{
    padding: 0 100px;
  }
  .videobox::after{
    transform: translate(-50%, -50%) scale(0.8);
  }
  .items .row{
    gap: 50px 0;
  }
  .contact-formbox{
    width: 100%;
    padding: 0 50px;
  }
  .contact .row{
    gap: 50px 0;
  }
  footer{
    padding: 50px;
  }
  .footerflex{
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .footerbox{
    width: 100%;
  }
  .f1{
    flex: 1;
    width: 100%;
    padding: 0;
  }
  .footercopybox{
    flex-direction: column;
    margin-top: 80px;
    align-items: flex-start;
  }
  .footer-box form{
    margin-top: 30px;
  }
  .fct hr{
    width: 60px;
  }
  .hero .swiper-button-prev{
    display: none;
  }
  .hero .swiper-button-next{
    display: none;
  }
  @keyframes fadeInRight {
    from {
      transform: inherit;
      opacity: 0;
    }
    to {
      transform: inherit;
      opacity: 1;
    }
  }
  .hero-slide{
    align-items: center;
    padding: 128px 8px 120px;
  }
  .menubar{
    padding: 20px;
  }
  .hero{
    margin-top: -108px;
  }
  .introimgbox .introimg2{
    left: 12px;
    top: 130px;
    width: calc(100% - 40%);
  }
  .introimgbox .introimg1{
    width: calc(100% - 30%);
  }
  .gallery-slider{
    padding: 0 50px;
  }
  .marquee-container{
    font-size: 30px;
  }
  .contact-page h1{
    font-size: 90px;
  }
  .other-imgbox{
    margin-top: -50px;
  }
  .about-text{
    font-size: 20px;
  }
  .brands{
    padding: 50px 50px 100px;
  }
  .brand-grid{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .items {
    padding-top: 100px;
  }
  .iframebox{
    margin-top: -50px;
  }
  .contact-info .row{
    gap: 50px 0;
  }
  .st-introbox2b2{
    padding: 0 50px;
  }
  .intro {
    overflow: hidden;
  }
  .team h1{
    text-align: center;
  }
  .team h1 span{
    left: inherit;
  }
  .team {
    overflow: hidden;
  }
  .vector1{
    display: none;
  }
  .team h1{
    font-size: 100px;
  }
  .team-box{
    margin-top: 50px;
    margin-bottom: 100px;
  }
  .team-box .col-lg-4:nth-child(3n + 2){
    position: relative;
    top: inherit;
  }
  .team-box .col-lg-4:nth-of-type(4n+3) .team-imgbox,
  .team-box .col-lg-4:nth-of-type(4n+4) .team-imgbox {
    border-radius: 0;
  }
  .team-box .row{
    gap: 50px 0;
  }
  .bread{
    background-position: calc(100% + 250px) center;
  }
  .bread2{
    background-position: calc(100% + 300px) center;
  }
  .bread3{
    background-position: calc(100% + 300px) center;
  }
  .padd3{
    padding: 100px 0;
  }
  .blog-post h2, .blog-post h1{
    font-size: 24px;
  }
  .blog-posts .row{
    gap: 50px 0;
  }
  .author-box2{
    padding: 40px 20px;
    flex-direction: column;
  }
  .author-box2 img{
    width: 100%;
  }
  .author-box1 img{
    width: 250px;
    max-width: 100%;
    border-top-right-radius: 120px;
  }
  .ret-arch img{
    height: 400px;
    object-fit: cover;
  }
  .ret-arch h1{
    margin-top: -50px;
  }
  .tours-slider{
    padding: 0;
  }
  .video-retreats h2{
    font-size: 70px;
    margin-bottom: -30px;
  }
  .videobox img{
    aspect-ratio: 16/10;
    object-fit: cover;
  }
  .video-retreats{
    padding: 50px 0;
  }
  .video-retreats p{
    font-size: 24px;
  }
  .course-login h1{
    font-size: 30px;
  }
  .course-login p{
    font-size: 15px;
  }
  .mybtn{
    font-size: 11px;
  }
  .courses-hero .row{
    flex-direction: column-reverse;
  }
  .courses-hero img{
    width: 400px!important;
    max-width: 100%!important;
    margin: 0 auto 50px;
    display: block;
  }
  .courses-hero{
    height: auto;
    display: block;
    padding-bottom: 50px;
    text-align: center;
  }
  .courses-hero .mybtn{
    display: block;
    margin: 0 auto;
  }
  .courses-area .swiper-slide{
    width: 130px;
  }
  .rc-slide h3{
    font-size: 15px;
  }
  .accordion-button::after{
    scale: 1;
  }
  .accordion-button:not(.collapsed)::after{
    top: -3px;
  }
  .faq .accordion-body{
    font-size: 13px;
  }
  .faq h3 div{
    font-size: 16px;
  }
  .course-single .row{
    gap: 50px 0;
  }
  .myshoprow{
    gap: 50px 0;
  }
  .product-tabs-box .nav{
    gap: 10px 15px;
  }
  .product-images{
    flex-direction: column-reverse;
  }
  .product-gallery{
    display: flex;
    justify-content: center;
    flex-direction: row;
    width: 100%;
  }
  .ptb-btn{
    font-size: 18px;
  }
  .product-title{
    font-size: 24px;
  }
  .related-products h2{
    font-size: 24px;
  }
  .course-list ul{
    display: flex;
    flex-direction: column;
  }
  .resmenu-icon{
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .swiper-slide-active .hero-r2 {
    animation: inherit!important;
    opacity: 1;
  }
  .woocommerce-MyAccount-navigation{
    margin-bottom: 20px;
  }
  .courses-head{
    padding: 200px 0 100px;
    margin-top: -108px;
  }
  .courses-head h1{
    font-size: 50px;
  }
  .team h1{
    font-size: 50px;
  }
  .single-team-hello{
    font-size: 80px;
    margin-top: -40px;
    position: relative;
    top: -30px;
  }
  .singleteam-intro{
    padding-top: 100px;
  }
}
@media(max-width:768px){
  .introimgbox .introimg2{
    top: 100px;
  }
  .courses .nav{
    gap: 20px;
  }
  .intro ul{
    flex-direction: column;
    display: flex;
  }
  .video-slider{
    padding: 0 80px;
  }
  .videobox::after {
    transform: translate(-50%, -50%) scale(0.5);
  }
  .videobox:hover::after {
    transform: translate(-50%, -50%) scale(0.8);
  }
  .contact-page h1{
    font-size: 60px;
  }
  .ret-title{
    margin-bottom: -30px;
  }
  .ret-vector,.ret-slide-vector{
    display: none;
  }
  .ret-single-con ul{
    display: flex;
    flex-direction: column;
  }
  .ret-gallery .col-lg-6:first-child,.ret-gallery .col-lg-6:last-child{
    padding: 0;
  }
  .ret-gallery{
    overflow: hidden;
  }
  .ret-gallery .col-lg-6:last-child img{
    margin-top: 50px;
  }
  .ret-slide p{
    padding: 0;
    margin-top: 50px;
    text-align: center;
    font-size: 20px;
  }
  .ret-slide{
    padding-bottom: 50px;
  }
  .ret-gallery2{
    padding: 50px 12px;
  }
  .rg-1,.rg-2,.rg-1-1,.ret-gallery-flex,.ret-flex{
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }
  .rg-1-2,.rg-2 img{
    width: 100%;
  }
  .instructor .col-lg-7{
    padding-left: 12px;
    margin-top: 50px;
  }
  .inst-hours{
    margin-bottom: 100px;
  }
  .courses-hero h1{
    font-size: 40px;
  }
  .filter-w-price{
    flex-direction: column;
    align-items: inherit;
  }
  #orderby-select{
    width: 100%;
  }
  .singleteam-intro h1{
    margin-top: -40px;
  }
}
@media(max-width:570px){
  .courses .nav{
    font-size: 10px;
  }
  .video-slider{
    padding: 0;
  }
  .blog-slider{
    padding: 0 80px;
  }
  footer{
    padding: 50px 30px;
  }
  .testi-slide{
    padding: 25px;
  }
  .testi-slide{
    min-height: 200px;
  }
  .courses-head h1{
    font-size: 24px;
  }
  .ch-flex a{
    font-size: 15px;
  }
  .ch-flex img{
    width: 15px;
  }
  .courses-head{
    padding: 130px 8px 50px;
  }
}