* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    color: #fff;
}

body {
    background-color: #020d2d;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    min-height: 100%;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
}

body.homepage {
    padding: 22px 0 60px 0;
    background-color: #0c0e28;
}


/* HEADINGS */

h1, p {
    color: #fff;
    text-align: center;
    line-height: 1.4;
}

h1 {
    font-size: 50px;
}

h2 {
    color: #fff;
    font-size: 25px;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 13px;
}

/* NAVIGATION */

.navbar img {
    height: 50px;
    width: auto;
    justify-self: start;
}

.navbar ul.navbar-links {
    list-style: none;
    display: flex;
    align-items: center;
    margin-bottom: 0;
    margin-right: 20px;
}

.navbar .dropdown-menu.show {
    background-color: #02173b;
    border: 1px solid #b79860;
}

.navbar .dropdown-item {
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.43px;
    text-align: left;
    color: #fff;
    transition: all 0.3s;
}

.navbar .dropdown-item.active, .navbar .dropdown-item:active {
    background-color: transparent;
    color: #ceab68;;
}

.navbar .dropdown-item:hover {
    background-color: #02173b;
    color: #d0ad6a;
}

.nav-item a {
    font-size: 14px;
    line-height: normal;
    letter-spacing: 0.37px;
    text-align: right;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease-out;
    padding: 12px 20px;
}

.nav-item.active a {
    color: #fdeaa8;
}

.nav-item a:hover {
    color: #fdecb1;
}

.btn.btn-transparent {
    background-color: transparent;
    border: none;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.43px;
    text-align: right;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease-out;
    padding: 10px 18px;
}

.btn.btn-transparent.dropdown-toggle.active {
    color: #ceab68;
}

.btn.btn-transparent:hover, .btn.btn-transparent:focus {
    box-shadow: none;
    outline: none;
    color: #ceab68;
}

a.login-container {
    border-radius: 23px;
    background-color: #02173b;
    display: flex;
    align-items: center;
    border: 1px solid #b79860;
    margin-left: 10px;
    padding: 3px 18px;
}

.login-container p.login-title {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.43px;
    color: #fff;
    margin-bottom: 0;
    text-align: left;
}

.login-container p.login-desc {
    font-size: 12px;
    font-weight: normal;
    letter-spacing: 0.32px;
    color: #d0ad6a;
    text-align: left;
    margin-bottom: 0;
}

.login-container img {
    height: 30px;
    margin-right: 10px;
}

.btn.btn-gradient {
    padding: 13px 28px 12px;
    border-radius: 23px;
    background-image: linear-gradient(to right, #d0ad6a, #b18a4b, #d0ad6a, #d0ad6a);
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.43px;
    text-align: center;
    color: #fff;
}

.nav-item a.register-btn:hover,
.nav-item a.register-btn:focus {
    color: #fff;
}

/* MOBILE MENU & ANIMATION */

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.menu-toggle {
    justify-self: end;
    display: none;
}

.menu-toggle:hover {
    cursor: pointer;
}

#mobile-menu.is-active .bar:nth-child(2) {
    opacity: 0;
}

#mobile-menu.is-active .bar:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
    -ms-transform: translateY(8px) rotate(45deg);
    -o-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
}

#mobile-menu.is-active .bar:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    -ms-transform: translateY(-8px) rotate(-45deg);
    -o-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
}

/* KEYFRAME ANIMATIONS */

@-webkit-keyframes gradbar {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

@-moz-keyframes gradbar {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

@keyframes gradbar {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

ul.language-menu {
    position: relative;
    background-color: #05224f;
}

ul.language-menu .dropdown-menu {
    position: absolute;
    bottom: 47px;
    top: unset;
    width: 100%;
    top: unset;
    padding: 0;
    background-color: rgba(34, 24, 58, .8);
}

ul.language-menu a.dropdown-item {
    color: #fff;
    background-color: #05224f;
}

ul.languages-container a.dropdown-item:hover {
    background-color: #1a3b6e;
}

ul.language-menu .dropdown-toggle::after {
    right: 24px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.dropdown-menu .dropdown-item img {
    margin-right: 0.10rem;
}

.explore a {
    margin: 0 auto 4.9em auto;
    display: block;
    width: fit-content;
}

.explore img {
    max-width: 1069px;
    width: 100%;
    margin: 0 auto;
    display: block;
}

ul.language-menu a.dropdown-item {
    background-color: transparent;
}

ul.language-menu {
    border-radius: 8px;
    border: solid 1px #5e5081;
    background-color: rgba(34, 24, 58, .8);
}

#intro.about .marketing {
    padding-top: 0;
}

#intro.about .education .achievements-container {
    margin-bottom: 30px;
}

#intro.about .education p.desc {
    text-align: center;
    margin-bottom: 5.15em;
}

#intro.about .marketing p.desc {
    text-align: center;
}

#intro.about .marketing {
    background-image: unset;
}

#intro.discover .education .achievements-container {
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    row-gap: 60px;
}

#intro.discover .education .explore {
    margin-top: 4.7em;
}

#intro.discover .achievements-container .tab:first-of-type {
    flex-basis: 100%;
}

#intro.discover .achievements-container .purple-diamond {
    left: 25px;
    margin-left: unset;
    margin-right: unset;
}

#intro.discover .achievements-container .tab:not(:first-of-type) {
    flex: 1;
}

@media only screen and (max-width: 991px) {
    /* MOBILE HEADINGS */
    .nav-item.mobile-log {
        display: flex;
    }

    .web-log {
        display: none;
    }

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 18px;
    }

    p {
        font-size: 14px;
    }

    /* MOBILE NAVIGATION */
    body.opened-nav {
        height: 100vh;
    }

    .opened-nav .navbar .mobile-nav ul.navbar-links {
        height: 450px;
        overflow-y: scroll !important;
    }

    .opened-nav .main-content,
    .opened-nav footer {
        display: none;
    }

    .navbar ul.navbar-links {
        display: none;
        flex-direction: column;
        position: absolute;
        justify-content: start;
        top: 55px;
        margin-left: auto;
        margin-right: auto;
        left: 0;
        right: 0;
        width: 100%;
        height: calc(100vh - 55px);
        text-align: center;
        overflow: hidden;
    }

    .navbar .mobile-nav ul.navbar-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        left: 0;
        top: 88px;
        width: 100%;
        overflow: hidden;
        padding: 0;
        background-size: 890px;
        background-repeat: no-repeat;
        background-position: 50% 50%;
    }

    .navbar li {
        padding: 15px;
        width: 100%;
        justify-content: center;
        gap: 10px;
    }
    .navbar li .b {
        max-width: 140px;
        width: 100%;
    }


    .menu-toggle, .bar {
        display: block;
        cursor: pointer;
    }
    .navbar-links.web-log {
        display: none !important;
    }

    .h-xl {
        font-size: 35px !important;
    }
}

/*bridge include*/
.bridge-container {
    position: relative;
}

.bridge-container .card {
    padding: 0;
    border-radius: 30px;
    border-style: solid;
    border-width: 1px;
    border-image-source: linear-gradient(to bottom, #193176, #020d2d);
    border-image-slice: 1;
    background-image: linear-gradient(to bottom, #041035, #020d2d), linear-gradient(to bottom, #193176, #020d2d);
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.bridge-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    opacity: 0.7;
    width: 1499px;
}

.bridge-content {
    padding: 6.25em 3.9em 7em;
    position: relative;
    z-index: 3;
}

.bridge-container h2 {
    text-align: left;
}

.bridge-container .subtitle {
    font-size: 20px;
    font-weight: 300;
    text-align: left;
    line-height: normal;
    letter-spacing: 0.53px;
    color: #fff;
    margin: 0 0 42px;
}

.bridge-container .btn-gradient {
    margin-bottom: 30px;
}

.bridge-description {
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.37px;
    color: #6c80bb;
    text-align: left;
    max-width: 531px;
}

.bridge-coins-img {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    max-width: 405px;
    right: 50px;
}

/*footer*/
.footer-logo {
    height: 70px;
    margin-bottom: 24px;
}

.footer-description {
    font-size: 15px;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.4px;
    color: #8798c9;
    margin-bottom: 24px;
    text-align: left;
}

.footer-links a {
    font-size: 15px;
    font-weight: 300;
    line-height: 2.67;
    letter-spacing: 0.4px;
    color: #8798c9;
    display: block;
    text-decoration: none;
    text-align: left;
}

.footer-links a.active {
    color: #ceab68;
}

.services-footer-section {
    padding-left: 38px;
}

.footer-links a:hover,
.footer-links a:focus {
    color: #ceab68;
}

.footer-title {
    font-size: 17px;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.45px;
    color: #fff;
    text-align: left;
}

hr {
    background-image: linear-gradient(to right, #020d2d 1%, #e9cfa1 50%, #020d2d 100%);
    border: 0;
    width: 100%;
    height: 1px;
    opacity: 1;
    margin: 0;
}

.mt-6 {
    margin-top: 76px;
}

img {
    max-width: 100%;
}

.copyright-text {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.terms-container a, .terms-container {
    font-size: 13px;
    font-weight: 500;
    line-height: 16px;
    color: #888dcb;
    margin-bottom: 0;
}

.terms-container a {
    text-decoration: none;
}

.copyright:first-of-type {
    padding: 35px 0 0;
}

.copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0 15px;
    margin-bottom: 12px;
}

.navbar ul.navbar-links .btn.btn-outline-gold {
    margin-bottom: 0;
}

.footer-row {
    margin-bottom: 40px;
}

/* width */
::-webkit-scrollbar {
    width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #020c2d;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #2c4e85;
    border-radius: 5px;
    cursor: pointer;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #b79860;
}

.benefit p.desc {
    max-width: 100%;
}

.benefit p.desc a {
    color: #d1af6c;
}

.partner .gold-title {
    font-size: 40px;
    font-weight: bold;
    line-height: normal;
    letter-spacing: 1.07px;
    text-align: left;
    margin-bottom: 0.5em;
    margin-top: 1em;
}

.partner ul li {
    max-width: 850px;
    width: 100%;
    font-size: 20px;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.53px;
}

@media (max-width: 1399px) {
    .navbar img.home-logo {
        height: 60px;
    }

    .navbar-links {
        padding-left: 0;
    }

    .nav-item a {
        padding: 10px;
    }

    .nav-item a.login-container {
        padding: 3px 18px;
    }

    .nav-item a.login-container.no-margin {
        margin: 0;
    }
}

@media (max-width: 1199px) {
    ul.language-menu {
        width: fit-content;
        margin-bottom: 1em;
    }

    .login-container {
        margin-left: 0;
    }

    .navbar img {
        height: 25px;
    }

    .login-container p.login-title {
        font-size: 13px;
    }

    .navbar img.home-logo {
        height: 40px;
    }

    .navbar {
        flex-wrap: unset;
    }

    .nav-item a,
    .btn.btn-transparent {
        font-size: 14px;
        padding: 10px;
    }

    .btn.btn-gradient {
        padding: 10px 28px;
    }

    .bridge-coins-img {
        max-width: 305px;
    }

    .services-footer-section {
        padding-left: 12px;
        margin-bottom: 20px;
    }

    .footer-logo {
        height: 50px;
    }
}

.mobile-log {
    display: none;
}

@media (max-width: 991px) {
    .dropdown-menu.show {
        margin: 1em auto 0 auto;
    }

    .copyright {
        display: block;
        text-align: center;
    }

    .nav-item a.login-container {
        margin: 0;
    }

    .navbar-links .dropdown-item {
        padding: 0;
    }

    .navbar .dropdown-item {
        font-size: 14px;
    }

    .navbar .dropdown-menu li {
        padding: 7px 15px;
    }

    .dropdown-menu[data-bs-popper] {
        top: 83%;
        left: -37px;
    }

    .bridge-content {
        padding: 30px 25px;
    }

    .bridge-container .subtitle {
        font-size: 18px;
        margin: 0 0 22px;
    }

    .bridge-coins-img {
        max-width: 205px;
        top: -70px;
    }
}

@media (max-width: 767px) {
    .bridge-coins-img {
        position: relative;
        top: 0;
        bottom: 0;
        margin: 15px auto;
        max-width: 100%;
        right: 0px;
    }

    #intro.discover .achievements-container .tab:not(:first-of-type) {
        flex-basis: 100%;
    }

    #intro.discover .education .achievements-container {
        row-gap: 30px;
    }
}

@media (max-width: 575px) {
    ul.language-menu {
        margin-left: auto;
        margin-right: auto;
    }

    .row.footer-row div {
        margin-bottom: 15px;
    }

    .navbar img {
        height: 30px;
    }

    .bridge-container h2,
    .bridge-description {
        text-align: center;
    }

    .bridge-container .subtitle {
        font-size: 16px;
        text-align: center;
    }

    .bridge-container .btn-gradient {
        margin: 0 auto 25px;
    }

    .bridge-content {
        padding: 30px 15px;
        text-align: center;
    }

    footer,
    .footer-description,
    .footer-title,
    .footer-links a {
        text-align: center;
    }

    .copyright {
        display: block;
        text-align: center;
    }

    .partner .gold-title {
        font-size: 30px;
    }

    .partner ul li {
        font-size: 15px;
    }
}

@media (max-width: 425px) {
    .intro-section {
        padding-top: 50px;
    }

    h1.heading, h2.title {
        font-size: 29px;
    }

    .navbar .dropdown-item {
        font-size: 13px;
    }

    .dropdown-menu[data-bs-popper] {
        left: -61px;
    }
}


/* Landing Redesign */

/* Common */
.b {
    display: block;
    border-radius: 5px;
    padding: 12px;
    color: #fff;
    border: 1px solid;
    text-align: center;
}
.b:focus,
.b:focus-visible,
.b:hover {
    color: #ead290;
    text-decoration: none;
}
.b.violet {
    background: #16183d;
    border-color: #323469;
}
.b.gold {
    background: #16183d;
    border-color: #f7df98;
    max-width: 175px;
    width: 100%;
    font-size: 14px;
    letter-spacing: 0.37px;
    line-height: 17px;
}
.gold-text {
    color: #ead290;
}
.gradient.violet {
    background: #373b89;
    position: absolute;
}
.c.violet {
    border-radius: 20px;
    position: relative;
    margin-bottom: 30px;
    background: #16183d;
    border: 1px solid #323469;
    overflow: hidden;
}
.c.violet:last-of-type {
    margin-bottom: 0;
}
.c.violet .h-xl,
#about-page .h-xl {
    font-size: 43px;
    font-weight: 500;
    letter-spacing: 2.53px;
    line-height: 50px;
    text-align: left;
}
.c.violet .h-xl.gold {
    background-image: linear-gradient(45deg,#b58947,#a3732f 8%,#ffeaa5 17%,#cea253 26%,#82561d 48%,#d3b879 66%,#ffedab 82%,#a3732f);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
#about-page .h-md {
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 0.9px;
    line-height: 30px;
    margin-bottom: 16px;
}
#about-page .h-md.gold {
    background-image: linear-gradient(45deg,#b58947,#a3732f 8%,#ffeaa5 17%,#cea253 26%,#82561d 48%,#d3b879 66%,#ffedab 82%,#a3732f);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.c.violet .h-base,
#about-page .h-base {
    font-size: 16px;
    letter-spacing: 0.94px;
    line-height: 19px;
    margin-bottom: 0;
}
.c.statement-section .h-base{
    font-size: 14px;
}
.statement-section .h-base.mb-2{
    margin-bottom: 16px !important;
}
.h-base a{
    color:#36e7ff;
    text-decoration: underline;
}
body.homepage .main-content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

/* Nav */
.nav-wrapper {
    position: relative;
    background: #16183d;
    border: 1px solid #323469;
    border-radius: 20px;
}
.nav-wrapper .gradient {
    height: 30px;
    left: 28px;
    width: 214px;
    object-fit: cover;
    object-position: bottom;
}
.nav-wrapper .navbar {
    padding: 18px 22px 18px 30px;
}
.nav-wrapper .b {
    font-size: 13px;
    letter-spacing: 0.35px;
    line-height: 16px;
    max-width: 140px;
    width: 100%;
    text-align: center;
}
.navbar-links.web-log {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: end;
}
.navbar-links.web-log a {
    min-width: 140px;
}

/* Tailwind Like Breakpoints */

/* sm */
@media (width <= 40rem) {
    .nav-wrapper .navbar {
        padding: 18px;
    }
}
/* md */
@media (width <= 48rem) {

}
/* lg */
@media (width <= 64rem) {

}
/* xl */
@media (width <= 80rem) {

}
/* 2xl */
@media (width <= 96rem) {

}
