@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  scroll-behavior: smooth;
  transition: all 0.3s;

}

:root {
  --main-bg: #0b1313;
  --main-bg-o: rgba(11, 19, 19, 0.65);
  --black-bg-o: rgba(0, 0, 0, 0.35);
  --black-bg-o90: rgba(0, 0, 0, 0.90);
  --aqua-bg-o: rgba(97, 197, 186, 0.65);
  --aqua-hlight-bg-o: rgba(186, 254, 247, 0.65);
  --aqua: #61c5ba;
  --aqua-hlight: #bafef7;
  --aqua-gray: #637071;
  --aqua-gray2: #7aa5a5;
  --aqua-dark: #455656;
  --border-o15: rgba(97, 197, 186, 0.15);
  --text: #eceded;
  --white: #ffffff;
  --red: #ff4444;

}

@property --grad-start {
  syntax: '<color>';
  inherits: false;
  initial-value: rgba(186, 254, 247, 0.9);
}

@property --grad-end {
  syntax: '<color>';
  inherits: false;
  initial-value: rgba(97, 197, 186, 0.55);
}

@font-face {
  font-family: 'Montserrat';
  src: url('../webfonts/Montserrat-Regular.eot');
  src: url('../webfonts/Montserrat-Regular.eot?#iefix') format('embedded-opentype'),
    url('../webfonts/Montserrat-Regular.woff2') format('woff2'),
    url('../webfonts/Montserrat-Regular.woff') format('woff'),
    url('../webfonts/Montserrat-Regular.ttf') format('truetype'),
    url('../webfonts/Montserrat-Regular.svg#Montserrat-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../webfonts/Montserrat-Bold.eot');
  src: url('../webfonts/Montserrat-Bold.eot?#iefix') format('embedded-opentype'),
    url('../webfonts/Montserrat-Bold.woff2') format('woff2'),
    url('../webfonts/Montserrat-Bold.woff') format('woff'),
    url('../webfonts/Montserrat-Bold.ttf') format('truetype'),
    url('../webfonts/Montserrat-Bold.svg#Montserrat-Bold') format('svg');
  font-weight: bold;
  font-style: bold;
  font-display: swap;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  color: var(--text);
  background: var(--main-bg);
  font-size: 18px;
}

h1 {
  font-weight: bold;
  font-size: 60px;
  color: var(--white);
  text-transform: uppercase;
}

.h2-wrap {
  display: inline-flex;
  width: 100%;
  align-items: last baseline;
  gap: 15px;
  padding: 0 15px;
}

.h2-wrap-center {
  justify-content: center;
  padding: 0 30px;
}

.h2-wrap-center h2 {
  width: auto;

}

h2 {
  font-weight: bold;
  font-size: 48px;
  text-transform: uppercase;
  width: 50%;
  text-align: right;
}

.default-content-sec h2 {
  font-weight: bold;
  font-size: 48px;
  text-transform: uppercase;
  width: auto;
  text-align: left;
  padding-top: 20px;
  color: var(--aqua);
}

.default-content-sec h3 {
  font-weight: bold;
  font-size: 35px;
  text-transform: uppercase;
  width: auto;
  text-align: left;
  padding-top: 20px;
  color: var(--aqua);
}

.default-content-sec h4 {
  font-weight: bold;
  font-size: 25px;
  text-transform: uppercase;
  width: auto;
  text-align: left;
  padding-top: 20px;
  color: var(--aqua);
}

.default-content-sec hr {
  margin: 60px 0 30px 0;
  border: none;
  width: 100%;
  height: 1px;
  background-color: var(--aqua-dark);
}

a {
  text-decoration: none;
  color: var(--aqua);
}

a:hover {
  color: var(--aqua-hlight);
}


ul {
  padding-left: 10px;
  list-style: none;
  text-align: left;
  display: inline-block;
  margin: 15px 0;
}

ul li {
  text-indent: -16px;
  padding-left: 16px;
  line-height: 1.2em;
  padding-bottom: 9px;
}

ul li:before {
  content: url('../images/li.svg');
  position: relative;
  left: 0;
  top: 0px;
  margin-left: 7px;
  width: 9px;
  height: 9px;
  display: inline-block;
}

#vybavenie,
#equipment,
#treneri,
#trainers,
#galeria,
#gallery,
#adresa,
#address,
#faq {
  scroll-margin-top: 95px;
}

.site-header-wrap {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  padding-top: 1px;
  background: linear-gradient(0deg, rgba(11, 19, 19, 0) 0%, rgba(11, 19, 19, 1) 100%);
}

.site-header {
  margin: 20px 20px 0 20px;
  padding: 18px;
  background: var(--main-bg-o);
  backdrop-filter: blur(10px);
  border: solid 1px var(--border-o15);
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  border-radius: 5px;
  clip-path: polygon(0 0,
      100% 0,
      100% calc(100% - 20px),
      calc(100% - 20px) 100%,
      0 100%);

  overflow: visible;
}

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 20px;
  height: 20px;
  background: var(--main-bg-o);
  backdrop-filter: blur(10px);
  background-image: linear-gradient(135deg,
      transparent calc(50% - 1px),
      var(--border-o15) calc(50% - 1px),
      var(--border-o15) calc(50% + 1px),
      transparent calc(50% + 1px));
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.logo,
.logo img {
  height: 35px;
  width: auto;
}

nav {
  display: flex;
  align-items: center;
}

nav a,
.site-header-wrap .dropdown-content a {
  color: var(--text);
  text-decoration: none;
  padding: 15px 15px;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  display: flex;
}

nav a:hover,
.site-header-wrap .dropdown-content a:hover {
  color: var(--aqua-hlight);
}

.site-header-wrap .dropdown {
  position: relative;
}

.site-header-wrap .dropdown .dropbtnmenu {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.site-header-wrap .dropdown .dropbtnmenu svg {
  stroke: var(--aqua);
  transition: 0.3s ease;
}

.site-header-wrap .dropdown-content {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  pointer-events: none;
  padding: 18px;
  background: var(--main-bg-o);
  backdrop-filter: blur(10px);
  border: solid 1px var(--border-o15);
  color: var(--text);
  border-radius: 5px;
  min-width: 200px;
  width: fit-content;
  transform: translateY(5px);
  clip-path: polygon(0 0,
      100% 0,
      100% calc(100% - 20px),
      calc(100% - 20px) 100%,
      0 100%);
  overflow: visible;
}

.site-header-wrap .dropdown-content::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 20px;
  height: 20px;
  background: var(--main-bg-o);
  backdrop-filter: blur(10px);
  background-image: linear-gradient(135deg,
      transparent calc(50% - 1px),
      var(--border-o15) calc(50% - 1px),
      var(--border-o15) calc(50% + 1px),
      transparent calc(50% + 1px));
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.site-header-wrap .dropdown-content.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0px);
}

.site-header-wrap .dropdown:hover .dropbtnmenu svg {
  stroke: var(--aqua-hlight);
}

.site-header-wrap .dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Mobile Menu */
.hamburger-menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  cursor: pointer;
  padding: 10px;
}

.hamburger-menu span,
.hamburger-menu span::before,
.hamburger-menu span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--aqua);
  border-radius: 1px;
  position: relative;
  transition: .3s;
}

.hamburger-menu span::before {
  content: '';
  top: -6px;
  position: absolute;
}

.hamburger-menu span::after {
  content: '';
  top: 6px;
  position: absolute;
  width: 13px;
}

.hamburger-menu.active span {
  transform: rotate(45deg);
}

.hamburger-menu.active span::before {
  top: 0;
  transform: rotate(0);
}

.hamburger-menu.active span::after {
  top: 0;
  transform: rotate(90deg);
  width: 20px;
}

.navbar-mobile {
  display: none;
  position: fixed;
  top: 60px;
  background: var(--main-bg-o);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-o15);
  flex-direction: column;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  width: calc(100% - 20px);
  margin: auto;
  border-radius: 5px;
  transform: translateY(5px);
  clip-path: polygon(0 0,
      100% 0,
      100% calc(100% - 20px),
      calc(100% - 20px) 100%,
      0 100%);
  overflow: visible;
  left: 0;
  right: 0;
  padding: 5px 0;
}

.navbar-mobile::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 20px;
  height: 20px;
  background: var(--main-bg-o);
  backdrop-filter: blur(10px);
  background-image: linear-gradient(135deg,
      transparent calc(50% - 1px),
      var(--border-o15) calc(50% - 1px),
      var(--border-o15) calc(50% + 1px),
      transparent calc(50% + 1px));
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.navbar-mobile.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.navbar-mobile a,
.navbar-mobile button {
  padding: 14px 20px;
  color: var(--text);
  background: none;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  justify-content: center;
}

.navbar-mobile .login {
  color: var(--aqua);
}

.navbar-mobile a:hover,
.navbar-mobile button:hover {
  background: none;
  color: var(--aqua-hlight);
}

.navbar-mobile .dropdown-mobile {
  width: 100%;
}

.navbar-mobile .dropdown-mobile>button {
  width: 100%;
  border: none;
  text-align: left;
  padding: 10px 0;
}

.navbar-mobile .dropdown-mobile-content {
  display: none;
  background: rgba(45, 220, 220, 0.05);
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.navbar-mobile .dropdown-mobile-content.show {
  display: flex;
  max-height: 500px;
}

.navbar-mobile .dropdown-mobile-content a {
  padding: 10px 0 10px 20px;
  border: none;
  font-size: 15px;
}

.navbar-mobile .dropdown-mobile {
  width: 100%;
}

.navbar-mobile .gyms-mob-nav {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 15px;
}

.navbar-mobile .gyms-mob-nav a {
  width: auto;
  font-size: 14px;
  color: var(--aqua-hlight);
  text-align: center;
  padding: 8px;
}

.navbar-mobile .lang-switch {
  width: 100%;
}


.header-right {
  display: flex;
}

.lang-switch .btn {
  background: none;
  color: var(--text);
}

.lang-switch .btn svg {
  stroke: var(--aqua);
}

.lang-switch .btn:hover {
  color: var(--aqua-hlight);
  background: none;
}

.lang-switch .btn:hover svg {
  stroke: var(--aqua-hlight);
  transform: none;
}

button,
.btn {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--aqua);
  border-radius: 5px;
  font-size: 18px;
  color: var(--main-bg);
  padding: 12px 20px;
  position: relative;
  z-index: 1;
  transition: 0.3s;
  line-height: 1.2em;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  white-space: normal;
  text-align: center;
  text-transform: uppercase;
  clip-path: polygon(0 0,
      100% 0,
      100% calc(100% - 12px),
      calc(100% - 12px) 100%,
      0 100%);
  border: none;
}

button:hover,
.btn:hover {
  cursor: pointer;
  background: var(--aqua-hlight);
  color: var(--main-bg);
}

button:hover svg,
.btn:hover svg {
  stroke: var(--main-bg);
  transform: translate(2px, -2px);
}

.btn-big {
  font-size: 24px;
  padding: 20px 35px;
  clip-path: polygon(0 0,
      100% 0,
      100% calc(100% - 20px),
      calc(100% - 20px) 100%,
      0 100%);
}

.btn-transparent {
  background: none;
  color: var(--aqua);
  border: solid 1px var(--aqua);
  position: relative;
  border-radius: 5px;
  clip-path: polygon(0 0,
      100% 0,
      100% calc(100% - 12px),
      calc(100% - 12px) 100%,
      0 100%);
  overflow: visible;
}

.btn-transparent::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 12px;
  height: 12px;
  backdrop-filter: blur(10px);
  background-image: linear-gradient(135deg,
      transparent calc(50% - 1px),
      var(--aqua) calc(50% - 1px),
      var(--aqua) calc(50% + 1px),
      transparent calc(50% + 1px));
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.btn-transparent:hover {
  background: none;
  color: var(--aqua-hlight);
  border: solid 1px var(--aqua-hlight);
}

.btn-transparent:hover svg {
  stroke: var(--aqua-hlight);
}

.btn-transparent:hover::after {
  background-image: linear-gradient(135deg,
      transparent calc(50% - 1px),
      var(--aqua-hlight) calc(50% - 1px),
      var(--aqua-hlight) calc(50% + 1px),
      transparent calc(50% + 1px));
}

.btn-hover-idown:hover svg {
  transform: translate(2px, 2px);
}

.btn-transparent-blur {
  background: linear-gradient(90deg,
      var(--grad-start),
      var(--grad-end));
  transition: --grad-start 0.4s ease, --grad-end 0.4s ease;
  backdrop-filter: blur(10px);
  border: solid 1px var(--aqua);
  position: relative;
  border-radius: 5px;
  clip-path: polygon(0 0,
      100% 0,
      100% calc(100% - 20px),
      calc(100% - 20px) 100%,
      0 100%);
  overflow: visible;
  z-index: 1;
}

.btn-transparent-blur::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 20px;
  height: 20px;
  background: var(--aqua);
  backdrop-filter: blur(10px);
  background-image: linear-gradient(135deg,
      transparent calc(50% - 1px),
      var(--border-o15) calc(50% - 1px),
      var(--border-o15) calc(50% + 1px),
      transparent calc(50% + 1px));
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.btn-transparent-blur:hover {
  --grad-start: rgba(186, 254, 247, 1);
  --grad-end: rgba(97, 197, 186, 0.65);
  background: linear-gradient(90deg,
      var(--grad-start),
      var(--grad-end));
}


.def-icon {
  fill: none;
  stroke: var(--main-bg);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.isize80 {
  width: 80px;
  height: 80px;
  min-width: 80px;
}

.isize50 {
  width: 50px;
  height: 50px;
  min-width: 50px;
}

.isize40 {
  width: 40px;
  height: 40px;
  min-width: 40px;
}

.isize30 {
  width: 30px;
  height: 30px;
  min-width: 30px;
}

.isize26 {
  width: 26px;
  height: 26px;
  min-width: 26px;
}

.isize24 {
  width: 24px;
  height: 24px;
  min-width: 24px;
}

.isize22 {
  width: 22px;
  height: 22px;
  min-width: 22px;
}

.isize20 {
  width: 20px;
  height: 20px;
  min-width: 20px;
}

.isize18 {
  width: 18px;
  height: 18px;
  min-width: 18px;
}

.isize16 {
  width: 16px;
  height: 16px;
  min-width: 16px;
}

.isize14 {
  width: 14px;
  height: 14px;
  min-width: 14px;
}

.isize12 {
  width: 12px;
  height: 12px;
  min-width: 12px;
}

.isize10 {
  width: 10px;
  height: 10px;
  min-width: 10px;
}

.icolor-aqua {
  stroke: var(--aqua);
}

.icolor-white {
  stroke: var(--white);
}

.icolor-text {
  stroke: var(--text);
}

.icolor-dark {
  stroke: var(--main-bg);
}

.ifill-aqua {
  fill: var(--aqua);
}



.hero-hp-wrap {
  width: 100%;
  min-height: 815px;
  position: relative;
}

.hero-gym-wrap {
  min-height: 605px;
}

.hero-othersubp-wrap {
  min-height: 440px;
}

.hero-hp-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 180px;
  bottom: -25px;
  height: 100px;
  background: radial-gradient(ellipse at 30% 50%, rgba(0, 0, 0, 0.95), transparent 100%),
    radial-gradient(ellipse at 70% 50%, rgba(0, 0, 0, 0.85), transparent 100%);
  filter: blur(10px);
  z-index: -1;
  rotate: -1.5deg;
}

.hero-hp {
  padding: 160px 48px 80px 48px;
  background: url('../images/karlovka/smartgym-karlovka-hero.jpg') no-repeat center/cover;
  min-height: 815px;
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  clip-path: polygon(0 0,
      100% 0,
      100% calc(100% - 160px),
      calc(100% - 160px) 100%,
      0 100%);
  overflow: visible;
}

.hero-gym {
  background: #0a100f;
  min-height: 605px;
}

.hero-othersubp {
  min-height: 440px;
}

.hero-gym-img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-hp::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(11, 19, 19, 0.75);
  width: 100%;
  height: 100%;
}

.hero-hp::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 180px;
  height: 180px;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.hero-hp h1 {
  z-index: 1;
}

.hero-hp h1 span {
  font-size: 130px;
  color: var(--aqua);
  font-weight: normal;
  width: 100%;
  display: inline-block;
}

.hero-gym h1 {
  font-size: 110px;
  line-height: 1.0em;
}

.hero-gym h2 {
  font-size: 24px;
  color: var(--aqua);
  text-align: left;
  width: auto;
  z-index: 1;
}

.hero-hp .gyms-links {
  z-index: 1;
  text-transform: uppercase;
}

.hero-hp .gyms-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 15px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-hp .gyms-links a:first-of-type {
  padding: 10px 15px 10px 0;
}

.hero-hp .gyms-links a svg {
  stroke: var(--aqua);
}

.hero-hp .gyms-links a:hover {
  color: var(--aqua-hlight);
}

.hero-hp .gyms-links a:hover svg {
  stroke: var(--aqua-hlight);
  transform: translate(2px, -2px);
}

.hero-hp-left {
  display: flex;
  flex-direction: column;
}

.hero-gym .open-hours {
  display: flex;
  gap: 10px;
  text-transform: uppercase;
  z-index: 1;
  flex-wrap: wrap;
}

.hero-gym .open-hours p {
  font-size: 26px;
  color: var(--text);
}

.hero-gym .open-hours h3 {
  font-size: 26px;
  color: var(--aqua);
  font-weight: bold;
}

.hero-hp-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 60%;
  min-width: 335px;
  align-items: center;
}

.hero-hp-right .card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  gap: 5px;
  padding: 20px;
  width: 335px;
}

.hero-hp-right .card svg {
  display: flex;
  flex-direction: column;
  margin: 15px;
}

.hero-hp-right .card h3 {
  font-size: 24px;
  color: var(--aqua);
}

.hero-hp-right .card h4 {
  font-size: 16px;
  color: var(--aqua);
}

.hero-hp-right .card h4 span {
  color: var(--text);
  font-weight: normal;
}

.hero-hp-right .card p {
  font-size: 16px;
}

.hero-hp-right .card .logos {
  display: flex;
  gap: 30px;
  align-items: center;
}

.hero-hp-right .card .card-logo {
  width: 115px;
  height: auto;
}

.hero-hp-right .card:last-of-type {
  gap: 15px;
}

.hero-hp-right .card:last-of-type p {
  font-weight: bold;
  font-size: 13px;
}

.hero-hp-right .card:last-of-type p a {
  color: var(--text);
}

.hero-hp-right .card:last-of-type p a:hover {
  color: var(--aqua-hlight);
}

.hero-hp-right .card:last-of-type svg {
  margin: 0;
  margin-right: 5px;
  float: left;
  position: relative;
  top: 1px;
}

.card {
  padding: 18px;
  background: var(--main-bg-o);
  backdrop-filter: blur(10px);
  border: solid 1px var(--border-o15);
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  border-radius: 5px;
  clip-path: polygon(0 0,
      100% 0,
      100% calc(100% - 20px),
      calc(100% - 20px) 100%,
      0 100%);

  overflow: visible;
}

.card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 20px;
  height: 20px;
  background: var(--main-bg-o);
  backdrop-filter: blur(10px);
  background-image: linear-gradient(135deg,
      transparent calc(50% - 1px),
      var(--border-o15) calc(50% - 1px),
      var(--border-o15) calc(50% + 1px),
      transparent calc(50% + 1px));
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.hero-gym .hero-hp-left {
  flex: 1;
  gap: 12px;
}

.hero-gym .hero-hp-right {
  width: auto;
  align-items: start;
  padding-right: 100px;
  min-width: 430px;
}

.hero-gym .hero-hp-right .btn {
  width: 100%;
}


.picl-textr-sec {
  display: flex;
  align-items: center;
  padding: 50px 90px;
}

.picl-textr-sec .picl {
  width: calc(50% + 32px);
  height: 450px;
  clip-path: polygon(0 0,
      100% 0,
      100% calc(100% - 50px),
      calc(100% - 50px) 100%,
      0 100%);
}

.picl-textr-sec .picl img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.picl-textr-sec .textr {
  padding: 40px;
  background: var(--main-bg-o);
  backdrop-filter: blur(10px);
  border: solid 1px var(--border-o15);
  color: var(--text);
  display: flex;
  align-items: end;
  flex-direction: column;
  gap: 30px;
  position: relative;
  right: 100px;
  width: calc(50% - 32px);
  border-radius: 5px;
  clip-path: polygon(0 0,
      100% 0,
      100% calc(100% - 50px),
      calc(100% - 50px) 100%,
      0 100%);
  overflow: visible;
  z-index: 1;
}

.picl-textr-sec .textr::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50px;
  height: 50px;
  background: var(--main-bg-o);
  backdrop-filter: blur(10px);
  background-image: linear-gradient(135deg,
      transparent calc(50% - 1px),
      var(--border-o15) calc(50% - 1px),
      var(--border-o15) calc(50% + 1px),
      transparent calc(50% + 1px));
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.picl-textr-sec .textr br {
  margin-bottom: 10px;
}


.picr-textl-sec {
  display: flex;
  align-items: center;
  padding: 50px 90px;
}

.picr-textl-sec .picr {
  width: calc(50% + 32px);
  height: 450px;
  clip-path: polygon(0 0,
      100% 0,
      100% calc(100% - 50px),
      calc(100% - 50px) 100%,
      0 100%);
}

.picr-textl-sec .picr img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.picr-textl-sec .textl {
  padding: 40px;
  background: var(--main-bg-o);
  backdrop-filter: blur(10px);
  border: solid 1px var(--border-o15);
  color: var(--text);
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 30px;
  position: relative;
  left: 100px;
  width: calc(50% - 32px);
  border-radius: 5px;
  clip-path: polygon(0 0,
      100% 0,
      100% calc(100% - 50px),
      calc(100% - 50px) 100%,
      0 100%);
  overflow: visible;
  z-index: 1;
}

.picr-textl-sec .textl::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50px;
  height: 50px;
  background: var(--main-bg-o);
  backdrop-filter: blur(10px);
  background-image: linear-gradient(135deg,
      transparent calc(50% - 1px),
      var(--border-o15) calc(50% - 1px),
      var(--border-o15) calc(50% + 1px),
      transparent calc(50% + 1px));
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.picr-textl-sec .textl br {
  margin-bottom: 10px;
}

.picr-textl-sec .btn {
  align-self: flex-end;
}

.benefits-sec {
  display: flex;
  gap: 30px;
  width: 100%;
  height: auto;
  position: relative;
  padding: 80px 50px;
}

.benefits-sec::after {
  content: "";
  background-image: url('../images/bg-img-dumbbells.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  width: 1440px;
  height: 1364px;
  right: 0;
  top: -250px;
  z-index: -1;
}

.benefits-sec .card {
  padding: 60px 40px;
  background: linear-gradient(180deg, rgba(186, 254, 247, 0.7) 0%, rgba(97, 197, 186, 0.45) 100%);
  backdrop-filter: blur(10px);
  border: solid 1px var(--aqua);
  color: var(--text);
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  gap: 40px;
  position: relative;
  border-radius: 5px;
  clip-path: polygon(0 0,
      100% 0,
      100% calc(100% - 40px),
      calc(100% - 40px) 100%,
      0 100%);
  overflow: visible;
  flex: 1;
  z-index: 1;
}

.benefits-sec .card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  background: var(--aqua);
  backdrop-filter: blur(10px);
  background-image: linear-gradient(135deg,
      transparent calc(50% - 1px),
      var(--border-o15) calc(50% - 1px),
      var(--border-o15) calc(50% + 1px),
      transparent calc(50% + 1px));
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.benefits-sec .card svg {
  stroke-width: 0.8;
  margin: 0 auto;
}

.benefits-sec .card h3 {
  color: var(--white);
  text-transform: uppercase;
  font-size: 28px;
}

.benefits-sec .card p {
  color: var(--aqua-hlight);
  line-height: 1.45em;
}

.values-sec {
  display: flex;
  width: 100%;
  height: auto;
  position: relative;
  padding: 80px 50px;
  flex-direction: column;
  max-width: 1500px;
  margin: auto;
}

.value-wrap {
  display: flex;
  gap: 30px;
  width: 100%;
  height: auto;
  position: relative;
  margin-top: 5px;
}

.value-wrap .title {
  width: 50%;
  text-align: right;
}

.value-wrap .title h3 {
  font-size: 36px;
  color: var(--aqua);
  text-transform: uppercase;
}

.value-wrap .description {
  width: 50%;
  margin-top: 40px;
  padding: 0 30px 80px 45px;
  border-left: solid 1px var(--aqua-gray);
  position: relative;
}

.value-wrap .description::before {
  content: "";
  position: absolute;
  left: 0;
  top: -25px;
  width: 16px;
  height: 16px;
  background: var(--aqua-gray);
  clip-path: polygon(0 0,
      100% 0,
      100% calc(100% - 7px),
      calc(100% - 7px) 100%,
      0 100%);
}

.value-wrap .description p {
  position: relative;
  top: -30px;
}

.equipment-sec {
  display: flex;
  gap: 20px;
  width: 100%;
  height: auto;
  position: relative;
  padding: 50px 50px 80px 170px;
  flex-wrap: wrap;
  overflow-x: clip;
}

.equipment-sec::after {
  content: "";
  background-image: url('../images/bg-img-equipment.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  width: 699px;
  height: 780px;
  left: 0;
  top: -170px;
  z-index: -1;
  opacity: 0.15;
}

.equipment-sec .h2-wrap {
  transform: rotate(270deg);
  width: auto;
  padding: 0;
  position: absolute;
  left: -72px;
  top: 200px;
}

.equipment-sec .h2-wrap h2 {
  width: auto;
}

.equipment-sec .h2-wrap svg {
  transform: rotate(90deg);
}

.equipment-sec .card {
  padding: 50px;
  background: var(--aqua-bg-o);
  backdrop-filter: blur(10px);
  border: solid 1px var(--aqua);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 5px;
  clip-path: polygon(0 0,
      100% 0,
      100% calc(100% - 40px),
      calc(100% - 40px) 100%,
      0 100%);
  overflow: visible;
  width: calc(25% - 15px);
  z-index: 1;
}

.equipment-sec .card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  background: var(--aqua);
  backdrop-filter: blur(10px);
  background-image: linear-gradient(135deg,
      transparent calc(50% - 1px),
      var(--border-o15) calc(50% - 1px),
      var(--border-o15) calc(50% + 1px),
      transparent calc(50% + 1px));
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.equipment-sec .card-big {
  width: calc(33.333% - 15px);
  padding: 140px 50px;
}

.equipment-sec .card img {
  width: 100%;
  height: auto;
  min-height: 75px;
  max-height: 75px;
  max-width: 270px;
  object-fit: contain;
}

.home-trainers-description {
  margin: auto;
  padding: 50px 100px;
  width: 100%;
  text-align: center;
}

.trainers-sec {
  display: flex;
  gap: 70px 50px;
  width: 100%;
  height: auto;
  position: relative;
  padding: 50px;
  flex-wrap: wrap;
  justify-content: center;
}

.trainer-card {
  border-radius: 5px 5px 40px 5px;
  background-image: url('../images/bg-img-trainer.jpg');
  background-size: initial;
  background-position: center;
  background-repeat: no-repeat;
  width: 360px;
  height: 450px;
  text-align: center;
  display: block;
  position: relative;
  /*flex-direction: column;
  justify-content: space-between;*/
}

.trainer-card .trainer-img {
  position: relative;
  bottom: 27px;
  height: 413px;
  display: flex;
  width: 100%;
  align-items: end;
  justify-content: center;
}

.trainer-card .trainer-img::after {
  content: "";
  position: absolute;
  left: 60px;
  right: 60px;
  bottom: -80px;
  height: 30px;
  box-shadow: 0px -59px 33px -0px rgba(0, 0, 0, 0.91);
  -webkit-box-shadow: 0px -59px 33px -0px rgba(0, 0, 0, 0.91);
  -moz-box-shadow: 0px -59px 33px -0px rgba(0, 0, 0, 0.91);
  pointer-events: none;
  z-index: 1;
}

.trainer-card .trainer-img:hover,
.trainer-card .trainer-name-wrap:hover {
  cursor: pointer;
}

.trainer-card .trainer-img:hover .trainer-btn,
.trainer-card .trainer-name-wrap:hover .trainer-btn {
  background: var(--aqua-hlight);
}

.trainer-card .trainer-name-wrap {
  width: 100%;
  height: 64px;
  display: flex;
  justify-content: space-between;
  position: relative;
  bottom: 27px;
  z-index: 2;
}

.trainer-card .trainer-name-wrap .trainer-name {
  background: var(--aqua-dark);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 0 25px;
  border-radius: 0 0 0 5px;
}

.trainer-card .trainer-name-wrap .trainer-name h3 {
  font-size: 18px;
  text-align: left;
}

.trainer-card .trainer-name-wrap .trainer-btn {
  width: 80px;
  height: 64px;
  background: var(--aqua);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0,
      100% 0,
      100% calc(100% - 22px),
      calc(100% - 22px) 100%,
      0 100%);
}

.trainer-card .trainer-info-wrap {
  z-index: 2;
  position: absolute;
  bottom: 63px;
  background: var(--main-bg-o);
  backdrop-filter: blur(10px);
  border: solid 1px var(--border-o15);
  border-radius: 5px 5px 0 0;
  padding: 20px;
  min-height: 430px;
  min-width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 14px;
}

.trainer-card .trainer-info-wrap .trainer-info .trainer-info-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
  gap: 5px;
}

.trainer-card .trainer-info-wrap .trainer-info .close-btn,
.modal-close,
.equip-all-wrap .close-btn {
  padding: 3px;
}

.trainer-card .trainer-info-wrap .trainer-info .close-btn:hover svg,
.modal-close:hover svg,
.equip-all-wrap .close-btn:hover svg {
  stroke: var(--aqua-hlight);
  cursor: pointer;
  transform: rotate(90deg);
}

.trainer-card .trainer-info-wrap .trainer-info h4 {
  font-size: 16px;
}

.trainer-card .trainer-info-wrap .trainer-info h5 {
  font-size: 13px;
  font-weight: normal;
  color: var(--aqua);
  text-transform: uppercase;
}

.trainer-card .trainer-info-wrap .trainer-info h6 {
  font-size: 14px;
  color: var(--aqua-bg-o);
}

.trainer-card .trainer-info-wrap .btn {
  font-size: 16px;
  width: 100%;
}

.trainer-card .trainer-contact-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.trainer-card .trainer-contact-wrap .trainer-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
}

.trainer-card .trainer-contact-wrap .trainer-contact .contact-tel a,
.trainer-card .trainer-contact-wrap .trainer-contact .contact-mail a,
.trainer-card .trainer-contact-wrap .trainer-contact .contact-instagram a {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--aqua-gray2);
  font-weight: bold;
}

.trainer-card .trainer-contact-wrap .trainer-contact .contact-tel a:hover,
.trainer-card .trainer-contact-wrap .trainer-contact .contact-mail a:hover,
.trainer-card .trainer-contact-wrap .trainer-contact .contact-instagram a:hover {
  color: var(--aqua);
}

/* Trainer Card Animations */
@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDownFade {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(30px);
  }
}

.trainer-card .trainer-info-wrap {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.trainer-card .trainer-info-wrap.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  animation: slideUpFade 0.3s ease;
}

.trainer-card .trainer-info-wrap.closing {
  animation: slideDownFade 0.3s ease;
}

.trainer-card .trainer-btn svg {
  transition: transform 0.3s ease;
}

.trainer-card.active .trainer-btn svg {
  transform: rotate(90deg);
}

/* Contact Trainer Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--main-bg-o);
  border: 1px solid var(--border-o15);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 20px 25px;
  gap: 20px;
}

.modal-header h2 {
  margin: 0;
  color: var(--aqua);
  font-size: 24px;
  width: auto;
  margin: 50px 0 50px 50px;
  text-align: left;
}


.contact-form {
  padding: 0 75px 75px 75px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}


.form-group label {
  display: flex;
  color: var(--text);
  align-items: center;
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--red);
}

.error-message {
  color: var(--red);
  font-size: 12px;
  margin-bottom: 6px;
  min-height: 16px;
}

/* Radio buttons */
.radio-group {
  display: flex;
  gap: 30px;
  margin: 6px 0;
  height: 53px;
}

.radio-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.radio-label input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio-custom {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border-o15);
  border-radius: 5px;
  margin-right: 8px;
  position: relative;
  transition: border-color 0.2s ease;
  display: inline-flex;
}

.radio-label input[type="radio"]:checked+.radio-custom {
  border-color: var(--aqua);
}

.radio-custom::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  background: var(--aqua);
  border-radius: 3px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.radio-label input[type="radio"]:checked+.radio-custom::after {
  opacity: 1;
}

/* Custom Select */
.custom-select {
  position: relative;
}

.select-display {
  padding: 16px 20px;
  border: 1px solid var(--border-o15);
  background: var(--black-bg-o);
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color 0.2s ease;
  font-size: 16px;
  margin: 6px 0 2px 0;
}

.custom-select.open .select-display {
  border-color: var(--aqua);
}

.select-display .placeholder {
  color: var(--aqua-gray);
}

.select-options {
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  right: 0;
  border: 1px solid var(--border-o15);
  background: var(--black-bg-o90);
  border-top: none;
  border-radius: 5px;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  z-index: 10;
  backdrop-filter: blur(5px);
}

.custom-select.open .select-options {
  display: block;
}

.option-label {
  display: flex;
  align-items: center;
  padding: 12px;
  cursor: pointer;
  border-bottom: 1px solid var(--border-o15);
  transition: background-color 0.2s ease;
}

.option-label:hover {
  background: var(--border-o15);
}

.option-label:last-child {
  border-bottom: none;
}

/* Native Select Styling */
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: var(--black-bg-o);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2361c5ba' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 18px;
  border: 1px solid var(--border-o15);
  border-radius: 5px;
  padding: 12px 40px 12px 20px;
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  min-width: 200px;
}

select:hover,
select:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 10px rgba(97, 197, 186, 0.2);
}

select option {
  background-color: var(--main-bg);
  color: var(--text);
  padding: 10px;
}

/* Trainers Filter Section */
.filter-section {
  margin: 70px auto 20px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: fit-content;
}


.option-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: auto;
}

.checkbox-custom {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border-o15);
  margin-right: 8px;
  position: relative;
  transition: border-color 0.2s ease;
  border-radius: 5px;
}

.option-label input[type="checkbox"]:checked+.checkbox-custom {
  border-color: var(--aqua);
}

.checkbox-custom::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 4px;
  width: 4px;
  height: 7px;
  border: solid var(--aqua);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.option-label input[type="checkbox"]:checked+.checkbox-custom::after {
  opacity: 1;
}

/* Form Actions */
.form-actions {
  text-align: center;
  margin-top: 24px;
}

.btn-submit {
  background: var(--aqua);
  color: var(--main-bg);
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-submit:hover {
  background: var(--aqua-hlight);
}

.btn-submit:disabled {
  background: var(--aqua-gray);
  cursor: not-allowed;
}

.flatpickr-calendar {
  width: 327.875px !important;
  padding: 10px !important;
  border-radius: 10px !important;
  margin-top: 10px;
  box-shadow: unset !important;
  border: 1px solid var(--border-o15) !important;
  background: var(--main-bg-o) !important;
  backdrop-filter: blur(10px);
}

.flatpickr-calendar.arrowTop::after,
.flatpickr-calendar.arrowTop::before {
  display: none;
}

.flatpickr-months .flatpickr-prev-month {
  padding: 21px 10px 40px 17px !important;
  color: var(--aqua-gray2) !important;
  fill: var(--aqua-gray2) !important;
}

.flatpickr-months .flatpickr-next-month {
  padding: 21px 17px 40px 10px !important;
  color: var(--aqua-gray2) !important;
  fill: var(--aqua-gray2) !important;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  color: var(--aqua) !important;
  fill: var(--aqua) !important;
}

.flatpickr-calendar .numInputWrapper {
  border: 1px solid var(--border-o15) !important;
  border-radius: 5px !important;
  width: 110px !important;
  margin-left: 10px;
}

.numInputWrapper:hover {
  background: transparent !important;
  border: 1px solid var(--aqua-gray2) !important;
}

.flatpickr-calendar .numInputWrapper span {
  opacity: 1 !important;
  border: 1px solid var(--border-o15) !important;
  border-radius: 5px !important;
  rotate: 90deg;
  padding: 12px;
}

.flatpickr-calendar .numInputWrapper span:hover {
  background: transparent !important;
  border: 1px solid var(--aqua) !important;
}

.flatpickr-calendar .numInputWrapper span.arrowDown {
  left: 5px !important;
  top: 7px !important;
}

.numInputWrapper span.arrowDown::after {
  top: 10px !important;
  left: 8px !important;
  border-top: 4px solid var(--aqua-gray2) !important;
}

.flatpickr-calendar .numInputWrapper span.arrowUp {
  top: 7px !important;
  right: 5px !important;
}

.numInputWrapper span.arrowUp::after {
  top: 9px !important;
  left: 8px !important;
  border-bottom: 4px solid var(--aqua-gray2) !important;
}

.flatpickr-current-month input.cur-year {
  padding: 11px 0 !important;
  text-align: center !important;
  color: var(--text) !important;
}

.flatpickr-weekdays {
  margin: 15px 0 5px 0;
}

span.flatpickr-weekday {
  color: var(--text) !important;
  font-weight: bold !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  border: 1px solid var(--border-o15) !important;
  border-radius: 5px !important;
  padding: 11px 17px 11px 11px !important;
  font-size: 14px !important;
  font-weight: bold !important;
  color: var(--text) !important;
  background: var(--sec-bg-color) !important;
  width: 125px !important;
  min-width: 125px !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  border: 1px solid var(--aqua) !important;
}

.flatpickr-current-month {
  font-size: 14px !important;
  font-weight: bold !important;
  padding: 1px 0 0 0 !important;
  width: auto !important;
  left: 30px !important;

}

.flatpickr-months .flatpickr-month {
  height: 43px !important;
}

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

.flatpickr-day:hover {
  background: var(--main-bg-o) !important;
  border-color: var(--aqua) !important;
}

.flatpickr-day.today {
  border-color: var(--border-o15) !important;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-day.notAllowed.nextMonthDay {
  color: var(--aqua-dark) !important;
}

.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
  background: var(--main-bg-o) !important;
  border-color: var(--aqua) !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: var(--main-bg-o) !important;
  color: var(--aqua-hlight) !important;
  border-color: var(--aqua) !important;
}

.all-trainers-btn-wrap {
  width: 100%;
  text-align: center;
}

.preparing-sec {
  width: 100%;
  position: relative;
  padding: 50px 50px 40px 50px;
  border-bottom: solid 1px var(--aqua);
  clip-path: polygon(0 0,
      100% 0,
      100% calc(100% - 35px),
      calc(100% - 35px) 100%,
      0 100%);
  overflow: visible;
  z-index: 1;
  margin-bottom: 50px;
}

.preparing-sec::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 35px;
  height: 35px;
  background-image: linear-gradient(135deg, transparent calc(50% - 1px), var(--aqua) calc(50% - 1px), var(--aqua) calc(50% + 1px), transparent calc(50% + 1px));
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.preparing-cont {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 100%;
  max-width: 1440px;
  margin: auto;
}

.preparing-sec .smart-gym-icon {
  width: 54px;
  height: auto;
}

.preparing-sec h2 {
  font-size: 24px;
  color: var(--aqua);
  width: auto;
}

.ctas-sec {
  display: flex;
  gap: 30px 50px;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 0 50px 50px 50px;
  width: 100%;
  max-width: 1250px;
  margin: auto;
}

.ctas-sec .btn {
  min-width: 300px;
}

.references-sec,
.gallery-sec {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 50px 50px 50px;
  width: 100%;
  margin: 50px auto;
  overflow: hidden;
}

.ref-wrap,
.gal-wrap {
  display: flex;
  max-width: 1200px;
  margin: auto;
}



.ref-card-wrap,
.gal-card-wrap {
  display: flex;
  flex: 0 0 calc(100% / 3);
  padding: 0 25px;
}

.gal-card-wrap {
  padding: 0 10px;
}


.ref-card,
.gal-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: start;
  text-align: center;
  border-radius: 5px;
  padding: 40px 50px;
  border: solid 1px var(--aqua);
  backdrop-filter: blur(10px);
  clip-path: polygon(0 0,
      100% 0,
      100% calc(100% - 35px),
      calc(100% - 35px) 100%,
      0 100%);
  overflow: visible;
  transition: opacity 0.3s ease;
}

.gal-card {
  padding: 1px;
  width: 380px;
  height: 380px;
  cursor: pointer;
}

.gal-card img {
  width: auto;
  height: 100%;
  min-width: 100%;
  object-fit: cover;
}

.ref-card::after,
.gal-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 35px;
  height: 35px;
  background: var(--main-bg-o);
  backdrop-filter: blur(10px);
  background-image: linear-gradient(135deg, transparent calc(50% - 1px), var(--aqua) calc(50% - 1px), var(--aqua) calc(50% + 1px), transparent calc(50% + 1px));
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.ref-card .stars {
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
}

.ref-card p {
  font-size: 14px;
  line-height: 1.6em;
  position: relative;
}

.ref-card p::before {
  content: "“";
  position: absolute;
  left: -35px;
  top: 35px;
  font-size: 150px;
  opacity: 0.04;
}

.ref-card h4 {
  font-size: 18px;
  font-weight: normal;
  color: var(--aqua-gray2);
}

.ref-nav,
.gal-nav {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.ref-nav span,
.gal-nav span {
  width: 45px;
  height: 12px;
  background: var(--aqua-dark);
  opacity: 0.4;
  cursor: pointer;
}

.ref-nav span:hover,
.gal-nav span:hover {
  opacity: 0.7;
}

.ref-nav span.active,
.gal-nav span.active {
  background: var(--aqua-gray);
  opacity: 1;
}

.faq-sec {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0 50px 50px 50px;
  width: 100%;
  position: relative;
}

.faq-sec::after {
  content: "";
  background-image: url('../images/bg-img-faq.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  width: 1100px;
  height: 845px;
  right: 0;
  top: -180px;
  z-index: -1;
}

.faq-sec::before {
  content: "";
  background: linear-gradient(0deg, rgba(11, 19, 19, 1) 0%, rgba(11, 19, 19, 0) 100%);
  position: absolute;
  width: 100%;
  height: 200px;
  bottom: 0;
}

.faq-item {
  padding: 20px 30px;
  background: linear-gradient(90deg,
      var(--grad-start),
      var(--grad-end));
  transition: --grad-start 0.4s ease, --grad-end 0.4s ease;
  backdrop-filter: blur(10px);
  border: solid 1px var(--aqua);
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 0 30px;
  position: relative;
  border-radius: 5px;
  clip-path: polygon(0 0,
      100% 0,
      100% calc(100% - 20px),
      calc(100% - 20px) 100%,
      0 100%);
  overflow: visible;
  z-index: 1;
  max-width: 1150px;
  width: 100%;
}

.faq-item::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 20px;
  height: 20px;
  background: var(--aqua);
  backdrop-filter: blur(10px);
  background-image: linear-gradient(135deg,
      transparent calc(50% - 1px),
      var(--border-o15) calc(50% - 1px),
      var(--border-o15) calc(50% + 1px),
      transparent calc(50% + 1px));
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.faq-item:hover {
  cursor: pointer;
  --grad-start: rgba(186, 254, 247, 1);
  --grad-end: rgba(97, 197, 186, 0.65);
}

.faq-item:hover .faq-question svg {
  transform: rotate(180deg);
  stroke: var(--aqua-hlight);
}

.faq-item.open .faq-question svg {
  transform: rotate(45deg);
}

.faq-item.open:hover .faq-question svg {
  transform: rotate(135deg);
  stroke: var(--aqua-hlight);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.faq-question h3 {
  color: var(--main-bg);
  text-transform: uppercase;
  font-weight: bold;
  font-size: 24px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  opacity: 1;
}

.faq-answer p {
  color: var(--main-bg-o);
  margin-top: 10px;
}

.site-footer {
  background: var(--main-bg);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.footer-top-line-wrap {
  width: 100%;
  overflow: hidden;
}

.shadow-wrap {
  filter: drop-shadow(0px 12px 20px rgb(0, 0, 0));
  position: relative;
  top: -85px;
}

.shadow {
  clip-path: ellipse(50% 50% at 50% 50%);
  height: 35px;
  width: 80%;
  display: block;
  background: var(--main-bg);
  margin: auto;
}

.footer-top-line {
  width: 100%;
  height: 35px;
  position: relative;
  background: var(--main-bg);
  border-bottom: solid 1px var(--aqua);
  clip-path: polygon(0 0,
      100% 0,
      100% calc(100% - 35px),
      calc(100% - 35px) 100%,
      0 100%);
  overflow: visible;
  z-index: 1;
  margin-bottom: 50px;
}

.footer-top-line::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 35px;
  height: 35px;
  background-image: linear-gradient(135deg, transparent calc(50% - 1px), var(--aqua) calc(50% - 1px), var(--aqua) calc(50% + 1px), transparent calc(50% + 1px));
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  padding: 0 90px;
  max-width: 1700px;
  margin: auto;
}

.footer-app {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-app h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--aqua);
}

.footer-app h4 {
  font-size: 20px;
  text-transform: uppercase;
  color: var(--text);
}

.footer-app .smart-gym-icon {
  width: 25px;
  height: auto;
}

.footer-app .footer-app-badges {
  display: flex;
  gap: 20px 30px;
  padding: 15px 0;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-app .app-badge {
  width: 165px;
  height: auto;
}

.footer-app .app-badge:hover {
  filter: brightness(130%);
}

.footer-col:last-of-type {
  display: flex;
}

.footer-contact {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--text);
}

.footer-contact a:hover {
  color: var(--aqua);
}

.footer-contact h4 {
  font-size: 20px;
  text-transform: uppercase;
  color: var(--text);
  margin-top: 20px;
}

.footer-social {
  display: flex;
  gap: 20px 40px;
  margin-top: 20px;
}

.footer-social a:hover svg {
  stroke: var(--aqua-hlight);
}


.footer-links-list {
  list-style: none;
  margin: 0;
}

.footer-links-list .highlight-text {
  font-weight: bold;
  color: var(--aqua);
  text-transform: uppercase;
  display: inline-flex;
  padding-left: 16px;
  align-items: center;
  gap: 5px;
}

.footer-links-list .highlight-text:hover {
  color: var(--aqua-hlight);
}

.footer-links-list .highlight-text:hover svg {
  stroke: var(--aqua-hlight);
  transform: translate(2px, -2px);
}

.footer-links-list li {
  margin: 0;
}

.footer-links-list li::before {
  top: -2px;
}

.footer-links-list a {
  color: var(--text);
  text-decoration: none;
  line-height: 1.5em;
}

.footer-links-list a:hover {
  color: var(--aqua);
}

.footer-copy-wrap {
  display: flex;
  justify-content: space-between;
  align-items: last baseline;
  padding: 40px 35px;
}

.copy-left,
.copy-right {
  opacity: 0.5;
}

.copy-left img {
  width: 130px;
  height: auto;
}

.creat-cont {
  display: flex;
}

.creat {
  display: flex;
  margin-left: auto;
  align-items: baseline;
}

.creat img {
  float: right;
  margin: 0 0 0 10px;
  opacity: 1;
}

.creat img:hover {
  filter: brightness(140%);
}

.creat p {
  font-size: 11px;
  color: var(--aqua-gray2);
  text-align: right;
}

footer .light-wrap {
  filter: drop-shadow(0px -22px 100px rgba(97, 197, 186, 0.65));
  position: absolute;
  bottom: -35px;
  width: 100%;
  height: 35px;
}

footer .light {
  clip-path: ellipse(50% 50% at 50% 50%);
  height: 200px;
  width: 50%;
  display: block;
  background: var(--main-bg);
  margin: auto;
}

.equip-sec {
  position: relative;
  padding: 80px 50px;
  width: 100%;
  height: 250px;
  max-width: 1850px;
  margin: auto;
}

.equip-sec::after {
  content: "";
  background: radial-gradient(circle, rgba(37, 73, 69, 1) 0%, rgba(37, 73, 69, 0) 70%);
  background-size: cover;
  background-position: center center;

  background-repeat: no-repeat;
  position: absolute;
  width: 1800px;
  height: 1800px;
  left: -900px;
  top: -900px;
  z-index: -2;
}

.equip-all-wrap {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  position: absolute;
  z-index: 2;
  width: calc(100% - 100px);
}



.equip-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.equip-box:last-of-type .equip-num h4,
.equip-box:nth-last-of-type(2) .equip-num h4 {
  display: none;
}

.equip-box .close-btn {
  position: absolute;
  top: -15px;
  right: 0;
  visibility: hidden;
  opacity: 0;
}

.equip-box:not(:last-of-type) .close-btn {
  display: none;
}

.equip-box.open ul {
  visibility: visible;
  opacity: 1;
  transform: translateY(-40px);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}

.equip-box.open .close-btn {
  visibility: visible;
  opacity: 1;
}

.equip-box ul {
  visibility: hidden;
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
  font-size: 14px;
  margin: 0;
}

.equip-box ul li::before {
  top: -1px;
}

.equip-box ul li.nocontain {
  color: var(--aqua-gray);
}

.equip-box ul li.nocontain::before {
  content: url('../images/li-x.svg');
}

.equip-box.open .btn {
  visibility: hidden;
  opacity: 0;
}

.equip-box .btn {
  visibility: visible;
  opacity: 1;
  align-self: flex-start;
}

.equip-box h3 {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.equip-num {
  display: flex;
  gap: 30px;
  align-items: center;
}

.equip-num h4 {
  font-size: 48px;
  font-weight: normal;
  color: var(--aqua);
}

.equip-num svg {
  stroke: none;
  fill: var(--aqua-bg-o);
}

.equip-modal {
  z-index: 2;
  position: absolute;
  top: 40px;
  left: 25px;
  background: var(--main-bg-o);
  backdrop-filter: blur(10px);
  border: solid 1px var(--border-o15);
  border-radius: 5px;
  width: calc(100% - 50px);
  display: flex;
  justify-content: end;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease, visibility 0.5s ease, min-height 0.5s ease;
  clip-path: polygon(0 0,
      100% 0,
      100% calc(100% - 30px),
      calc(100% - 30px) 100%,
      0 100%);
  overflow: visible;
}

.equip-modal::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 30px;
  height: 30px;
  backdrop-filter: blur(10px);
  background-image: linear-gradient(135deg,
      transparent calc(50% - 1px),
      var(--border-o15) calc(50% - 1px),
      var(--border-o15) calc(50% + 1px),
      transparent calc(50% + 1px));
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.equip-modal.visible {
  visibility: visible;
  opacity: 1;
}

.gym-des-bottom {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.gym-area-size {
  display: flex;
  flex-direction: column;
  align-self: start;
}

.gym-area-size h3 {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--text);
}

.gym-area-size h4 {
  font-size: 36px;
  font-weight: normal;
  color: var(--aqua);
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(0px);
  display: none;
  justify-content: center;
  align-items: center;
}

.lightbox.active {
  opacity: 1;
  backdrop-filter: blur(10px);
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--main-bg-o);

}

.lightbox-content {
  position: relative;
  width: 90%;
  height: 80%;
  max-width: 90%;
  max-height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-media {
  max-width: 100%;
  max-height: 100%;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.lightbox-media img,
.lightbox-media video {
  max-width: 100%;
  max-height: 80vh;
  display: block;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: -20px;
  color: white;
  font-size: 40px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s;
}

.lightbox-close:hover svg {
  stroke: var(--aqua-hlight);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 50px;
  cursor: pointer;
  padding: 20px;
  user-select: none;
  transition: color 0.3s;
  z-index: 10001;
}

.lightbox-nav:hover svg {
  stroke: var(--aqua-hlight);
}

.lightbox-prev {
  left: -80px;
}

.lightbox-prev:hover svg {
  transform: translateX(-3px);
}

.lightbox-next {
  right: -80px;
}

.lightbox-next:hover svg {
  transform: translateX(3px);
}

.lightbox-counter {
  color: var(--aqua-gray);
  font-size: 14px;
  bottom: -40px;
  position: absolute;
}

.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.gal-card:hover .video-play-icon svg {
  stroke: var(--aqua-hlight);
}

.gym-contact-wrap {
  width: 100%;
}

.gym-contact-wrap h3 {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
  color: var(--aqua);
}

.gym-contact-wrap h2 {
  font-size: 36px;
  font-weight: bold;
  color: var(--text);
  width: auto;
  text-align: left;
}

.gym-contact {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.gym-contact-left,
.gym-contact-right {
  display: flex;
  flex-direction: column;
  width: 50%;
  gap: 15px;
  padding: 20px 0 0 0;
}

.gym-contact-left a {
  display: flex;
  gap: 20px;
  color: var(--text);
  align-items: center;
}

.gym-contact-left a:hover {
  color: var(--aqua);
}

.gym-contact-right p {
  display: flex;
  gap: 20px;
}

.membership-sec {
  display: flex;
  gap: 30px;
  width: 100%;
  height: auto;
  position: relative;
  padding: 80px 50px;
  justify-content: space-between;
  max-width: 1900px;
  margin: auto;
  flex-wrap: wrap;
}

.membership-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3px;
  justify-content: start;
  text-align: left;
  border-radius: 5px;
  padding: 40px;
  border: solid 1px var(--aqua);
  backdrop-filter: blur(10px);
  clip-path: polygon(0 0,
      100% 0,
      100% calc(100% - 35px),
      calc(100% - 35px) 100%,
      0 100%);
  overflow: visible;
  flex: 1;
  min-width: 412px;
}

.membership-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 35px;
  height: 35px;
  background: var(--main-bg-o);
  backdrop-filter: blur(10px);
  background-image: linear-gradient(135deg, transparent calc(50% - 1px), var(--aqua) calc(50% - 1px), var(--aqua) calc(50% + 1px), transparent calc(50% + 1px));
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.membership-card h2 {
  width: auto;
  text-align: left;
  font-weight: bold;
  font-size: 22px;
  color: var(--aqua);
  margin-bottom: 20px;
}

.membership-card p {
  font-size: 14px;
}

.membership-card .btn {
  margin-top: auto;
  align-self: center;
  width: 100%;
}

.membership-prices {
  display: flex;
  gap: 10px;
  flex-direction: column;
  padding: 30px 0 40px 0;
}

.membership-prices hr {
  margin: 20px 0;
  border: none;
  width: 100%;
  height: 1px;
  background-color: var(--aqua-dark);
}

.membership-price {
  display: flex;
  gap: 0px 8px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.membership-price h3 {
  font-size: 18px;
  font-weight: bold;
}

.membership-price p {
  margin-right: auto;
  color: var(--aqua-gray);
}

.membership-price h4 {
  font-size: 18px;
  font-weight: normal;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 5px;
}

.membership-price h4 span {
  font-size: 14px;
  font-weight: normal;
}


.membership-price-all {
  flex-wrap: wrap;
  gap: 8px;
}

.membership-price-all p {
  margin-right: auto;
  width: 100%;
}

.membership-card-ribbon {
  width: 228px;
  height: 32px;
  position: absolute;
  transform: rotate(45deg);
  background: var(--aqua);
  display: flex;
  justify-content: center;
  align-items: center;
  right: -46px;
  top: 52px;
}

.membership-card-ribbon p {
  color: var(--white);
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
}

.yearly-membership-desc {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 30px;
}

.membership-card-highlight {
  background: #9bf1e8;
  color: #316868;
}

.membership-card-highlight .membership-price {
  align-items: start;
  gap: 8px;
}

.membership-card-highlight h2,
.membership-card-highlight .membership-price h3,
.membership-card-highlight .membership-price h4 {
  color: var(--main-bg);
  font-weight: bold;
}


.firstentry-info-sec {
  max-width: 1900px;
  margin: 0 auto;
  width: 100%;
  padding: 0 100px 50px 100px;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.firstentry-info-cont {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.firstentry-info-sec h2 {
  font-weight: bold;
  width: auto;
  text-align: left;
  font-size: 30px;
}

.firstentry-info-sec h2 span {
  color: var(--aqua);
}

.firstentry-info-sec .smart-gym-icon {
  width: 54px;
  height: auto;
}

.firstentry-info-sec .hero-hp-right {
  width: auto;
}

.gift-card-sec h2,
.about-vision-sec h2 {
  font-weight: bold;
  color: var(--aqua);
  font-size: 26px;
  width: 100%;
  text-align: left;
}

.about-us-sec h5 {
  color: var(--aqua);
  font-size: 24px;
}

.preparing-sec-about {
  border-bottom: none;
  margin-bottom: 20px;
}

.preparing-sec-about::after {
  background: none;
}

.main-contact-section {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  max-width: 1900px;
  margin: 0 auto;
  width: 100%;
  padding: 100px 100px 60px 100px;
  flex-wrap: wrap;
}

.main-contact-section::after {
  content: "";
  background: radial-gradient(circle, rgba(37, 73, 69, 1) 0%, rgba(37, 73, 69, 0) 70%);
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-size: auto;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  width: 1800px;
  height: 1800px;
  left: -900px;
  top: -900px;
  z-index: -2;
}

.main-contact-left {
  display: flex;
  flex-direction: column;
  gap: 25px;
  flex: 1;
  padding: 20px 0;
}

.main-contact-left a {
  display: flex;
  align-items: center;
  gap: 35px;
  color: var(--text);
  font-size: 34px;
  font-weight: bold;
}

.main-contact-left a:hover {
  color: var(--aqua);
}

.main-contact-left h4 {
  font-size: 24px;
  text-transform: uppercase;
  color: var(--text);
  margin-top: 30px;
}

.main-contact-right {
  flex: 1;
}

.main-contact-right .h2-wrap {
  padding: 0;
  margin-bottom: 30px;
}

.main-contact-right .h2-wrap h2 {
  width: auto;
  text-align: left;
}

.main-contact-right .contact-form-wrap {
  position: relative;
  display: flex;
  border-radius: 5px;
  padding: 40px;
  border: solid 1px var(--border-o15);
  backdrop-filter: blur(10px);
  clip-path: polygon(0 0,
      100% 0,
      100% calc(100% - 35px),
      calc(100% - 35px) 100%,
      0 100%);
  overflow: visible;
  transition: opacity 0.3s ease;
}

.main-contact-right .contact-form-wrap::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 35px;
  height: 35px;
  backdrop-filter: blur(10px);
  background-image: linear-gradient(135deg, transparent calc(50% - 1px), var(--border-o15) calc(50% - 1px), var(--border-o15) calc(50% + 1px), transparent calc(50% + 1px));
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.main-contact-right .contact-form {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.main-contact-right .contact-form-right,
.main-contact-right .contact-form-left {
  flex: 0 0 calc(50% - 10px);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.main-contact-right .contact-form-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.main-contact-right .contact-form-bottom p {
  font-size: 13px;
  color: var(--aqua-gray);
}

.main-contact-right .contact-form-bottom p a {
  color: var(--aqua-gray);
  text-decoration: underline;
}

.main-contact-right .contact-form-bottom p a:hover {
  color: var(--aqua-gray2);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  margin: 6px 0 2px 0;
  border-radius: 5px;
  border: 1px solid var(--border-o15);
  background: var(--black-bg-o);
  color: var(--text);
  font-family: 'Montserrat';
  font-size: 16px;
  resize: vertical;
  overflow: auto;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--aqua);
}

.contact-gyms-tabs-sec {
  padding-bottom: 80px;
}

.gyms-tabs-wrap {
  width: 100%;
  position: relative;
  border-bottom: solid 1px var(--border-o15);
  clip-path: polygon(0 0,
      100% 0,
      100% calc(100% - 35px),
      calc(100% - 35px) 100%,
      0 100%);
  overflow: visible;
  z-index: 1;
}

.gyms-tabs-wrap::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 35px;
  height: 35px;
  background-image: linear-gradient(135deg, transparent calc(50% - 1px), var(--border-o15) calc(50% - 1px), var(--border-o15) calc(50% + 1px), transparent calc(50% + 1px));
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.gym-tabs {
  display: flex;
  gap: 25px;
  overflow-y: hidden;
  overflow-x: auto;
}

.gym-tabs-nav-left {
  position: absolute;
  left: 0;
  top: 0px;
  width: 70px;
  height: 85px;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(11, 19, 19, 1) 50%, rgba(11, 19, 19, 0) 100%);
  z-index: 1;
  justify-content: start;
  padding-left: 10px;
  cursor: pointer;
}

.gym-tabs-nav-right {
  position: absolute;
  right: 0;
  width: 70px;
  height: 85px;
  display: flex;
  align-items: center;
  background: linear-gradient(270deg, rgba(11, 19, 19, 1) 50%, rgba(11, 19, 19, 0) 100%);
  z-index: 1;
  justify-content: end;
  padding-right: 10px;
  cursor: pointer;
}

.gym-tab {
  padding: 30px 20px;
  position: relative;
}

.gym-tabs>.gym-tab:nth-child(2) {
  margin-left: 50px;
}

.gym-tabs>.gym-tab:nth-last-child(2) {
  margin-right: 50px;
}

.gym-tab:hover {
  cursor: pointer;
}

.gym-tab::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 0;
  border-bottom: solid 1px var(--aqua);
  opacity: 0;
  margin: auto;
  transition: width 0.3s ease, opacity 0.3s ease;
}

.gym-tab h4 {
  font-size: 20px;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
  position: relative;
}

.gym-tab.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: calc(100% - 40px);
  border-bottom: solid 1px var(--aqua);
  opacity: 1;
  margin: auto;
}

.gym-tab.active h4 {
  color: var(--aqua);
}

.gym-contents-wrap {
  width: 100%;
  position: relative;
}

.gym-content {
  display: none;
  width: 100%;
}

.gym-content.active {
  display: block;
  animation: fadeIn 0.4s ease forwards;
}

.whatsapp-btn {
  max-width: 210px;
  font-size: 15px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: linear-gradient(90deg,
      var(--grad-start),
      var(--grad-end));
  transition: --grad-start 0.4s ease, --grad-end 0.4s ease;
}

.whatsapp-btn:hover {
  --grad-start: rgba(186, 254, 247, 1);
  --grad-end: rgba(97, 197, 186, 0.65);
  background: linear-gradient(90deg,
      var(--grad-start),
      var(--grad-end));
}

.default-content-sec {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  height: auto;
  position: relative;
  padding: 80px 50px;
}

.flex-wrap {
  display: flex;
  flex-wrap: wrap;
}

.gap20 {
  gap: 20px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}






.pt-100 {
  padding-top: 100px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-30 {
  padding-top: 30px;
}

@media (max-width: 1850px) {
  .membership-card {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 1400px) {
  .picl-textr-sec {
    padding: 50px;
  }

  .benefits-sec {
    flex-wrap: wrap;
  }

  .benefits-sec .card {
    flex: 0 0 calc(50% - 20px);
  }

  .equipment-sec .card {
    width: calc(33.33% - 15px);
  }

}

@media (max-width: 1300px) {

  .site-header {
    margin: 15px 20px;
    padding: 15px;
  }

  .logo,
  .logo img {
    height: 25px;
    width: auto;
  }

  nav a,
  .site-header-wrap .dropdown-content a {
    padding: 12px 10px;
    font-size: 16px;

  }

  .header-right .btn {
    padding: 10px 12px;
    font-size: 16px;
  }


  .ref-wrap,
  .gal-wrap {
    width: 100%;
  }

  .ref-card-wrap {
    flex: 0 0 calc(100% / 2);
  }

  .gal-card-wrap {
    flex: 0 0 calc(100% / 2);
    max-width: calc(100% / 2);
  }

  .gal-card {
    width: 100%;
  }

  .gym-contact {
    flex-direction: column;
    gap: 0;
  }

  .gym-contact-left,
  .gym-contact-right {
    width: 100%;
  }

  .firstentry-info-sec {
    padding: 0 50px 50px 50px;
  }

  .main-contact-right {
    min-width: 100%;
  }

}

@media (max-width: 1200px) {


  .hero-hp {
    flex-direction: column;
    align-items: start;
  }

  .hero-hp-right {
    width: 100%;
    flex-direction: initial;
    flex-wrap: wrap;
  }

  .hero-hp .gyms-links a:first-of-type {
    padding: 10px 15px;
  }

  .hero-gym .hero-hp-left {
    flex: auto;
    gap: 20px;
  }

  .hero-gym .hero-hp-right .btn {
    width: calc(50% - 10px);
  }

  .footer-grid {
    display: flex;
    flex-wrap: wrap;
  }

  .footer-col {
    flex: 1;
  }

  .footer-col:last-of-type {
    width: 100%;
    flex: auto;
  }

  .footer-contact {
    margin-right: auto;
    flex-direction: row;
    align-items: center;
    gap: 50px;
  }

  .footer-contact h4 {
    margin-top: 0;
  }

}

@media (max-width: 1100px) {

  .site-header {
    margin: 10px 10px 0 10px;
    padding: 10px;
  }

  nav,
  .header-right {
    display: none;
  }

  .hamburger-menu {
    display: flex;
  }

  .navbar-mobile {
    display: flex;
  }

  .equip-sec {
    padding: 80px 50px 30px 50px;
    height: auto;
  }

  .equip-sec::after,
  .main-contact-section::after {
    width: 100%;
    left: 0;
  }

  .equip-all-wrap {
    flex-wrap: wrap;
    position: relative;
    width: 100%;
  }

  .equip-box {
    flex: 0 0 calc(50% - 15px);
  }

  .equip-box ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .equip-box.open ul {
    max-height: 2000px;
  }

}

@media (max-width: 1000px) {
  .h2-wrap {
    justify-content: center;
  }

  h2 {
    width: auto;
    text-align: center;
  }



  .hero-hp {
    padding: 100px 20px 40px 20px;
  }

  .hero-gym {
    padding: 100px 20px 100px 20px;
  }

  .hero-gym h1 {
    font-size: 85px;
  }

  .hero-othersubp-wrap {
    min-height: 335px;
  }

  .hero-othersubp {
    padding: 100px 70px 50px 20px;
    min-height: 335px;
  }


  .picl-textr-sec {
    flex-direction: column;
    padding: 20px;
  }

  .picl-textr-sec .picl {
    width: 100%;
  }

  .picl-textr-sec .textr {
    width: 100%;
    right: -10px;
    top: -50px;
    clip-path: polygon(0 0,
        100% 0,
        100% calc(100% - 30px),
        calc(100% - 30px) 100%,
        0 100%);
  }

  .picl-textr-sec .textr::after {
    width: 30px;
    height: 30px;
  }

  .picr-textl-sec {
    flex-direction: column;
    padding: 20px;
  }

  .picr-textl-sec .picr {
    width: 100%;
  }

  .picr-textl-sec .textl {
    width: 100%;
    left: -10px;
    top: 50px;
    clip-path: polygon(0 0,
        100% 0,
        100% calc(100% - 30px),
        calc(100% - 30px) 100%,
        0 100%);
  }

  .picr-textl-sec .textl::after {
    width: 30px;
    height: 30px;
  }

  .benefits-sec {
    padding: 30px;
  }

  .benefits-sec .card {
    flex: 0 0 calc(50% - 15px);
  }

  .equipment-sec .card {
    width: calc(50% - 15px);
  }

  .equipment-sec .card-big {
    padding: 70px 50px;
  }

  .lightbox-nav {
    padding: 10px;
  }

  .lightbox-prev {
    left: -10px;
  }

  .lightbox-next {
    right: -10px;
  }

  .lightbox-prev svg,
  .lightbox-next svg {
    filter: drop-shadow(3px 4px 5px rgba(0, 0, 0, 0.9));
  }

  .lightbox-close {
    right: 0;
    top: -60px;
  }

  .firstentry-info-sec {
    flex-wrap: wrap;
    justify-content: center;
    padding: 30px 30px 50px 30px;
  }

  .firstentry-info-sec .hero-hp-right .card {
    width: 100%;
  }

  .main-contact-section {
    padding: 50px;
  }

  .membership-card {
    flex: 0 0 100%;
  }


}

@media (max-width: 900px) {
  .footer-grid {
    gap: 50px;
    padding: 0 30px;
  }

  .footer-col {
    flex: auto;
  }

  .footer-col:first-of-type {
    flex: 0 0 100%;
    text-align: center;
  }

  .footer-contact {
    margin-right: auto;
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }

  .footer-contact h4 {
    margin-top: 20px;
  }

}


@media (max-width: 768px) {
  h1 {
    font-size: 50px;
  }

  .hero-gym h1 {
    font-size: 38px;
  }

  .hero-hp h1 span {
    font-size: 100px;
  }

  .hero-hp {
    clip-path: polygon(0 0,
        100% 0,
        100% calc(100% - 140px),
        calc(100% - 140px) 100%,
        0 100%);
  }

  .hero-othersubp {
    min-height: auto;
  }

  .hero-othersubp-wrap {
    min-height: auto;
  }

  .hero-gym .hero-hp-right .btn {
    width: 100%;
  }

  .picl-textr-sec .picl {
    height: 350px;
  }

  .benefits-sec .card {
    flex: auto;
  }

  .benefits-sec .card h3 {
    margin: auto;
    text-align: center;
  }

  .values-sec {
    padding: 50px 30px;
  }

  .value-wrap {
    flex-direction: column;
    margin-bottom: 45px;
    padding-bottom: 55px;
    gap: 15px;
    border-bottom: solid 1px var(--aqua-gray);
  }

  .value-wrap:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 20px;
  }

  .value-wrap .description::before {
    display: none;
  }

  .value-wrap .title {
    width: 100%;
    text-align: center;
  }

  .value-wrap .description {
    width: 100%;
    margin-top: 0;
    padding: 0;
    border-left: none;
    text-align: center;
  }

  .value-wrap .description p {
    top: 0;
  }

  .equipment-sec {
    padding: 30px;
  }

  .equipment-sec::after {
    top: -120px;
  }

  .equipment-sec .h2-wrap {
    transform: none;
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
  }

  .equipment-sec .h2-wrap svg {
    transform: none;
  }

  .equipment-sec .card {
    width: 100%;
    padding: 25px 50px;
  }


  .locations-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    padding: 0 12px;
  }


  .modal-content {
    width: 95%;
    margin: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .modal-header {
    padding: 16px 20px;
  }

  .modal-header h2 {
    font-size: 20px;
    margin: 40px 0 20px 0;
  }

  .contact-form {
    padding: 20px;
  }

  .ctas-sec .btn {
    min-width: 100%;
  }

  .ref-card-wrap {
    flex: 0 0 100%;
  }

  .ref-card p {
    font-size: 13px;
  }

  .ref-card h4 {
    font-size: 16px;
  }

  .faq-sec {
    padding: 0 25px 50px 25px;
  }

  .faq-item {
    padding: 16px 22px;
  }

  .faq-question {
    gap: 20px;
  }

  .faq-question h3 {
    font-size: 18px;
  }

  .faq-answer p {
    font-size: 15px;
  }

  .gal-card-wrap {
    flex: 0 0 100%;
    max-width: 100%;
  }

}

@media (max-width: 600px) {

  .equip-box {
    flex: 0 0 100%;
    position: relative;
  }

  .equip-box:not(:last-of-type) .close-btn {
    display: block;
    top: 0px;
  }

  .main-contact-section {
    padding: 30px;
  }

  .main-contact-right .contact-form-wrap {
    padding: 20px;
  }

  .main-contact-right .contact-form-right,
  .main-contact-right .contact-form-left {
    flex: 0 0 100%;
  }

  .main-contact-right .contact-form-bottom {
    flex-direction: column;
  }

}

@media (max-width: 550px) {
  .home-trainers-description {
    padding: 30px;
  }

  .trainers-sec {
    padding: 50px 25px 80px 25px;
  }

  .hero-othersubp-wrap {
    min-height: 265px;
  }

  .hero-othersubp {
    min-height: 265px;
  }

  .membership-sec {
    padding: 80px 25px;
  }

  .membership-card {
    min-width: 100%;
    padding: 25px;
  }

  .membership-card h2 {
    width: 60%;
  }

  .membership-prices {
    gap: 20px;
  }

  .main-contact-right .h2-wrap h2 {
    font-size: 37px;
  }

  .main-contact-left a {
    font-size: 22px;
    flex-wrap: wrap;
  }

  .main-contact-left a svg {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }

}



@media (max-width: 450px) {
  h1 {
    font-size: 38px;
  }

  .hero-hp h1 span {
    font-size: 80px;
  }

  .hero-hp {
    clip-path: polygon(0 0,
        100% 0,
        100% calc(100% - 50px),
        calc(100% - 50px) 100%,
        0 100%);
  }

  .hero-hp-right {
    min-width: 310px;
  }

  .hero-hp-right .card {
    width: 310px;
  }

  .hero-hp .gyms-links a,
  .hero-hp .gyms-links a:first-of-type {
    width: 100%;
    padding: 10px 15px 10px 0;
  }

  .hero-gym {
    padding: 100px 20px 50px 20px;
  }

  .hero-gym .hero-hp-right {
    padding-right: 0;
    min-width: auto;
  }

  .picl-textr-sec .picl {
    height: 250px;
  }

  .picl-textr-sec .textr {
    padding: 20px;
  }

  .pt-100 {
    padding-top: 60px;
  }

  .modal-content {
    width: 100%;
    margin: 10px;
    max-height: 95vh;
  }

  .contact-form {
    padding: 16px;
  }

  .preparing-sec {
    padding: 30px;
  }

  .preparing-cont {
    gap: 20px;
  }

  .ctas-sec {
    padding: 0 30px 30px 30px;
  }

  .references-sec {
    padding: 0 20px;
    gap: 20px;
  }

  .ref-card-wrap {
    padding: 0 10px;
  }

  .ref-card {
    padding: 30px 25px;
  }

  .ref-card p::before {
    left: -25px;
  }

  .gallery-sec {
    padding: 0 30px 50px 30px;
  }

  .gal-card {
    height: 300px;
  }

  .firstentry-info-cont {
    gap: 30px;
  }

  .firstentry-info-sec h2 {
    font-size: 20px;
  }

  .whatsapp-btn {
    right: 15px;
    bottom: 15px;
  }

  .default-content-sec {
    padding: 40px 20px;
  }

  .default-content-sec h2 {
    font-size: 34px;
  }

  .default-content-sec h3 {
    font-size: 26px;
  }

  .default-content-sec h4 {
    font-size: 20px;
  }

}