@charset "UTF-8";

@font-face {
	font-family: "NeueMachina";
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: local("NeueMachina"),
		url('/fonts/NeueMachina/NeueMachina-Regular.woff2') format('woff2');
}

@font-face {
	font-family: "NeueMachina";
	font-style: bold;
	font-weight: 700;
	font-display: swap;
	src: local("NeueMachina"),
		url('/fonts/NeueMachina/NeueMachina-Bold.woff2') format('woff2');
}

:root {
	--color-acent: #765cbf;
	--box-br: 12px;
}

html {
	height: 100%;
	font-size: 100%;
	scroll-behavior: smooth;
}

.transition-fade {
	transition: 0.6s;
	opacity: 1;
}

html.is-animating .transition-fade {
	opacity: 0;
	transform: translateY(100px);
}

b,
strong {
	font-weight: 700;
}

*,
:before,
:after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

::-webkit-input-placeholder {
	color: #6c6c3b;
}

::-moz-placeholder {
	color: #6c6c3b;
	opacity: 1;
}

:-ms-input-placeholder {
	color: #6c6c3b !important;
}

:focus::-webkit-input-placeholder {
	color: transparent;
}

:focus::-moz-placeholder {
	color: transparent;
}

:focus:-moz-placeholder {
	color: transparent;
}

:focus:-ms-input-placeholder {
	color: transparent;
}


body {
	background: #242424;
	font: 16px/1.4rem "NeueMachina", "Helvetica Neue", Arial, sans-serif;
	font-weight: 400;
	color: #151515;
	letter-spacing: 1px;
	min-width: 320px;
	height: 100%;
}

body.fixed_body {
	min-height: 100%;
	overflow: hidden;
}

h1,
h2,
h3,
h4 {
	font: 100%/1.8rem "NeueMachina", "Helvetica Neue", Arial, sans-serif;
	font-weight: 700;
	display: inline-block;
	color: #151515;
	letter-spacing: 1px;
	line-height: 1.2;
}

h1 {
	margin: 1em 0 1.7em;
	font-size: calc(22px + 10 * ((100vw - 320px) / 1080));
}

h2 {
	font-size: 1.3rem;
	margin: 0.4em 0;
}

h3 {
	font-size: 1.1rem;
	margin: 0.7em 0;
}

h4 {
	font-size: 1rem;
	margin: 0.7em 0;
}

p {
	font-size: 1rem;
	line-height: 1.8;
}

a {
	background-color: transparent;
	display: inline-block;
	color: inherit;
	text-decoration: none;
	transition: color 0.3s;
	text-decoration-skip: ink;
}

.icon {
	display: inline-block;
	position: relative;
	height: 20px;
	width: 20px;
	transition: 0.3s;
}

ul {
	list-style: none;
	display: inline-block;
}

img {
	position: relative;
	max-width: 100%;
	height: auto;
	width: 100%;
	vertical-align: top;
}

input,
textarea {
	border: medium none;
	padding: 10px;
	font-size: 0.9rem;
	letter-spacing: 1px;
	outline: none;
	width: 100%;
	-webkit-appearance: none;
	resize: vertical;
	transition: .3s;
}

button {
	border-radius: 2px;
	border: none;
	display: inline-block;
	padding: 5px 10px;
}

.btn {
	background: rgba(1, 59, 88, 0.5);
	box-shadow: 0, 1px, 5px, -3px, #666;
	border-radius: 10px;
	position: relative;
	padding: 10px 20px;
	cursor: pointer;
	color: #fff;
	font-size: 13px;
	transition: 0.4s ease-in-out 0s;
}

.btn:hover {
	background: rgba(1, 59, 88, 0.2);
	transform: scale(1.1);
}

.di,
span {
	display: inline-block
}

.dn {
	display: none
}

.flex {
	display: flex;
	flex-flow: row wrap;
}

.j-st {
	justify-content: flex-start
}

.j-end {
	justify-content: flex-end
}

.jc {
	justify-content: center
}

.ja {
	justify-content: space-around
}

.jb {
	justify-content: space-between
}

.je {
	justify-content: space-evenly
}

.as {
	align-items: flex-start
}

.ac {
	align-items: center
}

.ae {
	align-items: flex-end
}

.pre-loader {
	position: fixed;
	width: 100px;
	height: 100px;
	left: calc(50% - 50px);
	top: calc(50% - 50px);
	z-index: -1;
}

/* Content Decktop */
.content-wrap {
	width: 100%;
	margin: 0 auto;
	min-width: 320px;
	max-width: 1200px;
	padding: 0 2vw;
}

.header,
.header-page {
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	position: fixed;
	top: 0;
	transition: 0.5s;
	width: 100%;
	z-index: 10;
}

.header-page {
	background: rgba(4, 3, 3, 0.1);
	max-height: 101px;
}

.header-content {
	align-items: center;
	justify-content: space-between;
	flex-flow: row nowrap;
	margin: 0 auto;
	min-width: 320px;
	max-width: 100%;
	height: 100%;
	position: relative;
	padding: 2vh 2vw;
	transition: .6s;
}

.logo-wrap {
	flex: 0 1 auto;
	font-size: calc(22px + 2 * ((100vw - 320px) / 1080));
	font-weight: bold;
	color: #7a6fff;
	max-width: 230px;
	position: relative;
	height: 100%;
	transition: .6s;
	line-height: 0;
	z-index: 1;
}

.header-fixed .header-content .logo-wrap {}

.logo-wrap a {
	color: #fff;
	font-size: calc(22px + 2 * ((100vw - 320px) / (1280 - 320)));
}

/* right bar */
.right-bar--open-btn {
	display: flex;
	flex-flow: column wrap;
	justify-content: flex-start;
	position: relative;
	align-items: flex-end;
	right: 5px;
	width: 46px;
	cursor: pointer;
	opacity: 1;
	z-index: 1;
}

.lock .right-bar--open-btn {
	opacity: 0;
}

.right-bar--open-btn span {
	background: #fff;
	border-radius: 50%;
	position: relative;
	height: 3px;
	margin: 3.5px 0;
	transition: .3s;
	cursor: pointer;
}

.right-bar--open-btn .m-1 {
	width: 50%;
}

.right-bar--open-btn .m-2 {
	width: 100%;
}

.right-bar--open-btn .m-3 {
	width: 70%;
}

.right-bar--open-btn:hover .m-1 {
	width: 100%;
}

.right-bar--open-btn:hover .m-2 {
	width: 55%;
}

.right-bar--open-btn:hover .m-3 {
	width: 65%;
}

.right-bar {
	position: fixed;
	padding: 10px 16px 50px;
	top: 0;
	height: 100vh;
	width: 80%;
	right: 0;
	transition: transform 0.6s, opacity 0.5s;
	transform: translateX(100%);
	will-change: transform;

	pointer-events: none;
	z-index: 102;
}

.open .right-bar {
	pointer-events: auto;
	transform: translateX(0);
}

.right-bar .right-bar--close {
	position: absolute;
	right: 2vw;
	top: 2vh;
	width: 38px;
	height: 38px;
	fill: #fff;
	transform: rotate(0deg) translateY(-50px);
	transition-delay: 0.45s;
	/* transition-property: translateY; */
	cursor: pointer;
}

.open .right-bar .right-bar--close {
	transform: rotate(0deg) translateY(0);
}

.open .right-bar .right-bar--close:hover {
	transform: scale(1.1) rotate(90deg);
	transition-delay: 0s;
}

.right-bar-scroll {
	overflow-x: auto;
	max-height: 100vh;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.right-bar-list {
	padding: 15vh 6px 50px 50px;
	padding-left: calc(0px + 50 * ((100vw - 320px) / 1080));
	margin-bottom: 20px;
}

.right-bar-list .right-bar--link {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	position: relative;
	margin-bottom: calc(20px + 16 * ((100vw - 320px) / 1080));
	left: 0;
	line-height: 1.2em;
	font-size: clamp(2.375rem, 2.031rem + 1.72vw, 3.75rem);
	font-weight: 700;
	white-space: nowrap;
	color: #f1f1f1;
	cursor: pointer;
	opacity: 0;
	transform: translateX(-20vw);
	transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1) 0.1s, opacity 0.5s ease 0.1s, left 0.3s ease 0s, color 0.3s ease 0s;
}

.right-bar--link svg {
	position: relative;
	width: 20px;
	height: 20px;
	fill: #fff;
	margin-right: 10px;
}

.open .right-bar-list .right-bar--link:hover {
	left: 5px;
	transition-delay: 0s !important;
}

.open .right-bar-list .right-bar--link {
	transform: translateX(0);
	opacity: 1;
}

.open .right-bar-list .right-bar--link:nth-child(2) {
	transition-delay: 0.18s;
}

.open .right-bar-list .right-bar--link:nth-child(3) {
	transition-delay: 0.24s;
}

.open .right-bar-list .right-bar--link:nth-child(4) {
	transition-delay: 0.32s;
}

.open .right-bar-list .right-bar--link:nth-child(5) {
	transition-delay: 0.4s;
}

.open .right-bar-list .right-bar--link:nth-child(6) {
	transition-delay: 0.48s;
}

.open .right-bar-list .right-bar--link:nth-child(7) {
	transition-delay: 0.56s;
}

.right-bar--admin {
	position: relative;
	padding: 5px 20px;
	margin-bottom: 50px;
}

.right-bar--admin a {
	display: block;
	position: relative;
	font-size: 1rem;
	font-weight: bold;
	color: rgb(167, 125, 122);
	transition: 0.3s;
}

.right-bar--admin a b {
	color: rgb(167, 125, 122);
}

.right-bar--admin a:hover {
	color: #fff;
}

.main {
	background: #edc9c4;
}

.main-page {
	background: #151515;
	padding-top: 52px;
	min-height: 100vh;
}

section {
	padding: 30px 0
}

.page-title {
	display: flex;
	align-items: center;
	margin-bottom: clamp(2.5rem, 1.875rem + 3.13vw, 5rem);
	padding: 0 5vw;
	gap: 20px 30px;
	flex-wrap: nowrap;
	justify-content: center;
}

.page-title--text {
	position: relative;
	flex: 0 1 auto;
	font-size: clamp(2.25rem, 1.25rem + 5vw, 6.25rem);
	font-weight: bold;
	line-height: 1;
}

.title-element {
	position: relative;
	flex: 0 0 60px;
	height: auto;
	width: 90px;
	right: 0;
	animation: rotateAnim 6s linear infinite;
}

/*** Main section video ***/
.section-main--content {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	z-index: 2;
}

.section-video {
	display: flex;
	justify-content: center;
	align-items: center;
	bottom: 0;
	position: relative;
	padding: 0;
	height: 85vh;
	line-height: 0;
	background-size: cover;
	overflow: hidden;
}

.section-video:before {
	content: '';
	background: url(/project/tripfoundation/video/video-shad.png) repeat;
	background-color: rgba(0, 0, 0, .5);
	position: absolute;
	width: 100%;
	top: 0;
	bottom: 0;
	z-index: 1;
}

.section-video .main-video {
	position: relative;
	top: 0;
	left: 0;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	object-fit: cover;
}

.section-video--content {
	position: absolute;
	display: flex;
	flex-flow: column nowrap;
	justify-content: flex-end;
	align-items: center;
	width: 100%;
	height: 100%;
	z-index: 2;
}

.sv-play--btn {
	background: rgba(0, 0, 0, 0.4);
	border-radius: 50%;
	position: absolute;
	height: 68px;
	width: 68px;
	transition: .3s;
	cursor: pointer;
}

.sv-play--btn:hover {
	transform: scale(0.2);
}

.sv-play--btn .i-play {
	position: relative;
	width: 100%;
	height: 100%;
	transition: .2s;
}

.sv-play--btn:hover .i-play {
	transform: rotate(120deg) scale(1.2);
}

.section-video--title {
	display: inline-block;
	position: absolute;
	padding: 0 20px;
	top: 30%;
	margin: 0 0 16vh;
	font-size: calc(22px + 2 * ((100vw - 320px) / 1080));
	font-weight: bold;
	text-align: center;
	color: #f4f4f4;
	line-height: 1.8;
	z-index: 2
}

.section-video--title #i_logo {
	fill: none;
	position: relative;
	width: 450px;
	max-width: 75vw;
}

.go-to-btn {
	position: relative;
	height: 55px;
	margin: 0 auto 80px;
}

.section-video--soc {
	display: flex;
	flex-flow: column nowrap;
	justify-content: space-between;
	top: auto;
	bottom: 5vh;
	left: 2vw;
	position: absolute;
	width: 30px;
	height: 80px;
	z-index: 2;
}

.section-video--soc:after {
	content: '';
	position: absolute;
	width: 80px;
	height: 1.2px;
	background: #fff;
	transform: rotate(90deg);
	left: -27px;
	top: -70px;
}

.section-video--soc svg {
	margin: 0;
	width: 25px;
	height: 25px;
	fill: #f4f4f4;
}

.section-video--content .scroll-mouse {
	position: relative;
	top: auto;
	bottom: 8vh;
	left: auto;
}

/*** END Main section One ***/

/*** Section Gallery ***/
.section-gallery {
	background: #130f26;
	padding: 80px 20px;
	min-height: 600px;
}

.section-gallery--content {
	position: relative;
	max-width: 1400px;
	margin: 0 auto;
}

.section-gallery--title {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	max-width: 75%;
	margin: 0 auto 60px;
	color: #fff;
	font-size: calc(26px + 10 * ((100vw - 320px) / 1080));
	font-weight: bold;
	line-height: 1.2;
}

.section-gallery--title .i-arrow-big {
	position: relative;
	margin-left: 15px;
	width: 108px;
	height: 15px;
	fill: #fff;
}

.section-gallery--wrap {
	position: relative;
	width: 100%;
	margin: 0 auto;
	counter-reset: img-qtw;
	background: #151515;
	padding: 1em;
}

.grid:after {
	content: '';
	display: block;
	clear: both;
}


.gallery-img {
	background: #1a1919;
	border-radius: 8px;
	box-shadow: 0 2px 15px -5px #000;
	display: inline-block;
	position: relative;
	overflow: hidden;
	transition: .4s;
	height: 100%;
	width: 100%;
	margin: 0 4px 8px;
	float: left;
}

.gallery-img:before {
	content: '';
	background: url(/project/tripfoundation/icon/Tripfoundation_logo.svg) no-repeat center center;
	position: absolute;
	top: 30%;
	left: calc(50% - 50px);
	height: 100px;
	width: 100px;
}

.gallery-img.height-img {
	max-height: auto;
	max-width: 225px;
}

.gallery-img.width-img {
	max-height: auto;
	max-width: 300px;
}


.gallery-img:after {
	counter-increment: img-qtw;
	content: counter(img-qtw);
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: .8em;
	color: #e8b744;
	z-index: 2;
}

.section-gallery--wrap .gallery-img:hover {
	transform: scale(1.04);
	box-shadow: 0 2px 20px -3px #000;
}

@media (max-width: 960px) {
	.section-gallery {
		padding: 60px 15px;
	}
}


/*** Section Works ***/
.section-works {
	background: #151515;
	min-height: 80vh;
}

.section-works--content {
	align-items: flex-start;
	position: relative;
	max-width: 100%;
	min-height: 100vh;
}

/* Filters Panel */
.section-works--filters {
	padding: 15px 0;
	color: white;
}

.section-works--filters .filter-item {
	display: inline-block;
	border-radius: 30px;
	margin: 12px 0;
	position: relative;
	padding: 2px 35px;
	font-size: 1rem;
	font-size: calc(14px + 2 * ((100vw - 320px) / 1080));
	font-weight: bold;
	cursor: pointer;
	transition: 0.3s;
}

.section-works--filters .filter-item:hover {
	transform: scale(1.15);
}

.section-works--filters .filter-item.active {
	background: #55551a;
}

.sw-item {
	flex: 0 1 50%;
	background: #151515;
	position: relative;
	overflow: hidden;
	opacity: 1;
}

.sw-item img {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.sw-item.preload-img {
	padding-bottom: 28%;
}

.sw-item--title {
	position: absolute;
	left: 4vw;
	top: 15%;
	font-size: calc(20px + 16 * ((100vw - 320px) / 1080));
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
	z-index: 3;
}

.sw-item--hover {
	background: rgba(0, 0, 0, 0.65);
	position: absolute;
	width: 100%;
	height: 101%;
	opacity: 0;
	transition: 0.6s;
	z-index: 2;
}

.sw-item:hover .sw-item--hover {
	opacity: 1;
}

.sw-item--play {
	position: absolute;
	left: 4vw;
	bottom: 15%;
	cursor: pointer;
	color: #fff;
	font-size: 1.1rem;
	font-weight: 600;
	text-transform: uppercase;
	transition: 0.3s;
}

.sw-item--play:hover {
	transform: scale(1.1);
}

.sw-item--play .i-play {
	position: relative;
	margin-right: 10px;
	width: 55px;
	height: 55px;
	fill: #fff;
	vertical-align: middle;
}

.show-more {
	background: #fdfe01;
	text-align: center;
}

.show-more .show-more--btn {
	margin: 30px 0 40px;
	position: relative;
	color: #fefe01;
	cursor: pointer;
	transition: .3s;
}

.show-more .show-more--btn:hover {
	transform: scale(1.08);
}

/*** END Section Works ***/

/* Page Art */
.page-art--content .page-title {
	position: relative;
	width: calc(240px + 610 * ((100vw - 320px) / 1080));
	margin-top: calc(30px + 70 * ((100vw - 320px) / 1080));
	margin-bottom: calc(30px + 70 * ((100vw - 320px) / 1080));
}

.page-art--content .title-element {
	top: calc(10px + 60 * ((100vw - 320px) / 1080));
	right: calc(-10px + 20 * ((100vw - 320px) / 1080));
}

/* About Us */
.page-about--content {
	position: relative;
}

.page-about--content .page-title {
	position: relative;
	width: calc(280px + 650 * ((100vw - 320px) / 1080));
	margin-top: calc(30px + 70 * ((100vw - 320px) / 1080));
	margin-bottom: calc(30px + 70 * ((100vw - 320px) / 1080));
}

.page-about--content .title-element {
	top: -20px;
	right: calc(-80px + -10 * ((100vw - 320px) / 1080));
}

.page-about--section-two .page-about--content {
	align-items: center;
	justify-content: center;
	position: relative;
	padding-bottom: 15vh;
	min-height: 50vh;
}

.page-about--section-two .page-about-text {
	flex: 0 1 50%;
	position: relative;
}

.page-about--section-two .page-about-text p {
	position: relative;
	line-height: 2;
	font-size: calc(18px + 0 * ((100vw - 320px) / 1080));
	font-weight: 700;
}

.page-about-image {
	text-align: center;
	position: relative;
	flex: 0 1 50%;
}

.page-about-image img {
	width: 100%;
	max-width: 500px;
}

/* END About Us */

.mail-link {
	position: relative;
	display: inline-block;
	transition: 0.3s;
	font-size: calc(18px + 12 * ((100vw - 320px) / 1080));
	font-weight: bold;
	margin: 20px 0 0;
}

.mail-link:hover {
	transform: scale(1.06);
}

/* Page Contacts */
.page-contacts--section {
	padding: clamp(3.125rem, 2.344rem + 3.91vw, 6.25rem) 0;
	min-height: 70vh;
}

.page-content {
	min-height: 70vh;
	column-gap: 20px;
}

.page-contacts--data {
	flex: 0 1 48%;
	max-width: 420px;
}

.page-contacts--address .i-location {
	position: relative;
	margin-left: 20px;
	width: 28px;
	height: 28px;
	transition: 0.5s;
}

.page-contacts--address:hover .i-location {
	transform: scale(1.2);
}

.page-contacts--map {
	flex: 0 1 48%;
}

.page-contacts--element .popup--map {
	background: #000;
	height: 999px;
	max-height: 420px;
	margin: 0 0 2em;
	padding: 10px;
}

.page-contacts--section-two .soc-btn {
	position: relative;
	padding: 0 2vw;
	margin: 0 auto 50px;
	max-width: 1400px;
}

.page-contacts--section-two .soc-btn .soc-btn--wrap {
	width: 25px;
}

.page-contacts--section-two .soc-btn .soc-btn--wrap .i-soc {
	width: 100%;
	height: 35px;
}

/* Page Order accepted */
.page--order-accepted {
	position: relative;
	margin: 0 0 150px;
}

/* Scroll Animation */
.anim_items {
	transform: translate(0, 30%);
	opacity: 0;
	transition: 1.2s ease-in-out 0s;
}

.anim_items.anim_bottom {
	transform: translate(0, 30%);
}

.anim_items.anim_left {
	transform: translate(-30%, 0);
}

.anim_items.anim_right {
	transform: translate(30%, 0);
}

.anim_items.animation {
	opacity: 1;
	transform: translate(0, 0);
}

/* END Scroll Animation */

/* Footer */
footer {
	background: #141414;
}

.footer-content {
	padding: 15px 2vw;
	max-width: 100%;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
	overflow: hidden;
}

.footer-logo {
	flex: 0 0 70px;
	position: relative;
	line-height: 0;
	animation: rotateAnim 6s linear infinite;
}

@keyframes rotateAnim {
	0% {
		transform: rotateY(0deg);
	}

	100% {
		transform: rotateY(360deg);
	}
}

.footer-logo svg {
	width: 100%;
	fill: #d86cff;
}

.footer-copiright {
	font-size: 12px;
	color: #fff;
	text-align: center;
	line-height: 2.2;
}

.footer-soc {
	flex: 0 0 90px;
}

.footer-soc a {
	display: block;
	position: relative;
	width: 30px;
	height: 30px;
	transition: .5s;
	cursor: pointer;
}

.footer-soc svg {
	width: 100%;
	height: 100%;
	fill: #fff;
}

.footer-soc a:hover {
	transform: scale(1.15);
}

.footer-soc a:nth-child(n+2) {
	top: 3px;
	width: 24px;
	height: 24px;
}

/* END Footer */

/* Preload img */
.b-lazy {
	opacity: 0;
	transition: opacity 0.5s ease 0.2s, transform 0.8s ease 0s;
	transform: scale(1);
}

.b-lazy.b-loaded {
	opacity: 1;
	transform: scale(1);
}

.pr-img {
	position: relative;
	min-height: 350px;
	font-size: 10px;
	text-align: center;
	line-height: 10;
	z-index: 1;
}

.preload-img:after {
	content: "";
	background: linear-gradient(100deg, #4a4a2d 30%, #6a6a2e 50%, #4a4a2d 70%);
	background-size: 400%;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	animation: preload-img 1.5s ease-in-out infinite;
	z-index: 0;
}

@keyframes preload-img {
	0% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0 50%;
	}
}

/* END Preload img */
/* Icons */
.i-close {
	transform: rotate(0);
	transition: 0.5s;
	cursor: pointer;
	width: 100%;
	fill: #fff;
}

.i-close:hover {
	transform: rotate(90deg);
}

/* END Icons */
/* Icon move Up */
.icon-move {
	animation-name: icon-up;
	animation-duration: 1.5s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-timing-function: ease-in-out;
	transition: all 0.5s ease;
}

@keyframes icon-up {
	0% {
		transform: translate3d(0, -4px, 0);
	}

	to {
		transform: translate3d(0, 4px, 0);
	}
}

.loader-spin {
	animation: spin 10s linear 0s infinite normal;
}

/* Css load */
@keyframes spin {
	100% {
		transform: rotate(360deg);
	}
}

/* END Css load */

/* Mobile Css */
@media (max-width: 759px) {
	.right-bar {
		width: 100%;
	}

	.section-one--content {
		flex-wrap: wrap;
		padding: 0;
	}

	.section-one--preview {
		flex: 1 1 100%;
		order: 1;
	}

	.section-one--text {
		flex: 1 1 100%;
		order: 2;
		padding-right: 0;
		padding: 0 15px;
	}

	.page-contacts--section-two .page-contacts--content {
		padding: 0 4vw 50px;
	}

	.page-contacts--section-two .page-contacts--text {
		flex: 1 1 100%;
		order: 2;
		padding: 0;
	}

	.page-contacts--section-two .page-contacts--element {
		flex: 1 1 100%;
		order: 1;
		max-width: 80%;
		margin: 0 auto;
	}

	.page-careers--section-two .page-careers--text {
		flex: 0 1 70%;
	}

	.page-careers--section-two .page-careers-element {
		position: absolute;
		left: 50%;
		top: 0;
		z-index: 1;
		width: 100%;
		padding: 0 4vw 50px;
	}

	.go-to-btn {
		display: none;
	}
}

@media (max-width: 690px) {

	.sw-item {
		flex: 1 1 100%;
	}

	.sw-item.preload-img {
		padding-bottom: 56%;
	}

	.main-video--soc {
		bottom: 6vh;
		left: 20px;
	}

	.section-works--filters {
		padding: 10px 0;
	}

	.section-works--filters .filter-item {
		margin: 10px 0;
	}

	.page-contacts--section-two .page-contacts--element {
		max-width: 60%;
	}

	.page-contacts--section-two .soc-btn {
		display: none;
	}

	/* About US */
	.page-about--section-two .page-about-text {
		flex: 0 1 100%;
		padding: 0 5px;
		max-width: 100%;
		margin-bottom: 50px;
	}

	.page-about-image {
		flex: 0 1 80%;
	}

	.page-about--section-two .page-about-element {
		flex: 0 1 100%;
		padding: 20px 15px 0;
	}

	.footer-content {
		flex-flow: row wrap;
		padding: 10px 4vw;
	}

	.footer-copiright {
		flex: 1 1 100%;
		order: 3;
		margin: 35px 0 0;
		font-size: 10px;
	}
}

@media (max-width: 501px) {
	.section-main--title {
		text-align: left;
		top: 22%;
	}
}

@media (max-width: 480px) {
	.page-title {
		padding: 0 5vw;
		flex-wrap: wrap;
	}
}

@media (max-width: 460px) {
	.right-bar {
		width: 96%;
	}

	.header-content .logo-wrap {
		max-width: 180px;
	}

	.sw-item {
		flex: 0 1 100%;
	}

	.main-section-one {
		padding: 40px 0 40px;
	}

	.page-contacts--section-two .page-contacts--content {
		padding: 0 4vw 50px;
	}

	.page-contacts--section-two .page-contacts--element {
		max-width: 50%;
	}
}

/*** Section Zion ***/
.section-matrix {
	padding: 0;
}

.section-matrix--content {
	background: #000;
	position: relative;
	overflow: hidden;
}

.section-matrix--content .section-matrix--element {
	position: absolute;
	z-index: 1;
}

.section-matrix--content:first-child-child {
	position: relative;
	z-index: 2;
}

.section-matrix--content:last-child {
	position: relative;
	z-index: 0;
}

/* Player */
.sound {
	display: flex;
	position: absolute;
	padding: 15px 10px;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	top: -33px;
	right: -330px;
	transform: scale(0);
	transition: all 0.3s ease-in;
	transform: matrix(1, 0, 0, 1, 0, 0);
	opacity: 1;
}

.sound:hover {
	background: rgba(190, 189, 189, .2);
}

.sound.active-opac,
.sound:hover {
	background: rgba(0, 0, 0, 0.55);
	opacity: 1;
}

@media (max-width: 730px) {
	.sound.active {
		top: 30px;
		left: -13px;
		right: auto;
	}
}


.sound .bars {
	width: 16px;
	height: 16px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-right: 10px;
}

.sound .bars li {
	width: 2px;
	height: 2px;
	display: inline-block;
	position: relative;
	transition: all 0.2s ease-in;
}

.active .bars li:nth-child(1) {
	height: 10px;
}

.active .bars li:nth-child(2) {
	height: 14px;
}

.active .bars li:nth-child(3) {
	height: 8px;
}

.active .bars li:nth-child(4) {
	height: 6px;
}

.bars li:nth-child(1):before {
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}

.bars li:nth-child(2):before {
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
}

.bars li:nth-child(3):before {
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
}

.bars li:nth-child(4):before {
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
}

.bars li:before {
	content: '';
	display: inline-block;
	background: #fff;
	position: absolute;
	bottom: 0;
	min-height: 2px;
	transition: all 0.3s ease-out;
	width: 100%;
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-direction: alternate;
	animation-direction: alternate;
}

.active .bars li:before {
	-webkit-animation-name: volume;
	animation-name: volume;
}

@-webkit-keyframes volume {
	0% {
		height: 0%
	}

	100% {
		height: 100%
	}
}

@keyframes volume {
	0% {
		height: 0%
	}

	100% {
		height: 100%
	}
}

/* Audio Player_2 */
.sound-player {
	padding: relative;
	width: 100%;
	max-width: 300px;
	min-width: 250px;
	height: 35px;
}

.audio-player--box {
	top: -22px;
	left: -35px;
	position: relative;
}

/* Scroll mouse icon */
.scroll-mouse {
	background: #4e5559 -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, transparent), color-stop(50%, #fff), to(#fff));
	background: #4e5559 linear-gradient(transparent 0%, transparent 50%, #fff 50%, #fff 100%);
	background-size: auto;
	position: absolute;
	width: 32px;
	height: 53px;
	left: calc(50% - 16px);
	bottom: 5%;
	border-radius: 100px;
	background-size: 100% 200%;
	-webkit-animation: colorSlide 10s linear infinite, nudgeMouse 10s ease-out infinite;
	animation: colorSlide 10s linear infinite, nudgeMouse 10s ease-out infinite;
	z-index: 2;
}

.scroll-mouse:before {
	content: '';
	width: 30px;
	height: 51px;
	background-color: #edc9c4;
	border-radius: 100px;
}

.scroll-mouse:after {
	content: '';
	background-color: #151515;
	width: 6px;
	height: 20px;
	border-radius: 5px;
	-webkit-animation: trackBallSlide 10s linear infinite;
	animation: trackBallSlide 10s linear infinite;
}

.scroll-mouse:before,
.scroll-mouse:after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}

@-webkit-keyframes colorSlide {
	0% {
		background-position: 0 100%
	}

	20% {
		background-position: 0 0
	}

	21% {
		background-color: #4e5559
	}

	29.99% {
		background-color: #fff;
		background-position: 0 0
	}

	30% {
		background-color: #4e5559;
		background-position: 0 100%
	}

	50% {
		background-position: 0 0
	}

	51% {
		background-color: #4e5559
	}

	59% {
		background-color: #fff;
		background-position: 0 0
	}

	60% {
		background-color: #4e5559;
		background-position: 0 100%
	}

	80% {
		background-position: 0 0
	}

	81% {
		background-color: #4e5559
	}

	90%,
	100% {
		background-color: #fff
	}
}

@keyframes colorSlide {
	0% {
		background-position: 0 100%
	}

	20% {
		background-position: 0 0
	}

	21% {
		background-color: #4e5559
	}

	29.99% {
		background-color: #fff;
		background-position: 0 0
	}

	30% {
		background-color: #4e5559;
		background-position: 0 100%
	}

	50% {
		background-position: 0 0
	}

	51% {
		background-color: #4e5559
	}

	59% {
		background-color: #fff;
		background-position: 0 0
	}

	60% {
		background-color: #4e5559;
		background-position: 0 100%
	}

	80% {
		background-position: 0 0
	}

	81% {
		background-color: #4e5559
	}

	90%,
	100% {
		background-color: #fff
	}
}

@-webkit-keyframes trackBallSlide {
	0% {
		opacity: 1;
		-webkit-transform: scale(1) translateY(-10px);
		transform: scale(1) translateY(-10px)
	}

	6% {
		opacity: 1;
		-webkit-transform: scale(0.9) translateY(5px);
		transform: scale(0.9) translateY(5px)
	}

	14% {
		opacity: 0;
		-webkit-transform: scale(0.4) translateY(40px);
		transform: scale(0.4) translateY(40px)
	}

	15%,
	19% {
		opacity: 0;
		-webkit-transform: scale(0.4) translateY(-10px);
		transform: scale(0.4) translateY(-10px)
	}

	28%,
	29.99% {
		opacity: 1;
		-webkit-transform: scale(1) translateY(-10px);
		transform: scale(1) translateY(-10px)
	}

	30% {
		opacity: 1;
		-webkit-transform: scale(1) translateY(-10px);
		transform: scale(1) translateY(-10px)
	}

	36% {
		opacity: 1;
		-webkit-transform: scale(0.9) translateY(5px);
		transform: scale(0.9) translateY(5px)
	}

	44% {
		opacity: 0;
		-webkit-transform: scale(0.4) translateY(40px);
		transform: scale(0.4) translateY(40px)
	}

	45%,
	49% {
		opacity: 0;
		-webkit-transform: scale(0.4) translateY(-10px);
		transform: scale(0.4) translateY(-10px)
	}

	58%,
	59.99% {
		opacity: 1;
		-webkit-transform: scale(1) translateY(-10px);
		transform: scale(1) translateY(-10px)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale(1) translateY(-10px);
		transform: scale(1) translateY(-10px)
	}

	66% {
		opacity: 1;
		-webkit-transform: scale(0.9) translateY(5px);
		transform: scale(0.9) translateY(5px)
	}

	74% {
		opacity: 0;
		-webkit-transform: scale(0.4) translateY(40px);
		transform: scale(0.4) translateY(40px)
	}

	75%,
	79% {
		opacity: 0;
		-webkit-transform: scale(0.4) translateY(-10px);
		transform: scale(0.4) translateY(-10px)
	}

	88%,
	100% {
		opacity: 1;
		-webkit-transform: scale(1) translateY(-10px);
		transform: scale(1) translateY(-10px)
	}
}

@keyframes trackBallSlide {
	0% {
		opacity: 1;
		-webkit-transform: scale(1) translateY(-10px);
		transform: scale(1) translateY(-10px)
	}

	6% {
		opacity: 1;
		-webkit-transform: scale(0.9) translateY(5px);
		transform: scale(0.9) translateY(5px)
	}

	14% {
		opacity: 0;
		-webkit-transform: scale(0.4) translateY(40px);
		transform: scale(0.4) translateY(40px)
	}

	15%,
	19% {
		opacity: 0;
		-webkit-transform: scale(0.4) translateY(-10px);
		transform: scale(0.4) translateY(-10px)
	}

	28%,
	29.99% {
		opacity: 1;
		-webkit-transform: scale(1) translateY(-10px);
		transform: scale(1) translateY(-10px)
	}

	30% {
		opacity: 1;
		-webkit-transform: scale(1) translateY(-10px);
		transform: scale(1) translateY(-10px)
	}

	36% {
		opacity: 1;
		-webkit-transform: scale(0.9) translateY(5px);
		transform: scale(0.9) translateY(5px)
	}

	44% {
		opacity: 0;
		-webkit-transform: scale(0.4) translateY(40px);
		transform: scale(0.4) translateY(40px)
	}

	45%,
	49% {
		opacity: 0;
		-webkit-transform: scale(0.4) translateY(-10px);
		transform: scale(0.4) translateY(-10px)
	}

	58%,
	59.99% {
		opacity: 1;
		-webkit-transform: scale(1) translateY(-10px);
		transform: scale(1) translateY(-10px)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale(1) translateY(-10px);
		transform: scale(1) translateY(-10px)
	}

	66% {
		opacity: 1;
		-webkit-transform: scale(0.9) translateY(5px);
		transform: scale(0.9) translateY(5px)
	}

	74% {
		opacity: 0;
		-webkit-transform: scale(0.4) translateY(40px);
		transform: scale(0.4) translateY(40px)
	}

	75%,
	79% {
		opacity: 0;
		-webkit-transform: scale(0.4) translateY(-10px);
		transform: scale(0.4) translateY(-10px)
	}

	88%,
	100% {
		opacity: 1;
		-webkit-transform: scale(1) translateY(-10px);
		transform: scale(1) translateY(-10px)
	}
}

@-webkit-keyframes nudgeMouse {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}

	20% {
		-webkit-transform: translateY(8px);
		transform: translateY(8px)
	}

	30% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}

	50% {
		-webkit-transform: translateY(8px);
		transform: translateY(8px)
	}

	60% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}

	80% {
		-webkit-transform: translateY(8px);
		transform: translateY(8px)
	}

	90% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@keyframes nudgeMouse {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}

	20% {
		-webkit-transform: translateY(8px);
		transform: translateY(8px)
	}

	30% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}

	50% {
		-webkit-transform: translateY(8px);
		transform: translateY(8px)
	}

	60% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}

	80% {
		-webkit-transform: translateY(8px);
		transform: translateY(8px)
	}

	90% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

/* END Scroll mouse Icon */


/* Page Art */
.page-art {
	background: #141414;
	padding: 0;
}

.page-art--content {
	background: url(/project/tripfoundation/images/page-art-bg.jpg) no-repeat center center/100%;
	background-attachment: fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	position: relative;
	min-height: 100vh;
}

.tr-art.black.page-art--content {
	background: url(/project/tripfoundation/images/page-art-bg_black.jpg) no-repeat center center/100%;
}

.bozik-art.page-art--content {
	background: url(/project/tripfoundation/images/gallery-bozik/bozik-art-bg.jpg) no-repeat center center/100%;
}

.page-art--content:after {
	content: '';
	background: rgba(0, 0, 0, 0.6);
	bottom: 0;
	top: 0;
	position: absolute;
	left: 0;
	right: 0;
	width: 100%;
	height: 100vh;
}

.bozik-art.page-art--content:after {
	background: inherit;
}

.bozik-art .page-art--title {
	position: absolute;
	top: 45vh;
	left: 8vw;
	z-index: 1;
	max-width: 310px;
}

.bozik-art .page-art--title p {
	font-size: calc(45px + 16 * ((100vw - 320px) / (1280 - 320)));
	font-weight: bold;
	color: #e647be;
	line-height: .9;
	margin-bottom: 25px;

}

.bozik-art .page-art--title .to-gallery--btn {
	transition: background-color .2s;
	position: relative;
	padding: 10px 25px;
}

.to-gallery--btn:hover {
	background: rgba(8, 27, 55, 0.75);
}

.page-art--title .to-gallery--btn svg {
	position: relative;
	width: 14px;
	height: 14px;
	top: 3px;
	left: 10px;
	fill: #fff;
	transition: .2s;
}

.to-gallery--btn:hover svg {
	transform: translateX(4px);
}

/* END Page Art */

/* Coming soon */
.coming-soon {
	align-items: center;
	justify-content: center;
	min-height: 40vh;
}

.coming-soon h1 {
	margin: 0 auto 50px;
	flex: 100%;
	font-size: clamp(1.25rem, 0.625rem + 3.13vw, 3.75rem);
	text-align: center;
}

.coming-soon img {
	position: relative;
	width: 280px;
	height: auto;
}