/* global */
@import url("../fonts/mont/font.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "mont" !important;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #fff;
}

a:hover {
    color: #b89635;
    font-weight: 700;
    text-decoration: none;
}

.separator {
    width: 90%;
    height: 2px;
    background-color: rgba(58, 57, 57, 1);
}

.btn-primary {
    padding: 18px 40px;
    font-family: "Mont" !important;
    font-size: 18px;
    background: linear-gradient(90deg, #5f2eeb 0%, #2a1658 100%);
    border: 0px solid transparent !important;
    border-radius: 48px;
    transition: background 0.5s ease, transform 0.3s ease;
    /* Add transition for background and transform */
    cursor: pointer;
}

.btn-primary:hover {
    background: linear-gradient(90deg, #5f2eeb 0%, #805cd3 100%);
    transform: scale(1.05);
    /* Slightly scale up the button */
}

.btn-primary:active {
    transform: scale(0.98);
    /* Slightly scale down the button on click */
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 48px;
    background: linear-gradient(45deg, #5f2eeb, #2a1658);
    z-index: -1;
    transition: opacity 0.5s ease;
    opacity: 0;
}

.btn-primary:hover::before {
    opacity: 1;
    animation: pulse 1.5s infinite;
    /* Apply pulse animation */
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.divider {
    border-top: 1px solid #e7e7e7;
}

.danger-text {
    color: #ff4848;
}

/* start loader */
/* .pace {
    pointer-events: none;
    user-select: none;
    z-index: 99999;
    position: fixed;
    margin: auto;
    top: 195px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 250px;
    border: 0px;
    height: 5px;
    overflow: hidden;
    background: #222;
}

.pace .pace-progress {
    box-sizing: border-box;
    transform: translate3d(0, 0, 0);
    max-width: 250px;
    position: fixed;
    z-index: 2000;
    display: block;
    position: absolute;
    top: 0;
    right: 100%;
    height: 100%;
    width: 100%;
    background: #5F2EEB;
}

.pace.pace-inactive {
    display: none;
}

#preloader {
    width: 100%;
    height: 100vh;
    background: #171717;
    overflow: hidden;
    position: fixed;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 9999;
}

@media (max-width: 991px) {
    #preloader {
        height: 100%;
        position: fixed;
    }
}

.p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 28px;
}

.p img {
    width: 130px;
} */

/* header */
header {
    top: 0;
    position: absolute;
    width: 100%;
}

.header-container {
    max-width: 950px;
    margin: 0 auto;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin: 35px 10px 0px;
    color: #ffffff;
    border-radius: 68.694px;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.51) -48.65%,
            rgba(102, 102, 102, 0.51) 100%);
    backdrop-filter: blur(3.25px);
}

@media screen and (max-width: 768px) {
    .header {
        padding: 15px 20px;
        align-items: center;
    }
}

.mobile-logo {
    display: none;
}

.header-start {
    display: flex;
}

.header-start img {
    width: 110px;
    height: 100%;
}

#NavBar {
    z-index: 20;
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}

.header-end ul {
    list-style: none;
    padding: 0px 0px 0px 47px;
    display: flex;
    align-items: center;
    column-gap: 48px;
    margin-bottom: 0px;
}

.header-end ul li {
    color: #ffffff;
    display: inline;
    cursor: pointer;
}

.header-end ul li:hover {
    color: #b89635 !important;
}

.header-end ul li a {
    color: #fff;
    text-decoration: none;
}

@media screen and (max-width: 1100px) {

    .header-end button,
    .header-start ul li a {
        font-size: 0.825rem !important;
    }

    .header-end button,
    .header-end ul li a {
        font-size: 0.825rem !important;
    }

    .header-end button {
        padding: 17px 23px;
    }
}

.header-end ul li a:hover {
    color: #bf91ff  !important;
}

.header-end ul .active {
    font-family: "Mont Bold", sans-serif;
}

.sticky .active {
    color: #ffffff !important;
}

.header-end button {
    padding: 11px 26px;
    border-radius: 45px;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #fff;
    cursor: pointer;
    font-size: 1rem;
}

.menu-toggle {
    display: none;
    width: 50px;
    height: 38px;
    padding: 0.25rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: url("../images/icons/hamburger.png");
    background-repeat: no-repeat;
    background-position: center;
}

.position-relative {
    overflow: hidden;
}

.menu-toggle .line {
    width: 30px;
    height: 2px;
    background-color: #ddd;
    margin: 6px 0px;
}

@media screen and (max-width: 992px) {
    .header-end ul {
        column-gap: 32px;
    }
}
@media screen and (max-width: 768px) {

    .header-start img,
    .header-end {
        display: none;
    }

    .header-start ul {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 108px;
        left: 50%;
        background-color: #fff;
        width: 100%;
        padding: 0px;
        z-index: 2;
        height: 0px;
        overflow: hidden;
        transition: height 0.5s;
        align-items: start;
        transform: translate(-50%, 0%);
        width: calc(100% - 40px);
    }

    .header-end ul {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 82px;
        left: 50%;
        background-color: #141414;
        width: 100%;
        padding: 0px;
        z-index: 2;
        height: 0px;
        overflow: hidden;
        transition: height 0.5s;
        align-items: start;
        transform: translate(-50%, 0%);
        width: calc(100% - 40px);
        border-radius: 20px;
    }
    
    .sticky .header-end ul {
        top: 82px;
    }

    .show ul {
        height: auto;
    }

    .header-start ul li {
        border-bottom: 1px solid #eee;
        width: 100%;
        text-align: start;
        padding: 1.2rem 2.5rem !important;
    }

    .header-start ul li {
        border-bottom: 1px solid #eee;
        width: 100%;
        text-align: start;
        padding: 1.2rem 2.5rem !important;
    }

    .header-end ul li {
        border-bottom: 1px solid #eee;
        width: 100%;
        text-align: start;
        padding: 1.2rem 2.5rem !important;
    }

    .header-end ul li a {
        color: #FFF;
        font-size: 14px !important;
    }

    .header-end ul li:last-child {
        border-bottom: none;
    }

    .header-end button {
        padding: 10px 26px;
    }

    .menu-toggle,
    .mobile-logo {
        display: block;
        cursor: pointer;
    }

    .mobile-logo img {
        width: 110px;
        height: 100%;
    }

    .sticky .mobile-logo img {
        width: 80px;
    }
}

/* hero */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    text-align: center;
}

.video-background-wrapper::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* content: ""; */
    background: linear-gradient(180.91deg,
            rgba(0, 0, 0, 0.51) 30.5%,
            rgba(102, 102, 102, 0) 107.2%);
}

.video-background {
    min-height: 100%;
}

@media screen and (min-width: 1600px) {
    .video-background {
        min-width: 100%;
    }
}

.centered-text {
    width: 100%;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
}

@media screen and (max-width: 768px) {
    .centered-text {
        top: 55%;
    }
}

.centered-text .head-line {
    margin-top: 20px;
    font-family: "Mont Bold", sans-serif;
    padding: 0px 16px;
}

.centered-text .head-line h2 {
    font-size: 24px;
    margin: 0px;
    font-family: "mont" !important;
}

.centered-text .head-line h1 {
    font-size: 48px;
    margin: 10px 0px 0px;
    background: linear-gradient(90deg, #bf91ff 0%, #fff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.centered-text .head-line h3 {
    font-size: 18px;
    margin: 10px 0px 0px;
    font-family: "mont" !important;
}

.centered-text .head-circle {
    max-width: 362px;
    max-height: 356px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 50%;
}

.centered-text .head-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 1300px) {
    
    .centered-text {
        top: 55%;
    }
    .centered-text .head-circle {
        width: 35vh;
        height: 35vh;
    }
}

.centered-text .register button {
    position: relative;
    margin-top: 19px;
    font-family: "Mont Bold", sans-serif;
    padding: 16px 23px;
    border-radius: 50px;
    background: linear-gradient(90deg, #5f2eeb 0%, #2a1658 100%);
    color: #ffffff;
    border: 1px solid #1d1f221a;
    cursor: pointer;
    font-size: 18px;
}

@media (max-width: 992px) {
    .centered-text .head-line h2 {
        font-size: 18px;
    }

    .centered-text .head-line h1 {
        font-size: 24px;
    }

    .centered-text .head-line h3 {
        font-size: 14px;
    }

    .centered-text .register button {
        padding: 18px 22px;
        font-size: 14px;
    }

    .head-circle {
        width: 203px !important;
        height: 207px !important;
    }

    .head-circle img {
        width: 450px;
    }
}

/* about */

/* footer */
footer {
    background: rgba(29, 31, 34, 1);
    background-image: url("../images/aboutSection.png");
    padding: 64px 70px;
}

.footer-item.active a {
    font-family: "Mont Bold";
    color: var(--color-gold);
}

.footer-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-row {
    width: 50%;
}

.footer-row .footer-list {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
}

.footer-icons-text p {
    font-size: 15px !important;
    font-weight: 400;
    line-height: 18px;
    color: rgba(255, 255, 255, 1) !important;
}

.footer-icons img {
    margin-left: 6px;
}

@media (max-width: 991px) {
    .footer-row {
        width: 100%;
    }

    .footer-list {
        display: flex;
        flex-direction: column !important;
        margin: 0 0 3rem;
        padding: 0%;
        gap: 10px;
    }

    .footer-bottom-row {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .footer-bottom-row {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}

.footer-video {
    position: relative;
    background-color: #000;
    overflow: hidden;
}

.footer-video .video-background-wrapper {
    height: 60vh;
    overflow: hidden;
}

.footer-video .video-background-wrapper::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: #5F2EEB24;
}

.footer-video .video-background {
    opacity: 0.16;
}

@media screen and (min-width: 1600px) {
    .footer-video .video-background {
        min-width: 100%;
    }
}

.footer-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.footer-content .footer-logo {
    width: 150px;
}

.footer-content .footer-links {
    display: flex;
    column-gap: 60px;
    margin-top: 90px;
}

.footer-content .footer-links a {
    color: #FFF8F8;
}

.footer-content .footer-links .active {
    font-family: "Mont Bold", sans-serif;
}

.footer-content .footer-social {
    display: flex;
    column-gap: 14px;
    margin-top: 65px;
}

.footer-content .footer-social a img {
    width: 28px;
}

@media screen and (max-width: 576px) {
    .footer-content .footer-links {
        flex-direction: column;
        text-align: center;
        row-gap: 30px;
    }
}

.modify {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    z-index: 99;
}


.modify svg path {
    fill: #2a1658
}

.editClick, .HideeditClick {
    display: none;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -29px);
    background: #2a1658;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0px 0 24px 5px #2a165842;
    color: #FFF;
    z-index: 99999;
    cursor: pointer;
}