@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;400;700&family=MuseoModerno:wght@200;300;400;500;600;700&family=Open+Sans:wght@300;400;500;700&family=PT+Serif:wght@400;700&family=Roboto+Mono:ital,wght@0,100;0,400;0,600;0,700;1,400&family=Roboto:wght@300;400;700&display=swap');
html {
    font-family: 'Inter', sans-serif;
    font-size:15px;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    color: var(--white);
}

body html {
    height: 100%;
    margin: 0;
    padding: 0;
    color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    color: var(--white);
}

*
{
    margin: 0;
    padding: 0;
}

#contents
{
    position: relative;
    z-index:1;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    background:var(--dark);
    min-height: 100vh;
}

.centered_vertically
{
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

a.no_underline
{
    background:none !important;
    background-size: 0% 0px, 0 0px !important;
    border-radius: 0px !important;
    background-position: 0 0%, 0% 0% !important;
    background-repeat: no-repeat;
    transition: background-size 0ms !important;
    color: var(--white);
}

a.no_underline:hover
{
    background-size: 0 0px, 100% 0px;
    background-position: 0% 0%, 0 0%;
    color: white;
    text-decoration: none;
}

a
{
    background:
        linear-gradient(
            to right,
            rgba(100, 200, 200, 0),
            rgba(0, 0, 0, 0)
        ),
        linear-gradient(
            to right,
            var(--blue),
            var(--blue),
            var(--blue)
        );
    background-size: 100% 1px, 0 1px;
    border-radius: 1px;
    background-position: 0 100%, 100% 100%;
    background-repeat: no-repeat;
    transition: background-size 400ms;
    padding-bottom: 4px;
    text-decoration: none;
    color:var(--white)
}

a:hover {
    background-size: 0 1px, 100% 1px;
    background-position: 100% 100%, 0 100%;
    color: var(--blue);
    text-decoration: none;
}

#footer
{
    padding-left: 8%;
    padding-right: 8%;
    background-color: var(--dark-variation);
    color:var(--gray);
    padding-bottom: 3%;
    padding-top: 3%;
    position: relative;
}

.footer_links
{
    display: inline-block;
    width:75%;
    float:right;
}

#footer .inner
{
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

.footer_column
{
    width: 20%;
    text-align: left;
    justify-content: right;
    display: inline-block;
    float:right;
}

#footer ul
{
    list-style: none;
}

#footer ul li
{
    margin: 1em 0;
    font-size: .875em;;
}

#footer .logo
{
    width:30%;
    margin-right:10%;
    display: inline-block;
    float:left;
    object-fit: contain;
}

.copyright
{
    color:var(--dark-gray);
    font-size:.75em;
    margin-top:1rem;
    line-height: 2;
}

#navbar
{
    position: fixed;
    width:100%;
    min-height:50px;
    background:none;
    top:0;
    left:0;
    display: block;
    z-index: 999;
    font-weight: 500;
    transition: .25s;
}

.navbar-with-background a
{
    color:black !important;
    background:
        linear-gradient(
            to right,
            rgba(100, 200, 200, 0),
            rgba(0, 0, 0, 0)
        ),
        linear-gradient(
            to right,
            rgb(0, 0, 0),
            rgb(0, 0, 0),
            rgb(0, 0, 0)
        ) !important;
    background-size: 100% 1px, 0 1px !important;
    border-radius: 1px !important;
    background-position: 0 100%, 100% 100% !important;
    background-repeat: no-repeat !important;
    transition: background-size 400ms !important;
    padding-bottom: 4px !important;
    text-decoration: none !important;
}

.navbar-with-background a:hover {
    background-size: 0 1px, 100% 1px !important;
    background-position: 100% 100%, 0 100% !important;
    color: rgb(0, 0, 0) !important;
    text-decoration: none !important;
}

.navbar-with-background
{
    background-color: var(--white) !important;
    transition: .25s;
}

.logo_navbar
{
    width: 100%;
}

.logo-holder
{
    width: 200px;
    height:50px;
    display: inline-block;
    position: relative;
    margin-left: 8%;
    margin-top: 25px;
    float:left;
    padding-top: 8px;
    z-index: 99999;
}

.navbar_hotlinks
{
    width:auto;
    height:100%;
    position: relative;
    margin: 40px 8%;
    justify-content: center;
    letter-spacing: 2px;
    font-weight: 500;
    text-align: right;
}

.navbar_hotlink
{
    margin:0 auto;
    width:10%;
    height:auto;
    display: inline-block;
    text-align: center;
}

.img-object-center
{
    width: 100%;
    height:100%;
    object-fit: cover;
    justify-content: center;
    background-position: center;
}

.dark
{
    color:var(--darker-gray);
}

.full_height_section
{
    position: relative;
    min-height:100vh;
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 3%;
    padding-bottom: 3%;
}

.blue
{
    color: var(--blue);
}

.white
{
    color:var(--white);
}
.ahref_dark
{
    background:
        linear-gradient(
            to right,
            rgba(100, 200, 200, 0),
            rgba(0, 0, 0, 0)
        ),
        linear-gradient(
            to right,
            var(--blue),
            var(--blue),
            var(--blue)
        );
    background-size: 100% 1px, 0 1px;
    border-radius: 1px;
    background-position: 0 100%, 100% 100%;
    background-repeat: no-repeat;
    transition: background-size 400ms;
    padding-bottom: 4px;
    text-decoration: none;
    color:var(--darker-gray);
}
.ahref
{
    background:
        linear-gradient(
            to right,
            rgba(100, 200, 200, 0),
            rgba(0, 0, 0, 0)
        ),
        linear-gradient(
            to right,
            var(--blue),
            var(--blue),
            var(--blue)
        );
    background-size: 100% 1px, 0 1px;
    border-radius: 1px;
    background-position: 0 100%, 100% 100%;
    background-repeat: no-repeat;
    transition: background-size 400ms;
    padding-bottom: 4px;
    text-decoration: none;
    color:var(--white)
}

.ahref_dark:hover
{
    background-size: 0 1px, 100% 1px;
    background-position: 100% 100%, 0 100%;
    color: var(--blue);
    text-decoration: none;
    cursor: pointer;
}

.ahref:hover
{
    background-size: 0 1px, 100% 1px;
    background-position: 100% 100%, 0 100%;
    color: var(--blue);
    text-decoration: none;
    cursor: pointer;
}

.nlabel
{
    color:var(--white);
}

.muted
{
    color:var(--dark-gray) !important;
}

.muted a
{
    color:var(--dark-gray) !important;
}

.muted a:hover
{
    color:var(--blue) !important;
}

input, textarea
{
    background: var(--darker-gray) !important;
    border:0 !important;
    color:var(--white) !important;
    padding:5px !important;
    border-radius: 5px !important;
    resize: none !important;
}

input:focus, textarea:focus {
    outline:none;
}

select
{
    padding-left:10px;
    padding-right:10px;
    height:30px;
    background-color: var(--darker-gray);
    color:var(--white);
    border:0;
    border-radius: 5px;
}

.s1
{
    font-size:16px;
}

.s2
{
    font-size: 18px;
}
.btn-quantity
{
    width: 50px;
    min-height: 25px;
    background-color: var(--blue);
    border: 2px solid var(--blue);
    border-radius: 25px;
    transition: .5s;
    color:#fff3cd;
    font-size: 2em;
    padding-bottom: 6px;
}
.btn-quantity:hover
{
    transition: .5s;
    background:transparent;
}
.btn-quantity.disabled
{
    background-color: var(--gray) !important;
    border: 0;
    color:var(--gray-dark);
}
.floating-btn
{
    min-width:150px;
    background-color: transparent;
    border: 2px solid var(--blue);
    border-radius: 25px;
    padding-top:6px !important;
    padding-bottom: 10px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    transition: .5s;
    color:#fff3cd;
}
.floating-btn.red
{
    border-color: var(--red);
}
.floating-btn.red:hover
{
    background-color: var(--red);
}
.floating-btn.disabled
{
    background-color: var(--gray) !important;
    border: 0;
    color:var(--gray-dark);
}
.floating-btn.disabled:hover
{
    cursor: not-allowed;
}
.floating-btn.dark
{
    color:var(--darker-gray) !important;
}
.floating-btn.dark:hover
{
    color:#fff3cd !important;
}

.floating-btn:hover
{
    background-color: var(--blue);
    transition: .5s;
}

.default-btn
{
    min-width:150px;
    padding-top:6px !important;
    padding-bottom: 10px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    border:0;
    background:var(--blue);
    border-radius: 5px;
    transition: .5s;
    color:#fff3cd;
}

.default-btn:hover
{
    transition: .5s;
    background: var(--blue-darker);
}

.display_none
{
    display: none !important;
}

.full_screen_img
{
    width:100vw;
    height:100vh;
    top:0;
    left:0;
    margin:0;
    position: absolute;
    object-fit: cover;
}

.fullscreen_title
{
    color:var(--white);
    font-weight: 600;
    font-size: 2rem;
}

.fullscreen_text_holder
{
    position: absolute;
    margin-top:83vh;
    z-index:999;
}

.fullscreen_text_holder.left
{
    left:7vw !important;
}

.fullscreen_text_holder.right
{
    text-align: right;
    right:7vw !important;
}

.fullscreen_text
{
    color:var(--white);
    font-weight: 400;
    font-size: 1.3rem;
}

.height_seperator_fullscreen
{
    height: 100vh;
    display: block;
    width: 0;
    position: relative;
}

.gray_bg
{
    background: var(--dark-gray);
}

.white_bg
{
    background-color: var(--white);
}

.white_bg .nlabel
{
    color:var(--darker-gray);
}

.white_bg h1
{
    color:var(--darker-gray);
}
.white_bg h2
{
    color:var(--darker-gray);
}
.white_bg h3
{
    color:var(--darker-gray);
}
.white_bg h4
{
    color:var(--darker-gray);
}


/* Animation */
@keyframes slide{
    0%,100%{
        margin-left:0%;
    }
    21%{
        margin-left:0%;
    }
    25%{
        margin-left:-100%;
    }
    46%{
        margin-left:-100%;
    }
    50%{
        margin-left:-200%;
    }
    71%{
        margin-left:-200%;
    }
    75%{
        margin-left:-300%;
    }
    96%{
        margin-left:-300%;
    }
}

.slider
{
    width:100vw;
    height:45vh;
    max-height: 45vh;
    position:relative;
    overflow:hidden;
}

.slides
{
    width:400%;
    height:100%;
    position:relative;
    -webkit-animation:slide 25s infinite;
    -moz-animation:slide 25s infinite;
    animation:slide 25s infinite;
}

.slideshow_img
{
    width:100vw;
    height:100%;
    object-fit: cover;
    float:left;
    z-index:1;
    overflow: hidden;
}

.cookies_warning_holder
{
    background:var(--dark-variation);
    width: 90vw;
    min-height:50px;
    display: block;
    position: fixed;
    bottom: 2vh;
    z-index:999999999;
    margin-left: 5vw;
    border-radius: 25px;
    border: 1px solid var(--blue);
}

.cookies_text
{
    top:11px;
    left:20px;
}

.cookies_accept_btn
{
    position: absolute;
    right: 2px;
    top:-19px;
}

.fullscreen_section
{
    widht: 100wh;
    min-height:100vh;
    overflow: hidden;
    background:transparent;
    padding-top:10vh;
}

.error
{
    color:var(--red) !important;
    font-weight: bold !important;
    font-size:12px;
}
.min-vh-75
{
    min-height: 75vh;
}

.mandatory_field
{
    color:#d61313;
    position: absolute;
    font-size:1.5em;
    top:-4px;
}

.loader {
    width: 48px;
    height: 24px;
    display: inline-block;
    position: relative;
    border: 1px solid var(--blue);
}
.loader::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid var(--blue);
    width: 5px;
    height: 12px;
}
.loader::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    height: 80%;
    width: 6px;
    box-sizing: border-box;
    animation: animloader  2s linear infinite;
}

@keyframes animloader {
    0% {
        box-shadow: 11px 0 rgba(6, 147, 227, 0), 22px 0 rgba(6, 147, 227, 0), 33px 0 rgba(6, 147, 227, 0), 44px 0 rgba(6, 147, 227, 0);
    }
    25% {
        box-shadow: 11px 0 var(--blue), 22px 0 rgba(6, 147, 227, 0), 33px 0 rgba(6, 147, 227, 0), 44px 0 rgba(6, 147, 227, 0);
    }
    50% {
        box-shadow: 11px 0 var(--blue), 22px 0 var(--blue), 33px 0 rgba(6, 147, 227, 0), 44px 0 rgba(6, 147, 227, 0);
    }
    75% {
        box-shadow: 11px 0 var(--blue), 22px 0 var(--blue), 33px 0 var(--blue), 44px 0 rgba(6, 147, 227, 0);
    }
    100% {
        box-shadow: 11px 0 var(--blue), 22px 0 var(--blue), 33px 0 var(--blue), 44px 0 var(--blue);
    }
}

.bootstrap-select > button
{
    background-color: var(--darker-gray) !important;
    color:var(--white) !important;
}

.bootstrap-select > .dropdown-menu
{
    max-height: 200px !important;
}

@media only screen and (max-width: 1400px)
{
    #footer .logo
    {
        width:30%;
    }
}

@media only screen and (max-width: 1000px)
{
    #navbar
    {
        position: absolute;
    }

    .navbar_hotlinks { display:none; }
    .logo-holder
    {
        width: 50vw;
        position: absolute;
        left:50%;
        top:50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        margin:0;
        margin-top:5%;
        z-index: 99999;
    }

    #contents.fit-height
    {
        min-height: 100vh !important;
        height: auto !important;
        overflow: hidden;
        padding-bottom: 10vh;
    }

    .home_boxes
    {
        margin-top:25% !important;
    }

    .home_box
    {
        margin-bottom:3% !important;
        width: 100% !important;
        display: block !important;
        height: 28vh !important;
    }

    #footer
    {
        padding-bottom: 30%;
    }

    #footer .logo
    {
        display: none;
        width: 0%;
    }

    .footer_links
    {
        width: 100%;
    }

    .footer_column
    {
        width: 100%;
    }
}
