/***
    The new CSS reset - version 1.7.3 (last updated 7.8.2022)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
	all: unset;
	display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
	cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
	list-style: none;
}

/* For images to not be able to exceed their container */
img {
	max-width: 100%;
}

/* removes spacing between cells in tables */
table {
	border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
	-webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
	white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
	-webkit-appearance: revert;
	appearance: revert;
}

/* reset default text opacity of input placeholder */
::placeholder {
	color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
	display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable="false"])) {
	-moz-user-modify: read-write;
	-webkit-user-modify: read-write;
	overflow-wrap: break-word;
	-webkit-line-break: after-white-space;
	-webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
	-webkit-user-drag: element;
}

input, textarea {
	border: 0px solid;
}

html {
	font-family: 'Montserrat', sans-serif;
}

html {
	font-size: 8px;
}

@media screen and (min-width: 560px) {
	html {
		font-size: calc(8px + 2 * ((100vw - 560px) / 688));
	}
}

@media screen and (min-width: 1248px) {
	html {
		font-size: 10px;
	}
}

body {
	font-size: 1.8rem;
}

h2 {
	font-size: 2.4rem;
	line-height: 3rem;
	font-weight: 700;
	color: #292834;
	text-transform: uppercase;
	margin-bottom: 8rem;
}

p {
	font-size: 1.4rem;
	font-weight: 400;
	margin-bottom: 2rem;
	line-height: 1.5em;
}

p strong {
	font-weight: 700;
}

p a {
	transition: all .3s;
}

.standard-block {
	width: 100%;
	max-width: 1200px;
	padding: 0 2rem;
	margin: 12rem auto;
}

.wide-block {
	margin: 12rem 0;
	padding: 0 2rem;
}

.wide-block h2 {
	width: 100%;
	max-width: 1200px;
	margin: auto;
	padding: 0 2rem;
}

.button {
	display: inline-block;
	border: 2px solid #dd982c;
	font-size: 1.8rem;
	text-transform: uppercase;
	color: #fff;
	font-weight: 700;
	padding: 1.2rem 3.5rem;
	border-radius: 3.5rem;
	cursor: pointer;
	line-height: 1.8rem;
	position: relative;
}

.button::after {
	transition: all .3s;
	content: "";
	display: inline-block;
	width: 0;
	overflow: hidden;
	height: 1.8rem;
	width: 0rem;
	background-image: url("src/svg/arrow.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.button:hover::after {
	width: 1.1rem;
}

.button a {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.site-header {
	transition: all .3s;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 999;
}

.site-header.page-top {
	background-color: rgba(0, 0, 0, 0.75);
}

.site-header .header-content {
	max-width: 1200px;
	margin: auto;
	padding: 0 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

.site-header .header-content .logo {
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	flex: 0 0 120px;
	width: 120px;
	height: 120px;
	background-image: url("src/img/filmmakerlv-logo.png");
	position: realative;
}

.site-header .header-content .logo a {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.site-header .header-content .nav-toggler {
	display: none;
}

@media only screen and (max-width: 767px) {
	.site-header .header-content .nav-toggler {
		display: block;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 2rem;
		width: 3rem;
		height: 3rem;
		background-image: url("src/svg/burger.svg");
		background-size: contain;
		background-position: center;
		background-repeat: no-repeat;
	}
	.site-header .header-content .nav-toggler.active {
		background-image: url("src/svg/close.svg");
	}
}

.site-header .header-content .main-navigation {
	flex: 1 1 100%;
	display: flex;
	justify-content: flex-end;
}

@media only screen and (max-width: 767px) {
	.site-header .header-content .main-navigation {
		transition: all .3s;
		position: fixed;
		display: block;
		right: 100%;
		top: 120px;
		width: 100%;
		height: calc(100vh - 120px);
		background-color: rgba(0, 0, 0, 0.75);
	}
	.site-header .header-content .main-navigation.active {
		right: 0;
	}
}

.site-header .header-content .main-navigation .menu {
	display: flex;
	justify-content: flex-end;
}

@media only screen and (max-width: 767px) {
	.site-header .header-content .main-navigation .menu {
		flex-direction: column;
	}
}

.site-header .header-content .main-navigation .menu a {
	transition: all .3s;
	padding: 1rem 2rem;
	text-transform: uppercase;
	font-size: 1.2rem;
	font-weight: 700;
	color: #fff;
	opacity: 0.75;
}

.site-header .header-content .main-navigation .menu a:hover {
	opacity: 1;
}

@media only screen and (max-width: 767px) {
	.site-header .header-content .main-navigation .menu a {
		padding: 2rem;
		display: block;
		font-size: 1.4rem;
		border-bottom: 1px solid rgba(255, 255, 255, 0.5);
	}
}

.site-header .header-content .main-navigation .lang-select {
	color: #efefef;
}

@media only screen and (max-width: 767px) {
	.site-header .header-content .main-navigation .lang-select {
		padding: 2rem 1rem;
	}
}

.site-header .header-content .main-navigation .lang-select a {
	font-size: 1.2rem;
	font-weight: 700;
	color: #fff;
}

@media only screen and (max-width: 767px) {
	.site-header .header-content .main-navigation .lang-select a {
		font-size: 1.4rem;
		padding: 1rem;
	}
}

.site-footer .content-wrapper {
	background-color: #000;
}

.site-footer .content-wrapper .content {
	display: flex;
	max-width: 120rem;
	margin: auto;
	padding: 4rem 2rem;
}

@media only screen and (max-width: 767px) {
	.site-footer .content-wrapper .content {
		flex-direction: column;
	}
}

.site-footer .content-wrapper .content .col {
	flex: 0 0 33%;
	color: #efefef;
}

@media only screen and (max-width: 767px) {
	.site-footer .content-wrapper .content .col {
		margin-bottom: 2rem;
	}
}

.site-footer .copyright {
	background-color: rgba(16, 16, 16, 0.95);
	padding: 2rem 1rem;
	text-align: center;
	color: #efefef;
	font-size: 1.4rem;
}

.bottom-contacts {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.75);
	padding: 2rem;
	display: none;
	z-index: 10;
}

@media only screen and (max-width: 767px) {
	.bottom-contacts {
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 1.8rem;
		text-transform: uppercase;
		color: #fff;
		font-weight: 700;
	}
}

.bottom-contacts a {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	font-size: 1.8rem;
	text-transform: uppercase;
	color: #fff;
	font-weight: 700;
}

.large-video-block {
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

.large-video-block .video-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 21;
	overflow: hidden;
}

.large-video-block .video-background video {
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.large-video-block .block-content {
	color: #fff;
	height: 100vh;
	position: relative;
	z-index: 22;
	max-width: 1200px;
	margin: auto;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	padding: 0 2rem 10rem;
}

.large-video-block .block-content .content {
	margin-bottom: 4rem;
}

.large-video-block .block-content .content p {
	font-size: 2.1rem;
	line-height: 1.5em;
	color: #fff;
	font-weight: 500;
}

.about-block .content {
	padding-right: 4rem;
}

.about-block .content-wrapper {
	display: flex;
}

@media only screen and (max-width: 1023px) {
	.about-block .content-wrapper {
		flex-direction: column;
	}
	.about-block .content-wrapper .content {
		order: 2;
		margin-top: 2rem;
	}
}

.about-block .content-wrapper iframe {
	width: 100%;
}

.about-block .content-wrapper .content {
	flex: 0 0 40%;
}

.about-block .content-wrapper .video {
	flex: 1 1 100%;
}

.why-to-work-block .entries {
	display: flex;
}

@media only screen and (max-width: 767px) {
	.why-to-work-block .entries {
		flex-wrap: wrap;
	}
}

.why-to-work-block .entries .entry-wrapper {
	margin-top: 8rem;
	flex: 0 0 20%;
	display: flex;
	padding: 5px;
}

@media only screen and (max-width: 767px) {
	.why-to-work-block .entries .entry-wrapper {
		flex: 0 0 33%;
		margin-top: 1rem;
	}
}

@media only screen and (max-width: 559px) {
	.why-to-work-block .entries .entry-wrapper {
		flex: 0 0 50%;
	}
	.why-to-work-block .entries .entry-wrapper.music {
		display: none;
	}
}

.why-to-work-block .entries .entry-wrapper .entry {
	background-color: #dd982c;
	flex: 0 0 100%;
	text-align: center;
	padding: 8rem 1rem;
}

.why-to-work-block .entries .entry-wrapper .entry img {
	height: 10rem;
	margin-bottom: 2rem;
}

.why-to-work-block .entries .entry-wrapper .entry .info {
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 0;
}

.portfolio-block .content-wrapper {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -1rem;
}

.portfolio-block .content-wrapper .item-wrapper {
	flex: 0 0 25%;
	padding: 1rem;
}

@media only screen and (max-width: 1023px) {
	.portfolio-block .content-wrapper .item-wrapper {
		flex: 0 0 33%;
	}
}

@media only screen and (max-width: 767px) {
	.portfolio-block .content-wrapper .item-wrapper {
		flex: 0 0 50%;
	}
}

@media only screen and (max-width: 559px) {
	.portfolio-block .content-wrapper .item-wrapper {
		flex: 0 0 100%;
	}
}

.portfolio-block .content-wrapper .item-wrapper .item {
	position: relative;
}

.portfolio-block .content-wrapper .item-wrapper .item:hover .item-image::after {
	opacity: 0.75;
}

.portfolio-block .content-wrapper .item-wrapper .item .item-image {
	background-size: cover;
	background-position: center;
	padding-top: 56%;
	position: relative;
}

.portfolio-block .content-wrapper .item-wrapper .item .item-image::after {
	content: '';
	position: absolute;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: all .3s;
	background-image: linear-gradient(#ffbb2c, #f3421b);
	opacity: 0;
}

.portfolio-block .content-wrapper .item-wrapper .item .item-title {
	font-size: 1.7rem;
	text-transform: uppercase;
	font-weight: 700;
	display: none;
}

.portfolio-block .content-wrapper .item-wrapper .item a {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 5;
}

.team-block .content-wrapper {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -1rem;
}

.team-block .content-wrapper .item-wrapper {
	flex: 0 0 25%;
	padding: 1rem;
	margin-bottom: 4rem;
}

@media only screen and (max-width: 1023px) {
	.team-block .content-wrapper .item-wrapper {
		flex: 0 0 33%;
	}
}

@media only screen and (max-width: 767px) {
	.team-block .content-wrapper .item-wrapper {
		flex: 0 0 50%;
	}
}

.team-block .content-wrapper .item-wrapper .item {
	position: relative;
}

.team-block .content-wrapper .item-wrapper .item .item-image {
	background-size: cover;
	background-position: center;
	padding-top: 100%;
	margin-bottom: 1rem;
	position: relative;
}

.team-block .content-wrapper .item-wrapper .item .item-title {
	font-size: 1.7rem;
	text-transform: uppercase;
	font-weight: 700;
}

@media only screen and (max-width: 559px) {
	.team-block .content-wrapper .item-wrapper .item .item-title {
		width: 100px;
	}
}

.clients-block .content-wrapper .swiper-slide .item-image {
	background-size: cover;
	background-position: center;
	padding-top: 100%;
}

.form-wrapper {
	transition: all .3s;
	top: 140px;
	right: -100vw;
	position: fixed;
	z-index: 999;
}

.form-wrapper.visible {
	right: 2rem;
}

.form-wrapper .close-form {
	position: absolute;
	top: 0;
	right: calc( 100% + 2rem);
	width: 3rem;
	height: 3rem;
	cursor: pointer;
	background-image: url("src/svg/close.svg");
	background-size: 60%;
	background-color: #000;
	background-repeat: no-repeat;
	background-position: center;
	box-shadow: -1px 2px 17px 0px rgba(0, 0, 0, 0.3);
}

.form-wrapper .the-form {
	background-color: #000;
	color: #fff;
	padding: 4rem 2rem;
	max-width: calc( 100vw - 11rem);
	width: 40rem;
	box-shadow: -1px 2px 17px 0px rgba(0, 0, 0, 0.3);
}

.form-wrapper .the-form input::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.form-wrapper .the-form input[type=text], .form-wrapper .the-form input[type=email], .form-wrapper .the-form input[type=tel] {
	width: 100%;
	border-bottom: 1px solid #dd982c;
	margin-bottom: 2rem;
}

.form-wrapper .the-form input[type=submit] {
	display: block;
	border: 2px solid #dd982c;
	font-size: 1.8rem;
	text-transform: uppercase;
	color: #fff;
	font-weight: 700;
	padding: 1.2rem 3.5rem;
	border-radius: 3.5rem;
	cursor: pointer;
	line-height: 1.8rem;
}

.form-wrapper .the-form .wpcf7-not-valid-tip {
	margin-top: -2rem;
}

.form-wrapper .the-form .wpcf7-response-output {
	margin: 2rem 0 0 0;
	padding: 1rem;
	font-size: 1.4rem;
}

.form-wrapper .the-form .column-four {
	position: relative;
}

.form-wrapper .the-form .column-four .wpcf7-spinner {
	position: absolute;
	top: 0;
	right: 0;
}

.form-wrapper .the-form .privacy-under {
	font-size: 1.4rem;
}

.form-wrapper .the-form .privacy-under p {
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.5) !important;
}

.form-wrapper .the-form .privacy-under p a {
	text-decoration: underline;
}

.counters-wrapper {
	display: flex;
}

@media only screen and (max-width: 767px) {
	.counters-wrapper {
		flex-wrap: wrap;
	}
}

.counters-wrapper .counter-entry {
	flex: 0 0 25%;
	text-align: center;
}

@media only screen and (max-width: 767px) {
	.counters-wrapper .counter-entry {
		flex: 0 0 50%;
		margin-bottom: 4rem;
	}
}

@media only screen and (max-width: 399px) {
	.counters-wrapper .counter-entry {
		flex: 0 0 100%;
	}
}

.counters-wrapper .counter-entry .the-value {
	font-size: 3.4rem;
}

.counters-wrapper .counter-entry .description {
	font-size: 1.4rem;
}

.map-block {
	background-image: url(src/img/map_bg.jpg);
	background-size: cover;
	background-position: center;
	position: relative;
}

@media screen and (max-width: 768px) {
	.map-block {
		display: none;
	}
}

.map-block .map-wrapper {
	max-width: 1400px;
	padding-top: 3rem;
	padding-bottom: 3rem;
	position: relative;
	z-index: 5;
}

.map-block .map-wrapper .pointer-wrapper {
	position: relative;
}

.map-block .map-wrapper .pointer-wrapper .map-pointer {
	position: absolute;
	width: 6rem;
	height: 6rem;
	background-color: #fff;
	display: none;
	text-align: center;
	border-radius: 50%;
	transform: translate(-50%, 0%);
}

.map-block .map-wrapper .pointer-wrapper .map-pointer.active {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.map-block .map-wrapper .pointer-wrapper .map-pointer.top {
	transform: translate(-50%, -110%);
}

.map-block .map-wrapper .pointer-wrapper .map-pointer .bottom {
	transform: translate(-50%, 10%);
}

.map-block .map-wrapper .pointer-wrapper .map-pointer .project-num {
	font-size: 3rem;
	margin-bottom: -0.5rem;
	margin-top: -0.5rem;
}

.map-block .map-wrapper .pointer-wrapper .map-pointer .map-pointer-label {
	font-size: 1.1rem;
}

.map-block .has-entries {
	fill: #dd982c;
}

.map-block .has-entries g,
.map-block .has-entries path {
	fill: #dd982c;
}

.map-block g g:hover path {
	fill: #dd982c;
}

.map-block g path {
	fill: rgba(255, 255, 255, 0.3);
	transition: all 0.3s;
}

.map-block g path:hover {
	fill: #dd982c;
}

.map-block .country-data-wrapper .country-data {
	position: absolute;
	background-color: #fff;
	opacity: 0;
	transform: translateX(-100%);
	top: 2rem;
	padding: 2rem;
	max-width: 40rem;
}

.map-block .country-data-wrapper .country-data .port-entry {
	display: flex;
	align-items: center;
	position: relative;
	margin-top: 2rem;
}

.map-block .country-data-wrapper .country-data .port-entry .port-image {
	background-size: cover;
	background-position: center;
	width: 6rem;
	height: 6rem;
	margin-right: 2rem;
	flex: 0 0 6rem;
	border-radius: 50%;
}

.map-block .country-data-wrapper .country-data .port-entry .port-description {
	flex: 1 1 100%;
	display: flex;
	flex-direction: column;
	text-align: l;
}

.map-block .country-data-wrapper .country-data .port-entry a {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.map-block .country-data-wrapper .country-data.left {
	left: 2rem;
}

.map-block .country-data-wrapper .country-data.right {
	right: 2rem;
}

.map-block .country-data-wrapper .country-data.active {
	opacity: 1;
	transform: translateX(0%);
	z-index: 10;
	max-height: calc(100% - 4rem);
	overflow-y: scroll;
}

.youtube-embed {
	width: 100%;
	height: 80vh;
}

.portfolio-item .standard-block {
	margin-top: 5rem;
}

.portfolio-item .standard-block h1 {
	font-size: 3rem;
	margin-bottom: 2rem;
}

.portfolio-item .standard-block .client {
	font-weight: 700;
	margin-bottom: 2rem;
}

.portfolio-item .standard-block .review .head {
	font-weight: 700;
}

.portfolio-item .standard-block .review .body ul {
	list-style-type: disc;
	margin-bottom: 2rem;
	padding-left: 2rem;
}

.portfolio-item .standard-block .review .body ul li {
	font-size: 1.4rem;
	line-height: 1.5rem;
}

/*# sourceMappingURL=style.css.map */