@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Jura", serif;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1220px;
  }
}
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg-1.jpg) center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.text span {
  font-size: 13vw;
  color: white;
  font-weight: bold;
  opacity: 0;
  transform: translateY(20px);
  display: inline-block;
  animation: fadeInUp 0.5s forwards;
  font-family: "Raleway", sans-serif;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.text span:nth-child(1) {
  animation-delay: 0s;
}

.text span:nth-child(2) {
  animation-delay: 0.1s;
}

.text span:nth-child(3) {
  animation-delay: 0.2s;
}

.text span:nth-child(4) {
  animation-delay: 0.3s;
}

.text span:nth-child(5) {
  animation-delay: 0.4s;
}

.text span:nth-child(6) {
  animation-delay: 0.5s;
}

.text span:nth-child(7) {
  animation-delay: 0.6s;
}

.text span:nth-child(8) {
  animation-delay: 0.7s;
}

.text span:nth-child(9) {
  animation-delay: 0.8s;
}

.text span:nth-child(10) {
  animation-delay: 0.9s;
}

#content {
  background: #001f1a;
  width: 100%;
  min-height: 100vh;
}

.bg-1 {
  background: url(../img/bg-2.jpg) top center/cover no-repeat;
}

.header {
  padding-top: 25px;
}
.header .header-top {
  margin-bottom: 50px;
}
.header .header-top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .header-top .container .menu nav ul {
  padding: 0;
  margin: 0;
  display: flex;
  gap: 40px;
}
.header .header-top .container .menu nav ul li {
  list-style-type: none;
}
.header .header-top .container .menu nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  position: relative;
}
.header .header-top .container .menu nav ul li a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  border-radius: 4px;
  background-color: #fff;
  bottom: 0;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}
.header .header-top .container .menu nav ul li a:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}
.header .header-top .container .logo-center {
  display: flex;
  align-items: center;
}
.header .header-top .container .logo-center .logo {
  font-family: "Raleway", sans-serif;
  color: #00ad65;
  font-size: 30px;
  text-decoration: none;
  font-weight: bold;
}
.header .header-top .container .logo-center p {
  margin: 0 15px;
  color: #fff;
}
.header .header-top .container .logo-center .dropdown .dropdown-toggle {
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: 20px;
}
.header .header-content .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .header-content .container .text {
  width: 50%;
  padding-left: 30px;
}
.header .header-content .container .text h1 {
  color: #00ad65;
  font-size: 50px;
  line-height: 60px;
  font-weight: bold;
  margin-bottom: 35px;
  font-family: "Raleway", sans-serif;
}
.header .header-content .container .text p {
  color: #fff;
  font-size: 26px;
  margin-bottom: 35px;
}
.header .header-content .container .text .btn-gl {
  width: 280px;
  height: 80px;
  border: 0;
  outline: none;
  background-color: #00ad65;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  color: #fff;
  font-size: 20px;
  clip-path: polygon(92% 0, 100% 25%, 100% 100%, 8% 100%, 0% 75%, 0 0);
  text-decoration: none;
  transition: 0.3s all;
}
.header .header-content .container .text .btn-gl:hover {
  transform: scale(1.1);
}
.header .header-content .container .img {
  width: 50%;
  position: relative;
}
.header .header-content .container .img .glitch-container {
  position: relative;
}
@keyframes levitate {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes levitate-image {
  0%, 100% {
    transform: scale(1.1) translateY(0);
  }
  50% {
    transform: scale(1.1) translateY(-20px);
  }
}
.header .header-content .container .img .glitch-image {
  width: 100%;
  height: auto;
  transform: scale(1.1);
  animation: levitate-image 3s ease-in-out infinite;
}
.header .header-content .container .img .figure {
  position: absolute;
  width: 100%;
  left: 15px;
  top: 15px;
  animation: levitate 3s ease-in-out infinite;
  animation-delay: 0.5s;
}
.header .header-content .container .img video {
  width: 100%;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  background-color: transparent;
  color: #00ff7f;
  font-family: "Arial", sans-serif;
  font-size: 18px;
  font-weight: bold;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  outline: none;
}

.dropdown-toggle::after {
  content: " ▼";
  font-size: 12px;
  color: #00ff7f;
  transform: translate(0, 3px);
}

.dropdown-menu {
  background-color: #003300;
  border: 1px solid #00ff7f;
  border-radius: 5px;
  margin-top: 5px;
  min-width: 100px;
  padding: 0;
}

.dropdown-menu .dropdown-item {
  color: #ffffff;
  font-family: "Arial", sans-serif;
  font-size: 16px;
  padding: 10px 15px;
  text-align: left;
  cursor: pointer;
  transition: background 0.3s;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #00ff7f;
  color: #003300;
}

.dropdown-menu .dropdown-item.active {
  background-color: #00cc66;
  color: #ffffff;
}

.bg-blur {
  background: url(../img/bg-blur.png) top center/cover no-repeat;
  margin-top: -50px;
}
.bg-blur .bg-ar {
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  background-color: rgba(1, 1, 1, 0.2);
}

.hr {
  margin-top: 50px;
  width: 100%;
  height: 1px;
  background-color: #fff;
  opacity: 0.3;
}

.header-about {
  padding-top: 80px;
  padding-bottom: 50px;
}
.header-about .container h2 {
  font-weight: bold;
  color: #fff;
  margin-bottom: 25px;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
}
.header-about .container p {
  clip-path: polygon(97% 0, 100% 25%, 100% 100%, 3% 100%, 0% 75%, 0 0);
  background-color: #055131;
  padding: 30px 50px;
  color: #fff;
}

.a-btn {
  padding: 10px 25px;
  border-radius: 99px;
  background-color: #002820;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  border: 1px solid #002820;
  transition: 0.3s all;
}
.a-btn:hover {
  color: #fff;
  border: 1px solid #014b3d;
}

.vip-tariffs {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(0, 31, 26, 0.95) 0%, rgb(0, 31, 26) 100%);
  position: relative;
  overflow: hidden;
}
.vip-tariffs::before {
  content: "VIP";
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-size: 200px;
  font-weight: bold;
  color: rgba(0, 255, 127, 0.05);
  font-family: "Raleway", sans-serif;
  white-space: nowrap;
  pointer-events: none;
}
.vip-tariffs .title {
  text-align: center;
  margin-bottom: 50px;
}
.vip-tariffs .title h2 {
  color: #00ff7f;
  font-size: 45px;
  font-family: "Raleway", sans-serif;
  font-weight: bold;
  margin-bottom: 15px;
}
.vip-tariffs .title p {
  color: #fff;
  font-size: 20px;
  opacity: 0.8;
}
.vip-tariffs .vip-pricing-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}
.vip-tariffs .vip-card {
  background: linear-gradient(135deg, #055131 0%, #073c24 100%);
  border: 2px solid #00ff7f;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.5);
}
.vip-tariffs .vip-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 15px 40px rgba(0, 255, 127, 0.2);
  border-color: #4de09a;
}
.vip-tariffs .vip-card .vip-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #00ff7f;
  color: #001f1a;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.vip-tariffs .vip-card .vip-badge-featured {
  background-color: #00ad65;
  color: #fff;
}
.vip-tariffs .vip-card .vip-icon {
  margin: 20px 0 25px;
}
.vip-tariffs .vip-card .vip-icon i {
  font-size: 50px;
  color: #00ff7f;
}
.vip-tariffs .vip-card h3 {
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  font-family: "Raleway", sans-serif;
  margin-bottom: 20px;
}
.vip-tariffs .vip-card .vip-price {
  color: #4de09a;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 30px;
}
.vip-tariffs .vip-card .vip-features {
  list-style: none;
  padding: 0;
  margin: 0 0 35px;
  text-align: left;
}
.vip-tariffs .vip-card .vip-features li {
  color: #fff;
  font-size: 16px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.vip-tariffs .vip-card .vip-features li i {
  color: #00ff7f;
  font-size: 18px;
  flex-shrink: 0;
}
.vip-tariffs .vip-card .vip-btn {
  display: inline-block;
  width: 100%;
  padding: 15px 30px;
  background-color: #0f4f37;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.vip-tariffs .vip-card .vip-btn:hover {
  background-color: #00ad65;
  border-color: #00ff7f;
  transform: scale(1.05);
  color: #fff;
}
.vip-tariffs .vip-card .vip-btn-featured {
  background-color: #00ad65;
  color: #fff;
}
.vip-tariffs .vip-card .vip-btn-featured:hover {
  background-color: #00ff7f;
  color: #001f1a;
}
.vip-tariffs .vip-card-featured {
  border-color: #00ad65;
  border-width: 3px;
  transform: scale(1.05);
}
.vip-tariffs .vip-card-featured .vip-icon i {
  color: #00ad65;
}
.vip-tariffs .vip-card-featured:hover {
  transform: scale(1.08) translateY(-10px);
}
@media (max-width: 991px) {
  .vip-tariffs .vip-pricing-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .vip-tariffs .vip-card-featured {
    transform: scale(1);
  }
  .vip-tariffs .vip-card-featured:hover {
    transform: translateY(-10px);
  }
}
@media (max-width: 768px) {
  .vip-tariffs {
    padding: 50px 0;
  }
  .vip-tariffs .title h2 {
    font-size: 35px;
  }
  .vip-tariffs .title p {
    font-size: 18px;
  }
  .vip-tariffs .vip-card {
    padding: 30px 20px;
  }
  .vip-tariffs .vip-card h3 {
    font-size: 24px;
  }
  .vip-tariffs .vip-card .vip-icon i {
    font-size: 40px;
  }
}

.fix-difference {
  padding: 80px 0;
  background: #001f1a;
  position: relative;
  overflow: hidden;
}
.fix-difference::before {
  content: "FIX";
  position: absolute;
  left: -100px;
  top: 50px;
  font-size: 300px;
  font-weight: bold;
  color: rgba(255, 255, 0, 0.03);
  font-family: "Raleway", sans-serif;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
.fix-difference .title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}
.fix-difference .title h2 {
  color: #fff;
  font-size: 45px;
  font-family: "Raleway", sans-serif;
  font-weight: bold;
  margin-bottom: 15px;
}
.fix-difference .title p {
  color: #fff;
  font-size: 20px;
  opacity: 0.8;
}
.fix-difference .difference-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}
.fix-difference .difference-card {
  background: linear-gradient(135deg, #055131 0%, #073c24 100%);
  border: 2px solid #165f45;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.5);
}
.fix-difference .difference-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.7);
}
.fix-difference .difference-card .difference-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #03aa64;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}
.fix-difference .difference-card .difference-icon i {
  font-size: 40px;
  color: #001f1a;
}
.fix-difference .difference-card .difference-icon-red {
  background-color: #ff4444;
}
.fix-difference .difference-card .difference-icon-red i {
  color: #fff;
}
.fix-difference .difference-card .difference-icon-grey {
  background-color: #555;
}
.fix-difference .difference-card .difference-icon-grey i {
  color: #fff;
}
.fix-difference .difference-card h3 {
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  font-family: "Raleway", sans-serif;
  margin-bottom: 10px;
}
.fix-difference .difference-card .difference-subtitle {
  color: #03aa64;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
}
.fix-difference .difference-card .difference-subtitle-white {
  color: #fff;
}
.fix-difference .difference-card .difference-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.fix-difference .difference-card .difference-features li {
  color: #fff;
  font-size: 16px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.fix-difference .difference-card .difference-features li i {
  font-size: 20px;
  flex-shrink: 0;
  color: #03aa64;
}
.fix-difference .difference-card .difference-features-red li i {
  color: #ff4444;
}
.fix-difference .difference-card .difference-features-mixed li:nth-child(1) i, .fix-difference .difference-card .difference-features-mixed li:nth-child(2) i {
  color: #03aa64;
}
.fix-difference .difference-card .difference-features-mixed li:nth-child(3) i, .fix-difference .difference-card .difference-features-mixed li:nth-child(4) i {
  color: #ff4444;
}
.fix-difference .difference-card-featured {
  border: 3px solid #03aa64;
  box-shadow: 0px 10px 30px rgba(255, 215, 0, 0.3);
}
.fix-difference .difference-card-featured:hover {
  box-shadow: 0px 15px 40px rgba(255, 215, 0, 0.4);
}
.fix-difference .difference-cta {
  text-align: center;
  position: relative;
  z-index: 1;
}
.fix-difference .difference-btn {
  display: inline-block;
  padding: 18px 40px;
  background-color: #03aa64;
  color: #001f1a;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0px 5px 20px rgba(255, 215, 0, 0.3);
}
.fix-difference .difference-btn i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}
.fix-difference .difference-btn:hover {
  background-color: #ffed4e;
  transform: translateY(-3px);
  box-shadow: 0px 8px 25px rgba(255, 215, 0, 0.5);
  color: #001f1a;
}
.fix-difference .difference-btn:hover i {
  transform: translateX(5px);
}
@media (max-width: 991px) {
  .fix-difference .difference-cards {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .fix-difference {
    padding: 50px 0;
  }
  .fix-difference::before {
    font-size: 200px;
    left: -50px;
  }
  .fix-difference .title h2 {
    font-size: 35px;
  }
  .fix-difference .title p {
    font-size: 18px;
  }
  .fix-difference .difference-card {
    padding: 30px 20px;
  }
  .fix-difference .difference-card h3 {
    font-size: 24px;
  }
  .fix-difference .difference-card .difference-icon {
    width: 60px;
    height: 60px;
  }
  .fix-difference .difference-card .difference-icon i {
    font-size: 30px;
  }
  .fix-difference .difference-btn {
    padding: 15px 30px;
    font-size: 16px;
  }
}

.why-choose-us {
  padding: 80px 0;
  background: #001f1a;
  position: relative;
}
.why-choose-us .title {
  text-align: center;
  margin-bottom: 60px;
}
.why-choose-us .title h2 {
  color: #fff;
  font-size: 45px;
  font-family: "Raleway", sans-serif;
  font-weight: bold;
  margin-bottom: 15px;
}
.why-choose-us .title h2 .highlight {
  color: #03aa64;
}
.why-choose-us .title p {
  color: #fff;
  font-size: 20px;
  opacity: 0.8;
}
.why-choose-us .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.why-choose-us .feature-card {
  background: linear-gradient(135deg, #055131 0%, #073c24 100%);
  border: 2px solid #165f45;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.5);
}
.why-choose-us .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.7);
  border-color: #00ad65;
}
.why-choose-us .feature-card .feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #03aa64 0%, #ffed4e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0px 5px 20px rgba(255, 215, 0, 0.3);
}
.why-choose-us .feature-card .feature-icon i {
  font-size: 35px;
  color: #001f1a;
}
.why-choose-us .feature-card h3 {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  font-family: "Raleway", sans-serif;
  margin-bottom: 15px;
}
.why-choose-us .feature-card p {
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0;
}
.why-choose-us .feature-card-highlighted {
  border: 3px solid #03aa64;
  box-shadow: 0px 10px 30px rgba(255, 215, 0, 0.2);
}
.why-choose-us .feature-card-highlighted:hover {
  box-shadow: 0px 15px 40px rgba(255, 215, 0, 0.4);
  border-color: #ffed4e;
}
@media (max-width: 991px) {
  .why-choose-us .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
@media (max-width: 768px) {
  .why-choose-us {
    padding: 50px 0;
  }
  .why-choose-us .title h2 {
    font-size: 35px;
  }
  .why-choose-us .title p {
    font-size: 18px;
  }
  .why-choose-us .features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .why-choose-us .feature-card {
    padding: 30px 20px;
  }
  .why-choose-us .feature-card h3 {
    font-size: 20px;
  }
  .why-choose-us .feature-card p {
    font-size: 15px;
  }
  .why-choose-us .feature-card .feature-icon {
    width: 60px;
    height: 60px;
  }
  .why-choose-us .feature-card .feature-icon i {
    font-size: 28px;
  }
}

.how-it-works {
  padding: 80px 0;
  background: #001f1a;
  position: relative;
  overflow: hidden;
}
.how-it-works::before {
  content: "PROFIT";
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 300px;
  font-weight: bold;
  color: rgba(255, 215, 0, 0.03);
  font-family: "Raleway", sans-serif;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
.how-it-works .title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.how-it-works .title h2 {
  color: #fff;
  font-size: 45px;
  font-family: "Raleway", sans-serif;
  font-weight: bold;
  margin-bottom: 15px;
}
.how-it-works .title h2 span {
  color: #03aa64;
}
.how-it-works .title p {
  color: #fff;
  font-size: 20px;
  opacity: 0.8;
}
.how-it-works .steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}
.how-it-works .step-card {
  background: linear-gradient(135deg, #055131 0%, #073c24 100%);
  border: 2px solid #165f45;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
.how-it-works .step-card::before {
  content: attr(data-step);
  position: absolute;
  top: -30px;
  right: -30px;
  font-size: 200px;
  font-weight: bold;
  color: rgba(255, 215, 0, 0.05);
  font-family: "Raleway", sans-serif;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}
.how-it-works .step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 15px 40px rgba(255, 215, 0, 0.2);
  border-color: #03aa64;
}
.how-it-works .step-card .step-number {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #03aa64 0%, #ffed4e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  color: #001f1a;
  font-family: "Raleway", sans-serif;
  box-shadow: 0px 5px 15px rgba(255, 215, 0, 0.3);
}
.how-it-works .step-card .step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #03aa64 0%, #ffed4e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0px 5px 20px rgba(255, 215, 0, 0.3);
  position: relative;
  z-index: 1;
}
.how-it-works .step-card .step-icon i {
  font-size: 35px;
  color: #001f1a;
}
.how-it-works .step-card .step-label {
  color: #03aa64;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.how-it-works .step-card h3 {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  font-family: "Raleway", sans-serif;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}
.how-it-works .step-card p {
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .how-it-works .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .how-it-works {
    padding: 50px 0;
  }
  .how-it-works::before {
    font-size: 200px;
    right: -50px;
  }
  .how-it-works .title h2 {
    font-size: 35px;
  }
  .how-it-works .title p {
    font-size: 18px;
  }
  .how-it-works .steps-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .how-it-works .step-card {
    padding: 30px 20px;
  }
  .how-it-works .step-card h3 {
    font-size: 20px;
  }
  .how-it-works .step-card p {
    font-size: 15px;
  }
  .how-it-works .step-card .step-icon {
    width: 60px;
    height: 60px;
  }
  .how-it-works .step-card .step-icon i {
    font-size: 28px;
  }
  .how-it-works .step-card .step-number {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

.secure-payment {
  padding: 80px 0;
  background: #001f1a;
  position: relative;
  overflow: hidden;
}
.secure-payment::before {
  content: "SAFE";
  position: absolute;
  left: -100px;
  bottom: -50px;
  font-size: 300px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.03);
  font-family: "Raleway", sans-serif;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  transform: rotate(-45deg);
}
.secure-payment .title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}
.secure-payment .title h2 {
  color: #03aa64;
  font-size: 45px;
  font-family: "Raleway", sans-serif;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.secure-payment .title p {
  color: #fff;
  font-size: 20px;
  opacity: 0.8;
}
.secure-payment .payment-methods {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.secure-payment .payment-method-card {
  background: linear-gradient(135deg, #055131 0%, #073c24 100%);
  border: 2px solid #03aa64;
  border-radius: 15px;
  padding: 25px 30px;
  text-align: center;
  min-width: 140px;
  transition: all 0.3s ease;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.5);
}
.secure-payment .payment-method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 30px rgba(255, 215, 0, 0.3);
  border-color: #ffed4e;
}
.secure-payment .payment-method-card .payment-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #03aa64 0%, #ffed4e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0px 3px 15px rgba(255, 215, 0, 0.3);
}
.secure-payment .payment-method-card .payment-icon i {
  font-size: 25px;
  color: #001f1a;
}
.secure-payment .payment-method-card p {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}
.secure-payment .payment-info {
  background: linear-gradient(135deg, #055131 0%, #073c24 100%);
  border: 2px solid #165f45;
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.7);
}
.secure-payment .payment-info .payment-info-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #03aa64 0%, #ffed4e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0px 5px 25px rgba(255, 215, 0, 0.4);
}
.secure-payment .payment-info .payment-info-icon i {
  font-size: 50px;
  color: #001f1a;
}
.secure-payment .payment-info h3 {
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  font-family: "Raleway", sans-serif;
  margin-bottom: 20px;
}
.secure-payment .payment-info > p {
  color: #fff;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 35px;
  opacity: 0.9;
}
.secure-payment .payment-info .payment-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.secure-payment .payment-info .payment-btn {
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid transparent;
}
.secure-payment .payment-info .payment-btn i {
  font-size: 20px;
}
.secure-payment .payment-info .payment-btn-primary {
  background: linear-gradient(135deg, #03aa64 0%, #ffed4e 100%);
  color: #001f1a;
  box-shadow: 0px 5px 20px rgba(255, 215, 0, 0.3);
}
.secure-payment .payment-info .payment-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0px 8px 25px rgba(255, 215, 0, 0.5);
  color: #001f1a;
}
.secure-payment .payment-info .payment-btn-secondary {
  background: transparent;
  color: #fff;
  border-color: #03aa64;
}
.secure-payment .payment-info .payment-btn-secondary:hover {
  background: #03aa64;
  color: #001f1a;
  transform: translateY(-3px);
}
.secure-payment .payment-info .payment-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #03aa64;
  font-size: 14px;
}
.secure-payment .payment-info .payment-security i {
  font-size: 18px;
}
@media (max-width: 768px) {
  .secure-payment {
    padding: 50px 0;
  }
  .secure-payment::before {
    font-size: 200px;
    left: -50px;
    bottom: -30px;
  }
  .secure-payment .title h2 {
    font-size: 35px;
  }
  .secure-payment .title p {
    font-size: 18px;
  }
  .secure-payment .payment-methods {
    gap: 15px;
  }
  .secure-payment .payment-method-card {
    min-width: 120px;
    padding: 20px 15px;
  }
  .secure-payment .payment-method-card .payment-icon {
    width: 40px;
    height: 40px;
  }
  .secure-payment .payment-method-card .payment-icon i {
    font-size: 20px;
  }
  .secure-payment .payment-method-card p {
    font-size: 14px;
  }
  .secure-payment .payment-info {
    padding: 40px 25px;
  }
  .secure-payment .payment-info .payment-info-icon {
    width: 80px;
    height: 80px;
  }
  .secure-payment .payment-info .payment-info-icon i {
    font-size: 40px;
  }
  .secure-payment .payment-info h3 {
    font-size: 26px;
  }
  .secure-payment .payment-info > p {
    font-size: 16px;
  }
  .secure-payment .payment-info .payment-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .secure-payment .payment-info .payment-btn {
    width: 100%;
    justify-content: center;
    padding: 15px 30px;
    font-size: 16px;
  }
}

.title {
  margin-bottom: 35px;
}
.title h3 {
  color: #00ad65;
  font-weight: 400;
  font-size: 16px;
}
.title h2 {
  color: #fff;
  font-size: 45px;
  font-family: "Raleway", sans-serif;
  font-weight: bold;
}
.title .a-btn {
  margin-top: 20px;
}

.reviews {
  padding: 70px 0;
}
.reviews .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.reviews .testimonial-item {
  background-color: #333;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reviews .testimonial-item img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s all;
  height: 350px;
  object-fit: cover;
}
.reviews .testimonial-item::before {
  content: "MDS BETS";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  font-size: 42px;
  color: rgba(5, 182, 43, 0.5);
  font-weight: bold;
  pointer-events: none;
  white-space: nowrap;
}
.reviews .gallery-tabs {
  margin-bottom: 20px;
}
.reviews .gallery-tabs .active {
  border: 1px solid #00ad65;
}
.reviews .gallery-tabs button {
  margin: 5px;
  padding: 10px 20px;
}
.reviews .tab-content {
  display: block;
}
.reviews .testimonial-grid {
  display: flex;
  flex-wrap: wrap;
}
.reviews .testimonial-item {
  margin: 5px;
}
.reviews .image-group {
  display: none;
  grid-template-columns: repeat(4, 1fr);
}
.reviews .image-group:first-of-type {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.reviews .toggle-more {
  display: block;
  width: 280px;
  height: 80px;
  border: 0;
  outline: none;
  background-color: #00ad65;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  color: #fff;
  font-size: 20px;
  clip-path: polygon(92% 0, 100% 25%, 100% 100%, 8% 100%, 0% 75%, 0 0);
  text-decoration: none;
  margin: 0 auto;
  margin-top: 35px;
  transition: 0.3s all;
}
.reviews .toggle-more:hover {
  transform: scale(1.1);
}
.reviews .gallery-tabs .a-btn {
  text-transform: uppercase;
}
.reviews .nav-tabs {
  border-bottom: none;
}

.fancybox__content::before {
  content: "MDS BETS";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  font-size: 42px;
  color: rgba(5, 182, 43, 0.5);
  font-weight: bold;
  pointer-events: none;
  white-space: nowrap;
  z-index: 99999;
}

.menu-pay {
  padding: 70px 0;
}
.menu-pay .pricing-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.menu-pay .pricing-card {
  background-color: #055131;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
}
.menu-pay .pricing-card .d-f {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.menu-pay .pricing-card h3 {
  margin: 0;
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 600;
  color: white;
}
.menu-pay .pricing-card .price {
  margin: 10px 0;
  font-size: 24px;
  color: #fff;
  font-weight: 500;
  background-color: #068b76;
  padding: 5px 10px;
  border-radius: 5px;
}
.menu-pay .pricing-card a {
  background-color: #00ad65;
  border: none;
  color: white;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
.menu-pay .pricing-card button:hover {
  background-color: #165f45;
}
.menu-pay .soon-card {
  background-color: #073c24;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  color: #4de09a;
  font-size: 18px;
  font-weight: bold;
  grid-column: span 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-pay .soon-card p {
  margin: 0;
  font-size: 22px;
}
@media (max-width: 768px) {
  .menu-pay .pricing-container {
    grid-template-columns: 1fr;
  }
  .menu-pay .soon-card {
    grid-column: span 1;
  }
}

.menu-pay-tabs {
  padding: 70px 0;
}
.menu-pay-tabs .tabs-container {
  text-align: center;
}
.menu-pay-tabs .tabs-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
.menu-pay-tabs .tabs-buttons button {
  background-color: #073c24;
  color: white;
  border: none;
  padding: 20px 20px;
  font-size: 22px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s;
}
.menu-pay-tabs .tabs-buttons button:hover {
  background-color: #00ad65;
}
.menu-pay-tabs .tabs-buttons button.active {
  background-color: #00ad65;
}
.menu-pay-tabs .tabs-content {
  border-radius: 10px;
  display: none;
}
.menu-pay-tabs .tabs-content p {
  color: #fff;
  margin: 0 auto;
  max-width: 500px;
  margin-bottom: 25px;
}
.menu-pay-tabs .tabs-content.active {
  display: block;
}
.menu-pay-tabs .default-text {
  color: #4de09a;
  font-size: 18px;
}
.menu-pay-tabs .table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 20px 0;
}
.menu-pay-tabs .table-wrapper::-webkit-scrollbar {
  height: 8px;
}
.menu-pay-tabs .table-wrapper::-webkit-scrollbar-track {
  background: #073c24;
  border-radius: 10px;
}
.menu-pay-tabs .table-wrapper::-webkit-scrollbar-thumb {
  background: #00ad65;
  border-radius: 10px;
}
.menu-pay-tabs .table-wrapper::-webkit-scrollbar-thumb:hover {
  background: #00ff7f;
}
.menu-pay-tabs .styled-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #073c24;
  color: white;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
  min-width: 500px;
}
.menu-pay-tabs .styled-table th,
.menu-pay-tabs .styled-table td {
  padding: 15px;
  border: 1px solid #165f45;
}
.menu-pay-tabs .styled-table th {
  background-color: #0f4f37;
  font-weight: bold;
}
.menu-pay-tabs .styled-table tr:last-child td {
  font-weight: bold;
  background-color: #0f4f37;
}
.menu-pay-tabs .styled-table tr:nth-child(odd):not(:last-child) {
  background-color: #0a3328;
}
.menu-pay-tabs .styled-table tr:nth-child(even):not(:last-child) {
  background-color: #073c24;
}
.menu-pay-tabs .styled-table td {
  font-size: 16px;
}

.form-pay {
  padding: 70px 0;
}
.form-pay form {
  width: 100%;
}
.form-pay label {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 15px;
}
.form-pay label span {
  color: red;
  margin-left: 5px;
}
.form-pay input,
.form-pay select,
.form-pay textarea,
.form-pay button {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  background-color: #0f4f37;
  color: white;
  outline: none;
  transition: border 0.3s ease;
}
.form-pay input::-moz-placeholder, .form-pay textarea::-moz-placeholder {
  color: #5faf91;
}
.form-pay input::placeholder,
.form-pay textarea::placeholder {
  color: #5faf91;
}
.form-pay input:focus,
.form-pay select:focus,
.form-pay textarea:focus {
  border: 2px solid #4de09a;
}
.form-pay select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #0f4f37 url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 6"><path fill="white" d="M0 0l5 6 5-6z"/></svg>') no-repeat right 12px center;
  background-size: 12px;
  cursor: pointer;
}
.form-pay button {
  background-color: #4de09a;
  color: black;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.form-pay button:hover {
  background-color: #3cb07f;
}
.form-pay .form-row {
  display: flex;
  gap: 20px;
}
.form-pay .form-row > div {
  flex: 1;
}
.form-pay .form-row select {
  width: calc(100% - 20px);
}
.form-pay .form-row > div:last-child select {
  text-align: left;
}
.form-pay .form-row:last-child {
  gap: 0;
}
.form-pay .d_fg {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}
.form-pay button {
  background-color: #4de09a;
  color: black;
  cursor: pointer;
  font-weight: bold;
}
.form-pay .payment-block {
  display: none;
  margin-bottom: 20px;
}
.form-pay .payment-block .pay_m_block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  color: #fff;
  font-size: 22px;
}
.form-pay .payment-block .pay_m_block div {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: none;
  border-radius: 10px;
  background-color: #0f4f37;
  color: white;
  outline: none;
}
.form-pay .payment-block .pay_m_block div .img-form-det {
  display: flex;
  justify-content: center;
  width: 250px;
  border-radius: 10px;
  margin: 0 auto;
  text-align: center;
}
.form-pay .payment-block .pay_m_block div a {
  color: #fff;
}
.form-pay .payment-block .pay_m_block div li {
  list-style-image: none;
}
.form-pay .payment-block.active {
  display: block;
}
.form-pay .warning {
  color: #ff5c5c;
}
.form-pay .gt_5 {
  color: rgb(255, 0, 0);
  font-size: 26px;
  font-weight: bold;
}

.pay-block {
  padding: 70px 0;
}
.pay-block .container {
  background: url(../img/bg-3.jpg) center center/cover no-repeat;
  text-align: center;
  padding: 50px;
  border-radius: 50px;
}
.pay-block .container .pay-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
}
.pay-block .container .pay-grid a {
  width: 280px;
  height: 80px;
  border: 0;
  outline: none;
  background-color: #00ad65;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  color: #fff;
  font-size: 20px;
  clip-path: polygon(92% 0, 100% 25%, 100% 100%, 8% 100%, 0% 75%, 0 0);
  text-decoration: none;
  transition: 0.3s all;
}
.pay-block .container .pay-grid a img {
  width: 30px;
  margin-left: 5px;
}
.pay-block .container .pay-grid a:hover {
  transform: scale(1.1);
}

.modal-content {
  background-color: #001a14;
  color: #00ff7f;
  border: 2px solid #00ff7f;
  border-radius: 8px;
}

.modal-header {
  border-bottom: 1px solid #00ff7f;
  padding-bottom: 10px;
}

.modal-title {
  color: #00ff7f;
  font-family: "Arial", sans-serif;
  font-size: 20px;
  font-weight: bold;
}

.btn-close {
  background-color: #00ff7f;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  opacity: 1;
  color: #003300;
}

.btn-close:hover {
  background-color: #009966;
  color: #ffffff;
}

.modal-body {
  color: #ffffff;
  font-family: "Arial", sans-serif;
  font-size: 16px;
}
.modal-body img {
  width: 100%;
}

.modal-footer {
  border-top: 1px solid #00ff7f;
}

.modal-footer .btn-secondary {
  background-color: #00ff7f;
  color: #003300;
  border: none;
}

.modal-header {
  border-bottom: 0;
}

.modal-footer .btn-secondary:hover {
  background-color: #009966;
  color: #ffffff;
}

.modal-footer .btn-primary {
  background-color: #00cc66;
  color: #ffffff;
  border: none;
}

.modal-footer .btn-primary:hover {
  background-color: #00a355;
  color: #ffffff;
}

.copy-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-family: "Arial", sans-serif;
  font-size: 14px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999999;
}

.copy-notification.show {
  opacity: 1;
  visibility: visible;
}

.crypto-address-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.crypto-address-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px;
  background-color: rgba(0, 255, 127, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 127, 0.3);
  transition: all 0.3s ease;
}
.crypto-address-item:hover {
  background-color: rgba(0, 255, 127, 0.15);
  border-color: rgba(0, 255, 127, 0.5);
}

.crypto-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #00ff7f;
  font-weight: bold;
  font-size: 18px;
}
.crypto-label i {
  font-size: 24px;
}

.crypto-address {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  word-break: break-all;
}
.crypto-address:hover {
  background-color: rgba(0, 255, 127, 0.2);
  transform: translateX(5px);
}
.crypto-address i {
  color: #00ff7f;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.crypto-address:hover i {
  transform: scale(1.2);
}
.crypto-address span {
  color: #fff;
  font-family: "Courier New", monospace;
  font-size: 14px;
}

.faq {
  padding: 70px 0;
}
.faq .accordion-button {
  background-color: transparent;
  color: #ffffff;
  font-weight: bold;
  border: none;
  padding: 25px;
  font-weight: bold;
}
.faq .accordion-button:hover {
  background-color: transparent;
}
.faq .accordion-button:not(.collapsed) {
  background-color: #006644;
  color: #ffffff;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}
.faq .accordion-button:focus {
  box-shadow: none;
  border-color: #006644;
}
.faq .accordion-item {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #004d40;
}
.faq .accordion-item:hover {
  background-color: transparent;
}
.faq .accordion-body {
  background-color: transparent;
  color: #b0c4c3;
  padding: 20px;
  border-top: 1px solid #004d40;
}
.faq .accordion-header button {
  color: #80e1d4;
}
.faq .accordion-button::after {
  filter: brightness(0.8);
}
.faq .accordion-button::after {
  display: none;
}
.faq .accordion-button::before {
  content: "+";
  color: #ffffff;
  transition: transform 0.3s;
  position: absolute;
  right: 20px;
  font-weight: 200;
  font-size: 35px;
}
.faq .accordion-button:not(.collapsed)::before {
  content: "-";
}

.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.promo-section {
  padding: 100px 0;
  background: #001f1a;
  position: relative;
  overflow: hidden;
}
.promo-section .promo-decor {
  position: absolute;
  color: rgba(255, 255, 255, 0.05);
  font-size: 200px;
  font-weight: bold;
  font-family: "Raleway", sans-serif;
  z-index: 0;
  pointer-events: none;
}
.promo-section .promo-decor.promo-decor-left {
  top: 50px;
  left: -50px;
  transform: rotate(-15deg);
}
.promo-section .promo-decor.promo-decor-right {
  bottom: 50px;
  right: -50px;
  transform: rotate(15deg);
}
.promo-section .container {
  position: relative;
  z-index: 1;
}
.promo-section .promo-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.promo-section .promo-icon {
  margin-bottom: 30px;
}
.promo-section .promo-icon i {
  font-size: 60px;
  color: #ffd700;
}
.promo-section .promo-title {
  font-size: 48px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 25px;
  line-height: 1.2;
}
.promo-section .promo-title .highlight {
  color: #ffa500;
}
.promo-section .promo-subtitle {
  font-size: 20px;
  color: #fff;
  margin-bottom: 40px;
  line-height: 1.6;
}
.promo-section .promo-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}
.promo-section .promo-features .promo-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 16px;
}
.promo-section .promo-features .promo-feature-item .feature-dot {
  width: 8px;
  height: 8px;
  background: #ffa500;
  border-radius: 50%;
  display: inline-block;
}
.promo-section .promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}
.promo-section .promo-btn i {
  font-size: 20px;
}
.promo-section .promo-btn i:first-child {
  font-size: 24px;
}
.promo-section .promo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 165, 0, 0.5);
  color: #fff;
}
.promo-section .promo-stats {
  color: #fff;
  font-size: 16px;
  opacity: 0.8;
}

.footer {
  padding: 100px 0;
  color: #fff;
}
.footer .container {
  display: flex;
  justify-content: space-between;
}
.footer .container .logo-block {
  display: flex;
  align-items: center;
}
.footer .container .logo-block img {
  width: 70px;
}
.footer .container .logo-block p {
  color: #fff;
  margin: 0;
  margin-left: 15px;
}
.footer .container span {
  color: #00ff7f;
  margin-top: 30px;
  display: block;
}
.footer .container h3 {
  color: #00ff7f;
  margin-bottom: 25px;
}
.footer .container ul {
  margin: 0;
  padding: 0;
}
.footer .container ul li {
  list-style-type: none;
}
.footer .container .link {
  font-weight: 500;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 15px;
}
.footer .container .link svg {
  width: 20px;
}
.footer .soc-media {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}
.footer .soc-media .media {
  background-color: #00a355;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
}
.footer .soc-media .media svg {
  width: 20px;
}

.order {
  color: white;
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  margin: 0;
}
.order h1 {
  font-size: 24px;
  color: #4de09a;
  margin-bottom: 20px;
}
.order p {
  font-size: 22px;
  margin-bottom: 20px;
  line-height: 1.5;
}
.order .tr {
  margin: 30px auto;
  width: 300px;
}
.order .triangle::after {
  content: "";
  width: 20px;
  height: 20px;
  background: #4de09a;
  border-radius: 50%;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.order .links {
  margin-top: 20px;
}
.order .links a {
  color: #4de09a;
  text-decoration: none;
  font-size: 18px;
  margin: 10px;
  display: inline-block;
}
.order .links a:hover {
  text-decoration: underline;
}
.order .cta-link {
  margin-top: 30px;
  font-size: 18px;
  color: #4de09a;
  text-decoration: none;
  display: inline-block;
}
.order .cta-link:hover {
  text-decoration: underline;
}
.order .pay-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
}
.order .pay-grid a {
  width: 280px;
  height: 80px;
  border: 0;
  outline: none;
  background-color: #00ad65;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  color: #fff;
  font-size: 20px;
  clip-path: polygon(92% 0, 100% 25%, 100% 100%, 8% 100%, 0% 75%, 0 0);
  text-decoration: none;
  transition: 0.3s all;
}
.order .pay-grid a img {
  width: 30px;
  margin-left: 5px;
}
.order .pay-grid a:hover {
  transform: scale(1.1);
}
.order .a-link {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
}

@media (max-width: 991px) {
  .header .header-top .container .menu {
    display: none;
  }
  .header .header-top .container {
    justify-content: center;
  }
  .header .header-content .container {
    flex-direction: column;
  }
  .header .header-content .container .text {
    width: 100%;
    padding: 0;
    padding-top: 30px;
  }
  .header .header-content .container .img {
    width: 100%;
  }
  .reviews .image-group:first-of-type {
    grid-template-columns: repeat(2, 1fr);
  }
  .pay .container .service-block {
    flex-direction: column;
  }
  .pay .container .service-block .nav-tabs,
  .pay .container .service-block .tab-content {
    width: 100%;
  }
  .header-about,
  .reviews,
  .pay,
  .pay-block,
  .faq,
  .footer {
    padding: 50px 0;
  }
}
@media (max-width: 768px) {
  .footer .container {
    flex-direction: column;
    gap: 30px;
  }
  .header .header-content .container .text {
    text-align: center;
    padding-top: 10px;
  }
  .header .header-content .container .text h1 {
    font-size: 35px;
    line-height: 40px;
  }
  .header .header-content .container .text p {
    font-size: 18px;
  }
  .header .header-content .container .text .btn-gl {
    margin: 0 auto;
  }
  .header-about .container p {
    padding: 20px;
  }
  .header-about,
  .reviews,
  .pay,
  .pay-block,
  .faq {
    padding: 35px 0;
  }
  .title h2 {
    font-size: 40px;
  }
  .reviews .testimonial-item::before {
    font-size: 35px;
  }
  .pay .container .service-block .nav-tabs .nav-link {
    padding: 15px;
    font-size: 18px;
  }
  .pay .container .service-block .tab-content .items .item p {
    display: none;
  }
  .pay .container .service-block .tab-content .items .item h2 {
    width: auto;
  }
  .pay .container .service-block .tab-content .items .item a {
    width: auto;
  }
  .pay-block .container .pay-grid {
    flex-direction: column;
  }
  .menu-pay-tabs .tabs-buttons button {
    font-size: 16px;
    padding: 10px;
  }
  .table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 15px -15px;
    padding: 0 15px;
  }
  .table-wrapper::-webkit-scrollbar {
    height: 6px;
  }
  .styled-table {
    min-width: 600px;
    font-size: 14px;
  }
  .styled-table th,
  .styled-table td {
    padding: 12px 8px;
    white-space: nowrap;
  }
  .form-pay .d_fg {
    grid-template-columns: repeat(1, 1fr);
  }
  .form-pay .payment-block .pay_m_block {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    font-size: 20px;
  }
  .order .pay-grid {
    flex-direction: column;
  }
  .promo-section {
    padding: 60px 0;
  }
  .promo-section .promo-decor {
    font-size: 120px;
  }
  .promo-section .promo-decor.promo-decor-left {
    top: 20px;
    left: -30px;
  }
  .promo-section .promo-decor.promo-decor-right {
    bottom: 20px;
    right: -30px;
  }
  .promo-section .promo-icon i {
    font-size: 45px;
  }
  .promo-section .promo-title {
    font-size: 32px;
    padding: 0 20px;
  }
  .promo-section .promo-subtitle {
    font-size: 18px;
    padding: 0 20px;
  }
  .promo-section .promo-features {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 0 20px;
  }
  .promo-section .promo-features .promo-feature-item {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    font-size: 14px;
    padding: 10px 20px;
  }
  .promo-section .promo-btn {
    padding: 15px 30px;
    font-size: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .promo-section .promo-stats {
    font-size: 14px;
    padding: 0 20px;
  }
}/*# sourceMappingURL=style.css.map */