/* =========================
   GLOBAL
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Barlow", sans-serif;
  overflow-x: hidden;
  background:black;
  color: #fff;
}

/* =========================
   BODY
========================== */

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: sans-serif;
  background: black;
}

/* =========================
       STICKY HEADER
    ========================== */

.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

/* =========================
       TOP BAR
    ========================== */

.top-bar {
  padding: 14px 70px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
}

.top-bar span {
  color: #d9d9d9;
  font-size: 14px;
  font-weight: 500;
}

.social-icons a {
  color: #fff;
  margin-left: 20px;
  font-size: 16px;
  transition: 0.3s;
  text-decoration: none;
}

.social-icons a:hover {
  color: #F8DC57;
}

/* =========================
       NAVBAR
    ========================== */

.custom-navbar {
  padding: 22px 70px;
  background: transparent;
}

/* LOGO PADDING */

.navbar-brand {
  padding: 30px 0;
}

.navbar-brand img {
  width: 160px;
}

.nav-link {
  color: #fff !important;
  font-size: 17px;
  font-weight: 700;
  margin: 0 18px;
  transition: 0.3s;
}

.nav-link:hover {
  color: #F8DC57 !important;
}

.member-btn {
  background:#F8DC57;
  color: #111;
  border: none;
  padding: 18px 38px;
  font-size: 14px;
  font-weight: 800;
  transition: 0.3s;
}


.member-btn:hover {
  background: #F8DC57;
  color: #111;
}

/* =========================
       HERO SECTION
    ========================== */

.hero-section {
  width: 100%;
  height: 100vh;
}

.carousel,
.carousel-inner,
.carousel-item {
  height: 100vh;
}

/* =========================
       BACKGROUND
    ========================== */

.slide-bg {
  background-size: cover !important;
  background-position: center !important;
  position: relative;
}

.slide-bg::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.88) 28%,
    rgba(0, 0, 0, 0.45) 60%,
    rgba(0, 0, 0, 0.15)
  );
}

/* =========================
   DROPDOWN MENU
========================== */

.custom-dropdown {
  position: relative;
}

/* MAIN DROPDOWN */

.custom-dropdown-menu {
  background: #000 !important;
  border: none !important;
  min-width: 230px; /* increased 30px */
  padding: 20px 0;
  border-radius: 6px;
  margin-top: 12px;
  box-shadow: none !important;
}

/* DROPDOWN ITEMS */

.custom-dropdown-menu .dropdown-item {
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 18px;
  transition: 0.3s;
  background: transparent !important;
  line-height: 1.3;
}

/* HOVER EFFECT */

.custom-dropdown-menu .dropdown-item:hover {
  color: #F8DC57 !important;
  padding-left: 24px;
  background: transparent !important;
}

/* REMOVE BOOTSTRAP WHITE */

.dropdown-menu {
  --bs-dropdown-bg: #000;
  --bs-dropdown-border-color: transparent;
  --bs-dropdown-link-hover-bg: transparent;
}

/* REMOVE DEFAULT ARROW */

.dropdown-toggle::after {
  display: none;
}

/* DESKTOP HOVER */

@media (min-width: 992px) {
  .custom-dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* MOBILE RESPONSIVE */

@media (max-width: 991px) {
  .custom-dropdown-menu {
    min-width: 100%;
    padding: 6px 0;
    background: #111 !important;
    border-radius: 8px;
  }

  .custom-dropdown-menu .dropdown-item {
    font-size: 13px;
    padding: 8px 15px;
  }

  .custom-dropdown-menu .dropdown-item:hover {
    padding-left: 22px;
  }
}

/* =========================
       HERO CONTENT
    ========================== */

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 620px;
  margin-top: 80px;
}

.hero-content h1 {
  font-size: 110px;
  line-height: 0.85;
  font-family: "Anton", sans-serif;
  color: transparent;
  -webkit-text-stroke: 2px #F8DC57;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.hero-content h2 {
  font-size: 52px;
  line-height: 1;
  color: #fff;
  font-family: "Anton", sans-serif;
  margin-bottom: 22px;
}

.hero-content p {
  color: #ddd;
  font-size: 18px;
  line-height: 1.7;
  max-width: 560px;
}

/* =========================
       BUTTON
    ========================== */

.mobile-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  background: #F8DC57;
  color: #111;
  text-decoration: none;
  padding: 18px 34px;
  font-size: 17px;
  font-weight: 800;
  transition: 0.3s;
}

.mobile-btn:hover {
  background: #fff;
  color: #111;
}

/* =========================
       SLIDER BUTTONS
    ========================== */

.carousel-controls {
  position: absolute;
  right: 80px;
  bottom: 70px;
  z-index: 10;
  display: flex;
  gap: 15px;
}

.carousel-btn {
  width: 70px;
  height: 70px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 26px;
  transition: 0.3s;
}

.carousel-btn:hover {
  background: #F8DC57;
}

/* =========================
       MOBILE
    ========================== */

@media (max-width: 991px) {
  .top-bar {
    display: none !important;
  }

  .custom-navbar {
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
  }

  .navbar-brand {
    padding: 0;
  }

  .navbar-brand img {
    width: 120px;
  }

  .navbar-collapse {
    background: #000;
    padding: 25px;
    margin-top: 20px;
    border-radius: 10px;
  }

  .nav-link {
    margin: 14px 0;
  }

  .navbar-toggler {
    border: none;
    box-shadow: none !important;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .member-btn {
    display: none;
  }

  .hero-content {
    margin-top: 120px;
    padding: 0 15px;
  }

  .hero-content h1 {
    font-size: 60px;
    -webkit-text-stroke: 1px #F8DC57;
  }

  .hero-content h2 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .mobile-btn {
    padding: 14px 24px;
    font-size: 15px;
  }

  .carousel-controls {
    right: 20px;
    bottom: 30px;
  }

  .carousel-btn {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }
}

 /* ===================================
       MARQUEE
    =================================== */

    .marquee{
      width:100%;
      overflow:hidden;
      position:relative;
      padding:12px 0;
      white-space:nowrap;
    }

    .marquee-content{
      display:flex;
      width:max-content;
    }

    /* ===================================
       TOP
    =================================== */

    .top-slider{
      background:#d8c2a8;
    }

    .top-slider .marquee-content{
      animation:scroll-left 18s linear infinite;
    }

    .top-item{
      display:flex;
      align-items:center;
      font-size:18px;
      font-weight:700;
      color:#fff;
      text-transform:uppercase;
      margin-right:60px;
      flex-shrink:0;
    }

    .top-item i{
      margin-left:12px;
      font-size:18px;
    }

    /* ===================================
       BOTTOM
    =================================== */

    .bottom-slider{
      background:#f7db54;
    }

    .bottom-slider .marquee-content{
      animation:scroll-right 18s linear infinite;
    }

    .bottom-item{
      display:flex;
      align-items:center;
      font-size:18px;
      font-weight:700;
      color:#000;
      text-transform:uppercase;
      margin-right:60px;
      flex-shrink:0;
    }

    .bottom-item i{
      margin-right:12px;
      font-size:18px;
    }

    /* ===================================
       PERFECT LOOP
    =================================== */

    @keyframes scroll-left{
      from{
        transform:translateX(0);
      }
      to{
        transform:translateX(-50%);
      }
    }

    @keyframes scroll-right{
      from{
        transform:translateX(-50%);
      }
      to{
        transform:translateX(0);
      }
    }

    /* ===================================
       RESPONSIVE
    =================================== */

    @media(max-width:768px){

      .top-item,
      .bottom-item{
        font-size:14px;
        margin-right:35px;
      }

      .top-item i,
      .bottom-item i{
        font-size:14px;
      }

    }



/* SECTION */

.trainer-section {
  padding: 60px 0;
  background: black;
}

/* TITLE */

.section-title {
  text-align: center;
  margin-bottom: 45px;
}

.section-title h2 {
  color: #fff;
  font-family: "Anton", sans-serif;
  font-size: 55px;
  letter-spacing: 2px;
}

/* CARD */

.trainer-card {
  overflow: hidden;
}

/* IMAGE */

.trainer-img {
  overflow: hidden;
}

.trainer-img img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: 0.5s;
}

.trainer-card:hover img {
  transform: scale(1.06);
}

/* CONTENT */

.trainer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
}

.trainer-text h3 {
  color: #fff;
  font-family: "Anton", sans-serif;
  font-size: 26px;
  margin-bottom: 6px;
  transition: 0.4s;
}

.trainer-card.active h3 {
  color: #F8DC57;
}

.trainer-text p {
  color: #d7d7d7;
  font-size: 18px;
  margin: 0;
}

/* BUTTON */

.arrow-btn {
  width: 55px;
  height: 55px;
  border: none;
  background: #dcc8a8;
  color: #02031a;
  font-size: 28px;
  font-weight: bold;
  transition: 0.4s;
  flex-shrink: 0;
}

.arrow-btn:hover {
  background: #F8DC57;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .trainer-card {
    margin-bottom: 35px;
  }
}

@media (max-width: 767px) {
  .trainer-img img {
    height: 380px;
  }
}

@media (max-width: 575px) {
  .trainer-img img {
    height: 320px;
  }
}

@media (max-width: 575px) {
  .trainer-section {
    padding: 45px 0;
  }

  .section-title h2 {
    font-size: 36px;
  }

  .trainer-img img {
    height: 260px;
  }

  .trainer-text h3 {
    font-size: 22px;
  }

  .trainer-text p {
    font-size: 16px;
  }

  .arrow-btn {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}



/* =========================
   SECTION
========================= */
/* =========================
   GLOBAL
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:#000;
  font-family:Arial, sans-serif;
  overflow-x:hidden;
}

/* =========================
   SECTION
========================= */

.feedback-section{
  padding:80px 0;
  background:#000;
}

.container{
  width:90%;
  max-width:1300px;
  margin:auto;
}

/* =========================
   SLIDER
========================= */

.testimonial-slider{
  overflow:hidden;
  position:relative;
}

.testimonial-track{
  display:flex;
  transition:0.6s ease;
}

.slide{
  min-width:100%;
}

/* =========================
   WRAPPER
========================= */

.feedback-wrapper{
  display:flex;
  align-items:center;
  gap:60px;
}

/* =========================
   IMAGE
========================= */

.feedback-image{
  width:40%;
}

.feedback-image img{
  width:100%;
  height:500px;
  object-fit:cover;
  border-radius:18px;
  display:block;
}

/* =========================
   CONTENT
========================= */

.feedback-content{
  width:60%;
}

/* =========================
   TITLE
========================= */

.feedback-title{
  font-family:"Anton", sans-serif;
  font-size:88px;
  line-height:1;
  color:transparent;
  -webkit-text-stroke:1.5px #F8DC57;
  margin-bottom:40px;
  letter-spacing:3px;
}

/* =========================
   VIDEO
========================= */

.video-feedback{
  display:flex;
  align-items:center;
  gap:15px;
  margin-bottom:40px;
}

.play-btn{
  width:55px;
  height:55px;
  border-radius:50%;
  background:rgba(77,29,10,0.75);
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  transition:0.3s;
}

.play-btn:hover{
  transform:scale(1.08);
}

.play-btn i{
  color:#fff;
  font-size:15px;
}

.video-feedback span{
  color:#d6d6d6;
  font-size:14px;
}

/* =========================
   BOTTOM
========================= */

.feedback-bottom{
  display:flex;
  gap:40px;
}

.client-info{
  min-width:180px;
}

.line{
  width:80px;
  height:2px;
  background:#F8DC57;
  margin-bottom:18px;
}

.client-info h4{
  color:#fff;
  font-family:"Anton", sans-serif;
  font-size:24px;
  margin-bottom:5px;
}

.client-info span{
  color:#cfcfcf;
  font-size:13px;
}

.feedback-text{
  flex:1;
}

.feedback-text p{
  color:#d7d7d7;
  font-size:15px;
  line-height:1.9;
}

/* =========================
   BUTTONS
========================= */

.testimonial-buttons{
  display:flex;
  gap:15px;
  margin-top:50px;
}

.testimonial-buttons button{
  width:52px;
  height:52px;
  border-radius:50%;
  border:1px solid #F8DC57;
  background:transparent;
  color:#F8DC57;
  cursor:pointer;
  transition:0.3s;
}

.testimonial-buttons button:hover{
  background:#F8DC57;
  color:#000;
}

/* =========================
   LAPTOP
========================= */

@media(max-width:1200px){

  .feedback-title{
    font-size:70px;
  }

  .feedback-wrapper{
    gap:40px;
  }

}

/* =========================
   TABLET
========================= */

@media(max-width:992px){

  .feedback-wrapper{
    flex-direction:column;
    align-items:flex-start;
    gap:35px;
  }

  .feedback-image,
  .feedback-content{
    width:100%;
  }

  .feedback-image img{
    height:450px;
  }

  .feedback-bottom{
    flex-direction:column;
    gap:28px;
  }

  .feedback-title{
    font-size:58px;
    margin-bottom:30px;
  }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

  .feedback-section{
    padding:60px 0;
  }

  .container{
    width:92%;
  }

  .feedback-wrapper{
    gap:28px;
  }

  .feedback-image img{
    height:320px;
    border-radius:14px;
  }

  .feedback-title{
    font-size:42px;
    letter-spacing:1px;
    margin-bottom:22px;
  }

  .video-feedback{
    margin-bottom:28px;
  }

  .play-btn{
    width:48px;
    height:48px;
  }

  .feedback-text p{
    font-size:14px;
    line-height:1.8;
  }

  .client-info h4{
    font-size:20px;
  }

  .testimonial-buttons{
    justify-content:center;
    margin-top:35px;
  }

}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:576px){

  .feedback-section{
    padding:50px 0;
  }

  .feedback-image img{
    height:240px;
  }

  .feedback-title{
    font-size:34px;
  }

  .video-feedback span{
    font-size:13px;
  }

  .feedback-bottom{
    gap:20px;
  }

  .client-info{
    min-width:100%;
  }

  .client-info h4{
    font-size:18px;
  }

  .feedback-text p{
    font-size:13px;
    line-height:1.7;
  }

  .testimonial-buttons button{
    width:45px;
    height:45px;
  }

}

/* =========================
   EXTRA SMALL
========================= */

@media(max-width:400px){

  .feedback-title{
    font-size:28px;
  }

  .feedback-image img{
    height:210px;
  }

  .feedback-text p{
    font-size:12.5px;
  }

}
/* =========================
   SECTION
========================= */

.bmi-section {
  padding: 65px 0;
  background: black;
}

/* CONTAINER */

.container {
  width: 80%;
  max-width: 1250px;
  margin: auto;
}

/* =========================
   FORM GRID
========================= */

.bmi-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* =========================
   FORM GROUP
========================= */

.form-group {
  display: flex;
  flex-direction: column;
}

/* LABEL */

.form-group label {
  color: #fff;

  font-family: "Anton", sans-serif;

  font-size: 18px;

  margin-bottom: 10px;
}

/* =========================
   INPUT / SELECT
========================= */

.form-control {
  width: 100%;
  height: 58px;

  background: transparent;

  border: 1px solid rgba(255, 255, 255, 0.12);

  padding: 0 18px;

  color: #fff;

  font-size: 15px;

  outline: none;

  transition: 0.3s;
}

/* FOCUS */

.form-control:focus {
  border-color: #F8DC57;
}

/* PLACEHOLDER */

.form-control::placeholder {
  color: #8d8d8d;
}

/* =========================
   SELECT
========================= */

select.form-control {
  appearance: none;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6 6 6-6' stroke='white' stroke-width='2' fill='none'/%3E%3C/svg%3E");

  background-repeat: no-repeat;

  background-position: right 16px center;
}

/* OPTION */

option {
  background: black;
  color: #fff;
}

/* =========================
   BUTTON
========================= */

.calculate-btn {
  width: 100%;
  height: 58px;

  border: none;

  background: #F8DC57;

  color: #111;

  font-family: "Anton", sans-serif;

  font-size: 18px;

  cursor: pointer;

  transition: 0.3s;

  margin-top: 28px;
}

/* BUTTON HOVER */

.calculate-btn:hover {
  background: #fff;
}

/* ICON */

.calculate-btn i {
  margin-left: 8px;
}

/* =========================
   RESULT BOX
========================= */

.result-box {
  margin-top: 35px;

  padding: 22px;

  border: 1px solid rgba(255, 255, 255, 0.1);

  display: none;
}

/* RESULT TITLE */

.result-box h3 {
  color: #fff;

  font-family: "Anton", sans-serif;

  font-size: 24px;

  margin-bottom: 10px;
}

/* RESULT TEXT */

.result-box p {
  color: #d7d7d7;

  font-size: 15px;
  line-height: 1.7;
}

/* RESULT HIGHLIGHT */

.result-box span {
  color: #F8DC57;
  font-weight: 700;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .bmi-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .bmi-section {
    padding: 50px 0;
  }

  .container {
    width: 90%;
  }

  .form-group label {
    font-size: 16px;
  }

  .form-control {
    height: 52px;
    font-size: 14px;
  }

  .calculate-btn {
    height: 52px;
    font-size: 16px;
  }

  .result-box h3 {
    font-size: 20px;
  }

  .result-box p {
    font-size: 14px;
  }
}

.bmi-heading {
  color: #fff;
  font-family: "Anton", sans-serif;
  font-size: 42px;
  text-transform: uppercase;
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .bmi-heading {
    font-size: 30px;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .bmi-heading {
    font-size: 24px;
  }
}
/* =========================
   SECTION
========================= */

.feature-section {
  position: relative;

  width: 100%;
  min-height: 100vh;

  background: black;

  overflow: hidden;
}

/* =========================
   IMAGE
========================= */

.feature-image {
  position: absolute;

  top: 40px;
  right: 0;

  width: 65%; /* SMALL IMAGE */

  height: 85%; /* SMALL HEIGHT */
}

.feature-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

/* OVERLAY */

.feature-image::before {
  content: "";

  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, 0.18);
}

/* =========================
   PLAY BUTTON
========================= */



/* =========================
   FEATURE BOX
========================= */

.feature-box {
  position: relative;
  z-index: 5;

  width: 640px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);

  margin-top: 150px;
}

/* =========================
   CARD
========================= */

.feature-card {
  background: black;

  padding: 30px 28px;

  min-height: 210px;

  transition: 0.4s ease;
}

/* ACTIVE */

.feature-card.active {
  background: #F8DC57;
}

/* HOVER */

.feature-card:hover {
  background: #F8DC57;
}

/* =========================
   ICON
========================= */

.feature-card i {
  color: #fff;

  font-size: 30px;

  margin-bottom: 22px;
}

/* =========================
   TITLE
========================= */

.feature-card h3 {
  color: #fff;

  font-family: "Anton", sans-serif;

  font-size: 22px;

  line-height: 1.3;

  margin-bottom: 14px;
}

/* =========================
   TEXT
========================= */

.feature-card p {
  color: #fff;

  font-size: 13px;

  line-height: 1.8;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
  .feature-box {
    width: 560px;
  }
}

@media (max-width: 991px) {
  .feature-section {
    display: flex;
    flex-direction: column;
  }

  .feature-image {
    position: relative;

    width: 100%;
    height: 420px;

    top: 0;
  }

  .feature-box {
    width: 100%;

    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .feature-box {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 24px 20px;

    min-height: auto;
  }

  .feature-card h3 {
    font-size: 18px;
  }

  .feature-card p {
    font-size: 12px;
  }
}

/* =========================
   SECTION
========================= */

.gx-classes-section {
  width: 100%;
  padding: 60px 0;
  background: black;
  overflow: hidden;
}

/* CONTAINER */

.gx-container {
  width: 95%;
  max-width: 1400px;
  margin: auto;
  position: relative;
}

/* =========================
   TOP AREA
========================= */

.gx-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
}

/* TITLE */

.gx-title {
  color: #fff;
  font-size: 46px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
}

/* =========================
   BUTTONS
========================= */

.gx-nav {
  display: flex;
  gap: 12px;
}

.gx-arrow {
  width: 55px;
  height: 55px;

  border: none;
  outline: none;

  background: #3a3438;

  color: #fff;

  font-size: 22px;

  cursor: pointer;

  transition: 0.3s ease;

  display: flex;
  align-items: center;
  justify-content: center;
}

.gx-arrow:hover {
  background: #F8DC57;
}

/* =========================
   SWIPER
========================= */

.gx-swiper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* WRAPPER */

.gx-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

/* SLIDE */

.gx-swiper .swiper-slide {
  height: auto;
  flex-shrink: 0;
}

/* =========================
   CARD
========================= */

.gx-card {
  position: relative;

  width: 100%;
  height: 470px;

  overflow: hidden;

  cursor: pointer;
}

/* IMAGE */

.gx-card img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition: 0.6s ease;
}

/* IMAGE HOVER */

.gx-card:hover img {
  transform: scale(1.08);
}

/* DARK OVERLAY */

.gx-card::before {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 0.08) 100%
  );

  z-index: 1;
}

/* =========================
   CONTENT
========================= */

.gx-content {
  position: absolute;

  left: 0;
  bottom: 0;

  width: 100%;

  padding: 28px 24px;

  z-index: 5;

  color: #fff;
}

/* GLASS COVER */

.gx-shape {
  position: absolute;

  left: 0;
  bottom: 0;

  width: 100%;
  height: 125px;

  background: rgba(65, 25, 10, 0.45);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  clip-path: polygon(0 35%, 100% 0, 100% 100%, 0 100%);

  z-index: -1;

  transition: 0.5s ease;
}

/* HOVER */

.gx-card:hover .gx-shape {
  height: 180px;
  background: #F8DC57;
}

/* TITLE */

.gx-content h3 {
  font-size: 20px;
  font-weight: 900;

  text-transform: uppercase;

  margin-bottom: 10px;

  line-height: 1.1;
}

/* SUBTITLE */

.gx-content span {
  font-size: 13px;
  font-weight: 700;

  text-transform: uppercase;

  color: #f1f1f1;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
  .gx-card {
    height: 430px;
  }
}

@media (max-width: 991px) {
  .gx-title {
    font-size: 38px;
  }

  .gx-card {
    height: 420px;
  }
}

@media (max-width: 768px) {
  .gx-classes-section {
    padding: 45px 0;
  }

  .gx-container {
    width: 92%;
  }

  .gx-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .gx-title {
    font-size: 30px;
    line-height: 1.2;
  }

  .gx-arrow {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .gx-card {
    height: 400px;
  }

  .gx-content {
    padding: 22px;
  }

  .gx-content h3 {
    font-size: 18px;
  }

  .gx-content span {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .gx-title {
    font-size: 24px;
  }

  .gx-card {
    height: 340px;
  }

  .gx-content {
    padding: 18px;
  }

  .gx-content h3 {
    font-size: 16px;
  }

  .gx-content span {
    font-size: 11px;
  }
}





/* =========================
   CLASSES SECTION
========================= */

.gx-classes-section{
  padding:80px 0;

  background:#000;
}

/* =========================
   TOP
========================= */

.gx-classes-top{
  margin-bottom:40px;
}

/* TITLE */

.gx-classes-title{
  font-size:38px;

  font-weight:800;

  letter-spacing:3px;

  text-transform:uppercase;

  color:#fff;

  margin:0;
}

/* =========================
   CARD
========================= */

.gx-class-card{
  position:relative;

  width:100%;
  height:470px;

  overflow:hidden;

  cursor:pointer;
}

/* IMAGE */

.gx-class-card img{
  width:100%;
  height:100%;

  object-fit:cover;

  display:block;

  transition:0.6s ease;
}

/* IMAGE HOVER */

.gx-class-card:hover img{
  transform:scale(1.08);
}

/* DARK OVERLAY */

.gx-class-card::before{
  content:"";

  position:absolute;
  inset:0;

  background:linear-gradient(
    to top,
    rgba(0,0,0,0.9) 0%,
    rgba(0,0,0,0.35) 45%,
    rgba(0,0,0,0.08) 100%
  );

  z-index:1;
}

/* =========================
   CONTENT
========================= */

.gx-class-content{
  position:absolute;

  left:0;
  bottom:0;

  width:100%;

  padding:28px 24px;

  z-index:5;

  color:#fff;
}

/* GLASS COVER */

.gx-class-shape{
  position:absolute;

  left:0;
  bottom:0;

  width:100%;
  height:125px;

  background:rgba(65,25,10,0.45);

  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);

  clip-path:polygon(
    0 35%,
    100% 0,
    100% 100%,
    0 100%
  );

  z-index:-1;

  transition:0.5s ease;
}

/* HOVER */

.gx-class-card:hover .gx-class-shape{
  height:180px;

  background:#F8DC57;
}

/* TITLE */

.gx-class-content h3{
  font-size:20px;

  font-weight:900;

  text-transform:uppercase;

  margin-bottom:10px;

  line-height:1.2;

  color:#fff;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px){

  .gx-class-card{
    height:430px;
  }

}

@media(max-width:991px){

  .gx-classes-title{
    font-size:32px;
  }

  .gx-class-card{
    height:420px;
  }

}

@media(max-width:768px){

  .gx-classes-section{
    padding:50px 0;
  }

  .gx-classes-title{
    font-size:26px;

    line-height:1.3;
  }

  .gx-class-card{
    height:400px;
  }

  .gx-class-content{
    padding:22px;
  }

  .gx-class-content h3{
    font-size:17px;
  }

}

@media(max-width:480px){

  .gx-classes-title{
    font-size:22px;
  }

  .gx-class-card{
    height:340px;
  }

  .gx-class-content{
    padding:18px;
  }

  .gx-class-content h3{
    font-size:15px;
  }

}


/* =========================
   STATS SECTION
========================= */

.stats-section{
  width:100%;

  background:black;

  padding:80px 0;
}

/* =========================
   TOP CONTENT
========================= */

.stats-top{
  margin-bottom:60px;
}

/* MINI TITLE */

.stats-mini-title{
  font-size:14px;

  font-weight:700;

  letter-spacing:2px;

  text-transform:uppercase;

  color:#F8DC57;

  margin-bottom:15px;
}

/* MAIN TITLE */

.stats-main-title{
  font-size:58px;

  font-family:'Anton',sans-serif;

  color:#fff;

  margin-bottom:18px;

  text-transform:uppercase;

  line-height:1;
}

/* SUB TITLE */

.stats-sub-title{
  font-size:16px;

  color:#fff;

  font-weight:500;

  letter-spacing:0.3px;
}

/* =========================
   STATS CONTAINER
========================= */


.stats-container{
  max-width:1400px;

  margin:auto;

  display:grid;

  grid-template-columns:repeat(4,1fr);

  gap:30px;

  align-items:stretch; /* SAME HEIGHT */
}

/* =========================
   STAT BOX
========================= */


.stat-box{
  display:flex;

  align-items:center;

  gap:10px;

  padding:28px 20px;

  background:#fff;

  transition:0.35s ease;

  min-height:170px; /* SAME HEIGHT */

  height:100%;
}

/* HOVER */

.stat-box:hover{
  transform:translateY(-6px);

  box-shadow:0 12px 30px rgba(0,0,0,0.08);
}

/* NUMBER */

.stat-box h2{
  font-size:52px;

  line-height:1;

  color:#111;

  font-family:'Anton',sans-serif;

  letter-spacing:1px;

  margin:0;
}

/* DIVIDER */

.divider{
  width:2px;

  height:55px;

  background:#F8DC57;

  display:block;
}

/* CONTENT */

.stat-content h4{
  font-size:17px;

  line-height:1.2;

  color:#02031a;

  font-family:'Anton',sans-serif;

  letter-spacing:0.4px;

  margin-bottom:6px;

  text-transform:uppercase;
}

.stat-content p{
  font-size:13px;

  color:#555;

  line-height:1.5;

  margin:0;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

  .stats-container{
    grid-template-columns:repeat(2,1fr);

    row-gap:25px;
  }

}

@media(max-width:768px){

  .stats-section{
    padding:60px 20px;
  }

  .stats-top{
    margin-bottom:40px;
  }

  .stats-main-title{
    font-size:38px;
  }

  .stats-sub-title{
    font-size:14px;
  }

  .stats-container{
    grid-template-columns:1fr;

    gap:20px;
  }

  .stat-box{
    padding:22px 18px;
  }

  .stat-box h2{
    font-size:40px;
  }

  .stat-content h4{
    font-size:15px;
  }

  .stat-content p{
    font-size:12px;
  }

  .divider{
    height:42px;
  }

}


/* =========================
   GX PROMISE SECTION
========================= */

.gx-promise-section{
  width:100%;

  padding:110px 0 60px;

  background:#000000;

  overflow:hidden;

  position:relative;
}

/* CONTAINER */

.gx-promise-container{
  width:88%;

  max-width:1350px;

  margin:auto;
}

/* =========================
   LEFT SIDE
========================= */

.gx-promise-left{
  max-width:520px;
}

/* SMALL TITLE */

.gx-promise-subtitle{
  display:block;

  font-size:13px;

  font-weight:700;

  letter-spacing:5px;

  text-transform:uppercase;

  color:#6b6b6b;

  margin-bottom:28px;
}

/* MAIN TITLE */

.gx-promise-title{
  font-size:78px;

  line-height:0.95;

  font-weight:800;

  color:#fff;

  text-transform:uppercase;

  margin-bottom:32px;

  font-family:'Anton',sans-serif;

  letter-spacing:1px;
}

/* DESCRIPTION */

.gx-promise-text{
  font-size:20px;

  line-height:1.8;

  color:#7f7f7f;

  margin:0;
}

/* =========================
   RIGHT SIDE
========================= */

.gx-promise-list{
  width:100%;
}

/* ITEM */

.gx-promise-item{
  display:flex;

  align-items:flex-start;

  gap:22px;

  padding:28px 0;

  border-bottom:1px solid rgba(255,255,255,0.06);

  transition:0.4s ease;
}

/* HOVER */

.gx-promise-item:hover{
  padding-left:12px;
}

/* DOT */

.gx-promise-dot{
  width:26px;
  height:26px;

  min-width:26px;

  border:1px solid rgba(255,255,255,0.35);

  border-radius:50%;

  position:relative;

  margin-top:3px;
}

/* INNER DOT */

.gx-promise-dot::before{
  content:"";

  position:absolute;

  top:50%;
  left:50%;

  width:8px;
  height:8px;

  background:#F8DC57;

  border-radius:50%;

  transform:translate(-50%,-50%);
}

/* TEXT */

.gx-promise-item p{
  font-size:19px;

  line-height:1.7;

  color:#676767;

  margin:0;
}

/* BOLD */

.gx-promise-item strong{
  color:#fff;

  font-weight:700;
}

/* =========================
   BOTTOM AREA
========================= */

.gx-promise-bottom{
  margin-top:90px;

  padding-top:35px;

  border-top:1px solid rgba(255,255,255,0.06);

  display:flex;

  justify-content:center;

  flex-wrap:wrap;

  gap:55px;
}

/* TEXT */

.gx-promise-bottom span{
  font-size:13px;

  color:#5f5f5f;

  text-transform:uppercase;

  letter-spacing:3px;

  font-weight:600;
}

/* =========================
   TABLET
========================= */

@media(max-width:991px){

  .gx-promise-section{
    padding:80px 0 50px;
  }

  .gx-promise-title{
    font-size:58px;
  }

  .gx-promise-text{
    font-size:17px;
  }

  .gx-promise-item p{
    font-size:16px;
  }

  .gx-promise-bottom{
    gap:28px;
  }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

  .gx-promise-section{
    padding:60px 0 40px;
  }

  .gx-promise-container{
    width:92%;
  }

  .gx-promise-subtitle{
    font-size:11px;

    letter-spacing:3px;

    margin-bottom:18px;
  }

  .gx-promise-title{
    font-size:40px;

    line-height:1.05;

    margin-bottom:22px;
  }

  .gx-promise-text{
    font-size:14px;

    line-height:1.8;
  }

  .gx-promise-item{
    gap:15px;

    padding:18px 0;
  }

  .gx-promise-item p{
    font-size:14px;

    line-height:1.7;
  }

  .gx-promise-dot{
    width:22px;
    height:22px;

    min-width:22px;
  }

  .gx-promise-dot::before{
    width:6px;
    height:6px;
  }

  .gx-promise-bottom{
    margin-top:50px;

    justify-content:flex-start;

    gap:18px;
  }

  .gx-promise-bottom span{
    font-size:10px;

    letter-spacing:2px;
  }

}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px){

  .gx-promise-title{
    font-size:32px;
  }

  .gx-promise-text{
    font-size:13px;
  }

  .gx-promise-item p{
    font-size:13px;
  }

}



/* =========================
   STATS SECTION
========================= */

.gx-stats-section {
  padding: 80px 0;
  background: black;
}

/* CONTAINER */

.gx-stats-section .container {
  max-width: 1250px;
}

/* =========================
   SECTION HEADING
========================= */

.gx-section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.gx-section-heading p {
  color: #F8DC57;

  font-size: 16px;
  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 2px;

  margin-bottom: 10px;
}

.gx-section-heading h2 {
  color: #fff;

  font-size: 48px;
  font-weight: 900;

  text-transform: uppercase;

  margin: 0;

  line-height: 1.2;
}

/* =========================
   CARD
========================= */

.gx-stat-card {
  background: #050505;

  border: 1px solid rgba(255, 255, 255, 0.1);

  min-height: 260px;

  padding: 35px 30px;

  transition: 0.4s ease;

  clip-path: polygon(12% 0,
      100% 0,
      100% 78%,
      88% 100%,
      0 100%,
      0 22%);
}

/* HOVER */

.gx-stat-card:hover {
  transform: translateY(-6px);

  border-color: #F8DC57;
}

/* =========================
   CONTENT
========================= */

.gx-stat-content {
  display: flex;
  flex-direction: column;

  align-items: flex-start;
  justify-content: center;

  gap: 18px;

  width: 100%;
  height: 100%;
}

/* =========================
   NUMBER
========================= */

.gx-number-wrap {
  display: flex;
  align-items: center;
}

.gx-counter,
.gx-plus,
.gx-range,
.gx-range-two {
  color: #fff;

  font-size: 58px;
  font-weight: 900;

  line-height: 1;
}

/* =========================
   LINE
========================= */

.gx-stat-line {
  width: 70px;
  height: 2px;

  background: #F8DC57;
}

/* =========================
   TEXT
========================= */

.gx-stat-text h3 {
  color: #fff;

  font-size: 20px;
  font-weight: 900;

  text-transform: uppercase;

  margin-bottom: 12px;

  line-height: 1.4;
}

.gx-stat-text p {
  color: #cfcfcf;

  font-size: 14px;

  line-height: 1.8;

  margin: 0;

  max-width: 240px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

  .gx-stat-card {
    min-height: 230px;
  }

  .gx-counter,
  .gx-plus,
  .gx-range,
  .gx-range-two {
    font-size: 48px;
  }

  .gx-stat-text h3 {
    font-size: 18px;
  }

  .gx-section-heading h2 {
    font-size: 38px;
  }
}

@media (max-width: 768px) {

  .gx-stats-section {
    padding: 60px 0;
  }

  .gx-section-heading {
    margin-bottom: 45px;
  }

  .gx-section-heading h2 {
    font-size: 30px;
  }

  .gx-section-heading p {
    font-size: 14px;
  }

  .gx-stat-card {
    min-height: 210px;

    padding: 28px 24px;
  }

  .gx-counter,
  .gx-plus,
  .gx-range,
  .gx-range-two {
    font-size: 40px;
  }

  .gx-stat-text h3 {
    font-size: 16px;
  }

  .gx-stat-text p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {

  .gx-section-heading h2 {
    font-size: 24px;
  }

  .gx-section-heading p {
    font-size: 12px;
  }

  .gx-stat-card {
    min-height: 190px;

    padding: 24px 20px;
  }

  .gx-counter,
  .gx-plus,
  .gx-range,
  .gx-range-two {
    font-size: 34px;
  }

  .gx-stat-text h3 {
    font-size: 14px;
  }

  .gx-stat-text p {
    font-size: 12px;

    line-height: 1.7;
  }
}
/* =========================
   TRAINER SECTION
========================= */

.gx-trainer-section {
  padding: 55px 0;
  background: black;
}

.gx-trainer-container {
  max-width: 1150px;
  margin: auto;
}

/* SMALL TITLE */

.gx-subtitle {
  color: #F8DC57;

  text-align: center;

  font-size: 13px;
  font-weight: 700;

  margin-bottom: 8px;
}

/* MAIN TITLE */

.gx-main-title {
  color: #fff;

  text-align: center;

  font-size: 44px;
  font-weight: 900;

  margin-bottom: 45px;

  text-transform: uppercase;
}

/* =========================
   CARD
========================= */

.gx-trainer-card {
  background: black;

  overflow: hidden;

  transition: 0.4s ease;
}

/* IMAGE */

.gx-trainer-image {
  position: relative;
  overflow: hidden;
}

.gx-trainer-image img {
  width: 100%;
  height: 390px;

  object-fit: cover;

  transition: 0.5s ease;
}

/* IMAGE HOVER */

.gx-trainer-card:hover img {
  transform: scale(1.05);
}

/* =========================
   CONTENT
========================= */

.gx-trainer-content {
  padding: 18px 0 0;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* TEXT */

.gx-trainer-info h3 {
  color: #fff;

  font-size: 18px;
  font-weight: 900;

  margin-bottom: 5px;

  text-transform: uppercase;
}

/* ACTIVE NAME */

.gx-active h3 {
  color: #F8DC57;
}

.gx-trainer-info p {
  color: #d7d7d7;

  font-size: 13px;
  font-weight: 500;

  margin: 0;
}

/* BUTTON */

.gx-trainer-btn {
  width: 52px;
  height: 52px;

  background: #d8c3a4;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #02031a;

  font-size: 22px;

  text-decoration: none;

  transition: 0.4s ease;
}

.gx-trainer-btn:hover {
  background: #F8DC57;
  color: #fff;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .gx-main-title {
    font-size: 36px;
  }

  .gx-trainer-image img {
    height: 340px;
  }
}

/* =========================
   MOBILE PORTRAIT CARD
========================= */

@media (max-width: 768px) {
  .gx-trainer-section {
    padding: 40px 0;
  }

  /* ROW GAP */

  .gx-trainer-section .row {
    row-gap: 25px;
  }

  /* CARD */

  .gx-trainer-card {
    max-width: 320px;
    margin: auto;
  }

  /* IMAGE */

  .gx-trainer-image img {
    width: 100%;
    height: 420px; /* PORTRAIT */

    object-fit: cover;
  }

  /* CONTENT */

  .gx-trainer-content {
    padding-top: 15px;
  }

  /* TEXT */

  .gx-trainer-info h3 {
    font-size: 15px;
  }

  .gx-trainer-info p {
    font-size: 11px;
  }

  /* BUTTON */

  .gx-trainer-btn {
    width: 42px;
    height: 42px;

    font-size: 16px;
  }
}

/* EXTRA SMALL */

@media (max-width: 480px) {
  .gx-main-title {
    font-size: 26px;
  }

  .gx-trainer-card {
    max-width: 280px;
  }

  .gx-trainer-image img {
    height: 380px;
  }

  .gx-trainer-info h3 {
    font-size: 14px;
  }

  .gx-trainer-info p {
    font-size: 10px;
  }

  .gx-trainer-btn {
    width: 40px;
    height: 40px;

    font-size: 15px;
  }
}

/* =========================
   SECTION
========================= */

.blog-section {
  padding: 55px 0;
  background: black;
}

/* CONTAINER */

.container {
  width: 80%;
  max-width: 1150px;
  margin: auto;
}

/* =========================
   SECTION TITLE
========================= */

.section-title {
  text-align: center;
  margin-bottom: 42px;
}

/* SMALL TITLE */

.section-title span {
  color: #F8DC57;

  font-size: 12px;
  font-weight: 600;
}

/* MAIN TITLE */

.section-title h2 {
  color: #fff;

  font-family: "Anton", sans-serif;

  font-size: 46px;

  margin-top: 8px;

  letter-spacing: 1px;
}

/* =========================
   BLOG WRAPPER
========================= */

.blog-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* =========================
   CARD
========================= */

.blog-card {
  background: black;

  border: 1px solid rgba(255, 255, 255, 0.08);

  overflow: hidden;

  transition: 0.4s ease;
}

/* CARD HOVER */

.blog-card:hover {
  transform: translateY(-8px);

  border-color: #F8DC57;
}

/* =========================
   IMAGE
========================= */

.blog-image {
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 300px;

  object-fit: cover;

  transition: 0.5s ease;
}

/* IMAGE HOVER */

.blog-card:hover .blog-image img {
  transform: scale(1.06);
}

/* =========================
   CONTENT
========================= */

.blog-content {
  padding: 22px;
}

/* TITLE */

.blog-content h3 {
  color: #fff;

  font-family: "Anton", sans-serif;

  font-size: 22px;

  line-height: 1.4;

  margin-bottom: 14px;

  transition: 0.3s;
}

/* TITLE HOVER */

.blog-card:hover .blog-content h3 {
  color: #F8DC57;
}

/* TEXT */

.blog-content p {
  color: #d7d7d7;

  font-size: 14px;

  line-height: 1.7;

  margin-bottom: 22px;
}

/* =========================
   BUTTON
========================= */

.blog-btn {
  width: 140px;
  height: 44px;

  background: #2a3142;

  color: #fff;

  text-decoration: none;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  font-family: "Anton", sans-serif;

  font-size: 13px;

  transition: 0.3s ease;

  position: relative;

  overflow: hidden;
}

/* LEFT BORDER */

.blog-btn::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;

  width: 3px;
  height: 100%;

  background: #F8DC57;
}

/* BUTTON HOVER */

.blog-btn:hover {
  background: #F8DC57;
}

/* ICON */

.blog-btn i {
  transition: 0.3s;
}

/* ICON HOVER */

.blog-btn:hover i {
  transform: translateX(4px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .blog-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .blog-section {
    padding: 45px 0;
  }

  .container {
    width: 90%;
  }

  .section-title {
    margin-bottom: 32px;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .blog-image img {
    height: 220px;
  }

  .blog-content {
    padding: 18px;
  }

  .blog-content h3 {
    font-size: 18px;
  }

  .blog-content p {
    font-size: 13px;
  }

  .blog-btn {
    width: 125px;
    height: 40px;

    font-size: 12px;
  }
}

/* =========================
   FOOTER
========================= */

.footer{
  position:relative;

  background:
 rgb(19, 19, 19);

  padding-top:55px;

  overflow:hidden;
}

/* CONTAINER */

.container{
  width:78%;
  max-width:1100px;
  margin:auto;
}

/* =========================
   WRAPPER
========================= */

.footer-wrapper{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr 1.2fr;

  border:1px solid rgba(255,255,255,0.08);

  position:relative;
}

/* COLUMN */

.footer-col{
  padding:40px 26px;

  border-right:1px solid rgba(255,255,255,0.08);
}

/* REMOVE LAST BORDER */

.footer-col:last-child{
  border-right:none;
}

/* LEFT BORDER */

.contact-col{
  position:relative;
}

.contact-col::before{
  content:"";

  position:absolute;

  left:0;
  top:0;

  width:3px;
  height:100%;

  background:#F8DC57;
}

/* =========================
   TITLE
========================= */

.footer-col h3{
  color:#fff;

  font-family:'Anton',sans-serif;

  font-size:18px;

  margin-bottom:20px;
}

/* =========================
   TEXT
========================= */

.footer-col p{
  color:#fff;

  font-size:13px;

  line-height:1.7;

  margin-bottom:14px;
}

/* ORANGE TEXT */

.footer-col p span{
  color:#F8DC57;
  font-weight:700;
}

/* =========================
   LINKS
========================= */

.footer-col ul{
  list-style:none;
}

.footer-col ul li{
  margin-bottom:14px;
}

.footer-col ul li a{
  color:#fff;

  text-decoration:none;

  font-size:13px;

  transition:0.3s;
}

/* HOVER */

.footer-col ul li a:hover{
  color:#F8DC57;
  padding-left:4px;
}

/* =========================
   LOGO
========================= */

.footer-logo{
  display:flex;
  align-items:center;

  gap:10px;

  margin-bottom:16px;
}

.footer-logo i{
  color:#F8DC57;
  font-size:22px;
}

.footer-logo h2{
  color:#fff;

  font-family:'Anton',sans-serif;

  font-size:24px;
}

/* =========================
   btn
========================= */
.footer-btn{
  display:inline-block;
  padding:10px 22px;
  background:#F8DC57;
  color:#111;
  font-size:13px;
  font-weight:700;
  border:none;
  border-radius:6px;
  text-decoration:none;
  transition:0.3s ease;
}
.footer-btn a{
  color: #000;
  text-decoration: none;
}

/* =========================
   BOTTOM
========================= */

.footer-bottom{
  text-align:center;

  padding:20px 0;

  border:1px solid rgba(255,255,255,0.08);

  border-top:none;
}

.footer-bottom p{
  color:#fff;
  font-size:12px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

  .footer-wrapper{
    grid-template-columns:1fr 1fr;
  }

  .footer-col:nth-child(2){
    border-right:none;
  }

}

@media(max-width:768px){

  .footer{
    padding-top:40px;
  }

  .container{
    width:90%;
  }

  .footer-wrapper{
    grid-template-columns:1fr;
  }

  .footer-col{
    border-right:none;

    border-bottom:1px solid rgba(255,255,255,0.08);

    padding:30px 20px;
  }

  .footer-col:last-child{
    border-bottom:none;
  }

  .footer-col h3{
    font-size:16px;
  }

  .footer-logo h2{
    font-size:22px;
  }

  .footer-phone span{
    font-size:20px;
  }

}