* {
    padding:0;
    margin:0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
body {
    background: #b3ffb3;
}
html {
  scroll-behavior: smooth;
}

/*------------CONTACT INFO BAR------------*/
.contactBar {
    width:100%;
    min-height: 30px;
    margin:auto;
    overflow: hidden;
    background-color: #ccc;
    padding:4px 0 0 5px;
    z-index: 1;
}
@media only screen and (max-width: 768px) {
    .contactBar {
        display: none;
    }
}
.contactBarLeft ul li {
    float: left;
    display: block;
    color: #fff;
    list-style: none;
    margin-left: 70px;
}

.contactBarLeft ul li i {
    font-size: 26px;
    color: #000;
}
.contactBarLeft ul li a {
    color: #000;
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
}

.contactBarRight {
    float: right;
}
.contactBarRight ul li {
    float: left;
    display: block;
    list-style: none;
    margin-right: 70px;
}
.contactBarRight ul li a i {
    color: #fff;
    font-size: 28px;
}
.contactBarRight ul li a i:hover {
    color: #000;
}

/*-----------LOGO-------------*/
.navbarLogo {
    width: 100%;
    text-align: center;
}
.navbarLogo a img {
    width: 25%;
    padding: 0px;
    border-radius: 6px;
}

/*----------- LOGO-HEADER ----------*/
.logo-header {
	background-color: white;
	text-align: center;
	padding:0;
}
.logo-header img {
	width: 20%;
}

/*----------- MAIN-HEADER ----------*/
#navbar {
	position: relative;
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
    background: #000;
    color: #ffffff;
    z-index: 1000;
    position: sticky;
    top: 0;
}
/* [SAME AS THE ABOVE CODE]
@supports (position: sticky) {
    #navbar {
        position:sticky;
        top:0;
    }
}
*/

.brand-title {
    font-size: 2rem;
    margin: .5rem;
    margin-left: 40px;
}
.brand-title a {
	text-decoration: none;
	color: #ffffff;
    font-family: arial black;
}
.brand-title a:hover {
	color:;
}

.navbar-links {
    width: 60%;
    margin-right: 40px;
}
.navbar-links ul {
    display: flex;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
}
.navbar-links ul li {
    list-style: none;
    border-radius: 5px;

}
.navbar-links ul li a {
    display: block;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    color: #ffffff;
    padding: 1rem;
}
.navbar-links ul li a i {
    font-size: 21px;
}

.active, .menu:hover {
  background-color: #ccc;
  color: black;
}

.toggle-button {
    position: absolute;
    top: .75rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.toggle-button .bar {
    height: 4px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 10px;
}

@media screen and (max-width:768px) {
	.main-header img {
	   width: 40%;
	}
    #navbar {
        display: block;
    }
    .toggle-button {
        display: flex;
    }
    .navbar-links {
        display: none;
        width: 100%;
    }
    .navbar-links ul {
        width: 100%;
        display: block;
    }
    .navbar-links ul li {
        text-align: center;
    }
    .navbar-links ul li a {
        padding: .5rem 1rem;
    }
    .navbar-links.active {
        display: flex;
    }
}

