@font-face {
    font-family: 'Inter';
    font-style: italic;
    font-weight: 300;
    font-display: swap;
    src: url(UcC53FwrK3iLTcvneQg7B5iqpJlhKnOckaL5UUMbm9wUkHU.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Orbitron';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyKS6BoWgz.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --secondary: #007BFF;
    ;
    --highlight: #D62828;
    --highlight-hover: #eb2e2e;
    --primary: #F7F9FA;
    --primary-dark: #2C2C2C;
    --hover: #208bfd;
    --bg: #F7F9FA;
    --text: #2C2C2C;

}

::selection {
    background-color: var(--highlight);
    color: var(--bg);
}

body {
    width: 100vw !important;
    overflow-x: hidden !important;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
.btn,
.drow-nav {
    font-family: "Orbitron", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

main {
    min-height: 80vh;
}

.container:not(.inview),
.container-fluid:not(.inview) {
    transform: translateY(30px);
    opacity: 0;
}

.inview {
    transform: translateY(0);
    opacity: 1;
    transition: all 0.6s ease;
}

/* To support manual show/hide via fadeIn/fadeOut */
.fade-hidden {
    opacity: 0;
    display: none;
}

/* Optional scroll effect classes */
.show-element {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease-in-out;
    transform: translate(0) !important;
}

.bg-primary {
    background-color: var(--secondary) !important;
}

.preloader,
.cookie-conscent {
    opacity: 1;
    transition: opacity 0.5s ease;
}

.preloader {
    position: fixed;

    left: 0;
    top: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    overflow: visible;
    background-color: var(--bg);
    text-align: center;
    padding-top: 20%;
    color: var(--highlight);
}

.toTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background-color: var(--secondary);
   
    padding: 10px 15px;
    transition: all 0.5s ease-in-out;
    transform: translateY(100vh);
}
.toTop .feather{
    color: var(--bg) !important;
}

.toTop:hover {
    background-color: var(--highlight);

    cursor: pointer;
}

.modal-backdrop {
    background-color: var(--secondary) !important;
    opacity: 1 !important;
}

.grecaptcha-badge {
    visibility: hidden !important;
    display: none !important;
}

.cookie-conscent {
    position: fixed;
    bottom: 10px;
    left: 30vw;
    width: 40vw;
    color: var(--text);
    background-color: var(--bg);
    z-index: 9999;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 768px) {
    .cookie-conscent {
        width: 90vw;
        left: 5vw;
    }
}

.drow-nav {
    color: var(--text);
    padding: 0.5rem;
    font-size: clamp(0.9rem, 1vw, 1.4rem);
    position: relative;
}

.drow-nav,
.menu-toggle {
    text-decoration: none;
    padding: 20px 20px;
    display: inline-block;
}
.feather{
    color: var(--highlight);
}
.menuMobile .feather{
    color: var(--bg);
}
.menuMobile .logo-mobile{
    filter: invert(1);
}
@media screen and (max-width: 768px) {
    .drow-nav {
        display: block;
        padding: 12px 20px;
        font-size: 32px
    }

}


.drow-nav::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background-color: var(--highlight);
    bottom: 0;
    left: 0;
    transition: all 0.5s ease-in-out;
}

.current::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--highlight);
    bottom: 0;
    left: 0;
    transition: all 0.5s ease-in-out;

}

.drow-nav:hover::after {
    width: 100%;
    height: 3px;
    background-color: var(--highlight) !important;
    bottom: 0;
    left: 0;
    transition: all 0.5s ease-in-out;
}


.menuMobile {
    width: 100vw;
    height: 100vh;
    background-color: var(--highlight-hover);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.5s;
    overflow-y: auto;

}

.menuMobile .drow-nav {

    color: var(--bg);
}

.menuMobile a {
    color: var(--bg);
    text-decoration: none;
}

.menu {
    background-color: rgba(255, 255, 255, 0.1);
    transition: transform 0.5s;
    width: 100%;
    overflow: hidden;
}

.menu-scrolled {
    background-color: rgba(255, 255, 255, 0.6);
    /* example */
    transition: background-color 0.3s ease-in-out;
}

.menuMobile .drow-nav {
    display: block;
    padding: 20px 0;
}



.menu-active {
    transform: translateX(0);
}

footer {
    background-color: var(--highlight-hover);
    color: var(--bg);
    padding: 20px 0;

}

footer a {
    color: var(--bg);
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}

header {
    background-size: cover;
    height: 90vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
}

header .container {
    padding-top: 15vh;
}

.header-sm {
    position: relative;
    background-size: cover;
    height: 100vh;
    /* flexible height */
    background-attachment: scroll;
    /* better for mobile */
    background-position: center;
    background-repeat: no-repeat;
}

.header-md {
    position: relative;
    background-size: cover;
    height: 100vh;
    /* flexible height */
    background-attachment: scroll;
    /* better for mobile */
    background-position: center;
    background-repeat: no-repeat;
}

.header-admin {
    background-color: var(--highlight);
    height: 32vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
}

.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 40vh;
}

.data {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);

    text-align: center;

    z-index: +1;
}
.header-sm .data {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);

    text-align: center;

    z-index: +1;
}
.mask {
    background-color: rgba(255, 255, 255, 0.15);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



.text-primary {
    color: var(--highlight) !important;
}

.btn {
    padding: .7rem 2.8rem !important;
    border-radius: 0px!important;
    border:1px solid transparent!important;
}


.btn-primary {
    background-color: var(--highlight);
    color: var(--bg);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

.btn-primary:hover {
    background-color: var(--highlight-hover);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--bg);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

.btn-secondary:hover {
    background-color: var(--hover);
}


.form-control {
    border: none;
    border-bottom: 2px solid var(--text);
    background-color: var(--bg) !important;
    color: var(--text);
    border-radius: 0px;
    box-shadow: none;
    outline: none;
    transition: all 0.5s ease;
    box-shadow: none !important;
}


.form-control:focus {
    border-color: var(--hover) !important;
    color: var(--highlight-hover);
    background-color: var(--bg) !important;
}

label {
    font-size: 1rem;

    color: var(--primary-dark);
    margin-top: 0.5rem;
    margin-bottom: 0.2rem;
}

.admin-menu i {
    width: 60px;
    ;
}

.bg-top-dark {
    background-color: var(--primary-dark);
    margin-bottom: -2px;
}

.prarallax {
    min-height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.loopy {
    border: 1px solid var(--bg);
    transition: all 0.5s ease-in-out;
}

.loopy:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--highlight);
    background-color: var(--highlight-hover);
}
.swifty {
    border: 1px solid var(--bg);
    transition: all 0.5s ease-in-out;
}

.swifty:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--text);
    background-color: var(--bg);
}
.cooper {
    border: 1px solid var(--bg);
    transition: all 0.5s ease-in-out;
    color: var(--bg);
}

.cooper:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--highlight);
    background-color: var(--text);
}
.hl {
    color: var(--highlight);
    font-weight: bold;
    font-size: 1.2rem;

}

li {
    margin-bottom: 0.5rem;
    font-size: 1.4rem;

}

.bot-logo img {
    width: 25vw;
    height: auto;
}

@media (max-width: 767px) {
    .bot-logo img {
        width: 50vw !important;
        height: auto;
    }
}

.pattern-bg{
    background-color: var(--highlight);
    color: var(--bg);
        background-position: center right;
        background-size: fit;
        background-repeat: no-repeat;
        position: relative;
        z-index: 0;
}
.pattern{
    background-position: center right;
        background-size: fit;
        background-repeat: no-repeat;
        position: relative;
        z-index: 0;
}
