/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');

/* VARIABLES */
:root {
	/* Fonts & Typography */
	--font-family: 'Montserrat', sans-serif;

	--font-weight: 400;
	--letter-spacing: normal;

	--font-size: 1.125rem;
	--line-height: 1.75rem;

	--font-size-sm: .875rem;
	--line-height-sm: 1.375rem;

	--font-size-lg: 1.5rem;
	--line-height-lg: 2.188rem;
	/* Titles */
	--h1-font-size: 5rem;
	--h1-line-height: 5.625rem;

	--h2-font-size: 3.125rem;
	--h2-line-height: 3.75rem;

	--h3-font-size: 3rem;
	--h3-line-height: 3.5rem;

	--h4-font-size: 2.5rem;
	--h4-line-height: 3.048rem;

	--h5-font-size: 2rem;
	--h5-line-height: 2.25rem;

	--h6-font-size: 1.125rem;
	--h6-line-height: 1.371rem;

	--title-font-weight: 400;
	/* Colors */
	--text: #595959;
	--title: #1C1C1C;
	--white: #fff;
	--light: #E1E1E1;
	--light-transparent: rgba(255, 255, 255, .3);
	--blue: #59ABAA;
	--blueDark: #4E9C9B;
	--grey: #D4E9E9;
	--dark: var(--title);
	--red: #D45151;
	/* Other */
	/* Buttons */
	--btn-font-size: 1rem;
	--btn-font-size-sm: 1.219rem;
	--btn-font-weight: 600;
	--btn-line-height: 1.5rem;
	--btn-line-height-sm: 1rem;
	--btn-letter-spacing: .1rem;
	--btn-border-width: 2px;
	--btn-border-radius: 6.25rem;
	/* Gaps & spaces */
	--header-height: 100px;
	--section-padding: 10.6rem 0;
	--section-padding-sm: 7.5rem 0;
	--section-padding-xs: 5rem 0;
	--content-margin: 1rem;
	--content-margin-sm: calc(var(--content-margin) / 1.2);
	--content-margin-xs: calc(var(--content-margin) / 1.5);
	/* Popups */
	--popup-bg: rgba(25, 25, 25, .84);
	/* Transitions */
	--duration: .68s;
	--delay: var(--duration);
	--easing: cubic-bezier(.14, .72, .18, .84);
}

/* NORMALIZE */
html {
	flexoverflow-y: scroll;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

body * {
	-webkit-text-size-adjust: none;
	outline: none;
}

.clear {
	clear: both;
	overflow: hidden;
	height: 0;
	font-size: 0;
	display: block;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
	outline: none;
}

input,
textarea,
select {
	font-weight: 400;
	appearance: none;
	border-radius: 0;
	background: none;
	border: none;
	margin: 0;
	width: 100%;
	font-family: 'Arial';
}

textarea {
	display: block;
	resize: none;
	overflow: auto;
}

select::-ms-expand {
	display: none;
}

input[type="submit"]:not(.sbj-disable-button),
input[type="file"] {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	opacity: 0;
	border: none;
	cursor: pointer;
	z-index: 1;
}

a,
a:link,
a:visited,
a:active,
a:hover {
	cursor: pointer;
	text-decoration: none;
	outline: none;
}

body {
	font-weight: 400;
	font-size: 14px;
	line-height: 1;
	font-family: 'Arial';
}

b,
strong {
	font-weight: 700;
}

ul,
ol {
	list-style: none;
}

a {
	color: inherit;
}

html {
	box-sizing: border-box;
	-ms-overflow-style: scrollbar;
}

*,
::after,
::before {
	box-sizing: border-box;
}

/* BOOTSTRAP (ONLY GRID) */
.container {
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}

@media (min-width: 576px) {

	.container {
		max-width: 540px;
	}
}

@media (min-width: 768px) {

	.container {
		max-width: 720px;
	}
}

@media (min-width: 992px) {

	.container {
		max-width: 960px;
	}
}

@media (min-width: 1200px) {

	.container {
		max-width: 1510px;
	}
}

.container-fluid {
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}

.row {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
}

.no-gutters {
	margin-right: 0;
	margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*=col-] {
	padding-right: 0;
	padding-left: 0;
}

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
	position: relative;
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
}

.col {
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-ms-flex-positive: 1;
	flex-grow: 1;
	max-width: 100%;
}

.col-auto {
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: auto;
	max-width: 100%;
}

.col-1 {
	-ms-flex: 0 0 8.333333%;
	flex: 0 0 8.333333%;
	max-width: 8.333333%;
}

.col-2 {
	-ms-flex: 0 0 16.666667%;
	flex: 0 0 16.666667%;
	max-width: 16.666667%;
}

.col-3 {
	-ms-flex: 0 0 25%;
	flex: 0 0 25%;
	max-width: 25%;
}

.col-4 {
	-ms-flex: 0 0 33.333333%;
	flex: 0 0 33.333333%;
	max-width: 33.333333%;
}

.col-5 {
	-ms-flex: 0 0 41.666667%;
	flex: 0 0 41.666667%;
	max-width: 41.666667%;
}

.col-6 {
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
}

.col-7 {
	-ms-flex: 0 0 58.333333%;
	flex: 0 0 58.333333%;
	max-width: 58.333333%;
}

.col-8 {
	-ms-flex: 0 0 66.666667%;
	flex: 0 0 66.666667%;
	max-width: 66.666667%;
}

.col-9 {
	-ms-flex: 0 0 75%;
	flex: 0 0 75%;
	max-width: 75%;
}

.col-10 {
	-ms-flex: 0 0 83.333333%;
	flex: 0 0 83.333333%;
	max-width: 83.333333%;
}

.col-11 {
	-ms-flex: 0 0 91.666667%;
	flex: 0 0 91.666667%;
	max-width: 91.666667%;
}

.col-12 {
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
}

.offset-1 {
	margin-left: 8.333333%;
}

.offset-2 {
	margin-left: 16.666667%;
}

.offset-3 {
	margin-left: 25%;
}

.offset-4 {
	margin-left: 33.333333%;
}

.offset-5 {
	margin-left: 41.666667%;
}

.offset-6 {
	margin-left: 50%;
}

.offset-7 {
	margin-left: 58.333333%;
}

.offset-8 {
	margin-left: 66.666667%;
}

.offset-9 {
	margin-left: 75%;
}

.offset-10 {
	margin-left: 83.333333%;
}

.offset-11 {
	margin-left: 91.666667%;
}

@media (min-width: 768px) {

	.col-sm {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-ms-flex-positive: 1;
		flex-grow: 1;
		max-width: 100%;
	}

	.col-sm-auto {
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
		max-width: 100%;
	}

	.col-sm-1 {
		-ms-flex: 0 0 8.333333%;
		flex: 0 0 8.333333%;
		max-width: 8.333333%;
	}

	.col-sm-2 {
		-ms-flex: 0 0 16.666667%;
		flex: 0 0 16.666667%;
		max-width: 16.666667%;
	}

	.col-sm-3 {
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}

	.col-sm-4 {
		-ms-flex: 0 0 33.333333%;
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}

	.col-sm-5 {
		-ms-flex: 0 0 41.666667%;
		flex: 0 0 41.666667%;
		max-width: 41.666667%;
	}

	.col-sm-6 {
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}

	.col-sm-7 {
		-ms-flex: 0 0 58.333333%;
		flex: 0 0 58.333333%;
		max-width: 58.333333%;
	}

	.col-sm-8 {
		-ms-flex: 0 0 66.666667%;
		flex: 0 0 66.666667%;
		max-width: 66.666667%;
	}

	.col-sm-9 {
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%;
	}

	.col-sm-10 {
		-ms-flex: 0 0 83.333333%;
		flex: 0 0 83.333333%;
		max-width: 83.333333%;
	}

	.col-sm-11 {
		-ms-flex: 0 0 91.666667%;
		flex: 0 0 91.666667%;
		max-width: 91.666667%;
	}

	.col-sm-12 {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}

	.offset-sm-0 {
		margin-left: 0;
	}

	.offset-sm-1 {
		margin-left: 8.333333%;
	}

	.offset-sm-2 {
		margin-left: 16.666667%;
	}

	.offset-sm-3 {
		margin-left: 25%;
	}

	.offset-sm-4 {
		margin-left: 33.333333%;
	}

	.offset-sm-5 {
		margin-left: 41.666667%;
	}

	.offset-sm-6 {
		margin-left: 50%;
	}

	.offset-sm-7 {
		margin-left: 58.333333%;
	}

	.offset-sm-8 {
		margin-left: 66.666667%;
	}

	.offset-sm-9 {
		margin-left: 75%;
	}

	.offset-sm-10 {
		margin-left: 83.333333%;
	}

	.offset-sm-11 {
		margin-left: 91.666667%;
	}
}

@media (min-width: 992px) {

	.col-md {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-ms-flex-positive: 1;
		flex-grow: 1;
		max-width: 100%;
	}

	.col-md-auto {
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
		max-width: 100%;
	}

	.col-md-1 {
		-ms-flex: 0 0 8.333333%;
		flex: 0 0 8.333333%;
		max-width: 8.333333%;
	}

	.col-md-2 {
		-ms-flex: 0 0 16.666667%;
		flex: 0 0 16.666667%;
		max-width: 16.666667%;
	}

	.col-md-3 {
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}

	.col-md-4 {
		-ms-flex: 0 0 33.333333%;
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}

	.col-md-5 {
		-ms-flex: 0 0 41.666667%;
		flex: 0 0 41.666667%;
		max-width: 41.666667%;
	}

	.col-md-6 {
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}

	.col-md-7 {
		-ms-flex: 0 0 58.333333%;
		flex: 0 0 58.333333%;
		max-width: 58.333333%;
	}

	.col-md-8 {
		-ms-flex: 0 0 66.666667%;
		flex: 0 0 66.666667%;
		max-width: 66.666667%;
	}

	.col-md-9 {
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%;
	}

	.col-md-10 {
		-ms-flex: 0 0 83.333333%;
		flex: 0 0 83.333333%;
		max-width: 83.333333%;
	}

	.col-md-11 {
		-ms-flex: 0 0 91.666667%;
		flex: 0 0 91.666667%;
		max-width: 91.666667%;
	}

	.col-md-12 {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}

	.offset-md-0 {
		margin-left: 0;
	}

	.offset-md-1 {
		margin-left: 8.333333%;
	}

	.offset-md-2 {
		margin-left: 16.666667%;
	}

	.offset-md-3 {
		margin-left: 25%;
	}

	.offset-md-4 {
		margin-left: 33.333333%;
	}

	.offset-md-5 {
		margin-left: 41.666667%;
	}

	.offset-md-6 {
		margin-left: 50%;
	}
	.offset-md-7 {
		margin-left: 58.333333%;
	}

	.offset-md-8 {
		margin-left: 66.666667%;
	}

	.offset-md-9 {
		margin-left: 75%;
	}

	.offset-md-10 {
		margin-left: 83.333333%;
	}

	.offset-md-11 {
		margin-left: 91.666667%;
	}
}

@media (min-width: 1200px) {

	.col-lg {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-ms-flex-positive: 1;
		flex-grow: 1;
		max-width: 100%;
	}

	.col-lg-auto {
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
		max-width: 100%;
	}

	.col-lg-1 {
		-ms-flex: 0 0 8.333333%;
		flex: 0 0 8.333333%;
		max-width: 8.333333%;
	}

	.col-lg-2 {
		-ms-flex: 0 0 16.666667%;
		flex: 0 0 16.666667%;
		max-width: 16.666667%;
	}

	.col-lg-3 {
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}

	.col-lg-4 {
		-ms-flex: 0 0 33.333333%;
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}

	.col-lg-5 {
		-ms-flex: 0 0 41.666667%;
		flex: 0 0 41.666667%;
		max-width: 41.666667%;
	}

	.col-lg-6 {
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}

	.col-lg-7 {
		-ms-flex: 0 0 58.333333%;
		flex: 0 0 58.333333%;
		max-width: 58.333333%;
	}

	.col-lg-8 {
		-ms-flex: 0 0 66.666667%;
		flex: 0 0 66.666667%;
		max-width: 66.666667%;
	}

	.col-lg-9 {
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%;
	}

	.col-lg-10 {
		-ms-flex: 0 0 83.333333%;
		flex: 0 0 83.333333%;
		max-width: 83.333333%;
	}

	.col-lg-11 {
		-ms-flex: 0 0 91.666667%;
		flex: 0 0 91.666667%;
		max-width: 91.666667%;
	}

	.col-lg-12 {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}

	.offset-lg-0 {
		margin-left: 0;
	}

	.offset-lg-1 {
		margin-left: 8.333333%;
	}

	.offset-lg-2 {
		margin-left: 16.666667%;
	}

	.offset-lg-3 {
		margin-left: 25%;
	}

	.offset-lg-4 {
		margin-left: 33.333333%;
	}

	.offset-lg-5 {
		margin-left: 41.666667%;
	}

	.offset-lg-6 {
		margin-left: 50%;
	}

	.offset-lg-7 {
		margin-left: 58.333333%;
	}

	.offset-lg-8 {
		margin-left: 66.666667%;
	}

	.offset-lg-9 {
		margin-left: 75%;
	}

	.offset-lg-10 {
		margin-left: 83.333333%;
	}

	.offset-lg-11 {
		margin-left: 91.666667%;
	}
}

@media (min-width: 1600px) {

	.col-xl {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-ms-flex-positive: 1;
		flex-grow: 1;
		max-width: 100%;
	}

	.col-xl-auto {
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
		max-width: 100%;
	}

	.col-xl-1 {
		-ms-flex: 0 0 8.333333%;
		flex: 0 0 8.333333%;
		max-width: 8.333333%;
	}

	.col-xl-2 {
		-ms-flex: 0 0 16.666667%;
		flex: 0 0 16.666667%;
		max-width: 16.666667%;
	}

	.col-xl-3 {
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}

	.col-xl-4 {
		-ms-flex: 0 0 33.333333%;
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}

	.col-xl-5 {
		-ms-flex: 0 0 41.666667%;
		flex: 0 0 41.666667%;
		max-width: 41.666667%;
	}

	.col-xl-6 {
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}

	.col-xl-7 {
		-ms-flex: 0 0 58.333333%;
		flex: 0 0 58.333333%;
		max-width: 58.333333%;
	}

	.col-xl-8 {
		-ms-flex: 0 0 66.666667%;
		flex: 0 0 66.666667%;
		max-width: 66.666667%;
	}

	.col-xl-9 {
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%;
	}

	.col-xl-10 {
		-ms-flex: 0 0 83.333333%;
		flex: 0 0 83.333333%;
		max-width: 83.333333%;
	}

	.col-xl-11 {
		-ms-flex: 0 0 91.666667%;
		flex: 0 0 91.666667%;
		max-width: 91.666667%;
	}

	.col-xl-12 {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}

	.offset-xl-0 {
		margin-left: 0;
	}

	.offset-xl-1 {
		margin-left: 8.333333%;
	}

	.offset-xl-2 {
		margin-left: 16.666667%;
	}

	.offset-xl-3 {
		margin-left: 25%;
	}

	.offset-xl-4 {
		margin-left: 33.333333%;
	}

	.offset-xl-5 {
		margin-left: 41.666667%;
	}

	.offset-xl-6 {
		margin-left: 50%;
	}

	.offset-xl-7 {
		margin-left: 58.333333%;
	}

	.offset-xl-8 {
		margin-left: 66.666667%;
	}

	.offset-xl-9 {
		margin-left: 75%;
	}

	.offset-xl-10 {
		margin-left: 83.333333%;
	}

	.offset-xl-11 {
		margin-left: 91.666667%;
	}
}

/* TOP PRIORITY STYLES */
::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

::-webkit-scrollbar-track {
	background-color: var(--text);
}

::-webkit-scrollbar-thumb {
	background-color: var(--blueDark);
}

.splide__track {
	will-change: transform;
}

nav {
	will-change: transform, opacity;
}

.btn:before,
.btn:after,
.splide__arrow:before {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

body,
.content {
	color: var(--text);
	font-size: var(--font-size);
	font-family: var(--font-family);
	font-weight: var(--font-weight);
	line-height: var(--line-height);
	letter-spacing: var(--letter-spacing);
}

body,
main,
section,
.section,
footer,
.img,
.relative {
	position: relative;
}

.static {
	position: static;
}

.banner .img.full-size,
.pattern,
#about:after,
.slider-progress {
	pointer-events: none;
}

#menu-btn,
.btn,
.accordion-title {
	cursor: pointer;
}

footer ul,
.copyright,
.contacts,
.review {
	font-size: 0;
	line-height: 0;
}

main {
	min-height: 100vh;
}

section,
.section {
	padding: var(--section-padding);
}

section.padding-top-0,
.section.padding-top-0 {
	padding-top: 0;
}

section.padding-bottom-0,
.section.padding-bottom-0 {
	padding-bottom: 0;
}

.overflow-hidden {
	overflow: hidden;
}

.full-size,
.splide__track.full-size {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	position: absolute;
}

.bg-light {
	background-color: var(--light);
}

.bg-dark {
	background-color: var(--dark);
}

.bg-blue {
	background-color: var(--blue);
}

.align-items-center {
	align-items: center;
}

.justify-content-center {
	justify-content: center;
}

.justify-content-between {
	justify-content: space-between;
}

.img img {
	width: 100%;
	height: auto;
	display: block;
	max-width: 100%;
}

.img.cover img,
.img.contain img {
	height: auto;
}

.img.cover img {
	object-fit: cover;
}

.img.contain img {
	object-fit: contain;
}

.img.border-radius {
	border-radius: 1.5rem;
}

.contacts {
	display: block;
}

.contact {
	align-items: center;
	display: inline-flex;
}

.contact:not(:last-child) {
	margin-bottom: 1.2rem;
}

.contact .img {
	width: 22px;
	height: 22px;
	margin-right: 1rem;
}

.contact .img svg {
	width: 100%;
	height: 100%;
	fill: var(--white);
}

.contact a,
.contact span {
	font-size: 1rem;
	font-weight: 500;
	color: var(--white);
	white-space: nowrap;
	line-height: 1.219rem;
	letter-spacing: .01rem;
	text-transform: uppercase;
}

.contact.tel a {
	font-size: 1.125rem;
	line-height: 1.371rem;
}

hr,
.hr {
	width: 100%;
	border: none;
	display: block;
	border-top: 1px solid var(--light);
}

@media (max-width: 1599px) {

	section,
	.section {
		padding: var(--section-padding-sm);
	}
}

@media (max-width: 991px) {

	body,
	.content {
		font-size: var(--font-size-sm);
		line-height: var(--line-height-sm);
	}

	section,
	.section {
		padding: var(--section-padding-xs);
	}
}

@media (max-width: 767px) {

	.without-banner {
		padding-top: 5rem;
	}
}

/* TYPOGRAPHY */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
.subtitle,
.content {
	margin-bottom: var(--content-margin);
}

.content:last-child,
.content > p,
ul li,
ol li {
	margin-bottom: 0;
}

.content > *:not(:last-child) {
	margin-bottom: var(--content-margin-sm);
}

.light,
.light h1,
.light .h1,
.light h2,
.light .h2,
.light h3,
.light .h3,
.light h4,
.light .h4,
.light h5,
.light .h5,
.light h6,
.light .h6,
h1.light,
.h1.light,
h2.light,
.h2.light,
h3.light,
.h3.light,
h4.light,
.h4.light,
h5.light,
.h5.light,
h6.light,
.h6.light,
.subtitle.light,
.content.light,
.banner .content.light {
	color: var(--white);
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	color: var(--title);
	font-weight: var(--title-font-weight);
}

h1,
.h1 {
	letter-spacing: .1rem;
	font-size: var(--h1-font-size);
	line-height: var(--h1-line-height);
}

h2,
.h2 {
	font-size: var(--h2-font-size);
	line-height: var(--h2-line-height);
}

h3,
.h3 {
	font-size: var(--h3-font-size);
	line-height: var(--h3-line-height);
}

h4,
.h4 {
	font-size: var(--h4-font-size);
	line-height: var(--h4-line-height);
}

h5,
.h5 {
	font-size: var(--h5-font-size);
	line-height: var(--h5-line-height);
}

h6,
.h6 {
	font-size: var(--h6-font-size);
	line-height: var(--h6-line-height);
}

.subtitle {
	display: block;
	font-weight: 500;
	color: var(--blue);
	text-transform: uppercase;
	font-size: var(--font-size);
	line-height: var(--line-height-sm);
}

ul li,
ol li {
	position: relative;
	padding-left: 2rem;
}

ul li:not(:last-child),
ol li:not(:last-child) {
	margin-bottom: .5rem;
}

ul li:before,
ol li:before {
	top: 0;
	left: 0;
	font-weight: 600;
	color: var(--red);
	position: absolute;
	font-size: inherit;
	line-height: inherit;
}

ul li:before {
	content: '-';
	padding-left: .25rem;
}

ol {
	counter-reset: number;
}

ol li:before {
	counter-increment: number;
	content: counter(number)'.';
}

ol li:nth-child(1):before,
ol li:nth-child(2):before,
ol li:nth-child(3):before,
ol li:nth-child(4):before,
ol li:nth-child(5):before,
ol li:nth-child(6):before,
ol li:nth-child(7):before,
ol li:nth-child(8):before,
ol li:nth-child(9):before {
	content: '0' counter(number) '.'
}

b,
strong {
	font-size: 1rem;
	font-weight: 600;
	color: var(--title);
}

blockquote,
.blockquote {
	position: relative;
	padding-top: 3.5rem;
}

blockquote:before,
.blockquote:before {
	top: 0;
	left: 0;
	z-index: -1;
	content: '';
	width: 5.125rem;
	height: 5.125rem;
	position: absolute;
	background: center / contain url('../img/quote.svg') no-repeat;
}

.text-lg {
	font-size: var(--font-size-lg);
	line-height: var(--line-height-lg);
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.text-uppercase {
	text-transform: uppercase;
}

nav li,
.menu li {
	padding-left: 0;
}

nav li:before,
.menu li:before {
	display: none;
}

@media (max-width: 1599px) {

	h1,
	.h1,
	h2,
	.h2,
	h3,
	.h3,
	h4,
	.h4,
	h5,
	.h5,
	h6,
	.h6,
	.content {
		margin-bottom: var(--content-margin-sm);
	}

	h1,
	.h1 {
		font-size: calc(var(--h1-font-size) / 1.15);
		line-height: calc(var(--h1-line-height) / 1.15);
	}

	h2,
	.h2 {
		font-size: calc(var(--h2-font-size) / 1.15);
		line-height: calc(var(--h2-line-height) / 1.15);
	}

	h3,
	.h3 {
		font-size: calc(var(--h3-font-size) / 1.15);
		line-height: calc(var(--h3-line-height) / 1.15);
	}

	h4,
	.h4 {
		font-size: calc(var(--h4-font-size) / 1.15);
		line-height: calc(var(--h4-line-height) / 1.15);
	}

	h5,
	.h5 {
		font-size: calc(var(--h5-font-size) / 1.15);
		line-height: calc(var(--h5-line-height) / 1.15);
	}

	h6,
	.h6 {
		font-size: calc(var(--h6-font-size) / 1.15);
		line-height: calc(var(--h6-line-height) / 1.15);
	}

	blockquote,
	.blockquote {
		padding-top: 1.75rem;
	}

	blockquote:before,
	.blockquote:before {
		width: 4.2rem;
		height: 4.2rem;
	}
}

@media (max-width: 991px) {

	h1,
	.h1,
	h2,
	.h2,
	h3,
	.h3,
	h4,
	.h4,
	h5,
	.h5,
	h6,
	.h6,
	.content {
		margin-bottom: var(--content-margin-xs);
	}

	h1,
	.h1,
	h2,
	.h2,
	h3,
	.h3,
	h4,
	.h4,
	h5,
	.h5,
	h6,
	.h6 {
		font-weight: 500;
	}

	h1,
	.h1 {
		font-size: 1.75rem;
		line-height: 2.5rem;
		letter-spacing: -.025rem;
	}

	h2,
	.h2,
	h3,
	.h3 {
		font-size: 1.375rem;
	}

	h2,
	.h2 {
		line-height: 1.875rem;
	}

	h3,
	.h3 {
		line-height: 1.676rem;
	}

	h4,
	.h4 {
		font-size: 1.374rem;
		line-height: 1.575rem;
	}

	h5,
	.h5 {
		font-size: 1.372rem;
		line-height: 1.328rem;
	}

	h6,
	.h6 {
		font-size: 1rem;
		line-height: 1.219rem;
	}

	.subtitle {
		font-size: 1rem;
		line-height: 1.219rem;
	}

	blockquote,
	.blockquote {
		padding-top: 0;
	}

	blockquote:before,
	.blockquote:before {
		width: 3.25rem;
		height: 3.25rem;
	}

	b,
	strong {
		font-weight: 500;
		font-size: 1.125rem;
	}

	.text-lg {
		font-size: 1.125rem;
		line-height: 1.75rem;
	}
}

/* HEADER */
header .container,
nav,
nav ul {
	display: flex;
	align-items: center;
}

header {
	top: 0;
	left: 0;
	right: 0;
	z-index: 99;
	position: fixed;
	min-height: var(--header-height);
}

header:before {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
	position: absolute;
	backdrop-filter: blur(17px);
	background-color: #CECECE33;
	box-shadow: 0 2px 6px 0 #5C5C5C26;
}

header .container {
	height: 100%;
}

header .logo {
	width: 7.563rem;
}

nav li a,
footer li a {
	font-size: 1rem;
	font-weight: 500;
	color: var(--white);
	line-height: 1.219rem;
	letter-spacing: .005rem;
	text-transform: uppercase;
}

nav li:not(:last-child) {
	margin-bottom: 0;
	margin-right: 2.4rem;
}

nav .menu {
	margin-right: 2.6rem;
}

nav .contacts {
	margin-right: 2rem;
}

nav li.active a {
}

@media (min-width: 1200px) {

	nav li,
	nav li a {
		font-size: .875rem;
		color: var(--title);
		line-height: 1.067rem;
	}

	nav .contact:not(.tel),
	nav .copyright {
		display: none;
	}

	nav li:not(:last-child),
	nav .contact.tel {
		margin-bottom: 0;
	}

	nav .contact a {
		color: var(--title);
	}

	nav .contact .img svg {
		fill: var(--title);
	}

	nav {
		margin-left: auto;
	}

	nav ul {
		width: 100%;
		justify-content: space-between;
	}

	.menu-btn {
		display: none;
	}

	nav .contact a:hover,
	nav .menu a:hover {
		color: var(--blue);
	}

	a.logo:hover,
	footer .menu a:hover,
	footer .contact a:hover,
	.copyright a:hover {
		opacity: .76;
	}
}

@media (max-width: 1499px) {

	nav li:not(:last-child) {
		margin-right: 1rem;
	}

	nav .menu {
		margin-right: 2rem;
	}

	nav .contacts {
		margin-right: 1rem;
	}
}

@media (max-width: 1199px) {

	header .container {
		height: 6.25rem;
	}

	header .logo,
	footer .logo,
	footer div[class^="col-"]:last-child .logo {
		width: 6.25rem;
	}

	header .container > .btn {
		display: none;
	}

	.open-menu nav {
		opacity: 1;
		visibility: visible;
		transition: opacity var(--duration) var(--easing), visibility 0s;
	}

	header.open-menu .logo,
	header.open-menu .logo img {
		transform: none !important;
	}

	.open-menu .menu-btn:before,
	.open-menu .menu-btn:after {
		opacity: 1;
	}

	.open-menu .menu-btn img {
		opacity: 0;
		transform: rotate(180deg) scale(.5);
	}

	.menu-btn {
		width: 40px;
		height: 44px;
		margin-left: auto;
		position: relative;
	}

	.menu-btn img {
		width: 100%;
		height: 100%;
	}

	.menu-btn:before,
	.menu-btn:after {
		top: 21px;
		left: 8px;
		opacity: 0;
		width: 24px;
		height: 2px;
		content: '';
		position: absolute;
		background-color: var(--white);
	}

	.menu-btn:before {
		transform: rotate(45deg);
	}

	.menu-btn:after {
		transform: rotate(-45deg);
	}

	nav ul,
	nav {
		align-items: flex-start;
	}

	nav {
		top: 0;
		left: 0;
		right: 0;
		opacity: 0;
		height: 100vh;
		position: fixed;
		flex-wrap: wrap;
		visibility: hidden;
		align-content: flex-start;
		background-color: var(--blue);
		padding: 105px calc(50% - 465px);
		transition: opacity var(--duration) var(--easing), visibility 0s var(--delay);
	}

	nav .menu {
		margin-right: 1rem;
	}

	nav ul {
		height: auto;
		display: flex;
		flex-wrap: wrap;
		max-height: 100%;
	}

	nav li {
		display: block;
		flex: 0 0 100%;
		max-width: 100%;
	}

	nav li:not(:last-child) {
		margin-right: 0;
		margin-bottom: 2rem;
	}

	nav .contact,
	footer .contact {
		width: 100%;
	}

	nav .menu,
	nav .contacts {
		flex: 0 0 calc(50% - .5rem);
		max-width: calc(50% - .5rem);
	}

	nav .copyright {
		bottom: 48px;
		position: absolute;
		left: calc(50% - 465px);
		right: calc(50% - 465px);
		border-top: 1px solid var(--light-transparent);
	}

	nav .contacts {
		margin-right: 0;
	}
}

@media (max-width: 991px) {

	nav {
		padding: 105px calc(50% - 345px);
	}

	nav .copyright {
		left: calc(50% - 345px);
	}
}

@media (max-width: 767px) {

	nav {
		padding: 105px calc(50% - 255px);
	}

	nav .menu,
	nav .contacts {
		flex: 0 0 100%;
		max-width: 100%;
	}

	nav .contacts,
	footer .contacts {
		border-top: 1px solid var(--light-transparent);
	}

	nav .contacts {
		margin-top: 2rem;
		padding-top: 3rem;
	}

	nav .copyright {
		left: auto;
		right: auto;
		bottom: auto;
		position: relative;
		margin-top: 1.4rem;
		padding-top: 1.6rem;
	}
}

@media (max-width: 575px) {

	nav {
		padding: 105px 1rem 3.25rem;
	}
}

/* BUTTONS */
.btn,
.btn:before {
	border-radius: var(--btn-border-radius);
}

.btn {
	z-index: 1;
	position: relative;
	text-align: center;
	will-change: color;
	color: var(--white);
	white-space: nowrap;
	display: inline-block;
	padding: .75rem 3.242rem;
	text-transform: uppercase;
	font-size: var(--btn-font-size);
	font-weight: var(--btn-font-weight);
	line-height: var(--btn-line-height);
}

.btn:before {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	content: '';
	position: absolute;
	background-color: var(--blue);
	border: 2px solid var(--blue);
	transition: border-color var(--duration) var(--easing), background-color var(--duration) var(--easing);
}

.btn:active {
	color: var(--blue);
	transition: color .1s var(--easing);
}

.btn:active:before {
	border-color: var(--blue);
	background-color: transparent;
	transition: border-color .1s var(--easing), background-color .1s var(--easing);
}

.btn.btn-light {
	color: var(--dark);
}

.btn.btn-light:before {
	background-color: var(--white);
	border: 2px solid var(--white);
}

.social .img:active:before {
	transform: scale(1.1);
}

.btn.btn-block {
	width: 100%;
	display: block;
}

@media (min-width: 1200px) {

	.btn:hover:before {
		border-color: var(--blueDark);
		background-color: var(--blueDark);
	}

	.btn:hover:active:before {
		border-color: var(--blue);
		background-color: transparent;
		transition: border-color .1s var(--easing), background-color .1s var(--easing);
	}

	.btn.btn-light:hover {
		color: var(--white);
	}

	.btn.btn-light:hover:before {
		border-color: var(--white);
		background-color: transparent;
	}
}

@media (max-width: 767px) {

	.btn {
		padding: .5rem 1.9915rem;
	}
}

/* BANNER */
.banner {
	height: 55rem;
	position: relative;
}

.banner:first-child,
.banner:first-child.section {
	padding-top: 16rem;
}

.banner .container {
	height: 100%;
	display: flex;
	align-items: center;
}

.banner .container > .row [class*=col-] {
	align-content: flex-start;
}

.banner .img.full-size:before {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
	position: absolute;
	background: linear-gradient(270.02deg, rgba(255, 255, 255, 0) 35.4%, rgba(255, 255, 255, .32) 72.64%);
}

.banner .img.full-size.light:before {
	background: linear-gradient(270.02deg, rgba(0, 0, 0, 0) 35.4%, rgba(0, 0, 0, .32) 72.64%);
}

.banner .img.full-size img {
	width: 100%;
	height: 100%;
	object-position: center top;
}

.banner .content {
	font-weight: 500;
	color: var(--title);
	letter-spacing: .03rem;
}

.banner .btn {
	margin-top: .75rem;
}

@media (max-width: 1599px) {

	.banner {
		height: 44rem;
	}
}

@media (max-width: 1199px) {

	.banner {
		height: 42rem;
		position: relative;
	}

	.banner {
		padding-bottom: 3rem;
	}

	.banner .img.full-size:before {
		background: linear-gradient(180deg, rgba(255, 255, 255, 0) 45.28%, rgba(255, 255, 255, .84) 70.37%);
	}

	.banner .container {
		align-items: flex-end;
	}
}

@media (max-width: 991px) {

	.banner .content {
		letter-spacing: -.025rem;
	}
}

@media (min-width: 768px) {

	.banner .container > .row {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

@media (max-width: 767px) {

	.banner {
		height: 33.75rem;
	}

	.banner {
		padding-bottom: 1.75rem;
	}

	.banner .h1 {
		margin-bottom: var(--content-margin-xs);
	}

	.banner .h1 pre {
		overflow: hidden;
	}

	.banner .content:not(:last-child) {
		margin-bottom: 1rem;
	}

	.banner .h1 pre,
	.banner .content pre {
		text-wrap: wrap;
		white-space: normal;
	}
}

/* FOOTER */
footer {
	padding: 6.5rem 0;
	background-color: var(--blue);
}

footer .row {
}

footer .logo {
	display: block;
	width: 10.563rem;
	margin-top: -5rem;
}

footer .contacts {
	padding-left: 4rem;
}

.copyright {
	margin-top: -.5rem;
}

.copyright a,
.copyright span {
	font-weight: 400;
	color: var(--white);
	font-size: 1.125rem;
	line-height: 1.371rem;
}

.copyright > *:not(:last-child) {
	margin-right: 1rem;
}

@media (min-width: 1200px) {

	footer .logo {
		margin-top: -5rem;
	}

	footer ul {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	footer li:not(:last-child) {
		margin-bottom: 0;
		margin-right: auto;
	}
}

@media (max-width: 1599px) {

	footer {
		padding: 6rem 0 3rem;
	}

	footer .contacts {
		padding-left: 0;
	}
}

@media (max-width: 1199px) {

	footer {
		padding: 3rem 0;
	}

	footer .logo {
		margin-top: 0;
		margin-bottom: 2rem;
	}

	footer .menu li:not(:last-child) {
		margin-right: 0;
		margin-bottom: 2rem;
	}

	footer .copyright {
		margin-top: 2rem;
		padding-top: 1.5rem;
		border-top: 1px solid var(--light-transparent);
	}
}

@media (max-width: 767px) {

	footer {
		padding: 1rem 0 5.2rem;
	}

	footer .logo {
		width: 7.625rem;
		margin: 0 auto 2rem;
	}

	footer .menu {
		text-align: center;
	}

	footer .menu li:not(:last-child) {
		margin-bottom: 1.5rem;
	}

	footer .contacts {
		margin-top: 2.75rem;
		padding-top: 1.5rem;
		border-top: 1px solid var(--light-transparent);
	}

	footer .contact {
		justify-content: center;
	}

	footer .copyright {
		margin-top: 1.3rem;
	}

	.copyright span {
		width: 100%;
		display: block;
		margin-bottom: .5rem;
	}

	.copyright a,
	.copyright span {
		font-size: .875rem;
		line-height: 1.371rem;
	}
}
