:root {
  --body-color: #000000;
  --header-color: #121212;
  --dark-gray: #343746;
  --white-color: #ffffff;
  --neutral-color: #cbcbcb;
  --primary-color: #fcae41;
  --primary-dark-color: #c5723e;
  --primary-gradient-start: #fd1616;
  --primary-gradient-end: #fda90e;
  --primary-gradient: linear-gradient(101.72deg,
      var(--primary-gradient-start) 0%,
      var(--primary-gradient-end) 105.92%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: var(--body-color);
  font-size: 15px;
  position: relative;
}

body::-webkit-scrollbar {
  width: 0;
}

button,
input {
  border: none;
  outline: none;
  background-color: transparent;
}

a {
  text-decoration: none;
  color: inherit;
}

section {
  padding-block: 70px;
}

.sticky-bottom {
  z-index: 800;
}

.mobile-block {
  display: none;
}

.btn-primary-gradient {
  position: relative;
  background-color: transparent;
  isolation: isolate;
  transition: 0.4s ease;
  overflow: hidden;
  color: var(--white-color);
  border: none;
  outline: none;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 52px;
  border-radius: 5vmax;
  cursor: pointer;
}

.btn-primary-gradient::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  z-index: -1;
  background: var(--primary-gradient);
  background-size: 100% 100%;
  transition: 0.4s ease;
}

.btn-primary-gradient:hover {
  opacity: 0.9;
}

.btn-primary-gradient:hover::before {
  transform: scaleX(1.5);
}

.btn-border-primary {
  color: var(--white-color);
  border: 1px solid transparent;
  background: linear-gradient(var(--body-color), var(--body-color)) padding-box, linear-gradient(101.72deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 105.92%) border-box;
  outline: none;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 52px;
  border-radius: 5vmax;
  cursor: pointer;
  transition: 0.4s ease-in-out;
}

.btn-border-primary:hover {
  opacity: 0.9;
  background: linear-gradient(101.72deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 105.92%);
}

.bottom-gradient {
  position: relative;
}

.bottom-gradient::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  width: 40%;
  height: 2px;
  background: linear-gradient(90deg, #f96e2d 0%, #f90529 100%);
  margin: auto;
}

.border-gradient {
  border: 3px solid transparent !important;
  background: linear-gradient(var(--body-color), var(--body-color)) padding-box, linear-gradient(180deg, #f95d2c 0%, #f91129 100%) border-box;
  border: 3.89px solid;
}

.section-title {
  font-weight: 600;
  font-size: 54px;
  line-height: 86.99px;
  letter-spacing: 0%;
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 14px;
}

.section-title+p.section-subtitle {
  font-weight: 500;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: var(--neutral-color);
}

.block-margin-top {
  margin-top: 70px;
}

header {
  background-color: var(--header-color);
  padding: 40px 0;
  transition: all 0.3s ease;
  position: sticky;
  top: 0;
}

header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

header .logo {
  display: inline-block;
  max-width: 100px;
  width: 100%;
  flex-shrink: 0;
}

header .header-search {
  max-width: 580px;
  width: 100%;
  padding: 5px;
  background-color: var(--dark-gray);
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 5vmax;
  box-shadow: 0px 16px 32px -8px rgba(12, 12, 13, 0.4);
  cursor: pointer;
  overflow: hidden;
}

header input {
  background-color: transparent;
  border: none;
  outline: none;
  color: var(--white-color);
  font-size: 15px;
  line-height: 100%;
  width: 100%;
  padding: 16px;
  pointer-events: none;
  caret-color: var(--primary-dark-color);
}

header input::-moz-placeholder {
  color: var(--white-color);
}

header input::-moz-placeholder,
header input::placeholder {
  color: var(--white-color);
}

header .typetext {
  color: var(--white-color);
  font-size: 15px;
  margin: 0;
  line-height: 100%;
  width: 100%;
  padding: 16px;
  pointer-events: none;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
}

header .typetext::after {
  content: "|";
  margin-left: 2px;
  animation: blink 1s infinite;
}

header .nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

header .profile-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  font-weight: 600;
  color: var(--body-color);
  cursor: pointer;
  background-color: var(--white-color);
}

header .menu-icon {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  cursor: pointer;
  padding: 10px;
}

header .menu-icon span {
  height: 2px;
  width: 34px;
  background: var(--white-color);
  border-radius: 2px;
  transition: all 0.35s ease;
  transform-origin: center;
}

header .menu-icon.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

header .menu-icon.active span:nth-child(2) {
  opacity: 0;
}

header .menu-icon.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

header.active {
  box-shadow: 0px 16px 32px -8px rgba(12, 12, 13, 0.4);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  width: 100%;
  left: 0;
  z-index: 900;
  transition: all 0.3s ease;
}

@keyframes blink {

  0%,
  50%,
  100% {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

.sidemeu {
  position: fixed;
  top: 0;
  right: -100%;
  max-width: 500px;
  background-color: var(--body-color);
  width: 100%;
  z-index: 1000;
  overflow-y: scroll;
  height: 100vh;
  transition: 0.4s ease-in-out;
}

.sidemeu .sidemenu-block {
  padding: 20px;
  border-bottom: 2px solid var(--dark-gray);
}

.sidemeu .logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.sidemeu .sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--body-color);
}

.sidemeu .sidemenu-close {
  background: #f9572c;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.sidemeu .sidemenu-close:hover {
  scale: 1.1;
}

.sidemeu .menu-main-title {
  color: var(--neutral-color);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 1px;
}

.sidemeu .menu-title {
  color: #fb933c;
  font-size: 14px;
  margin-bottom: 10px;
}

.sidemeu .menu-gray-box {
  padding: 16px;
  border-radius: 10px;
  background-color: var(--dark-gray);
  display: flex;
  align-items: start;
  justify-content: space-between;
  color: var(--white-color);
}

.sidemeu .menu-gray-box h5 {
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  margin-bottom: 8px;
}

.sidemeu .menu-gray-box p {
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  margin-bottom: 8px;
  color: #cccccc;
  font-weight: 500;
}

.sidemeu .menu-gray-box.bottom-gradient::after {
  bottom: 1px;
  height: 1px;
}

.sidemeu .menu-gray-box>div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sidemeu i {
  color: var(--white-color);
}

.sidemeu ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidemeu ul a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white-color);
  padding: 8px 12px;
  transition: 0.1s ease-in-out;
  border-radius: 5px;
}

.sidemeu ul a:hover {
  background-color: #343746;
}

.sidemeu ul span {
  font-weight: 600;
  font-size: 14px;
}

.sidemeu ul svg {
  height: 20px;
  width: 20px;
}

.sidemeu ul div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sidemeu.active {
  right: 0;
}

.sidemeu::-webkit-scrollbar {
  width: 0;
}

main {
  padding: 80px 0;
  min-height: calc(100vh - 160px);
}

.hero-section {
  text-align: center;
  padding-block: 0;
}

.hero-banner-block {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 90px;
}

.hero-banner-block .banner-block {
  max-width: 540px;
  width: 100%;
  margin: 20px 0;
}

.hero-banner-block h2 {
  font-weight: 700;
  font-size: 52.11px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--primary-color);
}

.hero-banner-block h4 {
  font-weight: 500;
  font-size: 36.48px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--neutral-color);
}

.hero-banner-block> :nth-child(2) {
  border-inline: 2px solid var(--dark-gray);
}

.hero-search-section {
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
}

.hero-search-section h1 {
  font-weight: 700;
  font-size: 41.34px;
  line-height: 52.12px;
  text-align: center;
  color: var(--neutral-color);
  margin-bottom: 36px;
}

.hero-search-section input {
  max-width: 670px;
  width: 100%;
  background-color: var(--white-color);
  padding: 22px 24px;
  border-radius: 5vmax;
  font-size: 20px;
}

.hero-search-section .btn-primary-gradient {
  max-width: 670px;
  width: 100%;
  font-size: 23px;
  margin-top: 14px;
}

.hero-slider-section {
  max-width: 1160px;
  width: 100%;
  margin: 24px auto 24px auto;
  position: relative;
  padding: 28px 35px;
}

.hero-slider-section .sticky-left {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  color: var(--neutral-color);
  cursor: pointer;
  z-index: 10;
  background-color: var(--body-color);
}

.hero-slider-section .infinite-slider {
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.hero-slider-section .infinite-slider .slider-track {
  display: flex;
  gap: 60px;
  animation: scroll-left 10s linear infinite;
}

.hero-slider-section .infinite-slider .item {
  font-size: 30px;
  font-weight: 500;
  display: flex;
  color: var(--neutral-color);
  align-items: center;
}

.hero-slider-section .infinite-slider .item span {
  color: #b99e96;
  margin-left: 3px;
}

.why-choose-us-section .section-wrapper {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
}

.why-choose-us-section .video-block {
  border: 2px solid transparent;
  background: linear-gradient(#343746, #343746) padding-box, linear-gradient(180deg, #343746 0%, #8c8f9d 50.91%, #808080 100%) border-box;
  border-radius: 58px;
  width: 100%;
  min-height: 500px;
  position: relative;
}

.why-choose-us-section .video-overlay {
  max-width: 476px;
  width: 100%;
  position: absolute;
  inset: 0;
  margin: auto;
  height: -moz-fit-content;
  height: fit-content;
}

.why-choose-us-section .video-overlay:hover .play-btn {
  transform: scale(1.1);
}

.why-choose-us-section .video-overlay:hover h4,
.why-choose-us-section .video-overlay:hover p {
  transform: scale(1.02);
}

.why-choose-us-section .play-btn {
  background: var(--primary-dark-color);
  width: 86px;
  height: 86px;
  border-radius: 50%;
  margin: auto;
  margin-bottom: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 1;
  isolation: isolate;
  transition: all 0.3s ease;
}

.why-choose-us-section .play-btn svg {
  margin-left: 5px;
}

.why-choose-us-section .play-btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  top: 0;
  left: 0;
  transform: scale(0);
  opacity: 1;
  animation: ripple 1.6s infinite ease-out;
  z-index: -1;
}

.why-choose-us-section h4 {
  font-weight: 600;
  font-size: 44px;
  line-height: 76px;
  text-align: center;
  color: var(--neutral-color);
  margin-bottom: 14px;
  transition: all 0.4s ease;
}

.why-choose-us-section p {
  font-weight: 500;
  font-size: 30px;
  line-height: 100%;
  text-align: center;
  color: var(--neutral-color);
  transition: all 0.4s ease;
}

.join-and-win-section .share-slider .item {
  width: 100%;
}

.join-and-win-section .share-slider .item:hover img {
  transform: scale(1.05);
}

.join-and-win-section .share-slider .slider-image {
  width: 100%;
  overflow: hidden;
  max-height: 316px;
}

.join-and-win-section .share-slider img {
  width: 100%;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  transition: all 0.3s ease;
}

.join-and-win-section .content-block {
  padding: 24px 10px;
  text-align: center;
}

.join-and-win-section .content-block h4 {
  font-weight: 500;
  font-size: 26.37px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--white-color);
  margin-bottom: 20px;
}

.join-and-win-section .content-block a {
  font-weight: 500;
  font-style: Medium;
  font-size: 21.1px;
  line-height: 100%;
  letter-spacing: 0%;
  display: inline-block;
  color: var(--white-color);
  padding: 10px 80px;
  background: #343746;
  border-radius: 5vmax;
  transition: all 0.3s ease;
}

.join-and-win-section .content-block a:hover {
  background: var(--white-color);
  color: var(--body-color);
}

.features-section {
  position: relative;
}

.features-section .section-wrapper {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.features-section .pattern {
  position: absolute;
  top: -40%;
  right: 0;
  z-index: 0;
  pointer-events: none;
}

.features-section .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}

.features-section .features-grid .feature-item {
  padding: 20px 40px;
  text-align: center;
  border-right: 2px solid rgba(255, 255, 255, 0.2);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.features-section .features-grid .feature-item .icon {
  width: 40px;
  height: 40px;
}

.features-section .features-grid .feature-item h4 {
  color: var(--neutral-color);
  font-size: 20px;
  font-weight: 600;
}

.features-section .features-grid .feature-item p {
  color: var(--white-color);
  font-size: 15px;
}

.features-section .features-grid .feature-item:nth-child(3n) {
  border-right: none;
}

.features-section .features-grid .feature-item:nth-last-child(-n+3) {
  border-bottom: none;
}

.find-it-section .find-it-block {
  background-color: var(--dark-gray);
  border-radius: 20px;
  padding: 45px 55px;
  color: var(--white-color);
}

.find-it-section .step-number {
  background: #a0a7ca;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 23.85px;
  line-height: 100%;
  border: 10px solid #2d2f3b;
  margin: auto;
  position: absolute;
  top: -65px;
  left: 50%;
  transform: translateX(-50%);
}

.find-it-section .find-it-item {
  position: relative;
  width: 100%;
  margin-top: 60px;
  background: #2d2f3b;
  border-radius: 15px;
  padding: 48px 23px;
  text-align: center;
}

.find-it-section h4 {
  font-weight: 600;
  font-size: 23.85px;
  line-height: 100%;
  text-align: center;
  margin-bottom: 8px;
  color: var(--neutral-color);
}

.find-it-section p {
  font-weight: 500;
  font-size: 14.91px;
  line-height: 26px;
  letter-spacing: 0%;
  margin: 0;
  color: var(--neutral-color);
}

.pricing-section .section-wrapper {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.pricing-section .pricing-item {
  width: 100%;
  border: 2px solid var(--dark-gray);
  border-radius: 15px;
  padding: 16px 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.pricing-section .pricing-item:hover {
  transform: translateY(-5px);
}

.pricing-section .price-section-title {
  font-weight: 700;
  font-style: Bold;
  font-size: 22.74px;
  line-height: 100%;
  text-align: center;
  color: var(--neutral-color);
  margin-bottom: 8px;
}

.pricing-section p {
  font-weight: 500;
  font-size: 13.26px;
  line-height: 100%;
  text-align: center;
  color: var(--neutral-color);
  margin-bottom: 8px;
}

.pricing-section .gray-box {
  background-color: #2d2f3b;
  margin-inline: 0;
  padding: 15px;
  border-radius: 8px;
  margin-block: 16px;
}

.pricing-section .discount-value {
  font-weight: 500;
  font-size: 18.95px;
  line-height: 100%;
  color: var(--neutral-color);
  text-align: left;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}

.pricing-section .discount-value::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--neutral-color);
  transform: translateY(-50%);
}

.pricing-section .price-value {
  font-weight: 600;
  font-size: 22.74px;
  line-height: 100%;
  text-align: right;
  color: var(--neutral-color);
}

.pricing-section ul {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-block: 16px;
  color: #e1e1e1;
  font-weight: 300;
  font-size: 12.32px;
  line-height: 150%;
}

.our-works-section .section-wrapper {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
}

.our-works-section .positon-relative {
  position: relative;
}

.our-works-section .item {
  border-radius: 25px;
  overflow: hidden;
}

.our-works-section .wrok-image {
  max-height: 260px;
  width: 100%;
  overflow: hidden;
  border-radius: 25px 25px 0 0;
}

.our-works-section img {
  width: 100%;
}

.our-works-section .work-content {
  color: var(--white-color);
  background-color: #1e1e1e;
  padding: 30px 20px;
  text-align: center;
  border-radius: 0 0 25px 25px;
}

.our-works-section h4 {
  font-weight: 600;
  font-size: 20.73px;
  line-height: 100%;
  text-align: center;
  margin-bottom: 16px;
}

.our-works-section .btn-white {
  font-weight: 500;
  font-size: 20.73px;
  line-height: 100%;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5vmax;
  background-color: var(--dark-gray);
  transition: all 0.3s ease;
}

.our-works-section .btn-white:hover {
  background-color: var(--white-color);
  color: var(--body-color);
}

.custom-next,
.custom-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-dark-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
}

.custom-next i {
  font-size: 14px;
  color: #fff;
}

.custom-prev {
  left: -60px;
}

.custom-prev i {
  font-size: 14px;
  color: #fff;
}

.custom-next {
  right: -60px;
}

.custom-next:hover {
  background: rgba(255, 255, 255, 0.25);
}

.custom-prev:hover {
  background: rgba(255, 255, 255, 0.25);
}

.footer {
  width: 100%;
  background-color: var(--dark-gray);
  padding-block: 40px;
  color: var(--white-color);
}

.footer .footer-logo {
  max-width: 105px;
  width: 100%;
  margin-bottom: 40px;
  margin-inline: auto;
}

.footer .footer-box-wrapper {
  margin-bottom: 40px;
}

.footer .footer-box {
  background-color: #2d2f3b;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer .footer-box h5 {
  font-weight: 600;
  font-size: 15.95px;
  line-height: 100%;
  margin: 0;
  margin-bottom: 8px;
}

.footer .footer-box p {
  font-weight: 500;
  font-size: 15.95px;
  line-height: 100%;
  color: var(--neutral-color);
  margin: 0;
}

.footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.footer .footer-links a {
  font-weight: 500;
  font-size: 15.95px;
  line-height: 100%;
  color: var(--neutral-color);
  transition: all 0.3s ease;
}

.footer .footer-links a:hover {
  color: var(--primary-color);
}

.footer .footer-social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.footer .footer-social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #343746;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b6b6b6;
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer .footer-social-links a:hover {
  background-color: var(--primary-dark-color);
}

.footer .footer-content {
  color: #b6b6b6;
}

.modal-video {
  width: 800px;
  aspect-ratio: 3/2;
  margin: auto;
}

.floating-search,
.floating-champ {
  position: fixed;
  bottom: 60px;
  right: 40px;
  background: linear-gradient(180deg, #fca640 0%, #f90529 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  width: 60px;
  height: 60px;
  cursor: pointer;
  font-size: 18px;
  z-index: 100;
  transition: 0.4s ease-in-out;
}

.floating-search:hover,
.floating-champ:hover {
  scale: 1.1;
}

.floating-search::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  z-index: 2;
  inset: -5px;
  border: 1px solid rgba(255, 255, 255, 0.5019607843);
  margin: auto;
  pointer-events: none;
}

.floating-champ {
  bottom: 150px;
  right: 40px;
  background: linear-gradient(180deg, rgba(252, 166, 64, 0.1) 0%, rgba(249, 5, 41, 0.1) 100%);
}

.floating-champ::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  z-index: 2;
  inset: -5px;
  border: 1px solid rgba(255, 255, 255, 0.5019607843);
  margin: auto;
  pointer-events: none;
}

.timer-section {
  border-block: 1px solid #343748;
}

.timer-section .timer-title {
  color: #b99e96;
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
  margin: 0;
}

.timer-section span {
  font-weight: 600;
  font-size: 36px;
  line-height: 24px;
  color: var(--white-color);
  display: inline-block;
}

.timer-section span:nth-child(odd) {
  padding: 10px;
  border: 1px solid #343748;
  border-radius: 10px;
}

.timer-section h5 {
  color: var(--white-color);
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 600;
}

.semi-title {
  font-size: 32px;
  line-height: 100%;
  font-weight: 400;
  color: var(--neutral-color);
}

.semi-title span {
  color: var(--white-color);
  font-weight: 600;
}

.popular-plan .popular-block {
  display: flex;
  gap: 20px;
  background-color: var(--dark-gray);
  border-radius: 20px;
  margin-block: 40px;
  padding: 40px;
  flex-direction: column;
}

.popular-plan .popular-check {
  background: linear-gradient(0deg, #202021, #202021), linear-gradient(0deg, #000000, #000000);
  flex: 1;
  border: 1px solid #3d3d3d;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  color: var(--white-color);
  cursor: pointer;
  gap: 20px;
}

.popular-plan .popular-check .check-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3019607843);
  cursor: pointer;
}

.popular-plan .popular-check input:checked+.check-box {
  background: #f9572c;
  border-color: #f9572c;
}

.popular-plan .popular-check input:checked+.check-box::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.75 4.75L4.25 8.25L11.25 0.75' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.popular-plan .check-wrapper {
  display: inline-block;
  position: relative;
}

.popular-plan .check-wrapper input {
  display: none;
}

.popular-plan .content {
  width: 100%;
}

.popular-plan .content h4 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  color: #b99e96;
}

.popular-plan .content .price {
  display: flex;
  gap: 8px;
  align-items: center;
}

.popular-plan .content span {
  font-size: 16px;
  font-weight: 300;
}

.popular-plan .content p {
  color: #ffffff;
  font-size: 18px;
  margin: 0;
  font-weight: 600;
}

.popular-plan .content p.line-through {
  position: relative;
  color: var(--neutral-color);
  font-weight: normal;
}

.popular-plan .content p.line-through::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0px;
  width: 100%;
  height: 2px;
  background-color: var(--neutral-color);
  transform: translateY(-50%);
}

.popular-plan .content svg {
  margin-left: auto;
}

.popular-plan .check-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3019607843);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.popular-plan .content>div {
  display: flex;
  justify-content: space-between;
}

.popular-plan .popular-check:has(input:checked) {
  border-color: #f9572c;
  box-shadow: 0 0 0 1px #f9572c;
}

.popular-plan .coupon {
  background-color: #b99e96;
  padding: 40px;
  border-radius: 20px;
  position: relative;
}

.popular-plan .coupon h4 {
  font-weight: 700;
  text-align: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.popular-plan .coupon::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--body-color);
  border-radius: 50%;
}

.popular-plan .coupon::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--body-color);
  border-radius: 50%;
  right: -20px;
}

.popular-plan .coupon::before {
  left: -20px;
}

.popular-plan .coupon-box {
  border: 2px solid #a20101;
  width: 80%;
  border-radius: 5vmax;
  margin: auto;
  background-color: rgba(255, 255, 255, 0.5019607843);
  padding: 10px 10px 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.popular-plan .coupon-box input {
  font-size: 22px;
  font-weight: 700;
  color: #a20101;
  letter-spacing: 1px;
  width: 100%;
}

.popular-plan .coupon-box input::-moz-placeholder {
  font-weight: 500;
}

.popular-plan .coupon-box input::-moz-placeholder,
.popular-plan .coupon-box input::placeholder {
  font-weight: 500;
}

.features-swiper {
  margin-top: 80px;
}

.features-swiper h4 {
  font-weight: 700;
  font-size: 28px;
  color: #af6d45;
  margin-bottom: 8px;
}

.features-swiper p {
  margin: 0;
  font-size: 16px;
}

.features-swiper .swiper-slide.item {
  color: var(--neutral-color);
  text-align: center;
  margin-bottom: 80px;
}

.features-swiper .swiper-slide.item:nth-child(odd) {
  border-inline: 1px solid #6b6b6b;
}

.features-swiper .swiper-pagination-bullet {
  opacity: 1;
  border: 1px solid #4c4c4c;
  bottom: -50px;
  width: 14px;
  height: 14px;
  transition: 0.4s ease-in-out;
}

.features-swiper .swiper-pagination-bullet:hover {
  background-color: #4c4c4c;
}

.features-swiper .swiper-pagination-bullet-active {
  background: #ff7a00 !important;
}

.website-name-section h2 {
  margin-bottom: 40px;
}

.website-name-section .web-name {
  background-color: #202021;
  padding: 20px;
  position: relative;
  margin-bottom: 20px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.website-name-section .web-name p {
  color: var(--white-color);
  font-size: 20px;
  font-weight: 400;
}

.website-name-section .web-name span {
  position: absolute;
  bottom: 0;
  right: 0;
  color: var(--body-color);
  padding: 4px 20px;
  border-radius: 6px;
  background-color: #b99e96;
  font-size: 15px;
}

.website-name-section .web-name:hover {
  background-color: #363636;
  cursor: pointer;
}

section.pay-design {
  padding: 40px 0;
  background-color: #121318;
  border-top: 1px solid #343748;
}

section.pay-design h4 {
  color: #b99e96;
  font-weight: 500;
  font-size: 28px;
  margin-bottom: 0;
}

section.pay-design p {
  color: #b99e96;
  font-weight: 500;
  font-size: 28px;
  margin-bottom: 0;
  color: var(--white-color);
  margin-bottom: 0;
}

.common-modal-box {
  max-width: 600px;
  width: 100%;
  border: 1px solid #9f5542;
  border-radius: 20px;
  margin: 0 20px;
  position: relative;
}

.common-modal-box .modal-header {
  padding: 20px;
  display: block !important;
}

.common-modal-box h4 {
  color: var(--white-color);
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin: 0;
}

.common-modal-box .model-subtitle {
  color: var(--neutral-color);
  text-align: center;
  margin: 0;
  font-size: 16px;
}

.common-modal-box .common-inner-box {
  padding: 36px 16px;
  border-top: 1px solid #9f5542;
  border-radius: 20px;
}

.common-modal-box .common-inner-box button.btn-primary-gradient {
  margin-bottom: 16px;
}

.common-modal-box .common-inner-box p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

.input-group-box {
  width: 100%;
  margin-bottom: 24px;
}

.input-group-box .textarea {
  background-color: transparent;
  border: 1px solid #343746;
  padding: 6px;
  border-radius: 10px;
  font-size: 15px;
  width: 100%;
  min-height: 80px;
  outline: none;
  color: var(--neutral-color);
}

.input-group-box .upload-box {
  width: 100%;
  padding: 28px 20px;
  border: 1px solid #343746;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
}

.input-group-box .upload-box .upload-logo {
  width: 35px;
  height: 35px;
  margin-bottom: 10px;
  margin: auto;
}

.input-group-box label,
.input-group-box .label {
  display: block;
  font-size: 14px;
  color: var(--neutral-color);
  margin-bottom: 10px;
}

.input-group-box input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 1px solid #343746;
  padding: 8px 12px;
  border-radius: 10px;
  width: 100%;
  color: var(--neutral-color);
  font-weight: 500;
}

.input-group-box input[type=number] {
  -moz-appearance: textfield;
}

.input-group-box input[type=number]::-webkit-inner-spin-button,
.input-group-box input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input-group-box .select2-container,
.input-group-box .select2-selection {
  width: 100% !important;
}

.input-group-box .select2-container--default .select2-selection--single {
  background-color: transparent;
  border: 1px solid #343746;
  padding: 6px 12px;
  border-radius: 10px;
  width: 100%;
  color: var(--neutral-color);
  font-weight: 500;
  height: auto !important;
}

.input-group-box .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--neutral-color);
  line-height: 28px;
}

.input-group-box .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 4px;
}

.input-group-box .input-box {
  position: relative;
}

.input-group-box .input-box .clear {
  padding: 10px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5019607843);
}

.input-group-box .input-box .clear:hover {
  opacity: 0.9;
}

.gray-box {
  background-color: #343746;
  padding: 16px 20px;
  border-radius: 10px;
}

.gray-box p {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 100%;
  margin-bottom: 20px;
  color: var(--neutral-color);
}

.check-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 24px;
}

.check-block span {
  font-weight: 500;
  font-size: 14px;
  color: var(--neutral-color);
  line-height: 100%;
  letter-spacing: 0%;
  font-weight: 500;
  font-size: 14px;
  color: var(--neutral-color);
  line-height: 100%;
}

.check-wrap {
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
}

.check-box {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3019607843);
}

.radio:checked+.check-box {
  border-color: #f9572c;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.75 4.75L4.25 8.25L11.25 0.75' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 15px;
  background-repeat: no-repeat;
  background-color: #f9572c;
  background-position: center;
  cursor: pointer;
}

.info-box {
  background: #c7ced4;
  border: 1px solid #c7ced4;
  border-radius: 5px;
  padding: 16px;
  font-size: 14px;
}

.select2-dropdown {
  background-color: #161515 !important;
  border: 1px solid #343746 !important;
  border-radius: 10px;
  color: var(--white-color);
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #fcae41;
  color: white;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar {
  width: 0;
}

.select2-container--default .select2-results__group {
  font-weight: 600;
}

.select2-container--default .select2-results__option--selected {
  background-color: #1a1a1a;
}

.input-section {
  width: 100%;
  border: 2px solid #343746;
  border-radius: 10px;
  margin-block: 20px;
}

.input-section .accordion-button {
  background-color: transparent !important;
  box-shadow: none !important;
  padding: 10px 16px !important;
  color: var(--neutral-color) !important;
}

.input-section .accordion-button::after {
  background-image: url('data:image/svg+xml,<svg width="13" height="8" viewBox="0 0 13 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M7.071 0.29277L12.728 5.94977L11.314 7.36377L6.364 2.41377L1.414 7.36377L-6.18079e-08 5.94977L5.657 0.29277C5.84453 0.105299 6.09884 -1.69559e-05 6.364 -1.69675e-05C6.62916 -1.69791e-05 6.88347 0.105299 7.071 0.29277Z" fill="white" fill-opacity="0.5"/></svg>') !important;
  background-size: 15px;
  background-position: center;
}

.input-section .accordion-body {
  border-top: 1px solid #343746 !important;
  padding: 10px 16px !important;
}

.input-section .accordion-body .delete-separated-block {
  position: absolute;
  top: 5px;
  right: 5px;
  color: rgb(250, 110, 110);
  width: 30px;
  height: 30px;
  margin-left: auto;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.input-section .accordion-body .delete-separated-block:hover {
  background-color: rgba(250, 174, 174, 0.2);
}

.input-section .accordion-body .button-block {
  text-align: center;
  padding: 10px;
  color: var(--neutral-color);
  cursor: pointer;
}

.input-section .accordion-body .button-block:hover {
  background-color: #2d2f3b;
}

.input-section .accordion-body.separation {
  padding: 0 !important;
}

.input-section .accordion-body.separation .separated-input-block {
  position: relative;
  padding: 10px 16px !important;
  border-bottom: 2px solid #343746;
}

.input-section .accordion-body.separation .separated-input-block .input-group-box:nth-last-child(1) {
  margin-bottom: 0 !important;
}

.input-section .accordion-body.separation .separated-input-block:nth-child(odd) {
  background-color: #1a1a1a;
}

.input-section .accordion-body.separation .separated-input-block:last-child {
  border-bottom: none;
}

.input-section .accordion-item {
  background-color: transparent !important;
  border: none;
  outline: none;
}

.input-header {
  padding: 10px 16px;
  color: var(--neutral-color);
}

.input-header h5,
.input-header .accordion-button {
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  margin: 0;
}

.input-section h5,
.input-section .accordion-button {
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  margin: 0;
}

.input-header p,
.input-header .accordion-button {
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  margin: 0;
}

.input-section p,
.input-section .accordion-button {
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  margin: 0;
}

.input-body {
  padding: 10px 16px;
  border-top: 1px solid #343746;
}

.otp-box {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.otp-box .otp-input {
  text-align: center;
  outline: none;
  transition: 0.2s;
  border-radius: 10px;
}

.resend {
  display: block;
  text-align: right;
  color: #b99e96;
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 20px;
}

.instant-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.instant-login .instant-form {
  max-width: 500px;
  width: 100%;
}

.instant-login h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--white-color);
  text-align: center;
  margin-bottom: 0;
}

.instant-login p {
  font-size: 16px;
  font-weight: normal;
  color: white;
  text-align: center;
  margin-bottom: 40px;
}

.timeline {
  margin: auto;
  margin-bottom: 80px;
  max-width: 600px;
}

.timelin-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 22px;
  letter-spacing: 0%;
  text-align: center;
  color: var(--white-color);
  margin-bottom: 60px;
}

.coming-banner {
  margin-bottom: 40px;
}

.timeline-section .content h4 {
  margin: 0;
  font-size: 16px;
  color: #fff;
  text-align: left;
}

.timeline-section .content p {
  margin: 2px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5019607843);
  text-align: left;
}

.timeline-section .step {
  position: relative;
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
}

.timeline-section .step:last-child {
  margin-bottom: 0;
}

.timeline-section .step::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 20px;
  width: 2px;
  height: 131%;
  background: rgba(255, 255, 255, 0.8);
  z-index: -1;
}

.timeline-section .step.completed::before {
  background-color: #06b217;
}

.timeline-section .step.completed .circle {
  border: none;
}

.timeline-section .circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
  background-color: var(--body-color);
  border: 1px solid var(--white-color);
}

.timeline-section .completed .circle {
  background: url(../img/check_circle.svg) center/contain no-repeat;
  background-size: 28px;
}

.timeline-section .completed .check {
  font-size: 14px;
}

.toggle-switch {
  position: relative;
  width: 40px;
  height: 20px;
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
}

.toggle-switch input {
  display: none;
}

.toggle-switch input:checked+.toggle-slider::before {
  transform: translateX(19px);
}

.toggle-switch input:checked~.on {
  color: white;
}

.toggle-switch input:not(:checked)~.off {
  color: white;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  background: #ff6a2c;
  border-radius: 30px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.4s;
}

.toggle-slider::before {
  content: "";
  position: absolute;
  height: 16px;
  width: 16px;
  left: 2px;
  top: 2px;
  background: var(--white-color);
  border-radius: 50%;
  transition: 0.4s;
}

.toggle-label {
  font-size: 18px;
  font-weight: 500;
  color: #d1d1d1;
}

.toggle-label.on {
  margin-left: 5px;
}

.dashboard-tabs .header-tab-wrapper {
  border-block: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 8px 0 8px;
  background-color: #111216;
  position: sticky;
  top: 72px;
  z-index: 100;
}

.dashboard-tabs .header-tab {
  display: flex;
  position: relative;
  gap: 20px;
  color: var(--white-color);
  width: 100%;
  padding-bottom: 20px;
  text-align: center;
}

.dashboard-tabs .header-tab .tab {
  cursor: pointer;
  font-size: 16px;
  transition: color 0.3s ease-in-out;
  width: 100%;
  flex: 1;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
}

.dashboard-tabs .header-tab .slider {
  position: absolute;
  bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, #fa712d 0%, #f90829 100%);
  width: 0px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.dashboard-tabs .tab-content {
  position: relative;
  overflow: hidden;
  min-height: 120px;
}

.dashboard-tabs .content-box {
  position: absolute;
  width: 100%;
  top: 0;
  opacity: 0;
  transform: translateX(40px);
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
  color: var(--white-color);
  padding-block: 40px;
}

.dashboard-tabs .content-box.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

.dashboard-tabs .content-header {
  margin-bottom: 20px;
  position: relative;
}

.dashboard-tabs .content-header h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
}

.dashboard-tabs .content-header h3+p {
  font-weight: 500;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--neutral-color);
}

.dashboard-tabs .accordion-button {
  padding: 20px !important;
}

.dashboard-tabs .accordion-button h5 {
  font-size: 16px;
  font-weight: 700;
}

.dashboard-tabs .accordion-button p {
  font-size: 14px;
  font-weight: 400;
}

.dashboard-tabs .tag {
  position: absolute;
  bottom: 8px;
  right: 13px;
  color: var(--body-color);
  padding: 3px 8px;
  border-radius: 4px;
  background-color: #b99e96;
  font-size: 12px;
}

.dashboard-tabs .content-body .order-details .row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
}

.dashboard-tabs .content-body .order-details .row>* {
  width: auto;
}

.dashboard-tabs .content-body .order-details .row:last-child {
  border-bottom: none;
}

.dashboard-tabs .content-body .order-details .label {
  font-size: 15px;
  opacity: 0.8;
}

.dashboard-tabs .content-body .order-details .value {
  font-size: 15px;
  font-weight: 500;
  text-align: right;
}

.dashboard-tabs .btn-border-primary,
.dashboard-tabs .btn-primary-gradient {
  font-size: 12px;
  padding: 14px 26px;
}

.share-box {
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.share-box h5 {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
}

.share-box p {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
}

.share-box .btn-border-primary {
  background: linear-gradient(var(--dark-gray), var(--dark-gray)) padding-box, linear-gradient(101.72deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 105.92%) border-box;
}

.line-box-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: center;
}

.line-box-wrapper .line-box {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.line-box-wrapper .line-box:nth-child(even) {
  border-right: none;
}

.line-box-wrapper .line-box:nth-last-child(-n+2) {
  border-bottom: none;
}

.line-box-wrapper .line-box>* {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 0;
}

.selected-file {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-size: 14px;
  color: var(--neutral-color);
  padding: 8px;
  border: 1px solid #343746;
  border-radius: 8px;
  width: -moz-fit-content;
  width: fit-content;
}

.selected-file .delete-file {
  cursor: pointer;
  font-size: 16px;
  color: #ff4d4d;
}

.selected-file .delete-file:hover {
  opacity: 0.8;
}

.selected-file .preview-image {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  -o-object-fit: contain;
  object-fit: contain;
  background-color: white;
  flex-shrink: 0;
}

.selected-file:hover {
  background-color: #1e1e1e;
}

.danger-alert {
  font-size: 15px;
  color: #a40000;
  max-width: 80%;
  margin: auto;
  margin-block: 8px;
  font-weight: 500;
  text-align: center;
}

.text-right {
  text-align: right;
}

.grouped {
  background-color: #191919;
  padding: 15px 0px;
}

.grouped .input-group-box {
  margin-bottom: 0px;
}

.ungrouped+.grouped {
  border-radius: 6px 6px 0px 0px;
}

.button-block {
  display: block;
  border: none;
  outline: none;
  width: 100%;
  text-align: center;
  padding: 10px;
  color: var(--neutral-color);
  cursor: pointer;
  background-color: #2a2a2a;
  border-radius: 0px 0px 6px 6px;
  margin-bottom: 12px;
}

.button-block:hover {
  background-color: #2d2f3b;
}

.page-loader {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8705882353);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.page-loader .loader-wrap {
  margin: auto;
  display: grid;
  place-items: center;
  max-width: 80%;
  text-align: center;
  gap: 0;
  color: #fff;
}

.page-loader .loader-text {
  margin: 16px 0 8px 0;
}

.page-loader span {
  color: var(--neutral-color);
}

.page-loader.active {
  display: flex;
}

.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(252, 232, 224, 0.253);
  border-top-color: #f9572c;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1450px) {
  header {
    padding: 20px 0;
  }

  header .profile-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  header input {
    padding: 10px 16px;
  }

  .btn-primary-gradient,
  .btn-border-primary {
    font-size: 14px;
    padding: 12px 44px;
  }

  main {
    padding: 60px 0;
  }

  .hero-banner-block {
    max-width: 1120px;
    margin-bottom: 60px;
  }

  .hero-banner-block h2 {
    font-size: 44.11px;
  }

  .hero-banner-block h4 {
    font-size: 26.48px;
  }

  .hero-search-section h1 {
    font-size: 38px;
    line-height: 44.12px;
  }

  .hero-search-section input {
    max-width: 630px;
    padding: 14px 24px;
    font-size: 16px;
  }

  .hero-search-section .btn-primary-gradient {
    max-width: 630px;
    font-size: 18px;
    margin-top: 14px;
  }

  .hero-slider-section {
    padding: 16px 35px;
  }

  .hero-slider-section .sticky-left {
    font-size: 20px;
  }

  .hero-slider-section .infinite-slider .item {
    font-size: 20px;
  }

  .hero-slider-section .infinite-slider .slider-track {
    gap: 60px;
  }

  section {
    padding-block: 40px;
  }

  .why-choose-us-section .video-block {
    min-height: 400px;
  }

  .why-choose-us-section h4 {
    font-size: 36px;
    line-height: 52px;
  }

  .why-choose-us-section p {
    font-size: 20px;
  }

  .why-choose-us-section .play-btn {
    width: 70px;
    height: 70px;
    margin-bottom: 28px;
  }

  .why-choose-us-section .play-btn svg {
    width: 20px;
    height: 20px;
  }

  .section-title {
    font-size: 44px;
    line-height: 44.99px;
  }

  .section-title+p.section-subtitle {
    font-size: 22px;
  }

  .block-margin-top {
    margin-top: 44px;
  }

  .join-and-win-section .content-block h4 {
    font-size: 20.37px;
  }

  .join-and-win-section .content-block a {
    font-size: 16.1px;
  }

  .features-section .features-grid .feature-item {
    gap: 10px;
  }

  .features-section .features-grid .feature-item h4 {
    font-size: 18px;
  }

  .features-section .features-grid .feature-item p {
    font-size: 14px;
  }

  .find-it-section .step-number {
    width: 80px;
    height: 80px;
    font-size: 18.85px;
    border: 7px solid #2d2f3b;
    top: -60px;
  }

  .find-it-section h4 {
    font-size: 20.85px;
  }

  .find-it-section p {
    font-size: 13.91px;
    line-height: 20px;
  }

  .pricing-section .pricing-item {
    padding: 36px 12px;
  }

  .our-works-section h4 {
    font-size: 18.73px;
  }

  .our-works-section .btn-white {
    font-size: 16.73px;
  }

  .footer .footer-logo {
    margin-bottom: 30px;
    max-width: 90px;
  }

  .footer .footer-social-links {
    margin-bottom: 26px;
  }

  .timer-section .timer-title {
    font-size: 26px;
  }

  .timer-section span {
    font-size: 26px;
    line-height: 26px;
  }

  .timer-section h5 {
    font-size: 24px;
  }

  .semi-title {
    font-size: 26px;
  }

  .popular-plan .popular-block {
    margin-block: 30px;
    padding: 20px;
  }

  .popular-plan .popular-check .check-box {
    width: 40px;
    height: 40px;
  }

  .popular-plan .content h4 {
    font-size: 20px;
  }

  .popular-block hr {
    margin: 10px 0;
  }
}

@media (max-width: 1200px) {
  .hero-banner-block h2 {
    font-size: 38.11px;
  }

  .hero-banner-block h4 {
    font-size: 22.48px;
  }

  .find-it-section .find-it-item {
    margin-top: 60px;
  }

  .find-it-section p {
    font-size: 12.91px;
    line-height: 18px;
  }

  .pricing-section .discount-value {
    font-size: 16.95px;
  }

  .pricing-section .price-value {
    font-size: 18.74px;
  }

  section.pay-design {
    padding: 30px 0;
  }

  section.pay-design h4,
  section.pay-design p {
    font-size: 22px;
  }
}

@media (max-width: 991px) {
  .why-choose-us-section .video-block {
    border-radius: 36px;
  }

  .find-it-section .find-it-item,
  .pricing-section .pricing-item {
    margin-bottom: 40px;
  }

  .features-section .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-section .features-grid .feature-item {
    border-right: none;
  }

  .features-section .features-grid .feature-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }

  .features-section .features-grid .feature-item:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .features-section .features-grid .feature-item:last-child {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: none;
  }

  .modal-video {
    width: 600px;
    height: 300px;
    aspect-ratio: 3/2;
    margin: auto;
  }

  .mobile-block {
    display: block;
  }

  .pricing-list-show {
    cursor: pointer;
  }

  .pricing-list-show p {
    color: #c5723e;
    font-size: 16px;
    font-weight: 600;
    padding-top: 16px;
    margin-top: 8px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 0;
  }

  .pricing-list-show i {
    color: rgba(203, 203, 203, 0.8);
    font-size: 14px;
    transition: transform 0.5s ease;
  }

  .pricing-item ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    margin: 0;
  }

  .pricing-item ul.open {
    max-height: 500px;
  }

  .features-grid {
    max-height: 530px;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .features-grid.expanded {
    max-height: 5000px;
  }

  .view-more-btn {
    color: #c5723e;
    font-size: 16px;
    font-weight: 500;
  }

  .view-more-btn p {
    margin: 0;
  }
}

@media (max-width: 768px) {
  .w-md-100 {
    width: 100% !important;
  }

  nav {
    background-color: var(--dark-gray);
    border-radius: 5vmax;
    padding-inline: 8px;
  }

  header {
    padding: 14px 0;
  }

  header .menu-icon {
    gap: 6px;
  }

  header .menu-icon span {
    width: 28px;
  }

  header .nav-right {
    gap: 4px;
  }

  header input {
    padding: 10px 12px;
  }

  header .logo {
    max-width: 84px;
  }

  header .logo img {
    display: block;
    width: 100%;
  }

  .header-search .btn-primary-gradient {
    display: none;
  }

  main {
    padding: 20px 0;
  }

  .hero-banner-block {
    margin-bottom: 34px;
  }

  .hero-banner-block h2 {
    font-size: 28.11px;
  }

  .hero-banner-block h4 {
    font-size: 16.48px;
  }

  .hero-search-section h1 {
    font-size: 30px;
    line-height: 40.12px;
    margin-bottom: 28px;
  }

  .why-choose-us-section .video-block {
    min-height: 320px;
  }

  .why-choose-us-section h4 {
    font-size: 28px;
    line-height: 34px;
  }

  .why-choose-us-section p {
    font-size: 18px;
  }

  .why-choose-us-section .play-btn {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .section-title {
    font-size: 38px;
    line-height: 36.99px;
  }

  .section-title+p.section-subtitle {
    font-size: 20px;
  }

  .footer .footer-box {
    margin-bottom: 12px;
  }

  .custom-next {
    right: 0px;
  }

  .custom-prev {
    left: 0px;
  }

  .modal-video {
    width: 400px;
    height: auto;
    aspect-ratio: 3/2;
    margin: auto;
  }

  .timer-section .timer-title {
    font-size: 20px;
  }

  .timer-section span {
    font-size: 20px;
    line-height: 18px;
  }

  .timer-section h5 {
    font-size: 20px;
  }

  .semi-title {
    font-size: 20px;
  }

  .popular-plan .popular-block {
    margin-block: 30px;
    padding: 9px;
    gap: 10px;
    border-radius: 10px;
  }

  .popular-plan .popular-check {
    border-radius: 12px;
    padding: 10px;
  }

  .popular-plan .coupon {
    padding: 16px;
    border-radius: 16px;
  }

  .popular-plan .coupon h4 {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .popular-plan .coupon-box {
    width: 90%;
    border-radius: 10vmax;
  }

  .popular-plan .coupon-box input {
    font-size: 16px;
  }

  .features-swiper h4 {
    font-size: 20px;
  }

  .features-swiper p {
    font-size: 11px;
  }

  .website-name-section .web-name p {
    margin-bottom: 0;
  }

  .website-name-section .web-name span {
    padding: 2px 15px;
    font-size: 13px;
  }

  .dashboard-tabs .content-body .order-details .row>* {
    width: 50%;
    padding-inline: 6px;
  }

  .dashboard-tabs .btn-border-primary,
  .dashboard-tabs .btn-primary-gradient {
    font-size: 12px;
    padding: 14px 22px;
  }
}

@media (max-width: 580px) {
  header .profile-icon {
    width: 30px;
    height: 30px;
    font-size: 16px;
    font-weight: 500;
  }

  header .menu-icon span {
    width: 24px;
  }

  header input {
    padding: 6px 12px;
  }

  header .menu-icon.active span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  .hero-slider-section {
    padding: 16px 16px;
  }

  .hero-slider-section .infinite-slider .slider-track {
    gap: 24px;
  }

  .hero-slider-section .infinite-slider .item {
    font-size: 18px;
  }

  .hero-slider-section .sticky-left {
    font-size: 16px;
    padding-right: 8px;
  }

  .find-it-section .find-it-block {
    background-color: var(--dark-gray);
    border-radius: 16px;
    padding: 26px 17px;
    color: var(--white-color);
  }

  .find-it-section .find-it-item {
    margin-bottom: 0;
  }

  .footer .footer-links {
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero-banner-block h4 {
    font-size: 13.48px;
  }

  .why-choose-us-section .play-btn {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
  }

  .why-choose-us-section .play-btn svg {
    width: 40px;
    height: 40px;
  }

  .why-choose-us-section h4 span {
    display: block;
  }

  .why-choose-us-section .video-block {
    min-height: 360px;
  }

  .our-works-section .wrok-image {
    border-radius: 18px 18px 0 0;
    max-height: 160px;
  }

  .our-works-section .item {
    border-radius: 18px;
  }

  .hero-search-section h1 {
    font-size: 28px;
    line-height: 30.12px;
  }

  .block-margin-top {
    margin-top: 28px;
  }

  .timer-section .timer-title {
    font-size: 16px;
  }

  .timer-section span {
    font-size: 18px;
    line-height: 18px;
  }

  .semi-title {
    font-size: 18px;
  }

  .popular-plan .popular-check:has(input:checked) {
    box-shadow: none;
  }

  .popular-plan .content h4 {
    font-size: 16px;
  }

  .popular-plan .content p {
    font-size: 15px;
  }

  .popular-plan .content span {
    font-size: 14px;
    font-weight: 300;
  }

  .popular-plan .coupon h4 {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .popular-plan .coupon-box input {
    font-size: 14px;
  }

  .coupon-box .btn-primary-gradient {
    padding: 10px 36px;
  }

  .website-name-section .web-name p {
    font-size: 16px;
  }

  .check-block {
    gap: 20px;
  }

  .check-box {
    width: 30px;
    height: 30px;
  }

  .radio:checked+.check-box {
    background-size: 10px;
  }

  .dashboard-tabs .header-tab .tab {
    font-size: 14px;
  }

  .select2-container .select2-selection--single .select2-selection__rendered {
    font-size: 12px;
  }
}

@media (max-width: 460px) {
  header .logo {
    max-width: 71px;
  }

  header input {
    padding: 8px 0;
    font-size: 12px;
  }

  header .menu-icon {
    gap: 5px;
  }

  header .menu-icon span {
    width: 22px;
    height: 2px;
  }

  .hero-banner-block .banner-block {
    max-width: 540px;
    width: 100%;
    margin: 12px 0;
  }

  .hero-banner-block h2 {
    font-size: 22.11px;
  }

  .hero-banner-block h4 {
    font-size: 9px;
  }

  nav {
    padding-inline: 5px;
  }

  .hero-search-section h1 {
    font-size: 16px;
    line-height: 18.12px;
  }

  .hero-search-section input {
    font-size: 14px;
  }

  .hero-search-section .btn-primary-gradient {
    font-size: 15px;
  }

  .why-choose-us-section .video-block {
    min-height: 315px;
  }

  section {
    padding-block: 30px;
  }

  .features-section .features-grid .feature-item {
    padding: 10px;
    justify-content: center;
    gap: 8px;
  }

  .features-section .features-grid .feature-item h4 {
    font-size: 15px;
  }

  .features-section .features-grid .feature-item p {
    font-size: 12px;
  }

  .section-title {
    font-size: 34px;
    line-height: 36.99px;
  }

  .section-title span {
    display: block;
  }

  .section-title+p.section-subtitle {
    font-size: 15px;
  }

  .footer .footer-box h5 {
    font-size: 13.95px;
  }

  .footer .footer-box p {
    font-size: 12.95px;
  }

  .hero-banner-block> :nth-child(2) {
    border-inline: 1px solid var(--dark-gray);
  }

  .modal-video {
    width: 340px;
    height: auto;
    aspect-ratio: 3/2;
    margin: auto;
  }

  .floating-champ {
    bottom: 100px;
    right: 20px;
  }

  .floating-search {
    bottom: 20px;
    right: 20px;
  }

  .timer-section .timer-title {
    font-size: 14px;
  }

  .timer-section span {
    font-size: 14px;
    line-height: 14px;
  }

  .timer-section span:nth-child(odd) {
    padding: 8px;
    border-radius: 5px;
  }

  .timer-section h5 {
    font-size: 16px;
  }

  .semi-title {
    font-size: 14px;
  }

  .popular-plan .popular-check .check-box {
    width: 25px;
    height: 25px;
  }

  .popular-plan .popular-check input:checked+.check-box::after {
    width: 12px;
    height: 8px;
  }

  .popular-plan .content h4 {
    font-size: 13px;
  }

  .popular-plan .content p {
    font-size: 12px;
  }

  .popular-plan .content div {
    gap: 4px;
  }

  .popular-plan .content span {
    font-size: 10px;
    font-weight: 300;
  }

  .popular-plan .coupon {
    padding: 20px 0px;
    border-radius: 16px;
  }

  .popular-plan .coupon::before,
  .popular-plan .coupon::after {
    width: 30px;
    height: 30px;
  }

  .popular-plan .coupon h4 {
    font-size: 15px;
    margin-bottom: 13px;
  }

  .popular-plan .coupon-box {
    padding: 5px;
    padding-left: 12px;
  }

  .popular-plan .coupon-box input {
    font-size: 14px;
  }

  .popular-plan .coupon-box input::-moz-placeholder {
    font-size: 12px;
  }

  .popular-plan .coupon-box input::-moz-placeholder,
  .popular-plan .coupon-box input::placeholder {
    font-size: 12px;
  }

  .coupon-box .btn-primary-gradient {
    padding: 8px 30px;
    font-size: 12px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .features-swiper {
    margin-top: 40px;
  }

  .features-swiper h4 {
    font-size: 16px;
  }

  .features-swiper p {
    font-size: 8px;
  }

  .features-swiper .swiper-slide.item {
    margin-bottom: 40px;
  }

  .features-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }

  .website-name-section h2 {
    margin-bottom: 30px;
  }

  .website-name-section .web-name p {
    font-size: 14px;
  }

  section.pay-design h4,
  section.pay-design p {
    font-size: 16px;
  }

  .common-modal-box h4 {
    font-size: 15px;
  }

  .common-modal-box .common-inner-box {
    padding: 20px 16px;
  }

  .common-modal-box .common-inner-box p {
    font-size: 12px;
  }

  .common-modal-box .popup-close {
    width: 20px;
    height: 34px;
  }

  .common-modal-box .popup-close i {
    font-size: 15px;
  }

  .common-modal-box .model-subtitle {
    font-size: 12px;
  }

  .modal-header {
    display: block;
    padding: 20px;
  }

  .input-group-box label,
  .input-group-box .label {
    font-size: 12px;
  }

  .input-group-box input {
    font-size: 15px;
  }

  .input-group-box input::-moz-placeholder {
    font-weight: normal;
    font-size: 13px;
  }

  .input-group-box input::-moz-placeholder,
  .input-group-box input::placeholder {
    font-weight: normal;
    font-size: 13px;
  }

  .input-group-box .textarea,
  .input-group-box input {
    font-size: 12px;
  }

  .resend {
    font-size: 12px;
  }

  .instant-login .instant-form {
    max-width: 330px;
    width: 100%;
  }

  .instant-login h4 {
    font-size: 16px;
  }

  .instant-login p {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .gray-box p {
    font-size: 13px;
  }

  .check-box {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }

  .check-block {
    gap: 10px;
  }

  .check-block span {
    font-size: 12px;
  }

  .check-wrap {
    gap: 6px;
  }

  .info-box {
    padding: 12px;
    font-size: 12px;
  }

  .timeline {
    max-width: 80%;
    margin: auto;
    margin-bottom: 40px;
    overflow: hidden;
  }

  .timelin-title {
    margin-bottom: 24px;
    font-size: 18px;
  }

  .timeline-section .content h4 {
    font-size: 14px;
  }

  .timeline-section .step {
    margin-bottom: 20px;
  }

  .coming-banner {
    max-width: 80%;
    margin: auto;
  }
}

.responsive-container {
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .responsive-container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .responsive-container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .responsive-container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .responsive-container {
    max-width: 1320px;
  }
}

/*# sourceMappingURL=style.css.map */