.new-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background-color: white; */
  /* color: white; */
  padding: 10px 0px;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); */
}

.new-menu-left,
.new-menu-right,
.new-logo {
  gap:20px;
  display: flex;
  align-items: center;
}

.new-logo img {
  width: 200px;
  object-fit: contain;
}

.new-hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
}

.new-hamburger span {
  background-color: black;
  height: 3px;
  width: 100%;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.cta-button {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #0056b3;
}

.new-mobile-menu {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: width 0.5s ease;
  padding-top: 60px;
  background-color:white
}

.new-mobile-menu a {
  padding: 15px 25px;
  text-decoration: none;
  font-size: 22px;
  /* color: white; */
  display: block;
  transition: color 0.3s ease;
}

.new-mobile-menu a:hover {
  color: #ddd;
}

.new-mobile-menu .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  cursor: pointer;
}

@media screen and (max-width: 990px) {
  .new-menu-left,
  .new-menu-right .cta-button {
    display: none;
  }

  .new-menu-right .new-hamburger {
    display: flex;
  }
}

@media screen and (min-width: 990px) {
  .new-mobile-menu {
    display: none;
  }
}

a {
  	color: #9fbb2d;
  	text-transform: uppercase;
  	transition: color 0.3s ease;
	font-family: 'Raleway', sans-serif;
	font-size: 12px;
}

a:hover {
  color: #666;
	text-decoration: underline;
}

.new-navbar a:not(.cta-button) {
  padding: 10px 0px;
  margin: 0 5px;
  transition: background-color 0.3s ease;
}

.new-navbar a:not(.cta-button):hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}
.new-active{
  font-weight: bold;
  color: #333;
	text-decoration: none;
}
.portfolio-item .portfolio-image{
  opacity:1
}



.lazyload{
  min-height:350px;
  object-fit:cover;
}


#header.full-header .container {
  width: 100%;
  padding: 0 6px !important;
}