.header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    width: 100%;
    box-sizing: border-box;
}
.logo {
	margin-right: 1rem;
	left: 0;
	height: auto;
  }
.nav {
	display: flex;
	align-items: center;
}
.navbar .logo img {
    width: auto;
    height: 8vw;
    min-height: 20px;
    max-height: 80px;
    cursor: pointer;
}
.nav.navbar-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
}
  .nav_ico {
	display: inline-block;
	width: 30px;
	transition: all 0.3s ease-in-out;
	  margin-left: auto;
	  margin-right: 15px;
  }
  .nav_ico.active {
	margin-right: 140px;
  }
  .nav_ico span {
	transition: all 0.3s ease-in-out;
	height: 2px;
	display: block;
	margin: 4px 0;
	background: white;
  }
  .nav_ico span:first-child,
  .nav_ico span:last-child {
	width: 70%;
	margin: 0 15%;
  }
  .nav_ico.active span:first-child {
	transform: rotate(45deg);
	transform-origin: 10px 2px 0;
	width: 100%;
	margin: 0;
  }
  .nav_ico.active span:last-child {
	transform: rotate(-45deg);
	transform-origin: 5px -2px 0;
	width: 100%;
	margin: 0;
  }
  .nav_ico.active span:nth-child(2) {
	opacity: 0;
  }
  .nav-overlay {
	position: fixed;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: 998;
	background: transparent;
	transition: all 0.3s ease-in-out;
	pointer-events: none;
  	margin-right: 10000px;
  }
  .nav-overlay.active {
  	background: black;
	opacity: 50%;
	pointer-events: auto;
  }

  .side_nav{
	position: fixed;
	right: 0;
	top: 0;
	width: 260px;
	height: 100vh;
	background: black;

	z-index: 999;
	padding-top: 100px;
	transition: all 0.3s ease-in-out;
	transform: translateX(100%);
  	font-family: Helvetica;
  }
  .side_nav.active{
	transform: translateX(0%);
  }

  .side_nav ul{
	padding: 0;
	margin: 0;
	list-style: none;
  }
  .side_nav ul li{
	margin: 0;
  }
  .side_nav ul li a{
	display: block;
	color: #fff;
	font-size: 24px;
	text-decoration: none;
	padding: 15px 30px;
	border-bottom: 1px solid;
	background: linear-gradient(to right,#fff,#fff);
	transition: all 0.3s ease-in-out;
	background-size: 0% 100%;
	background-repeat: no-repeat;
	background-position: right center;
  }
  .side_nav ul li a:hover{
	background-size: 100% 100%;
	color: #000;
  }

.navbar {
    align-items: center;
    overflow: hidden;
    background: white;
    display: flex;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
	max-width: 100vw;
	overflow-x: hidden;
    font-family: "Helvetica";
	border-bottom: 4px solid #bfbfbf;
    text-shadow: 1px 2px 2px #3f4748;
    background-clip: padding-box;
    background-origin: border-box;
    transition: background-image 0.3s ease;
	justify-content: space-between;

}

.navbar nav {
    width: 100%;
}

.navbar a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 18px 10px;
    text-decoration: #1d689e;
    margin-left: 20px;

}

.navbar a:first-child {
    margin-right: 20px;
}

.navbar a:hover {
    background-color: #ddd;
    color: grey;
}

.navbar ul {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
    white-space: nowrap;
}

.navbar ul img {
    width: auto;
    height: 2.5vw;
    min-height: 20px;
    max-height: 40px;
}

.navbar ul a div img[src*="plus-circle"] {
    height: 1.8vw;
    min-height: 15px;
    max-height: 30px;
}

.dropdown {
    float: left;
    overflow: hidden;
    opacity: 95%;
}


.dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: "Helvetica";
    text-shadow: 1px 2px 2px #3f4748;
    margin: 0;
}

.navbar a:hover::before,
.dropdown:hover .dropbtn::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
    z-index: 1;
    border-radius: 20px;
}

.navbar a:hover, .dropdown:hover .dropbtn {
    background-color: rgba(42, 112, 50, 0.5);
    color: white;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 1px #757575;


}

.dropdown-content {
    display: none;
    position: fixed;
    background-color: #3a3a3a;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    font-family: "Helvetica";
    border-radius: 2px;
}

.dropdown-content a {
    float: none;
    color: white;
    padding: 10px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-family: "Helvetica";
}

.dropdown-content a:hover {
    background-color: #d4d4d4;
    color: black;
    border-radius: 2px;
    padding: 10px 16px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.ui-draggable-handle {
	-ms-touch-action: none;
	touch-action: none;
}

@media (max-width: 768px) {
    .navbar ul {
        gap: 0.1rem;
    }
    .navbar .logo img {
        height: 4vw;
    }
    .navbar ul img {
        height: 4vw;
    }
    .main-content {
        padding-top: calc(4vw + 1rem);
    }
}
