/* Navbar */
.navHeader {
    top: 0;
    width: 100%;
    font-weight: 700;
    position: fixed !important;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.navHeader.scrolled {
    background-color: #fff !important;
    transition: background-color 200ms linear;
    z-index: 100;
}
/*---------------------------------------------------------------*/
/*-------------------spanBurger----------------------*/
.spanBurger {
    width: 35px;
    height: 3px;
    background-color: #0a1d24;
}
.spanBurger.scrolled {
    background-color: #0a1d24;
}
.dropdownLink {
    width: 40px; height: 20px;
    display: flex !important;
    flex-direction: column !important;
}
/*-------------NavBar------------------*/
.brand {
    width: 160px;
    float: none;
    height: 100%;
    left: 1%;
}
.logoHeader {
    height: fit-content;
}
#navLogo, #navLogo2 {
    width: 160px;
    height: 50px;
    margin-left: 10%;
    margin-top: 3%;
}
.navLink {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin: auto;
    width: 50%;
}
.itemNav {
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    float: none;
}
.itemNav > a {
    color: black !important;
    text-decoration: none;
}
.itemNav > a:hover {
    color: #fc4c01 !important;
}

/*---------------tel---------------*/
.telR {
    background-color: #fff;
    border-radius: 100px;
    padding: .5% 3.3% .4% 1.8%;
    position: relative;
    right: -40px;
    height: fit-content;
    margin: auto 0;
    font-size: 18px;
    font-style: italic;
    text-decoration: none !important;
}
.telR .num {
    color: #fc4c01 !important;
    float: none;
}
.telR.scrolled {
    background-color: #fa4c03;
}
.num.scrolled {
    color: white !important;
}


/*--------------------dropdown-----------------*/
.header {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}
.containerHeaderNavBar {
    height: fit-content;
    margin: auto auto;
    width: 60%;
}
.both:hover > .dropdownNav {
    display: flex;
}
.dropdownNav {
    background-color: white;
    position: absolute;
    width: 130px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    height: 200%;
    display: none;
    flex-direction: column;
    justify-content: center;
}
.itemNav2 {
    padding-left: 5%;
}
.itemNav2:hover {
    background-color: rgba(217,217,217,.5);
}
.itemNav2:hover .link2 {
    color: #fa4c03;
}
.link2 {
    text-decoration: none;
    color: black;
}

/*---------------AAAAAAAAAAAAAAAA---------------*/
a {
	text-decoration: none !important;
	color: #232323;
	transition: color 0.3s ease;
}

a:hover {
	color: #2ecc71;
}

#menuToggle {
	display: block;
	position: absolute;
	top: 20px;
	right: 50px;
	z-index: 1;
	-webkit-user-select: none;
	user-select: none;
}

#menuToggle input {
	display: block;
	width: 40px;
	height: 32px;
	position: absolute;
	top: -7px;
	left: -5px;
	cursor: pointer;
	opacity: 0;
	z-index: 2;
	-webkit-touch-callout: none;
}

#menuToggle span {
	display: block;
	width: 33px;
	height: 4px;
	margin-bottom: 5px;
	position: relative;
	background: #fa4c03;
	border-radius: 3px;
	z-index: 1;
	transform-origin: 4px 0px;
	transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
	background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
	opacity 0.55s ease;
}
#menuToggle span:first-child {
	transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
	transform-origin: 0% 100%;
}

#menuToggle input:checked~span {
	opacity: 1;
	transform: rotate(45deg) translate(-2px, -1px);
	background: #232323;
}

#menuToggle input:checked~span:nth-last-child(3) {
	opacity: 0;
	transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked~span:nth-last-child(2) {
	opacity: 1;
	transform: rotate(-45deg) translate(0, -1px);
}

#menu {
	position: absolute;
	width: 300px;
	margin: -100px 0 0 0;
	padding: 50px;
	padding-top: 125px;
	right: -100px;
	background: white;
	list-style-type: none;
	-webkit-font-smoothing: antialiased;
	transform-origin: 0% 0%;
	transform: translate(100%, 0);

	transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

#menu li {
	padding: 10px 0;
	font-size: 22px;
}

#menuToggle input:checked~ul {
	transform: scale(1.0, 1.0);
	opacity: 1;
}
/*------------------------------------*/
