* {
	padding:0;
	margin:0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}
html {
  scroll-behavior: smooth;
}

/*------------CONTACT BAR------------*/
.contactBar {
	width:100%;
	min-height: 30px;
	margin:auto;
	overflow: hidden;
	background-color: #e65c00;
	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: 50px;
}
.contactBarLeft ul li:hover, .contactBarLeft ul li i:hover {
	color: #000;
}
.contactBarLeft ul li i a {
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	text-decoration: none;
}

.contactBarRight {
	float: right;
}
.contactBarRight ul li {
	float: left;
	display: block;
	list-style: none;
	margin-right: 50px;
}
.contactBarRight ul li a i {
	color: #fff;
	font-size: 22px;
}
.contactBarRight ul li a i:hover {
	color: #000;
}

/*-----------NAVBAR-------------*/
nav.line {
	border-bottom: 1px solid #;
}
.navbar {
	width:100%;
	min-height: 70px;
	margin:auto;
	background-color: #fff;
	padding:4px 0 0 5px;
	position: sticky;
	top: 0;
	border-bottom: 0.05rem solid #e65c00;
	z-index: 9;
}
.navbar-left {
	width: 18%;
}
.navbar-left a img {
	width: 90%;
	margin-left: 20%;
	padding: 0px;
	transition: .4s;
	border-radius: 6px;
}
nav.line .navbar-left a img {
	width: 45%;
	margin-right: 10%;
	padding: 0;
}

/*-----------RIGHT-NAVBAR-------------*/
.navbar-right {
	width: 70%;
	float: right;
	display: flex;
	justify-content: flex-end;
	background-color: #ffffff;
	padding: 5px 0 0 0;
	margin-right: 60px;
	position: absolute;
	top: 55px;
	right: 0px;
	transition: .2s;
}
nav.line .navbar-right {
	margin-right: 20px;
	top: 15px;
}
.navbar-right ul li {
	padding: 0px;
}
.navbar-right ul li a {
	font-size: 17px;
}

nav ul {
	float: left;
}
nav ul li {
	float: left;
	list-style: none;
	position: relative;
	font-weight: bold;
}
nav ul li a {
	display: block;
	color: #000;
	font-size: 15px;
	font-weight: bold;
	padding: 12px 14px 12px 14px;
	text-decoration: none;
}
nav ul li a:hover {
	color: #e65c00;
	text-decoration: none;
}

.toggle-button {
    position: absolute;
    top: 2.5rem;
    right: 1.5rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 35px;
    height: 22px;
    z-index: 9;
}
.toggle-button .bar {
    height: 5px;
    width: 100%;
    background: #8ed;
}
.toggle-button .bar:hover {
	background: ;
}

@media only screen and (max-width: 1024px) { /* For IPADPRO */
	.navbar {
		min-height: 70px;
	}
	.navbar-right {
		top: 30px;
	}
	nav.line .navbar-right {
		top: 20px;
	}
}
@media only screen and (max-width: 800px) {  /* For IPAD */
  	.navbar-left {
		width: 35%;
	}
	.navbar-left a img {
		width: 60%;	
	}
	nav.line .navbar-left a img {
		width: 60%;
	}
	.navbar-right {
		display: none;
		width: 100%;
		margin-right: 0px;
		float: left;
		padding: 0 10px;
		margin-top: 35px;
		top: 70px;
	}
	nav.line .navbar-right {
		margin-right: 0px;
		top: 70px;
	}
	.navbar-right ul {
        width: 100%;
    }
	.navbar-right ul li{
		width: 100%;
	}
    .toggle-button {
        display: flex;
    }
    .navbar-right.active {
        display: inline;
    }
}
@media screen and (max-width:600px) { /* For MOBILES: */
	.navbar-left a img {
		width: 90%;
	}
	nav.line .navbar-left a img {
		width: 90%;
	}
	.navbar-right {
		width: 100%;
		float: left;
		padding: 10px;
		top: 50px;
		margin-right: 0px;
	}
	nav.line .navbar-right {
		top: 50px;
	}
	.navbar-right a {
		padding: 0px 5px 5px 8px;
	}
}
@media screen and (max-width:380px) { /* For SMALL MOBILES: */
	.navbar-right {
		top: 45px;
	}
	nav.line .navbar-right {
		top: 45px;
	}
}
@media screen and (max-width:320px) { /* For VERY SMALL MOBILES: */
	.navbar-right {
		top: 35px;
	}
	nav.line .navbar-right {
		top: 35px;
	}
}
