@charset "utf-8";

/* CSS Document */
@font-face {
    font-family: 'Satoshi-Light';
    src: url('../fonts/Satoshi-Light.woff2') format('woff2'),
        url('../fonts/Satoshi-Light.woff') format('woff'),
        url('../fonts/Satoshi-Light.ttf') format('truetype');
    font-weight: 300;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi-LightItalic';
    src: url('../fonts/Satoshi-LightItalic.woff2') format('woff2'),
        url('../fonts/Satoshi-LightItalic.woff') format('woff'),
        url('../fonts/Satoshi-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-display: swap;
    font-style: italic;
}

@font-face {
    font-family: 'Satoshi-Regular';
    src: url('../fonts/Satoshi-Regular.woff2') format('woff2'),
        url('../fonts/Satoshi-Regular.woff') format('woff'),
        url('../fonts/Satoshi-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi-Italic';
    src: url('../fonts/Satoshi-Italic.woff2') format('woff2'),
        url('../fonts/Satoshi-Italic.woff') format('woff'),
        url('../fonts/Satoshi-Italic.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
    font-style: italic;
}

@font-face {
    font-family: 'Satoshi-Medium';
    src: url('../fonts/Satoshi-Medium.woff2') format('woff2'),
        url('../fonts/Satoshi-Medium.woff') format('woff'),
        url('../fonts/Satoshi-Medium.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi-MediumItalic';
    src: url('../fonts/Satoshi-MediumItalic.woff2') format('woff2'),
        url('../fonts/Satoshi-MediumItalic.woff') format('woff'),
        url('../fonts/Satoshi-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
    font-style: italic;
}

@font-face {
    font-family: 'Satoshi-Bold';
    src: url('../fonts/Satoshi-Bold.woff2') format('woff2'),
        url('../fonts/Satoshi-Bold.woff') format('woff'),
        url('../fonts/Satoshi-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi-BoldItalic';
    src: url('../fonts/Satoshi-BoldItalic.woff2') format('woff2'),
        url('../fonts/Satoshi-BoldItalic.woff') format('woff'),
        url('../fonts/Satoshi-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
    font-style: italic;
}

@font-face {
    font-family: 'Satoshi-Black';
    src: url('../fonts/Satoshi-Black.woff2') format('woff2'),
        url('../fonts/Satoshi-Black.woff') format('woff'),
        url('../fonts/Satoshi-Black.ttf') format('truetype');
    font-weight: 900;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi-BlackItalic';
    src: url('../fonts/Satoshi-BlackItalic.woff2') format('woff2'),
        url('../fonts/Satoshi-BlackItalic.woff') format('woff'),
        url('../fonts/Satoshi-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-display: swap;
    font-style: italic;
}

@font-face {
    font-family: 'Satoshi-Variable';
    src: url('../fonts/Satoshi-Variable.woff2') format('woff2'),
        url('../fonts/Satoshi-Variable.woff') format('woff'),
        url('../fonts/Satoshi-Variable.ttf') format('truetype');
    font-weight: 300 900;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi-VariableItalic';
    src: url('../fonts/Satoshi-VariableItalic.woff2') format('woff2'),
        url('../fonts/Satoshi-VariableItalic.woff') format('woff'),
        url('../fonts/Satoshi-VariableItalic.ttf') format('truetype');
    font-weight: 300 900;
    font-display: swap;
    font-style: italic;
}

/* 	-----------------------------------------------------
    ------------------- General Styles ------------------
    ----------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Satoshi-Regular';
    color: #000000;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-size: 100%;
    overflow-x: hidden;
}

a {
    outline: none;
    outline-style: none;
    outline-width: 0;
    color: #000000;
    text-decoration: none;
}

a:hover,
a:active,
a:focus {
    outline: none;
    outline-style: none;
    outline-width: 0;
    color: #FFA202;
    text-decoration: none;
}

.clearfix:before,
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    overflow: hidden;
}

.clearfix:after {
    clear: both
}

.clearfix {
    zoom: 1
}

[contenteditable="true"]:focus {
    outline: none;
}

*:focus {
    outline: none;
}

img {
    margin: 0;
    padding: 0;
    outline-style: none;
    outline-width: 0;
    max-width: 100%;
    height: auto;
}

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

.text-left {
    text-align: left !important;
}

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

.d-block {
    display: block;
}

.d-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.container-fluid {
    margin: 0 auto;
    width: 100%;
    padding: 0 80px;
}

.container {
    margin: 0 auto;
    width: 100%;
    max-width: 1230px;
    padding: 0 30px;
}

@media only screen and (max-width:1366px) {
    .container-fluid {
        padding: 0 20px;
    }

    .container {
        padding: 0 20px;
    }
}

@media only screen and (max-width:760px) {
    .container-fluid {
        padding: 0 20px;
    }

    .container {
        padding: 0 20px;
    }
}

@media only screen and (max-width:1023px) {
    .auth-redesign-wrapper .categories-nav .dropDown_menu li a,
    .auth-redesign-wrapper .success-nav .dropDown_menu li a {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .auth-redesign-wrapper .categories-nav .dropDown_menu li a img,
    .auth-redesign-wrapper .success-nav .dropDown_menu li a img {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }
}

/* 	-----------------------------------------------------
        display: none;
    -------------------- Header Styles ------------------

    .auth-redesign-wrapper .categories-nav.open .dropDown_menu,
    .auth-redesign-wrapper .success-nav.open .dropDown_menu {
        display: block;
        width: 100%;
    }

    .auth-redesign-wrapper .categories-nav .dropDown_menu li,
    .auth-redesign-wrapper .success-nav .dropDown_menu li {
        margin-bottom: 10px;
    }

    .auth-redesign-wrapper .categories-nav .dropDown_menu li:last-child,
    .auth-redesign-wrapper .success-nav .dropDown_menu li:last-child {
        margin-bottom: 0;
    }
    ----------------------------------------------------- */
.header-section {
    padding: 0;
    width: 100%;
    transition: all .4s ease-in-out;
}

.header-top {
    padding: 5px 0;
    height: 36px;
    background: linear-gradient(90deg, rgba(217, 217, 217, 0) 30%, rgba(217, 217, 217, 0.3) 100%);
    position: relative;
    z-index: 9;
}

.header-top .container-fluid {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
}

.header-top nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
}

.header-top nav ul li {
    margin: 0;
    padding: 0;
    font-family: 'Satoshi-Medium';
    font-size: 12px;
    font-weight: 500;
    line-height: 26px;
    color: #666666;
}

.header-top nav ul li a {
    color: #666666;
    transition: .5s;
}

.header-top nav ul li a:hover {
    color: #000000;
    transition: .5s;
}

.lang-dropdown {
    position: relative;
    display: inline-block;
    font-family: 'Satoshi-Medium';
    font-size: 12px;
    font-weight: 500;
    line-height: 26px;
    color: #666666;
}

.lang-btn {
    font-family: 'Satoshi-Medium';
    font-size: 12px;
    font-weight: 500;
    line-height: 26px;
    color: #666666;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.lang-btn .arrow {
    font-size: 12px;
    margin-left: 5px;
}

.lang-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: #FFFFFF;
    border: none;
    display: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.lang-menu li {
    padding: 5px;
    cursor: pointer;
    font-size: 12px;
}

.lang-menu li:hover {
    background: #f2f2f2;
}

.lang-dropdown.active .lang-menu {
    display: block;
}

.header-bot {
    position: relative;
    z-index: 1;
}

.header-bot::before {
    content: "";
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(217, 217, 217, 0.5) 40%, rgba(217, 217, 217, 0) 100%);
    position: absolute;
    left: auto;
    top: 0;
}

.header-bot::after {
    content: "";
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(217, 217, 217, 0.5) 40%, rgba(217, 217, 217, 0) 100%);
    position: absolute;
    left: auto;
    bottom: 0;
}

.header-bot .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-bot aside {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-bot figure {
    padding: 20px 30px 20px 0;
    position: relative;
    z-index: 1;
}

.header-bot figure::after {
    content: "";
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, rgba(217, 217, 217, 0.5) 20%, rgba(217, 217, 217, 0) 100%);
    position: absolute;
    right: 0;
    top: 0;
}

.header-bot figure img {
    height: 40px;
}

.header-bot nav {
    padding: 20px 0 20px 30px;
    position: relative;
    z-index: 1;
}

.header-section .menu {
    margin: 0;
    padding: 0;
}

.menu-bar {
    list-style: none;
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 9;
    width: 300px;
    height: 100%;
    background: #FFFFFF;
    opacity: 0;
    transition: 0.4s;
    padding: 20px;
}

.menu-bar.show {
    left: 0;
    opacity: 1;
    box-shadow: 0px 10px 25px -3px #0000000D;
}

.menu-bar li {
    margin: 0;
}

.menu-bar li a {
    font-family: 'Satoshi-Medium';
    font-size: 16px;
    line-height: 40px;
    font-weight: 500;
    color: #000000;
    white-space: nowrap;
    transition: .5s;
}

.menu-bar.show li a {
    color: #000000;
    display: block;
}

.menu-bar.show li a.active {
    color: #000000;
    position: relative;
}

.menu-bar li a span {
    font-size: 12px;
}

.dropDown-list {
    position: relative;
}

.dropDown-list a.active {
    color: #000000;
}

.dropDown-list a span svg {
    width: 12px;
}

.dropDown-list a span svg path {
    transition: 0.4s;
}

.dropDown-list a.active span svg path {
    fill: #000000;
}

.dropDown-list a.active span svg {
    transform: rotate(180deg);
}

.dropDown_menu {
    display: none;
    position: relative;
    box-shadow: 0px 4px 44px 0px #00000026;
    list-style: none;
}

.menu-bar.show .dropDown_menu {
    box-shadow: none;
    padding: 0;
}

.dropDown_menu li {
    line-height: 1;
    margin-top: 0;
    margin-bottom: 15px;
}

.dropDown_menu li a {
    position: relative;
    font-family: 'Satoshi-Medium';
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: #000000;
    padding: 0 15px;
    white-space: nowrap;
    display: inline-block;
}

.toggle-btn {
    border: none;
    outline: none;
    background: transparent;
    width: 30px;
    height: 30px;
    font-size: 24px;
    padding: 0;
    color: #D9D9D9;
    position: absolute;
    right: 0;
    top: 50%;
    z-index: 99;
    cursor: pointer;
    transform: translate(0, -50%);
}

@media (min-width: 1024px) {
    .menu-bar {
        width: 300px;
    }

    .dropDown-list:hover .dropDown_menu {
        display: block !important;
    }
}

@media (min-width: 1024px) {
    .toggle-btn {
        display: none;
    }

    .menu-bar {
        position: relative;
        top: unset;
        left: unset;
        width: unset;
        opacity: 1;
        background: transparent;
        display: flex;
        justify-content: flex-end;
        gap: 30px;
        padding: 0;
        list-style: none;
    }

    .menu-bar li a:hover {
        color: #000000;
        transition: .5s;
    }

    .menu-bar li a.active {
        color: #000000;
        transition: .5s;
        position: relative;
    }

    .dropDown-list a.active {
        color: #000000;
    }

    .dropDown-list a.active span svg path,
    .dropDown-list a:hover span svg path {
        fill: #000000;
    }

    .dropDown_menu {
        list-style: none;
        position: absolute;
        top: 100%;
        left: -15px;
        z-index: 999;
        min-width: 160px;
        background: #FFFFFF;
        border-radius: 0;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    }

    .dropDown_menu li {
        margin: 0 !important;
    }

    .dropDown_menu li a {
        font-family: 'Satoshi-Medium';
        font-size: 16px;
        font-weight: 500;
        display: block;
        padding: 10px 15px;
    }

    .dropDown_menu li a:hover {
        color: #000000;
        background-color: #f2f2f2;
    }
}

.btn-find a {
    margin: 0;
    padding: 10px 20px 10px 50px;
    background: #1A365D;
    border: none;
    border-radius: 12px;
    font-family: 'Satoshi-Bold';
    font-size: 16px;
    font-weight: 700;
    line-height: 30px;
    color: #FFFFFF !important;
    white-space: nowrap;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: .4s ease-in-out;
}

.btn-find a:hover {
    background-color: #0F2A3B;
    transition: .4s ease-in-out;
}

.btn-find a::before {
    content: "";
    width: 16px;
    height: 16px;
    background-color: #FCA3013D;
    border-radius: 50%;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translate(0, -50%);
}

.btn-find a::after {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #FCA301;
    border-radius: 50%;
    position: absolute;
    left: 23px;
    top: 50%;
    transform: translate(0, -50%);
}

@media only screen and (max-width:760px) {
    .header-top {
        display: none;
    }

    .header-bot .btn-find {
        display: none;
    }

    .header-bot aside {
        width: 100%;
    }

    .header-bot figure::after {
        display: none;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .header-bot aside {
        width: calc(100% - 200px);
    }
}

@media only screen and (min-width:1024px) and (max-width:1080px) {
    .menu-bar {
        gap: 20px;
    }
}

/* 	-----------------------------------------------------
    ------------------- Content Styles ------------------
    ----------------------------------------------------- */
.content-section {
    min-height: 400px;
    padding-right: 50px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Satoshi-Bold';
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
    padding: 10px 0;
}

.content-section h1 {
    font-size: 54px;
}

.content-section h2 {
    font-size: 44px;
}

.content-section h3 {
    font-size: 40px;
}

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

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

.content-section h6 {
    font-size: 20px;
}

.content-section p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
    padding: 10px 0;
}

.content-section ul {
    margin: 0;
    padding: 0 0 0 15px;
    list-style: disc;
}

.content-section ul li {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
    margin: 5px 0;
}

.content-section ul ul {
    list-style: circle;
}

.content-section ol {
    margin: 0;
    padding: 0 0 0 18px;
    list-style: decimal;
}

.content-section ol li {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
    margin: 5px 0;
}

.content-section ol ol {
    list-style: lower-roman;
}

.btn-group {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.btn-01 {
    display: inline-block;
}

.btn-01 a {
    margin: 15px 0;
    padding: 10px 20px;
    background: #FCA300;
    border: none;
    border-radius: 12px;
    font-family: 'Satoshi-Bold';
    font-size: 16px;
    font-weight: 700;
    line-height: 30px;
    color: #0F0300 !important;
    white-space: nowrap;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: .4s ease-in-out;
}

.btn-01 a:hover {
    color: #FFFFFF !important;
    background-color: #0F2A3B;
    transition: .4s ease-in-out;
}

.btn-02 {
    display: inline-block;
}

.btn-02 a {
    margin: 15px 0;
    padding: 10px 20px;
    background: #FFFFFF;
    border: none;
    border-radius: 12px;
    font-family: 'Satoshi-Bold';
    font-size: 16px;
    font-weight: 700;
    line-height: 30px;
    color: #0F0300 !important;
    text-decoration: underline;
    white-space: nowrap;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: .4s ease-in-out;
}

.btn-02 a:hover {
    color: #FCA300 !important;
    transition: .4s ease-in-out;
}

@media only screen and (max-width:760px) {
    .content-section h1 {
        font-size: 40px;
    }

    .content-section h2 {
        font-size: 30px;
    }

    .content-section h3 {
        font-size: 26px;
    }

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

    /* .content-section h5 {
        font-size: 20px;
    } */

    .content-section h6 {
        font-size: 18px;
    }

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

    .content-section ul li {
        font-size: 14px;
    }

    .content-section ol li {
        font-size: 14px;
    }

    .btn-group {
        gap: 5px;
    }

    .btn-01 a,
    .btn-02 a {
        margin: 10px 0;
        padding: 5px 15px;
        font-size: 14px;
    }
}

.login-section {
    min-height: calc(100vh - 122px);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-section::before {
    content: "";
    width: 350px;
    height: 100%;
    background: linear-gradient(180deg, rgba(236, 236, 236, 0.45) 0%, rgba(255, 255, 255, 0.45) 100%);
    position: absolute;
    right: 0;
    top: 0;
}

.form-panel {
    margin: 0 auto;
    width: 100%;
    max-width: 420px;
    text-align: center;
    position: relative;
}

@media only screen and (max-width:760px) {
    .form-panel > figure {
        display: none;
    }
}

.form-panel::before {
    content: "";
    width: 600px;
    height: 543px;
    background: url(../img/dark-gray-logo.png) no-repeat center/cover;
    position: absolute;
    left: -450px;
    top: 0;
}

.form-panel h4 span {
    font-family: 'Satoshi-Medium';
    font-weight: 500;
}

.form-panel p a {
    color: #FFA202;
    position: relative;
}

.form-panel p a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    border-radius: 5px;
    height: 1px;
    bottom: 0;
    left: 0;
    background: currentcolor;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.form-panel p a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.form-panel form {
    margin-top: 20px;
    position: relative;
}

.form-panel label {
    padding: 10px 15px;
    font-family: 'Satoshi-Regular';
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0%;
    color: #000000;
    text-align: left;
    display: block;
}

.email-wrapper input {
    margin: 0;
    padding: 10px 15px;
    width: 100%;
    height: 50px;
    background-color: #FFFFFF;
    border: 1px solid #D4D4D4;
    border-radius: 8px;
    font-family: 'Satoshi-Regular';
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 0%;
    color: #000000;
    text-align: left;
}

.email-wrapper input:hover,
.email-wrapper input:focus,
.email-wrapper input:active {
    background-color: #FFFFFF;
}

.email-wrapper input::placeholder {
    color: #A5A5A5;
}

.email-wrapper input:-moz-placeholder {
    color: #A5A5A5;
}

.password-wrapper {
    position: relative;
    width: 100%;
}

.password-wrapper input {
    margin: 0;
    padding: 10px 15px;
    width: 100%;
    height: 50px;
    background-color: #FFFFFF;
    border: 1px solid #D4D4D4;
    border-radius: 8px;
    font-family: 'Satoshi-Regular';
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 0%;
    color: #000000;
    text-align: left;
}

.password-wrapper input:hover,
.password-wrapper input:focus,
.password-wrapper input:active {
    background-color: #FFFFFF;
}

.password-wrapper input::placeholder {
    color: #A5A5A5;
}

.password-wrapper input:-moz-placeholder {
    color: #A5A5A5;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.toggle-password img {
    width: 20px;
    height: 20px;
}

.checkbox-wrapper {
    display: block;
    margin: 15px 0 0 15px;
    padding-left: 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.checkbox-wrapper input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.checkbox-wrapper label {
    position: relative;
    cursor: pointer;
    text-align: left;
    font-family: 'Satoshi-Medium';
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #666666;
    padding: 0;
}

.checkbox-wrapper label:before {
    content: '';
    -webkit-appearance: none;
    background-color: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    padding: 12px;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 10px;
    position: absolute;
    left: -40px;
    top: 0;
}

.checkbox-wrapper label:after {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    left: -34px;
    width: 15px;
    height: 15px;
    background-color: #D9D9D973;
    border-radius: 3px;
}

.checkbox-wrapper input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    left: -34px;
    width: 15px;
    height: 15px;
    background-color: #000000;
    border-radius: 3px;
}

.checkbox-wrapper label a {
    color: #3F3F3F;
    text-decoration: underline;
}

.forgot-password a {
    font-family: 'Satoshi-Medium';
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0%;
    color: #FCA300;
    padding: 0;
    margin: 15px 15px 0 0;
    display: block;
    position: relative;
}

.forgot-password a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    border-radius: 5px;
    height: 1px;
    bottom: 0;
    left: 0;
    background: currentcolor;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.forgot-password a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.form-panel button[type="submit"] {
    margin: 30px auto 0 auto;
    padding: 10px 20px;
    background: #FCA300;
    border: none;
    border-radius: 12px;
    font-family: 'Satoshi-Bold';
    font-size: 16px;
    font-weight: 700;
    line-height: 30px;
    color: #0F0300 !important;
    white-space: nowrap;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: .4s ease-in-out;
}

.form-panel button[type="submit"]:hover,
.form-panel button[type="submit"]:focus {
    color: #FFFFFF !important;
    background-color: #0F2A3B;
    transition: .4s ease-in-out;
}

@media only screen and (max-width:760px) {
    .login-section {
        min-height: calc(100vh - 85px);
    }

    .login-section::before {
        display: none;
    }

    .form-panel::before {
        width: 380px;
        height: 344px;
        left: -80px;
        top: -80px;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .login-section::before {
        width: 150px;
    }

    .form-panel::before {
        left: -280px;
        top: -80px;
    }
}

@media only screen and (min-width:1024px) and (max-width:1366px) {
    .login-section::before {
        width: 250px;
    }
}

.register-section {
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.register-section::before {
    content: "";
    width: 600px;
    height: 543px;
    background: url(../img/dark-gray-logo.png) no-repeat center/cover;
    position: absolute;
    left: -150px;
    bottom: -150px;
}

.register-section .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 70px;
}

.register-section article {
    padding: 30px 0 0 40px;
    width: 60%;
}

.stepper-grid {
    margin-top: 30px;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 10px 30px;
    position: relative;
}

.stepper-grid::before {
    content: "";
    position: absolute;
    left: 110px;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(270deg, #ECECEC 0%, rgba(236, 236, 236, 0) 100%);
}

.step {
    position: relative;
    cursor: default;
}

.step .bullet {
    position: absolute;
    left: 102px;
    top: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #FFFFFF;
    outline: 1px solid #ECECEC;
    transition: 0.3s;
}

.step .label {
    margin: 0;
    padding: 0;
    width: 80px;
    height: 40px;
    background-color: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 7px;
    font-family: 'Satoshi-Bold';
    font-weight: 700;
    font-size: 16px;
    line-height: 38px;
    color: #666666;
    text-align: center;
    transition: 0.3s;
}

.step.active .label {
    background: #1B365D;
    color: #FFFFFF;
    border-color: #1B365D;
}

.step.active .bullet {
    background: #FCA301;
    outline-color: #FCA301;
}

.step-content-box {
    cursor: default;
}

.step-content-box h6 {
    padding: 8px 0 0 0;
}

.step-content-box p {
    font-family: 'Satoshi-Medium';
    font-weight: 500;
    font-size: 14px;
}

.expert-box {
    margin: 0 0 0 120px;
    padding: 30px 0 0 0;
    width: 100%;
    max-width: 520px;
    min-height: 290px;
    position: relative;
}

.expert-box figure {
    margin: 0;
    padding: 0;
    position: absolute;
    right: 0;
    bottom: 0;
}

/* Register (desktop): keep hero image in flow so it never overlaps stepper text */
@media only screen and (min-width:1024px) {
    .register-page .expert-box {
        display: flex;
        justify-content: flex-end;
        min-height: auto;
    }

    .register-page .expert-box figure {
        position: relative;
        right: auto;
        bottom: auto;
    }

    .register-page .expert-box figure img {
        display: block;
        max-width: 100%;
        height: auto;
    }
}

.expert-box .gray-box {
    padding: 20px;
    max-width: 270px;
    background: linear-gradient(180deg, #ECECEC 0%, #FFFFFF 100%);
    backdrop-filter: blur(9.300000190734863px);
    border-radius: 16px;
}

.expert-box .gray-box p {
    padding: 0;
    font-family: 'Satoshi-Medium';
    font-size: 14px;
    font-weight: 500;
}

.expert-box .gray-box p strong {
    display: block;
    font-family: 'Satoshi-Bold';
    font-weight: 700;
}

.expert-box .gray-box p span {
    display: block;
    margin-top: 10px;
}

.expert-box .white-box {
    margin: 20px 0;
    max-width: 230px;
}

.expert-box .white-box p {
    padding: 0;
    font-size: 12px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

.register-section aside {
    padding: 50px 20px;
    width: 40%;
    min-height: calc(100vh - 162px);
    background: linear-gradient(180deg, rgba(236, 236, 236, 0.45) 0%, rgba(255, 255, 255, 0.45) 100%);
    border-radius: 20px;
}

.register-section .form-panel::before {
    display: none !important;
}

.recaptcha {
    margin: 25px auto 50px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shine-txt {
    margin: 10px auto;
    font-family: 'Satoshi-Medium';
    font-size: 14px !important;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.acceptance-txt {
    margin: 50px auto 0 auto;
    width: 100%;
    max-width: 420px;
    font-family: 'Satoshi-Regular';
    font-size: 12px !important;
    font-weight: 400;
    line-height: 1.5;
    color: #A5A5A5 !important;
    text-align: center;
}

.acceptance-txt a {
    color: #A5A5A5 !important;
    text-decoration: underline;
}

.acceptance-txt a:hover {
    color: #000000 !important;
    text-decoration: underline;
}

@media only screen and (max-width:760px) {
    .register-section {
        padding: 10px 0;
    }

    .register-section::before {
        width: 380px;
        height: 344px;
        left: -110px;
        top: 10px;
    }

    .register-section .container-fluid {
        flex-wrap: wrap-reverse;
        gap: 20px;
        padding: 0;
    }

    .register-section article {
        padding: 20px 20px 0 20px;
        width: 100%;
        min-height: 100px;
    }

    .register-section article h5 {
        text-align: center;
    }

    .stepper-grid {
        grid-template-columns: 0px 1fr;
        gap: 20px 40px;
    }

    .stepper-grid::before {
        left: 10px;
    }

    .step .bullet {
        left: 0;
    }

    .step .label {
        margin: 0 0 0 40px;
    }

    .step-content-box {
        padding-top: 50px;
    }

    .expert-box {
        margin: 0;
        padding: 0;
        max-width: 100%;
        min-height: inherit;
        text-align: center;
    }

    .expert-box figure {
        position: inherit;
        right: auto;
        bottom: auto;
    }

    .expert-box .gray-box {
        margin: 0 auto;
    }

    .expert-box .white-box {
        display: none;
    }

    .register-section aside {
        width: 100%;
        min-height: inherit;
        padding: 30px 20px;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .register-section .container-fluid {
        gap: 30px;
    }

    .register-section article {
        padding: 30px 0 0 0;
        width: 50%;
    }

    .register-section aside {
        width: 50%;
        min-height: calc(100vh - 162px);
        padding: 20px;
    }

    .expert-box {
        margin: 0 auto;
        padding: 0;
        max-width: 274px;
        min-height: inherit;
        text-align: center;
    }

    .expert-box figure {
        position: inherit;
        right: auto;
        bottom: auto;
    }

    .expert-box .gray-box {
        margin: 0 auto;
    }

    .expert-box .white-box {
        margin: 0 auto;
    }
}

.landing-page-section {
    padding: 110px 0 20px 0;
    min-height: 100vh;
    position: relative;
}

.landing-page-section::before {
    content: "";
    width: 350px;
    height: 100%;
    background: linear-gradient(180deg, rgba(236, 236, 236, 0.45) 0%, rgba(255, 255, 255, 0.45) 100%);
    border-radius: 40px 0 0 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.landing-page-section .content-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
    position: relative;
    padding: 0 0 100px 0;
}

.landing-page-section .content-section article {
    width: 60%;
}

.landing-page-section .content-section article .shine-txt {
    margin: 0;
    justify-content: flex-start;
}

.landing-page-section .content-section article h2 {
    font-family: 'Satoshi-Medium';
    font-weight: 500;
}

.landing-page-section .content-section article h2 strong {
    font-family: 'Satoshi-Bold';
    font-weight: 700;
}

/* subtle yellow half-visible underline for 72h label */
.highlight-72h {
    position: relative;
    z-index: 1;
}

.highlight-72h::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 0.25em;
    background: #ffd54f;
    opacity: 0.6;
    z-index: -1;
    border-radius: 999px;
}

.landing-page-section .content-section article p {
    max-width: 700px;
}

.landing-page-section .content-section aside {
    width: 40%;
    text-align: center;
}

.landing-page-section .content-section aside p {
    font-family: 'Satoshi-Medium';
    font-size: 14px !important;
    font-weight: 500;
    margin: -50px auto 10px auto;
}

@media only screen and (max-width:760px) {
    .landing-page-section {
        padding: 20px 0;
        text-align: center;
    }

    .landing-page-section::before {
        display: none;
    }

    .landing-page-section .content-section {
        flex-wrap: wrap;
        gap: 20px;
        padding: 20px 0 50px 0;
    }

    .landing-page-section .content-section::before {
        content: "";
        width: 380px;
        height: 344px;
        background: url(../img/dark-gray-logo.png) no-repeat center/cover;
        position: absolute;
        left: -100px;
        top: -50px;
    }

    .landing-page-section .content-section article {
        width: 100%;
    }

    .landing-page-section .content-section article .shine-txt {
        margin: 0;
        flex-wrap: wrap;
        justify-content: center;
    }

    .landing-page-section .content-section article .btn-group {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
    }

    .landing-page-section .content-section aside {
        width: 100%;
        display: flex;
        flex-wrap: wrap-reverse;
        gap: 20px;
    }

    .landing-page-section .content-section aside p {
        margin: 0 auto 10px auto;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .landing-page-section::before {
        width: 150px;
    }

    .landing-page-section .content-section {
        gap: 30px;
        padding: 100px 0;
    }

    .landing-page-section .content-section article {
        width: 50%;
    }

    .landing-page-section .content-section aside {
        width: 50%;
    }
}

@media only screen and (min-width:1024px) and (max-width:1366px) {
    .landing-page-section .content-section {
        gap: 30px;
        padding: 100px 0;
    }
}

.landing-page-section .companies-section {
    text-align: center;
}

.landing-page-section .companies-section p {
    font-family: 'Satoshi-Medium';
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0%;
    color: #0F0300;
    padding: 10px 0;
}

.landing-page-section .companies-section p strong {
    font-family: 'Satoshi-Bold';
    font-weight: 700;
}

.companies-slider {
    overflow: hidden;
    width: 100%;
}

/* Companies logos marquee: continuous, gapless scroll */
.companies-track {
    display: inline-flex;
    white-space: nowrap;
    animation: companies-scroll 18s linear infinite;
}

.companies-track img {
    flex: 0 0 auto;
    filter: grayscale(100%);
    transition: 0.3s;
    padding: 0 24px;
}

@keyframes companies-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.form-page-section {
    min-height: 100vh;
    position: relative;
}

.form-page-section::before {
    content: "";
    width: 20%;
    height: 100%;
    background: linear-gradient(180deg, rgba(236, 236, 236, 0.45) 0%, rgba(255, 255, 255, 0.45) 100%);
    border-radius: 40px 0 0 0;
    position: absolute;
    right: 0;
    top: 0;
}

.sticky-header-wrapper {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #FFFFFF;
}

.sticky-header-wrapper .container {
    max-width: 1020px;
    width: 60%;
    margin: 0 auto;
    padding: 0 15px;
}


.form-page-section .container {
    max-width: 1020px;
    width: 70%;
    position: relative;
}

.form-header {
    padding: 20px 0 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-header figure {
    display: flex;
    align-items: center;
    gap: 16px;
}

.form-header figure .back-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A5A5A5;
    font-size: 18px;
    transition: all 0.2s ease;
}

.form-header figure .back-arrow:hover {
    color: #0F0300;
}

.form-header aside {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.form-header aside .avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
}

.form-header aside .advice {
    width: 300px;
    height: 78px;
    background: url(../img/rectangle.png) no-repeat left;
    overflow: hidden;
    padding: 0 0 0 20px;
    font-family: 'Satoshi-Medium';
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #000000;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-direction: column;
}

.form-header aside .advice span {
    display: block;
    font-family: 'Satoshi-Bold';
    font-size: 16px;
    font-weight: 700;
}

.form-header aside .advice span a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

@media only screen and (max-width:760px) {
    .form-page-section::before {
        display: none;
    }

    .form-header figure .back-arrow {
        display: none;
    }

    .form-header {
        width: 100%;
    }

    .form-header figure {
        align-items: center;
        justify-content: center;
        width: 100%;
        display: flex;
    }

    .form-header aside {
        display: none;
    }

    .form-page-section .container {
        width: 100%;
        position: relative;
    }

    .content-section {
        padding: 0;
        margin: 0;
    }


    .form-header {
        padding: 20px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .form-header aside .avatar {
        display: none;
    }

    .form-header aside .advice {
        width: auto;
        height: auto;
        background: none;
        padding: 0;
        align-items: flex-end;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    /* Keep the same proportional width as desktop so it scales smoothly when browser zoom changes the effective viewport width. */
    .form-page-section::before {
        width: 20%;
    }
}

.form-progress {
    width: 100%;
    height: 4px;
    background-color: #ECECEC;
    border-radius: 4px;
    position: relative;
}

.form-progress .progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 4px;
    background-color: #FCA300;
    border-radius: 4px;
}

.form-page-section .content-scroll {
    margin: 28px 0 20px 0;
    width: calc(100% + 10px);
    height: calc(100vh - 320px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #E5E5E5 #42424200;
}

.form-page-section .content-scroll::-webkit-scrollbar {
    width: 4px;
    height: 2px;
}

.form-page-section .content-scroll::-webkit-scrollbar-track {
    background-clip: content-box;
    border: 2px solid transparent;
}

.form-page-section .content-scroll::-webkit-scrollbar-thumb {
    background-color: #E5E5E5;
}

.form-page-section .content-scroll::-webkit-scrollbar-thumb:hover {
    background-color: #E5E5E5;
}

.form-page-section .content-scroll::-webkit-scrollbar-corner,
.form-page-section .content-scroll::-webkit-scrollbar-track {
    background-color: #42424200;
    border-radius: 4px;
}

@media only screen and (max-width:760px) {
    .form-page-section .content-scroll {
        margin: 10px 0;
        width: calc(100% + 0px);
        height: calc(100vh - 112px);
        overflow-y: auto;
        overflow-x: hidden;
        scrollbar-width: thin;
        scrollbar-color: #E5E5E5 #42424200;
    }
}

.radio-grid {
    margin: 30px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.last-radio {
    grid-column: span 2;
}

.radio-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background: #FFFFFF;
    background-color: #F9F9F9;
    border: 1px solid #ECECEC;
    border-radius: 16px;
    padding: 24px;
    cursor: pointer;
    transition: 0.25s ease;
}

.radio-box:hover {
    border-color: #A5A5A5;
}

.radio-box input[type="radio"] {
    opacity: 0;
    position: absolute;
    pointer-events: none;
}

.radio-box input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    pointer-events: none;
}

.custom-radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #ECECEC;
    position: relative;
    transition: 0.25s ease;
}

.radio-box input[type="radio"]:checked~.custom-radio {
    border-color: #ECECEC;
}

.radio-box input[type="checkbox"]:checked~.custom-radio {
    border-color: #ECECEC;
}

.radio-box input[type="radio"]:checked~.custom-radio::after {
    content: "";
    width: 14px;
    height: 14px;
    background: #FCA301;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.radio-box input[type="checkbox"]:checked~.custom-radio::after {
    content: "";
    width: 14px;
    height: 14px;
    background: #FCA301;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.radio-box:has(input[type="radio"]:checked) {
    border-color: #FCA300;
    background: #FBFBFB;
}

.radio-box:has(input[type="checkbox"]:checked) {
    border-color: #FCA300;
    background: #FBFBFB;
}

.radio-box .left {
    width: calc(100% - 30px);
    display: flex;
    align-items: center;
    gap: 15px;
}

.radio-box .left .icon {
    display: block;
    line-height: 1;
}

.radio-box .text {
    display: block;
    font-family: 'Satoshi-Bold';
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000000;
}

.other-input-wrapper {
    width: 100%;
    margin-top: 15px;
    display: none;
}

.other-input-wrapper input {
    margin: 0;
    padding: 10px 15px;
    width: 100%;
    height: 50px;
    background-color: #FFFFFF;
    border: 1px solid #0F0300;
    border-radius: 8px;
    font-family: 'Satoshi-Medium';
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000000;
}

.form-page-section textarea {
    margin: 10px 0 0 0;
    padding: 10px 15px;
    width: 100%;
    height: 120px;
    background-color: #F9F9F9;
    border: 1px solid #D4D4D4;
    border-radius: 12px;
    font-family: 'Satoshi-Medium';
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000000;
    overflow: auto;
    resize: none;
}

.form-page-section textarea::placeholder,
.form-page-section textarea::-webkit-input-placeholder {
    color: #A5A5A5;
}

.note {
    font-family: 'Satoshi-Medium' !important;
    font-weight: 500 !important;
    font-size: 12px !important;
    color: #666666 !important;
    transition: color 0.2s ease;
    margin-bottom: 75px;
}

.note.exceeded {
    color: #dc3545 !important;
}

.note.exceeded #charCount {
    font-weight: 700;
}

.form-page-section button[type="submit"] {
    padding: 10px 20px;
    background: #FCA300;
    border: none;
    border-radius: 12px;
    font-family: 'Satoshi-Bold';
    font-size: 16px;
    font-weight: 700;
    line-height: 30px;
    color: #0F0300 !important;
    white-space: nowrap;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: .4s ease-in-out;
}

.form-page-section button[type="submit"]:hover,
.form-page-section button[type="submit"]:focus {
    color: #FFFFFF !important;
    background-color: #0F2A3B;
    transition: .4s ease-in-out;
}

.form-page-section .bot-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 1230px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 39.23%);
    padding: 20px 30px;
    z-index: 100;
}

@media only screen and (min-width:761px) {
    .form-page-section .bot-btn #btnNext {
        margin-left: auto !important;
    }
}

.toggle__trigger {
    font-size: 16px;
    line-height: 1.375em;
    font-weight: 700;
    font-family: 'Satoshi-Bold';
    color: #c5c5c5;
    background: #a5a5a5;
    border: 1px solid #A5A5A5;
    border-radius: 12px;
    cursor: pointer;
    padding: 14px 22px;
}

.form-page-section button[disabled] {
    background: #D4D4D4;
    color: #666666 !important;
    cursor: not-allowed;
}

.form-page-section button[type="button"]#btnNext:not([disabled]) {
    background: #FCA300;
    border-color: #FCA300;
    color: #0F0300 !important;
    transition: 0.3s;
}

.form-page-section button[type="button"]#btnNext[disabled] {
    background: #D4D4D4;
    border-color: #D4D4D4;
    color: #666666 !important;
    transition: 0.3s;
}

.form-page-section button[type="button"]#btnNext:not([disabled]):hover,
.form-page-section button[type="button"]#btnNext:not([disabled]):focus {
    background: #0F2A3B;
    border-color: #0F2A3B;
    color: white !important;
}

.form-page-section button[type="button"] {
    margin: 30px 0 0 0;
    padding: 10px 20px;
    background: #FFFFFF;
    border: 1px solid #A5A5A5;
    border-radius: 12px;
    font-family: 'Satoshi-Bold';
    font-size: 16px;
    font-weight: 700;
    line-height: 30px;
    color: #A5A5A5 !important;
    white-space: nowrap;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: .4s ease-in-out;
}

.form-page-section button[type="button"]:hover,
.form-page-section button[type="button"]:focus {
    color: #0F0300 !important;
    background-color: #ECECEC;
    transition: .4s ease-in-out;
}

@media only screen and (max-width:760px) {
    .radio-grid {
        display: flex;
        flex-direction: column;
    }

    .radio-box {
        padding: 20px 16px;
    }

    .radio-box .text {
        font-size: 18px;
    }

    .form-page-section .bot-btn {
        flex-direction: column;
        gap: 15px 0;
    }

    .form-page-section textarea {
        margin-bottom: 130px;
    }

    .form-page-section button[type="submit"] {
        width: 100%;
    }

    .toggle__trigger {
        width: 100%;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {}

@media only screen and (min-width:1024px) and (max-width:1366px) {}


/* ananta 27-11-25 */
.content-section.half-grey-bg {
    position: relative;
}

.additional-content .container::before {
    display: none;
}

.additional-content {
    display: none;
    position: relative;
    border-radius: 30px;
    padding: 40px 15px 0;
}

.additional-content::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, rgba(236, 236, 236, 0.3) 0%, rgba(255, 255, 255, 0.3) 100%);
    border-radius: 30px;
}

.addt-title h3 {
    font-size: 28px;
    line-height: 1.34375em;
    font-weight: 700;
    color: #000000;
    padding: 0 0 8px;
}

.addt-title p {
    font-size: 16px;
    line-height: 1.375em;
    font-weight: 500;
    font-family: 'Satoshi-Medium';
    color: #000000;
    margin: 0 0 32px;
    padding: 0;
}

.adtn-cont-col h5 {
    font-size: 22px;
    line-height: 1.333em;
    font-weight: 500;
    font-family: 'Satoshi-Medium';
    color: #000000;
    padding: 0;
}

.adtn-cont-col .radio-grid {
    margin: 20px 0;
}

.radio-grid.square .custom-radio {
    border-radius: 5px;
}

.radio-grid.square .radio-box {
    flex-direction: row-reverse;
}

.radio-grid.square .custom-radio::after {
    content: "";
    width: 14px;
    height: 14px;
    background: rgba(217, 217, 217, 0.45);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 5px;
}

.radio-grid.square .radio-box:has(input[type="radio"]:checked) {
    background: #F9F9F9;
}

.radio-grid.square .radio-box:has(input[type="checkbox"]:checked) {
    background: #F9F9F9;
}

.radio-grid.square .radio-box input[type="radio"]:checked~.custom-radio::after {
    background: #FCA301;
    border-radius: 5px;
}

.radio-grid.square .radio-box input[type="checkbox"]:checked~.custom-radio::after {
    background: #FCA301;
    border-radius: 5px;
}

.top-select-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px 25px;
    padding: 0 0 30px;
}

.top-select-wrap select {
    width: 225px;
    height: 54px;
    background: #F9F9F9;
    border: 1px solid #ECECEC;
    border-radius: 16px;
    font-size: 16px;
    line-height: 1.375em;
    font-weight: 500;
    font-family: 'Satoshi-Medium';
    color: #000000;
    padding: 16px 24px;
}

.adtn-inner-col p {
    font-family: 'Satoshi-Medium';
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
    padding: 0 0 16px;
}

.adtn-inner-col .radio-grid {
    margin: 0;
}

.adtn-inner-col:not(:last-child) {
    margin-bottom: 30px;
}

.tag-text {
    position: absolute;
    top: -6px;
    left: 25px;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    font-family: 'Satoshi-Bold';
    color: #FCA300;
    background: #FFEBC8;
    border-radius: 6px;
    padding: 4px 5px;
}

.additional-content-scroll {
    height: auto;
    overflow: visible;
    padding: 0;
}

.additional-content-scroll::-webkit-scrollbar {
    width: 4px;
    height: 2px;
}

.additional-content-scroll::-webkit-scrollbar-track {
    background-clip: content-box;
    border: 2px solid transparent;
}

.additional-content-scroll::-webkit-scrollbar-thumb {
    background-color: #E5E5E5;
}

.additional-content-scroll::-webkit-scrollbar-thumb:hover {
    background-color: #E5E5E5;
}

.additional-content-scroll::-webkit-scrollbar-corner,
.additional-content-scroll::-webkit-scrollbar-track {
    background-color: #42424200;
    border-radius: 4px;
}

@media (min-width: 768px) {
    .additional-content {
        padding: 54px 25px 0;
    }

    .top-select-wrap {
        flex-direction: row;
    }

    .adtn-cont-col h5 {
        font-size: 24px;
    }

    .adtn-cont-col .radio-grid {
        margin: 32px 0;
    }

    .adtn-inner-col p {
        padding: 0;
    }
}

@media (min-width: 1200px) {
    .additional-content {
        padding: 54px 0 0;
    }


/* Categories/Success dropdown enhancements (auth) */
.auth-redesign-wrapper .categories-nav .dropDown_menu,
.auth-redesign-wrapper .success-nav .dropDown_menu {
    min-width: 440px;
    padding: 16px;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 18px 38px -18px rgba(15, 23, 42, 0.35);
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.auth-redesign-wrapper .categories-nav .dropDown_menu li,
.auth-redesign-wrapper .success-nav .dropDown_menu li {
    margin: 0;
}

.auth-redesign-wrapper .categories-nav .dropDown_menu li a,
.auth-redesign-wrapper .success-nav .dropDown_menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
    box-shadow: 0 12px 24px -16px rgba(15, 23, 42, 0.35);
    line-height: 1.25;
    color: #0f172a;
    transition: all .2s ease;
}

.auth-redesign-wrapper .categories-nav .dropDown_menu li a img,
.auth-redesign-wrapper .success-nav .dropDown_menu li a img {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.auth-redesign-wrapper .categories-nav .dropDown_menu li a:hover,
.auth-redesign-wrapper .success-nav .dropDown_menu li a:hover {
    background: #e3e9f3;
    color: #0b1324;
    transform: translateY(-1px);
}

@media only screen and (max-width:1023px) {
    .auth-redesign-wrapper .categories-nav .dropDown_menu,
    .auth-redesign-wrapper .success-nav .dropDown_menu {
        position: relative;
        left: 0;
        top: 0;
        min-width: 100%;
        padding: 12px 10px;
        box-shadow: none;
        background: transparent;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .auth-redesign-wrapper .categories-nav .dropDown_menu li a,
    .auth-redesign-wrapper .success-nav .dropDown_menu li a {
        background: #f7f9fc;
        box-shadow: none;
    }
}
    .additional-content::before {
        width: 1196px;
        height: 120%;
        left: 50%;
        transform: translate(-50%, 0);
    }

    .addt-title h3 {
        font-size: 32px;
    }

    .adtn-cont-col:nth-child(2) .radio-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .adtn-inner-col .radio-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}


.contact-form {
    border: 1px solid #E5E5E5;
    border-radius: 20px;
    padding: 0 15px 15px;
}

.contact-form h5 {
    padding: 0 0 24px;
}

.contact-form h5 span {
    font-weight: 500;
    font-family: 'Satoshi-Medium';
}

.contact-form-wrap {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 15px 0;
}

.contact-form-col label {
    display: block;
    font-size: 14px;
    line-height: 19px;
    font-weight: 500;
    font-family: 'Satoshi-Medium';
    color: #000000;
    padding-left: 16px;
    margin: 0 0 4px;
}

.contact-form-col input {
    font-size: 16px;
    line-height: 1.5em;
    color: #000000;
    font-family: 'Satoshi-Medium';
    width: 100%;
    height: 51px;
    background: #FFFFFF;
    border: 1px solid #D4D4D4;
    border-radius: 8px;
    padding: 12px 16px;
    transition: 0.3s;
    opacity: 1;
}

.contact-form-col input:focus {
    border-color: #0F0300;
}

.contact-form-col input::placeholder,
.contact-form-col input::-webkit-input-placeholder {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #A5A5A5;
    font-family: 'Satoshi-Medium';
    opacity: 1;
}

.contact-form-submit {
    display: flex;
    flex-direction: column-reverse;
    gap: 24px;
    margin: 12px 0 0;
}

.contact-form-submit .arrow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    line-height: 1.375em;
    font-family: 'Satoshi-Medium';
    font-weight: 500;
    color: #A5A5A5;
    transition: 0.3s;
}

.contact-form-submit .arrow-btn:hover {
    color: #000000;
}

.contact-form-submit .prim-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1.375em;
    font-family: 'Satoshi-Bold';
    font-weight: 700;
    color: #0F0300;
    background: #FCA300;
    border-radius: 12px;
    transition: 0.3s;
    padding: 15px 27px;
}

.contact-form-submit .prim-btn:hover {
    background: #fbb32e;
}

.contact-form .disc-text {
    font-size: 12px;
    line-height: 1.3333em;
    font-weight: 400;
    color: #A5A5A5;
    margin: 32px 0 0;
}

.contact-form .disc-text a {
    font-weight: 700;
    font-family: 'Satoshi-Bold';
    color: #A5A5A5;
    text-decoration: underline;
}

@media (min-width: 575px) {
    .contact-form {
        max-width: 532px;
        padding: 32px;
        margin: 10px auto 0 auto;
    }

    .contact-form-wrap {
        gap: 20px 0;
    }

    .contact-form-submit {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Checkbox consent styling */
.checkbox-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 12px;
    line-height: 1.5em;
}

.checkbox-consent input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px !important;
    height: 16px !important;
    border: 1.5px solid #0F0300 !important;
    border-radius: 3px !important;
    background-color: #FFFFFF;
    cursor: pointer;
    position: relative;
    margin: 2px 0 0 0 !important;
    transition: all 0.2s ease;
    padding: 2px !important;
}

.checkbox-consent input[type="checkbox"]:hover {
    border-color: #0F0300;
}

.checkbox-consent input[type="checkbox"]:checked {
    background-color: #0F0300;
    border-color: #0F0300;
}

.checkbox-consent input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 4px;
    width: 5px;
    height: 9px;
    border: solid #FFFFFF;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-consent span {
    flex: 1;
    color: #A5A5A5;
    font-family: 'Satoshi-Regular';
    font-weight: 400;
}

.checkbox-consent span a {
    color: #0F0300;
    text-decoration: underline;
    font-weight: 500;
}

.checkbox-consent span a:hover {
    color: #FCA300;
}

/* Consultation Modal */
.consultation-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    overflow-y: auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.consultation-modal {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.consultation-modal .modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: #F5F5F5;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #666666;
    transition: all 0.2s ease;
}

.consultation-modal .modal-close:hover {
    background: #E5E5E5;
    color: #0F0300;
}

.consultation-modal .modal-header-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.consultation-modal .modal-header-image {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.consultation-modal .modal-header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.consultation-modal .modal-header-text {
    flex: 1;
}

.consultation-modal .modal-header-text h2 {
    font-family: 'Satoshi-Bold';
    font-weight: 700;
    font-size: 22px;
    line-height: 1.3;
    color: #0F0300;
    text-align: left;
    margin: 0 0 6px;
}

.consultation-modal .modal-header-text .modal-subtitle {
    font-family: 'Satoshi-Regular';
    font-weight: 400;
    font-size: 13px;
    line-height: 1.5;
    color: #666666;
    text-align: left;
    margin: 0;
}

.consultation-modal h2 {
    font-family: 'Satoshi-Bold';
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
    color: #0F0300;
    text-align: center;
    margin: 0 0 8px;
}

.consultation-modal .modal-subtitle {
    font-family: 'Satoshi-Regular';
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #666666;
    text-align: center;
    margin: 0 0 28px;
}

.consultation-modal .modal-form-group {
    margin-bottom: 16px;
}

.consultation-modal .modal-form-group label {
    display: block;
    font-family: 'Satoshi-Medium';
    font-weight: 500;
    font-size: 14px;
    color: #0F0300;
    margin-bottom: 6px;
}

.consultation-modal .modal-form-group input,
.consultation-modal .modal-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    font-family: 'Satoshi-Regular';
    font-size: 14px;
    color: #0F0300;
    background: #F9F9F9;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.consultation-modal .modal-form-group input:focus,
.consultation-modal .modal-form-group textarea:focus {
    outline: none;
    border-color: #FCA300;
}

.consultation-modal .modal-form-group input::placeholder,
.consultation-modal .modal-form-group textarea::placeholder {
    color: #A5A5A5;
}

.consultation-modal .modal-form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.consultation-modal .modal-consent {
    margin-top: 20px;
}

/* .consultation-modal .modal-consent .checkbox-consent {
    font-size: 12px;
    line-height: 1.5em;
}

.consultation-modal .modal-consent .checkbox-consent input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin-top: 2px;
} */

.consultation-modal .modal-submit-btn {
    width: 100%;
    padding: 14px 24px;
    background: #FCA300;
    border: none;
    border-radius: 12px;
    font-family: 'Satoshi-Bold';
    font-weight: 700;
    font-size: 16px;
    color: #0F0300;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-top: 24px;
}

.consultation-modal .modal-submit-btn:hover {
    background: #fbb32e;
}

.consultation-modal .modal-submit-btn:disabled {
    background: #E5E5E5;
    color: #A5A5A5;
    cursor: not-allowed;
}

.consultation-modal .modal-success {
    text-align: center;
    padding: 40px 20px;
}

.consultation-modal .modal-success i {
    font-size: 60px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.consultation-modal .modal-success h3 {
    font-family: 'Satoshi-Bold';
    font-weight: 700;
    font-size: 22px;
    color: #0F0300;
    margin: 0 0 12px;
}

.consultation-modal .modal-success p {
    font-family: 'Satoshi-Regular';
    font-size: 14px;
    color: #666666;
    margin: 0;
}

@media (max-width: 575px) {
    .consultation-modal {
        padding: 32px 20px;
    }
    
    .consultation-modal h2 {
        font-size: 20px;
    }
}

/* thankyou page */
.thankyou-page .content-section {
    padding: 20px 0;
}

.sub-title-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sub-title-icon span {
    display: inline-block;
    font-size: 12px;
    line-height: 1;
    font-family: 'Satoshi-Bold';
    font-weight: 700;
    color: #FCA300;
    background: #FFEBC8;
    border-radius: 6px;
    padding: 4px 5px;
    margin-top: -3px;
}

.line-divider {
    display: none;
}

.thankyou-page h2 {
    padding: 15px 0 25px 0;
}

.thankyou-page p {
    font-weight: 500;
    font-family: 'Satoshi-Medium';
    padding: 0 0 15px;
}

.thankyou-page p strong {
    font-weight: 700;
    font-family: 'Satoshi-Bold';
}

.thankyou-page .btn-group {
    padding: 20px 0 0;
}

.thankyou-page .content-section aside figure:first-child {
    display: none;
}

.thankyou-page .content-section aside figure:last-child {
    margin-top: 24px;
}

.also-see-links {
    margin-top: -10px;
}

.also-see-links h6 {
    font-size: 14px;
    line-height: 19px;
    color: #000000;
    font-family: 'Satoshi-Bold';
    font-weight: 700;
    padding: 0 0 12px;
}

.also-see-links ul {
    list-style: none;
}

.also-see-links li {
    line-height: 1;
    padding-bottom: 8px;
}

.also-see-links li a {
    font-size: 14px;
    line-height: 1.3571428571428572em;
    font-weight: 500;
    text-decoration-line: underline;
    font-family: 'Satoshi-Medium';
    color: #666666;
}

@media (max-width: 767px) {
    .thankyou-page h2 {
        font-size: 26px;
    }

    .thankyou-page .content-section p {
        padding: 0 0 15px;
    }
}

@media (min-width: 768px) {
    .sub-title-icon {
        flex-direction: row;
        align-items: center;
        gap: 6px;
    }

    .line-divider {
        display: block;
        position: relative;
        z-index: -1;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, rgba(236, 236, 236, 1) 0%, rgba(236, 236, 236, 0) 100%);
        margin: 12px 0 0;
    }

    .line-divider::before,
    .line-divider::after {
        position: absolute;
        content: "";
        top: 50%;
        left: 0;
        transform: translate(0, -50%);
        width: 20px;
        height: 20px;
        border: 1px solid #ECECEC;
        border-radius: 50%;
        background: #FFFFFF;
    }

    .line-divider::after {
        left: 4px;
        width: 14px;
        height: 14px;
        background: #FCA301;
        border: none;
    }

    .thankyou-page h2 {
        padding: 28px 0 24px 0;
    }

    .thankyou-page .btn-group {
        padding: 10px 0 0;
    }

    .also-see-links {
        margin: 20px 0 0;
    }

    .also-see-links ul {
        display: flex;
        flex-wrap: wrap;
        gap: 12px 30px;
    }
}

@media (min-width: 1200px) {
    .landing-page-section.thankyou-page {
        padding-top: 0;
    }

    .thankyou-page .content-section {
        align-items: flex-start;
        gap: 15px;
        padding: 90px 0 0;
    }

    .thankyou-page .content-section aside figure:last-child {
        display: none;
        margin-top: 0;
    }

    .thankyou-page .content-section aside figure:first-child {
        display: block;
        margin-right: -60px;
    }

    .thankyou-page .content-section article {
        width: 48%;
        max-width: 555px;
    }

    .line-divider {
        width: 180%;
    }

    .thankyou-page .content-section aside {
        width: 52%;
        margin-top: -30px;
    }

    .also-see-links {
        margin: 80px 0 0;
    }

    .also-see-links ul {
        gap: 12px 52px;
    }

    .also-see-links li a:hover {
        color: #000000;
        text-decoration: none;
    }

}
