@font-face {
	font-family: 'Montserrat';
	src: local('Montserrat'),
		url('../fonts/montserrat-400.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat';
	src: local(''),
		url('../fonts/montserrat-500.woff2') format('woff2');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat';
	src: local(''),
		url('../fonts/montserrat-600.woff2') format('woff2');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

*:focus-visible {
	outline: 2px solid var(--main-300);
}

*::selection {
	background-color: #b2d0f2;
	color: var(--dark-500);
}

:root {
	--main-500: #182E76;
	--main-400: #2359A6;
	--main-300: #6393DE;
	--main-200: #E4EFFF;
	--main-50: #F0F6FF;

	--dark-500: #25333E;
	--dark-400: #636569;
	--dark-100: #DDE5F0;

	--white: #FFF;
}

html {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	scroll-padding-top: 100px;
}

body {
	background-color: var(--white);
	color: var(--dark-500);
	line-height: 1.5em;
	position: relative;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
h5,
h6 {
	line-height: 1.2em;
	font-weight: 600;
}

h1,
.h1 {
	font-size: 28px;
	margin: 32px 0 20px;
}

h2,
.h2 {
	font-size: 22px;
	margin: 64px 0 20px;
}

h3,
.h3 {
	font-size: 20px;
	margin: 40px 0 20px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 18px;
}

.text-22 {
	font-size: 22px;
}

.text-16 {
	font-size: 16px;
}

.text-15 {
	font-size: 15px;
}

.text-14 {
	font-size: 14px;
	line-height: 1.46em;
}

a {
	font-size: 15px;
	line-height: inherit;
	text-decoration: none;
	cursor: pointer;
	color: var(--main-400);
	font-weight: 500;
}

img {
	display: block;
	width: 100%;
	height: auto;
}

li {
	list-style: none;
}

dd,
dt {
	font-size: 15px;
}

.bg-blue {
	background-color: #E4EFFF;
}

strong,
small,
em,
address,
q {
	font-weight: inherit;
	line-height: inherit;
	font-size: inherit;
	font-style: normal;
	color: inherit;
	quotes: none;
}

sup {
	font-size: 0.6em;
	display: inline-block;
	margin-top: -0.6em;
}

button {
	border: none;
	outline: none;
	background: unset;
	font-family: inherit;
	font-size: inherit;
	cursor: pointer;
	user-select: none;
}

input,
select,
textarea {
	display: block;
	width: 100%;
	border: none;
	outline: none;
	resize: none;
	font-family: inherit;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type="number"] {
	-moz-appearance: textfield;
}

.inner {
	width: 100%;
	margin: 0 auto;
	/* max-width: 1224px; */
	max-width: 1100px;
	padding: 0px 24px;
	/* padding: 40px 24px 48px; */
}

.hidden {
	display: none !important;
}

.hide-2 {
	overflow: hidden;
	position: absolute;
	height: 1px;
	width: 1px;
	bottom: 0;
	pointer-events: none;
}

/* INPUTS */
input.left {
	position: absolute;
	width: 1px;
	height: 1px;
	bottom: 0;
	left: 0;
}

.input-1 {
	height: 50px;
	padding: 12px 20px 13px;
	font-size: 16px;
	color: var(--dark-500);
	background: var(--main-50);
	border: 1px solid var(--dark-100);
	transition: border-color 300ms;
}

.input-1:hover {
	border-color: #b6bdc6 !important;
	outline: none !important;
}

.input-1:focus-visible {
	border: 2px solid var(--main-300) !important;
	outline: none !important;
}

.input-1:-webkit-autofill {
	box-shadow: 0 0 0px 1000px var(--main-50) inset !important;
}

.input-1.error,
.custom-radio.error+label::before,
.custom-checkbox.error+label::before {
	border: 1px solid #d10101 !important;
	background: #ffd7e6;
	outline: none !important;
}

.inp-anim {
	position: relative;
}

.inp-anim input::placeholder {
	opacity: 0;
}

.inp-anim input::-moz-placeholder {
	opacity: 0;
}

.inp-anim input {
	padding: 18px 20px 4px !important;
}

.inp-anim .placeholder {
	font-size: 13px;
	line-height: 24px;
	color: #606B76;
	position: absolute;
	top: 12px;
	left: 20px;
	pointer-events: none;
	transition: left 300ms, transform 300ms, font-size 300ms, font-weight 300ms;
}

.inp-anim input:focus~.placeholder,
.inp-anim input:not(:placeholder-shown)~.placeholder {
	transform: translateY(-9px);
	font-size: 12px;
	font-weight: 400;
}

.inp-anim+.inp-anim {
	margin-top: 18px;
}

/* CUSTOM CHECKBOX, RADIO */
.custom-checkbox,
.custom-radio {
	width: 1px;
	height: 0;
	overflow: hidden;
	position: absolute;
}

.custom-checkbox:focus-visible,
.custom-radio:focus-visible {
	outline: none;
}

.custom-checkbox:focus-visible:not(.btn-disabled)+label::before,
.custom-radio:focus-visible:not(.btn-disabled)+label::before {
	outline: 2px solid var(--main-300);
	outline-offset: -1px;
}

.custom-checkbox+label,
.custom-radio+label {
	position: relative;
	padding-left: 36px;
	display: block;
	color: inherit;
	font-size: 14px;
	line-height: 24px;
	cursor: pointer;
	user-select: none;
}

.custom-radio+label::before {
	content: '';
	position: absolute;
	top: 2px;
	left: 0;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 2px solid var(--dark-100);
	background-color: var(--white);
}

.custom-radio:checked+label::before {
	background-image: url("data:image/svg+xml,%0A%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='10' fill='white'/%3E%3Ccircle cx='10' cy='10' r='5' fill='%232359A6'/%3E%3C/svg%3E%0A");
	background-position: center;
}

.custom-checkbox+label::before {
	content: '';
	position: absolute;
	top: 2px;
	left: 0;
	width: 18px;
	height: 18px;
	border: 2px solid var(--dark-100);
	background-color: var(--white);
}

.custom-checkbox:checked+label::before {
	background-image: url("data:image/svg+xml,%0A%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='20' height='20' fill='white'/%3E%3Cpath d='M13.913 6.95654L8.53257 12.8261L6.08691 10.1581' stroke='%230158A6' stroke-width='1.73913' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
	background-position: center;
	background-size: 22px;
}

.custom-checkbox.btn-disabled+label::before,
.custom-radio.btn-disabled+label::before {
	background-color: #E9E9E9 !important;
	border-color: #DADADA !important;
	cursor: not-allowed;
	pointer-events: none;
}

.custom-checkbox.btn-disabled+label,
.custom-radio.btn-disabled+label {
	pointer-events: none;
}

.radio-btns {
	margin-bottom: 24px;
}

.radio-btns>*+* {
	margin-top: 8px;
}

/* BUTTONS */
.btn-small,
.btn-medium,
.btn-big {
	display: block;
	width: 100%;
	text-align: center;
	user-select: none;
	cursor: pointer;
}

.btn-medium {
	height: 50px;
	font-size: 16px;
	font-weight: 600;
	line-height: 20px;
	padding: 13px 22px;
}

.btn-1 {
	background-color: var(--main-400);
	color: var(--white);
	transition: background 300ms;
}

.btn-1:hover {
	background-color: var(--main-500);
}

.btn-1:focus-visible {
	outline: 10px solid var(--main-200);
	outline-offset: -1px;
}

.btn-disabled {
	cursor: not-allowed;
	pointer-events: none;
	opacity: 0.3;
}

.btn-disabled:hover,
.btn-disabled:active,
.btn-disabled:focus-visible {
	outline: none !important;
}

/* COMMON */
body>.all {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.noscroll {
	overflow: hidden;
}

.flex {
	display: flex;
}

.w100 {
	width: 100%;
}

.main-clr {
	color: var(--main-400);
}

.grey-clr {
	color: var(--dark-400);
}

.weight-600 {
	font-weight: 600;
}

.pointer {
	cursor: pointer;
}

.marg-btm-32 {
	margin-bottom: 32px;
}

.marg-btm-24 {
	margin-bottom: 24px;
}

.spacing-16>*+* {
	margin-top: 16px;
}

.scroll {
	overflow-x: scroll;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.scroll::-webkit-scrollbar {
	display: none;
	opacity: 0;
}


/* GALLERY RADIOS*/
.gall-wrapper {
	position: relative;
}

.slider-track {
	overflow: hidden;
}

.gall-thumb {
	cursor: pointer;
	user-select: none;
	width: 100%;
	margin-top: 10px;
	border: 1px solid var(--dark-100);
	z-index: 100;
}

.gall-thumb+.gall-thumb {
	margin-left: 10px;
}

.gall-thumb>img {
	pointer-events: none;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.gall-btn {
	position: absolute;
	opacity: 0;
	height: 0;
	bottom: 0;
	z-index: 9;
}

.gall-img {
	opacity: 0;
	position: absolute;
	z-index: -1;
	inset: 0;
	transition: opacity 0.15s ease-in-out;
	content-visibility: auto;
	pointer-events: none;
	user-select: none;
}

.gall-btn:checked+.gall-img,
.gall-img.active {
	opacity: 1 !important;
	position: relative;
	z-index: 99;
	pointer-events: unset;
	border: 1px solid var(--dark-100);
}

.gall-thumb.active {
	outline: 3px solid var(--main-300) !important;
	outline-offset: -3px;
}

/* MODAL WINDOW / GALLERY */
.modal-window,
.gallery-wrapper {
	display: flex;
	opacity: 0;
	visibility: hidden;
	transition: opacity 300ms ease-in-out;
	position: fixed;
	inset: 0;
	min-width: 100%;
	width: 100%;
	min-height: 100%;
	min-height: 100vh;
	max-height: 100vh;
	height: 100%;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

.modal-window.active,
.gallery-wrapper.active {
	opacity: 1;
	visibility: visible;
}

.close-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 36px;
	height: 36px;
	padding: 2px;
	/* z-index: 20; */
	z-index: 110;
	background: #262626;
	background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 25 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.25 6.25L19.5565 19.5565' stroke='%23C4C4C4' stroke-width='1.5' stroke-linejoin='round' /%3E%3Cpath d='M6.25 19.5566L19.5565 6.25019' stroke='%23C4C4C4' stroke-width='1.5' stroke-linejoin='round' /%3E%3C/svg%3E");
	background-position: center;
}

.modal-bg {
	position: absolute;
	inset: 0;
	min-width: 100%;
	min-height: 100%;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
	/* background: #060606; */
	background: #0c0c0c;
}

.gallery-wrapper aside {
	width: 100%;
	height: 100%;
	flex-direction: column;
	justify-content: center;
	padding: 8px;
	z-index: 2;
}

.gallery-imgs {
	overflow: hidden;
	position: relative;
}

.gallery-imgs img {
	object-fit: contain;
	height: 100%;
	border: none !important;
}

.gallery-wrapper .gall-thumb {
	border: none !important;
}

/* .img-btns {
	flex-wrap: nowrap;
    overflow-x: scroll;
} */

.loading-gif {
	width: 60px !important;
	height: 60px !important;
	position: absolute;
	margin: auto;
	object-fit: unset !important;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	z-index: 2 !important;
}

.gallery-btns {
	margin-top: 12px;
	min-height: 45px;
	flex-wrap: nowrap;
}

.gallery-btns>*+* {
	margin-left: 12px;
}

.gallery-btns>* {
	max-width: 80px;
	min-width: 80px;
	/* height: 45px; */
}

.gallery-btns img {
	object-fit: cover;
	height: 100%;
}

.active {
	display: block;
}

/* ZAYAVKA & ERR404 */
.zayavka-prinyata,
.report-page {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	/* position: absolute; */
	/* position: fixed; */
	inset: 0;
	padding: 0 30px;
	background-color: #fff;
	z-index: 900;
	max-height: 100vh;
	min-height: 100%;
	height: 100%;
}

.zayavka-prinyata>*,
.report-page>* {
	text-align: center;
}

.zayavka-prinyata p {
	margin-top: 18px;
	line-height: 1.5em;
	font-size: 18px;
}

.zayavka-prinyata .btn-medium {
	margin-top: 36px;
}

.report-page h2 {
	font-size: 32px;
	position: relative;
	margin: 0px 0 20px;
}

.report-page .box-1 a {
	margin-right: 30px;
}

.fly {
	position: absolute;
	font-size: 80px;
	color: var(--dark-100);
	top: -72px;
	left: 48px;
	z-index: -1;
	font-family: sans-serif;
	font-weight: 800;
	user-select: none;
}


/* BREADCRUMBS */
.breadcrumbs nav ol li {
	display: inline-block;
}

.breadcrumbs nav ol li a {
	color: var(--dark-400);
	font-size: 14px;
}

.breadcrumbs nav ol li:last-child a {
	color: var(--dark-400);
	font-weight: 600;
}

.breadcrumbs {
	margin-top: 20px;
	display: none;
}


/* HEADER */
.primary-header {
	border-bottom: 1px solid #D0D4DB;
	max-height: 73px;
	padding-top: 0;
    background-color: #fff;
    transition: background 300ms, padding 200ms;
    z-index: 500;
    position: sticky;
    width: 100%;
    top: 0;
}

.primary-header .inner {
	justify-content: space-between;
	align-items: center;
	/* margin: 20px auto; */
}

.primary-header .logo,
.primary-footer .logo {
	display: block;
	width: 165px;
	margin: 20px 0;
}

.menu-tel-wrapper {
    display: flex;
	flex-direction: row;
}

.menu-tel-wrapper .tel-mobile {
	display: none;
}

.menu-tel-wrapper a {
	margin-right: 32px;
	display: none;
}

.tel-wrap {
	display: flex;
    align-items: center;
}

.tel-link-m {
	/* display: none !important; */
	margin-right: 16px !important;
}

.mobile-menu li {
	margin-right: 24px;
	font-weight: 500;
	margin-bottom: 20px;
	display: block;
}
.mobile-menu .last-li {
	margin-bottom: 72px;
}

.mobile-menu .tel-mobile {
	margin-top: 12px;
    color: var(--dark-500);
	display: block;
}

.mobile-menu a {
	/* display: none; */
	font-size: 18px;
}

.primary-header nav .tel-mobile {
	margin-top: 56px;
}

nav {
	display: flex;
    /* margin: 20px 0; */
}

.mobile-menu.active {
    right: 0;
    opacity: 1;
    transform: scale(1, 1);
}

.mobile-menu.active > * {
    visibility: visible;
    opacity: 1;
    transition-delay: 150ms;
    transition-duration: 250ms;
}

.mobile-menu {
    display: flex;
    justify-content: center;
    position: absolute;
    top: 65px;
    bottom: 0;
    right: 0;
    height: 100%;
	min-height: calc(100% - 65px);
    max-height: calc(100% - 65px);
    width: 100%;
    /* max-width: 400px; */
    background-color: #fff;
    border-left: 1px solid var(--dark-100);
    padding: 80px 50px;
    z-index: 499;
    transform-origin: right;
	transform: scale(0, 1);
}


.mobile-menu > * {
    opacity: 0;
    visibility: hidden;
}

.mobile-menu ul {
    font-size: 18px;
    height: max-content;
    position: sticky;
    top: 120px;
	transition-duration: 250ms;
}

.mobile-menu.transition {
    transition: transform 400ms;
}

.logo svg {
	display: block;
	width: 100%;
	height: auto;
}

.tel-mobile {
	/* display: none; */
}

.burger {
    display: block;
}

.burger {
    /* display: none; */
    height: 14px;
    width: 27px;
    border-radius: 0px !important;
    outline-offset: 2px;
    position: relative;
    z-index: 9999;
    align-self: center;
}

.burger span {
    display: block;
    background-color: var(--dark-500);
    position: relative;
    height: 2px;
    width: 27px;
    margin: 0 auto;
    transition: transform 250ms;
}

.burger.active span {
    background-color: transparent !important;
}

.burger span::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 0;
    background-color: inherit;
    height: 2px;
    width: 27px;
    transition: transform 250ms;
}

.burger.active span:before {
    transform: rotate(45deg) translate(6px, 6px);
    background-color: var(--dark-500);
}

.burger span::after {
    content: '';
    position: absolute;
    top: 7px;
    left: 0;
    background-color: inherit;
    height: 2px;
    width: 27px;
    transition: transform 250ms;
}

.burger.active span:after {
    transform: rotate(-45deg) translate(4px,-4px);
    background-color: var(--dark-500);
}

/* VIDEO */

.box1-about iframe {
	width: 100%;
    height: 100%;
	max-width: 100%;
    min-height: 200px;
}

.box2-about span {
	font-size: 17px;
	font-weight: 600;
	margin: 24px 0 16px;
	display: inline-block;
}

.box2-about li:last-child {
	margin-bottom: 0px !important;
}

/* FOOTER */

.top {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}

.primary-footer .logo {
	display: block;
	width: 200px;
	margin: 20px 0;
}

.contacts {
	max-width: 180px;
}

.contacts a,
.logo-address p {
	display: block;
	color: var(--dark-100);
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: 500;
}

.contacts a:hover {
	color: var(--white);
	transition: color 300ms;
}

.contacts a:last-child {
	margin-bottom: 0;
}

.logo-address p {
	color: var(--white);
	margin-bottom: 12px;
	max-width: 180px;
}

.primary-footer {
	background-color: var(--main-500);
	padding: 48px 0;
	margin-top: 80px;

	/* border: 10px solid teal; */
}

.primary-footer .logo {
	margin: 0 0 40px 0;
}

.primary-footer .tel-mobile {
	display: block;
}

.modal-form-section {
	border: 1px solid #6393DE;
	margin: 0 auto;
	max-width: 448px;
}

.modal-form-section .inner {
	padding: 40px 64px;
}

.modal-form-section h2 {
	margin: 0 0 28px;
}

/* SECTION GALLERY AND PRODUCT DESCRIPTION */

.description-wrapper {
	margin-top: 24px;
	display: flex;
	flex-direction: column;
}

.desc-text-wrapper {
	width: 50%;
	padding: 42px 42px;
	font-size: 14px;
	display: none;
	background-color: #f5f9ff;
	box-sizing: border-box;
}

.desc-text-wrapper p {
	margin-bottom: 24px;
 }
 
.desc-text-wrapper p:last-child {
	margin-bottom: 0;
}


/* INFO SECTION */
.info-section dt {
	font-weight: 600;
	margin-bottom: 4px;
}

.info-section dd {
	background-color: var(--main-200);
	padding: 8px 12px;
}

.info-section dl>*+* {
	margin-top: 20px;
}


/* TYPE-DESCRIPTION SECTION */
.accordion_header {
	font-size: 16px;
	text-decoration: 1px underline;
	margin-top: 24px;
	display: block;
}

.type-description1 li, .box2-about li {
	font-size: 15px;
	margin: 0 0 14px 20px !important;
	list-style: square;
	list-style-type: disc;
}

.type-description1 li:last-child {
	margin-bottom: 0 !important;
}


/* GALLERY-ALL */
.gall-wrapper .gall-thumb {
	min-width: 96px !important;
}


/* FORM */
.form-section .inner {
	padding: 48px 24px 48px;
}

.form-section {
	background: var(--main-300);
	margin: 56px -24px 0;
}

.form-section h2 {
	margin-top: 0;
	color: var(--white);
	font-size: 24px;
}

.form-section label {
	color: var(--white);
}

.form-section .inp-anim:last-child {
	margin-bottom: 24px;
}

.gallery-btns {
	/* justify-content: center; */
	/* min-height: 50px; */
	min-height: 72px;
}

.form-section textarea {
	margin: 18px 0;
	height: 50px;
	padding: 16px 20px 8px;
	font-size: 13px;
	line-height: 1.3em;
	color: var(--dark-500);
	background: var(--main-50);
	border: 1px solid var(--dark-100);
	/* transition: border-color 300ms; */
	height: 100px;
}


/* ARROWS */
.arrow-down {
	width: 28px;
	height: 28px;
	margin-left: 8px;
}

.accordion_header::after {
	flex-shrink: 0;
	width: 1.25rem;
	height: 1.25rem;
	margin-left: auto;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-size: 1.25rem;
	content: "";
}

.accordion_item_show .accordion_header::after {
	transform: rotate(-180deg);
}

.accordion_item:not(.accordion_item_show) .accordion_body {
	display: none;
}


/* MEDIA */
@media (min-width: 360px) {
	.inner {
		padding-left: 30px;
		padding-right: 30px;
	}


	/* FORM-SECTION */
	.form-section {
		background: var(--main-300);
		margin: 56px -30px 0;
	}

	.form-section .inner {
		padding: 40px 40px 48px;
	}


	/* FOOTER */
	.primary-footer .logo {
		margin: 0 0 32px 0;
	}

	.logo-address p {
		max-width: fit-content;
		margin-bottom: 24px;
	}
}

@media (min-width: 375px) {
	.menu-tel-wrapper a {
		margin-right: 24px;
		display: flex;
	}
	
}

@media (min-width: 412px) {
	.box1-about iframe {
		min-height: 250px;
	}

	.box2-about span {
		margin: 32px 0 16px;
	}
}

@media (min-width: 460px) {
	
	.menu-tel-wrapper a {
		margin-right: 32px;
		display: flex;
		/* color: #182E76; */
	}

	.box1-about iframe {
		min-height: 300px;
	}
}

@media (min-width: 480px) {
	.tel-link-m {
		display: none !important;
		/* margin-right: 24px !important; */
	}
	
	.menu-tel-wrapper .tel-mobile {
		display: flex;
	}
}

@media (min-width: 580px) {

	/* GALLERY */
	.gallery-wrapper aside {
		/* padding: 14px; */
		padding: 40px;
	}

	/* HEADER */
	.primary-header .tel {
		margin-right: 0;
		padding: 15px 20px;
	}

	.mobile-menu {
    display: flex;
    justify-content: center;
    position: absolute;
    top: 64px;
    bottom: 0;
    right: 0;
    height: 100%;
	min-height: calc(100% - 65px);
    max-height: calc(100% - 65px);
    width: 100%;
    max-width: 400px;
    background-color: #fff;
    border-left: 1px solid var(--dark-100);
    padding: 80px 50px;
    z-index: 499;
    transform-origin: right;
	transform: scale(0, 1);
}

.box1-about iframe {
		min-height: 350px;
	}

	/* FOOTER */
	.primary-footer {
		padding: 42px 0;
	}

	/* .primary-footer .logo {
		width: 143px;
		height: auto;
	} */

}

@media (min-width: 680px) {
	.box1-about iframe {
		min-height: 450px;
	}
}

@media (min-width: 780px) {

	/* HEADER */
	.desktop-nav>*+* {
		margin-left: 28px;
	}

	.desktop-nav>* {
		display: block;
		font-size: 14px;
		line-height: 19px;
	}

	/* GALLERY */
	/* .gallery-btns {
		/* justify-content: center; */
	/* min-height: 50px;
		min-height: 72px;
	} */

	.gallery-btns>* {
		min-width: 90px;
		max-width: 90px;
		height: 62px;
	}
}


@media (min-width: 880px) {
	.inner {
		/* padding-left: 52px;
		padding-right: 52px; */
	}

	/* FOOTER */
	/* .primary-footer .text-grey {font-size: 11px;}
	.primary-footer .logo {
            width: 158px;
            height: 39px;
      } */

	/* VIDEO */
	.about-box-wrap {
		display: flex;
		flex-direction: row-reverse;
		margin-top: 32px;
	}

	.box1-about {
		width: 50%;
	}

	.box1-about iframe {
		min-height: 300px;
		height: unset;
	}

	.box2-about {
		width: 50%;
    	margin-right: 60px;
    	/* max-width: 450px; */
	}

	.box2-about span {
	    margin: 0px 0 16px;
	}
}

@media (min-width: 1080px) {
	/* .inner {
		padding-left: 92px;
		padding-right: 92px;
	} */

	.noscroll {
		margin-right: 17px;
	}

	/* GALLERY */
	.gallery-wrapper aside {
		/* padding: 40px; */
	}

	.gallery-btns {
		overflow-x: unset;
	}
}