:root {
  --primary-color: #00FF00;
  --grey: #373737;
}

/* figtree-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 400;
  src: url('../webfonts/figtree-v8-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* figtree-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 600;
  src: url('../webfonts/figtree-v8-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

*:focus {
	outline: none;
}

* {
	scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0;
  font-family: 'Figtree', sans-serif;
  color: #ffffff;
  background-color: #000000;
  font-size: 18px;
}

main {
  min-height: calc(100vh - 536px);
}

.wp-block-columns {
	max-width: 1440px;
	margin: auto;
}

h1 strong, 
h2 strong, 
h3 strong,
h4 strong {
	font-weight: inherit;
	color: var(--primary-color);
}

.page_404 {
	padding: 100px 0 150px 0;
}

/* Header */

header {
  padding: 15px 0;
  box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.05);
  position: relative;
  z-index: 999;
}

header .wrap_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .wrap_header a.logo_link img {
  height: 50px;
}

header .wrap_header nav ul {
  margin: 0;
  padding: 0;
}

header .wrap_header nav ul li {
  display: inline-block;
  list-style: none;
  margin: 0 10px;
}

header .wrap_header nav ul li a {
  color: #ffffff;
  font-size: 18px;
  transition: all 0.3s;
}

header .wrap_header nav ul li a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

header .wrap_header nav ul li.current_page_item a {
  font-weight: 600;
  color: var(--primary-color);
}

header .wrap_header nav a.button {
	display: none;
}

header .mobile_nav_open {
	font-size: 30px;
	color: var(--primary-color);
	cursor: pointer;	
	display: none;
}

.mobile_nav_headline {
	display: none;
	text-transform: uppercase;
	cursor: pointer;
	padding: 10px;
	background-color: var(--grey_light);
	align-items: center;
	justify-content: space-between;
	font-weight: 600;
	color: var(--primary-color);
	letter-spacing: 1px;
	font-size: 22px;
}

.mobile_nav_headline i {
	color: var(--secondary-color);
	font-weight: bold;
}

/* Button */

a.button {
  display: inline-block;
  color: #ffffff;
  background-color: #000000;
  border: 1px solid var(--primary-color);
  transition: all 0.3s;
  text-decoration: none;
  padding: 15px 30px;
  line-height: 1;
  border-radius: 30px;
  font-size: 18px;
  text-align: center;
}

a.button:hover {
  background-color: var(--primary-color);
  color: #000000;
}

a.button i {
	margin-left: 5px;
}

.wp-block-column:has(section.button) {
	margin: 0 -15px;
}

/* Hero */

section.hero .hero_text {
	padding: 200px 15px;
}

section.hero .hero_text > span {
	position: relative;
	padding-left: 30px;
	display: block;
	line-height: 20px;
	margin-bottom: 30px;
}

section.hero .hero_text > span::before {
	content: '';
	width: 20px;
	height: 20px;
	position: absolute;
	left: 0;
	top: 0;
	background-image: url('/wp-content/themes/adpower/assets/img/icon_alt.svg');
	background-size: contain;
	background-position: center;	
	background-repeat: no-repeat;
}

section.hero .hero_text h1 {
	font-size: 96px;
	line-height: 1.1;
	margin-bottom: 30px;
}

section.hero .hero_text ul {
	margin: 30px 0 0 0;
	padding: 0;
}

section.hero .hero_text ul li {
	display: inline-block;
	list-style: none;
	margin-right: 15px;
}

section.hero .hero_text img {
	height: 60px;
}

section.hero .hero_image {
	position: relative;
}

section.hero .hero_image img {
	width: calc(100% - 30px);
	height: 100%;
	position: absolute;
	top: 0;
	left: 15px;
	padding-top: 50px;
	object-fit: contain;
	object-position: bottom right;
}

/* Banner */

section.banner .banner_text {
	padding: 200px 15px;
}

section.banner .banner_text h1 {
	font-size: 96px;
	line-height: 1.1;
}

section.banner .banner_image {
	position: relative;
}

section.banner .banner_image img {
	width: calc(100% - 30px);
	height: 100%;
	position: absolute;
	top: 0;
	left: 15px;
	padding-top: 50px;
	object-fit: contain;
	object-position: bottom right;
}

/* FAQ */

section.faq {
	position: relative;
	width: 100%;
	overflow: hidden;
}

section.faq::before {
	position: absolute;
	width: 400px;
	height: 800px;
	right: -110px;
	top: calc(50% - 400px);
	background-image: url('/wp-content/themes/adpower/assets/img/powerbank.png');
	content: '';
	background-size: contain;
	background-position: center;	
	background-repeat: no-repeat;
	transform: rotate(-10deg);
}

section.faq .introduction {
	text-align: center;
	margin-bottom: 30px;
}

section.faq .introduction h2 {
	font-size: 62px;
	line-height: 1.1;
}

section.faq .faq_single {
	padding: 30px;
	border-radius: 15px;
	background-color: #ffffff;
	color: #000000;
	margin-bottom: 30px;
}

section.faq .faq_single .faq_title h3 {
	line-height: 1;
	margin: 0;
	position: relative;
	cursor: pointer;	
	padding-right: 30px;
}

section.faq .faq_single .faq_title h3::after {
	content: '';
	width: 28px;
	height: 28px;
	background-image: url('/wp-content/themes/adpower/assets/img/plus-solid-full.svg');
	position: absolute;
	right: 0;
	top: calc(50% - 14px);
	transition: all 0.3s;
}

section.faq .faq_single .faq_title.open h3::after {
	background-image: url('/wp-content/themes/adpower/assets/img/minus-solid-full.svg');
}

section.faq .faq_single .faq_content {
	display: none;
	padding-top: 30px;
}

section.faq .faq_note {
	padding: 30px 30px 30px 90px;
	border-radius: 15px;
	background-color: var(--grey);
	color: #ffffff;
	position: relative;
}

section.faq .faq_note p:last-child {
	margin: 0;
}

section.faq .faq_note::before {
	position: absolute;
	width: 40px;
	height: 40px;
	left: 30px;
	top: 30px;
	background-image: url('/wp-content/themes/adpower/assets/img/icon.svg');
	content: '';
	background-size: contain;
	background-position: center;
}

/* Text */

section.text {
	font-size: 20px;
	line-height: 1.7;
}

section.text a {
	color: var(--primary-color);
}

/* Image */

img.image_block {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* Parallax */

section.parallax {
	position: relative;
	padding: 175px 0;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;	
}

/* CTA */

section.cta {
	text-align: center;
}

section.cta strong {
	font-size: 62px;
	font-weight: 400;
	line-height: 1.1;
}

section.cta p:has(+ a.button) {
	margin-bottom: 30px;
}

/* Tabs */

section.tabs .introduction {
	text-align: center;
	margin-bottom: 50px;
}

section.tabs .introduction h2 {
	font-size: 62px;
}

section.tabs ul {
	margin: 0 0 50px;
	padding: 0;
	text-align: center;
}

section.tabs ul li {
	display: inline-block;
	list-style: none;
	margin: 0 15px;
}

section.tabs ul li span {
	font-size: 32px;
	cursor: pointer;
	display: block;
	padding-bottom: 5px;
}

section.tabs ul li.active span {
	border-bottom: 2px solid var(--primary-color);
}

section.tabs .tab_single {
	display: none;
}

section.tabs .tab_single.active {
	display: block;
}

section.tabs img {
	width: 100%;
}

/* Prices */

section.prices .introduction {
	margin-bottom: 50px;
}

section.prices .introduction h2 {
	font-size: 62px;
}

section.prices .introduction p {
	width: 50%;
}

section.prices .prices_single {
	margin-bottom: 30px;
}

section.prices .prices_single_inner {
	padding: 30px;
	border-radius: 15px;
	background-color: #ffffff;
	color: #000000;
	height: 100%;
}

section.prices .prices_single_inner img {
	width: 56px;
	height: 56px;
	object-fit: contain;
	object-position: top left;
}

section.prices .prices_single_inner span {
	display: block;
	margin-top: 20px;
}

section.prices .prices_single_inner span.label {
	font-size: 24px;
	line-height: 1;
}

section.prices .prices_single_inner span.price {
	display: flex;
	align-items: center;
	line-height: 1;
}

section.prices .prices_single_inner span span {
	display: inline-block;
	margin: 0 10px 0 0;
	font-size: 62px;
}

/* Map */

section.map #map {
	height: 500px;
}

section.map .introduction {
	text-align: center;
	margin-bottom: 50px;
}

section.map .introduction h2 {
	font-size: 62px;
}

/* Contact */

section.contact .introduction {
	text-align: center;
	margin-bottom: 50px;
}

section.contact .introduction > span {
	display: block;
	width: 100%;
	margin-bottom: 30px;
}

section.contact .introduction > span a {
	color: #ffffff;
	display: inline-block;
	margin: 0 5px;
	transition: all 0.3s;
}

section.contact .introduction > span a:hover {
	text-decoration: none;
	opacity: 0.8;
}

section.contact .introduction > span a i {
	color: var(--primary-color);
}

section.contact .introduction h2 {
	font-size: 62px;
	line-height: 1.1;
}

section.contact form {
	width: 100%;
	background-color: #ffffff;
	padding: 50px;
	border-radius: 30px;
}

section.contact form label {
	color: #000000;
	padding-left: 15px;
}

section.contact .wpcf7-response-output {
	color: #000000;
}

section.contact form input,
section.contact form textarea,
section.contact form select {
	width: 100%;
	padding: 15px;
	background-color: #ffffff;
	border-radius: 30px;
	border: 1px solid var(--grey);
	color: #000000;
}

section.contact form input[type="checkbox"] {
	width: auto;
}

section.contact form input[type="submit"] {
	width: auto;
	border: none;
	background-color: var(--primary-color);
	transition: all 0.3s;
	padding: 15px 25px;
}

section.contact form input[type="submit"]:hover {
	opacity: 0.6;
}

section.contact form select {
	cursor: pointer;
	appearance: none;
	background-image: url('/wp-content/themes/adpower/assets/img/chevron-down-solid-full.svg');
	background-size: 15px;
	background-repeat: no-repeat;
	background-position: calc(100% - 15px) center;	
}

section.contact form .wpcf7-list-item {
	margin: 0;
}

section.contact form .wpcf7-list-item label {
	padding: 0;
}

section.contact form label span:not(.wpcf7-list-item-label) {
  color: #9c0000;
}

.logo_slider {
  padding: 30px 0;
  position: relative;
}

.logo_slider::before {
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	height: 100%;
	width: 100px;
	background: linear-gradient(90deg,rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 0) 100%);
	z-index: 888;
}

.logo_slider::after {
	position: absolute;
	top: 0;
	right: 0;
	content: '';
	height: 100%;
	width: 100px;
	background: linear-gradient(270deg,rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 0) 100%);
	z-index: 888;
}

.logo_slider .logos_wrap img {
  height: 85px;
  padding: 15px 50px;
  object-fit: contain;
  transition: all 0.3s;
  max-width: 100%;
  display: block;
  margin: auto;
}

/* Portfolio */

section.portfolio .introduction {
	text-align: center;
	margin-bottom: 50px;
}

section.portfolio .introduction h2 {
	font-size: 62px;
}

section.portfolio .product_single {
	margin-bottom: 30px;
}

section.portfolio .product_single strong {
	display: inline-block;
	font-weight: 400;
	font-size: 48px;
	color: #ffffff;
	opacity: 0.8;
	cursor: pointer;
	margin-bottom: 15px;
	position: relative;
	transition: all 0.3s;
}

section.portfolio .product_single strong:hover {
	opacity: 1;
}

section.portfolio .product_single.active strong {
	opacity: 1;
}

section.portfolio .product_single.active strong::before {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	content: '';
	background-color: var(--primary-color);
	height: 3px;	
}

section.portfolio .product_single span {
	display: none;
	font-size: 16px;
	opacity: 0.8;
	width: 600px;
	max-width: 100%;
	margin-bottom: 15px;
}

section.portfolio .product_single.active span {
	display: block;
}

section.portfolio .product_single a {
	display: none;
}

section.portfolio .product_single.active a {
	display: inline-block;
}

section.portfolio .product_image_single img {
	width: 100%;
}

section.portfolio .product_image_single {
	display: none;
}

section.portfolio .product_image_single.active {
	display: block;
}

/* Technical */

section.technical .introduction {
	text-align: center;
	margin-bottom: 50px;
}

section.technical .introduction h2 {
	font-size: 62px;
}

section.technical .prduct_single {
	padding: 0 15px;
}

section.technical .prduct_single img {
	width: 100%;
}

section.technical .prduct_single h3 {
	font-weight: 400;
	font-size: 48px;
	color: #ffffff;	
}

section.technical .prduct_single .table_row {
	margin-bottom: 5px;
}

section.technical .prduct_single strong {
	font-weight: 400;
	color: var(--primary-color);
	display: inline-block;
	margin-right: 5px;
}

section.technical .slick-arrow {
	position: absolute;
	bottom: 0;
	left: 15px;
	font-size: 30px;
	cursor: pointer;
	z-index: 8;
	opacity: 0.7;
	transition: all 0.3s;
}

section.technical .slick-arrow:hover {
	opacity: 1;
}

section.technical .slick-arrow.fa-arrow-right {
	left: 65px;
}

/* Footer */

footer .footer_inner .footer_top {
  margin-bottom: 100px;
}

footer .footer_inner .footer_top nav strong {
	font-weight: 600;
	font-size: 18px;
	display: block;
	margin-bottom: 15px;
	color: var(--primary-color);
}

footer .footer_inner .footer_top nav ul {
	margin: 0;
	padding: 0;
}

footer .footer_inner .footer_top nav ul li {
	list-style: none;
	margin-bottom: 5px;
}

footer .footer_inner .footer_top nav ul li a {
	color: #ffffff;
	text-decoration: none;
	transition: all 0.3s;
}

footer .footer_inner .footer_top nav ul li a:hover {
	opacity: 0.8;
}

footer .footer_inner .logo_link {
	display: inline-block;
}

footer .footer_inner .logo_link img {
  width: 175px;
}

footer .footer_inner .backlink {
	text-align: right;
}

footer .footer_inner .backlink a {
  color: #ffffff;
  font-size: 14px;
  transition: all 0.3s;
  text-decoration: none;
}

footer .footer_inner .backlink a:hover {
  opacity: 0.8;
}

footer .footer_inner .social ul {
	margin: 0;
	padding: 0;
}

footer .footer_inner .social ul li {
	display: inline-block;
	list-style: none;
	margin-right: 15px;
}

footer .footer_inner .social ul li a {
	color: #ffffff;
	font-size: 20px;
	transition: all 0.3s;
}

footer .footer_inner .social ul li a:hover {
	color: var(--primary-color);
}

footer .footer_inner form {
	padding: 30px;
	border-radius: 15px;
	background-color: var(--grey);
}

footer .footer_inner form input {
	width: 100%;
	border-radius: 50px;
	padding: 15px;
	border: none;
}

footer .footer_inner form .wpcf7-list-item {
	margin: 0;
}

footer .footer_inner form .wpcf7-list-item label {
	font-size: 12px;
}

footer .footer_inner form input[type="checkbox"] {
	width: auto;
}

footer .footer_inner form .wpcf7-spinner {
	display: none;
}

footer .footer_inner form p:has(.wpcf7-submit) {
	margin: 0;
}

footer .footer_inner form input[type="submit"] {
	background-color: var(--primary-color);
	transition: all 0.3s;
}

footer .footer_inner form input[type="submit"]:hover {
	opacity: 0.8;
}

footer .footer_inner .footer_bottom {
	padding-bottom: 15px;
}

/* Responsive */

@media only screen and (max-width: 1199px) {

	.mobile_nav_headline {
		display: flex;
	}

	header .wrap_header nav {
		display: block;
		position: fixed;
		top: 0;
		right: -100%;
		z-index: 999;
		height: 100vh;
		width: 500px;
		max-width: 80vw;
		background-color: #000000;
		box-shadow: -5px 0px 15px 10px rgba(255,255,255,0.1);		
		transition: all 0.3s;
	}

	header .wrap_header nav.open {
		right: 0;
	}

	header .wrap_header nav ul li {
		display: block;
		margin: 0;
		padding: 0;
	}

	header .wrap_header nav ul li a {
		display: block;
		padding: 10px;
		border-bottom: 1px solid var(--grey_light);
	}

	header .wrap_header nav ul li a:hover {
		background-color: var(--secondary-color);
		opacity: 1;
		color: #ffffff;
	}

	header .wrap_header nav ul li.current_page_item a {
		background-color: var(--primary-color);
		color: #ffffff;
	}

	section.contact h2 {
		font-size: 48px;
	}

	header .mobile_nav_open {
		display: block;
	}

	header .wrap_header > a.button {
		margin-left: auto;
		margin-right: 30px;
	}

	section.hero .hero_text h1,
	section.banner .banner_text h1 {
		font-size: 66px;
	}

	section.tabs .introduction h2,
	section.cta strong,
	section.prices .introduction h2,
	section.map .introduction h2,
	section.faq .introduction h2,
	section.portfolio .introduction h2,
	section.technical .introduction h2,
	section.contact .introduction h2 {
		font-size: 52px;
	}

	section.prices .introduction p {
		width: 75%;
	}

	section.faq::before {
		opacity: 0.5;
	}

}

@media only screen and (max-width: 991px) {

	section.tabs .introduction h2,
	section.cta strong,
	section.prices .introduction h2,
	section.map .introduction h2,
	section.faq .introduction h2,
	section.portfolio .introduction h2,
	section.technical .introduction h2,
	section.contact .introduction h2 {
		font-size: 42px;
	}	

	section.portfolio .product_single strong,
	section.technical .prduct_single h3 {
		font-size: 35px;
	}

	section.hero,
	section.banner {
		position: relative;
	}

	section.hero .hero_image,
	section.banner .banner_image {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;		
		opacity: 0.2;
	}

	section.hero .hero_text,
	section.banner .banner_text {
		position: relative;
		z-index: 8;
	}

	section.partner span {
		display: none;
	}

	footer nav {
		padding-bottom: 30px;
	}

	footer nav strong {
		padding-top: 30px;
	}

	.wp-block-spacer {
		max-height: 125px;
	}

	.wp-block-spacer:last-child {
		max-height: 150px;
	}

}

@media only screen and (max-width: 767px) {

	section.tabs .introduction h2,
	section.cta strong,
	section.prices .introduction h2,
	section.map .introduction h2,
	section.faq .introduction h2,
	section.portfolio .introduction h2,
	section.technical .introduction h2,
	section.contact .introduction h2 {
		font-size: 37px;
	}	

	section.portfolio .product_single strong,
	section.technical .prduct_single h3 {
		font-size: 32px;
	}		

	h3 {
		font-size: 25px;
	}

	header .wrap_header > a.button {
		display: none;
	}

	header .wrap_header nav a.button {
		display: inline-block;
		margin: 15px 0 0 15px;
	}

	footer .footer_inner .backlink {
		text-align: left;
	}

	section.hero .hero_text,
	section.banner .banner_text {
		padding: 150px 15px;
	}	

	section.contact form {
		padding: 30px;
		border-radius: 15px;
	}

	.wp-block-spacer {
		max-height: 100px;
	}

	.wp-block-spacer:last-child {
		max-height: 125px;
	}	

}

@media only screen and (max-width: 565px) {

	section.hero .hero_text img {
		height: 40px;
	}

	section.hero .hero_text,
	section.banner .banner_text {
		padding: 125px 15px;
	}

	section.hero .hero_text h1,
	section.banner .banner_text h1 {
		font-size: 56px;
	}

	section.tabs .introduction h2,
	section.cta strong,
	section.prices .introduction h2,
	section.map .introduction h2,
	section.faq .introduction h2,
	section.portfolio .introduction h2,
	section.technical .introduction h2,
	section.contact .introduction h2 {
		font-size: 32px;
	}		

	section.portfolio .product_single strong,
	section.technical .prduct_single h3 {
		font-size: 25px;
	}	

	section.faq .faq_single {
		padding: 15px;
	}

	section.faq .faq_note {
		padding: 15px 15px 15px 75px;
	}

	section.faq .faq_note::before {
		left: 15px;
		top: 15px;
	}

	section.contact form {
		padding: 15px;
	}	

	.wp-block-spacer {
		max-height: 75px;
	}

	.wp-block-spacer:last-child {
		max-height: 100px;
	}	

}