/*
Theme Name: NiceWebsite
Author: Tomasz Sękowski
Description: Custom Theme for Filmagine
Version: 1.0
*/

/* Reset */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	line-height: 1em;
	font-size: var(--regular-fz);
}

/* Variables */
:root {
	--header-height: 8rem;

	/* Colors */
	--primary: #0051f7;
	--700_PURPLE: #302a40;
	--background-color: #121212;
	--300_YELLOW: #ffed75;
	--200_PURPLE: #c0bdc9;
	--1000_BLACK: #000;
	--100_WHITE: #fff;
	--gray: #777;
	--white-opacity: rgba(255, 255, 255, 0.9);
	--black-opacity: rgba(0, 0, 0, 0.5);

	/* Typography */
	--main-ff: 'Montserrat', sans-serif;

	/* Font Sizes */
	--h1-fz: 7rem;
	--h2-fz: 4.5rem;
	--h3-fz: 6rem;
	--h4-fz: 4rem;
	--h5-fz: 3.2rem;
	--h6-fz: 2.5rem;
	--btn-fz: 1.8rem;
	--nav-fz: 1.4rem;
	/* mobile */

	--h1-fz-mobile: 4rem;
	--h2-fz-mobile: 3rem;
	--h3-fz-mobile: 2.5rem;
	--h4-fz-mobile: 2rem;

	--medium-fz-mobile: 1.6rem;
	--large-fz: 2.8rem;
	--medium-fz: 1.8rem;
	--regular-fz: 1.8rem;
	--small-fz: 1.4rem;
	--xsmall-fz: 1rem;
	--offer-mainsite-fz: 3rem;
	--section-title-fz: 4rem;
	--icon-size: 2rem;

	/* Spacing */
	--xxlarge-margin: 16rem;
	--xlarge-margin: 8rem;
	--medium-margin: 4rem;
	--small-margin: 2rem;
	--xsmall-margin: 1rem;

	--xxlarge-padding: 16rem;
	--xlarge-padding: 12rem;
	--large-padding: 6.4rem;
	--medium-padding: 4rem;
	--regular-padding: 3.2rem;
	--small-padding: 2.4rem;
	--xxsmall-padding: 1.6rem;
	--xsmall-padding: 1rem;
	--padding_8: 8rem;
	--padding_1-2: 1.2rem;

	--xlarge-gap: 12rem;
	--gap-6_4: 6.4rem;
	--medium-gap: 4rem;
	--small-gap: 2.4rem;
	--xsmall-gap: 1.6rem;

	/* Border & Shadows */
	--regular-br: 10px;
	--yellow-shadow: 2px 2px 10px 1px rgba(255, 204, 0, 1);
	--gray-shadow: 2px 2px 10px 1px rgba(119, 119, 119, 1);

	/* Transitions */
	--transition: 0.3s;

	/* Breakpoints */
	--mobile: 767px;
}

#wpadminbar {
	display: none;
}

html {
	font-size: 62.5%;
	scroll-behavior: smooth;
	margin-top: 0 !important;
}

p {
	font-size: var(--regular-fz);
	line-height: 1.2em;
	color: var(--100_WHITE);
}

a {
	text-decoration: none;
	transition: 0.3s;
	color: var(--100_WHITE);
}

a:hover {
	color: var(--primary);
}

ul {
	list-style: none;
}

li {
	color: var(--100_WHITE);
	font-size: var(--regular-fz);
}

b,
strong {
	color: var(--100_WHITE);
}

body {
	background-color: var(--background-color);
	font-family: var(--main-ff);
	min-height: 200dvh;
}

section {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.section-title {
	margin: var(--small-margin) 0;
	width: 50%;
	color: var(--200_PURPLE);
	font-size: var(--section-title-fz);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
}

.swiper {
	width: auto;
	height: auto;
}

h1 {
	font-size: var(--h1-fz);
	font-weight: 600;
	color: var(--100_WHITE);
}

h2 {
	font-size: var(--h2-fz);
	font-weight: 500;
	color: var(--100_WHITE);
}

h3 {
	font-size: var(--h3-fz);
	font-weight: 500;
	color: var(--100_WHITE);
}

h4 {
	font-size: var(--h4-fz);
	font-weight: 500;
	color: var(--100_WHITE);
}

h5 {
	font-size: var(--h5-fz);
	color: var(--100_WHITE);
	font-weight: 600;
	line-height: 1;
}

h6 {
	font-size: var(--h6-fz);
	color: var(--100_WHITE);
	font-weight: 600;
	line-height: 1;
}

.container {
	width: 100%;
	max-width: 1280px; /*66.67dvw;*/
	display: block;
	margin: 0 auto;
}

.none {
	display: none;
}

.block {
	display: block !important;
}

.small {
	display: none !important;
}

@media (max-width: 767px) {
	.small {
		display: block !important;
	}
}

.large {
	display: block !important;
	@media (max-width: 767px) {
		display: none !important;
	}
}

.btn {
	position: relative;
	transition: 0.3s;
	top: 0;
	cursor: pointer;
	font-family: var(--main-ff);
	padding: var(--xsmall-padding) var(--small-padding);
	font-size: var(--btn-fz);
	font-weight: 600;
	color: var(--100_WHITE);
	text-align: center;
	display: inline-block;
	text-transform: uppercase;
	border: 4px solid var(--100_WHITE);
}

.btn:hover {
	top: -1rem;
	color: var(--primary);
	border-color: var(--primary);
}

/* header */

header {
	display: flex;
	padding: var(--xsmall-padding) var(--small-padding);
	background-color: var(--1000_BLACK);
	width: 100%;
	border-bottom: 2px solid var(--primary);
	position: fixed;
	height: var(--header-height);
	top: 0;
	z-index: 10;
}

.custom-logo-link {
	display: flex;
	justify-content: center;
	align-items: center;
}

.custom-logo {
	max-width: 10.1rem;
	height: auto;
}

.header-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: var(--xlarge-gap);
}

.header-topbar-nav-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: var(--medium-gap);
}

/*header end*/

/*nav*/

nav .menu li {
	display: flex;
	justify-content: center;
	align-items: center;
}

nav .menu li:last-of-type {
	border: 4px solid var(--primary);
	padding: var(--xsmall-padding) var(--small-padding);
	background-color: transparent;
	transition: 0.3s;
}

nav .menu li:last-of-type a {
	color: var(--primary);
}

nav .menu li:last-of-type:hover {
	background-color: var(--100_WHITE);
	border-color: var(--100_WHITE);
}

nav .menu li a {
	font-size: var(--nav-fz);
	text-transform: uppercase;
	font-weight: bold;
}

#menu-menu-header-desktop {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: var(--small-gap);
}

/* hero */

.hero {
	min-height: calc(100dvh - var(--header-height));
	position: relative;
	padding-top: var(--header-height);
}

.hero-wrapper {
	display: flex;
	flex-direction: column;
	text-align: center;
	height: calc(100dvh - var(--header-height));
	justify-content: center;
	align-items: center;
	z-index: 2;
	gap: var(--gap-6_4);
}

.hero-button-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: var(--gap-6_4);
}

.hero-background {
	position: absolute;
	top: var(--header-height);
	left: 0;
	width: 100%;
	height: calc(100dvh - var(--header-height));
	z-index: 1;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: var(--primary);
	height: 100%;
	width: 100%;
	z-index: 2;
	opacity: 0.2;
}

.hero-video-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover !important;
	max-height: unset !important;
}
/* hero end */

/* about us */

.about-us {
	min-height: 78.16dvh;
	position: relative;
	background-color: #000;
	z-index: 1;
}

.about-us-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.about-us-text p {
	line-height: 1.2em;
	text-align: justify;
}

.about-us-img-background {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
	width: 100%;
}

.about-us-img-background img {
	width: 100%;
}

/* end about us */

/* our-offer */

.our-offer {
	min-height: 92.4dvh;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	position: relative;
	z-index: 2;
	gap: 10rem;
}

.our-offer::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: var(--primary);
	height: 100%;
	width: 100%;
	z-index: -1;
	opacity: 0.6;
}

.our-offer-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20rem;
}

.our-offer-item {
	font-weight: 600;
	position: relative;
	margin-bottom: 4.5rem;
}

.our-offer-item::before {
	position: absolute;
	content: '';
	border-radius: 50%;
	background-color: var(--100_WHITE);
	height: 1rem;
	width: 1rem;
	top: 50%;
	left: -1.7rem;
	transform: translate(-50%, -50%);
}

.event-setting {
	position: relative;
	background-color: #1a1a1a;
	min-height: 110dvh;
	z-index: 1;
}

.event-setting-text p,
.event-setting-text li {
	line-height: 1.2em;
}

.event-setting .container {
	display: grid;
	grid-template-columns: auto 67%;
}

.event-setting-wrapper {
	grid-column-start: 2;
}

.event-setting-headers-wrapper {
	margin-bottom: 10rem;
}

.event-setting-headers-wrapper {
	text-align: center;
}

.event-setting-title {
	font-weight: 600;
}

.event-setting-lead {
	font-weight: 400;
}

.event-setting-text ul {
	list-style: disc;
}

.event-setting-background {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
	max-width: 100%;
}

.event-setting-background img {
	max-width: 100%;
}

/*end our-offer */

/*gallery*/

.swiper {
	width: 100dvw;
	height: auto;
}

.gallery-slider-item {
	width: 100%;
	height: 100%;
}

/*gallery end*/

/*contact*/

.contact-form-footer {
	padding: 6.4rem;
}

.contact-title {
	text-align: center;
	margin-bottom: 6.4rem;
}

.contact-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: start;
	gap: var(--gap-6_4);
}

.contact-deatils-item {
	padding-bottom: 3.2rem;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.contact-deatils-item a {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 1.6rem;
}

.contact-deatils-item img {
	max-width: 2rem;
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: var(--gap-6_4);
}

.contact-form p {
	padding-bottom: 1.6rem;
}
.contact-form input.wpcf7-form-control {
	height: 4.8rem;
}

.contact-form input.wpcf7-form-control,
.contact-form textarea {
	margin-top: 1.6rem;
	border-radius: 5px;
	border: 1px #fff solid;
	background: transparent;
	width: 25dvw;
}

.wpcf7-list-item {
	margin-left: 0;
}

.contact-form .wpcf7-form-control.wpcf7-submit {
	width: 5dvw;
	border-radius: 0;
	color: #fff;
	font-family: var(--main-ff);
	font-weight: bold;
	background-color: #32373c;
	border-color: #32373c;
	transition: 0.3s;
	cursor: pointer;
}

.contact-form .wpcf7-form-control.wpcf7-submit:hover {
	border-color: var(--100_WHITE);
	background-color: var(--1000_BLACK);
}

.wpcf7-response-output {
	color: var(--100_WHITE);
}

/*contact end*/

/* customers logos */

.customers-logos {
	display: none;
}

/* end customers logos */

/*custom footer*/

.custom-footer {
	background-color: #1a1a1a;
	padding: 3.2rem 0;
	border-top: 2px solid var(--primary);
}

.custom-footer-wrapper {
	display: grid;
	grid-template-columns: 25% 25% 50%;
}

.custom-footer-wrapper h6 {
	padding-bottom: 3.2rem;
}

.custom-footer .custom-logo-link {
	justify-content: flex-start;
	padding-bottom: 3.2rem;
}

.custom-footer li {
	padding-bottom: 0.8rem;
}

/*end custom footer*/

/*mobile*/

@media (max-width: 767px) {
	/* global  */
	h1 {
		font-size: var(--h1-fz-mobile);
	}

	h2 {
		font-size: var(--h2-fz-mobile);
		line-height: 1.2em;
	}

	h3 {
		font-size: var(--h3-fz-mobile);
	}

	h4 {
		font-size: var(--h4-fz-mobile);
	}

	.container {
		max-width: 92dvw !important;
		width: 100% !important;
	}

	.none {
		display: none;
	}

	.block {
		display: block !important;
	}

	/* header */

	.header-wrapper {
		position: relative;
	}

	.menu-icons-wrapper img {
		cursor: pointer;
	}

	.menu-opened {
		display: flex !important;
		border: 2px solid var(--primary);
		border-top: 0;
	}

	/* end header */

	/*nav*/

	nav.small {
		position: absolute;
		top: 22.3rem;
		left: 50%;
		transform: translate(-50%, -50%);
		background: var(--1000_BLACK);
		width: 100%;
		border-bottom-left-radius: 5px;
		border-bottom-right-radius: 5px;
	}

	.mobile-menu {
		height: auto;
	}

	ul.menu {
		height: 100%;
		display: none;
		flex-direction: column;
		padding: 1.6rem;
		gap: 6.4rem;
	}

	/*end nav*/

	/* hero */

	.hero-button-wrapper {
		flex-direction: column;
	}

	/* end hero */

	/* about us */

	.about-us-wrapper {
		grid-template-columns: 1fr;
		margin-bottom: 20rem;
		padding: 2rem;
	}

	.about-us-img-background {
		width: 100%;
		height: 100%;
	}

	.about-us-img-background {
		background-color: var(--1000_BLACK);
	}

	.about-us-img-background img {
		width: 100%;
		height: auto;
		bottom: 0;
		position: absolute;
	}

	/* end about us */

	/* our offer */

	.our-offer {
		padding: 2rem;
		gap: 5rem;
	}

	.our-offer-title {
		text-align: center;
	}

	.our-offer-wrapper {
		flex-direction: column;
		gap: 0;
		padding: 0 2rem;
	}

	.our-offer-item {
		margin-bottom: 2.5rem;
	}

	/* end our offer */

	/* event setting  */

	.event-setting-headers-wrapper {
		text-align: center;
		margin-bottom: 5rem;
	}

	.event-setting .container {
		grid-template-columns: 1fr;
	}

	.event-setting-text {
		padding: 0 2rem;
	}

	/* end event setting  */

	/* contact */

	.contact-form-footer {
		padding: 2rem;
	}

	.contact-wrapper {
		grid-template-columns: 1fr;
	}

	.contact-form input.wpcf7-form-control,
	.contact-form textarea,
	.contact-form .wpcf7-form-control.wpcf7-submit {
		width: 100%;
	}

	/* end contact */

	/* custom footer */

	.custom-footer-wrapper {
		grid-template-columns: 1fr;
	}

	/* end custom footer */
}

/*tablet*/

@media (min-width: 768px) and (max-width: 1200px) {
	.container {
		max-width: 700px;
	}
}
