.header {
	background-color: #000;
	height: 80px;
	position: sticky;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1;
  }
  
  .nav {
	display: flex;
	justify-content: space-between;
  
	max-width: 992px;
	margin: 0 auto;
  }
  
  .nav-link {
	color: white;
	text-decoration: none;
  }
  
  .logo {
	font-size: 30px;
	font-weight: bold;
	padding: 0 40px;
	line-height: 80px;
  }
  
  .nav-menu {
	display: flex;
	margin-right: 40px;
	list-style: none;
  }
  
  .nav-menu-item {
	font-size: 18px;
	margin: 0 10px;
	line-height: 80px;
	text-transform: uppercase;
	width: max-content;
  }
  
  .nav-menu-link {
	padding: 8px 12px;
	border-radius: 3px;
  }
  
  .nav-menu-link:hover,
  .nav-menu-link_active {
	background-color: #3a1669;
	transition: 0.5s;
	color: #fff !important;
    border-radius: 0;
    padding: 0px 20px;

  }
  
  /* TOGGLE */
  .nav-toggle {
	color: white;
	background: none;
	border: none;
	font-size: 30px;
	padding: 0 20px;
	line-height: 60px;
	cursor: pointer;
  
	display: none;
  }
  
  /* MOBILE */
  @media (max-width: 768px) {

  
	.header {
	  height: 60px;
	}
  
	.logo {
	  font-size: 25px;
	  padding: 0 20px;
	  line-height: 60px;
	}
  
	.nav-menu {
	  flex-direction: column;
	  align-items: center;
	  margin: 0;
	  background-color: #3a1669;
	  position: fixed;
	  top: 60px;
	  width: 100%;
	  padding: 20px 0;
  
	  height: calc(100% - 60px);
	  overflow-y: auto;
  
	  left: 100%;
	  transition: left 0.3s;
	}
  
	.nav-menu-item {
	  line-height: 70px;
	}
  
	.nav-menu-link:hover,
	.nav-menu-link_active {
	  background: none;
	  color: #000;
	}
  
	.nav-toggle {
	  display: block;
	}
  
	.nav-menu_visible {
	  left: 0;
	}
  
	.nav-toggle:focus:not(:focus-visible) {
	  outline: none;
	}
  }
  
  
  .nav {
	display: flex;
	justify-content: space-between;
  
	max-width: 992px;
	margin: 0 auto;
  }
  
  .nav-link {
	color: white;
	text-decoration: none;
  }
  
  .logo {
	font-size: 30px;
	font-weight: bold;
	padding: 0 40px;
	line-height: 80px;
  }
  
  .nav-menu {
	display: flex;
	margin-right: 40px;
	list-style: none;
  }
  
  .nav-menu-item {
	font-size: 18px;
	margin: 0 10px;
	line-height: 80px;
	text-transform: uppercase;
	width: max-content;
  }
  
  .nav-menu-link {
	padding: 8px 12px;
	border-radius: 3px;
  }
  
  .nav-menu-link:hover,
  .nav-menu-link_active {
	background-color: #3a1669;
	transition: 0.5s;
  }
  
  /* TOGGLE */
  .nav-toggle {
	color: white;
	background: none;
	border: none;
	font-size: 30px;
	padding: 0 20px;
	line-height: 60px;
	cursor: pointer;
  
	display: none;
  }
  
  /* MOBILE */
  @media (max-width: 768px) {

  
	.header {
	  height: 80px;
	}
  
	.logo {
	  font-size: 25px;
	  padding: 0 20px;
	  line-height: 60px;
	}
  
	.nav-menu {
	  flex-direction: column;
	  align-items: center;
	  margin: 0;
	  background-color: #3a1669;
	  position: fixed;
	  top: 80px;
	  width: 100%;
	  padding: 20px 0;
  
	  height: calc(100% - 80px);
	  overflow-y: auto;
  
	  left: 100%;
	  transition: left 0.3s;
	}
  
	.nav-menu-item {
	  line-height: 70px;
	}
  
	.nav-menu-link:hover,
	.nav-menu-link_active {
	  background: none;
	  color: #83c5f7;
	}
  
	.nav-toggle {
	  display: block;
	}
  
	.nav-menu_visible {
	  left: 0;
	}
  
	.nav-toggle:focus:not(:focus-visible) {
	  outline: none;
	}
  }
  
  .section-title h2 {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 6px;
    color: #000;
    letter-spacing: 0.3px;
    padding: 0;
}
.section-title::after {
    content: "";
    height: 3px;
    background: #fff;
    width: 80px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
}
