body.active {
	overflow: hidden;
}

@media (min-width: 768px) {
	body.active {
		overflow: visible;
	}
}

.header__logo-holder {
	display: inline-block;
	height: 70px;
}

.header__logo-holder img {
	height: 100%;
	width: 100%;
	object-fit: contain;
}

.header4.header {
	position: fixed;
	z-index: 98;
	top: 0;
	left: 0;
	width: 100%;
	transition: all 0.3s ease 0s;
}

.header4.color-header {
	background-color: var(--SECONDARY_MAJOR_COLOR);
}

.header4 .header__container {
	margin: 0px auto;
	padding: 0 20px;
	display: flex;
	height: 80px;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s linear 0s;
	max-width: var(--CONTAINER_WIDTH);
}

@media (min-width: 768px) {
	.header4 .header__container {
		height: 150px;
	}

	.header4 .header__container.small-header {
		height: 80px;
	}
}

.header4 .header__logo {
	flex: 1 1 20%;
	position: relative;
	z-index: 99;
}

.header4 .header__nav {
	overflow: auto;
	padding-top: 200px;
	padding-bottom: 20px;
	position: fixed;
	z-index: 97;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	text-align: center;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	transition: all 0.3s ease 0s;
	align-items: center;
	background-color: var(--SECONDARY_MAJOR_COLOR);
}

@media (min-width: 768px) {
	.header4 .header__nav {
		padding: 0;
		position: static;
		flex: 1 1 100%;
		width: auto;
		height: auto;
		flex-direction: row;
		background-color: transparent;
	}
}

.header4 .header__nav.active {
	left: 0;
}

.header4 .header__login-btn {
	border-radius: 6px;
	padding: 10px 30px;
	text-transform: uppercase;
	align-self: center;
	text-decoration: var(--TEXT_DECORATION);
	border: 1px solid var(--PRIMARY_MAJOR_COLOR);
	color: var(--PRIMARY_MAJOR_COLOR);
}

@media (min-width: 768px) {
	.header4 .header__login-btn {
		transition: all 0.3s ease 0s;
	}

	.header4 .header__login-btn:hover {
		background-color: var(--PRIMARY_MAJOR_COLOR);
		color: var(--PRIMARY_MINOR_COLOR);
	}
}

.header4 .header__burger {
	overflow: hidden;
	position: relative;
	z-index: 100;
	width: 40px;
	height: 16px;
}

@media (min-width: 768px) {
	.header4 .header__burger {
		display: none;
	}
}

.header4 .header__burger span {
	width: 100%;
	height: 2px;
	position: absolute;
	left: 0;
	transition: all 0.2s ease 0s;
	background-color: var(--PRIMARY_MAJOR_COLOR);
}

.header4 .header__burger span:first-child {
	top: 0;
}

.header4 .header__burger span:nth-child(2) {
	top: 50%;
	transform: translatey(-50%);
}

.header4 .header__burger span:last-child {
	bottom: 0;
}

.header4 .header__burger.active span:first-child {
	top: 50%;
	transform: rotate(45deg) scale(0.7);
}

.header4 .header__burger.active span:nth-child(2) {
	top: 50%;
	transform: translatey(-50%);
	opacity: 0;
	left: 20px;
}

.header4 .header__burger.active span:last-child {
	bottom: 50%;
	transform: rotate(-45deg) scale(0.7);
}

.header4 .menu-main-menu-container {
	width: 100%;
}

@media (min-width: 768px) {
	.header4 .menu-main-menu-container {
		width: auto;
		height: 100%;
	}
}

.header4 .menu-main-menu-container ul {
	padding: 0 20px;
	margin: 0;
}

@media (min-width: 768px) {
	.header4 .menu-main-menu-container ul {
		display: flex;
		flex-direction: row;
		align-items: center;
		padding: 0;
		height: 100%;
	}
}

.header4 .menu-main-menu-container ul li {
	padding: 10px 30px;
	text-transform: uppercase;
	align-self: center;
	margin-bottom: 20px;
	border: 1px solid var(--SECONDARY_MINOR_COLOR);
}

@media (min-width: 768px) {
	.header4 .menu-main-menu-container ul li {
		border: none;
		padding: 0;
		margin-bottom: 0px;
		margin-right: 20px;
		height: 100%;
		display: flex;
		align-items: center;
	}

	.header4 .menu-main-menu-container ul li:last-child {
		margin: 0;
	}
}

.header4 .menu-main-menu-container ul li a {
	transition: all 0.3s ease 0s;
	display: block;
	width: 100%;
	text-decoration: var(--TEXT_DECORATION);
	color: var(--SECONDARY_MINOR_COLOR);
}

.header4 .menu-main-menu-container ul li a:hover {
	opacity: 0.5;
}

.header4 .current_page_item a {
	opacity: 0.5;
}

.hero {
	background: center/cover no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 0;
}

.hero:before {
	content: "";
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.4;
	background-color: var(--SECONDARY_MAJOR_COLOR);
}

.hero__container {
	padding: 30vh 20px;
	position: relative;
	z-index: 2;
}

.hero__text-block {
	padding: 0 30px;
	margin: 0px auto 40px auto;
	text-align: center;
}

.hero__title {
	font-size: 52px;
	margin-bottom: 20px;
	font-family: var(--TITLE_FONT);
	color: var(--SECONDARY_MAJOR_COLOR);
}

@media (min-width: 768px) {
	.hero__title {
		font-size: 72px;
		margin-bottom: 30px;
	}
}

.hero__subtitle {
	font-size: 30px;
	margin-bottom: 20px;
	color: var(--SECONDARY_MAJOR_COLOR);
	font-family: var(--TITLE_FONT);
}

@media (min-width: 768px) {
	.hero__subtitle {
		font-size: 40px;
		margin-bottom: 20px;
	}
}

.hero__text {
	font-size: 14px;
	color: var(--SECONDARY_MAJOR_COLOR);
}

@media (min-width: 768px) {
	.hero__text {
		font-size: 24px;
	}
}

.hero__btn-block {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.hero__btn-wrap {
	padding: 10px 10px;
}

.hero__btn {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 17px 50px;
	font-weight: 600;
	font-size: 14px;
	border-radius: 6px;
	transition: all 0.3s ease 0s;
	text-transform: uppercase;
	white-space: nowrap;
	text-decoration: var(--TEXT_DECORATION);
	border: 2px solid var(--PRIMARY_MAJOR_COLOR);
	color: var(--PRIMARY_MAJOR_COLOR);
}

@media (min-width: 768px) {
	.hero__btn:hover {
		border: 2px solid var(--PRIMARY_MAJOR_COLOR);
		background-color: var(--PRIMARY_MAJOR_COLOR);
		color: var(--PRIMARY_MINOR_COLOR);
		text-decoration: none;
	}
}
