.atwm-main-header {
	position: absolute;
	z-index: 20;
	width: 100%;
	padding-top: 50px;
	padding-bottom: 50px;
	background-color: #2e203c;
	/*box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);*/
	transition: all 0.5s;
}

.atwm-site-logo {
	width: 400px;
	margin-left: 30px;
}

.atwm-site-logo svg {
	width: 100%;
	height: auto;
	transition: all 0.5s;
}

.atwm-site-logo img {
	max-width: 100%;
	height: auto;
}

.atwm-site-logo svg #pathetsy {
	fill: #f1641e;
}

.atwm-header-right {
	position: absolute;
	right: 0;
	background: #dfd3e8;
	height: 100%;
	width: 140px;
	align-items: center;
	padding: 10px 30px;
	border-left: solid 20px #f1641e;
}

.atwm-main-menu li {
	padding: 0 13px;
}

.atwm-main-menu a {
	position: relative;
	color: #222222;
	padding: 13px 0;
	transition: all 0.5s;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	box-sizing: border-box;
}

.atwm-main-menu li:not(.button) a:after {
	content: "";
	position: absolute;
	width: 0;
	left: 50%;
	transform: translateX(-50%);
	bottom: -2px;
	transition: width 0.3s;
	background-color: #000;
	height: 2px;
}

.atwm-main-menu li:not(.button) a:hover:after {
	width: 100%;
}

.atwm-main-menu .current-menu-item a {
	border-bottom: 2px solid #222222;
}

.atwm-main-menu1 .button a {
	background-color: #222222;
	color: #ffffff;
	border-radius: 25px;
	padding: 13px 20px;
	margin-left: 1rem;
}

.atwm-main-menu .button a {
	margin: 0;
}

/* Transparent header, not needed for 2021
.atwm-main-header.home {
  background-color: transparent;
  box-shadow: none;
}
.atwm-main-header.home .atwm-site-logo svg #pathetsy {
  fill: #fff;
}
.atwm-main-header.home .atwm-site-logo svg #pathawards {
  fill: #fff;
}
.atwm-main-header.home .atwm-tagline {
  color: #fff;
}
.atwm-main-header.home .atwm-main-menu a {
  color: #fff;
}
.atwm-main-header.home .atwm-main-menu li:not(.button) a:after {
  background-color: #fff;
}
*/

/*
.atwm-main-header .atwm-main-menu .button a {
  background-color: #222222;
  color: #ffffff;
}
  */
.atwm-hero {
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: center bottom;
	max-height: 100vh;
	color: #000;
	text-align: left;
	display: flex;
}

.atwm-hero.atwm-full-height {
	height: 100vh;
}

.atwm-hero .vc_column_container>.vc_column-inner {
	height: 100%;
}

.atwm-hero .vc_column_container>.vc_column-inner>.wpb_wrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	height: 100%;
}

.atwm-hero .vc_column_container>.vc_column-inner .vc_empty_space {
	width: 100%;
}

.atwm-hero .vc_column_container>.vc_column-inner .wpb_content_element {
	width: 86%;
	align-self: center;
}

/*
.atwm-hero h1 {
	font-size: 2rem;
	font-size: calc( 1.5rem + 4vw );
	font-weight: 300;
	margin-bottom: 0.5em;
}
.atwm-hero p {
	font-size: 1rem;
	font-size: calc( 1rem + 1vw );
	font-weight: 300;
}
*/


/* Menu Popup added 2024 */
.atwm-main-menu-popup-container {
	visibility: hidden;
	z-index: -1;
	position: absolute;
	background-color: #f5ffb9;
	top: 100%;
	left: 10px;
	box-shadow: 0 8px 8px rgba(0,0,0,.16);
	padding-top: 60px;
	min-width: 400px;
	opacity: 0;
	transition: all .3s;
	transform: translateY(-5%);
}
.atwm-main-menu-popup-container.open {
	visibility: visible;
	opacity: 1;
	z-index: 21;
	transform: translateY(0);
}
.atwm-main-menu-popup-container .menu {
	list-style: none;
	margin: 0;
	padding: 0;
}
.atwm-main-menu-popup-container .menu li a {
	border-top: solid 1px #222222;
	display: block;
	padding: .7rem 1rem;
	padding-top: .8rem;
	text-decoration: none;
	color: #222222;
	font-weight: 700;
}
.atwm-main-menu-popup-container .menu li a:hover {
	background-color: #ffffff;
}
.atwm-main-menu-popup-container .atwm-menu-close {
	cursor: pointer;
	width: 32px;
	height: 28px;
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 3;
}
.atwm-main-menu-popup-container .atwm-menu-close::after, 
.atwm-main-menu-popup-container .atwm-menu-close::before {
	display: block;
	content: "";
	width: 28px;
	height: 3px;
	background: #222222;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transition: .25s;
	transition: all .25s ease;
}
.atwm-main-menu-popup-container .atwm-menu-close::before {
	transform: translate(-50%,-50%) rotate(-45deg);  
}
.atwm-main-menu-popup-container .atwm-menu-close::after {
	transform: translate(-50%,-50%) rotate(45deg);  
}