/*
|......................................................................
| Template Name: Discounts Theme
| Author: Michael SInclair // Mayflower Group Inc.
| Version: 2.0.0 (Optimized - Bootstrap removed, Local fonts)
|--------------------------------------------------------------------------
|--------------------------------------------------------------------------
| FONTS: Manrope (body), Gabarito (headings), Hanson (titles)
|--------------------------------------------------------------------------
| TABLE OF CONTENTS:
|--------------------------------------------------------------------------
| 1. Fonts
| 2. Variables
| 3. Typography
| 4. Spacing
| 5. General
| 6. Slider
| 7. Header
| 8. Footer
| 9. Pagination
| 10. Common Page Title
| 11. Button
| 12. Service Card
| 13. Hero
| 14. Funfact
| 15. Choose Us Contain
| 16. Layout Utilities
| 17. Flexbox Utilities
| 18. Text Utilities
| 19. Form Styles
| 20. Button Styles
| 21. Spacing Utilities
 ................................................................*/

/*--------------------------------------------------------------
1. Fonts (Locally Hosted)
----------------------------------------------------------------*/
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope.woff2') format('woff2-variations');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gabarito';
  src: url('../fonts/Gabarito.woff2') format('woff2-variations');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Hanson';
  src: url('../fonts/hanson-bold.woff2') format('woff2'),
       url('../fonts/hanson-bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/*--------------------------------------------------------------
2. Variables
----------------------------------------------------------------*/
:root {
  /* Font Families */
  --body-font-family: "Manrope", sans-serif;
  --heading-font-family: "Gabarito", sans-serif;
  --title-font-family: "Hanson", sans-serif;

  /* Colors */
  --body-color: #f9f9f9;
  --body-bg-color: #101010;
  --heading-color: #fff;
  --border-color: #fff;
  --white-color: #fff;
  --black-color: #000000;
  --primary-color: hsl(332.31, 100%, 43%);
  --secondary-color: hsl(332.31, 100%, 33%);

  /* Fluid Typography Scale (320px → 1200px viewport) */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);         /* 12px → 14px */
  --text-sm: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);           /* 14px → 16px */
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);         /* 16px → 18px */
  --text-lg: clamp(1.125rem, 1.05rem + 0.38vw, 1.25rem);        /* 18px → 20px */
  --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);           /* 20px → 24px */
  --text-2xl: clamp(1.5rem, 1.27rem + 1.14vw, 2rem);            /* 24px → 32px */
  --text-3xl: clamp(1.75rem, 1.39rem + 1.82vw, 2.25rem);        /* 28px → 36px */
  --text-4xl: clamp(2rem, 1.45rem + 2.73vw, 3rem);              /* 32px → 48px */
  --text-5xl: clamp(2.5rem, 1.59rem + 4.55vw, 3.875rem);        /* 40px → 62px */
  --text-6xl: clamp(3rem, 1.18rem + 9.09vw, 6.875rem);          /* 48px → 110px */

  /* Line Heights (tighter for large text, looser for body) */
  --leading-none: 1;
  --leading-tight: 1.1;
  --leading-snug: 1.25;
  --leading-normal: 1.4;
  --leading-relaxed: 1.6;
  --leading-loose: 1.8;
}

/*--------------------------------------------------------------
2. Typography
----------------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  color: var(--body-color);
  font-family: var(--body-font-family);
  background-color: var(--body-bg-color);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: var(--leading-relaxed);
  overflow-x: hidden;
  scroll-behavior: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  color: var(--heading-color);
  font-family: var(--heading-font-family);
  padding: 0px;
  margin: 0px;
  font-weight: 700;
  font-style: normal;
}

h1 {
  font-size: var(--text-5xl);
  line-height: var(--leading-tight);
}

h2 {
  font-size: var(--text-4xl);
  line-height: var(--leading-tight);
}

h3 {
  font-size: var(--text-3xl);
  line-height: var(--leading-snug);
}

h4 {
  font-size: var(--text-2xl);
  line-height: var(--leading-snug);
}

h5 {
  font-size: var(--text-xl);
  line-height: var(--leading-normal);
}

h6 {
  font-size: var(--text-lg);
  line-height: var(--leading-normal);
}

p {
  margin: 0px;
  padding: 0px;
  font-weight: 400;
  line-height: var(--leading-relaxed);
}

ul {
  margin: 0 0 25px 0;
  padding-left: 20px;
  list-style: square outside none;
}

ol {
  padding-left: 20px;
  margin-bottom: 25px;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 15px;
  font-style: italic;
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  margin: 0;
}

address {
  margin: 0 0 15px;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  font-size: var(--text-sm);
  transition: all 0.3s ease;
}

button {
  color: inherit;
  transition: all 0.3s ease;
}

a:hover {
  text-decoration: none;
  color: var(--secondary-color);
  transition: all 0.3s ease;
}

table {
  width: 100%;
  margin-bottom: 25px;
}
table th {
  font-weight: 600;
  color: var(--body-color);
}
table td,
table th {
  border-top: 1px solid #fff;
  padding: 11px 10px;
}

dl {
  margin-bottom: 25px;
}
dl dt {
  font-weight: 600;
}

b,
strong {
  font-weight: bold;
}

pre {
  color: var(--body-color);
  border: 1px solid #fff;
  font-size: var(--text-base);
  padding: 25px;
  border-radius: 5px;
}

kbd {
  font-size: 100%;
  background-color: var(--body-color);
  border-radius: 5px;
}

@media screen and (max-width: 991px) {
  ul {
    margin: 0 0 25px 0;
    padding-left: 20px;
    list-style: square outside none;
  }
  ul.cs_list_style_none {
    list-style: none;
    padding: 0px;
  }
  ul.cs_list_style_none li {
    margin-bottom: 10px;
  }
}
/*--------------------------------------------------------------
  4. Spacing
----------------------------------------------------------------*/
@media screen and (min-width: 992px) {
  .ak-height-30 {
    height: 30px;
  }
  .ak-height-35 {
    height: 35px;
  }
  .ak-height-45 {
    height: 45px;
  }
  .ak-height-50 {
    height: 50px;
  }
  .ak-height-75 {
    height: 75px;
  }
}
@media screen and (max-width: 991px) {
  .ak-height-lg-15 {
    height: 15px;
  }
  .ak-height-lg-30 {
    height: 30px;
  }
  .ak-height-lg-50 {
    height: 50px;
  }
  .ak-height-lg-60 {
    height: 60px;
  }
}
/*--------------------------------------------------------------
  5. General
----------------------------------------------------------------*/
.ak-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.ak-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ak-primary-bg {
  background-color: var(--secondary-color);
}

.ak-stroke-text {
  font-family: var(--title-font-family);
  line-height: 1.2em;
  color: transparent;
  -webkit-text-stroke: 1px var(--body-color);
  transition: all 0.3s;
  cursor: pointer;
}
.ak-stroke-text.hover-color-changes:hover {
  -webkit-text-stroke: 1px var(--primary-color);
}

.ak-stroke-number {
  line-height: 1.2em;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 3px var(--primary-color);
}
.ak-stroke-number.color-white {
  -webkit-text-stroke: 1px var(--white-color);
}

.stroke-heading-text {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-transform: uppercase;
  -webkit-text-stroke: 1px var(--primary-color);
}
.stroke-heading-text h3 {
  font-size: var(--text-2xl);
  margin: 0;
}

.ak-fixed-bg {
  background-attachment: fixed;
}

.ak-section-heading.ak-style-1 {
  position: relative;
}
/* Shared shimmer text effect base styles */
.ak-section-heading.ak-style-1 .background-text,
.footer.style-1 .footer-email .background-text {
  z-index: 9;
  opacity: 0.3;
  text-align: center;
  font-family: var(--heading-font-family);
  font-size: var(--text-6xl);
  font-style: normal;
  font-weight: 700;
  line-height: var(--leading-none);
  text-transform: uppercase;
  background: linear-gradient(to right, #222 0%, #fff 50%, #222 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-color: rgba(46, 46, 46, 0.7960784314);
  -ms-background-size: 200px 100%;
  background-size: 200px 100%;
}
/* Section heading specific */
.ak-section-heading.ak-style-1 .background-text {
  position: absolute;
  display: inline;
  animation: shimmer 2.5s infinite;
}
.ak-section-heading.ak-style-1 .ak-section-subtitle {
  font-family: var(--body-font-family);
  font-size: var(--text-sm);
  font-style: normal;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  font-weight: 400;
  line-height: var(--leading-relaxed);
  position: relative;
  z-index: 10;
}
.ak-section-heading.ak-style-1 .ak-section-title {
  font-size: var(--text-4xl);
  font-weight: 700;
  font-family: var(--heading-font-family);
  font-style: normal;
  margin-bottom: 10px;
  line-height: var(--leading-tight);
  text-transform: uppercase;
  color: var(--white-color);
  z-index: 10;
  position: relative;
}
.ak-section-heading.ak-style-1.ak-type-1 {
  text-align: center;
}
.ak-section-heading.ak-style-1.ak-type-1 .background-text {
  left: -50%;
  width: 100%;
  transform: translate(50%, 0%);
}
.ak-section-heading.ak-style-1.ak-color-1 .ak-section-title,
.ak-section-heading.ak-style-1.ak-color-1 .ak-section-subtitle {
  color: var(--black-color);
}

@keyframes shimmer {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top right;
  }
}
.ak-scrollup {
  position: fixed;
  bottom: -60px;
  right: 40px;
  color: #fff;
  padding: 5px;
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s ease;
  z-index: 10;
  background-color: #000000;
  box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}
.ak-scrollup:hover {
  background-color: #fff;
  color: #000;
}

.ak-scrollup.ak-scrollup-show {
  bottom: 50px;
}

.swiper-slide {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}

.ak-border-width {
  width: 100%;
  height: 1px;
  background-color: var(--white-color);
}

.ak-border-height {
  width: 1px;
  height: 100%;
  background-color: var(--white-color);
}

.primary-color-border {
  width: 100%;
  height: 1px;
  opacity: 0.35;
  background: var(--primary-color);
}

.text-hover-animaiton {
  line-height: 100%;
  display: inline-block;
}
.text-hover-animaiton .menu-text {
  display: -ms-flexbox;
  overflow: hidden;
  text-shadow: 0 60px 0 var(--primary-color);
  display: flex;
}
.text-hover-animaiton .menu-text.black {
  text-shadow: 0 60px 0 var(--black-color);
}
.text-hover-animaiton .menu-text.white {
  text-shadow: 0 60px 0 var(--white-color);
}
.text-hover-animaiton .menu-text div {
  display: block;
  backface-visibility: hidden;
  transition: transform 0.4s ease;
  transform: translateY(var(--m)) translateZ(0);
}

.text-hover-animaiton:hover {
  --y: -15px;
  cursor: pointer;
}
.text-hover-animaiton:hover .menu-text div {
  --m: calc(62px * -1);
}
.text-hover-animaiton:hover .menu-text div:nth-child(1) {
  transition-delay: 0.05s;
}
.text-hover-animaiton:hover .menu-text div:nth-child(2) {
  transition-delay: 0.1s;
}
.text-hover-animaiton:hover .menu-text div:nth-child(3) {
  transition-delay: 0.15s;
}
.text-hover-animaiton:hover .menu-text div:nth-child(4) {
  transition-delay: 0.2s;
}
.text-hover-animaiton:hover .menu-text div:nth-child(5) {
  transition-delay: 0.25s;
}
.text-hover-animaiton:hover .menu-text div:nth-child(6) {
  transition-delay: 0.3s;
}
.text-hover-animaiton:hover .menu-text div:nth-child(7) {
  transition-delay: 0.35s;
}
.text-hover-animaiton:hover .menu-text div:nth-child(8) {
  transition-delay: 0.4s;
}
.text-hover-animaiton:hover .menu-text div:nth-child(9) {
  transition-delay: 0.45s;
}
.text-hover-animaiton:hover .menu-text div:nth-child(10) {
  transition-delay: 0.5s;
}
.text-hover-animaiton:hover .menu-text div:nth-child(11) {
  transition-delay: 0.55s;
}
.text-hover-animaiton:hover .menu-text div:nth-child(12) {
  transition-delay: 0.6s;
}

.btn-animation, .cta .cta-info .cta-btn {
  transform-style: preserve-3d;
  transition: font-size 0.5s, background-color 0.3s, transform 0.3s, color 0.3s;
  transform: translate3d(0, 0px, 0px);
}
.btn-animation:hover, .cta .cta-info .cta-btn:hover {
  font-size: var(--text-base) !important;
  color: rgba(255, 255, 255, 0.9) !important;
  background-color: rgba(255, 61, 36, 0.7) !important;
  transform: translate3d(0, -8px, 0.01px);
}

.text-letter-spacing-animation, .more-btn {
  letter-spacing: normal;
  transition: letter-spacing 0.3s ease;
  cursor: pointer;
}
.text-letter-spacing-animation:hover, .more-btn:hover {
  letter-spacing: 2px;
  color: var(--white-color);
}

.social-icon {
  display: flex;
  gap: 15px;
}
.social-icon a {
  transition: all 0.5s ease-in-out;
}
.social-icon a:hover {
  transform: scale(1.2);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}
.social-icon path {
  transition: fill 0.3s ease-in-out;
}
.social-icon :hover path {
  fill: var(--primary-color);
}

@media screen and (max-width: 991px) {
  .ak-scrollup {
    right: 15px;
  }
  .ak-scrollup.ak-scrollup-show {
    bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .ak-section-heading.ak-style-1 .ak-section-subtitle {
    margin-bottom: 0px;
  }
  .ak-section-heading.ak-style-1.ak-type-1 {
    text-align: center;
  }
  .ak-section-heading.ak-style-1.ak-type-1 .background-text {
    left: -50%;
    width: 100%;
    transform: translate(50%, 0%);
  }
}

/*--------------------------------------------------------------
  6. Slider
----------------------------------------------------------------*/
.ak-slider {
  position: relative;
  overflow: hidden;
}

/* Start slider hero 1 */
.ak-slider-hero-1 {
  overflow: hidden;
  width: 100%;
}
.ak-slider-hero-1 .swiper-slide {
  width: 100%;
}

/*--------------------------------------------------------------
8. Header
----------------------------------------------------------------*/
.ak-site_header {
  position: relative;
  z-index: 100001;
}

.ak-site_header {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0px;
  transition: all 0.4s ease;
}

.ak-site_header.ak-style1 .ak-main_header_in {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  margin: 8px 0px;
}

.ak-site_header.ak-style1.ak-sticky-active {
  background-color: rgba(0, 0, 0, 0.8549019608);
  box-shadow: 0 10px 10px -10px rgba(33, 43, 53, 0.1);
}

.ak-sticky_header {
  position: fixed !important;
  width: 100%;
  z-index: 999;
}

.ak-gescout_sticky {
  position: fixed !important;
  top: -150px;
  transition: all 0.4s ease;
}

.ak-gescout_show {
  top: 0 !important;
}

/* Logo/Branding Styles */
.ak-site_branding {
  display: inline-flex;
  align-items: center;
}

.ak-site_branding img,
.ak-site_branding .logo-svg {
  width: clamp(280px, 40vw, 480px);
  height: auto;
  display: block;
  transition: opacity 0.3s ease;
}

.ak-site_branding:hover img,
.ak-site_branding:hover .logo-svg {
  opacity: 0.85;
}

@media screen and (max-width: 1199px) {
  .ak-site_header.ak-style1 .ak-main_header_in {
    height: 80px;
  }
  .ak-site_header.ak-style1 {
    top: 0;
  }
}
@media screen and (max-width: 991px) {
  .ak-site_header .container {
    max-width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .ak-site_branding img,
  .ak-site_branding .logo-svg {
    width: clamp(160px, 55vw, 280px);
  }
  .ak-main-header-right {
    display: none;
  }
  .ak-site_header.ak-style1 .ak-main_header_in {
    justify-content: center;
    height: auto;
  }
}
/*--------------------------------------------------------------
  9. Footer
----------------------------------------------------------------*/
.footer-bg {
  background-color: var(--black-color);
}

.footer.style-1 .footer-email {
  position: relative;
}
/* Footer specific shimmer overrides */
.footer.style-1 .footer-email .background-text {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: shimmer 4s infinite;
}
.footer.style-1 .footer-email .footer-heading-email {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
}
.footer.style-1 .footer-email .footer-heading-email .email-title {
  text-transform: uppercase;
  max-width: 670px;
}
.footer.style-1 .footer-email .footer-heading-email .email-form {
  display: flex;
  gap: 30px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--primary-color);
}
.footer.style-1 .footer-email .footer-heading-email .email-form .email-input {
  color: #fff;
  background-color: transparent;
  border: 0;
}
.footer.style-1 .footer-email .footer-heading-email .email-form .email-input:focus {
  outline: none;
}
.footer.style-1 .footer-email .footer-heading-email .email-form .submit-btn {
  background-color: var(--primary-color);
  position: relative;
  overflow: hidden;
  padding: 8px 13px;
  border: 0px;
}
.footer.style-1 .footer-email .footer-heading-email .email-form .submit-btn:hover .send svg {
  transition: all 0.3s ease;
  animation: sending 0.5s linear 0.3s forwards;
}
.footer.style-1 .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.footer.style-1 .footer-content .tagline {
  font-size: var(--text-2xl);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white-color);
}
.footer.style-1 .footer-content .footer-info {
  max-width: 840px;
}
.footer.style-1 .footer-content .footer-info .description {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--body-color);
}
.footer.style-1 .footer-content .legal {
  font-size: var(--text-xs);
  color: var(--body-color);
}
.footer.style-1 .footer-content .legal a {
  display: block;
  margin-top: 8px;
}
.footer.style-1 .footer-content .footer-info .desp {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}
.footer.style-1 .footer-content .footer-info .phone {
  color: #fff;
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: var(--leading-tight);
}
.footer.style-1 .footer-content .footer-menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer.style-1 .footer-content .footer-menu .menu-title {
  font-size: var(--text-base);
  color: var(--white-color);
  text-transform: uppercase;
  line-height: var(--leading-normal);
}
.footer.style-1 .footer-content .footer-address {
  max-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer.style-1 .footer-content .footer-address a {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}
.footer.style-1 .footer-content .footer-address .adress-title {
  font-size: var(--text-base);
  color: var(--white-color);
  text-transform: uppercase;
  line-height: var(--leading-normal);
}
.footer.style-1 .copy-right {

  padding: 24px 0px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.footer.style-1 .copy-right .title,
.footer.style-1 .copy-right .copyright {
  font-size: var(--text-xs);
  line-height: var(--leading-relaxed);
  margin: 0;
}
/* .social-icon inherits base styles from line 586 */

@media screen and (max-width: 991px) {
  .footer.style-1 .footer-email .background-text {
    transform: translate(0%, 0%);
  }
  .footer.style-1 .footer-email .footer-heading-email {
    flex-direction: column-reverse;
    gap: 30px;
    text-align: center;
  }
  .footer.style-1 .footer-content {
    flex-wrap: wrap;
    gap: 30px;
  }
  .footer.style-1 .footer-content .footer-info {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .footer.style-1 .footer-email .footer-heading-email {
    text-align: center;
    align-items: center;
  }
  .footer.style-1 .copy-right {
    flex-direction: column;
    text-align: center;
  }
}
@keyframes sending {
  0% {
    transform: translateY(0);
    transform: rotate(360deg);
  }
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    transform: translate(40px, -60px);
  }
}
/*--------------------------------------------------------------
  10. Common Page Title
----------------------------------------------------------------*/
.common-page-title {
  margin-bottom: 30px;
}
.common-page-title .page-title {
  text-transform: uppercase;
}

/*--------------------------------------------------------------
  12. Button
----------------------------------------------------------------*/
.common-btn {
  padding: 10px 28px;
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white-color);
  font-size: var(--text-base);
  font-weight: 600;
  font-family: var(--heading-font-family);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transform-style: preserve-3d;
  transition: background-color 0.4s, transform 0.3s, color 0.3s;
  transform: translate3d(0, 0px, 0px);
  line-height: var(--leading-normal);
}
.common-btn:hover {
  transition: background-color 0.4s, transform 0.3s, color 0.3s;
  color: var(--white-color);
  background-color: var(--secondary-color);
  transform: translate3d(0px, -7px, 0.01px);
}

.more-btn {
  position: relative;
  display: inline-block;
  color: var(--white-color);
  font-size: var(--text-base);
  min-width: 100px;
  text-transform: uppercase;
  margin-bottom: 6px;
  line-height: var(--leading-normal);
}
.more-btn::after {
  content: "";
  position: absolute;
  display: inline;
  width: 70%;
  height: 2px;
  left: 0;
  bottom: -5px;
  opacity: 1;
  transition: all 0.5s;
  background-color: var(--primary-color);
}
.more-btn:hover::after {
  width: 100%;
}

.get-started-btn {
  padding: 20px 42px;
  display: inline-block;
  cursor: pointer;
  text-align: start;
  font-weight: 700;
  border-radius: 150px;
  border: 1px solid rgba(90, 89, 89, 0.3647058824);
  background: rgba(255, 255, 255, 0.16);
  transition: all 0.5s;
  line-height: normal;
}
.get-started-btn:hover {
  background: rgba(255, 61, 36, 0.7);
  color: white;
}
.get-started-btn span svg {
  transition: all 0.3s;
  transform: translateX(0px);
}
.get-started-btn:hover > span svg {
  transform: translateX(15px);
}

.next-prev-btn {
  display: flex;
  gap: 25px;
}
.next-prev-btn .button {
  font-size: var(--text-base);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: var(--leading-normal);
  color: var(--white-color);
  text-transform: uppercase;
  padding: 7px 15px;
  border: 1px solid var(--white-color);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}
.next-prev-btn .button img {
  transition: all 0.3s;
}
.next-prev-btn .button.next-btn:hover img {
  transform: translateX(5px);
}
.next-prev-btn .button.prev-btn:hover img {
  transform: translateX(-5px);
}
.next-prev-btn .button:hover {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

/*--------------------------------------------------------------
  13. Service Card
----------------------------------------------------------------*/
.service-card-style-2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 1.5rem;
  gap: 2rem;
  background-color: var(--black-color);
}
.service-card-style-2 .service-icon {
  border-radius: 25px;
  display: inline-block;
  padding: 17px;
  background-color: rgba(255, 61, 36, 0.7);
}
.service-card-style-2 .service-desp {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-style-2 .service-desp .title {
  font-family: var(--heading-font-family);
  color: #fff;
  font-size: var(--text-xl);
  display: inline-block;
  margin-bottom: 7px;
  text-transform: uppercase;
  transition: all 0.5s;
  font-weight: 700;
  line-height: var(--leading-snug);
}
.service-card-style-2 .service-desp .title:hover {
  color: var(--primary-color);
}
.service-card-style-2 .service-desp .desp {
  margin-bottom: 17px;
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}
.service-card-style-2:hover > .service-icon {
  transition-duration: 1s;
  transform: rotate(360deg) !important;
}

@media screen and (max-width: 767px) {
  .service-card,
  .service-card-style-2 {
    flex-direction: column;
    align-items: center;
    background: transparent;
  }
  .service-card .card-info .card-title,
  .service-card-style-2 .service-desp .title {
    margin: 0px;
    text-align: center;
  }
  .service-card .card-info .card-desp,
  .service-card-style-2 .service-desp .desp {
    margin-bottom: 10px;
    text-align: center;
  }
}
/*--------------------------------------------------------------
  14. Hero
----------------------------------------------------------------*/
.ak-hero.ak-style1 {
  aspect-ratio: 16 / 9;
  max-height: 80vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.ak-hero.ak-style1 .ak-hero-bg {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}
.ak-hero.ak-style1 .hero-slider-info {
  position: absolute;
  display: flex;
  align-items: center;
  height: 100%;
  margin-top: 10%;
  max-width: 60%;
}
.ak-hero.ak-style1 .hero-slider-info .hero-main-title {
  font-size: var(--text-5xl);
  font-weight: 700;
  text-transform: uppercase;
  line-height: var(--leading-tight);
  margin-bottom: 0.25em;
  text-shadow: 2px 2px 2px rgba(221, 0, 103, 0.3);
}
.ak-hero.ak-style1 .hero-slider-info .hero-secondary-title,
.ak-hero.ak-style1 .hero-slider-info .hero-subtitle {
  font-size: var(--text-4xl);
  color: var(--white-color);
  font-weight: 600;
  line-height: var(--leading-snug);
  margin-top: 0;
  text-shadow: 2px 2px 2px rgba(221, 0, 103, 0.3);
}
.ak-hero.ak-style1 .hero-slider-info .hero-main-title-1 {
  text-transform: uppercase;
}
.ak-hero.ak-style1 .hero-slider-info .mini-title {
  max-width: 560px;
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

.hero-contact-info {
  position: absolute;
  top: 90px;
  z-index: 11;
  left: 50%;
  width: 100%;
  transform: translate(-50%, 50%);
  display: flex;
  gap: 113px;
  align-items: center;
  justify-content: center;
}

.social-hero {
  position: absolute;
  z-index: 11;
  width: 100px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-direction: column;
  top: 30%;
}
.social-hero .social-icon1 {
  width: 16px;
  height: 16px;
}
.social-hero .social-icon1 path {
  transition: fill 0.3s ease;
}
.social-hero .social-icon1:hover path {
  fill: var(--primary-color) !important;
}
.social-hero .social-horizontal {
  width: 1px;
  height: 85px;
  background: var(--Text-color, #d3d3d3);
}
.social-hero .social-link {
  transform: rotate(-90deg);
  color: #fff;
  font-family: var(--heading-font-family);
  font-size: var(--text-base);
  font-weight: 400;
  margin-top: 40px;
  line-height: var(--leading-normal);
}

@media screen and (max-width: 1367px) {
  .hero-contact-info {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .social-hero {
    display: none;
  }
  .hero-pagination {
    display: none;
  }
  .ak-hero.ak-style1 .hero-slider-info {
    padding: 20px 0;
  }
  .ak-hero.ak-style1 .hero-slider-info .hero-main-title {
    font-size: var(--text-4xl);
  }
  .ak-hero.ak-style1 .hero-slider-info .hero-secondary-title,
  .ak-hero.ak-style1 .hero-slider-info .hero-subtitle {
    font-size: var(--text-2xl);
  }
}
@media screen and (max-width: 575px) {
  /* Hero adjustments */
  .ak-hero.ak-style1 {
    aspect-ratio: 4 / 3;
    max-height: 70vh;
  }
  .ak-hero.ak-style1 .hero-slider-info .hero-main-title {
    font-size: var(--text-2xl);
  }
  .ak-hero.ak-style1 .hero-slider-info .hero-secondary-title,
  .ak-hero.ak-style1 .hero-slider-info .hero-subtitle {
    font-size: var(--text-lg);
  }

  /* Button adjustments */
  .common-btn {
    padding: 10px 20px;
    font-size: var(--text-sm);
  }

  /* Stroke text */
  .stroke-heading-text h3 {
    font-size: var(--text-base);
  }

  .ak-section-heading.ak-style-1 .ak-section-title {
    font-size: var(--text-2xl);
  }

  /* Footer adjustments */
  .footer.style-1 .footer-content .tagline {
    font-size: var(--text-xl);
  }
}
/*--------------------------------------------------------------
  16. Funfact
----------------------------------------------------------------*/
.funfact-counter {
  display: flex;
  flex-wrap: wrap;
}

.ak-funfact.ak-style1 {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ak-funfact.ak-style1 .ak-funfact-number {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--primary-color);
}
.ak-funfact.ak-style1 .ak-funfact-number span {
  font-family: var(--title-font-family);
  font-size: var(--text-5xl);
  line-height: var(--leading-tight);
}
.ak-funfact.ak-style1 .ak-funfact-number.color-1 {
  color: #fff;
}
.ak-funfact.ak-style1 .ak-funfact-text {
  margin-top: 10px;
}
.ak-funfact.ak-style1 .ak-funfact-text p {
  color: #fff;
  font-family: var(--heading-font-family);
  font-weight: 700;
  line-height: var(--leading-snug);
  font-size: var(--text-xl);
  text-transform: uppercase;
}

@media screen and (max-width: 767px) {
  .ak-funfact.ak-style1 {
    margin-bottom: 0px;
    text-align: center;
    align-items: center;
  }
}
/*--------------------------------------------------------------
  22. Choose Us Contain
----------------------------------------------------------------*/
.choose-us-contain {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.choose-us-contain .choose-us-info {
  max-width: 640px;
}
.choose-us-contain .choose-us-form {
  position: relative;
}

@media screen and (max-width: 991px) {
  .choose-us-contain {
    flex-wrap: wrap;
    gap: 50px;
    flex-direction: column-reverse;
    align-items: center;
  }
  .choose-us-contain .choose-us-info {
    max-width: 100%;
    text-align: center;
  }
  .choose-us-contain .choose-us-info .ak-site-description {
    margin-left: auto;
    margin-right: auto;
  }
  .choose-us-contain .choose-us-form {
    max-width: 100%;
    width: 100%;
  }
}

/* Main Title Styles */
.main-title {
  text-transform: uppercase;
  text-shadow: 4px 4px 4px rgba(221, 0, 103, 0.8);
  font-size: var(--text-4xl);
  letter-spacing: 2px;
}
.sub-title {
  text-shadow: 4px 4px 4px rgba(221, 0, 103, 0.8);
  font-size: var(--text-3xl);
  letter-spacing: 2px;
}

/* Site Description Text */
.ak-site-description {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--body-color);
  max-width: 580px;
}

/* Form Title */
.form-title {
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin: 0.5rem 0;
  color: var(--white-color);
  text-align: center;
}

/*--------------------------------------------------------------
  29. Layout Utilities (Bootstrap Replacement)
----------------------------------------------------------------*/
/* Wrapper - replaces .container */
.wrapper {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media screen and (max-width: 1400px) {
  .wrapper {
    max-width: 1140px;
  }
}

@media screen and (max-width: 1200px) {
  .wrapper {
    max-width: 960px;
  }
}

@media screen and (max-width: 992px) {
  .wrapper {
    max-width: 720px;
  }
}

@media screen and (max-width: 768px) {
  .wrapper {
    max-width: 100%;
  }
  .choose-us-contain {
    gap: 30px;
  }
  .choose-us-contain .choose-us-info {
    text-align: center;
  }
  .choose-us-contain .choose-us-info .ak-site-description {
    margin-left: auto;
    margin-right: auto;
  }
  .ak-section-heading.ak-style-1 .background-text {
    width: 100%;
    left: 0;
  }
  .stroke-heading-text {
    align-items: center;
  }
  .membership-display {
    justify-content: center;
    text-align: center;
  }
  .membership {
    align-items: center;
  }
  .plan-name {
    text-align: center;
  }
  .price {
    align-items: center;
    float: none;
  }
}

/* Grid - replaces .row */
.grid {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.grid-item {
  padding-left: 15px;
  padding-right: 15px;
  flex: 1;
}

/* Stats Grid - for the 3-column counter section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  align-items: center;
}

@media screen and (max-width: 992px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Cards Grid - for the 2-column bonus sites section */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: stretch;
}
.cards-grid .card-item {
  height: 100%;
}

@media screen and (max-width: 992px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
  30. Flexbox Utilities
----------------------------------------------------------------*/
.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-sm {
  gap: 8px;
}

.gap-md {
  gap: 16px;
}

/*--------------------------------------------------------------
  31. Text Utilities
----------------------------------------------------------------*/
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

/*--------------------------------------------------------------
  32. Width Utilities
----------------------------------------------------------------*/
.w-full {
  width: 100%;
}

.float-left {
  float: left;
}

/*--------------------------------------------------------------
  33. Form Styles (Matching Original)
----------------------------------------------------------------*/
.payment-form input[type="email"],
.payment-form input[type="text"],
.payment-form input[type="password"] {
    box-sizing: border-box;
    width: 100%;
}

input {
  margin: 0.25em 0;
}

input[type=radio] {
  position: fixed;
  opacity: 0;
  pointer-events: none;
}

.payment-form {
  background-color: rgba(221, 0, 102, 0.7);
  position: relative;
  display: flex;
  flex-direction: column;
  word-wrap: break-word;
  background-clip: border-box;
  border: 1px solid rgba(221, 0, 102, 0.7);
  border-radius: 0.25em;
  padding: 0em 1em;
}

.form-input {
  display: block;
  width: 100%;
  padding: .5rem 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-input:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
}

.form-input::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-label {
  margin-bottom: .5rem;
}

.errormessage {
  visibility: hidden;
}

.error .errormessage {
  visibility: visible;
}

/* Payment Options */
.paymentclass {
  display: flex;
  align-items: center;
}
.paymentclass .grid-item {
  flex: 1;
  margin: .5rem;
}
.paymentclass input[type=radio]:checked + label {
  font-weight: bold;
  color: #fff !important;
  background-color: #28a745 !important;
}
.paymentclass .button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background-color: #fff;
  color: #212529;
  padding: 1rem .75rem;
  border: 1px solid transparent;
  border-radius: .375rem;
  cursor: pointer;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.paymentclass .button img {
  max-height: 24px;
  width: auto;
}

/* Membership Plans */
.membership-plans {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.membership-plans label {
  display: block;
  cursor: pointer;
}
.membership-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #327B43;
  border: 1px solid #327B43;
  cursor: pointer;
  border-radius: 0.25rem;
  padding: 0.25rem;
}
.membership-plans input[type=radio]:checked + .membership-display {
  background-color: #28a745;
  border: 1px solid #101010;
}
.membership {
  flex-direction: column;
  display: flex;
  padding-left: 10px;
}
.plan-name {
  font-size: var(--text-base);
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1rem;
}
.plan-desc {
  font-size: var(--text-xs);
  color: #f8f9fa;
}
.price {
  float: right;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
}
.amount {
  float: left;
  font-size: 2rem;
  color: #f8f9fa;
  font-weight: bold;
  line-height: var(--text-xl);
}
.month {
  font-size: 0.875rem;
  color: #f8f9fa;
}

/* Form Submit */
.getAccess {
  font-size: clamp(1.4rem, 1.3538rem + 0.2051vw, 1.5rem);
  font-family: var(--heading-font-family);
  color: var(--white-color);
  letter-spacing: 2px;
  text-align: center;
  padding: 0.8rem 1.2rem;
  text-transform: uppercase;
  background-color: #327B43;
  border-radius: 0.25rem;
  border: none;
  width: 100%;
  cursor: pointer;
}
.getAccess:hover {
  background-color: #28a745;
  box-shadow: 1px 1px 4px;
}

/* Checkbox styling */
.check {
  font-size: 0.875rem;
  color: #f8f9fa;
  border-radius: 6px;
  border: none;
  width: 100%;
  text-align: center;
}

/* Satisfaction/Security badge */
.satisfy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1em;
}
.satisfy .lock {
  font-size: 1rem;
  letter-spacing: 2px;
  display: inline;
}

@media only screen and (max-width: 1200px) {
  .membership-display {
    flex-direction: column;
  }
  .price {
    flex-direction: unset;
  }
  .paymentclass {
    flex-direction: column;
    display: flex;
  }
  .paymentclass .button {
    display: flex;
    justify-content: space-between;
    flex-direction: unset;
  }
}

/*--------------------------------------------------------------
  34. Button Styles (Bootstrap Replacement)
----------------------------------------------------------------*/
.button {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  padding: 12px 24px;
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  border-radius: 6px;
  border: 1px solid transparent;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.button:hover {
  text-decoration: none;
}

.button-secondary {
  color: #212529;
  background-color: #fff;
  border-color: #ced4da;
}

.button-secondary:hover {
  background-color: #e9ecef;
  border-color: #adb5bd;
}

.button-secondary.active,
.button-secondary:active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

/* Radio button styling for payment options */
.radio-hidden {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/*--------------------------------------------------------------
  35. Color Utilities
----------------------------------------------------------------*/
.bg-white {
  background-color: #fff;
}

.text-dark {
  color: #212529;
}

/*--------------------------------------------------------------
  36. Spacing Utilities
----------------------------------------------------------------*/
.mt-2 {
  margin-top: 8px;
}

.mt-3 {
  margin-top: 16px;
}

.mb-0 {
  margin-bottom: 0;
}

.my-2 {
  margin-top: 8px;
  margin-bottom: 8px;
}

.m-2 {
  margin: 8px;
}

.py-3 {
  padding-top: 16px;
  padding-bottom: 16px;
}

/*--------------------------------------------------------------
  23. Semantic HTML & Accessibility Fixes
----------------------------------------------------------------*/
/* Skip-to-content link (hidden until focused) */
.skip-to-content {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-size: var(--text-base);
}
.skip-to-content:focus {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  width: auto;
  height: auto;
  padding: 12px 24px;
  margin: 0;
  overflow: visible;
  clip: auto;
  clip-path: none;
  white-space: normal;
  background: var(--primary-color);
  border-radius: 4px;
}

/* Button reset for scroll-up (was <span>, now <button>) */
button.ak-scrollup {
  border: none;
  font: inherit;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Fieldset reset for form radio groups */
.form-fieldset {
  border: 0;
  border: none;
  margin: 0;
  padding: 0;
  min-inline-size: 0;
  min-width: 0;
}
.form-fieldset > legend.form-title {
  float: none;
  width: 100%;
  padding: 0;
  border: 0;
}

/* Stroke heading text as <ul> (was div with h3 children) */
ul.stroke-heading-text {
  list-style: none;
  padding: 0;
  margin: 0;
}
.stroke-heading-text li {
  font-family: var(--title-font-family);
  line-height: var(--leading-snug);
  color: transparent;
  -webkit-text-stroke: 1px var(--body-color);
  transition: all 0.3s;
  cursor: pointer;
  font-size: var(--text-3xl);
  font-weight: 700;
}
.stroke-heading-text li.hover-color-changes:hover {
  -webkit-text-stroke: 1px var(--primary-color);
}

/* Description list reset for stats section */
dl.stats-grid {
  margin: 0;
}
dl.stats-grid dt {
  font-weight: normal;
}
dl.stats-grid dd {
  margin: 0;
}


/*# sourceMappingURL=style.css.map */