html,
body {
    font-size: 14px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}




@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

@font-face {
    font-family: 'Grift';
    src: url('/fonts/Grift-Regular.otf') format('opentype');
}

@font-face {
    font-family: 'Blauer-Nue';
    src: url('/fonts/Blauer-Nue-Regular.otf') format('opentype');
}

.btn-primary {
    transition: all 0.4s ease-in-out;
    font-weight: 700;
}

.btn-primary:hover {
    border: 1px solid #030311;
    color: #030311;
    background-color: #F9FCFF;
}


.btn-secondary {
    transition: all 0.4s ease-in-out;
    font-weight: 700;
}

.btn-secondary:hover {
    color: #fff;
    background: transparent;
    border: 1px solid rgba(200, 209, 218, 1);
}


.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    padding-top: 95px;
    background-color: #030311;
    font-family: 'Grift', Arial, sans-serif;
}

h1,
h2 {
    font-family: 'Blauer-Nue', Arial, sans-serif !important;
}

.regularFont {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #CDCDCF !important;
}



/*header*/
.navbar {
    padding: 25px 0 !important;
    background: transparent;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.navbar-nav .nav-link {
    margin-left: 15px;
    transition: color 0.3s ease;
    color: #CDCDCF !important;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.navbar-nav .nav-link:hover {
    color: white !important;
}



.navbar.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.navbar-nav .nav-link.active {
    color: white !important;
    font-weight: 600;
    position: relative;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
    border-radius: 1px;
}
/*end header*/

/*FOOTER*/
.footer {
    background-color: rgba(3, 3, 17, 1);
    color: #fff;
    padding: 40px 20px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: auto;
}

.footer-logo img {
    max-height: 43px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin: 6px 0;
}

.footer-links ul li a {
    color: rgba(230, 230, 231, 1);
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: rgba(230, 230, 231, 1);
}

.footer-contact h1 {
    font-size: 44px;
    font-weight: 600;
    line-height: 55px;
    color: rgba(230, 230, 231, 1);
}

.footer-contact p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: rgba(230, 230, 231, 1);
    margin: 0rem;
}

.footer-contact h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-contact a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

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

.footer-socials {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
}

.footer-bottom {
    text-align: center;
    max-width: 1050px;
    margin: 45px auto;
    padding-top: 45px;
    border-top: 1px solid rgba(179, 179, 184, 0.3);
    font-size: 18px;
    line-height: 28px;
    color: rgba(230, 230, 231, 1);
}

.footer-bottom p {
    font-size: 18px;
    line-height: 28px;
    color: rgba(230, 230, 231, 1);
}

/* Footer Link Active & Hover */
.footer-links ul li a {
    color: rgba(230, 230, 231, 0.8);
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}
 
.footer-links ul li a:hover {
    color: white;
    transform: translateX(5px);
}
 
.footer-links ul li a.active {
    color: white;
    font-weight: 600;
    opacity: 1;
}
 
.footer-socials a {
    display: inline-block;
    transition: transform 0.3s ease, filter 0.3s ease;
}
 
.footer-socials a:hover {
    transform: translateY(-5px);
    filter: brightness(1.2);
}
.footer-contact .footer-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
}

.footer-contact .footer-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/*END FOOTER*/

.pattern {
    background-image: url(/images/pattern.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 85%;
}

@media(max-width: 480px) {
    .navbar {
        background: rgba(10, 10, 10, 0.9);
        backdrop-filter: blur(8px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }
    .navbar-nav .nav-link.active::after {
        display: none;
    }
}