:root {
  --primary-color: #013B76;
  --secondary-color: #1D94D9;
  --grey: #9E9E9E;
  --grey_light: #EFEFEF;
}

/* 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: #022C22;
}

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

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

/* 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 {
  width: 225px;
}

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: initial;
  font-size: 18px;
  transition: all 0.3s;
}

header .wrap_header nav ul li a:hover {
  opacity: 0.5;
  text-decoration: none;
}

header .wrap_header nav ul li.current_page_item a {
  font-weight: 600;
}

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: 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(--secondary-color);
}

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

/* Videobanner */

section.videobanner {
	height: calc(100vh - 277px);
	width: 100%;
	position: relative;
}

section.videobanner video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

section.videobanner .videobanner_overlay {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(255,255,255,0.8);
}

section.videobanner .videobanner_overlay .videobanner_overlay_text {
	text-align: center;
	width: 650px;
	max-width: 100%;
	font-size: 18px;
	color: var(--grey);
	display: block;
	margin: auto;
}

section.videobanner .videobanner_overlay .videobanner_overlay_text h1 {
	font-size: 96px;
	font-weight: 400;
	color: initial;
	line-height: 1.06;
	display: block;
	margin-bottom: 30px;
}

section.videobanner .videobanner_overlay .videobanner_overlay_text h1 span {
	color: var(--secondary-color);
}

section.videobanner .videobanner_overlay .videobanner_overlay_text p {
	margin-bottom: 30px;
	display: block;
}

/* Hero */

section.hero {
	padding: 150px 0;
	width: 100%;
	position: relative;
	background-image: url('/wp-content/themes/adwind/assets/img/lines_hero.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	margin-bottom: 15px;
}

section.hero .hero_inner {
	text-align: center;
	width: 675px;
	max-width: 100%;
	font-size: 18px;
	color: var(--grey);
	display: block;
	margin: auto;
}

section.hero h1 {
	font-size: 72px;
	font-weight: 400;
	color: initial;
	line-height: 1;
	display: block;
	margin-bottom: 30px;
}

section.hero h1 span {
	color: var(--secondary-color);
}

section.hero p {
	margin-bottom: 30px;
	display: block;
}

/* Image */

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

/* Text */

section.text a {
	color: var(--secondary-color);
	transition: all 0.3s;
}

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

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

/* Counter */

section.counter {
	background-color: var(--primary-color);
	color: #ffffff;
	padding: 35px 0;
}

section.counter .counter_single {
	padding: 15px 0;
}

section.counter .counter_single_inner {
	text-align: center;
}

section.counter span.number {
	display: block;
	font-size: 48px;
}

section.counter strong {
	display: block;
	font-weight: 400;
	color: var(--secondary-color);
	font-size: 18px;
}

/* Slogan */

section.slogan {
	text-align: center;
	padding: 100px 0;
}

section.slogan strong {
	font-weight: 400;
	font-size: 72px;
	line-height: 1.11;
}

section.slogan strong span {
	color: var(--secondary-color);
}

/* Teaser */

section.teaser .teaser_inner {
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 50px 50px 25px 50px;
  border-radius: 15px;
}

section.teaser strong.category {
	font-weight: 600;
	font-size: 14px;
	display: block;
	border-bottom: 1px solid #ffffff;
	position: relative;
	margin-bottom: 30px;
	padding: 5px 0 5px 15px;
}

section.teaser strong.category::before {
	width: 8px;
	height: 8px;
	position: absolute;
	left: 0;
	top: calc(50% - 4px);
	content: '';
	background-color: #ffffff;
	border-radius: 100%;
}

section.teaser h2 {
	font-size: 62px;
	font-weight: 400;
	margin-bottom: 60px;
}

section.teaser .teaser_single {
	margin-bottom: 30px;
}

section.teaser .teaser_single img {
	width: 48px;
	height: 48px;
	background-color: #ffffff;
	padding: 10px;
	object-fit: contain;
	object-position: center;
	border-radius: 5px;
	display: block;
	margin-bottom: 15px;
}

section.teaser .teaser_single h3 {
	font-weight: 600;
	font-size: 22px;
	margin-bottom: 15px;
}

section.teaser .teaser_single span {
	display: block;
	margin-bottom: 15px;
}

section.teaser .teaser_single a {
	color: #ffffff;
	transition: all 0.3s;
	font-weight: 600;
}

section.teaser .teaser_single a:hover {
	opacity: 0.8;
	text-decoration: none;
}

section.teaser .teaser_single span.detailed {
	display: none;
}

section.teaser .teaser_single span.readmore {
	font-weight: 600;
	transition: all 0.3s;	
	cursor: pointer;
}

section.teaser .teaser_single span.readmore:hover {
	opacity: 0.8;
}

/* Contact */

section.contact {
	color: var(--grey);
}

section.contact h2 {
	font-size: 62px;
	color: initial;
	line-height: 1;
}

section.contact a {
	display: inline-block;
	color: initial;
	transition: all 0.3s;
}

section.contact a:hover {
	opacity: 0.5;
	text-decoration: none;
}

section.contact form {
	padding: 50px;
	border-radius: 15px;
	border-top: 3px solid var(--secondary-color);
	box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.05);	
}

section.contact form .formfield {
	margin-bottom: 15px;
}

section.contact form .formfield label:not(:has(.wpcf7-list-item-label)) {
	margin-bottom: 2px;
	padding-left: 20px;
	color: initial;
}

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

section.contact form p {
	margin: 0;
}

section.contact form input {
	width: 100%;
	padding: 10px 20px;
	border-radius: 30px;
	border: 1px solid #022C22;
	color: #022C22;
}

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

section.contact form select {
	width: 100%;
	padding: 10px 20px;
	color: #022C22;
	border-radius: 30px;
	border: 1px solid #022C22;
	background-color: #ffffff;
	cursor: pointer;
	appearance: none;
	background-image: url('/wp-content/themes/adwind/assets/img/chevron-down-solid-full.svg');
	background-size: 15px;
	background-repeat: no-repeat;
	background-position: calc(100% - 15px) center;	
}

section.contact form textarea {
	width: 100%;
	padding: 10px 20px;
	border-radius: 15px;
	border: 1px solid #022C22;	
}

section.contact form input[type="submit"] {
	width: auto;
	display: inline-block;
	color: #ffffff;
	background-color: var(--primary-color);
	transition: all 0.3s;
	text-decoration: none;
	padding: 15px 30px;
	line-height: 1;
	border-radius: 30px;
	font-size: 18px;	
	border: none;
}

section.contact form input[type="submit"]:hover {
	background-color: var(--secondary-color);	
}

/* CTA */

section.cta {
	color: #ffffff;
	background-color: var(--primary-color);
	padding: 100px 0;
}

section.cta strong {
	font-weight: 400;
	font-size: 62px;
	line-height: 1;
	display: block;
	margin-bottom: 30px;
}

section.cta a.button {
	background-color: var(--secondary-color);
}

section.cta a.button:hover {
	opacity: 0.8;
}

/* Partner */

.logo_slider {
  background-color: #ffffff;
  padding: 15px 0;
  position: relative;
}

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

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

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

.logo_slider .logos_wrap img:hover {
  filter: grayscale(0);
}

/* Team */

section.team {
	background-color: var(--primary-color);
	padding: 50px 0;
	color: #ffffff;
}

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

section.team .team_single {
	margin-top: 30px;
}

section.team .team_single .team_single_inner {
	position: relative;
	height: 600px;
}

section.team .team_single .team_single_inner img {
	width: 100%;
	height: 100%;
	border-radius: 15px;
	object-fit: cover;
}

section.team .team_single .team_single_information {
	position: absolute;
	bottom: 15px;
	left: 15px;
	width: calc(100% - 30px);
	padding: 15px;
	background-color: #ffffff;
	color: initial;
	border-radius: 15px;
}

section.team .team_single .team_single_information span,
section.team .team_single .team_single_information strong,
section.team .team_single .team_single_information a {
	display: block;
}

section.team .team_single .team_single_information strong.name {
	font-size: 20px;
}

section.team .team_single .team_single_information span.position {
	color: var(--grey);
}

section.team .team_single .team_single_information a {
	color: initial;
	transition: all 0.3s;
}

section.team .team_single .team_single_information a:hover {
	text-decoration: none;
	opacity: 0.5;
}

/* FAQ */

section.faq strong.category {
	font-weight: 600;
	font-size: 14px;
	display: block;
	border-bottom: 1px solid var(--grey);
	position: relative;
	margin-bottom: 30px;
	padding: 5px 0 5px 15px;
}

section.faq strong.category::before {
	width: 8px;
	height: 8px;
	position: absolute;
	left: 0;
	top: calc(50% - 4px);
	content: '';
	background-color: var(--secondary-color);
	border-radius: 100%;
}

section.faq .faq_info {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	padding-bottom: 30px;
}

section.faq .faq_info .faq_further {
	width: 400px;
	max-width: 100%;
	color: var(--grey);
}

section.faq .faq_info .faq_further img {
	width: 48px;
	height: 48px;
	background-color: var(--secondary-color);
	padding: 10px;
	object-fit: contain;
	object-position: center;
	border-radius: 5px;
	display: block;
	margin-bottom: 15px;	
}

section.faq .faq_info strong {
	color: initial;
}

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

section.faq .faq_single {
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.05);
	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/adwind/assets/img/chevron-down-solid-full.svg');
	position: absolute;
	right: 0;
	top: calc(50% - 14px);
	transition: all 0.3s;
}

section.faq .faq_single .faq_title.open h3::after {
	transform: rotate(180deg);
}

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

/* Tabs */

section.tabs span.introduction {
	font-size: 24px;
	line-height: 36px;
	font-weight: 600;
	width: 500px;
	max-width: 100%;
	display: block;
	margin-bottom: 100px;
}

section.tabs .tab_single {
	margin-bottom: 30px;
}

section.tabs .tab_single strong {
	display: inline-block;
	font-weight: 400;
	font-size: 48px;
	color: var(--grey);
	cursor: pointer;
	margin-bottom: 15px;
	position: relative;
}

section.tabs .tab_single.active strong {
	color: initial;
}

section.tabs .tab_single.active strong::before {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	content: '';
	background-color: var(--grey);
	height: 3px;	
	opacity: 0.8;
}

section.tabs .tab_single.active strong::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 70%;
	content: '';
	background-color: #022C22;
	height: 3px;
}

section.tabs .tab_single span {
	display: none;
	font-size: 18px;
	width: 600px;
	max-width: 100%;
}

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

section.tabs .imageslider {
	position: absolute;
	width: calc(100% - 30px);
	top: 0;
	left: 15px;
}

section.tabs .imageslider,
section.tabs .imageslider * {
	height: 100%;
}

section.tabs .imageslide_single {
	height: 100%;
}

section.tabs .imageslider img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 15px;
}

/* Testimonials */ 

section.testimonials {
	padding: 100px 0;
	background-color: var(--primary-color);
	color: #ffffff;
	text-align: center;
}

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

section.testimonials .testimonial_slider {
	padding: 50px 0 0 0;
	position: relative;
	margin: 0 50px;
}

section.testimonials .slick-track {
	display: flex;
	align-items: center;	
}

section.testimonials .slick-arrow {
	position: absolute;
	cursor: pointer;
	font-size: 30px;
	top: calc(50% + 15px);
	z-index: 888;
}

section.testimonials .fa-chevron-left {
	left: -50px;
}

section.testimonials .fa-chevron-right {
	right: -50px;
}

section.testimonials .testimonial_single {
	padding: 50px;
	border-radius: 15px;
	background-color: #ffffff;
	color: initial;
	transition: all 0.3s;
}

section.testimonials .testimonial_single:not(.slick-current) {
	transform: scaleY(0.8);
	opacity: 0.8;
	border-radius: 0;
}

section.testimonials .testimonial_single span {
	display: block;
}

section.testimonials .testimonial_single span.stars {
	font-size: 25px;
	color: var(--secondary-color);
	margin-bottom: 30px;
}

section.testimonials .testimonial_single span.quote {
	font-size: 32px;
	margin-bottom: 30px;
}

section.testimonials .testimonial_single span.name {
	font-size: 20px;
}

section.testimonials .testimonial_single span.company {
	font-size: 20px;
	color: var(--grey)
}

/* Models */

section.models .model_single {
	margin-bottom: 30px;
	display: block;
	padding: 50px;
	border-radius: 15px;
	background-color: var(--secondary-color);
	color: #ffffff;
	transition: all 0.3s;
}

section.models .model_single.open {
	background-color: var(--primary-color);	
}

section.models .model_single .model_title strong {
	font-weight: 400;
	font-size: 48px;
	display: block;
	position: relative;
	line-height: 1;
	cursor: pointer;
	padding-right: 50px;
}

section.models .model_single .model_title strong::after {
	content: '';
	width: 38px;
	height: 38px;
	background-image: url('/wp-content/themes/adwind/assets/img/chevron-down-solid-full_white.svg');
	position: absolute;
	right: 0;
	top: calc(50% - 19px);
	transition: all 0.3s;	
}

section.models .model_single.open .model_title strong::after {
	transform: rotate(180deg);
}

section.models .model_single .model_content {
	padding-top: 30px;
	display: none;
}

section.models .model_single .model_content strong.title {
	display: block;
	font-size: 22px;
	border-bottom: 1px solid var(--secondary-color);
	margin-bottom: 15px;
}

section.models .model_single .model_content .model_content_column:nth-child(even) strong.title {
	margin-left: -15px;
	padding-left: 15px;
}

section.models .model_single .model_content .model_content_column:nth-child(odd) strong.title {
	margin-right: -15px;
	padding-right: 15px;
}

section.models .model_single .model_content ul {
	color: var(--secondary-color);
}

/* Services */

section.services strong.category {
	font-weight: 600;
	font-size: 14px;
	display: block;
	border-bottom: 1px solid var(--grey);
	position: relative;
	margin-bottom: 30px;
	padding: 5px 0 5px 15px;
}

section.services strong.category::before {
	width: 8px;
	height: 8px;
	position: absolute;
	left: 0;
	top: calc(50% - 4px);
	content: '';
	background-color: var(--secondary-color);
	border-radius: 100%;
}

section.services h2 {
	font-size: 62px;
	margin-bottom: 50px;
}

section.services .service_single {
	margin-bottom: 30px;
	padding: 50px;
	border-radius: 15px;
	background-color: var(--grey_light);
}

section.services .service_single h3 {
	font-size: 48px;
}

section.services .service_single em {
	color: var(--grey);
	font-style: normal;
}

section.services .service_single img {
	width: 100%;
	height: 100%;
	border-radius: 15px;
	object-fit: cover;
}

/* Footer */

footer {
  padding-bottom: 15px;
}

footer .footer_inner {
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 50px;
  border-radius: 15px;
  background-image: url('/wp-content/themes/adwind/assets/img/lines_footer.svg');
  background-position: left;
  background-repeat: no-repeat;
  background-size: cover;
}

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;
}

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 .footer_top ul.social {
	margin: 0;
	padding: 0;
}

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

footer .footer_inner .footer_top ul.social li a {
	display: flex;
	align-items: center;
	background-color: rgba(255,255,255,0.25);
	color: #ffffff;
	transition: all 0.3s;
	text-decoration: none;
	line-height: 1;
	border-radius: 30px;
	font-size: 18px;
	padding: 5px;
}

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

footer .footer_inner .footer_top ul.social li a i {
	display: inline-block;
	width: 50px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	border-radius: 100%;
	background-color: var(--secondary-color);
	color: var(--primary-color);
	margin-right: 15px;
	font-size: 25px;
}

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

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

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 .imprint {
  text-align: right;
  font-size: 14px;
}

/* 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: #ffffff;
		box-shadow: -5px 0px 15px 10px rgba(0,0,0,0.05);		
		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;
	}

}

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

	section.tabs .imageslider, section.tabs .imageslider *	{
		height: 400px;
		position: initial;
		width: 100%;		
	}

	section.hero {
		padding: 125px 0;
	}

	section.videobanner .videobanner_overlay .videobanner_overlay_text h1 {
		font-size: 72px;
	}

	section.slogan strong,
	section.hero h1 {
		font-size: 62px;
	}

	section.faq h2 {
		margin-bottom: 30px;
	}

	section.teaser h2,
	section.faq h2,
	section.cta strong,
	section.services h2,
	section.team h2,
	section.testimonials h2 {
		font-size: 48px;
	}

	footer .footer_inner .logo_link,
	footer .footer_inner .footer_top nav ul {
		margin-bottom: 30px;
	}

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

	section.models .model_single .model_content .model_content_column:nth-child(even) strong.title,
	section.models .model_single .model_content .model_content_column:nth-child(odd) strong.title {
		margin-left: 0;
		margin-right: 0;
		padding-left: 0;
		padding-right: 0;
	}

	section.contact form {
		margin-top: 30px;
	}

	section.services .service_single a.button {
		margin-bottom: 30px;
	}

}

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

	.column_swap {
		flex-direction: column-reverse;
	}

}

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

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

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

	section.videobanner .videobanner_overlay .videobanner_overlay_text h1 {
		font-size: 62px;
	}	

	section.slogan strong,
	section.hero h1 {
		font-size: 48px;
	}	

	section.teaser h2,
	section.faq h2,
	section.models .model_single .model_title strong,
	section.cta strong,
	section.services h2,
	section.team h2,
	section.testimonials h2 {
		font-size: 34px;
	}

	section.tabs .tab_single strong,
	section.services .service_single h3 {
		font-size: 34px
	}

	section.hero {
		padding: 100px 0;
	}	

}

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

	section.hero {
		padding: 75px 0;
	}	

	section.videobanner .videobanner_overlay .videobanner_overlay_text h1 {
		font-size: 48px;
	}	

	section.videobanner {
		height: 100vh;
	}

	section.slogan strong,
	section.hero h1 {
		font-size: 34px;
	}	

	section.tabs .tab_single strong {
		hyphens: auto;
	}

	section.models .model_single .model_title strong {
		font-size: 25px;
	}

	section.testimonials .testimonial_single span.quote {
		font-size: 22px;
	}

	section.testimonials .testimonial_single {
		padding: 15px;
	}

	section.services .service_single,
	footer .footer_inner {
		padding: 30px;
	}

	section.models .model_single,
	section.contact form {
		padding: 30px 15px;
	}

	footer .footer_inner .footer_top ul.social li a {
		display: inline-block;
	}

	footer .footer_inner .footer_top ul.social li a span {
		display: none;
	}

	footer .footer_inner .footer_top ul.social li a i {
		margin: 0;
	}

	section.teaser .teaser_inner {
		padding: 30px 30px 0 30px;
	}

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

}