:root {
    --secondary: #dc3545;;
    --highlight: #01803d;
    --highlight-hover: #016f2b;
    --primary: #fff;
    --primary-dark: #685762;
    --hover: #D81159;
    --bg: #fafafa;
    --text: #190B28;

}

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

body {
    width: 100vw !important;
    overflow-x: hidden !important;
}
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);
    color: var(--text);
    padding: 10px 15px;
    transition: all 0.5s ease-in-out;
    transform: translateY(100vh);
}
.toTop:hover {
    background-color: var(--highlight);
    color: var(--bg);
    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: 5%;
    width: 90%;
    background-color: var(--bg);
    z-index: 9999;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
}

.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;
}
@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(--hover)!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.6);
    transition: transform 0.5s;
    width: 100%;
    overflow: hidden;
}
.menu-scrolled {
    background-color: var(--primary);
    /* 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: clamp(200px, 38vh, 400px);
    /* flexible height */
    background-attachment: scroll;
    /* better for mobile */
    background-position: center;
    background-repeat: no-repeat;
}
.header-md {
    position: relative;
    background-size: cover;
    height: clamp(600px, 68vh, 800px);
    /* 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;
}
.mask {
    background-color: rgba(255, 255, 255, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


header video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.text-primary {
    color: var(--highlight) !important;
}

.btn {
    padding: .7rem 2.4rem !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;;
}