*,
::after,
::before {
    box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
     :root {
        scroll-behavior: smooth;
    }
}

body {
    margin: 0;
    font-family: var(--bs-font-sans-serif);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    -webkit-text-size-adjust: 100%;
}

h1,
h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

h1 {
    font-size: calc(1.375rem + 1.5vw);
}

@media (min-width: 1200px) {
    h1 {
        font-size: 2.5rem;
    }
}

h3 {
    font-size: calc(1.3rem + 0.6vw);
}

@media (min-width: 1200px) {
    h3 {
        font-size: 1.75rem;
    }
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

ul {
    padding-left: 2rem;
}

ul {
    margin-top: 0;
    margin-bottom: 1rem;
}

a {
    color: #0d6efd;
    text-decoration: underline;
}

a:not([href]):not([class]) {
    color: inherit;
    text-decoration: none;
}

img,
svg {
    vertical-align: middle;
}

label {
    display: inline-block;
}

button {
    border-radius: 0;
}

button,
input {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button {
    text-transform: none;
}

[type="submit"],
button {
    -webkit-appearance: button;
}

::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-year-field {
    padding: 0;
}

::-webkit-inner-spin-button {
    height: auto;
}

::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
    padding: 0;
}

::file-selector-button {
    font: inherit;
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
}

iframe {
    border: 0;
}

.container {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -0.5);
    margin-left: calc(var(--bs-gutter-x) * -0.5);
}

.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
}

.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
}

@media (min-width: 768px) {
    .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    .col-md-9 {
        flex: 0 0 auto;
        width: 75%;
    }
}

@media (min-width: 992px) {
    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
}

.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
}

.alert {
    position: relative;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

.d-flex {
    display: flex !important;
}

.d-none {
    display: none !important;
}

.w-100 {
    width: 100% !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.align-items-center {
    align-items: center !important;
}

.order-3 {
    order: 3 !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.text-center {
    text-align: center !important;
}

@media (min-width: 768px) {
    .d-md-block {
        display: block !important;
    }
    .d-md-none {
        display: none !important;
    }
    .order-md-2 {
        order: 2 !important;
    }
    .mb-md-5 {
        margin-bottom: 3rem !important;
    }
}

@media (min-width: 992px) {
    .d-lg-block {
        display: block !important;
    }
    .d-lg-none {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .d-xl-none {
        display: none !important;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, sans-serif;
    color: #333;
}

img {
    max-width: 100%;
}

.container {
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-flex;
    padding: 10px 15px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    background: #2543f4;
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
}

.main {
    padding: 100px 0;
}

.main-title {
    font-size: 60px;
    text-transform: uppercase;
    color: #fff;
    font-family: Manrope;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 0;
}

.main-image {
    text-align: center;
}

.main-image img {
    border-top-left-radius: 28px;
    border-bottom-left-radius: 28px;
}

.form-wrap {
    min-height: 500px;
    padding: 35px 35px;
    flex-shrink: 0;
    border-bottom-right-radius: 28px;
    background: #fff;
}

.form-title {
    color: #171717;
    text-align: center;
    font-family: Manrope;
    font-size: 33px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 15px;
}

@media (max-width: 767px) {
    .form-title {
        font-size: 26px;
    }
}

h3.form-title {
    font-size: 33px;
}

@media (max-width: 767px) {
    h3.form-title {
        font-size: 26px;
    }
}

.form-input {
    width: 100%;
    height: 50px;
    flex-shrink: 0;
    border-radius: 10px;
    border: 1px solid #f0f0f0;
    background-color: #f0f0f0;
    padding-left: 15px;
}

.form-input-wrap {
    margin-bottom: 20px;
}

.form-button {
    display: inline-flex;
    padding: 21px 48px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 25px;
    background: #eac528;
    color: #111;
    font-size: 20px;
    text-transform: uppercase;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 10px 0;
    max-width: 700px;
    width: 100%;
}

.form-bottom {
    text-align: center;
}

@media (max-width: 991px) {
    .main {
        padding: 30px 0;
    }
    .main-title {
        text-align: center;
        font-size: 50px;
    }
    .main-image {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .btn {
        padding: 10px 15px;
        font-size: 18px;
    }
    .header-logo {
        margin: 0 auto;
    }
    .main-title {
        font-size: 40px;
    }
    .form-wrap {
        padding: 15px;
    }
    .form-input-wrap {
        margin-bottom: 15px;
    }
}

img {
    height: auto;
}

.main-wrap {
    background-position: center bottom;
    background-size: cover;
}

@media screen and (max-width: 767px) {
    .main-wrap {
        background: #1e0f00 !important;
    }
}

[data-error-status="inactive"] {
    display: none;
}

.form-input-wrap {
    position: relative;
}

input {
    border-radius: 10px;
    border: 1px solid #f0f0f0;
    background-color: #f0f0f0;
    width: 100%;
    height: 50px;
    padding: 15px 35px 15px 15px;
}

input.form-input {
    padding-right: 35px;
}

[data-check-icon] {
    position: absolute;
    right: 5px;
    font-size: 25px;
    line-height: 1;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #41ad48;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

[data-check-icon] img {
    max-width: 35px;
}

[data-check-icon="inactive"] {
    display: none;
}

[data-for-error] {
    width: 100%;
    font-weight: 400;
    margin-top: 0.25rem;
    padding: 5px;
    color: #fff;
    background-color: #eb162b;
    font-size: 12px;
}

.alert-danger {
    font-weight: 400;
    border: 0;
    padding: 5px;
    color: #fff;
    background-color: #eb162b;
    font-size: 12px;
    border-radius: 0;
}

.form-bottom {
    color: #000;
    margin-bottom: 15px;
}

.form-bottom label {
    font-size: 14px;
    font-weight: 400;
}

.form-bottom label {
    display: flex;
    text-align: left;
    align-items: flex-start;
}

.form-bottom label input[type="checkbox"] {
    flex-basis: 15px;
    min-width: 15px;
    height: 22px;
    margin-right: 10px;
    margin-top: 0;
}

.form-bottom svg {
    margin-top: 3px;
}

.modalDialog {
    height: 0;
    opacity: 0;
    display: none;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    background: #000;
    position: relative;
    z-index: 33;
}

@media screen and (max-width: 767px) {
    .header {
        padding: 20px 0;
    }
}

.header-logo {
    display: inline-flex;
    align-items: center;
    gap: 19px;
}

.header-logo-img {
    max-height: 36px;
    max-width: 36px;
}

.header-logo-name {
    color: #fff;
    font-family: Inter;
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.header-bar-text {
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0 10px;
    text-decoration: none;
}

.header-menu {
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 18px;
    flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
    .header-menu {
        display: flex !important;
        flex-wrap: nowrap;
        align-items: center;
    }
}

@media screen and (max-width: 767px) {
    .header-menu {
        font-size: 15px;
        white-space: nowrap;
        box-shadow: 0.3px 8px 8px 0 rgba(50, 35, 65, 0.29);
        position: absolute;
        top: 100%;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        background-color: #000;
        left: 0;
        padding: 10px 0;
        border-top: 1px solid #ddd;
        display: none;
    }
}

.header-menu a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5px 15px;
    border-radius: 10px;
    border: 2px solid transparent;
    color: #fff !important;
}

@media screen and (max-width: 991px) {
    .header-menu a {
        padding: 5px 10px;
    }
}

@media screen and (max-width: 767px) {
    .header-menu a {
        padding: 5px 8px;
    }
}

.header-menu li {
    padding: 0 5px;
}

@media screen and (max-width: 767px) {
    .header-menu li {
        padding: 0;
    }
}

.header-hamburger {
    display: none;
    height: 20px;
    min-width: 25px;
    z-index: 2;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 10px;
}

@media screen and (max-width: 767px) {
    .header-hamburger {
        display: flex;
    }
}

.header-hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    border-radius: 10px;
    background: #fff;
}

.header-hamburger span:first-child {
    transform-origin: 0% 0%;
}

.header-hamburger span:nth-child(3) {
    transform-origin: 0% 100%;
}

.risk-popup-btn {
    padding: 10px 30px;
    font-size: 22px;
    font-weight: 500;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none !important;
    color: #fff !important;
    text-align: center;
    border: 0;
    background: #eac528 !important;
    color: #111 !important;
    border-radius: 27px;
}

@media (max-width: 767px) {
    .risk-popup-btn {
        font-size: 18px;
    }
}

.dialog {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.dialog-container {
    position: fixed;
    z-index: 33;
    bottom: auto;
    top: 50%;
    left: 5px;
    right: 5px;
    transform: translate(0, -50%);
    margin: 0 auto;
    max-width: 1230px;
    box-sizing: content-box;
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    max-height: calc(100vh - 10px);
    overflow: auto;
    border-radius: 20px;
}

.dialog-header {
    padding: 15px 15px 0 15px;
    margin-bottom: 10px;
    position: relative;
    color: #000;
    text-align: center;
    font-weight: 700;
    font-size: 25px;
}

@media (max-width: 767px) {
    .dialog-header {
        font-size: 20px;
    }
}

.dialog-content {
    padding: 15px;
}

.dialog-close-over {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(0, -50%);
    font-size: 20px;
    font-weight: 700;
    width: 20px;
    text-align: center;
}

.dialog-text {
    overflow: hidden;
    position: relative;
    max-height: auto;
}

@media (max-width: 767px) {
    .dialog-text {
        max-height: 100px;
    }
}

.dialog-text::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg, #fff 0, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    display: none;
}

@media (max-width: 767px) {
    .dialog-text::after {
        display: block;
    }
}

.dialog-text-more {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.5;
    color: #333;
    margin-top: 5px;
    margin-bottom: 0;
    position: relative;
    text-decoration: underline !important;
    display: inline-block;
    display: none;
}

@media (max-width: 767px) {
    .dialog-text-more {
        display: inline-block;
    }
}

.dialog-text-wrap input[type="checkbox"] {
    display: none;
}

.dialog-all-button-row {
    padding: 15px;
    text-align: center;
}

.dialog-modal-check[type="checkbox"] {
    display: none;
}

.language {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-left: auto;
    color: #fff;
    font-size: 16px;
    z-index: 9999;
    align-self: center;
    margin-left: 0;
    background-color: transparent;
}

@media (max-width: 767px) {
    .language {
        font-size: 16px;
        margin-right: 5px !important;
        margin-left: 5px !important;
    }
}

.language img {
    margin-right: 10px;
    width: 21px;
}

.language span {
    display: flex;
    align-items: center;
    padding: 3px 5px;
    color: #fff;
    border: 1px solid transparent;
    border-bottom: 0;
}

.language span i {
    margin-left: 5px;
    vertical-align: middle;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 4px solid #fff;
}

.language-list {
    list-style: none;
    padding: 0 5px;
    margin-left: 0;
    position: absolute;
    top: 100%;
    right: 0;
    text-align: center;
    min-width: 100%;
    display: none;
    background-color: #fff;
    border: 1px solid;
}

.language-list a {
    color: #000;
    display: flex;
    align-items: center;
    text-decoration: none;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
}

* {
    box-sizing: border-box;
}

body {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
}

#main-wrap {
    background-image: url("../images/main-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
}

#i801l6 {
    max-width: 1240px;
}

#i8jsb5 {
    max-width: 1450px;
}

#i5exr7 {
    max-width: 1115px;
}

#i6a8hy {
    max-width: 1450px;
}

#i2s8w {
    margin-left: 15px;
}

.iti--allow-dropdown {
    width: 100%;
}

.about-bg {
    background-image: url(../images/about-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    color: #fff;
}

.logo {
    font-size: 19px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.forms {
    background-image: url("../images/login-bg.webp");
}

#iza36 {
    max-width: 1100px;
}