:root {
	--color-component-1 : #025928;
	--color-component-1-t : #025928DD;
	--color-component-2 : #3c8c30;
	--color-component-3 : #d96704;
	--color-component-3-t : #d96704BB;
	--color-component-4 : #818385;
	--color-component-5: #303030;
}

@font-face {
    font-family: eur;
    src: url(fonts/Roboto-Regular.ttf);
}
@font-face {
    font-family: eur-bold;
    src: url(fonts/Roboto-Bold.ttf);
}
@font-face {
    font-family: eur-demi;
    src: url(fonts/Roboto-Medium.ttf);
}



a:hover {
    text-decoration: none;
}

body {
    margin: 0; 
    font-family: eur;
    font-size: 25px;
    background-color: black;
}

header {
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-dark-gray);
}

.navbar {
    padding-top: 10px;
	padding-bottom: 10px;
    font-family: eur-demi;
}

.backcolor1t {
	transition: opacity .3s ease, height .4s ease;
    -webkit-transition: opacity .3s ease, height .4s ease;
    -o-transition: opacity .3s ease, height .4s ease;
	
	background-color: var(--color-component-1);
}

.navbar-brand {
    font-size : 40;
    color: white;
}

.navbar-brand:hover {
    color: white;
}

.navbar-brand:focus {
    color: white;
}

.navbar-right > li > a{
    color:white;
}

.nav > li > a:hover {
    background-color: rgba(0, 0, 0, 0);
}

.nav > li > a:active {
    background-color: rgba(0, 0, 0, 0);
}

.nav > li > a:focus {
    background-color: rgba(255, 255, 255, 0);
}

header > .row {
    width: 100%;
    top: 35%;
    margin-left: 0px;
    font-family: eur-demi;
    color: white;
    text-shadow: 0px 0px 100px black;
    position: absolute;
}

header > .row > div > h1 {font-size: 80px; font-family: eur-bold;}

.little-box {
    padding:20px;
    display:flex;
    flex-direction: column;
    width: 100%;
    background-color: var(--color-component-1-t);
    border-radius: 20px;
}

.little-box-text {
	color:white;
}

.btn-round {
    border-radius: 15px; 
    margin-top: 5px; 
    background-color: white; 
    height:40px; 
    font-size:20px;
}

#direction {
    position: absolute;
    bottom:0px;
    color:white;
    text-align: center;
}

#more-info-button {
    font-size: 60px;
    color: white;
}

#more-info-button:hover {
    color: ghostwhite;
}

header > .carousel {
    background-color: black;
}

header > .carousel > .carousel-inner > .item > img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: 0.5;
}

section {
    width:100%;
    display:flex;
    flex-direction: column;
}

.section-header {
    padding-top: 100px;
    padding-bottom: 20px;    
    font-family: eur-demi;
    font-size: 60px;
}

.section-content {
	padding-bottom: 100px;
}

footer {
    width: 100%;
    height: 200px;
    background-image: url(images/pattern_1.png);
    background-repeat: repeat;
}

#easeofuse {
    background-image: url(images/pattern_4.png);
    background-repeat: repeat;
    color:white;
}

.card {
    padding-top: 20px;
    border-radius: 20px;
}

.card > img {
    padding-top: 20px;
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 200px;
}

.card > div > h3 {
    font-size: 30px;
    font-weight: 600;
}

.card > div > p {
    font-size: 18px;
}

#features {
    background-image: url(images/pattern_3.png);
    background-repeat: repeat;
}

#blank-content {
	width:100%;
	height:100%;
	top:0;
    position: absolute;
    background-color:rgba(0,0,0,0.5);
    color:white;
}

.white-box {
	padding : 20px;
    display:flex;
    flex-direction: column;
	background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
}


.slidecontainer {
    /* Width of the outside container */
}

.slider {
    -webkit-appearance: none;  /* Override default CSS styles */
    appearance: none;
    height: 10px; /* Specified height */
    background: white; /* Grey background */
    outline: none; /* Remove outline */
    opacity: 1; /* Set transparency (for mouse-over effects on hover) */
    -webkit-transition: .2s; /* 0.2 seconds transition on hover */
    transition: opacity .2s;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none; /* Override default look */
    appearance: none;
    width: 20px; /* Set a specific slider handle width */
    height: 20px; /* Slider handle height */
    border-radius: 10px;
    background: black; /* Green background */
    cursor: pointer; /* Cursor on hover */
}

.slider::-moz-range-thumb {
    width: 25px; /* Set a specific slider handle width */
    height: 25px; /* Slider handle height */
    background: #4CAF50; /* Green background */
    cursor: pointer; /* Cursor on hover */
}