* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  color: #222;
  background-color: #fff;
  font-family: "Poppins", "Inter", Arial, Helvetica, sans-serif;
  font-size: 18px;
}

p {
  line-height: 150%;
}

section {
  padding: 96px 0;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  section {
    padding: 64px 0;
  }
}

.navigation {
  padding: 16px 0;
  background-color: transparent;
  z-index: 800;
}
.navigation nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}
.navigation nav .right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.navigation .lang-switch {
  width: 32px;
  height: 32px;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 600;
  color: #111;
  text-decoration: none;
}
.navigation .lang-switch:hover, .navigation .lang-switch:focus {
  color: #333;
  opacity: 0.8;
}
.navigation .lang-switch img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.navigation .lang-switch:hover img, .navigation .lang-switch:focus img, .navigation .lang-switch:active img {
  opacity: 0.8;
}
.navigation .logo img {
  width: 200px;
}
.navigation .links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  list-style: none;
  margin: 0;
}
.navigation .links a {
  text-transform: uppercase;
  font-weight: 600;
  color: #111;
  text-decoration: none;
}
.navigation .links a:hover, .navigation .links a:focus {
  color: #333;
  opacity: 0.8;
}
@media screen and (max-width: 992px) {
  .navigation .hamburger-menu {
    position: absolute;
    right: 24px;
    top: 52px;
    z-index: 30;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .navigation .hamburger-menu i {
    font-size: 24px;
    color: #333;
  }
  .navigation .links {
    display: none;
  }
  .navigation .logo {
    flex-shrink: 0;
    flex-grow: 0;
    position: relative;
    z-index: 20;
  }
  .navigation .logo img {
    width: 160px;
  }
  .navigation nav {
    justify-content: center;
  }
  .navigation .lang-switch {
    position: absolute;
    left: 24px;
    z-index: 15;
    top: 56px;
  }
  .navigation .right {
    position: absolute;
    width: 100%;
    top: 0;
  }
  .navigation.opened .hamburger-menu i {
    color: #fff;
  }
  .navigation.opened .lang-switch {
    color: #fff;
  }
  .navigation.opened .right {
    padding-top: 200px;
    padding-bottom: 80px;
    background-color: #791a55;
    width: 100%;
    top: 0;
  }
  .navigation.opened .right .links {
    padding: 0;
    width: 100%;
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .navigation.opened .right .links li a {
    color: #fff;
  }
}

.button {
  border-radius: 100px;
  text-decoration: none;
  padding: 12px 24px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.6px;
  color: #fff;
  display: inline-flex;
}
.button.button-primary {
  border: 1px solid #f26822;
  background-color: #f26822;
  color: #fff !important;
}
.button.button-primary:hover, .button.button-primary:focus, .button.button-primary:active {
  color: #fff !important;
  border-color: #d75818;
  background-color: #d75818;
}
.button.button-ghost {
  border: 1px solid #ccc;
  background-color: transparent;
  color: #cb3894;
}
.button.button-ghost:hover, .button.button-ghost:focus, .button.button-ghost:active {
  border-color: #cb3894;
}
.button.button-lg {
  font-size: 16px;
  padding: 18px 40px;
}

.hero {
  position: relative;
  background-image: url('../img/fitness-flatlay-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3); /* adjust opacity here */
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-inner {
  padding-top: 120px; /* you can adjust this value as needed */
}


.hero .slogan {
  margin-top: 40px;
}
.hero .slogan h1 {
  font-size: 64px;
  font-weight: 600;
}
.hero .slogan h3 {
  font-weight: 400;
  padding-left: 4px;
}
.hero .slogan h4 {
  font-weight: 300;
  font-size: 16px;
  padding-left: 4px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.hero .slogan .buttons {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.hero .slogan .buttons .button {
  flex-grow: 1;
  text-align: center;
  justify-content: center;
}
@media screen and (max-width: 769px) {
  .hero .slogan {
    text-align: center;
  }
  .hero .slogan h1 {
    font-size: 48px;
  }
}
.hero .socials {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  padding: 0;
  margin-top: 32px;
}
.hero .socials li a {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: rgba(203, 56, 148, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
}
.hero .socials li a:hover, .hero .socials li a:focus {
  background-color: #cb3894;
}
@media screen and (max-width: 769px) {
  .hero .socials {
    justify-content: center;
    margin-bottom: 40px;
  }
}

.top-part {
  background: rgb(203, 56, 148);
  background: linear-gradient(0deg, rgba(203, 56, 148, 0) 0%, rgba(203, 56, 148, 0.0900735294) 100%);
}

.title h2 {
  font-weight: 600;
  font-size: 40px;
}
.title h3 {
  font-weight: 300;
  font-size: 16px;
  padding-left: 4px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  .title h2 {
    font-size: 32px;
  }
}

#about .img-container {
  position: relative;
}
#about .img-container::before {
  content: "";
  width: 88px;
  height: 80%;
  position: absolute;
  top: 10%;
  left: -80px;
  background-color: #bbd646;
}
#about .img-container::after {
  content: "";
  width: 88px;
  height: 40%;
  position: absolute;
  top: 30%;
  right: -32px;
  background-color: #ffcd34;
}
#about .img-container img {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 992px) {
  #about .img-container {
    margin-bottom: 40px;
  }
}

.button-group {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}

#why {
  background-color: #ffd862;
  padding: 0;
}
#why .half-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
#why .fa-ul .fa-li {
  width: 1.4em;
}
#why .fa-ul li {
  margin: 16px 0;
}
#why .fa-ul li span {
  font-size: 24px;
  color: #ff5600;
  margin-top: -2px;
}
#why .right {
  min-height: 600px;
  position: relative;
}
#why .right .img-box {
  position: absolute;
  inset: 0;
}
#why .right .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#why .left {
  padding: 80px 160px;
}
@media screen and (min-width: 992px) and (max-width: 1400px) {
  #why .left {
    padding: 80px;
  }
}
@media screen and (max-width: 992px) {
  #why .half-grid {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  #why .half-grid .left {
    padding: 64px 40px;
  }
}

.services-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 80px;
}
.services-grid .service-box {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #ededed;
  background: rgb(245, 245, 245);
  background: linear-gradient(90deg, rgb(245, 245, 245) 0%, rgb(240, 240, 240) 100%);
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(1px, 65%) minmax(1px, 35%);
  transition-duration: 0.2s;
  position: relative;
}
.services-grid .service-box a.card-link {
  position: absolute;
  inset: 0;
}
.services-grid .service-box .left {
  padding: 40px;
  padding-left: 56px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
}
.services-grid .service-box .left a {
  position: relative;
  z-index: 3;
}
.services-grid .service-box .left p {
  font-size: 24px;
}
.services-grid .service-box .left h3 {
  font-size: 32px;
  font-weight: 600;
}
.services-grid .service-box img {
  max-width: 100%;
  transform: scale(1.4);
  transform-origin: center;
  transition-duration: 0.2s;
}
.services-grid .service-box.img-left {
  grid-template-columns: minmax(1px, 35%) minmax(1px, 65%);
}
.services-grid .service-box.img-left .left {
  padding-left: 40px;
  padding-right: 56px;
}
.services-grid .service-box.img-left img {
  transform-origin: center;
}
.services-grid .service-box .right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.services-grid .service-box:hover {
  background: rgb(245, 245, 245);
  background: linear-gradient(90deg, rgb(245, 245, 245) 0%, rgb(226, 226, 226) 100%);
}
.services-grid .service-box:hover img {
  transform: scale(1.5);
}
@media screen and (max-width: 1200px) {
  .services-grid .service-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .services-grid .service-box .right img {
    transform: scale(1.1);
  }
  .services-grid .service-box .left {
    order: 2;
    padding: 32px !important;
  }
  .services-grid .service-box .left h3 {
    font-size: 22px;
  }
  .services-grid .service-box:hover .right img, .services-grid .service-box:focus .right img {
    transform: scale(1.1);
  }
}
@media screen and (max-width: 768px) {
  .services-grid .service-box .left {
    padding: 24px !important;
  }
}
@media screen and (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

#contact {
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: "";
  position: absolute;
  height: 40%;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background-color: #ffcd34;
  left: -100px;
  bottom: -140px;
}
#contact::after {
  content: "";
  position: absolute;
  height: 100%;
  aspect-ratio: 1/1;
  border-radius: 100%;
  border: 120px solid #cb3894;
  bottom: -200px;
  left: 47%;
}

.contact-box {
  border: 1px solid #ededed;
  background-color: #fff;
  border-radius: 8px;
  position: relative;
  z-index: 3;
}
.contact-box h4 {
  font-weight: 600;
}
.contact-box form .input-cont {
  margin: 24px 0;
}
.contact-box form .input-cont label {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}
.contact-box form .input-cont input,
.contact-box form .input-cont textarea {
  height: 40px;
  width: 100%;
  border: none;
  border-bottom: 1px solid #999;
  outline: none;
  box-shadow: none;
}
.contact-box form .input-cont textarea {
  resize: none;
  height: 120px;
}
@media screen and (max-width: 992px) {
  .contact-box {
    margin-top: 48px;
  }
}
@media screen and (max-width: 768px) {
  .contact-box {
    padding: 40px 24px !important;
  }
}

footer.main-footer {
  background-color: #111;
  padding: 64px 0;
  color: rgba(255, 255, 255, 0.7);
}
footer.main-footer p {
  font-weight: 300;
  margin: 0;
}
footer.main-footer .right {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: flex-end;
}
footer.main-footer ul {
  margin: 0;
}
footer.main-footer .socials {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  padding: 0;
}
footer.main-footer .socials li a {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: rgba(203, 56, 148, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
}
footer.main-footer .socials li a:hover, footer.main-footer .socials li a:focus {
  background-color: #cb3894;
}
footer.main-footer .links {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}
footer.main-footer .links li a {
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
footer.main-footer .links li a:hover, footer.main-footer .links li a:focus {
  text-decoration: underline;
}
@media screen and (max-width: 992px) {
  footer.main-footer {
    text-align: center;
  }
  footer.main-footer .col-lg-4 {
    order: 2;
  }
  footer.main-footer .right {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
  }
  footer.main-footer .links {
    flex-direction: column;
    gap: 16px;
    padding: 0 !important;
  }
}

.inner-header {
  min-height: 300px;
  padding-top: 160px;
}
.inner-header .title {
  margin-top: 80px;
  text-align: center;
}
.inner-header .title h1 {
  font-size: 56px;
  font-weight: 600;
}

.features-block .features-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.features-block .features-list .feature {
  font-size: 13px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.features-block .features-list .feature i {
  font-size: 14px;
  color: #97b515;
}

#strong .img-box {
  position: relative;
  aspect-ratio: 1/1;
}
#strong .img-box img {
  height: 140%;
  max-height: 700px;
  position: absolute;
  margin: 0 auto;
  z-index: 3;
  top: -20%;
}
#strong .img-box .inner {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 80%;
  background-color: #ffcd34;
  z-index: 2;
}
#strong .img-box .inner::before {
  content: "";
  position: absolute;
  height: 120%;
  aspect-ratio: 1/1;
  border: 64px solid #f26822;
  bottom: -140px;
  left: -140px;
  border-radius: 100%;
  z-index: 1;
}
@media screen and (max-width: 992px) {
  #strong .img-box .inner::before {
    height: 90%;
    bottom: -40px;
  }
  #strong .img-box img {
    top: auto;
    height: 110%;
    bottom: 0;
    right: 100px;
  }
  #strong .title {
    margin-top: 40px;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: minmax(1px, 1fr) minmax(1px, 1fr);
  gap: 12px 32px;
}
.features-grid .feature {
  font-size: 16px;
  display: inline-flex;
  gap: 12px;
  align-items: center;
}
.features-grid .feature i {
  font-size: 16px;
  color: #97b515;
}
@media screen and (max-width: 992px) {
  .features-grid {
    margin-top: 40px;
  }
}
@media screen and (max-width: 550px) {
  .features-grid {
    grid-template-columns: minmax(1px, 1fr);
  }
}

.eq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(1px, 1fr));
  gap: 24px;
}
.eq-grid .item {
  width: 100%;
}
.eq-grid .item .img-box {
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 24px;
}
.eq-grid .item .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 992px) {
  .eq-grid {
    grid-template-columns: repeat(2, minmax(1px, 1fr));
    gap: 16px;
  }
}
@media screen and (max-width: 550px) {
  .eq-grid {
    grid-template-columns: repeat(1, minmax(1px, 1fr));
    gap: 16px;
  }
}

#zumba .img-box {
  position: relative;
  aspect-ratio: 1/1;
}
#zumba .img-box img {
  height: 100%;
  max-height: 700px;
  position: absolute;
  margin: 0 auto;
  z-index: 3;
  bottom: 0;
}
#zumba .img-box .inner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80%;
  background-color: #bbd646;
  z-index: 2;
}
#zumba .img-box .inner::before {
  content: "";
  position: absolute;
  height: 120%;
  aspect-ratio: 1/1;
  border: 64px solid #cb3894;
  top: -140px;
  right: -140px;
  border-radius: 100%;
  z-index: 1;
}
@media screen and (max-width: 992px) {
  #zumba .img-box {
    margin-top: 100px;
  }
  #zumba .img-box .inner::before {
    top: -80px;
  }
  #zumba .img-box img {
    top: auto;
    height: 110%;
    bottom: 0;
    right: 0;
    margin: auto;
  }
}

.bg-orange-light {
  background-color: rgba(242, 104, 34, 0.1);
}

.join h3 {
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .join {
    text-align: center;
  }
  .join .justify-content-end {
    justify-content: center !important;
    margin-top: 24px;
  }
}

@media screen and (max-width: 1200px) {
  #welcome {
    padding-bottom: 0;
    padding-top: 80px !important;
  }
}/*# sourceMappingURL=main.css.map */