/*=========================================================
    FONT FACE
=========================================================*/

@font-face {
    font-family: 'Gotham Medium';
    src: url('../fonts/Gotham-Medium.otf');
}

@font-face {
    font-family: 'Gotham Bold';
    src: url('../fonts/GothamBold.otf');
}

@font-face {
    font-family: 'BebasNeue Bold';
    src: url('../fonts/BebasNeue Bold.otf');
}

/*=========================================================
    RESET
=========================================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Gotham Medium', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    font-size: 15px;
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none !important;
    transition: .35s;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

button,
input,
textarea {
    outline: none !important;
    box-shadow: none !important;
}

.container {
    max-width: 1240px;
}

/*=========================================================
    COMMON
=========================================================*/

section {
    position: relative;
}

.gold {
    color: #F6BE39;
}

.text-white {
    color: #fff;
}

/*=========================================================
    HEADER
=========================================================*/

.site-header {

    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 5px 0;
    background: rgba(0, 0, 0, .42);
    backdrop-filter: blur(8px);

}

.header-inner {

    display: flex;
    justify-content: space-between;
    align-items: center;

}

.logo img {

    height: 120px;

}

/*=========================================================
    HEADER RIGHT
=========================================================*/

.header-right {

    display: flex;
    align-items: center;

}

.header-right span {

    font-size: 10px;
    letter-spacing: 1px;
    margin-right: 18px;
    color: #fff;
    font-family: 'Gotham Bold', sans-serif;

}

/*=========================================================
    SOCIAL ICON
=========================================================*/

.social-icons {

    display: flex;

}

.social-icons li {

    margin-left: 10px;

}

.social-icons a {

    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .45);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 14px;
    transition: .35s;

}

.social-icons a:hover {

    background: #F6BE39;
    color: #000;
    border-color: #F6BE39;
    transform: translateY(-2px);

}

/*=========================================================
    HERO
=========================================================*/

.hero-banner {

    position: relative;
    overflow: hidden;

}

.hero-banner picture,

.hero-banner img {

    width: 100%;
    display: block;

}

/* Dark overlay */

.hero-banner::before {

    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, .12),
            rgba(0, 0, 0, .18),
            rgba(0, 0, 0, .40));
    z-index: 1;

}

/* Bottom fade */

.hero-banner::after {

    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0),
            #000);
    z-index: 2;

}

/*=========================================================
    REGISTRATION SECTION
=========================================================*/

.registration-section {

    position: relative;
    padding-top: 1.5em;
    /* z-index: 20; */
    padding-bottom: 100px;
    background: #000;

}

/* Decorative BG */

.registration-section::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    background: url("../images/BG2.jpg") center top no-repeat;

    background-size: cover;

    opacity: .12;

    pointer-events: none;

}

/*=========================================================
    FORM WRAPPER
=========================================================*/

.registration-wrapper {

    position: relative;
    margin-top: 20px;
    padding: 40px;
    border-radius: 30px;
    border: 3px solid #ffc300;

}

/*=========================================================
    REGISTRATION HEADING
=========================================================*/

.registration-heading {

    position: relative;

    text-align: center;

    margin-bottom: 20px;

}

.registration-heading img {

    width: 38px;

    margin: auto;

    margin-bottom: 10px;

}

.registration-heading h2 {

    font-family: 'BebasNeue Bold', sans-serif;

    color: #F6BE39;

    font-size: 32px;

    letter-spacing: 2px;

    margin-bottom: 6px;

    line-height: 1;

}

.registration-heading p {

    color: #d5d5d5;

    font-size: 14px;

    margin-top: 0;

}

/* Gold lines */

.registration-heading::before {

    content: "";

    position: absolute;

    left: 30%;

    top: 50%;

    width: 100px;

    height: 2px;

    background: #F6BE39;

}

.registration-heading::after {

    content: "";

    position: absolute;

    right: 30%;

    top: 50%;

    width: 100px;

    height: 2px;

    background: #F6BE39;

}

/*=========================================================
    FORM CARD
=========================================================*/

.registration-card {

    position: relative;

    background: rgba(12, 12, 12, .88);

    border: 2px solid #F6BE39;

    border-radius: 26px;

    padding: 55px;

    backdrop-filter: blur(15px);

    box-shadow:
        0 0 35px rgba(246, 190, 57, .12),
        0 20px 60px rgba(0, 0, 0, .60);

    overflow: hidden;

}

/* subtle glow */

.registration-card::before {

    content: "";

    position: absolute;

    inset: 0;

    border-radius: 26px;

    box-shadow: inset 0 0 30px rgba(246, 190, 57, .08);

    pointer-events: none;

}

/*=========================================================
    FORM GROUP
=========================================================*/

.form-group {
    position: relative;
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    font-family: 'Gotham Bold', sans-serif;
    font-size: 12px;
    letter-spacing: .5px;
    text-transform: none;
}

.form-group label span {
    color: #ff3d3d;
}

/*=========================================================
    INPUT WRAPPER
=========================================================*/

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

.input-group-custom i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #9c9c9c;
    font-size: 18px;
    z-index: 2;
}

.textarea-group i {
    top: 1.2em;
    transform: none;
}

/*=========================================================
    INPUT
=========================================================*/

.form-control {

    height: 40px;

    border-radius: 10px;

    background: #1a1a1a;

    border: 1px solid #505050;

    color: #fff;

    font-size: 12px;

    padding-left: 52px;

    padding-right: 18px;

    transition: .35s;

    font-family: 'Gotham Medium', sans-serif;

}

.form-control:hover {

    border-color: #777;

}

.form-control:focus {

    background: #1a1a1a;

    border-color: #F6BE39;

    color: #fff;

    box-shadow: 0 0 15px rgba(246, 190, 57, .20) !important;

}

.form-control::placeholder {

    color: rgba(255, 255, 255, .42);

}

/*=========================================================
    TEXTAREA
=========================================================*/

textarea.form-control {

    min-height: 90px;

    resize: none;

    padding-top: 18px;

}

textarea.form-control+i {

    top: 24px;

}

/*=========================================================
    SMALL NOTE
=========================================================*/

.field-note {

    color: #bdbdbd;

    font-size: 13px;

    margin-top: 8px;

}

/*=========================================================
    WORD COUNT
=========================================================*/

.word-counter {

    text-align: right;

    color: #cfcfcf;

    font-size: 13px;

    margin-top: 10px;

}

/*=========================================================
    FILE UPLOAD
=========================================================*/

.upload-wrapper {

    margin-top: 10px;

}

.upload-box {

    position: relative;

    border: 2px dashed rgba(255, 255, 255, .25);

    border-radius: 14px;

    background: #181818;

    padding: 50px 30px;

    text-align: center;

    overflow: hidden;

    transition: .35s;

}

.upload-box:hover {

    border-color: #F6BE39;

    background: #1f1f1f;

}

.upload-box input[type=file] {

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    opacity: 0;

    cursor: pointer;

}

.upload-icon {

    /* width: 70px;

    height: 70px; */

    margin: auto;

    /* border-radius: 50%;

    border: 2px solid #F6BE39; */

    display: flex;

    align-items: center;

    justify-content: center;

    color: #F6BE39;

    font-size: 34px;

    margin-bottom: 18px;

}

.upload-box h5 {

    color: #fff;

    margin-bottom: 8px;

    font-family: 'Gotham Bold', sans-serif;

}

.upload-box p {

    color: #bdbdbd;

    margin-bottom: 18px;

    font-size: 14px;

}

.choose-file {

    display: inline-block;

    padding: 11px 28px;

    border-radius: 40px;

    background: #F6BE39;

    color: #000;

    font-family: 'Gotham Bold', sans-serif;

    transition: .35s;

}

.upload-box:hover .choose-file {

    background: #fff;

}

/*=========================================================
    CHECKBOX
=========================================================*/

.checkbox-section {

    margin-top: 28px;

    margin-bottom: 35px;

}

.custom-control {

    padding-left: 38px;

}

.custom-control-label {

    color: #d8d8d8;

    cursor: pointer;
    padding-left: 12px;
    line-height: 1.8;

    font-size: 12px;

}

.custom-control-label a {

    color: #F6BE39;

    font-family: 'Gotham Bold', sans-serif;

}

.custom-control-label::before {

    width: 22px;

    height: 22px;

    border-radius: 4px;

    border: 1px solid #777;

    background: #161616;

    top: 2px;

}

.custom-control-label::after {

    top: 2px;

}

.custom-control-input:checked~.custom-control-label::before {

    background: #F6BE39;

    border-color: #F6BE39;

}

/*=========================================================
    ERROR
=========================================================*/
.form-group .error {

    display: block;
    margin-bottom: 10px;
    color: #ff5050;
    font-size: 13px;
    font-family: 'Gotham Medium', sans-serif;
}

.form-group label .error {
    display: block;
    margin-bottom: 10px;
    color: #ff5050;
    font-size: 13px;
    font-family: 'Gotham Medium', sans-serif;
}

input.error,
textarea.error,
select.error {

    border-color: #ff5050 !important;

}

.englishswitch a {
    color: #F6BE39;
}

/*=========================================================
    SUBMIT BUTTON
=========================================================*/

.submit-section {

    text-align: center;

    margin-top: 20px;

}

.btn-register {

    min-width: 520px;

    height: 64px;

    border: none;

    border-radius: 50px;

    background: linear-gradient(90deg, #F9D15A, #F0B22A);

    color: #000;

    font-family: 'BebasNeue Bold', sans-serif;

    font-size: 34px;

    letter-spacing: 2px;

    transition: .35s;

    box-shadow: 0 12px 25px rgba(246, 190, 57, .25);

}

.btn-register:hover {

    background: linear-gradient(90deg, #ffffff, #F9D15A);

    transform: translateY(-2px);

    box-shadow: 0 18px 35px rgba(246, 190, 57, .40);

}

.btn-register:focus {

    outline: none;

}

/*=========================================================
    DIVIDER
=========================================================*/

.form-divider {

    width: 100%;

    height: 1px;

    background: rgba(255, 255, 255, .08);

    margin: 35px 0;

}

 .form-control[readonly] {
    background-color: #1a1a1a !important;
 }

/*=========================================================
    FOOTER
=========================================================*/

.site-footer {
    position: relative;
    background: #080808;
    padding: 45px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.site-footer::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url("../images/BG2.jpg") center center;
    background-size: cover;
    opacity: .04;
    pointer-events: none;
}

.site-footer p {
    color: rgba(255, 255, 255, .75);
    margin-bottom: 20px;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-links1 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links li {
    position: relative;
    margin: 0 22px;
}

.footer-links li:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: -24px;
    color: rgba(255, 255, 255, .35);
}

.footer-links a {
    color: #F6BE39;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: .35s;
    margin: 0 1em;
    font-family: 'Gotham Bold', sans-serif;
}

.footer-links a:hover {
    color: #fff;
}

.mbottom {
    margin-bottom: 2rem !important;
}

.oneclubtncdiv {
    color: #ff5050;
}

.oneclubtncdiv p {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    font-family: 'Gotham Bold', sans-serif;
    font-size: 12px;
    letter-spacing: .5px;
    text-transform: none;
}

.oneclub-form label {
    font-family: 'Gotham Bold', sans-serif;
}

.oneclub-form label {
    display: flex;
    margin-bottom: 9px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.option {
    border: none;
    border-radius: 15px;
    padding: 9px 16px;
    margin-bottom: 10px;
}

.oneclubnew {
    font-family: 'Gotham Medium', sans-serif;
    line-height: 22px;
    font-size: 12px !important;
    text-transform: none !important;
    font-weight: 300 !important;
    letter-spacing: 1px !important;
}

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

.englishswitch span {
  color: #ff3d3d;
}

.footertxt {
    color: #fff;
    font-family: 'Gotham Medium', sans-serif;
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
    text-align: center;
}

/*=========================================================
    HOVER EFFECTS
=========================================================*/

.registration-card {
    transition: .35s;
}

.registration-card:hover {
    box-shadow:
        0 0 50px rgba(246, 190, 57, .18),
        0 30px 70px rgba(0, 0, 0, .75);
}

.form-control,
.upload-box,
.social-icons a,
.btn-register {
    transition: all .35s ease;
}

/*=========================================================
    INPUT ICON COLOR
=========================================================*/

.input-group-custom:focus-within i {
    color: #F6BE39;
}

/*=========================================================
    SELECTION
=========================================================*/

::selection {
    background: #F6BE39;
    color: #000;
}

/*=========================================================
    SCROLLBAR
=========================================================*/

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {
    background: #F6BE39;
    border-radius: 30px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FFD86A;
}

/*=========================================================
    ANIMATIONS
=========================================================*/

@keyframes float {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }

}

.upload-icon {

    animation: float 2.5s infinite;

}

.swal2-close {
    top: -17px !important;
    right: 21px !important;
}

/*=========================================================
    RESPONSIVE
=========================================================*/

@media (max-width:1199px) {

    .container {

        max-width: 960px;

    }

    .registration-heading h2 {

        font-size: 30px;

    }

    .registration-card {

        padding: 45px;

    }

    .btn-register {

        min-width: 420px;

    }

}

/*============================*/

@media (max-width:991px) {

    .site-header {

        padding: 16px 0;

    }

    .logo img {

        height: 48px;

    }

    .header-right span {

        display: none;

    }

    .registration-section {

        margin-top: -40px;

    }

    .registration-card {

        padding: 35px;

    }

    .registration-heading::before,

    .registration-heading::after {

        width: 70px;

    }

    .registration-heading h2 {

        font-size: 30px;

    }

    .btn-register {

        width: 100%;

        min-width: 100%;

    }

}

/*============================*/

@media (max-width:767px) {

    .site-header {

        position: relative;

        background: #000;

    }

    .header-inner {

        flex-direction: column;

    }

    .logo {

        margin-bottom: 18px;

    }

    .social-icons {

        justify-content: center;

    }

    .hero-banner::after {

        height: 0;

    }

    .registration-section {

        margin-top: 0;

        padding: 25px 0;

    }

    .registration-heading h2 {

        font-size: 30px;

    }

    .registration-heading p {

        font-size: 14px;

    }

    .registration-heading::before,

    .registration-heading::after {

        display: none;

    }

    .registration-card {

        padding: 30px 20px;

    }

    .form-control {

        height: 40px;

        font-size: 14px;

    }

    textarea.form-control {

        min-height: 100px;

    }

    .upload-box {

        padding: 40px 20px;

    }

    .footer-links {

        display: flex;
        flex-direction: column;

    }

    .footer-links1 {

        display: flex;
        flex-direction: column;

    }

    .footer-links li {

        margin: 14px 0;

    }

    .footer-links li::after {

        display: none;

    }

    .registration-wrapper{
        padding: 15px;
    }
      .swal2-close {
    top: -16px !important;
    right: -13px !important;
    }


}

/*============================*/

@media (max-width:575px) {

    .container {

        padding-left: 18px;

        padding-right: 18px;

    }

    .logo img {

        height: 42px;

    }

    .social-icons a {

        width: 38px;

        height: 38px;

    }

    .registration-heading img {

        width: 28px;

    }

    .registration-heading h2 {

        font-size: 30px;

    }

    .registration-heading p {

        font-size: 14px;

    }

    .registration-card {

        padding: 22px 18px;

        border-radius: 18px;

    }

    .form-group {

        margin-bottom: 18px;

    }

    .form-group label {

        font-size: 13px;

    }

    .form-control {

        padding-left: 46px;

    }

    .input-group-custom i {

        left: 15px;

    }

    .upload-icon {

        /* width: 60px;

        height: 60px; */

        font-size: 28px;

    }

    .choose-file {

        width: 100%;

    }

    .btn-register {

        font-size: 28px;

        height: 58px;

    }

}

/*============================*/

@media (max-width:360px) {

    .registration-heading h2 {

        font-size: 30px;

    }

    .btn-register {

        font-size: 24px;

    }

    .site-footer {

        padding: 35px 0;

    }

    .site-footer p {

        font-size: 13px;

    }

}

/*=========================================================
    UTILITIES
=========================================================*/

.text-gold {
    color: #F6BE39;
}

.bg-black {
    background: #000;
}

.radius-20 {
    border-radius: 20px;
}

.shadow-gold {
    box-shadow: 0 0 25px rgba(246, 190, 57, .15);
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-30 {
    margin-top: 30px;
}


.progress{
    width:100%;
    height:20px;
    background:#2d2d2d;
    border-radius:20px;
    overflow:hidden;
    margin-top:10px;
}

.progress-bar{
    width:0%;
    height:100%;
    line-height:20px;
    text-align:center;
    background:#d4af37;
    color:#000;
    font-size:12px;
    font-weight:600;
    transition:width .3s ease;
}


.upload-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.upload-box .error {
    position: relative;
    bottom: auto;
    top: auto;
    left: auto;
    order: 10;
    width: 100%;
    margin-top: 10px;
}

#cf-file-error span.error {
    flex: 0 0 100%;
    width: 100%;
    margin-top: 8px;
    margin-left: 30px;
    display: block;
    font-size: 10px;
    color: #ff4d4f !important;
    order: 10;
}


#cf-form label.error {
    flex: 0 0 100%;
    display: block;
    color: red;
    text-transform: none;
    margin-left: 5px;
    margin-top: 4px;
    font-size: 10px;
}

.btn-loader {
    width: 18px;
    height: 18px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    display: inline-block;
    animation: spin 0.6s linear infinite;
}

.cf-swal-popup {
    border-radius: 20px;
    color: #ffffff;
    background-color: #000;
    border: 2px solid #d4af37;
}

.cf-swal-popup .cf-swal-confirm {
    background-color: #6c5a1f;
}
