@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


@font-face {
  font-family: 'SourceSansPro';
  src: url('webFonts/sourcesanspro-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'SourceSansPro';
  src: url('webFonts/sourcesanspro-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'SourceSansPro', sans-serif;
  /* background: #f6f6f6; */
}

:root {
  --color-primary: #fb5404;
  --color-bg-primary: #303030;
  --color-bg-secondary: #151515;
  --border-color: #ccc;
  --text-color: #333;
  --label-color: #555;
  --input-bg: #fff;
  --gradiant: linear-gradient(RGBA(0, 0, 0, 0.5), RGBA(0, 0, 0, 0.5));
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  color: var(--color-text-dark);
  font-weight: 600;
  /* margin: 0; */
}

p,
li,
span {
  line-height: 1.6;
  margin: 0;
}

a {
  text-decoration: none;
}

ul,
li {
  padding: 0;
  list-style: none;
}

.btn-theme {
  color: var(--global-palette9, #ffffff);
  background: #7b9a92;
  border: 2px solid #7b9a92;
  font-size: 18px;
  text-transform: uppercase;
  transition: all .3s ease-in-out;
}

.btn-theme:hover {
  background: #cbd2d9;
  color: #fff;
  border: 2px solid #7b9a92;
}

.btn-theme-rounded {
  background: transparent;
  padding: 10px 25px;
  border: 2px solid #000;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  transition: all .3s ease-in-out;
}

.btn-theme-rounded:hover {
  border: 2px solid #000;
  background: #000;
  color: #fff;
}

/* =========== HEADER =========== */
.site-header {
  background: transparent;
  transition: all 0.3s ease;
}

.logo {
  position: relative;
  max-width: 200px;
  transition: all 0.3s ease-in-out;
  max-width:100px
}

.site-header.scrolled {
  background-color: rgba(34, 34, 34, 0.7);
}

.site-header.scrolled .logo {
  max-width: 180px;
}

.header-inner .nav-link {
  text-decoration: none;
  transition: color 0.3s;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}

.mainmenu-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  display: none;
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mainmenu-submenu-link {
  display: block;
  padding: 8px 20px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}

.nav-item:hover .mainmenu-submenu,
li.position-relative:hover .mainmenu-submenu {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

.right-aligned {
  display: flex;
  align-items: center;
  gap: 24px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========== BANNER =========== */
.main-banner {
  height: 100vh;
  overflow: hidden;
}

.banner-slide {
  height: 100vh;
  background-size: cover;
  background-position: 52% 58%;
  position: relative;
}

.banner-slide::after {
  content: "";
  background: var(--gradiant);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.banner-slide video{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    object-fit:cover;
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 800px;
  z-index: 9;
}

.banner-title {
  font-size: 48px;
  font-weight: 600;
}

.banner-content p {
  font-size: 18px;
}

.banner-subtitle {
  font-size: 18px;
  font-family: "Montserrat";
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 10px;
  border-bottom: 1px solid #fff;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 18px;
  font-weight: bold;
}

.banner-button {
  font-size: 16px;
  font-family: "Montserrat";
  font-weight: 700;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
}

.main-banner .swiper-pagination-bullet {
  opacity: .3;
  background: #fff;
}

.main-banner .swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
}


@media (min-width: 768px) {
  .banner-title {
    font-size: 48px;
  }
}

/* =========== FEATURE =========== */
/* Feature Section Wrapper */
.elevate-feature-section {
  padding: 40px 0;
}

/* Box Styling */
.feature-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Titles */
.feature-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #515151;
}

/* Descriptions */
.feature-desc {
  font-size: 16px;
  color: #626262;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Button */
.feature-btn {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 2px solid #222;
  padding: 10px 24px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  background: #222222;
}

.feature-btn:hover {
  background-color: #fff;
  color: #222;
}

/* =========== GALLERY =========== */
.gallerySwiper {
  padding: 30px 0 50px 0;
}

.gallerySwiper .swiper-pagination {
  bottom: 10px;
}

.gallerySwiper .swiper-pagination-bullet-active {
  background: #222;
}

.gallerySwiper .swiper-button-prev,
.gallerySwiper .swiper-button-next {
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
  background: #151515a8;
  border-radius: 2px;
  /* optional: match client's red */
}

.gallerySwiper:hover .swiper-button-prev,
.gallerySwiper:hover .swiper-button-next {
  opacity: 1;
}

/* Optional: improve hover experience */
.gallerySwiper .swiper-button-prev {
  left: 0;
}

.gallerySwiper .swiper-button-next {
  right: 0;
}

.gallerySwiper .swiper-slide {
  height: 320px;
  /* Adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallerySwiper .swiper-slide img {
  height: 100%;
  width: auto;
  object-fit: cover;
  /* Keeps natural width and no cropping */
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

/* =========== SUCCESS =========== */
.steps-success .col-lg-4 {
  margin-top: 75px;
}

.steps-success .step-box {
  position: relative;
  padding: 24px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.steps-success .step-number {
  position: relative;
  width: max-content;
  background: #fff;
  padding: 20px;
  font-weight: bold;
  font-size: 40px;
  border: 5px solid #0d0d0d;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: #222;
  margin-top: -75px;
  margin-right: 0px;
  margin-bottom: 20px;
}

.steps-success p {
  font-size: 17px;
  color: #555;
  margin-top: 0.5rem;
}

.steps-success h6 {
  font-size: 20px;
}

.steps-success h2 {
  text-align: center;
  font-size: 44px;
  font-weight: 700;
  font-family: Montserrat;
  color: #0d0d0d;
}


/* =========== TRAINER =========== */
.trainer-section {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1000px;
  margin: 40px auto;
  padding: 40px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.trainer-card {
  max-width: 320px;
  text-align: center;
}

.shadow-box {
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.28);
  transition: all .3s ease-in-out;
  border: none;
  padding: 24px;
}

.shadow-box:hover {
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
}

.trainer-card img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.trainer-card h4 {
  margin: 15px 0 4px;
  font-weight: 600;
  font-size: 1.1rem;
}

.trainer-card .designation {
  font-size: 0.87rem;
  color: #888;
}

/* Right side text */
/* Increase spacing between letters on subtitle */
.trainer-main-section .letter-spacing {
  letter-spacing: 3px;
  font-size: 18px;
}

.trainer-name {
  font-size: 21px;
  font-weight: 700;
}

.trainer-title {
  font-size: 18px;
}

/* Animate arrow gently on hover */
.btn-theme-rounded .arrow {
  transition: transform 0.3s ease;
}

.btn-theme-rounded:hover .arrow {
  transform: translateX(4px);
}

.trainer-box {
  position: relative;
  justify-content: space-between;
}

.trainer-box .card img {
  max-width: 375px;
  margin: 0 auto;
}

/* =========== TESTIMONIAL =========== */
.reviews-title {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  color: #333;
}

.review-box {
  background: #f4f4f4;
  border-radius: 10px;
  position: relative;
}

.myReviewSwiper {
  padding: 30px 20px;
}

/* profile circle image, half out of box */
.review-img-wrap {
  width: 100px;
  height: 100px;
  margin: -50px auto 0;
}

.reviewer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 5px solid #fff;
}

.stars i {
  color: #ffbf00;
  font-size: 20px;
}

/* Swiper button style */
.review-nav {
  background: #fff;
  border: 1px solid #ddd;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #333;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  transition: all .3s ease-in-out;
}

.review-nav:hover {
  background: #333;
  color: #fff;
}

.myReviewSwiper .swiper-button-prev:after,
.myReviewSwiper .swiper-button-next:after {
  font-size: 12px;
}

.review-box h5 {
  font-size: 18px;
  color: #000;
}

/* =========== BENEFITS =========== */
.benefits-title {
  font-size: 48px;
  color: #333;
  font-weight: 700;
}

.benefit-list {
  list-style: none;
  padding-left: 0;
  font-size: 1.1rem;
  line-height: 1.75;
}

.benefit-list li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 15px;
}

/* Add FontAwesome double-chevron icon on each li */
.benefit-list li::before {
  content: "\f101";
  /* fa-angles-right */
  font-family: "FontAwesome";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 3px;
  color: #333;
}

.benefit-imgholder img {
  height: 500px;
  object-fit: contain;
}

/* =========== PT TRAINING =========== */
/* --------  Section Layout -------- */
.pt-package-section {
  background: #fff;
}

.package-heading {
  font-size: 32px;
  font-weight: 600;
  color: #333;
}

.package-subheading {
  font-size: 24px;
  color: #555;
}

/* --------  Cards -------- */
.pt-card {
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 12px;
  padding: 50px 20px 25px;
  position: relative;
  height: 100%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.pt-icon {
  position: absolute;
  inset: auto auto auto 50%;
  transform: translate(-50%, -50%);
  top: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #e0e0e0;
  font-size: 26px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pt-card h5 {
  margin-top: 20px;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  color: #333;
}

.pt-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #666;
}

/* --------- Force 5 columns full width on large screens --------- */
@media(min-width:1200px) {
  .pt-row-5 .pt-col {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

/* =========== FOOTER =========== */
.cta-wrapper {
  background: linear-gradient(130deg, #0e1012, #6b8c85);
}

.cta-subtitle {
  letter-spacing: 3px;
  font-size: 13px;
}

.cta-title {
  font-size: 38px;
  font-weight: 600;
}

.cta-btn {
  display: inline-block;
  padding: 10px 40px;
  border: 2px solid #fff;
  border-radius: 40px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: .3s;
}

.cta-btn:hover {
  background: #fff;
  color: #000;
}

.footer-info {
  background: #0d0d0d;
}

.footer-info p,
.footer-info a {
  color: #fff;
  margin: 0;
}

.social-icons a {
  font-size: 20px;
  color: #fff;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #bbb;
}

.scroll-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  border: 1px solid #999;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border-radius: 4px;
  transition: .3s;
}

.scroll-top:hover {
  background: #fff;
  color: #000;
}

.instagram-title {
    margin-bottom: 50px;
    text-align: center;
}

.instagram-title a {
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-left: 32px;
    font-size: 15px;
    font-weight: 300;
    color: #333;
}

.instagram-title a i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 25px;
}

/* Mobile Menu */
/* ========= MOBILE MENU ========= */
.mobile-menu-trigger {
  z-index: 10000;
  position: relative;
}

.mobile-menu-trigger .hamburger {
  width: 28px;
  height: 22px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 10000;
}

.mobile-menu-trigger .hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  transition: .3s;
}

/* overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  transition: .3s;
}

/* offcanvas slide */
.mobile-offcanvas {
  position: fixed;
  top: 0;
  right: -380px;
  width: 360px;
  height: 100vh;
  background: #000;
  padding: 90px 20px 20px;
  box-shadow: -6px 0 20px rgba(0, 0, 0, 0.15);
  transition: .4s;
  z-index: 9999;
}

.mobile-offcanvas.open {
  right: 0;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 15px 0; */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 500;
}

.mobile-nav li a span {
  padding: 15px 0;
}

.dropdown-icon {
  font-size: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px;
}

/* hide submenu by default */
.submenu-inner {
  display: none;
  padding-left: 15px;
}

.submenu-inner li a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 15px;
  padding: 10px 0;
}

/* hamburger -> X */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

main#content {
  overflow-x: hidden;
}

/* ------------------------------------------------
   Personlig Träning — Custom Page Styles
------------------------------------------------ */
/* ------------ HERO INNER PAGE w/ VIDEO -------------- */
.hero-innerpage {
  position: relative;
  height: 60vh;
  overflow: hidden;
}

.hero-innerpage::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: #000000a1;
  top: 0;
  left: 0;
}

.hero-innerpage .hero-video, .hero-innerpage .hero-image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  min-height: 100%;
  min-width: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}


.hero-inner-content {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  /* dark overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  z-index: 1;
}

.hero-inner-content h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
}

.hero-inner-content p {
  font-size: 1rem;
  max-width: 650px;
  margin-bottom: 30px;
}

.pt-col {
    margin-top: 50px;
}


/* Tabs */
section.pt-package.py-5 {
  background: #f9f4f4;
  width: 100%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.package-price {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #515151;
  font-weight: 600;
}

.package-subtitle {
  color: #888;
  font-size: 1rem;
}

.package-text {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.package-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}

.package-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 10px;
  font-size: 15px;
}

.package-list li::before {
  content: "\f058";
  /* FontAwesome Check-circle */
  font-family: "FontAwesome";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: #000;
}

.tab-content {
  padding: 0 50px;
}

.nav-tabs .nav-link {
  border: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #777;
  border-bottom: 3px solid transparent;
  transition: .3s;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-link:hover {
  color: #000;
  border-color: #000;
  /* primary accent */
}

/* Benefit List */
.benefit-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}

.benefit-list li {
  position: relative;
  padding-left: 30px;
  margin: .4rem 0;
}

.benefit-list li::before {
  content: "\f00c";
  /* FontAwesome check */
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  top: 2px;
  color: #000;
  font-size: 16px;
}

/* FAQ Accordion style */
.accordion-button {
  font-weight: 600;
  color: #222;
}

.accordion-button:not(.collapsed) {
  color: #fff;
  background: #3b3b3b;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  font-size: 16px;
}

/* ------------------------------------------------
  ABOUT US
------------------------------------------------ */
.section {
  padding: 100px 0;
}

.section--about-us .about-wrapper {
  background: #fff;
  padding: 60px 50px;
  border-radius: 12px;
  box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.29);
}

.section--about-us .section-title {
  font-size: 42px;
  font-weight: 700;
}

.section--about-us p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #333;
}

.section--about-us .about-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.07);
}

.italic {
  font-size: 18px;
  font-weight: normal;
  font-style: italic;
}

/* ------------------------------------------------
 CONTACT QUERY 
------------------------------------------------ */
/* -------- CONTACT PAGE STYLE -------- */
.contact-section {
  padding: 60px 0;
  font-family: 'Inter', sans-serif;
}

.page-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
  text-align: center;
}

.contact-wrapper {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.contact-info,
.contact-form {
  flex: 1;
}

.contact-info h3 {
  font-size: 20px;
  margin: 20px 0 8px;
}

.contact-info p,
.contact-info a {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

.contact-info .map-frame {
  margin-top: 20px;
  border: 1px solid #eee;
}

.map-frame iframe {
  width: 100% !important;
}

.contact-form form {
  width: 100%;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #333;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: #fafafa;
  border: 1px solid #ddd;
  font-size: 14px;
  border-radius: 3px;
  resize: none;
}

.btn-send {
  padding: 12px 35px;
  background: #000;
  color: #fff;
  font-size: 15px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 3px;
}

/* ---- 3 Column Contact Boxes ---- */
.contact-boxes {
  padding: 60px 0;
  background-color: #fff;
  font-family: 'Inter', sans-serif;
}

.contact-boxes .container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  justify-content: space-between;
}

.contact-box {
  flex: 1;
  text-align: center;
  padding: 40px 20px;
  border: 1px solid #eee;
  border-radius: 8px;
  transition: all 0.3s;
}

.contact-icon {
  font-size: 45px;
  margin-bottom: 15px;
}

.contact-box img {
  width: 45px;
  height: 45px;
  margin-bottom: 15px;
}

.contact-box h4 {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.contact-box p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

.contact-box:hover {
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-boxes .container {
    flex-direction: column;
    gap: 20px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .page-title {
    text-align: left;
  }
}

/* ------------------------------------------------
 MEDIA QUERY 
------------------------------------------------ */
@media (max-width: 992px) {
  .banner-content {
    max-width: unset;
    width: 90%;
  }

  .banner-title {
    font-size: 32px;
  }

  .banner-subtitle {
    font-size: 16px;
  }

  .banner-button {
    font-size: 16px;
  }

  .reviews-title,
  .benefits-title,
  .cta-title,
  .steps-success h2 {
    font-size: 32px;
  }

  .steps-success h6 {
    font-size: 16px;
  }

  .package-subheading {
    font-size: 20px;
  }

  .header-nav {
    display: none;
  }

  .mobile-menu-trigger .hamburger {
    display: flex;
  }
  
  .main-banner {
    height: 100%;
  }
  
  .banner-content {
    padding: 100px 10px;
    width:100%;
    position:relative;
    top:unset;
    left:unset;
    transform:unset;
  }
  
  .banner-slide{
    height: 100%;
  }
}

@media (max-width: 768px) {
  .feature-title {
    font-size: 22px;
  }

  .trainer-box .card img {
    max-width: 100%;
  }

  .logo {
    max-width: 110px;
  }

  .site-header.scrolled .logo {
    max-width: 100px;
  }

  .contact-info,
  .contact-form {
    width: 100%;
  }
}

@media (max-width: 620px) {

  .reviews-title,
  .benefits-title,
  .cta-title,
  .banner-title,
  .package-heading,
  .steps-success h2 {
    font-size: 24px;
  }
  
  .logo {
    max-width: 75px;
  }

  .steps-success h6 {
    font-size: 16px;
  }

  .package-subheading {
    font-size: 16px;
  }
}

.lang-flag img{
    width: 26px;
    height: 26px;
    object-fit: contain;
    border-radius: 3px;
    display: block;
    transition: transform .15s ease, opacity .15s ease;
}
.lang-flag:hover img{
    transform: translateY(-1px);
    opacity: .9;
}