﻿@charset "UTF-8";
/*bourbon*/
:root {
    --background: #FFAC1C;
    --footer-bg: #e3e3e3;
    --white: #ffffff;
}

body {
    padding:0px;
}
a{
    color:black;
}
.fa {
    color: var(--background);
}
.end-content {
    background: var(--footer-bg);
    padding: 60px 20px;
    text-align: center;
}
.btn-custom {
    background: var(--background);
}
.bottom-space{
    padding-bottom:15px;
}

.footer-text-social {
    font-size: 24px;
}
.footer-header {
    font-weight: bold;
    font-size: 16px;
    font-family: "Asap", sans-serif;
    text-transform: uppercase;
    margin-bottom:10px;
}
.centralize-content{
    display:flex;
    justify-content:center;

}
.navbar > .container {
    display: block;
}
.header-logo img {
    height: 80px;
    margin-top: 5px;
}
.header-logo {
    margin-left: 25px;
    width:18%;
}

.navbar-wrapper {
    background: var(--background);
    min-height:80px;
}


.navbar-wrapper:before {
    position: absolute;
    height: 80px;
    display: block;
    background: #000;
    width: 15%;
    content: "";
    left: -3%;
    top: 0;
}

.desktop-menu-items {
    position: relative;
    text-align: end;
}

.desktop-menu-items li a {
    color: #000 !important;
    text-shadow: none;
    padding: 29px 5px !important;
    font-size: 15px;
}

.desktop-menu-items li a:hover {
    text-decoration: none;
}
@media (min-width: 100px) {
    .header-logo {
        margin-left: 0px;
        width: 18%;
    }

}
@media (min-width: 900px) {
    .navbar-wrapper:before {
        width: 16%;
    }
}
@media (min-width: 1000px) {
    .navbar-wrapper:before {
        width: 13%;
    }
}
@media (min-width: 1300px) {
    .navbar-wrapper:before {
        width: 13%;
    }
}
@media (min-width: 1400px) {
    .navbar-wrapper:before {
        width: 15%;
    }
}

@media (min-width: 1500px) {
    .navbar-wrapper:before {
        width: 19%;
    }
}
@media (min-width: 1700px) {
    .navbar-wrapper:before {
        width: 24%;
    }
}
@media (min-width: 2000px) {
    .navbar-wrapper:before {
        width: 24%;
    }
}
@media (min-width: 2500px) {
    .navbar-wrapper:before {
        width: 26%;
    }
}


.mySlides {
    display: none;
    height: 500px;
}

img {
    vertical-align: middle;
}

/* Slideshow container */
.slideshow-container {
    max-width: 100%;
    max-height: 600px;
    position: relative;
    margin: auto;
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.active {
    background-color: var(--background);
    box-shadow: 0px 0px 5px 5px gold;
    outline-color: transparent;
    outline-width: 2px;
    outline-style: solid;
}

/* Fading animation */
.fade {
    /*animation-name: fade;
    animation-duration: 3s;*/
    animation: fade 5s 1 forwards;
}
/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

@keyframes fade {
    from {
        opacity: .7
    }

    to {
        opacity: 1
    }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
    .text {
        font-size: 11px
    }
}

.dashboard-image {
    width: 100%;
    max-width: 300px;
    min-width: 200px;
	max-height: 260px;
    height: inherit;
    object-fit: cover;
}

