@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

/* Custom Fonts  */
@font-face {
    font-family: "GT-Walsheim";
    src: url("../fonts/GT-Walsheim-Bold.woff2") format("woff2"),
        url("../fonts/GT-Walsheim-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "GT-Walsheim";
    src: url("../fonts/GT-Walsheim-Medium.woff2") format("woff2"),
        url("../fonts/GT-Walsheim-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "GT-Walsheim";
    src: url("../fonts/GT-Walsheim-Regular.woff2") format("woff2"),
        url("../fonts/GT-Walsheim-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --black: #000000;
    --black-1: #212121;
    --white: #ffffff;
    --white-1: #f6f6f9;
    --white-2: #f9fafb;
    --red: #FF5C48;
    --orange: #FF9A24;
    --green: #006468;
    --red-1: #ffe8e5;
    --orange-1: #ffead2;
    --green-1: #CCE0E1;
    --paragraph-color: #000000;
    --filter-1: initial;
}

html.dark-mode {
    --black: #ffffff;
    --black-1: #f6f6f9;
    --white: #000000;
    --white-1: #212121;
    --white-2: #333333;
    --red: #FF5C48;
    /*#d61700*/
    --orange: #FF9A24;
    --green: #009ba2;
    --red-1: #FF5C48;
    --orange-1: #FF9A24;
    --green-1: #006468;
    --paragraph-color: #ffffff;
    --filter-1: invert(1) brightness(1000);
}


body {
    color: var(--paragraph-color);
    background-color: var(--white);
    font-family: "GT-Walsheim", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
}

a,
a:focus,
a:hover {
    text-decoration: none;
}

.text-black {
    color: var(--black) !important;
}

.text-white {
    color: var(--white) !important;
}

.text-red {
    color: var(--red) !important;
}

.text-orange {
    color: var(--orange) !important;
}

.text-green {
    color: var(--green) !important;
}

.bg-white {
    background-color: var(--white) !important;
}

.bg-white-1 {
    background-color: var(--white-1) !important;
}

.bg-black {
    background-color: var(--black) !important;
}

.bg-black-1 {
    background-color: var(--black-1) !important;
}

.bg-red {
    background-color: var(--red) !important;
}

.bg-orange {
    background-color: var(--orange) !important;
}

.bg-green {
    background-color: var(--green) !important;
}

.bg-green-1 {
    background-color: var(--green-1) !important;
}

ul,
ol {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
}

h1,
h2,
h3 {
    font-weight: 500;
    color: var(--black);
}

h1 {
    font-size: 72px;
    font-weight: bold;
}

h2 {
    font-size: 48px;
    margin-bottom: 15px;
}

h3 {
    font-size: 20px;
}


p:last-child {
    margin-bottom: 0px;
}

.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}

.z-1 {
    position: relative;
    z-index: 1;
}

.image-cover {
    height: 100%;
    position: relative;
    padding: 20px;
    min-height: 300px;
    border: 1.5px solid var(--green);
    border-bottom: 10px solid var(--green);
    border-radius: 10px;
    overflow: hidden;
}

.image-cover img {
    position: absolute;
    left: 10px;
    top: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    object-fit: cover;
    object-position: top center;
    border-radius: 10px;
}

.image-cover-1 {
    min-height: auto;
    border: 0px;
    padding: 0px;
    border-radius: 0px;
}

.image-cover-1 img {
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    border-radius: 0px;
}


.tt-style-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0px;
    right: 0;
    width: 48px;
    height: 48px;
    border: 1px solid var(--green);
    font-size: 17px;
    color: #fff !important;
    cursor: pointer;
    z-index: 99999;
    border-radius: 100%;
    line-height: 1;
    transition: all 0.2s;
}

.tt-style-switch .bi {
    color: var(--black);
    z-index: 9999;
}

/* Header Styles */
.header {
    position: absolute;
    background-color: transparent;
    padding: 16px 12px;
    width: 100%;
    z-index: 999;
    /*    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;*/
    /*box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);*/
}

.header.sticky {
    position: fixed;
    padding: 12px 0px;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    margin-top: 0;
    background: var(--white-1);
    -webkit-animation: sticky 1.2s;
    animation: sticky 1.2s;
    -webkit-box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.2);
}

html.dark-mode .header.sticky {
    -webkit-box-shadow: 0px 0px 15px 0px rgba(255, 255, 255, 0.5);
    box-shadow: 0px 0px 15px 0px rgba(255, 255, 255, 0.5);
}

@-webkit-keyframes sticky {
    0% {
        top: -200px;
    }

    100% {
        top: 0;
    }
}

@keyframes sticky {
    0% {
        top: -200px;
    }

    100% {
        top: 0;
    }
}

.logo {
    width: 140px;
    height: auto;
}

.inner-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;

}

.header-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.hamburger-btn {
    width: 48px;
    height: 48px;
    background-color: var(--white);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: all 0.3s ease;
    line-height: 1;
    text-transform: uppercase;
    color: var(--black);
    border: 1px solid var(--green);
}

.hamburger-btn svg path {
    fill: var(--red);
}

.hamburger-btn:hover svg path {
    fill: var(--green);
}

/* Overlay Styles */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}

html.dark-mode .overlay {
    background-color: rgba(255, 255, 255, 0.05);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Menu Panel Styles */
.menu-panel {
    position: fixed;
    top: 18px;
    right: -400px;
    width: 400px;
    height: calc(100% - 36px);
    background-color: var(--white);
    z-index: 1001;
    transition: right 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    border-radius: 12px;
}

/*html.dark-mode .menu-panel{
    background-color:#2c2c2c;
}*/
.menu-panel.active {
    right: 18px;
}

/* Header Section */
.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.menu-logo {
    width: fit-content;
    text-decoration: none;
}

.menu-logo img {
    width: 48px;
    border-radius: 100%;
}

.close-icon {
    font-size: 20px;
    color: var(--black);
    cursor: pointer;
    transition: all 0.2s ease;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    border: 1px solid var(--green);
}


.close-icon:hover {
    color: var(--white);
    background-color: var(--black);
}

/* Content Box */
.content-box {
    border: 1px solid var(--green);
    border-radius: 12px;
}

.content-box .btn-default {
    margin: 14px;
}

.menu-item {
    padding: 14px 18px;
    font-size: 20px;
    color: var(--black);
    text-decoration: none;
    display: block;
    border-bottom: 1px solid var(--black);
    transition: all 0.2s ease;
    position: relative;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:hover {
    color: var(--red);
}

.menu-item.active {
    color: var(--red);
}

/* Services Dropdown */
.services-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.chevron-icon {
    transition: transform 0.3s ease;
}

.chevron-icon.rotate {
    transform: rotate(180deg);
}

.services-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.services-dropdown.active {
    max-height: 400px;
}

.service-item {
    padding: 10px 18px;
    color: var(--black);
    text-decoration: none;
    display: block;
    border-bottom: 1px dashed var(--green);
}


.service-item:hover {
    color: var(--red);
}



.hero {
    position: relative;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 150px;
    padding-bottom: 63.55px;
    min-height: 60vh;
    text-align: center;
    overflow: hidden;
}

.hero-text {
    padding: 20px 0px 40px 0px;
}

.hero-image {
    margin-bottom: 100px;
    border-radius: 30px;
    width: 100%;
}

.z-3 {
    position: relative;
    z-index: 3;
}

.hero p {
    font-size: 20px;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.main-hero {
    padding-top: 100px;
    padding-bottom: 0px;
    min-height: 100vh;
}

.hero-shape-1 {
    position: absolute;
    width: 100%;
    top: 15%;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    opacity: 1;
    z-index: 1;
    filter: invert(0) brightness(0);
    opacity: .76;
}

html.dark-mode .hero-shape-1 {
    filter: invert(1) brightness(1000);
    opacity: 1;
}

.hero-shape-1 img {
    width: 100%;

}

.hero:before,
.hero:after {
    content: "";
    position: absolute;
    bottom: 0;
    width:580px;
    height:560px;
    z-index: 1;
    background: linear-gradient(180deg, var(--red-1), var(--orange-1), var(--green-1));
    mix-blend-mode: normal;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: 2;
    bottom: 0px;
}

.hero:before {
    left: 0%;
    -webkit-transform: matrix(-1, 0, 0, 1, 0, 0);
    -ms-transform: matrix(-1, 0, 0, 1, 0, 0);
    transform: matrix(-1, 0, 0, 1, 0, 0);
    -webkit-clip-path: polygon(100% 1%, 100% 100%, 40% 50%);
    clip-path: polygon(100% 1%, 100% 100%, 40% 50%);
}

.hero:after {
    right: 0%;
    -webkit-transform: matrix(-1, 0, 0, 1, 0, 0);
    -ms-transform: matrix(-1, 0, 0, 1, 0, 0);
    transform: matrix(-1, 0, 0, 1, 0, 0);
    -webkit-clip-path: polygon(0% 0%, 60% 50%, 0% 100%);
    clip-path: polygon(0% 0%, 60% 50%, 0% 100%);
    z-index: 2;
}

.btn-default {
    font-size: 18px;
    line-height: 1;
    padding: 22px 27.3px;
    border-radius: 6px;
    font-weight: 500;
    width: fit-content;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: inline-flex;
    align-items: center;
    text-align: center;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    color: #ffffff !important;
    background-color: var(--red);
    z-index: 0;
    overflow: hidden;
    position: relative;
    letter-spacing: -0.01em;
    transform-style: preserve-3d;
}

.btn-default .btn-wraper {
    transition: opacity 0.2s, transform 0.2s;
    transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.btn-default:hover .btn-wraper {
    transform: translateY(-150%);
    opacity: 0;
}

.btn-default:before {
    position: absolute;
    content: '';
    border-radius: inherit;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 1;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: 102% 102%;
    opacity: 0;
}

.btn-default:after {
    content: attr(data-text);
    display: inline-block;
    position: absolute;
    top: 50%;
    opacity: 0;
    transform: translate(0, 100%);
    transition: opacity 0.2s, transform 0.2s;
    transition-timing-function:
        cubic-bezier(0.455, 0.03, 0.515, 0.955);
    white-space: nowrap;
}

.btn-default:hover:before {
    opacity: 1;
}

.btn-default:hover:after {
    transform: translate(0%, -50%);
    opacity: 1;
}

/*.bg-filter-1 {
    position: absolute;
    top: -25%;
    left: -50%;
    width: 100%;
    height: 50%;
    background: radial-gradient(circle, var(--red) 0%, transparent 70%);
    z-index: 0;
}

.bg-filter-2 {
    position: absolute;
    top: -25%;
    left: 50%;
    width: 100%;
    height: 50%;
    background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
    z-index: 0;
}

.light-filter {
    filter: blur(500px);
}

html.dark-mode .light-filter {
    filter: blur(180px);
}*/

.home-arrow {
    margin-left: auto;
    display: block;
    width: 250px;

}

.home-arrow.home-arrow-dark {
    display: none;
}

html.dark-mode .home-arrow {
    display: none;
}

html.dark-mode .home-arrow.home-arrow-dark {
    display: block;
}

.shape-1 {
    position: absolute;
    left: 100px;
    bottom: -50px;
    width: 150px;
    animation: banner_animo_2 linear 2s infinite alternate;
    filter: var(--filter-1);
}

@keyframes banner_animo_2 {
    from {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

    to {
        transform: scale(1.15);
        -webkit-transform: scale(1.15);
        -moz-transform: scale(1.15);
        -ms-transform: scale(1.15);
        -o-transform: scale(1.15);
    }
}

.home-1 p {
    font-size: 24px;
}

.home-2 {
    border-radius: 120px 120px 0px 0px;
}

.services-card {
    background: var(--white);
    padding: 20px;
    border-radius: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    -webkit-box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.4s;
    overflow: hidden;
}

.services-card * {
    position: relative;
    z-index: 1;
}

.services-card::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 10px;
    transition: all 0.4s;
    left: 50%;
    border-radius: 16px;
    background: linear-gradient(90deg, #2E0797 0%, #726EFC 100%);
    background: linear-gradient(90deg, var(--red) 0%, var(--orange) 100%);
    background: linear-gradient(90deg, var(--red-1) 0%, var(--orange-1) 100%);
    visibility: hidden;
    opacity: 0;
    top: 0;
    z-index: 0;
}

.services-card:hover::after {
    visibility: visible;
    opacity: 1;
    transition: all 0.4s;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

html.dark-mode .services-card {
    -webkit-box-shadow: 0px 0px 60px 0px rgba(255, 255, 255, 0.05);
    box-shadow: 0px 0px 60px 0px rgba(255, 255, 255, 0.05);
}

.services-card h3 {
    font-size: 20px;
}

.services-card h3 a {
    color: var(--black);
}

.services-card-icon {
    width: 70px;
    height: 70px;
    flex: 0 0 70px;
    padding: 12px;
    transition: all 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red-1);
    border-radius: 100%;
    background: linear-gradient(90deg, #2E0797 0%, #726EFC 100%);
    background: linear-gradient(90deg, var(--red) 0%, var(--orange) 100%);
    background: linear-gradient(90deg, var(--red-1) 0%, var(--orange-1) 100%);
    border: 1px solid var(--red);
}

.services-card:hover .services-card-icon {
    transform: rotateY(-180deg);
    transition: all 0.4s;
}

.services-card-icon img {
    width: 100%;
    filter: var(--filter-1);
}

.services-card .arrow {
    position: absolute;
    right: -100px;
    top: -100px;
    transition: all 0.4s;
}

.services-card:hover .arrow {
    top: 16px;
    right: 16px;
    transition: all 0.3s;
}

.services-card .arrow a {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 50%;
    transition: all 0.4s;
    display: inline-block;
    background: var(--white);
    color: var(--black);
    line-height: 40px;
    border-radius: 50%;
    transform: rotate(-45deg);
}

.home-card {
    background-color: var(--white-1);
    background-image: linear-gradient(0deg, var(--red-1) 0%, var(--white) 100%);
    border: 1px solid var(--red);
    padding: 18px 24px 24px;
    border-radius: 16px;
    margin-bottom: 40px;
    position: relative;
}

.home-card * {
    position: relative;
    z-index: 1;
}

.home-card:last-child {
    margin-bottom: 0px;
}

.home-card .icon-box-icon {
    display: inline-block;
    margin-right: 20px;
    position: relative;
    top: 0px;
}

.home-card .icon-box-icon * {
    position: relative;
    z-index: 1;
}

.home-card .icon-box-icon:before {
    content: "";
    position: absolute;
    top: -18px;
    width: 70px;
    height: 80px;
    background-color: transparent;
    border: 1px solid var(--red);
    z-index: 0;
    border-radius: 0 0 100px 100px;
    left: 0px;
    border-top: 0px;
}

.home-card h3 {
    display: inline-block;
    margin: 0 0 25px;
    vertical-align: middle;
}

.home-card .img-icon {
    width: 55px;
    height: 55px;
    flex: 0 0 55px;
    border-radius: 100%;
    background-image: linear-gradient(90deg, var(--red) 0%, var(--orange) 100%);
    background: var(--red-1);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 7.5px;
    padding: 8px;
}

.home-card .img-icon img {
    width: 100%;
    filter: var(--filter-1);
}

.home-card:after {
    content: "";
    position: absolute;
    bottom: -0;
    left: 0;
    width: 100%;
    height: 0;
    background-image: linear-gradient(0deg, #ffffff 0%, #e5edfb 100%);
    background-image: linear-gradient(0deg, var(--white) 0%, var(--red-1) 100%);
    z-index: 0;
    transition: 0.4s;
    border-radius: 15px;
}

.home-card:hover:after {
    height: 100%;
}

.inner-cta {
    padding: 60px 250px 140px;
    border-radius: 30px;
    text-align: center;
    background: var(--white);
    background-image: url(../images/cta-bg.png);
    background-size: 100% 100%;
    background-position: bottom center;
    border: 1.5px solid var(--green);
    background-repeat: no-repeat;
    border-top: 10px solid var(--green);
    border-bottom: 10px solid var(--green);
}

.inner-cta-2 {
    padding: 60px 204px 140px;
}

html.dark-mode .inner-cta {
    background-image: url(../images/cta-bg-1.png);
}

.bet-card {
    background-color: var(--green-1);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    overflow: hidden;
}

.bet-card.bet-card-red {
    background-color: var(--white-1);
    border: 1px solid var(--red);
    border-bottom: 10px solid var(--red);
}

.bet-card-header {
    background-image: url(../images/card-header.png);
    background-size: 100% 100%;
    padding: 12px;
    margin-top: -30px;
}

html.dark-mode .bet-card-header {
    background-image: url(../images/card-header-1.png);
}


.bet-card-header h3 {
    margin-top: 10px;
    margin-bottom: 5px;
}

.bet-card p {
    margin-top: 10px;
}

.c-card {
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
}

.c-card-icon {
    width: 70px;
    height: 70px;
    flex: 0 0 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 15px;
}

.c-card-icon img {
    width: 100%;
    filter: var(--filter-1);
}

/*.bet-3 h2{
        position: absolute;
    left: 100px;
    top: 100px;
}*/
.bet-3 .c-card-icon {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
}

.single-image {
    width: 100%;
    border-radius: 12px;
}

.bet-list {
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 20px;
    flex-wrap: wrap;
}

.list-item {
    /*    width:calc(50% - 20px);
    flex:0 0 calc(50% - 20px);
*/
}

.list-item {
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 6px;
}

.list-item i {
    display: block;
    font-size: 18px;
}

.frs-6 .bet-card-header,
.tm-last .bet-card-header {
    background-image: url(../images/card-header-2.png);
}

html.dark-mode .frs-6 .bet-card-header,
html.dark-mode .tm-last .bet-card-header {
    background-image: url(../images/card-header-3.png);
}

.frs-3 * {
    position: relative;
    z-index: 1;
}

.frs-3::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0px;
    background-image: url(../images/shape-3.png);
    background-size: cover;
    z-index: 0;
    filter: invert(0) brightness(0);
    opacity: .15;
}

html.dark-mode .frs-3::before {
    filter: invert(1) brightness(1000);
    opacity: .3;
}

.frs-3 .c-card {
    background-color: var(--red-1);
    height: 100%;
}

html.dark-mode .frs-3 .c-card {
    background-color: #c66b00;
}

.frs-4 * {
    position: relative;
    z-index: 1;
}

.frs-4-cards {
    display: flex;
    gap: 16px;
    align-items: start;
}

.frs-4 .c-card {
    align-items: center;
    width: calc(20% - 16px);
    flex: 0 0 calc(20% - 16px);
    height: auto;
    padding: 25px 16px 20px 16px;
    border: 1px solid var(--black);
}

.frs-4 .c-card h3 {
    font-size: 17px;
}

.frs-4 .c-card p {
    font-size: 17px;
}

.frs-4 .c-card-icon {
    background-color: var(--red-1);
    padding: 12px;
    border-radius: 100%;
    outline: 1.5px solid var(--green);
    outline-offset: 5px;

}

.c-card-1,
.c-card-5 {
    margin-top: 100px;
}

.c-card-1,
.c-card-5 {
    min-height: 276px;
}

.c-card-2,
.c-card-4 {
    margin-top: 50px;
}


.shape-2 {
    position: absolute;
    width: 100%;
    bottom: 0px;
    left: 50%;
    transform: translatex(-50%);
    filter: invert(1) brightness(0);
    bottom: -35%;
    z-index: 0;
}

html.dark-mode .shape-2 {
    filter: initial;
}

.frs-5 .c-card {
    flex-direction: row;
    padding: 0px;
    background-color: transparent;
    gap: 18px;
    margin-bottom: 20px;
}

.frs-5 .c-card-icon {
    padding: 0px;
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    margin-bottom: 0px;
}

.p-card {
    background-color: var(--white);
    padding: 20px;
    border-radius: 12px;
    border: 1.5px solid var(--green);
    border-bottom: 10px solid var(--green);
    margin-top: 30px;
}

.tm-1.frs-5 .c-card {
    gap: 10px;
}

.tm-1.frs-5 .c-card-icon {
    width: 18px;
    height: auto;
    flex: 0 0 18px;
    margin-top: 3px;
}

.tm-1.frs-5 .c-card-icon img {
    filter: initial;
}

.tm-last .c-card-icon {
    width: 60px;
    height: 60px;
    width: 0 0 60px;
}

.tm-3.frs-5 .c-card {
    background-color: var(--white-1);
    padding: 20px;
    align-items: center;
    border: 1px solid var(--red);
    border-bottom: 10px solid var(--red);
    height: 100%;
}

.tm-2 .tm-2-card {
    background-image: linear-gradient(0deg, var(--green-1) 0%, var(--white-1) 100%);
    padding: 20px;
    height: 100%;
    border-radius: 12px;
    border: 1px solid var(--green);
    text-align: center;
    position: relative;
    padding-top: 50px;
}

.tm-2 .tm-2-card h3 {
    position: absolute;
    border-radius: 100px;
    border: 1px solid var(--green);
    padding: 12px 30px;
    top: -21px;
    margin-left: auto;
    margin-right: auto;
    left: 20px;
    right: 20px;
    background: var(--green-1);
}

.te-last .bet-card-red .c-card-icon {
    background-color: var(--red-1);
    margin-left: auto;
    margin-right: auto;
    padding: 12px;
    border-radius: 100%;
    outline: 1px solid var(--red);

}

html.dark-mode .te-last .bet-card-red .c-card-icon {
    background-color: #41140e;
}

html.dark-mode .te-last .bet-card-red .c-card-icon img {}

.tr-3 * {
    position: relative;
    z-index: 1;
}

.tr-3::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: -52%;
    right: 0px;
    background-image: url(../images/bg-shape-2.png);
    background-position: top right;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: .3;
}

html.dark-mode .tr-3::before {
    filter: invert(1) brightness(1000);
    opacity: .7;
}

.tr-3 .c-card {
    height: 100%;
    justify-content: space-between;
    gap: 40px;
    padding: 25px 20px 20px;
    border: 1px solid var(--red);
    background-image: url(../images/card-shape-1.svg);
    background-position: bottom left;
    background-size: 1200px;
    background-repeat: no-repeat;
    background-color: transparent;
}

html.dark-mode .tr-3 .c-card {
    background-image: url(../images/card-shape-2.svg);
}

.tr-3 .c-card .c-card-icon img {
    filter: initial;
}

.tr-3 .row:nth-child(2) .col-md-4:nth-child(1) {
    margin-top: 160px;
}

.tr-3 .row:nth-child(2) .col-md-4:nth-child(2) {
    margin-top: 80px;
}

.tr-3 .c-card .c-card-icon {
    margin-bottom: 0px;
    margin-left: auto;
}

.tr-3 h2 {
    margin-left: 20px;
}

.tr-3-row {
    margin-top: -150px;
}

.tr-2 {
    z-index: 1;
}

.tr-2 .c-card-icon {
    margin-left: auto;
    margin-right: auto;
}

.tr-2 .c-card-icon img {
    filter: initial;
}

.tr-2-row-2,
.tr-2-row-3 {
    position: relative;
    border-bottom: 1.5px solid #3c414a;
}

.tr-2 .row .col-md-4 {
    position: relative;
    padding-bottom: 20px;
}

.tr-2 .row .col-md-4:nth-child(1)::before {
    display: none;
}

.tr-2 .row .col-md-4::before {
    position: absolute;
    content: '';
    left: -10px;
    bottom: 0px;
    height: 156px;
    width: 20px;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-image: url(../images/line.png);
}

.tr-2 .image-cover img {
    object-position: right bottom;
}

.inner-ra-2 {
    background-color: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: start;
    justify-content: start;
    flex-wrap: wrap;
    overflow: hidden;
}

.inner-ra-2 .ra-2-card {
    width: 50%;
    flex: 0 0 50%;
    padding: 30px 50px;
    position: relative;
}

.inner-ra-2 .ra-2-card:nth-child(1) {
    border-right: 2px solid var(--green);
}

.inner-ra-2 .ra-2-card:nth-child(3) {
    width: 100%;
    flex: 0 0 100%;
    border-top: 2px solid var(--green);
    padding-left: 200px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.inner-ra-2 .c-card-icon {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
}

.inner-ra-2 .c-card-icon img {
    filter: var(--filter-1);
}

.inner-ra-2 .c-card-icon:nth-child(3) {
    margin-bottom: 0px;
}

.arrow-3 {
    position: absolute;
    left: 60px;
    top: -2px;
    width: 100px;
}

.arrow-3.arrow-3-dark {
    display: none;
}

html.dark-mode .arrow-3 {
    display: none;
}

html.dark-mode .arrow-3.arrow-3-dark {
    display: block;
}

.bet-card.bet-card-ra {
    background-color: var(--red-1);
    border: 1px solid var(--red);
    padding: 20px 30px;
    border-top: 10px solid var(--red);
}

html.dark-mode .bet-card.bet-card-ra {
    background-color: #43100a;
}

.bet-card.bet-card-ra h3 {
    font-size: 30px;
}

.ra-2 {
    overflow: hidden;
}

.ra-2 .c-card {
    padding: 16px 20px;
    height: 100%;
    background-color: var(--white-1);
}

.ra-2 .c-card-icon {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    border-radius: 10px;
    padding: 6px;
    background-color: var(--red-1);
    border: 1px solid var(--red);
}

.ra-2 .c-card-icon img {
    filter: initial;
}

html.dark-mode .ra-2 .c-card-icon {
    background-color: #41140e;
}

.ra-2 .row {
    position: relative;
    padding-bottom: 48px;
}

.ra-2 .row:first-child {
    padding-right: 36px;
}

.ra-2 .row:nth-child(2) {
    padding-left: 36px;
}

.ra-2 .row * {
    position: relative;
    z-index: 1;
}

.ra-2 .row>* {
    padding-left: 24px;
    padding-right: 24px;
}

.ra-2 .row::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: transparent;
    left: 24px;
    top: calc(50% + 96px);
    transform: translateY(-50%);
    background-image: url(../images/lines-curve.png);
    background-position: center left;
    filter: var(--filter-1);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
}

.ra-2 .row::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: transparent;
    left: -150px;
    right: 0px;
    margin: 0 auto;
    top: calc(50% - 24px);
    transform: translateY(-50%);
    background-image: url(../images/lines.png);
    background-position: center center;
    filter: var(--filter-1);
    background-size: 236px;
    background-repeat: no-repeat;
    z-index: 0;
}

.ra-2 .row:first-child::before {
    background-image: url(../images/lines-curve-1.png);
    left: auto;
    background-position: right;
    right: 24px;
}

.ra-2 .row:last-child::after {
    left: 0px;
    right: -180px;
}

.ra-2 .row:last-child::before,
.ra-2 .row:first-child::after {
    display: none;
}





footer.main-footer {
    background: var(--white-1);
    color: var(--black);
    position: relative;
}

footer.main-footer.legal-footer {
    background: var(--white);
}

footer.main-footer::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    background-color: var(--white);
    border-radius: 50px 50px 0px 0px;
    border-top: 10px solid var(--red-1);
}

footer.main-footer * {
    position: relative;
    z-index: 1;
}

.footer {
    padding: 100px 12px 20px;
}

.copyright {
    padding-bottom: 40px;
}

.copyright ul {
    display: flex;
    margin-left: auto;
    width: fit-content;
    gap: 15px;
}

footer p {
    color: var(--black);
}

a.company-logo {
    width: fit-content;
    margin-bottom: 13px;
    display: block;
}

a.company-logo img {
    width: 140px;
}

.company-details {
    margin-top: 3px;
}

footer h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--red);
}

footer ul {
    margin: 0px;
    padding: 0px;
}

footer ul li {
    list-style-type: none;
}

footer ul li a {
    color: var(--black);
    padding: 6px 0px;
    display: block;
    transition: .3s;
    text-decoration: none;
    width: fit-content;
}

footer ul li a.active {
    pointer-events: none !important;
    cursor: default !important;
    color: var(--red);
}

footer ul li a:hover {
    color: var(--red);
}

footer h2 {
    font-size: clamp(10px, 7vw, 90px);
    font-weight: 700;
    font-style: normal;
    line-height: normal;
    text-transform: uppercase;
    opacity: 0.2;
    background-image: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin: 0;
}

html.dark-mode footer h2 {
    opacity: 0.4;
    background-image: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 10000001;
}

.loader {
    width: 50px;
    aspect-ratio: 1;
    display: grid;
}

.loader::before,
.loader::after {
    content: "";
    grid-area: 1/1;
    border-radius: 50%;
    background: repeating-radial-gradient(farthest-side, #0000 0%, var(--red) 1% 10%, #0000 11% 30%);
    -webkit-mask: repeating-conic-gradient(var(--red) 0 36deg, #0000 0 72deg);
    animation: l19 4s infinite linear;
}

.loader::after {
    -webkit-mask: repeating-conic-gradient(#0000 0 36deg, #000 0 72deg);
    animation-direction: reverse;
}

@keyframes l19 {
    100% {
        transform: rotate(1turn)
    }
}

.legal-pages h2 {
    margin-bottom: 12px;
    font-size: 32px;
}

.legal-pages p+ul {
    margin-top: -8px;
}

.legal-pages ul+p {
    margin-top: -15px;
    margin-bottom: 20px;
}

.legal-pages ul {
    margin-bottom: 26px;
    padding-left: 20px;
}

.legal-pages ul li {
    list-style-type: disc;
    list-style-position: inside;
}

.legal-pages stronge {
    font-weight: 500;
}

.legal-pages a {
    color: var(--red-1);
    text-decoration: none;
}


.legal-pages ul li::marker {
    left: 0px;
    position: absolute;
}

#contactForm {}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    border: 1.5px solid var(--black) !important;
    color: var(--black);
    border-radius: 5px;
    box-shadow: none;
    outline: none;
    padding: 14px 10px 14px;
    background-color: transparent;
}

.recaptch-cover {
    border: 1.5px solid var(--black) !important;
    padding: 0px;
    position: relative;
    background-color: transparent;
    border-radius: 5px;
}

.recaptch-cover .recaptch-cover-header {
    padding: 12px 12px 12px 20px;
    text-align: left;
    display: block;
    border-bottom: 1.5px solid var(--black) !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.recaptch-cover .recaptch-cover-header button {
    background: transparent;
    color: var(--black);
    border-color: var(--red);
    border-radius: 3px;
}

.recaptch-cover .recaptch-cover-header button:active {
    background: var(--red-1);
    color: var(--black);
}

.recaptch-cover .recaptch-cover-header button:hover {
    background: var(--red-1);
    color: var(--black);
}

.form-control:focus {
    box-shadow: none;
    outline: none;
    background-color: transparent;
    border-color: blue;
    color: var(--black);
}

.loading-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 1111;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    color: #ffffff;
    display: none;
}

.loading-overlay.active {
    display: flex;
}

#refreshCaptcha {
    cursor: pointer;
}

.form-control::placeholder {
    color: rgba(0, 0, 0, .5);
    opacity: 1;
    /* Firefox */
}

.form-control::-ms-input-placeholder {
    /* Edge 12 -18 */
    color: rgba(0, 0, 0, .5);
}

html.dark-mode .form-control::placeholder {
    color: rgba(255, 255, 255, .5);
    opacity: 1;
    /* Firefox */
}

html.dark-mode .form-control::-ms-input-placeholder {
    /* Edge 12 -18 */
    color: rgba(255, 255, 255, .5);
}


.error {
    color: red;
    display: none;
}

#submitBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

#submitBtn.btn-default {
    border: 0px;
}

.jconfirm.jconfirm-modern .jconfirm-box {
    background: var(--white);
}

.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-title-c {
    color: var(--black);
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-default::before {
    display: none;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-default {
    background: var(--red);
    color: #ffffff;
    padding: 15px 40px;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-default:hover {
    background: #000000;
    color: #ffffff;
}

html.dark-mode .jconfirm .jconfirm-box .jconfirm-buttons button.btn-default:hover {
    background: #ffffff;
    color: var(--white) !important;
}

.hero p.sub-title {
    width: fit-content;
    border-radius: 1000px;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1;
    position: relative;
    padding-left: 12px;
    padding-right: 12px;
}

.hero p.sub-title::before {
    content: '';
    width: 0px;
    height: 100%;
    border-left: 1.5px solid var(--red);
    position: absolute;
    left: 0px;
    top: 0px;
}

.hero p.sub-title::after {
    content: '';
    width: 0px;
    height: 100%;
    border-left: 1.5px solid var(--red);
    position: absolute;
    right: 0px;
    top: 0px;
}

/* CAPTCHA Styles - HORIZONTAL DESIGN */

.recaptch-cover-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--red);
}

.recaptch-cover-body {
    display: flex;
    gap: 25px;
    padding: 0px 20px 20px;
    flex-direction: column;
}

.captcha-instruction-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 20px;
    border-radius: 10px;
    border: 1.5px solid var(--red);
    /* width: calc(50% - 25px);
    flex: 0 0 calc(50% - 25px);*/
}

.captcha-instruction-text {
    font-size: 20px;
    font-weight: 500;
}

.captcha-sequence {
    display: flex;
    gap: 25px;
    align-items: center;
}

.captcha-sequence-item {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--red);
    font-size: 30px;
    color: var(--red);
    position: relative;
    transition: transform 0.3s ease;
}

.sequence-number {
    position: absolute;
    top: -12px;
    left: -12px;
    background: var(--red-1);
    color: var(--black);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.captcha-selection-area {
    position: relative;
    min-height: 200px;
    background: linear-gradient(135deg, var(--white-1) 0%, var(--white) 100%);
    border-radius: 10px;
    border: 1.5px solid var(--black);
    padding: 25px;
    overflow: hidden;
    /*  width: calc(50% - 25px);
    flex: 0 0 calc(50% - 25px);*/
    background-image: url(../images/captcha-bg-light.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

html.dark-mode .captcha-selection-area {
    background-image: url(../images/captcha-bg-dark.jpg);
}

.captcha-selection-area * {
    position: relative;
    z-index: 2;
}

.captcha-selection-area::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    background-image: url(../images/hero-lines.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index:1;
    opacity:.4;
}
html.dark-mode .captcha-selection-area::before{
    opacity:1;
}
.captcha-selection-area::after {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .8);
    position: absolute;
    left: 0px;
    top: 0px;
}

html.dark-mode .captcha-selection-area::after {
    background: rgba(0, 0, 0, .7);
}


.captcha-hint {
    text-align: center;
    color: var(--black-1);
    font-size: 15px;
    margin-bottom: 20px;
    font-style: italic;
}

.captcha-options-container {
    position: relative;
    width: 100%;
    height: 140px;
    opacity: 0.4;
    transition: opacity 0.4s ease;
}

.captcha-options-container.active {
    opacity: 1;
}

/* Icon option with guaranteed non-overlapping positioning */
.captcha-option {
    position: absolute;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    cursor: pointer;
    /*box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);*/
    transition: all 0.3s ease;
    font-size: 30px;
    color: var(--black-1);
    z-index: 1;
    border: 1px solid transparent;
}

.captcha-option:hover {
    /*transform: scale(1.1);*/
    /*box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);*/
    z-index: 3;
}

.captcha-option.selected {
    background-color: var(--red-1);
    border: 1px solid var(--red);
    z-index: 4;
}

html.dark-mode .captcha-option.selected {
    background-color: #ff5c4845;
}

.selection-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--red-1);
    color: var(--black);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.captcha-status {
    margin-top: 15px;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 500;
    display: none;
    text-align: center;
    font-size: 16px;
}

.captcha-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.captcha-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}