@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html{
    font-size: 10px;
    font-family: 'Roboto', sans-serif;
}
a{
    text-decoration: none; 
}
.section-title {
	font-size: 4rem;
	font-weight: 300;
	color: black;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: .2rem;
	text-align: center;
}
.section-title span {
	color: rgb(255, 82, 29);
}

/*header*/

#navbar {
	background: rgb(255, 82, 29);
	position: fixed;
	top: 0;
	width: 100%;
	display: block;
	transition: top 0.8s;
}

#navbar a {
	float: right;
	display: block;
	color: rgb(0, 0, 0);
	font-weight: 300;
	text-decoration: none;
	margin: 2em 3em;
	font-size: 14px;
	font-weight: bold;
}


/* Emd of Header*/

.container{
    min-height: 100vw;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#track1{
    background-image: url(./img/1.jpg);
    background-size: cover;
    background-position: top center;
    position: relative;
}
#track2{
    background-image: url(./img/2.jpg);
    background-size: cover;
    background-position: top center;
    position: relative;
}
#track3{
    background-image: url(./img/3.jpg);
    background-size: cover;
    background-position: top center;
}
#track4{
    background-image: url(./img/4.jpg);
    background-size: cover;
    background-position: top center;
}
#track5{
    background-image: url(./img/5.jpg);
    background-size: cover;
    background-position: top center;
}
#track6{
    background-image: url(./img/6.jpg);
    background-size: cover;
    background-position: top center;
}
#track7{
    background-image: url(./img/7.jpg);
    background-size: cover;
    background-position: top center;
}
#track8{
    background-image: url(./img/8.jpg);
    background-size: cover;
    background-position: top center;
}

/* contact  */
#contact .contact {
	flex-direction: column;
	max-width: 1200px;
	margin: 0 auto;
}
#contact .contact-items {
	width: 400px;
}
#contact .contact-item {
	width: 80%;
	padding: 20px;
	text-align: center;
	border-radius: 10px;
	padding: 30px;
	margin: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	box-shadow: 0px 0px 18px 0 #0000002c;
	transition: .3s ease box-shadow;
}
#contact .contact-item:hover {
	box-shadow: 0px 0px 5px 0 #0000002c;
}
#contact .icon {
	width: 70px;
	margin: 0 auto;
	margin-bottom: 10px;
}
#contact .contact-info h1 {
	font-size: 2.5rem;
	font-weight: 500;
	margin-bottom: 5px;
}
#contact .contact-info h2 {
	font-size: 1.3rem;
	line-height: 2rem;
	font-weight: 500;
}
@media only screen and (min-width: 768px) {
#contact .contact {
	flex-direction: column;
	padding: 100px 0;
	align-items: center;
	justify-content: center;
	min-width: 20vh;
}
#contact .contact-items {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	margin: 0;
}
#contact .contact-item {
	width: 30%;
	margin: 0;
	flex-direction: row;
}
#contact .contact-item .icon {
	height: 100px;
	width: 100px;
}
#contact .contact-item .icon img {
	object-fit: contain;
}
#contact .contact-item .contact-info {
	width: 100%;
	text-align: left;
	padding-left: 20px;
}
}

/* End contact  */

