/* Copy Animation */
.base-color {
  color: hsl(var(--main)) !important;
}

.copyInput {
  display: inline-block;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.copied::after {
  position: absolute;
  top: 8px;
  right: 12%;
  width: 100px;
  display: block;
  content: "COPIED";
  font-size: 1em;
  padding: 5px 5px;
  color: #fff;
  background-color: #FF7000;
  border-radius: 3px;
  opacity: 0;
  will-change: opacity, transform;
  animation: showcopied 1.5s ease;
}
.section.cm-about p {
    text-align: justify;
}
@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  50% {
    opacity: 0.7;
    transform: translateX(40%);
  }

  70% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
  }
}



/* =========================================================
   PREMIUM MATRIMONIAL HERO SECTION
========================================================= */

.hero {
    position: relative;
    min-height: 760px;
    overflow: hidden;
}

/* Dark overlay on background */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(20, 5, 8, 0.78) 0%,
            rgba(45, 8, 15, 0.62) 42%,
            rgba(45, 8, 15, 0.30) 65%,
            rgba(20, 5, 8, 0.15) 100%
        );
    z-index: 1;
    pointer-events: none;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slider,
.hero-slider__item,
.hero-slider__item img {
    width: 100%;
    height: 100%;
}

.hero-slider__item img {
    object-fit: cover;
}

/* Main hero content */
.hero__content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    min-height: 760px;
    display: flex;
    align-items: center;
}

/* =========================================================
   LEFT CONTENT
========================================================= */

.custom-hero-content {
    position: relative;
    z-index: 3;
    max-width: 720px;
    color: #ffffff;
}

/* Small top text */
.hero-trust {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #e5bd62;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.hero-trust i {
    font-size: 19px;
    color: #d9a441;
}

/* Main heading */
.custom-hero-title {
    margin: 0;
    font-size: 72px;
    line-height: 1.05;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -2px;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.35);
}

.custom-hero-title span {
    display: block;
    color: #e5b044;
    margin-top: 4px;
}

/* Description */
.custom-hero-desc {
    max-width: 560px;
    margin: 28px 0 38px;
    font-size: 19px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

/* =========================================================
   STATS
========================================================= */

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 42px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 12px;

    min-width: 145px;

    padding: 12px 14px;

    background: rgba(50, 8, 17, 0.42);
    border: 1px solid rgba(229, 176, 68, 0.25);

    border-radius: 10px;

    backdrop-filter: blur(8px);

    transition: all 0.3s ease;
}

.hero-stat:hover {
    transform: translateY(-4px);
    background: rgba(104, 8, 33, 0.65);
    border-color: rgba(229, 176, 68, 0.6);
}

.hero-stat-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: rgba(229, 176, 68, 0.12);
    border: 1px solid rgba(229, 176, 68, 0.35);
}

.hero-stat-icon i {
    font-size: 24px;
    color: #e5b044;
}

.hero-stat strong {
    display: block;
    font-size: 19px;
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
}

.hero-stat span {
    display: block;
    margin-top: 3px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.65);
    white-space: nowrap;
}



/* =========================================
   TRUST STATS SECTION
========================================= */

.trust-stats-section {
    position: relative;
    padding: 40px 0 40px;
    z-index: 10;
}

.trust-stats-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);

    background: linear-gradient(
        90deg,
        #65001f 0%,
        #85002b 50%,
        #65001f 100%
    );

    border: 1px solid rgba(218, 166, 52, 0.25);
    border-radius: 14px;

    overflow: hidden;

    box-shadow:
        0 15px 40px rgba(72, 0, 20, 0.25);
}

.trust-stat-item {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 13px;

    padding: 30px 18px;

    min-height: 120px;

    transition: all 0.3s ease;
}

.trust-stat-item:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;
    top: 25%;

    width: 1px;
    height: 50%;

    background: rgba(255, 255, 255, 0.12);
}

.trust-stat-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.trust-stat-icon {
    flex-shrink: 0;
}

.trust-stat-icon i {
    font-size: 42px;
    line-height: 1;

    color: #dca92e;

    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.25);
}

.trust-stat-content h3 {
    margin: 0 0 4px;

    color: #ffffff;

    font-size: 26px;
    line-height: 1;

    font-weight: 700;
}

.trust-stat-content p {
    margin: 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 13px;
    line-height: 1.4;

    white-space: nowrap;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199px) {

    .trust-stats-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }

    .trust-stat-item:nth-child(3)::after {
        display: none;
    }

    .trust-stat-item:nth-child(-n+3) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .trust-stats-section {
        padding: 25px 0;
        margin-top: 0;
    }

    .trust-stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 12px;
    }

    .trust-stat-item {
        justify-content: flex-start;

        min-height: 95px;

        padding: 20px 15px;

        gap: 10px;
    }

    .trust-stat-item::after {
        display: none;
    }

    .trust-stat-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .trust-stat-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .trust-stat-icon i {
        font-size: 32px;
    }

    .trust-stat-content h3 {
        font-size: 20px;
    }

    .trust-stat-content p {
        font-size: 11px;
        white-space: normal;
    }

}


@media (max-width: 480px) {

    .trust-stat-item {
        padding: 16px 10px;
    }

    .trust-stat-icon i {
        font-size: 27px;
    }

    .trust-stat-content h3 {
        font-size: 18px;
    }

}

/* =========================================
   MATCH BENEFITS SECTION
========================================= */

.match-benefits-section {
    padding: 70px 0;
    background: #fffdf9;
}

.match-benefit-card {
    height: 100%;
    min-height: 430px;
    background: #fff;
    border-radius: 20px;
    padding: 38px;
    box-shadow: 0 8px 35px rgba(75, 15, 35, 0.08);
    position: relative;
    overflow: hidden;
}


/* =========================================
   HEADINGS
========================================= */

.match-benefit-card h2 {
    font-size: 30px;
    line-height: 1.3;
    color: #5c0b2d;
    font-weight: 700;
    margin-bottom: 30px;
}


/* =========================================
   WHY CHOOSE SECTION
========================================= */

.why-choose-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.why-choose-content {
    position: relative;
    z-index: 2;
    width: 58%;
}

.why-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #444;
    font-size: 16px;
    font-weight: 500;
}

.why-list li span {
    width: 23px;
    height: 23px;
    min-width: 23px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c85a20, #e88824);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}


/* =========================================
   SECURITY VISUAL
========================================= */

.security-visual {
    width: 42%;
    min-height: 330px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-box {
    width: 135px;
    height: 265px;
    background: #fff;
    border: 5px solid #252525;
    border-radius: 22px;
    text-align: center;
    padding-top: 45px;
    position: relative;
    z-index: 2;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.phone-speaker {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 38px;
    height: 4px;
    border-radius: 10px;
    background: #333;
}

.phone-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #fff7f4;
    color: #8b1038;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    border: 2px solid #8b1038;
}

.phone-box h5 {
    color: #6d1234;
    font-size: 16px;
    margin: 0 0 5px;
    font-weight: 700;
}

.phone-box p {
    color: #777;
    font-size: 12px;
    margin: 0;
}

.phone-bottom {
    position: absolute;
    bottom: 16px;
    width: 100%;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.phone-bottom span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #b11843;
}

.security-shield {
    position: absolute;
    left: -5px;
    top: 52%;
    transform: translateY(-50%);
    width: 88px;
    height: 105px;
    background: linear-gradient(145deg, #8d062d, #540018);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 45px;
    clip-path: polygon(50% 0%, 92% 18%, 92% 62%, 50% 100%, 8% 62%, 8% 18%);
    z-index: 3;
    border: 3px solid #e6a82d;
}


/* =========================================
   PREMIUM SECTION
========================================= */

.premium-benefit-card {
    display: flex;
    gap: 35px;
    align-items: center;
}

.premium-content {
    width: 65%;
}

.premium-list {
    display: flex;
    flex-direction: column;
    gap: 19px;
}

.premium-item {
    display: flex;
    align-items: center;
    gap: 17px;
}

.premium-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 50%;
    background: #fff9f0;
    border: 1px solid #f0d8a8;
    color: #b46b17;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 31px;
}

.premium-item h4 {
    margin: 0 0 4px;
    color: #333;
    font-size: 17px;
    font-weight: 700;
}

.premium-item p {
    margin: 0;
    color: #777;
    font-size: 14px;
}


/* =========================================
   UPGRADE CARD
========================================= */

.upgrade-card {
    width: 35%;
    min-width: 265px;
    min-height: 330px;
    border-radius: 14px;
    background: linear-gradient(145deg, #5b001e, #8c0835);
    padding: 32px 25px;
    text-align: center;
    color: #fff;
    box-shadow: 0 10px 25px rgba(100, 0, 35, 0.2);
}

.crown-icon {
    color: #eeb125;
    font-size: 52px;
    line-height: 1;
    margin-bottom: 18px;
}

.upgrade-card h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.upgrade-card p {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.upgrade-btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(90deg, #e49b20, #ffc334);
    border-radius: 7px;
    color: #4a2700 !important;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.upgrade-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 184, 30, 0.3);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199px) {

    .match-benefit-card {
        padding: 30px;
    }

    .premium-benefit-card {
        gap: 20px;
    }

    .upgrade-card {
        min-width: 230px;
    }

    .why-choose-content {
        width: 60%;
    }

    .security-visual {
        width: 40%;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

    .match-benefits-section {
        padding: 50px 0;
    }

    .match-benefit-card {
        min-height: auto;
    }

    .why-choose-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .why-choose-content {
        width: 100%;
    }

    .security-visual {
        width: 100%;
        min-height: 300px;
        margin-top: 20px;
    }

    .premium-benefit-card {
        flex-direction: column;
        align-items: stretch;
    }

    .premium-content {
        width: 100%;
    }

    .upgrade-card {
        width: 100%;
        min-width: auto;
        min-height: auto;
    }

}


@media (max-width: 575px) {

    .match-benefit-card {
        padding: 25px 20px;
        border-radius: 14px;
    }

    .match-benefit-card h2 {
        font-size: 25px;
    }

    .why-list li {
        font-size: 14px;
        align-items: flex-start;
    }

    .premium-item {
        align-items: flex-start;
    }

    .premium-item h4 {
        font-size: 16px;
    }

    .premium-item p {
        font-size: 13px;
    }

    .premium-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 26px;
    }

    .phone-box {
        transform: scale(0.9);
    }

    .security-shield {
        left: 12%;
    }

}

/* =========================================
   PERFECT MATCH CTA SECTION
========================================= */

.perfect-match-cta {
    padding: 45px 0 20px;
    background: #fffdf9;
}

.perfect-match-cta-box {
    width: 100%;
    min-height: 105px;
    padding: 18px 55px;
    display: flex;
    align-items: center;
    gap: 28px;
    border-radius: 18px;

    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.96),
            rgba(255, 248, 235, 0.96)
        );

    box-shadow:
        0 8px 30px rgba(92, 11, 45, 0.08);

    border: 1px solid rgba(210, 165, 75, 0.15);

    position: relative;
    overflow: hidden;
}


/* Subtle Background Decoration */

.perfect-match-cta-box::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(190, 135, 35, 0.05);
    right: -100px;
    top: -100px;
}

.perfect-match-cta-box::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(125, 0, 45, 0.03);
    left: -80px;
    bottom: -100px;
}


/* =========================================
   ICON
========================================= */

.cta-mail-icon {
    width: 115px;
    min-width: 115px;
    height: 75px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    z-index: 2;
}

.mail-envelope {
    position: relative;
    width: 72px;
    height: 55px;

    background: #ffffff;
    border: 2px solid #d8c7b0;
    border-radius: 5px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 7px 15px rgba(70, 30, 20, 0.12);
}

.mail-envelope > i:first-child {
    position: absolute;
    font-size: 54px;
    color: #eadfd1;
}

.heart-icon {
    position: relative;
    z-index: 2;
    color: #a60b3d;
    font-size: 27px;
}


/* =========================================
   CONTENT
========================================= */

.cta-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    margin: 0 0 5px;
    color: #5c0b2d;
    font-size: 29px;
    font-weight: 700;
    line-height: 1.2;
}

.cta-content p {
    margin: 0;
    color: #555;
    font-size: 16px;
    line-height: 1.5;
}


/* =========================================
   ACTION
========================================= */

.cta-action {
    min-width: 250px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-register-btn {
    display: block;
    width: 100%;

    padding: 15px 25px;

    border-radius: 7px;

    background: linear-gradient(
        135deg,
        #7c062d,
        #b00b43
    );

    color: #ffffff !important;

    text-decoration: none;
    font-size: 16px;
    font-weight: 700;

    box-shadow: 0 7px 18px rgba(124, 6, 45, 0.2);

    transition: all 0.3s ease;
}

.cta-register-btn:hover {
    color: #ffffff !important;

    transform: translateY(-2px);

    background: linear-gradient(
        135deg,
        #5c001f,
        #920633
    );

    box-shadow: 0 10px 25px rgba(124, 6, 45, 0.3);
}

.cta-action span {
    display: block;
    margin-top: 7px;

    font-size: 13px;
    font-weight: 500;

    color: #666;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .perfect-match-cta-box {
        padding: 25px 35px;
        gap: 20px;
    }

    .cta-content h2 {
        font-size: 25px;
    }

    .cta-action {
        min-width: 210px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .perfect-match-cta {
        padding: 35px 0 10px;
    }

    .perfect-match-cta-box {
        flex-direction: column;
        text-align: center;

        padding: 30px 20px;

        gap: 15px;
    }

    .cta-mail-icon {
        width: 100%;
        height: auto;
    }

    .cta-content {
        width: 100%;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta-content p {
        font-size: 14px;
    }

    .cta-action {
        width: 100%;
        min-width: 100%;
    }

    .cta-register-btn {
        padding: 14px 20px;
    }

}


/* =========================================================
   BUTTONS
========================================================= */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 28px;
}

.custom-register-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 190px;
    height: 58px;

    padding: 0 30px;

    border-radius: 8px;

    background: linear-gradient(
        135deg,
        #8d062d,
        #bc1648
    );

    color: #ffffff !important;

    font-size: 16px;
    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 10px 30px rgba(80, 0, 20, 0.4);

    transition: all 0.3s ease;
}

.custom-register-btn:hover {
    transform: translateY(-3px);
    color: #ffffff !important;

    box-shadow:
        0 15px 35px rgba(80, 0, 20, 0.6);
}

.how-it-works-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: #ffffff !important;

    font-size: 16px;
    font-weight: 600;

    text-decoration: none;
}

.how-it-works-btn span {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid rgba(229, 176, 68, 0.65);

    color: #e5b044;

    transition: all 0.3s ease;
}

.how-it-works-btn:hover span {
    background: #e5b044;
    color: #5b071d;
    transform: translateX(4px);
}

/* =========================================================
   SEARCH FORM - PREMIUM LOOK
========================================================= */

.banner-account {
    position: relative;

    padding: 42px 38px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.97),
            rgba(248, 243, 238, 0.96)
        );

    border-radius: 18px;

    border: 1px solid rgba(229, 176, 68, 0.45);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.35);

    backdrop-filter: blur(15px);
}

.banner-account::before {
    content: "";
    position: absolute;

    top: 0;
    left: 12%;
    right: 12%;

    height: 4px;

    border-radius: 0 0 10px 10px;

    background: linear-gradient(
        90deg,
        #8d062d,
        #e5b044,
        #8d062d
    );
}

.banner-account .section__head {
    padding-bottom: 22px !important;
}

.banner-account .login-title {
    margin: 0;

    color: #691126;

    font-size: 38px;
    font-weight: 800;

    letter-spacing: -1px;
}

/* Form spacing */
.banner-account .row.gy-4 {
    --bs-gutter-y: 1.5rem;
}

/* Input Group */
.banner-account .input--group {
    position: relative;
}

/* Input / Select */
.banner-account .form--control,
.banner-account .form-select {
    width: 100%;

    height: 58px;

    padding: 15px 16px;

    border-radius: 10px !important;

    border: 1px solid #ddd2ca !important;

    background-color: #ffffff !important;

    color: #4b3940;

    font-size: 15px;

    box-shadow: none !important;

    transition: all 0.3s ease;
}

.banner-account .form--control:focus,
.banner-account .form-select:focus {
    border-color: #a20d37 !important;

    box-shadow:
        0 0 0 3px rgba(162, 13, 55, 0.10) !important;
}

/* Floating Label */
.banner-account .form--label {
    position: absolute;

    top: -9px;
    left: 12px;

    padding: 0 7px;

    background: #fbf8f5;

    color: #7c3243;

    font-size: 13px;
    font-weight: 600;

    z-index: 2;

    line-height: 18px;
}

/* Search Button */
.banner-account .btn.btn--base {
    height: 58px;

    border: none;

    border-radius: 9px;

    background:
        linear-gradient(
            90deg,
            #8d062d 0%,
            #a31339 45%,
            #c18112 100%
        ) !important;

    color: #ffffff !important;

    font-size: 17px;
    font-weight: 700;

    box-shadow:
        0 10px 25px rgba(100, 10, 30, 0.25);

    transition: all 0.3s ease;
}

.banner-account .btn.btn--base:hover {
    transform: translateY(-2px);

    box-shadow:
        0 15px 30px rgba(100, 10, 30, 0.4);
}

/* =========================================================
   DESKTOP ADJUSTMENT
========================================================= */

@media (min-width: 1200px) {

    .hero__content .container {
        max-width: 1320px;
    }

    .hero__content .row {
        align-items: center;
    }

    .hero__content .col-xl-7 {
        padding-right: 70px !important;
    }

    .banner-account {
        margin-left: 15px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

    .hero {
        min-height: auto;
    }

    .hero__content {
        min-height: auto;
        padding: 90px 0;
    }

    .custom-hero-title {
        font-size: 58px;
    }

    .hero-stat {
        min-width: 135px;
    }

    .banner-account {
        padding: 35px 28px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {

    .hero::before {
        background:
            linear-gradient(
                180deg,
                rgba(25, 5, 10, 0.82) 0%,
                rgba(45, 8, 15, 0.75) 100%
            );
    }

    .hero__content {
        padding: 70px 0;
    }

    .custom-hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .custom-hero-title {
        font-size: 54px;
    }

    .custom-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
        margin-bottom: 20px;
    }

    .banner-account {
        margin-top: 20px;
    }

}


@media (max-width: 767px) {

    .hero__content {
        padding: 55px 0;
    }

    .custom-hero-title {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .custom-hero-desc {
        font-size: 16px;
        line-height: 1.7;
        margin: 20px 0 30px;
    }

    .hero-stats {
        gap: 10px;
    }

    .hero-stat {
        width: calc(50% - 5px);
        min-width: auto;

        padding: 10px;
        text-align: left;
    }

    .hero-stat-icon {
        width: 38px;
        height: 38px;
    }

    .hero-stat strong {
        font-size: 16px;
    }

    .hero-stat span {
        font-size: 9px;
        white-space: normal;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 18px;
    }

    .custom-register-btn {
        width: 100%;
    }

    .banner-account {
        padding: 32px 20px;
        border-radius: 14px;
    }

    .banner-account .login-title {
        font-size: 30px;
    }

}


@media (max-width: 480px) {

    .custom-hero-title {
        font-size: 36px;
    }

    .hero-trust {
        font-size: 12px;
    }

    .hero-stat {
        width: 100%;
    }

    .banner-account .form--control,
    .banner-account .form-select {
        height: 54px;
    }

}




.cookies-card {
  width: 520px;
  padding: 30px;
  color: #1E2337;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all .5s;
  background: #d1d1d1;
  border-radius: 5px;
}

.cookies-card.hide {
  bottom: -500px !important;
}

.radius--10px {
  border-radius: 10px;
}

.cookies-card__icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #6e6f70;
  color: #fff;
  font-size: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.cookies-card__content {
  margin-bottom: 0;
}

.cookies-btn {
  color: #363636;
  text-decoration: none;
  padding: 10px 35px;
  margin: 3px 5px;
  display: inline-block;
  border-radius: 999px;
}

.cookies-btn:hover {
  color: #363636;
}


@media (max-width: 767px) {
  .cookies-card {
    width: 100%;
    left: 0;
    bottom: 0;
    font-size: 14px;
    padding: 15px;
  }
}




.hover-input-popup {
  position: relative;
}

.input-popup {
  display: none;
}

.hover-input-popup .input-popup {
  display: block;
  position: absolute;
  bottom: 130%;
  left: 50%;
  width: 280px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.input-popup::after {
  position: absolute;
  content: '';
  bottom: -19px;
  left: 50%;
  margin-left: -5px;
  border-width: 10px 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent #1a1a1a transparent;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.input-popup p {
  padding-left: 20px;
  position: relative;
}

.input-popup p::before {
  position: absolute;
  content: '';
  font-family: 'Line Awesome Free';
  font-weight: 900;
  left: 0;
  top: 4px;
  line-height: 1;
  font-size: 18px;
}

.input-popup p.error {
  text-decoration: line-through;
}

.input-popup p.error::before {
  content: "\f057";
  color: #ea5455;
}

.input-popup p.success::before {
  content: "\f058";
  color: #28c76f;
}



.show-filter {
  display: none;
}

@media(max-width:767px) {
  .responsive-filter-card {
    display: none;
    transition: none;
  }

  .show-filter {
    display: block;
  }
}


.payment-card-title {
  padding: 13px 25px;
  text-align: center;
  background-color: rgb(var(--base));
  border-radius: 5px;
  border: 0;
  margin-bottom: 0px;
  color: #fff;
  margin-top: 0px !important;
}

.payment-system-list {
  --thumb-width: 100px;
  --thumb-height: 40px;
  --radio-size: 12px;
  --border-color: #cccccf59;
  --hover-border-color: rgb(var(--base));
  background-color: #fff;
  border-radius: 5px;
  height: 100%;

}


.payment-system-list.is-scrollable {
  max-height: min(388px, 70vh);
  overflow-x: auto;
  padding-block: 4px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;

}

.payment-system-list.is-scrollable::-webkit-scrollbar-thumb {
  background-color: rgb(var(--base));
  border-radius: 10px;
}

.payment-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 18px;
  border: 1px solid #fff;
  border-top-color: var(--border-color);
  transition: all 0.3s;
  border-left: 3px solid transparent;
}

.payment-item:first-child {
  border-top-color: #fff;
  border-radius: 5px 5px 0 0;
}

.payment-item:has(.payment-item__radio:checked) {
  border-left: 3px solid var(--hover-border-color);
  border-radius: 0px;
}

.payment-item__check {
  border: 3px solid transparent;
}

.payment-item:has(.payment-item__radio:checked) .payment-item__check {
  border: 3px solid rgb(var(--base));
}

.payment-item__info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: calc(100% - var(--thumb-width))
}

.payment-item__check {
  width: var(--radio-size);
  height: var(--radio-size);
  border: 1px solid rgb(var(--base));
  display: inline-block;
  border-radius: 100%;

}

.payment-item__name {
  padding-left: 10px;
  width: calc(100% - var(--radio-size));
  transition: all 0.3s;
}

.payment-item__thumb {
  width: var(--thumb-width);
  height: var(--thumb-height);
  text-align: right;
  padding-left: 10px;

  &:has(.text) {
      width: fit-content;
  }
}

.payment-item__thumb img {
  max-width: var(--thumb-width);
  max-height: var(--thumb-height);
  object-fit: cover;
}


.deposit-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.deposit-info__title {
  max-width: 50%;
  margin-bottom: 0px;
  text-align: left;
}

.deposit-info__input {
  max-width: 50%;
  text-align: right;
  width: 100%;
}

.deposit-info__input-select {
  border: 1px solid var(--border-color);
  width: 100%;
  border-radius: 5px;
  padding-block: 6px;
}

.deposit-info__input-group {
  border: 1px solid var(--border-color);
  border-radius: 5px;

  .deposit-info__input-group-text {
      align-self: center;
      padding-left: 5px;
  }

}

.deposit-info__input-group .form--control {
  padding: 5px;
  border: 0;
  height: 35px;
  text-align: right;
}

.deposit-info__input-group .form--control:focus {
  box-shadow: unset;
}

.info-text .text,
.deposit-info__input .text {
  font-size: 14px;

}

.deposit-info__title .text.has-icon {
  display: flex;
  align-items: center;
  gap: 5px
}

.total-amount {
  border-top: 1px solid var(--border-color);
}

.total-amount .deposit-info__title {
  font-weight: 600;
}

.payment-item__btn {
  border: 0;
  border-block: 1px solid var(--border-color);
  border-bottom: 0;
  background: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  font-weight: 500;
}

.payment-item:hover+.payment-item__btn {
  border-top-color: #fff;
}

button .spinner-border {
  --bs-spinner-width: 1.5rem;
  --bs-spinner-height: 1.5rem;
}

.copyInput {
  display: inline-block;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.copied::after {
  position: absolute;
  top: 8px;
  right: 12%;
  width: 100px;
  display: block;
  content: "COPIED";
  font-size: 1em;
  padding: 5px 5px;
  color: #fff;
  background-color: #FF7000;
  border-radius: 3px;
  opacity: 0;
  will-change: opacity, transform;
  animation: showcopied 1.5s ease;
}

@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  50% {
    opacity: 0.7;
    transform: translateX(40%);
  }

  70% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
  }
}

.cookies-card {
  width: 520px;
  padding: 30px;
  color: #1E2337;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all .5s;
  background: #fff;
  border-radius: 5px;
  border: 1px solid rgb(var(--base));
}

.cookies-card.hide {
  bottom: -500px !important;
}

.radius--10px {
  border-radius: 10px;
}

.cookies-card__icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: #fff;
  font-size: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.cookies-card__content {
  margin-bottom: 0;
}

.cookies-btn {
  color: #363636;
  text-decoration: none;
  padding: 10px 35px;
  margin: 3px 5px;
  display: inline-block;
  border-radius: 999px;
}

.cookies-btn:hover {
  color: #363636;
}


@media (max-width: 767px) {
  .cookies-card {
    width: 100%;
    left: 0;
    bottom: 0;
    font-size: 14px;
    padding: 15px;
  }
}




.hover-input-popup {
  position: relative;
  z-index: 999;
}

.input-popup {
  display: none;
}

.hover-input-popup .input-popup {
  display: block;
  position: absolute;
  bottom: 130%;
  left: 50%;
  width: 280px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.input-popup::after {
  position: absolute;
  content: '';
  bottom: -19px;
  left: 50%;
  margin-left: -5px;
  border-width: 10px 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent #1a1a1a transparent;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.input-popup p {
  padding-left: 20px;
  position: relative;
}

.input-popup p::before {
  position: absolute;
  content: '';
  font-family: 'Line Awesome Free';
  font-weight: 900;
  left: 0;
  top: 4px;
  line-height: 1;
  font-size: 18px;
}

.input-popup p.error {
  text-decoration: line-through;
}

.input-popup p.error::before {
  content: "\f057";
  color: #ea5455;
}
.section h2 {
    font-weight: 500;
    font-size: 30px;
}
.input-popup p.success::before {
  content: "\f058";
  color: #28c76f;
}



.show-filter {
  display: none;
}

@media(max-width:767px) {
  .responsive-filter-card {
    display: none;
    transition: none;
  }

  .show-filter {
    display: block;
  }
}


.maintenance-page {
  display: grid;
  place-content: center;
  width: 100vw;
  height: 100vh;
}

.language-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 8px;
  border-radius: 4px;
  width: max-content;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.language_flag {
  flex-shrink: 0;
  display: flex;
}

.language_flag img {
  height: 20px;
  width: 20px;
  object-fit: cover;
  border-radius: 50%;
}

.language-wrapper.show .collapse-icon {
  transform: rotate(180deg)
}

.collapse-icon {
  font-size: 14px;
  display: flex;
  transition: all linear 0.2s;
}

.language_text_select {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0px;
  display: flex;
  line-height: 1;
}

.language-content {
  display: flex;
  align-items: center;
  gap: 6px;
}


.language_text {
  color: black;
  margin-bottom: 0px;
}

.language-list {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  cursor: pointer;
  border: 0 !important;
}

.language .dropdown-menu {
  position: absolute;
  -webkit-transition: ease-in-out 0.1s;
  transition: ease-in-out 0.1s;
  opacity: 0;
  visibility: hidden;
  top: 100%;
  display: unset;
  background: #fff;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  min-width: 150px;
  border-radius: 8px;
  border: 1px solid rgb(0 0 0 / 10%);
  padding-block: 6px !important;
  right: 0 !important;
  left: auto !important;
}
.section h2 {
    font-weight: 500;
    font-size: 30px;
}
.language .dropdown-menu.show {
  visibility: visible;
  opacity: 1;
}

.form-control:disabled {
  background-color: #e9ecef8a;
  opacity: 1;
}
.section {
    text-align: justify;
}
.removeFile i{
  color: hsl(var(--white));
}