* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Ubuntu", sans-serif;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Teko", sans-serif;
}

/* common */
.my-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

a {
  text-decoration: none;
}

button {
  border: none;
  cursor: pointer;
  background: transparent;
}

.btn-pri {
  font-family: "Teko", sans-serif;
  background: #f59bb5;
  padding: 7px 48px;
  font-size: 20px;
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
  transition: all 0.4s ease;
}
.btn-pri.less-padding {
  padding: 7px 12px;
}

.btn-pri:hover {
  background: #f57da0;
}

/* navbar */
nav {
  padding: 16px 0;
}

nav .my-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1480px;
}

.menu {
  display: flex;
  gap: 35px;
  text-transform: uppercase;
}

.menu a {
  color: #131313;
  font-family: "Teko", sans-serif;
  letter-spacing: 2px;
  font-size: 17px;
  transition: all 0.4s ease;
}

.menu a:hover {
  color: #f59bb5;
}

nav .button-group {
  display: flex;
  gap: 32px;
  align-items: center;
}

/* checkbox */
/* The container */
.custom-check-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  left: -10px;
  top: -10px;
}

/* Hide the browser's default checkbox */
.custom-check-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 14px;
  width: 14px;
  border: 1px solid #c6c2c2;
  background-color: #fff;
}

/* On mouse-over, add a grey background color */
.custom-check-container:hover input ~ .checkmark {
  background-color: #fff;
  border: 1px solid #c6c2c2;
}

/* When the checkbox is checked, add a blue background */
.custom-check-container input:checked ~ .checkmark {
  background-color: #fff;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.custom-check-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.custom-check-container .checkmark:after {
  left: 4.5px;
  top: 0.8px;
  width: 3px;
  height: 7px;
  border: solid #f36b8a;
  border-width: 0px 1px 1px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* slider */
.slider {
  width: 100%;
  height: 870px;
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: 100% 100%;
}

.slide .my-container {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
  max-width: 1440px;
}

.slide .model-img {
  position: absolute;
  right: 0;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.content {
  max-width: 100%;
  color: #131313;
  margin-top: -90px;
}

.tagline {
  font-size: 30px;
  letter-spacing: 2px;
  color: #f59bb5;
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
}

.slide h1 {
  font-size: 50px;
  margin-top: 8px;
  margin-bottom: 16px;
  line-height: 57px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.slide p {
  color: #656565;
  margin-bottom: 24px;
  font-size: 18px;
  max-width: 792px;
  line-height: 30px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background: #f36b8a;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}

.dot-container {
  margin-top: auto;
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1440px;
}

.dots {
  z-index: 1;
  position: absolute;
  bottom: 110px;
  display: flex;
  gap: 15px;
  left: 28px;
}

.dot {
  display: inline-block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  margin-right: 8px;
  cursor: pointer;
  background: #f6bacc;
  position: relative;
}

.dot::after {
  content: "";
  width: 23px;
  height: 23px;
  border-radius: 100%;
  border: 1px solid #707070;
  left: -6px;
  top: -6px;
  position: absolute;
}

.dot.active {
  background: #f36b8a;
}

.arrow-btn {
  display: flex;
  gap: 2px;
}

.arrow-btn .arrow-box {
  background: #f57da0;
  width: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* three img sec */
.three-img-sec .img-container {
  display: flex;
  max-width: 1920px;
  margin: 0 auto;
}

.three-img-sec .img-container .img-box {
  width: 33.3333%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.three-img-sec .img-container .img-box .img-overlay-text {
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  letter-spacing: 2px;
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
}

.three-img-sec .img-container .img-box .img-overlay-text::before {
  content: "";
  position: absolute;
  width: 300%;
  height: 1px;
  background: rgba(255, 255, 255, 0.32);
  left: -300%;
  top: 20px;
}

.three-img-sec .img-container .img-box .img-overlay-text::after {
  content: "";
  position: absolute;
  width: 300%;
  height: 1px;
  background: rgba(255, 255, 255, 0.32);
  right: -300%;
  top: 20px;
}

.three-img-sec .img-container .img-box img {
  width: 100.1%;
  object-fit: cover;
}

.three-img-sec .img-container .title-box {
  text-align: center;
  background-color: #f59bb5;
  font-size: 18px;
  color: #fff;
  padding: 14px;
}

.three-img-sec .img-container .title-box.dark {
  background-color: #f57da0;
}

/* left right sec */
.left-right-sec {
  padding: 120px 0;
  background-image: url(../assets/left-right-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.left-right-sec .container {
  max-width: 1368px;
  margin: 0 auto;
}

.left-right-sec .img-left-box {
  display: flex;
  gap: 55px;
  align-items: center;
  justify-content: center;
}

.left-right-sec .img-left-box .img-boxx {
  width: 44.3%;
  max-width: 686px;
  display: flex;
}

.left-right-sec .img-left-box .img-boxx img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.left-right-sec .img-left-box h4 {
  font-size: 45px;
  font-weight: 500;
  color: #131313;
  text-transform: uppercase;
  line-height: 44px;
}

.left-right-sec .img-left-box p {
  font-size: 14px;
  font-weight: 400;
  color: #808080;
  line-height: 24px;
  margin-top: 16px;
  margin-bottom: 0;
  max-width: 550px;
}

.left-right-sec .img-left-box .right-text {
  text-align: right;
}

.go-right {
  justify-content: end;
}

/* test slider */
/* ===== Testimonial Section ===== */
.testimonial-slider {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  height: 420px;
  background: url("../assets/testimonial-img.png") center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 24px;
}

/* dark overlay */
.testimonial-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* content box */
.testimonial-slider * {
  position: relative;
  z-index: 2;
}

.testimonial-text {
  max-width: 1600px;
  font-family: "Teko", sans-serif;
  color: #fff;
  font-size: 29px;
  line-height: 35px;
  text-align: center;
  margin-bottom: 10px;
  margin-top: 14px;
  letter-spacing: 2px;
}

.testimonial-author {
  display: block;
  text-align: center;
  color: #f59bb5;
  letter-spacing: 2px;
  font-size: 20px;
}

/* dots */
.testimonial-dots {
  margin-top: 30px;
  text-align: center;
}

.t-dot {
  width: 18px;
  height: 18px;
  display: inline-block;
  border: 5px solid #fff;
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
  background: #fcdee7;
}

.t-dot.active {
  background: #f59bb5;
}

/* our-classes-sec */
.our-classes-sec {
  padding: 100px 24px;
}

.our-classes-sec .container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

h2.title-header {
  font-size: 45px;
  font-weight: 500;
  color: #131313;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

p.sub-heading {
  font-size: 18px;
  color: #808080;
  text-align: center;
}

.classes-grid-row .classes-box {
  display: flex;
  align-items: stretch;
}

.classes-grid-row .classes-box .on-show-more.active {
  padding: 12px;
}
.classes-grid-row .classes-box {
  position: relative;
}
.classes-grid-row .classes-box .left {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #fbfbfb;
  justify-content: center;
  padding: 55px;
  max-width: 330px;
}
.on-show-more p {
  color: #707070 !important;
  line-height: 24px !important;
}
/* Fullscreen overlay */
.on-show-more {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 9999;

  padding: 60px 20px;
  overflow-y: auto;

  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: all 0.4s ease;
  background: #00000085;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content-pop-box {
  width: 360px;
  background: #f3f4f5;
  padding: 16px;
  position: relative;
  padding-right: 50px;
}

/* Active state */
.on-show-more.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Close button */
.close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 20px;
  cursor: pointer;
  font-weight: bold;
  background: #ffffff;
  width: 28px;
  height: 28px;
  justify-content: center;
  align-items: center;
  display: flex;
  border-radius: 100%;
  color: rgb(245, 125, 160);
}

/* Optional: prevent background scroll */
body.no-scroll {
  overflow: hidden;
}

.classes-grid-row .classes-box .left .arrow-btn .btn-pri {
  padding: 10px 20px;
  font-size: 16px;
}

.classes-grid-row .classes-box .left h5 {
  font-size: 28px;
  font-weight: 500;
  color: #212121;
  text-transform: uppercase;
}

.classes-grid-row .classes-box .left h6 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 12px;
  color: #f36b8a;
}

.classes-grid-row .classes-box .left p {
  font-size: 16px;
  font-weight: 400;
  color: #707070;
  line-height: 20px;
  margin-bottom: 10px;
}

.classes-grid-row .classes-box .right {
  display: flex;
}

.classes-grid-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 70px;
}

.classes-box:hover .left {
  background: #f59bb5;
}

.classes-box:hover .left h5,
.classes-box:hover .left p {
  color: #fff;
}

.classes-box:hover .left .arrow-btn .btn-pri {
  background: #fff;
  color: #000000;
}

.classes-box:hover .left .arrow-btn .arrow-box {
  background: #fff;
}

.classes-box:hover .left .arrow-btn .arrow-box img {
  filter: invert(1);
}

.our-classes-sec .row-2 {
  margin-top: 70px;
}

.our-classes-sec .row-2 .arrow-btn {
  justify-content: center;
}

/* discover-sec */
.discover-sec {
  padding: 100px 24px;
  background: #f8f8f8;
}

.discover-sec .container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

.dis-box .dis-img {
  display: inline-flex;
  padding: 20px;
  border-radius: 100%;
  border: 1px dashed #707070;
  background: #f8f8f8;
}

.dis-box .dis-content {
  margin-top: 32px;
}

.dis-box .dis-content h5 {
  font-size: 35px;
  font-weight: 500;
  text-align: center;
  color: #212121;
  text-transform: uppercase;
}

.dis-box .dis-content p {
  font-size: 16px;
  line-height: 25px;
  text-align: center;
  color: #808080;
}

.dis-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 290px;
  position: relative;
  z-index: 2;
}

.discover-grid-row {
  margin-top: 110px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.discover-grid-row::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 1px;
  border-bottom: 1px dashed #707070;
  left: 10%;
  top: 33%;
  z-index: 1;
}

.discover-sec .row-2 {
  margin-top: 70px;
}

.discover-sec .row-2 .arrow-btn {
  justify-content: center;
}

/* shop */
.shop {
  padding: 80px 24px;
  text-align: center;
}

/* Hide radios */
.shop input {
  display: none;
}

/* Tabs */
.tabs {
  display: inline-flex;
  gap: 10px;
  margin-bottom: 60px;
  margin-top: 32px;
}

.tabs label {
  padding: 10px 48px;
  background: #f6f6f6;
  cursor: pointer;
  font-size: 24px;
  letter-spacing: 2px;
  font-family: "Teko", sans-serif;
  max-width: 190px;
}

#apparel:checked ~ .tabs label[for="apparel"],
#equipment:checked ~ .tabs label[for="equipment"],
#selfcare:checked ~ .tabs label[for="selfcare"],
#incentives:checked ~ .tabs label[for="incentives"] {
  background: #f57da0;
  color: #fff;
}

/* Products grid */
.products {
  display: grid;
  max-width: 1365px;
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* Product card */
.product img {
  width: 100%;
  height: 380px;
  object-fit: contain;
  background: #fafafa;
}

.product p {
  margin-top: 15px;
  font-size: 25px;
  letter-spacing: 1px;
  color: #656565;
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
}

/* Filtering */
.product {
  display: none;
  cursor: pointer;
  position: relative;
}

.product .img-hover {
  position: absolute;
  left: 0;
  top: 0;
}

.product:hover .img-hover {
  opacity: 1;
}

.product:hover .img-default {
  opacity: 0;
}

#apparel:checked ~ .products .apparel,
#equipment:checked ~ .products .equipment,
#selfcare:checked ~ .products .selfcare,
#incentives:checked ~ .products .incentives {
  display: block;
}
/* insta-section */

.insta-section {
  background: #f8f8f8;
  padding: 60px 24px;
  text-align: center;
}

/* Header */
.insta-header img {
  width: 28px;
  margin-bottom: 10px;
}

.insta-header h3 {
  letter-spacing: 2px;
  margin-bottom: 40px;
}

/* Grid */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
  max-width: 1880px;
  margin: 0 auto;
}

/* Item */
.insta-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Hover effect */
.insta-item.video::after {
  content: "";
  position: absolute;
  background-image: url(../assets/play-icon.png);
  background-repeat: no-repeat;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 63px;
  height: 63px;
}

.insta-item:hover::after {
  opacity: 1;
}

.insta-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: opacity 0.3s ease;
}

.img-hover {
  opacity: 0;
}

.insta-item:hover .img-hover {
  opacity: 1;
}

.insta-item:hover .img-default {
  opacity: 0;
}

/* footer */

.site-footer {
  padding: 40px 24px;
  text-align: center;
  background: #fff;
  border-top: 1px solid #eee;
  margin-top: 40px;
}

.footer-logo img {
  width: 70px;
  margin-bottom: 30px;
}

/* Nav */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-bottom: 40px;
}

.footer-nav a {
  font-size: 14px;
  color: #808080;
  line-height: 40px;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-nav a:hover {
  color: #000;
}

/* Social */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.for-mob {
  display: none;
}

/* schedule-sec  */
img.model-img.model-img-4 {
  width: 63%;
  right: -300px;
  top: 0;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.not-home-silder.reationship-banner img.model-img.model-img-4 {
  width: 60%;
  right: auto;
  top: 0;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  left: -300px;
}
.not-home-silder.reationship-banner .my-container {
  justify-content: end;
}

.schedule-sec {
  padding: 80px 0;
}

.schedule-sec .my-container {
  display: flex;
  gap: 24px;
}

.schedule-sec .calender-left {
  width: 60%;
}

.schedule-sec .right-content {
  width: 40%;
}

.tab-change {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.tab-change a {
  color: #131313;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 14px;
  font-family: "Teko", sans-serif;
  display: flex;
  font-weight: 500;
}

.tab-change a.active {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 14px;
  background: #f57da0;
}

.schedule-sec .right-content h6 {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 7px;
  color: #131313;
}

.profile-info-box {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.profile-info-box .info-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  background: #f3f4f5;
}

.profile-info-box .info-box .main-cont {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #131313;
  font-size: 14px;
}

.profile-info-box .info-box .main-cont p span {
  color: #f57da0;
}
.profile-info-box .info-box .main-cont .name-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.profile-info-box .info-box .main-cont .name-info p:last-child {
  color: #656565;
}
.profile-info-box .info-box .date-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.profile-info-box .info-box .date-info {
  font-size: 14px;
  text-align: right;
  color: #131313;
}

.profile-info-box .info-box .date-info p span {
  color: #f57da0;
}

/* coaches-profile-sec */
h2.title-header {
  text-transform: uppercase;
}

.coaches-profile-sec {
  padding: 0 24px 60px;
}

.coaches-profile-sec .container {
  max-width: 1320px;
  margin: 0 auto;
}

.full-profile-box {
  display: flex;
  align-items: start;
  gap: 30px;
  background-color: #f3f4f5;
  padding: 32px;
}

.full-profile-box .img-name {
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: #fff;
  max-width: 200px;
  width: 100%;
}

.full-profile-box .img-name img {
  width: 100%;
  object-fit: cover;
}

.full-profile-box .img-name h5 {
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 2px;
  color: #f57da0;
  text-transform: uppercase;
  padding: 3px;
  width: 100%;
  text-align: center;
  background: #fff;
}

.full-profile-box .coatch-info .details-info-for-coache {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #656565;
}
.full-profile-box .coatch-info .details-info-for-coache ul {
  list-style: inside;
}

.full-profile-box .coatch-info .details-info-for-coache .bold p {
  font-weight: 600;
}

.full-profile-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* calender */

.calendar-wrapper {
  max-width: 1100px;
  margin: auto;
  margin-top: 30px;
}

.calendar-header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #f6f6f6;
  padding: 15px 20px;
  border-bottom: 1px solid #e5e5e5;
}

.calendar-header h2 {
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 500;
  color: #131313;
}

.calendar-header button {
  background: none;
  border: none;
  cursor: pointer;
  color: #ff7b9c;
  font-size: 14px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.day-label {
  text-align: center;
  font-weight: 400;
  padding: 10px 0;
  border-bottom: 1px solid #e5e5e5;
  border-right: 1px dashed #e5e5e5;
}
.calendar-grid .day-label:nth-child(7) {
  border-right: none !important;
}

.day {
  position: relative;
  min-height: 100px;
  border: 1px dashed #e5e5e5;
  padding: 10px;
  font-size: 13px;
}

.day input {
  position: absolute;
  top: 0px;
  left: 0px;
}

.day .date {
  font-weight: bold;
  display: block;
  margin-bottom: 6px;
  margin-top: 20px;
  color: #131313;
}

.day p {
  margin: 0;
  color: #000;
  font-size: 12px;
}

.calendar-grid {
  gap: 0;
}

.day {
  box-sizing: border-box;
}

.day p {
  font-size: 12px;
  line-height: 1.3;
  color: #656565;
}
.day.pink p {
  color: #000;
}

.day.pink {
  background: #f69bb4;
}

/* Column background stripes */
.day.col-pink {
  background-color: #f69bb4;
}

.day.col-white {
  background-color: #ffffff;
}

/* Event override */
.day.pink {
  background-color: #f9a3b6 !important;
}

.heading-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.banner-header {
  width: 100%;
  max-width: 80%;
}

.heading-width {
  width: 100%;
  max-width: 80%;
}

.product-top-detail {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  align-items: center;
}

/* sir aw add krlo  */

.product-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-link:hover {
  text-decoration: none;
}

.qty-plus,
.qty-minus {
  cursor: pointer;
}

/* select size css in product details page  start */
.size-selector {
  width: 100%;
  max-width: 150px;
  padding: 10px 15px;
  margin: 10px 0;
  font-size: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: none;
  cursor: pointer;
  background: white;
  transition: border 0.2s;
  text-align: center;
}

.size-selector:hover {
  border-color: #999;
}

.size-selector:focus {
  border-color: #007bff;
}

.variant-info {
  margin: 10px 0;
  font-size: 14px;
  color: #555;
}

.variant-price {
  font-weight: 600;
  color: #007bff;
  margin-right: 15px;
}

.variant-stock {
  color: #28a745;
  font-size: 13px;
}

.variant-stock.low-stock {
  color: #ff9800;
}

.variant-stock.out-stock {
  color: #dc3545;
}
/* select size css in product details page  end */

.error-message {
  color: #dc3545;
  font-size: 13px;
  margin-top: 3px;
  margin-bottom: 5px;
  min-height: 20px;
}

.error-message-dil {
  color: #dc3545;
  font-size: 13px;
  margin-top: 3px;
  margin-bottom: 5px;
  /* min-height: 20px; */
}

input.error,
select.error {
  border-color: #dc3545 !important;
}

input.error:focus,
select.error:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

/* payment - process css start */
#card-element {
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: white;
  margin-top: 15px;
}

#card-errors {
  color: #fa755a;
  margin-top: 10px;
  font-size: 14px;
}

.payment-form {
  margin: 15px 0;
}
/* payment - process css end */

/* payment sucess page start*/
.payment-success-sec {
  padding: 60px 0;
  text-align: center;
}

.success-box {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #28a745;
  color: white;
  font-size: 40px;
  line-height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.order-details {
  margin: 30px 0;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 6px;
  text-align: left;
}

.actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn-sec {
  padding: 12px 30px;
  border: 2px solid #000;
  text-decoration: none;
  color: #000;
  border-radius: 6px;
  transition: 0.3s;
}

.btn-sec:hover {
  background: #000;
  color: white;
}

.gallery-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.main-image {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-image img {
  width: 100%;

  height: 100%;
  object-fit: cover;
}

.thumbnail-strip {
  display: flex;
  gap: 10px;
}

.thumb {
  width: 130px;
  cursor: pointer;
  border: 1px solid transparent;
}

.thumb:hover {
  border-color: #f57da0;
}

.purchase-details {
  text-align: left;
}

.product-title {
  text-align: left !important;
  letter-spacing: 4px;
  font-weight: 500 !important;
  margin-bottom: 0px !important;
}

.sku {
  color: #656565;
  font-size: 18px;
  margin-top: 8px;
}

.rating-row {
  display: flex;
  gap: 20px;
  align-items: end;
  margin-top: 12px;
}

.stars {
  display: flex;
  gap: 6px;
}

.star {
  width: 24px;
  height: 24px;
}

.reviews-count {
  color: #656565;
  font-size: 18px;
}

.description-short {
  font-size: 18px;
  font-weight: 400;
  color: #656565;
  line-height: 30px;
  margin-top: 54px;
}

.price {
  font-size: 40px;
  font-weight: 400;
  color: #131313;
  margin-top: 30px;
}

.quantity-label {
  font-size: 18px;
  font-weight: 400;
  color: #656565;
  margin-top: 8px;
}

.qty-selector {
  margin-top: 16px;
  border: 1px solid;
  border-color: #eaeaea;
  width: fit-content;
  padding: 16px 16px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.qty-num {
  font-size: 18px;
}

.add-to-bag {
  width: 100%;
  font-size: 24px !important;
  margin-top: 24px;
}

.utility-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
}

.icons-left,
.icons-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Tabs Section */
.product-bottom-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.tabs-nav {
  width: 100%;
  max-width: 1320px;
  display: flex;
  margin-bottom: 30px;
}

.tab-item {
  font-family: "Teko", sans-serif;
  padding: 5px 25px;
  font-size: 34px;
  font-weight: 300;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--text-gray);
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 300;
  position: relative;
}

.tab-item.active {
  background-color: #f59bb5;
  color: white;
}

.badge-count {
  font-family: "Ubuntu", sans-serif;
  background: #ffa500;
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 18px;
  margin-left: 5px;
}

/* Info Table */
.info-table {
  width: 100%;
  max-width: 1320px;
  border-collapse: collapse;
}

.info-table tr td {
  padding: 8px 0;
  font-size: 18px;
  text-align: left;
  border: none;
  font-weight: 500;
  letter-spacing: 2px;
}

.info-table td:first-child {
  width: 240px;
  font-weight: 500;
  text-transform: uppercase;
  color: #131313;
}

/* shop details */
.product-bottom-section {
  max-width: 1320px;
  margin: auto;
}

.tabs-nav {
  display: flex;
  border-bottom: 1px solid #ddd;
  gap: 20px;
}

.badge-count {
  background: #ffa500;
  color: #fff;
  font-size: 16px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 4px;
}

.tab-content {
  width: 100%;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table td {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.info-table td:first-child {
  font-weight: 500;
  width: 24%;
}

.no-reviews {
  color: #777;
  font-size: 14px;
}

section.shop.product-info-sec {
  padding-top: 0;
}

/* buyer sec */
.buyer-info-sec .checkout {
  padding: 40px;
}

.buyer-info-sec .checkout-container {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  background: #fff;
  padding: 30px;
  max-width: 1320px;
  margin: 0 auto;
}

/* LEFT */
.buyer-info-sec .cart-header,
.buyer-info-sec .cart-item {
  display: grid;
  grid-template-columns: 1fr 100px 100px 100px;
  align-items: center;
  gap: 15px;
  font-size: 15px;
}

.buyer-info-sec .cart-header {
  font-size: 15px;
  color: #000;
  margin-bottom: 20px;
  background: #fafafa;
  padding: 10px 20px;
}

.buyer-info-sec .product-name-img {
  display: flex;
  align-items: center;
  gap: 12px;
}

.buyer-info-sec .cart-item {
  border: 1px solid #eee;
  padding: 25px 15px;
  margin-bottom: 15px;
  border-radius: 2px;
}

.buyer-info-sec .cart-item img {
  width: 80px;
}

.buyer-info-sec .item-info h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 2px;
  color: #131313;
  font-family: "Ubuntu", sans-serif;
}

.buyer-info-sec .item-info p {
  font-size: 15px;
  margin-top: 16px;
  color: #131313;
}

.buyer-info-sec .cart-item input {
  width: 80px;
  text-align: center;
  padding: 10px 12px;
  border: 1px solid #707070;
  border-radius: 2px;
}

.buyer-info-sec .item-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.buyer-info-sec .remove {
  cursor: pointer;
  color: #000;
  font-weight: 900;
}

/* Summary */
.buyer-info-sec .summary {
  margin-top: 32px;
  background: #fafafa;
  padding: 40px;
  border-radius: 2px;
}

.buyer-info-sec .summary div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.summary .total {
  font-weight: bold;
  padding-top: 20px;
  border-top: 1px solid #d8d8d8;
  margin-top: 20px;
}

.buyer-info-sec .discount {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.buyer-info-sec .discount input {
  flex: 1;
  padding: 10px;
  border-radius: 3px;
  border: 1px solid #707070;
}

/* RIGHT */
.buyer-info-sec .checkout-right h3 {
  margin-top: 25px;
  font-size: 18px;
  font-weight: 400;
  font-family: "Ubuntu", sans-serif;
  color: #656565;
}
.buyer-info-sec .checkout-right .already-have-account {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 10px;
}
.buyer-info-sec .checkout-right .already-have-account a {
  color: #656565;
  font-size: 15px;
}

.buyer-info-sec .checkout-right input,
.buyer-info-sec .checkout-right select {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border: 1px solid #707070;
  border-radius: 3px;
  height: 44px;
}
.buyer-info-sec .checkout-right input[type="checkbox"],
.buyer-info-sec .checkout-right input[type="radio"] {
  width: auto;
  margin: 0 !important;
}
.buyer-info-sec .checkout-right input[type="radio"] {
  accent-color: #f57da0;
}
.buyer-info-sec .custom-check-container {
  left: 0;
  top: 0;
  margin-top: 16px;
  font-size: 15px;
  font-weight: 300;
  color: #707070;
}
.buyer-info-sec .two-radio-btn .radio {
  margin-top: 0 !important;
}
.buyer-info-sec .two-radio-btn h3 {
  margin-bottom: 20px;
}

.buyer-info-sec .row {
  display: flex;
  gap: 10px;
}

.buyer-info-sec .checkbox,
.buyer-info-sec .radio {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 14px;
}

.buyer-info-sec .radio {
  border: 1px solid #ddd;
  padding: 10px;
}

.buyer-info-sec .radio.active {
  border-color: #f57da0;
}

.buyer-info-sec .steps {
  color: #656565;
  font-size: 20px;
  font-family: "Teko", sans-serif;
  display: flex;
  align-items: center;
  gap: 20px;
}

.buyer-info-sec .steps .active {
  color: #f57da0;
}

.buyer-info-sec .actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.buyer-info-sec .primary {
  background: #f6a5b8;
  color: #fff;
  border: none;
  padding: 14px 30px;
  cursor: pointer;
}

.menu-toggle {
  display: none;
}

.with-icon {
  position: relative;
}
.with-icon img {
  position: absolute;
  right: 50px;
  top: 25px;
}
.with-icon img.drop-down {
  position: absolute;
  right: 50px;
  top: 20px;
}
.with-icon label {
  font-size: 12px;
  font-weight: 300;
  color: #707070;
  position: absolute;
  top: 13px;
  left: 10px;
}
.with-icon-small {
  width: 100%;
}
.with-icon-small img.drop-down {
  right: 10px !important;
}
select {
  /* Standard property */
  appearance: none;
  /* WebKit browsers (Chrome, Safari, Edge, Opera) */
  -webkit-appearance: none;
  /* Firefox */
  -moz-appearance: none;
  /* Internet Explorer 10+ */
  select::-ms-expand {
    display: none;
  }
}

.checkout-right .actions a {
  color: #000;
  font-size: 20px;
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* paymanet  */
.contact-info {
  padding: 24px;
  border: 1px solid #707070;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 300;
  margin-top: 30px;
}
.contact-info .info-detail {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 15px;
  padding: 12px 0;
}
.contact-info .info-detail.border {
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
}
.contact-info .info-detail span {
  color: #707070;
}

.contact-info .info-detail a {
  color: #000;
}

.payment-method-box .card-logo {
  margin-left: auto;
}

.payment-method-box .sub-text {
  font-size: 12px;
  margin-bottom: 24px;
  margin-top: 4px;
}

.payment-method-box .payment-form {
  padding: 16px;
  background: #fafafa;
  border: 1px solid #ddd;
  padding-bottom: 40px;
}

/* program */
.program-banner .banner-header {
  max-width: 100%;
}

.porgram-sec {
  padding: 80px 24px 0px;
}

.program-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
}

/* Card */
.porgram-sec .class-card {
  background: #fff;
  overflow: hidden;
  transition: 0.3s ease;
}

.porgram-sec .card-image {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.porgram-sec .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.porgram-sec .badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #f6a5b8;
  color: #fff;
  font-size: 16px;
  padding: 12px;
}

.porgram-sec .card-content {
  padding: 20px;
  background: #f3f4f5;
}

.porgram-sec .card-content h3 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  font-family: "Ubuntu", sans-serif;
  text-transform: uppercase;
  color: #131313;
}

.porgram-sec .instructor {
  color: #f59bb5;
  font-size: 16px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.porgram-sec .meta {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  color: #656565;
}

.porgram-sec .row-2 {
  justify-content: center;
  width: 100%;
  max-width: 1320px;
  margin: auto;
  margin-top: 60px;
}
.porgram-sec .row-2 .arrow-btn {
  justify-content: center;
}

/* relation sec */
.relation-sec {
  padding: 80px 24px;
}
.coaches-profile-sec.our-voice-sec .container {
  max-width: 1160px;
}
.coaches-profile-sec.our-voice-sec .container .slider-boxx {
  margin-left: auto;
}
.coaches-profile-sec.our-voice-sec {
  margin-top: 60px;
  padding: 0;
}
.relation-sec .our-voice-sec .full-profile-box {
  display: flex;
  justify-content: space-between;
}
.relation-sec .our-voice-sec .full-profile-box .info-boxx {
  display: flex;
  align-items: center;
  gap: 32px;
}
.relation-sec .our-voice-sec .full-profile-box .info-boxx .img-name {
  background-color: #fff;
}
.relation-sec .our-voice-sec .full-profile-box .info-boxx .coatch-info {
  max-width: 360px;
}
.relation-sec
  .our-voice-sec
  .full-profile-box
  .info-boxx
  .coatch-info
  span.tagline {
  font-size: 32px;
  line-height: 30px;
  margin-bottom: 16px;
  display: block;
}
.relation-sec .our-voice-sec .full-profile-box .info-boxx .coatch-info .bold a {
  color: #f36b8a;
  font-weight: 700;
}

.relation-sec .carousel-wrapper {
  width: auto;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}

.relation-sec .carousel-track {
  display: flex;
  transition: transform 0.6s ease;
}

.relation-sec .card {
  min-width: 120px;
  padding: 0px 4px;
  padding-bottom: 40px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
}
.relation-sec .carousel-track {
  transform: translateX(0px) !important;
  justify-content: end;
}
.relation-sec .full-profile-box.right-side-content .carousel-track {
  justify-content: start;
}
.relation-sec .card .icon {
  display: none;
}
.relation-sec .card.active .icon {
  display: block;
}
.relation-sec .card.active .icon img.file-icon {
  position: absolute;
  right: 10px;
  top: 10px;
}

.relation-sec .inner-card {
  width: 100%;
  height: 180px;
  min-width: 118px;
  background: #fde8ee;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transform: scale(0.9);
  transition: 0.4s;
}

.relation-sec .card.active .inner-card {
  opacity: 1;
  transform: scale(1);
  min-width: 200px;
  border: 1px solid #f57da0;
  background: #fbd0dc;
}

.relation-sec .label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #f57da0;
  color: white;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: bold;
}

.relation-sec .icon {
  font-size: 60px;
  color: #f57da0;
}

.relation-sec .dots {
  text-align: center;
  margin-top: 0;
  bottom: 15px;
  gap: 0px;
  width: 100%;
  justify-content: center;
  left: 0;
}

.relation-sec .dot {
  height: 8px;
  width: 16px;
  background: #ccc;
  display: inline-block;
  margin: 0 5px;
  border-radius: 10px;
  transition: 0.3s;
  border: none;
}
.relation-sec .dot::after {
  display: none;
}

.dot.active {
  background: #ff6b9c;
}

.full-profile-box.right-side-content .coatch-info {
  text-align: right;
}
.full-profile-box.right-side-content .slider-boxx {
  margin-left: initial !important;
  margin-right: auto;
}

.hidden {
  display: none;
}
.nav-active-link {
  color: #f57da0 !important;
}

.day-label {
  text-align: center;
  font-weight: 400;
  padding: 10px 0;
  border-bottom: 1px solid #e5e5e5;
  border-right: 1px dashed #e5e5e5;
  background: #f6f6f6;
}

.day {
  position: relative;
  min-height: 100px;
  border: 1px dashed #e5e5e5;
  padding: 10px;
  font-size: 11px;
  background-color: #fbfbfb;
}

/* relatiion ship tabs */
.clips-sec {
  background: #f3f4f5;
  padding: 80px 24px;
}

.clips-sec .clip-container {
  max-width: 1080px;
  margin: auto;
}

/* Category Buttons */
.clips-sec .category-buttons {
  text-align: center;
  margin: 20px 0 40px;
  margin-top: 10px;
}

.clips-sec .category-btn {
  padding: 10px 20px;
  border: none;
  background: #fff;
  cursor: pointer;
  margin: 5px 8px;
  font-family: "Teko", sans-serif;
  transition: 0.3s;
  font-size: 20px;
  letter-spacing: 2px;
  color: #131313;
}

.clips-sec .category-btn.active {
  background: #f57da0;
  color: white;
}

/* Content */
.clips-sec .category-section {
  display: none;
}

.clips-sec .category-section.active {
  display: block;
}

.clips-sec .card {
  background: #fff;
  padding: 30px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.card.img-right {
  justify-content: right;
}

.clips-sec .card img {
  width: 160px;
  height: 200px;
  object-fit: cover;
}

.clips-sec .card h3 {
  color: #f57da0;
  letter-spacing: 2px;
  font-size: 40px;
  font-weight: 400;
  text-transform: uppercase;
}

.clips-sec .card p {
  font-size: 18px;
  color: #656565;
  max-width: 100%;
}

.for-mob-view {
  display: none;
}

.slider.not-home-silder.reationship-banner h1 {
  white-space: nowrap;
}
.relation-sec .card.active .icon img {
  max-width: 60px;
}

/* travel css */
.slider.not-home-silder.travel-banner h1 {
  white-space: nowrap;
}

.slider.not-home-silder.travel-banner img.model-img.model-img-4 {
  width: 72%;
  right: -294px;
  top: 0;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.travel-sec {
  background-color: #fff;
}
.travel-sec .card {
  background-color: #f3f4f5;
}
.travel-sec .category-btn {
  background: #f3f4f5;
}

.travel-sec .card .arrow-box img {
  width: auto;
  height: auto;
}
.travel-sec .card .arrow-btn {
  margin-top: 16px;
}
.travel-sec .card .arrow-btn .btn-pri {
  padding: 7px 32px;
}
.travel-sec .card img {
  width: 420px;
  height: 280px;
  object-fit: cover;
}

.clips-sec.travel-sec .clip-container {
  max-width: 1140px;
  margin: auto;
}
.clips-sec.travel-sec .card p {
  font-size: 16px;
}

.clips-sec.travel-sec .card.img-right {
  text-align: right;
}
.clips-sec.travel-sec .card.img-right .arrow-btn {
  justify-content: right;
}

/* single-page */
.single-page {
  background: #f8f8f8;
  padding-top: 36px;
  padding-bottom: 36px;
}
.single-page .coaches-profile-sec.our-voice-sec {
  margin-top: 0;
}
.single-page .full-profile-box {
  background: transparent;
}
.rel-detail {
  padding: 70px 24px;
}
.rel-detail .content-row {
  max-width: 1100px;
  margin: 0 auto;
}
.rel-detail .content-row h4 {
  color: #f57da0;
  font-size: 40px;
  letter-spacing: 2px;
  font-weight: 400;
  text-transform: uppercase;
}
.rel-detail .content-row p {
  margin-top: 16px;
  color: #656565;
}

.related-articles {
  padding: 40px 24px;
}
.related-articles .related-row {
  max-width: 1100px;
  margin: 0 auto;
}
.related-articles .related-row h4 {
  color: #f57da0;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.related-articles .rel-grid-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 30px;
}
.related-articles .rel-box {
  padding: 24px;
  background-color: #f8f8f8;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.related-articles .rel-box img {
  width: 100%;
}
.related-articles .rel-box h6 {
  color: #f57da0;
  font-size: 28px;
  font-weight: 400;
  line-height: 37px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.related-articles .rel-box p {
  color: #656565;
}

/* img-gallery-sec */
.img-gallery-sec {
  padding: 80px 24px;
}
.img-gallery-sec .gall-row {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.img-gallery-sec .img-gall-box {
  padding: 32px;
  background: #f3f4f5;
}
.img-gallery-sec .img-gall-box h6 {
  color: #f57da0;
  font-size: 40px;
  font-weight: 400;
  line-height: 37px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.img-gallery-sec .img-gall-box p {
  color: #656565;
  margin-top: 12px;
  margin-bottom: 24px;
}
.img-gallery-sec .img-gall-box img {
  width: 100%;
}

/* login */
/* Wrapper */
.login-wrapper {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
}

/* Image */
.auth-sec .image-box {
  display: flex;
}

.auth-sec .image-box img {
  height: 180px;
}

/* Login Card */
.login-card {
  background: #ffffff;
  width: 560px;
  padding: 20px 50px 40px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  border-top: 3px solid #f3628c;
}

.login-card h2 {
  font-weight: 600;
  margin-bottom: 8px;
  color: #0c0c0c;
  text-transform: uppercase;
}

.subtitle {
  font-size: 14px;
  color: #656565;
  margin-bottom: 25px;
}

/* Input */
.input-group {
  text-align: left;
  margin-bottom: 8px;
  position: relative;
}
.input-group span {
  cursor: pointer;
}
.input-group span.icon-img {
  position: absolute;
  right: 8px;
  bottom: 12px;
}

.input-group label {
  font-size: 16px;
  color: #0c0c0c;
  display: block;
  margin-bottom: 6px;
}

.input-group input {
  width: 100%;
  padding: 12px;
  border-radius: 4px;
  border: 1px solid #ddd;
  outline: none;
  transition: 0.3s;
}

.input-group input:focus {
  border-color: #f3628c;
}

/* Forgot */
.forgot {
  font-size: 12px;
  color: #f3628c;
  text-decoration: none;
  display: block;
  text-align: left;
  margin-bottom: 20px;
}

/* Login Button */
.login-card .btn-pri {
  width: 100%;
  margin-bottom: 16px;
}

/* Signup */
.signup-text {
  font-size: 12px;
  color: #656565;
  margin-bottom: 15px;
  text-align: left;
}

.signup-text a {
  color: #f3628c;
  text-decoration: none;
  font-weight: 500;
}

/* Google Button */
.google-btn {
  width: 100%;
  padding: 10px;
  background: #e9e9e9;
  border: none;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 20px;
  text-transform: uppercase;
  font-family: "Teko", sans-serif;
  letter-spacing: 2px;
  color: #131313;
}

.google-btn img {
  width: 16px;
}
.auth-sec {
  position: relative;
  padding: 80px 24px;
}
.top-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: #fce1e9;
  z-index: -1;
}

/* plan */
/* Plan Card */
.plan {
  background: #ffffff;
  border-radius: 4px;
  padding: 16px;
  margin-bottom: 18px;
  border: 1px solid #e0e0e0;
  cursor: pointer;
  transition: 0.3s ease;
}

.plan.active {
  border: 1px solid #f3628c;
}

.plan-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}

.plan h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 2px;
  color: #0c0c0c;
}

.plan p {
  font-size: 16px;
  color: #656565;
  margin-bottom: 10px;
}

.price {
  color: #f3628c;
  font-weight: 700;
  font-size: 20px;
}

.arrow {
  font-size: 18px;
  color: #f48ca8;
}

form .card-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
form .card-details h5 {
  font-size: 16px;
  font-weight: 700;
  color: #0c0c0c;
  font-family: "Ubuntu", sans-serif;
}

.input-group.in-two {
  display: flex;
  gap: 8px;
}
.input-group.in-two .cvc {
  width: 80px;
}

form.forgot .signup-text {
  text-align: center;
}
form.forgot .tick-icon {
  text-align: center;
  margin-bottom: 20px;
}

.scholer-banner p {
  max-width: 600px;
}

.box-title {
  background: #fff;
}
.box-title .banner-box-title-container {
  background: #f3f4f5;
  padding: 40px;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.box-title .banner-box-title-container h2 {
  font-size: 42px;
  font-weight: 500;
  color: #131313;
}
.box-title .banner-box-title-container h3 {
  font-size: 26px;
  font-weight: 400;
  color: #e8a5b8;
  font-family: "Ubuntu", sans-serif;
}

.verification-sec {
  background: #fff;
}
.verification-sec .discover-grid-row {
  margin-top: 110px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  gap: 40px;
}
.verification-sec .discover-grid-row .dis-box {
  max-width: 100%;
}
.verification-sec .discover-grid-row::before {
  display: none;
}

/* benifitis  */
.benefits {
  background: #fff;
  padding: 60px 20px;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Title */
.benefits-title {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 40px;
  color: #222;
}

/* Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Card */
.benefit-card {
  background: #f3f4f5;
  padding: 32px;
  transition: 0.3s ease;
  min-height: 210px;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

/* Card Title */
.benefit-card h3 {
  font-size: 18px;
  font-family: "Ubuntu", sans-serif;
  font-weight: 800;
  margin-bottom: 15px;
  color: #f57da0;
}

/* Card Text */
.benefit-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}
/* T and C */

.conditions-header {
  background: #f3f4f5;
  padding: 60px 20px;
  text-align: left;
}
.conditions-box {
  max-width: 880px;
  margin: 0 auto;
}
.conditions-header .breadcrumb {
  color: #131313;
  font-size: 14px;
  margin-bottom: 10px;
}
.conditions-header .breadcrumb span {
  color: #f57da0;
  font-size: 14px;
  margin-bottom: 10px;
}

.conditions-header h1 {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.conditions-header .description {
  max-width: 880px;
  font-size: 16px;
  color: #656565;
}

/* CONTENT */
.conditions-content {
  max-width: 880px;
  margin: 60px auto;
  padding: 0 20px;
}

/* SECTION */
.conditions .section {
  margin-bottom: 30px;
}

.conditions .section h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #f57da0;
}

.conditions .section p {
  font-size: 16px;
  color: #656565;
}
.conditions .section p a {
  font-size: 16px;
  color: #656565;
  text-decoration: underline;
}

.conditions .section ul {
  padding-left: 18px;
}
.conditions .section ul li a {
  font-size: 16px;
  color: #656565;
  text-decoration: underline;
}
.conditions .section ul li {
  font-size: 16px;
  color: #656565;
  margin-bottom: 6px;
}
.conditions .section ul li span {
  color: #f57da0;
}
.conditions .section p span {
  color: #f57da0;
}

.conditions .sub-title {
  font-size: 36px;
  font-weight: 600;
  margin: 50px 0 20px;
  color: #f57da0;
}
ul.num-li {
  list-style: auto;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 2960px) {
  .my-container {
    max-width: 1320px;
  }

  .slide .my-container {
    max-width: 1320px;
  }

  .slide .model-img {
    width: 50%;
  }

  .tagline {
    font-size: 26px;
  }

  .slide h1 {
    font-size: 46px;
    line-height: 48px;
  }

  .slider {
    height: 760px;
  }

  .slide p {
    font-size: 16px;
    max-width: 720px;
    line-height: 26px;
  }
  .scholer-banner p {
    max-width: 600px;
  }

  .products {
    max-width: 1320px;
  }

  .testimonial-text {
    max-width: 1320px;
    font-size: 26px;
    line-height: 32px;
  }

  .product p {
    font-size: 20px;
  }

  img.model-img.model-img-1 {
    right: -20px;
    top: 80px;
    width: 60%;
  }

  img.model-img.model-img-2 {
    width: 52%;
    right: -40px;
  }

  img.model-img.model-img-3 {
    width: 49%;
    right: -120px;
  }

  .left-right-sec .container {
    max-width: 1242px;
    margin: 0 auto;
  }

  .left-right-sec .img-left-box {
    gap: 0;
  }

  .left-right-sec .img-left-box h4 {
    font-size: 42px;
  }

  .left-right-sec .img-left-box .lft-cont-box {
    left: 36px;
    position: relative;
  }

  .left-right-sec .img-left-box .lft-cont-box.lft-cont-box.right-text {
    right: 0;
    left: -36px;
  }

  .our-classes-sec .container {
    max-width: 1200px;
  }

  .classes-grid-row .classes-box .left {
    padding: 40px;
    max-width: 300px;
  }

  .classes-grid-row .classes-box .right {
    display: flex;
    max-width: 300px;
  }

  .classes-grid-row .classes-box .right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .discover-sec .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
  .discover-sec.verification-sec .container {
    width: 100%;
    max-width: 1240px;
  }

  .dis-box .dis-content h5 {
    font-size: 28px;
  }

  .dis-box .dis-content p {
    font-size: 14px;
    line-height: 21px;
  }

  .discover-sec .row-2 {
    margin-top: 70px;
  }

  .dis-box .dis-img img {
    width: 100%;
  }

  .dis-box .dis-img {
    max-width: 186px;
  }

  .discover-grid-row::before {
    top: 29%;
  }

  .discover-grid-row {
    gap: 70px;
  }

  .tabs label {
    font-size: 18px;
    max-width: 180px;
  }

  .product p {
    font-size: 18px;
  }

  .products {
    max-width: 1200px;
  }

  .product img {
    height: 320px;
  }

  .insta-item {
    max-width: 200px;
  }

  .insta-grid {
    display: grid;
    max-width: 1400px;
    margin: 0 auto;
  }
  .slider.not-home-silder {
    height: 720px;
  }
  .slider.not-home-silder .content {
    margin-top: 0;
  }
}

@media (max-width: 1560px) {
  .slider.not-home-silder {
    height: 620px;
  }
  img.model-img.model-img-4 {
    width: 54%;
    right: -80px;
    top: 0;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }
  .not-home-silder.reationship-banner img.model-img.model-img-4 {
    width: 54%;
    left: -80px;
    right: auto;
    top: 0;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }

  .slide .my-container {
    max-width: 1260px;
  }
  .slide p {
    max-width: 800px;
  }
  .scholer-banner p {
    max-width: 520px;
  }
  .slide h1 {
    font-size: 40px;
    line-height: 42px;
  }
  .porgram-sec {
    padding: 60px 24px 0px;
  }
  .program-container {
    max-width: 1200px;
    gap: 24px;
  }
  .porgram-sec .card-content {
    padding: 16px;
  }
  .porgram-sec .card-content h3 {
    font-size: 15px;
  }
  .porgram-sec .instructor {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .porgram-sec .card-image {
    height: 290px;
  }
  .porgram-sec .meta {
    font-size: 14px;
  }
  h2.title-header {
    font-size: 40px;
    margin-bottom: 10px;
  }
  .clips-sec .clip-container {
    max-width: 1060px;
    margin: auto;
  }
  .clips-sec .card h3 {
    font-size: 32px;
  }
  .clips-sec .card p {
    font-size: 20px;
  }
  .slider.not-home-silder.travel-banner img.model-img.model-img-4 {
    width: 64%;
    right: -80px;
  }
  .rel-detail .content-row h4 {
    font-size: 36px;
  }
  .related-articles .related-row h4 {
    font-size: 36px;
  }
  .related-articles .rel-box h6 {
    font-size: 24px;
    line-height: 28px;
  }
  .img-gallery-sec .img-gall-box h6 {
    font-size: 36px;
  }
}

/* samll desktop */
@media (max-width: 1360px) {
  .slide .model-img {
    position: absolute;
    right: 0;
    width: 50%;
  }

  .menu a {
    letter-spacing: 1px;
    font-size: 16px;
  }

  .menu {
    gap: 24px;
  }

  .btn-pri {
    padding: 7px 32px;
    font-size: 18px;
  }

  .tagline {
    font-size: 20px;
  }

  .slide h1 {
    font-size: 36px;
    line-height: 42px;
  }

  .slide p {
    font-size: 16px;
    line-height: 24px;
  }

  .slider {
    height: 780px;
  }

  .three-img-sec .img-container .img-box .img-overlay-text {
    color: #fff;
    font-size: 16px;
  }

  .left-right-sec .img-left-box h4 {
    font-size: 32px;
    line-height: 34px;
  }

  .left-right-sec {
    padding: 60px 0;
  }

  .left-right-sec .img-left-box p {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-top: 8px;
    max-width: 490px;
  }

  .testimonial-text {
    font-size: 20px;
    line-height: 24px;
  }

  .our-classes-sec {
    padding: 60px 24px;
  }

  h2.title-header {
    font-size: 32px;
    margin-bottom: 0px;
  }

  p.sub-heading {
    font-size: 16px;
  }

  .classes-grid-row .classes-box .left {
    padding: 20px;
  }

  .classes-grid-row .classes-box .left h5 {
    font-size: 24px;
  }

  .discover-sec {
    padding: 60px 24px;
    background: #f8f8f8;
  }

  .dis-box .dis-content h5 {
    font-size: 24px;
  }

  .discover-grid-row {
    margin-top: 60px;
  }

  .dis-box .dis-content p {
    font-size: 14px;
    line-height: 20px;
  }

  .tabs label {
    padding: 10px 28px;
    max-width: 150px;
  }

  .products {
    gap: 20px;
  }

  .insta-grid {
    margin-top: 32px;
  }
  .left-right-sec .img-left-box .img-boxx {
    width: 39.5%;
    max-width: 100%;
    display: flex;
  }
  img.model-img.model-img-4 {
    width: 42%;
    right: -40px;
  }
  .porgram-sec .card-content h3 {
    font-size: 16px;
  }
  .relation-sec
    .our-voice-sec
    .full-profile-box
    .info-boxx
    .coatch-info
    span.tagline {
    font-size: 26px;
    line-height: 28px;
    margin-bottom: 6px;
  }
  .slider.not-home-silder {
    height: 500px;
  }
  .relation-sec .heading-container {
    gap: 16px;
  }
  .related-articles .rel-grid-row {
    gap: 16px;
  }
  .img-gallery-sec .gall-row {
    max-width: 1100px;
  }
}

@media (max-width: 1300px) {
  .insta-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-nav {
    gap: 24px;
  }

  .slide {
    background-size: cover;
  }

  .schedule-sec .my-container {
    flex-direction: column;
  }

  .schedule-sec .calender-left {
    width: 100%;
  }

  .schedule-sec .right-content {
    width: 100%;
  }

  .full-profile-box {
    gap: 16px;
    padding: 16px;
  }

  .full-profile-box .coatch-info .details-info-for-coache p {
    font-size: 14px;
  }

  .schedule-sec {
    padding: 60px 0;
  }

  .tab-change {
    flex-wrap: wrap;
  }
  .left-right-sec .img-left-box p {
    max-width: 420px;
  }
  .left-right-sec .img-left-box .img-boxx {
    width: 33.9%;
  }
  .left-right-sec .img-left-box h4 {
    font-size: 26px;
    line-height: 26px;
  }
  .left-right-sec .container {
    display: flex;
    flex-direction: column;
  }
  .three-img-sec .img-container .img-box .img-overlay-text {
    text-align: center;
  }
  .buyer-info-sec .checkout-container {
    grid-template-columns: 1fr;
  }
  .program-container {
    gap: 24px;
  }
  .relation-sec .card.active .inner-card {
    min-width: 180px;
  }
  .relation-sec .inner-card {
    height: 160px;
  }
  /* .relation-sec .our-voice-sec .full-profile-box {
    flex-direction: column;
  } */
  /* .relation-sec .full-profile-box.right-side-content {
    flex-direction: column-reverse;
  } */
  .coaches-profile-sec.our-voice-sec .container .slider-boxx {
    margin-left: inherit;
  }
  .full-profile-box.right-side-content .slider-boxx {
    margin-right: inherit;
  }
  .slider.not-home-silder {
    height: 500px;
  }
  .slider.not-home-silder .content {
    margin-top: 0;
  }
  .slide h1 {
    font-size: 28px;
    line-height: 30px;
  }
  img.model-img.model-img-4 {
    right: -100px;
    width: 48%;
  }
  .slide .my-container {
    max-width: 1100px;
  }
  .our-classes-sec .container {
    max-width: 940px;
  }
  .classes-grid-row .classes-box .left {
    max-width: 235px;
  }
  .classes-grid-row .classes-box .left h5 {
    font-size: 20px;
  }
  .classes-grid-row .classes-box .left p {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
  }
  .classes-grid-row .classes-box .left {
    padding: 16px;
  }
  .discover-sec .container {
    width: 100%;
    max-width: 1060px;
    margin: 0 auto;
  }
  .discover-sec .container.row-2 {
    margin-top: 40px;
  }
  .products {
    max-width: 1060px;
  }
  .product p {
    font-size: 16px;
  }
  .product img {
    height: 290px;
  }
  .not-home-silder.reationship-banner img.model-img.model-img-4 {
    width: 52%;
    left: -100px;
  }
  .slider.not-home-silder.reationship-banner .content {
    margin-right: 80px;
  }
  .relation-sec .our-voice-sec .full-profile-box .info-boxx {
    gap: 20px;
  }
  .full-profile-box .img-name {
    max-width: 170px;
  }
  .full-profile-box .img-name h5 {
    font-size: 17px;
  }
  .relation-sec .card.active .icon img {
    max-width: 50px;
    margin-top: 16px;
  }
  .relation-sec .card.active .icon img.file-icon {
    margin-top: 0;
  }
  .coaches-profile-sec.our-voice-sec .container {
    max-width: 1060px;
  }
  .clips-sec .clip-container {
    max-width: 980px;
    margin: auto;
  }
  .clips-sec .card h3 {
    font-size: 24px;
  }
  .clips-sec .card p {
    font-size: 16px;
  }
  .clips-sec .category-btn {
    font-size: 17px;
  }
  .slider.not-home-silder.travel-banner img.model-img.model-img-4 {
    width: 58%;
    right: -84px;
  }
  .img-gallery-sec .img-gall-box {
    padding: 16px;
    background: #f3f4f5;
  }
}

@media (max-width: 1160px) {
  img.model-img.model-img-4 {
    right: -30px;
  }
  .slider.not-home-silder.travel-banner img.model-img.model-img-4 {
    width: 58%;
    right: -10px;
  }
  .clips-sec.travel-sec .card p br {
    display: none;
  }
  .travel-sec .card img {
    width: 360px;
    height: 240px;
    object-fit: cover;
  }
  .left-right-sec .img-left-box .img-boxx {
    width: 36.3%;
  }
  .img-gallery-sec .img-gall-box h6 {
    font-size: 24px;
  }
  .img-gallery-sec .img-gall-box p {
    color: #656565;
    margin-top: 0px;
    margin-bottom: 20px;
  }
  .verification-sec .discover-grid-row {
    gap: 20px;
  }
}

/* Tablets */
@media (max-width: 1080px) {
  .insta-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .classes-grid-row .classes-box .left {
    max-width: 100%;
  }

  .classes-grid-row .classes-box .right img {
    width: 100%;
    object-fit: cover;
  }

  .classes-grid-row {
    margin-top: 50px;
    gap: 20px;
  }

  .discover-grid-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .dis-box {
    margin: 0 auto;
  }

  .discover-grid-row::before {
    display: none;
  }

  .dis-box .dis-content {
    margin-top: 16px;
  }

  .shop {
    padding: 60px 24px;
  }

  /* navbar */
  .menu-toggle {
    display: block;
  }
  .menu {
    display: none;
    position: absolute;
    top: 70px;
    right: 24px;
    width: 260px;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    gap: 12px;
    display: none;
    border: 1px solid #eee;

    z-index: 99;
  }
  .menu.active {
    display: flex;
  }

  .for-mob {
    display: block;
  }

  nav .button-group {
    display: flex;
    gap: 16px;
    align-items: center;
  }

  .left-right-sec .img-left-box .lft-cont-box {
    left: 16px;
    position: relative;
  }

  .left-right-sec .img-left-box .lft-cont-box.lft-cont-box.right-text {
    right: 0;
    left: -16px;
  }

  .left-right-sec {
    padding: 60px 24px;
  }

  img.model-img.model-img-1 {
    right: 0;
    top: 230px;
    width: 50%;
  }

  .classes-grid-row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }

  .classes-grid-row .classes-box .left {
    max-width: 100%;
    width: 100%;
  }

  .classes-grid-row .classes-box .right {
    display: flex;
    max-width: 100%;
    width: 100%;
  }
  .tab-item {
    font-size: 20px;
  }
  .info-table tr td {
    padding: 8px 0;
    font-size: 16px;
    letter-spacing: 0px;
  }
  .info-table td:first-child {
    font-weight: 500;
    width: 33%;
  }
  .product-top-detail {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .description-short {
    font-size: 16px;
    margin-top: 20px;
  }
  .buyer-info-sec .checkout-container {
    padding: 0;
  }
  .buyer-info-sec .checkout {
    padding: 40px 24px;
  }
  .not-home-silder.reationship-banner .my-container {
    justify-content: start;
  }
  .porgram-sec {
    padding: 60px 24px 0px;
  }
  .program-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
  }
  .porgram-sec .meta {
    font-size: 14px;
  }
  .relation-sec {
    padding: 60px 24px;
  }
  .slider.not-home-silder.reationship-banner .content {
    margin-left: auto;
  }
  .relation-sec .our-voice-sec .full-profile-box {
    flex-direction: column;
  }
  .relation-sec .full-profile-box.right-side-content {
    flex-direction: column-reverse;
  }
  .slider.not-home-silder {
    height: 420px;
  }
  .slide p br {
    display: none;
  }
  .slide p {
    max-width: 500px;
  }
  .slide p br.no-none {
    display: block;
  }
  .left-right-sec .container {
    gap: 16px;
  }
}

/* tab */
@media (max-width: 860px) {
  img.model-img.model-img-4 {
    right: 0;
  }
  .slide p br {
    display: none;
  }
  .slide p br.no-none {
    display: block;
  }
  .slide p {
    max-width: 420px;
  }
  .related-articles .rel-grid-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .related-articles .rel-box h6 br {
    display: none;
  }
  .rel-detail .content-row h4 {
    font-size: 28px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  /* slider */
  .slide h1 {
    font-size: 26px;
    line-height: 32px;
  }

  .tagline {
    font-size: 18px;
  }

  .content {
    margin-top: -40px;
  }

  .slide p {
    font-size: 14px;
    max-width: 600px;
    line-height: 20px;
  }

  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .insta-item {
    max-width: 240px;
  }

  .tabs label {
    font-size: 18px;
    letter-spacing: 1px;
  }

  .products {
    grid-template-columns: repeat(2, 1fr);
  }

  .tabs {
    margin-top: 32px;
  }

  .footer-nav {
    gap: 18px;
  }

  .slide .model-img {
    display: none;
  }

  .slider {
    height: 480px;
  }

  .dots {
    bottom: 40px;
  }

  .testimonial-slider {
    width: 100%;
    height: 340px;
  }

  .three-img-sec .img-container {
    display: flex;
    flex-direction: column;
  }

  .three-img-sec .img-container .img-box {
    width: 100%;
  }

  .left-right-sec .img-left-box {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
  }

  .left-right-sec .img-left-box .img-boxx {
    width: 100%;
    max-width: 686px;
    display: flex;
  }

  .left-right-sec .img-left-box:nth-child(2) {
    flex-direction: column-reverse;
  }

  .classes-grid-row {
    grid-template-columns: repeat(1, 1fr);
  }

  .discover-grid-row {
    grid-template-columns: repeat(1, 1fr);
  }

  .tabs {
    flex-wrap: wrap;
  }

  .lft-cont-box {
    padding: 0 24px;
  }

  .left-right-sec .img-left-box h4 {
    font-size: 25px;
    line-height: 34px;
  }

  .testimonial-text {
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 1px;
  }

  .full-profile-box {
    flex-direction: column;
  }

  .full-profile-box .img-name h5 {
    font-size: 18px;
  }

  .profile-info-box .info-box {
    padding: 10px;
  }

  .profile-info-box {
    margin-top: 0;
  }

  h2.title-header {
    font-size: 24px;
    margin-bottom: 0px;
    line-height: 26px;
  }

  /* Header */
  .calendar-header {
    padding: 10px;
  }

  .calendar-header h2 {
    font-size: 16px;
  }
  .day-label {
    font-size: 14px;
    border: none;
    font-weight: 500;
  }

  .calendar-wrapper {
    background-color: #f3f4f5;
    padding-bottom: 24px;
  }
  /* Switch to stacked layout */
  /* .calendar-grid {
    display: flex;
    flex-direction: column;
  } */

  /* Hide weekday labels */
  /* .day-label {
    display: none;
  } */

  /* Week wrapper effect */
  /* .day {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: auto;
    padding: 12px;
    border: 1px solid #eee;
  } */

  .day input {
    position: static;
  }

  .day .date {
    font-size: 14px;
    min-width: 32px;
  }

  .day p {
    font-size: 13px;
    display: none;
  }

  .day .date {
    font-weight: bold;
    display: block;
    margin-bottom: 0;
    margin-top: 0;
    text-align: center;
  }

  .day .custom-check-container {
    display: none;
  }

  .left-right-sec .img-left-box .lft-cont-box {
    left: 0;
    position: relative;
    width: 100%;
  }
  .day {
    min-height: 24px;
    width: auto;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    border-radius: 60px;
    margin: 0 auto;
    padding: 0;
  }
  .calendar-grid {
    row-gap: 16px;
  }

  .left-right-sec .img-left-box .lft-cont-box.lft-cont-box.right-text {
    right: 0;
    left: 0;
    width: 100%;
  }

  .left-right-sec .img-left-box h4 {
    font-size: 24px;
    line-height: 32px;
  }

  .left-right-sec .img-left-box p {
    font-size: 16px;
    line-height: 22px;
  }

  img.model-img.model-img-1 {
    position: initial;
    display: block;
  }

  .slide .my-container {
    flex-direction: column;
  }

  .slider {
    height: 680px;
  }

  img.model-img.model-img-1 {
    width: 70%;
    margin-top: 30px;
  }

  .slider .content {
    margin-top: 40px;
  }

  .slide h1 {
    font-size: 24px;
    line-height: 26px;
  }

  .slide p {
    font-size: 16px;
    max-width: 600px;
    line-height: 24px;
  }

  .left-right-sec .img-left-box .lft-cont-box {
    padding: 0;
    text-align: center !important;
  }

  .left-right-sec .arrow-btn {
    justify-content: center;
  }

  .tabs label {
    font-size: 16px;
    letter-spacing: 0px;
    padding: 6px 8px;
  }

  .product p {
    font-size: 16px;
  }

  .slide h1 br {
    display: none;
  }
  .slider.not-home-silder {
    height: 780px;
  }
  .info-table td {
    display: block;
    width: 100%;
  }

  .info-table tr {
    display: block;
    margin-bottom: 6px;
  }
  .tab-item {
    font-size: 18px;
    padding: 4px 16px;
  }
  .thumb {
    width: 80px;
  }
  .left-right-sec .img-left-box p {
    max-width: 100%;
  }
  .buyer-info-sec .cart-header,
  .buyer-info-sec .cart-item {
    grid-template-columns: 1fr;
  }
  .buyer-info-sec .summary {
    margin-top: 24px;
    padding: 20px;
  }
  .buyer-info-sec .checkout-right h3 {
    font-size: 16px;
  }
  .footer-nav {
    gap: 15px;
  }
  .porgram-sec .instructor {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .relation-sec .our-voice-sec .full-profile-box .info-boxx {
    gap: 20px;
  }
  .relation-sec .our-voice-sec .full-profile-box .info-boxx {
    flex-direction: column;
  }
  .relation-sec .our-voice-sec .full-profile-box.right-side-content .info-boxx {
    flex-direction: column-reverse !important;
  }
  .relation-sec .carousel-wrapper {
    width: 100%;
  }
  .relation-sec .carousel-track {
    flex-direction: column;
    width: 100%;
  }
  .relation-sec .card {
    min-width: 100%;
  }
  .relation-sec .card.active .inner-card {
    min-width: 100%;
  }
  .relation-sec .inner-card {
    min-width: 100%;
  }
  .coaches-profile-sec.our-voice-sec .container .slider-boxx {
    width: 100%;
  }
  .relation-sec .card {
    padding-bottom: 10px;
  }
  .relation-sec .inner-card {
    transform: scale(1);
  }
  .relation-sec .dots {
    display: none;
  }
  .full-profile-box.right-side-content .coatch-info {
    text-align: left;
  }
  .slider.not-home-silder .slide .my-container {
    justify-content: center;
    gap: 34px;
  }
  .program-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .clips-sec .card {
    gap: 16px;
    padding: 16px;
  }
  .clips-sec .card img {
    width: 130px;
    height: 160px;
    object-fit: cover;
  }
  .for-mob-view {
    display: block;
  }
  .slide p {
    max-width: 100%;
  }
  .schedule-sec .right-content h6 {
    display: none;
  }
  .full-profile-row {
    margin-top: 30px;
  }
  .full-profile-box .tagline {
    font-size: 24px;
  }
  .slide {
    background-image: none !important;
  }
  .slider.not-home-silder.reationship-banner .content {
    margin-right: 0;
  }
  .slider.not-home-silder.reationship-banner h1 {
    white-space: normal;
  }
  .clips-sec .card p br {
    display: none;
  }
  .slider.not-home-silder.travel-banner h1 {
    white-space: inherit;
  }
  .slider.not-home-silder.travel-banner {
    height: 720px;
  }
  .travel-sec .card {
    flex-direction: column;
  }
  .clips-sec.travel-sec .card.img-right {
    flex-direction: column-reverse;
  }
  .clips-sec.travel-sec .card.img-right {
    text-align: left;
  }
  .clips-sec.travel-sec .card.img-right .arrow-btn {
    justify-content: start;
  }
  .travel-sec .card img {
    width: 100%;
    height: auto;
  }
  .related-articles .rel-box {
    padding: 16px;
  }
  .login-card {
    width: 100%;
    padding: 20px;
  }
  .login-wrapper {
    min-height: 60vh;
  }
  .verification-sec .discover-grid-row {
    grid-template-columns: repeat(1, 1fr);
  }
  .verification-sec .discover-grid-row {
    margin-top: 40px;
  }
  .benefits-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .box-title .banner-box-title-container h2 {
    font-size: 28px;
  }
  .box-title .banner-box-title-container h3 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .products {
    grid-template-columns: repeat(1, 1fr);
  }

  .tagline {
    font-size: 18px;
  }

  .classes-grid-row .classes-box {
    flex-direction: column;
  }

  .classes-grid-row .classes-box.flex-col-rev {
    flex-direction: column-reverse;
  }
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .buyer-info-sec .actions {
    flex-direction: column;
  }
  .buyer-info-sec .checkout-right .already-have-account a {
    font-size: 12px;
  }
  .program-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .slider.not-home-silder {
    height: 870px;
  }
  .full-profile-box .tagline {
    font-size: 24px;
  }
  .full-profile-box .img-name {
    max-width: 100%;
  }
  .full-profile-box .img-name img {
    width: auto;
  }
  .related-articles .rel-grid-row {
    grid-template-columns: repeat(1, 1fr);
  }
}

.launch-txt {
  margin-top: 30px;
  font-size: 14px;
  color: #ababab;
  align-items: center;
  display: flex;
  justify-content: center;
  gap: 8px;
}

/* contact us css ------------------*/

.contact-us {
  background: #f3f4f5;
  padding: 120px 20px;
}
.contact-us .cu-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: start;
}
.contact-us .cu-left h2 {
  font-size: 38px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0a0a0a;
}
.contact-us .cu-left p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 24px;
}
.contact-us .cu-hours {
  background: #fff;
  border-radius: 0px;
  padding: 24px 32px;
  max-width: 520px;
}
.contact-us .cu-hours-section {
  margin-bottom: 18px;
}
.contact-us .cu-hours-section:last-child {
  margin-bottom: 0;
}
.contact-us .cu-hours-title {
  font-size: 26px;
  font-weight: 500;
  color: #0a0a0a;
  margin-bottom: 10px;
  font-family: "Teko", sans-serif;
}
.contact-us .cu-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  color: #717182;
  margin-bottom: 5px;
}
.contact-us .cu-divider {
  border: none;
  border-top: 1px solid #eee;
  margin: 14px 0;
}
.contact-us .cu-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-us .cu-field label {
  display: block;
  font-size: 14px;
  color: #333;
  margin-bottom: 6px;
  font-weight: 500;
}
.contact-us .cu-field input,
.contact-us .cu-field textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  font-size: 16px;
  color: #333;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
  font-family: "Ubuntu";
}
.contact-us .cu-field input:focus,
.contact-us .cu-field textarea:focus {
  border-color: #e87fa0;
}
.contact-us .cu-field textarea {
  height: 100px;
}
.contact-us .cu-submit {
  display: flex;
  align-items: center;
  gap: 0;
  width: fit-content;
}
.contact-us .cu-btn {
  background: #e87fa0;
  color: #fff;
  border: none;
  padding: 11px 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px 0 0 6px;
  cursor: pointer;
}
.contact-us .cu-btn-icon {
  background: #d46080;
  color: #fff;
  border: none;
  padding: 11px 12px;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-us .cu-btn-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
}

.contact-us .cu-bottom {
  max-width: 1000px;
  margin: 0 auto;
}
.contact-us .cu-bottom-title {
  text-align: center;
  font-size: 38px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 24px;
  font-family: "Teko", sans-serif;
}
.contact-us .cu-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-us .cu-card {
  background: #f3f4f5;
  padding: 28px 28px 24px;
}
.contact-us .cu-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-us .cu-icon {
  width: 42px;
  height: 42px;
  background: #f3628c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-us .cu-icon svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-us .cu-card-header span {
  font-size: 28px;
  font-weight: 500;
  color: #1a1a1a;
  font-family: "Teko", sans-serif;
}
.contact-us .cu-card-body {
  font-size: 16px;
  color: #717182;
  padding-top: 10px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  gap: 20px;
}
.contact-us .cu-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: #717182;
  font-size: 14px;
}
.contact-us .cu-contact-row svg {
  width: 15px;
  height: 15px;
  stroke: #e87fa0;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.contact-us .cu-contact-row a {
  color: #555;
  text-decoration: none;
}

.contact-us.bottom-sec {
  background: #fff;
  padding: 80px 20px;
}
/* contact us responsive css------------- */
@media (max-width: 1080px) {
  .contact-us .cu-inner {
    gap: 30px;
  }
  .contact-us {
    padding: 40px 20px;
  }
  .contact-us.bottom-sec {
    padding: 40px 20px;
  }
  .contact-us .cu-card-body {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .contact-us .cu-inner {
    grid-template-columns: 1fr;
  }
  .contact-us .cu-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* career CSS --------------------------------- */
/* ─── CAREER SECTION ─────────────────────── */
.career-sec {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem 6rem;
}

/* Header */
.career-sec-header {
  text-align: center;
  margin-bottom: 3rem;
}

.career-sec-header h2 {
  text-transform: uppercase;
  font-size: 46px;
  color: #0a0a0a;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.career-sec-header p {
  font-size: 16px;
  color: #4a5565;
  font-weight: 400;
}

/* Grid */
.career-sec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 7rem;
}

/* Card */
.career-sec-card {
  overflow: hidden;
  background: #f3f4f5;
  transition: transform 0.25s ease;
}

.career-sec-card:hover {
  transform: translateY(-4px);
}

.career-sec-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  background: #f9f0f4;
}

.career-sec-card-img-placeholder {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.career-sec-card-body {
  padding: 28px 24px;
}

.career-sec-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.65rem;
}

.career-sec-badge {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.2px;
  color: #f57da0;
  text-transform: uppercase;
}

.career-sec-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #99a1af;
  display: inline-block;
}

.career-sec-remote {
  font-size: 13px;
  color: #4a5565;
}

.career-sec-card-title {
  font-size: 22px;
  color: #0a0a0a;
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.career-sec-card-desc {
  font-size: 14px;
  color: #4a5565;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.career-sec-apply {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #f57da0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition:
    gap 0.2s ease,
    opacity 0.2s;
  font-family: "Teko", sans-serif;
}

.career-sec-apply:hover {
  opacity: 0.75;
  gap: 10px;
}

/* ─── AMBASSADOR ─────────────────────────── */
.career-sec-ambassador {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.career-sec-ambassador-content h3 {
  font-size: 38px;
  text-transform: uppercase;
  color: #0a0a0a;
  margin-bottom: 1rem;
  line-height: 1.1;
  font-weight: 500;
}

.career-sec-ambassador-content p {
  font-size: 16px;
  color: #4a5565;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.career-sec-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 2rem;
}

.career-sec-perks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  color: #4a5565;
}

.career-sec-check {
  flex-shrink: 0;
  margin-top: 1px;
  color: #f57da0;
}

.career-sec-join-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.career-sec-btn {
  background: #e8719a;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px 32px;
  font-size: 18px;
  letter-spacing: 2px;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.15s ease;
}

.career-sec-btn:hover {
  background: #f57da0;
  transform: translateY(-1px);
}

.career-sec-btn-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #888;
  transition:
    border-color 0.2s,
    color 0.2s;
}

.career-sec-btn-icon:hover {
  border-color: #f57da0;
  color: #f57da0;
}

.career-sec-img-wrap {
  overflow: hidden;
  height: 400px;
}

.career-sec-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.career-sec-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #fce4ee, #fde9d8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #c07090;
  font-size: 13px;
  font-weight: 500;
}

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 1080px) {
  .career-sec {
    padding: 3rem 20px;
  }
}
@media (max-width: 767px) {
  .career-sec-grid {
    grid-template-columns: 1fr;
  }
  .career-sec-ambassador {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .career-sec-img-wrap {
    height: 240px;
  }
  .career-sec-header h2 {
    text-transform: uppercase;
    font-size: 28px;
  }
  .career-sec-ambassador-content h3 {
    font-size: 24px;
    text-transform: uppercase;
    color: #0a0a0a;
    margin-bottom: 1rem;
    line-height: 1.1;
    font-weight: 500;
  }
}

@media (max-width: 560px) {
  .career-sec-grid {
    grid-template-columns: 1fr;
  }
}
