@charset "UTF-8";
@import "css/fonts/Montserrat/stylesheet.css";
/*
Theme Name: Krintex
Theme URI: 
Author: Mikol42 (Factory of projects)
Author URI: https://fpro.by/
Description: 
Version: 1.0.0
License: Commercial software
License URI:
Tags: krintex
Text Domain: krintex
*/

/**
 * 1.0 - General styles
**/

:root {
	--main_color: #14a0c8;
	--alt_color: #afafaf;
	--text_color: #3e3e3e;
}

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

html,
body {
	width: 100%;
	min-width: 320px;
	color: var(--text_color);
	font: normal normal 400 20px/1.2 'Montserrat', sans-serif;
	background: #fff;
}

iframe {
	max-width: 100%;
}

input,
select,
textarea,
button {
	color: inherit;
	font: inherit;
	resize: none;
}

figure {
	margin: 0;
}

p {
	margin: 1em 0;
}

blockquote {
	position: relative;
	padding: 0.5em 1.5em;
	margin: 1em 0;
	background: rgba(20, 160, 200, 0.25);
	font-style: italic;
}

blockquote::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	border-left: 5px solid var(--main_color);
}

hr {
	border-bottom: 1px solid;
}

b,
strong {
	font-weight: 600;
}

.none, 
.hide {
    display: none;
}

a {
	color: var(--main_color);
	text-decoration: underline;
    transition: 0.5s;
}

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

em {
	font-weight: 400;
}

/**
 * 1.1 - Captions
**/

h1,
h2,
h3,
h4,
h5,
h6,
.caption {
	display: block;
	position: relative;
	margin: 1em 0;
	color: inherit;
	line-height: 1.1;
	font-weight: 600;
	text-decoration: none;
	text-align: inherit;
}
 
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child,
.caption:first-child {
	margin-top: 0;
}

h1, h6 {
	margin-bottom: 0;
	font-size: 30px;
	font-weight: 700;
	text-transform: uppercase;
}

h2{
	font-size: 26px;
}

h3 {
	font-size: 22px;
}

h4,
.caption  {
	font-size: 20px;
}

h5 {
	font-size: 18px;
}

h1 b,
h2 b,
h3 b,
h4 b,
h5 b,
h6 b,
.caption b {
	color: var(--main_color);
	font-weight: inherit;
}
@media (max-width: 1200px) {
	h1, h6 {
		font-size: 28px;
	}

	h2{
		font-size: 24px;
	}

	h3 {
		font-size: 22px;
	}
}

@media (max-width: 720px) {
	h1, h6 {
		font-size: 22px;
	}

	h2{
		font-size: 20px;
	}

	h3 {
		font-size: 20px;
	}
}

/**
 * 1.2 - Lists
**/ 

ol, 
ul {
    list-style-type: none;
    counter-reset: ol;
	position: relative;
	margin: 1.25em 0;
}

ol > li, 
ul > li {
	position: relative;
	padding-left: 1.6em;
	margin: 0;
	min-height: 1.2em;
}

ul > li::before,
ol > li::before {
	position: absolute;
	top: 0;
	left: 0;
	color: var(--main_color);
}	
	
ul >li::before {
	content: "";
	display: inline-block;
	border: 3px solid;
	border-radius: 50%;
	margin: 0.5em 0 0 0;
}

li ol li {
	padding-left: 2em;
}

ul ul > li::before {
	padding: 2px;
	border: 1px solid;
	border-radius: 50%;
}

ol ol {	
    counter-reset: ol_2;
}

ol > li::before {
	content: counter(ol) ".";
	counter-increment: ol;
	font-weight: 500;
}

ol ol > li::before {
	content: counter(ol) "." counter(ol_2);
	counter-increment: ol_2;
}

/**
 * 1.3 - Table
**/ 
 
.table-box {
	margin: 1.25em 0;
	overflow: auto;
	max-height: 550px;
}

table {
	border: 1px solid;
	width: 100%;
	border-color: var(--text_color);
	border-collapse: collapse;
	border-spacing: 0;
	font-weight: 400;
	font-style: normal;
}

tbody {
	border-color: inherit;
}

tr {	
	border-color: inherit;
}

tr:nth-child(2n) {	
	background: #eee;
}

td,
th,
caption {
	position: relative;
	padding: 12px;
	border-width: 1px 0 0 1px;
	border-style: solid;
	border-color: inherit;
	color: var(--text_color);
	font: inherit;
	text-align: left;
	background-clip: border-box;
}

td:last-child,
th:last-child {
	border-right-width: 1px;
}

tr:last-child td,
tr:last-child th {
	border-bottom-width: 1px;
}

th {
	background-color: var(--main_color);
	color: #fff;
}

thead th,
tfoot th {
	border-color: transparent;
}

th + th {
	border-right-color: transparent;
	border-left-color: transparent;
}

caption {
	caption-side: bottom;
	text-align: center;
} 

thead,
tfoot,
caption{
	font-weight: 400;
	font-style: normal;
	font-size: 100%;
	background-color: var(--main_color);
}

thead td,
tfoot td,
caption {
	border-color: transparent;
	color: #fff;;
}

caption{
	background: transparent;
	color: var(--main_color);
	font-style: italic;
}

th + th::before,
thead td + td::before,
tfoot td + td::before {
	content: "";
	position: absolute;
	top: 0;
	right: 100%;
	bottom: 0;
	left: -1px;
	background: #fff;;
}

thead td::after,
thead th::after,
tfoot tr:not(:first-child) td::after,
tfoot tr:not(:first-child) th::after {
	content: "";
	position: absolute;
	top: -1px;
	right: 0;
	bottom: 100%;
	left: -1px;
	background: #fff;;
}

th:first-child::after,
thead td:first-child::after,
tfoot tr:not(:first-child) td:first-child::after {
	left: 0px;
}

table img,
table svg {
	max-width: none;
    max-height: none;
}

@media (max-width: 880px) {
	.table-box {
		margin: 1.25em 0;
		overflow: auto;
		max-height: 550px;
	}
}

/**
 * 1.4 - Images
**/ 

#cboxTitle {
	color: #eee;
	font-style: italic;
}

.wp-caption {
	max-width: 100%;
}

.wp-caption-text,
.wp-caption-dd {
	margin: 5px 0;
	color: var(--text_color);
	font-size: 0.8rem;
	font-style: italic;
	text-align: center;
}

img,
svg {
	position: relative;
	max-width: 100%;
	height: auto;
}

.alignleft {
	float: left;
	margin: 1em 1em 1em 0;
	max-width: 50%;
}

.alignright {
	float: right;
	margin: 1em 0 1em 1em;
	max-width: 50%;
}

.aligncenter {
    display: block;
	margin: 1em auto;
}

.alignnone {
	margin: 1em 0 1em;
}

@media (max-width: 580px) {
	.alignright,
	.alignleft {
		float: none;
		margin: 1em ;
		max-width: 100%;
	}
}	

/**
 * 1.5 - Gallery
**/

.gallery {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	margin: 1em 0;
	gap: 48px;
	font-size: 0;
}

.gallery .gallery-item {
	display: inline-block;
	position: relative;
	width: calc((100% + 48px) / 4 - 48px);
	max-width: 354px;
}

.gallery-item a {
	display: block;
	width: 100%;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.gallery-item .gallery-icon {
	display: flex;
	position: relative;
	padding-top: calc(100% * 266 / 354);
	width: 100%;
	overflow: hidden;
	transition: inherit;
}

.gallery-item .gallery-icon::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	background: var(--main_color);
	opacity: 0;
	transition: inherit;
}

.gallery-item a:hover .gallery-icon::before {
	opacity: 0.2;
}

.gallery-item .gallery-icon::after {
	content: "";
	
	display: flex;
	justify-content: center;
	align-items: center;
	
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;	
	background: url('css/img/img-hover.svg') 50% 50%/60px  no-repeat;	
	opacity: 0;
	transition: inherit;
}

.gallery-item a:hover .gallery-icon::after {
	opacity: 1;
}

.gallery-item svg,
.gallery-item img {	
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
}

.gallery-item .gallery-caption {
	margin: 0.5em 0 0;
	max-width: 100%;
	color: inherit;
	font-style: italic;
	font-size: 0.8rem;
	word-wrap: break-word;
	text-align: center;
}

@media (max-width: 1320px) {
	.gallery {
		max-width: 1158px;
		margin: 0 auto;
	}
	
	.gallery .gallery-item {
		width: calc((100% + 48px) / 3 - 48px);		
	}
}	

@media (max-width: 768px) {	
	.gallery {
		gap: 12px;
	}
	.gallery .gallery-item {
		width: calc((100% + 12px) / 2 - 12px);
	}
}

/**
 * 1.6 - Button
**/
.button-block {
    padding: 15px 0;
    width: 100%;
    font-size: 0;
    text-align: center;
}

.button,
input[type="submit"] {
    display: inline-block;
    position: relative;
    z-index: 1;
    padding: 22px 44px;
    min-width: 340px;
    max-width: 100%;
    border-radius: 35px;
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.2;
    text-decoration: none;
    text-transform: none;
    text-align: center;
    cursor: pointer;
    user-select: none;    
    background: linear-gradient(360deg, var(--main_color) 0%, #0BB2E2 100%);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55),
                color 0.3s ease, 
                background 0.3s ease;
    transform-origin: center;
    overflow: hidden;
}

.button::before,
input[type="submit"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.7s ease;
    z-index: 0;
}

.button:hover,
input[type="submit"]:hover {
    color: #fff;
    background: linear-gradient(360deg, #077999 0%, #0BB2E2 100%);
    transform: scale(1.05);
}

.button:hover::before,
input[type="submit"]:hover::before {
    left: 100%;
}

.button:active,
input[type="submit"]:active {
    transform: scale(0.97);
    transition: transform 0.1s ease;
}
@media (max-width: 1440px) {	
	.button,
	input[type="submit"] {
		padding: 18px 36px;
		min-width: 0;
	}
}

@media (max-width: 1200px) {	
	.button,
	input[type="submit"] {
	}
}

/**
 * 1.7 - Contacts
**/

#contacts-block {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	margin: 70px 0;
}

#contacts-block .caption {
	margin-bottom: 40px;
	font-size: 30px;
	text-transform: uppercase;
}

#contacts-block .button {
	margin-top: 40px;
}

#contacts-block .ya-map {
	width: 50%;
	height: auto;
	margin: 0;
}

#contacts-block .adress,
#contacts-block .email-block,
#contacts-block .phones-block,
#contacts-block .shedule {
	margin: 1.3em 0;
}

#contacts-block .adress::before ,
#contacts-block .email-block::before ,
#contacts-block .phones-block::before ,
#contacts-block .shedule::before,
#contacts-block .shedule::before  {
	margin-right: 1em;
}

#contacts-block .text .adress::before {
	content: url('css/img/adress.svg');
}
#contacts-block .text .email-block::before {
	content: url('css/img/email.svg');
	
}
#contacts-block .text .phones-block::before {
	content: url('css/img/phone.svg');
}

#contacts-block .text .shedule::before {
	content: url('css/img/shedule.svg');	
}

#contacts-block .text > *:last-child {
	margin-bottom: 0;
}

#contacts-block .images {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	max-width: 208px;
	margin: 0 25px;
}

#contacts-block img,
#contacts-block svg {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	border-radius: 25px;
}

#contacts-block img:not(:first-child),
#contacts-block svg:not(:first-child) {
	margin-top: 25px;
}

#contacts-block .ya-map {
	border-radius: 25px;
	width: 50%;
	height: auto;
	overflow: hidden;
}

.copyright {
	font-size: 20px;
	font-weight: 600;
}

.email-block,
.shedule,
.adresses-block,
.phones-block {
	margin: 1em 0;
}

.email,
.shedule,
.adress,
.phone {
	position: relative;
	color: inherit;
	text-decoration: none;
}

.phone {
	white-space: nowrap;
}

.phones-block .phone:not(:last-child):after {
	content: ',';
}

.shedule .title,
.adress .title{
	font-weight: 600;
}

.phone .code {
	margin-right: 0.2em;
}

.phone .number {
}

.socials-block {
	display: flex;
	margin: 0.5em 0;
}

.socials-block .social {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	border-radius: 50%;
	margin-left: 12px;
	width: 50px;
	height: 50px;
	background: var(--alt_color);
	opacity: 0.8;
}

.socials-block :first-child .social {
	margin-left: 0;
}

.socials-block .social:hover {
	background: var(--main_color);
	opacity: 1;
}

.socials-block .social img,
.socials-block .social svg {
	max-width: 60%;
	max-height: 60%;
	width: auto;
	height: auto;
}



.page-link {
	display: flex;
	align-items: center;
	font-weight: 600;
	text-decoration: none;
}

.page-link::after {
	content: '';
	display: block;
	margin-left: 0.5em;
	width: 16px;
	height: 16px;	
	mask: url('css/img/arrow-link.svg') center center /contain no-repeat;
	background: var(--main_color);
	transition: inherit;
}

.page-link:hover::after {
	background: var(--alt_color);
}

/**
 * 1.13 - Menu
**/

.menu {
	padding: 0;
	margin: 0;
}

.menu-item {
	padding: 0;
	margin: 0;
}

.menu-item::before {
	content: none;
}

.menu-item a {
	display: block;
	padding: 10px;
	color: inherit;
	text-decoration: none;
}

.menu-item.current-menu-item > a,
.menu-item a:hover {
	color: var(--main_color);
}

/**
 * 2.1 - To top button
**/
	
.totop {
	position: fixed;
	right: 20px;
	bottom: -100px;
	z-index: 100;
	border: 1px solid;
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.5);
	color: var(--main_color);
	cursor: pointer;
}

.totop:hover {
	color: var(--main_color);
}

.totop::after {
	content: "";
	position: absolute;
	top: 27px;
	left: 35px;
	z-index: 1;
	border-left: 4px solid;
	border-bottom: 4px solid;
	width: 15px;
	height: 15px;
	transform: rotate(135deg);
	transform-origin: 0 0;
}

@media (max-width: 1300px) {
	.totop {
		display: none;
	}	
}

/**
 * 6.1 - Phone Form
**/

#cboxOverlay {
	background: #000;
}

#cboxContent,
#cboxLoadedContent {
	padding: 0;
	background: #fff;
}

#colorbox.form #cboxClose {	
	display: flex;
	justify-content: center;
	align-items: center;
	top: 36px;
	right: 50%;
	left: auto;
	margin-right: -680px;
	color: #fff;
	font-size: 18px;
	line-height: 1;
	text-transform: uppercase;
	cursor: pointer;      
	user-select: none;	
	background: linear-gradient(360deg, #14A0C8 0%, #0BB2E2 100%);
	border-radius: 16px;
	width: 50px;
	height: 50px;
}

#colorbox.form #cboxClose::before {
	content: none;
}

#colorbox.form #cboxClose::after {
	margin-top: -2px;
}

.request-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto auto;
	gap: 30px 20px;
	padding: 100px;
	border-radius: 25px;
    width: 100%;
	background: #f2f4f7;
}

#phone-form  {
	padding: 100px 112px;
	margin: 0 auto;	
    max-width: 1584px;
	min-width: 320px;
	background: #fff;
}


.request-form .description-block {
    grid-row: 1;
    grid-column: 1 / -1;
	font-weight: 500;
	font-size: 20px;
}

.request-form .caption {
	position: relative;
	margin-bottom: 1em;
	font-weight: 700;
	font-size: 30px;
	text-transform: uppercase;
}

.request-form .name-field {
    grid-row: 2;
    grid-column: 1;
}

.request-form  .phone-field {
    grid-row: 2;
    grid-column: 2;
}


.request-form .field .title {
	display: none;
	margin-top: 1em;
	color: #545454;
}

.request-form .field.not-valid .title {
	color: #d91d1d;
}

.request-form select,
.request-form textarea,
.request-form input[type="text"] {
	padding: 20px 35px;
	border: 1px solid #e3edf6;
	border-radius: 35px;
	margin: 0;
	width: 100%;
	height: 70px;
	background: #fff;
	color: #617380;
	font-weight: 400;
	font-family: inherit;
}

.request-form input[type="radio"] {	
	margin: 10px 0;
}

.request-form.not-valid .field.not-valid select,
.request-form.not-valid .field.not-valid textarea,
.request-form.not-valid .field.not-valid input[type="text"] {
	border-color: #d91d1d;
}

.request-form .field-personal {
    grid-row: 3;
    grid-column: 1 / -1;
	border-color: #d91d1d;
	font-size: 16px;
}

.request-form .field-personal a {
	font-weight: 600;
	color: inherit;
	text-decoration: none;
}

.request-form .field-personal a:hover {
	color: var(--main_color);
}


.request-form .btn-field {
    grid-row: 2;
    grid-column: 3;
	position: relative;
	margin: 0;
}

.request-form .button {
	height: 70px;
	width: 100%;
}

.request-form .button:hover {
}

.phone-form .button::after {
}

.request-form .success-message,
.request-form .error-message {
	position: absolute;
	top: 0;
	right: -10px;
	left: -10px;
	margin-top: 10px;
	height: 50px;
	text-align: center;
}

.request-form .error-message {
	color: #d91d1d;
	font-size: 14px;
}

.request-form .success-message {
	color:  var(--main_color);
	font-size: 20px;
	line-height: 1.1;
}

.request-form .success-message .big {
	text-transform: uppercase;
	font-weight: 700;
}

.request-form.success .button,
.request-form:not(.not-valid) .error-message,
.request-form:not(.success)  .success-message{
	display: none;
}

.request-form .image-block {
    grid-row: 4;
    grid-column: 1 / -1;
	position: relative;
	margin: 20px 0 -100px;
	width: 100%;
	padding-top: calc(100% * 350 / 1560);
	overflow: hidden;
}

.request-form .image-block img {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	max-height: none;
}

.error-message {
	display: none;
}

@media (max-width: 1400px) {
	#colorbox.form #cboxClose {
		right: 36px;
		margin-right: 0;
	}
	
}

@media (max-width: 1400px) {
	
	#phone-form {
		padding: 100px 30px;
	}
	
}

@media (max-width: 920px) {
    .request-form {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 768px) {
    .request-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
	.request-form {
		padding: 15px;
		overflow: hidden;
	}

	.request-form .success-message {
		font-size: 18px;
	}
}

/**
 * 1.11 - Bx-Slider
**/
 
body .bx-wrapper {
	position: relative;
	border: none;
	box-shadow: none;
	padding-bottom: 72px;
	margin: 0 auto;
	background: transparent;
	width: 100%;
}

body .bx-wrapper .bx-viewport {
}

body .bx-wrapper .bx-pager {
	bottom: 21px;
	text-align: right;
}

body .bx-wrapper .bx-pager.bx-default-pager a {
	margin: 0 10px;
	width: 6px;
	height: 6px;
	background: #afafaf;
}

body .bx-wrapper .bx-pager.bx-default-pager a.active,
body .bx-wrapper .bx-pager.bx-default-pager a:focus,
body .bx-wrapper .bx-pager.bx-default-pager a:hover {
	background: var(--main_color);
}

.bx-wrapper .bx-controls-direction .bx-prev,
.bx-wrapper .bx-controls-direction .bx-next {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: auto;
	right: auto;
	bottom: 0;
	left: 0;
	border-radius: 50%;
	margin: 0;
	width: 48px;
	height: 48px;
	background: #EFEFEF;
	color: #444;
	font-size: 0;
	transition: 0.3s;
}

.bx-wrapper .bx-controls-direction .bx-next {
	left: 52px;
}

.bx-wrapper .bx-controls-direction .bx-prev:hover,
.bx-wrapper .bx-controls-direction .bx-next:hover {
	background: #ddd;
}

.bx-wrapper .bx-controls-direction .bx-prev::after,
.bx-wrapper .bx-controls-direction .bx-next::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	background: url('css/img/arrow.svg') no-repeat center;
}

.bx-wrapper .bx-controls-direction .bx-prev::after {
	transform: rotate(180deg);
}

@media (max-width: 768px) {
	
}

/**
 * 1.11 - Colorbox
**/

#colorbox, 
#cboxOverlay, 
#cboxWrapper {
	background: #fff;
	overflow: visible;
}

#cboxOverlay {
	background: rgba(31, 31, 31, 0.85);
}

#cboxWrapper {
}

#cboxContent {
	margin: 0;
	height: 100% !important;
}
	
#cboxBottomRight, 
#cboxBottomLeft,
#cboxTopRight, 
#cboxTopLeft, 
#cboxMiddleRight,
#cboxMiddleLeft,
#cboxBottomCenter,
#cboxTopCenter {
	background: #fff;
}

#cboxBottomRight, 
#cboxBottomLeft, 
#cboxTopRight, 
#cboxTopLeft, 
#cboxBottomCenter,
#cboxTopCenter {
	height: 0;
}

#cboxBottomRight, 
#cboxBottomLeft, 
#cboxTopRight, 
#cboxTopLeft, 
#cboxMiddleRight,
#cboxMiddleLeft {
	
}

#cboxTitle {
	top: -35px;
	padding: 10px 5px 3px 5px;
	width: 100%;
	min-height: 35px;
	color: #bcbcbc;
	font-style: italic;
	white-space: nowrap;
	overflow: hidden;
}

#cboxClose {
	top: 0;
	left: 100%;
	padding: 0;
	margin-left: 10px;
	width: 28px;
	height: 28px;
	background: transparent;
	color: #fff;
	font-size: 16px;
	transition: 0s;
}

#cboxClose:hover {
	color: #ee4035;
}

#cboxClose::after {
	content: '×';
	display: block;
	width: 22px;
	height: 16px;
	background: none;
	color: #fff;
	font-size: 50px;
	font-weight: 300;
	line-height: 0.35;
	margin-top: -25px;
	margin-left: -7px;
	text-indent: 0;
}

#colorbox #cboxPrevious,
#colorbox #cboxNext  {
	position: absolute;
	top: 50%;
	right: auto;
	bottom: auto;
	left: -30px;
	border-width: 0 0 1px 1px;
	border-style: solid;
	margin: -10px 0 0;
	width: 20px;
	height: 20px;
	background: transparent;
	color: #fff;
	text-decoration: none;
	transform: rotate(45deg);
	overflow: hidden;
	transition: none;
}

#colorbox #cboxPrevious:hover,
#colorbox #cboxNext:hover  {
	color: var(--main_color);
}

#colorbox #cboxNext {
	right: -30px;
	left: auto;
	transform: rotate(-135deg);
}

#cboxLoadedContent {
	padding: 0;
	background: #fff;
}



/**
 * 2.0 - Wrapper
**/

#wrapper {
	display: flex;
	flex-direction: column;
	position: relative;
	width: 100%;
	min-width: 320px;
	min-height: 100vh;
	overflow: hidden;
}

.page-content {
	flex-grow: 1;
	position: relative;
	z-index: 1;
	margin: 0;
}

.content {
	position: relative;
	z-index: 2;	
	padding: 0 80px;
	margin: 0 auto;
	width: 100%;
	min-width: 320px;
	max-width: 1720px;
}

.page-content > .content {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.main-content {
	flex-grow: 1;
	position: relative;
	z-index: 2;
	width: 100%;
}

.main-content .page-header {
	padding: 50px 0;
	margin: 0 0 50px;
	background: #f2f4f7;
}

.page-header .content {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.page-header .page-link {
	flex-shrink: 0;
	margin-left: 24px;
}

@media (max-width: 920px) {
	
	.content {
		padding: 0 24px;
	}
}

@media (max-width: 720px) {
	.page-header .content {
	}	
}

@media (max-width: 560px) {
	.main-content .page-header {
		padding: 20px 0;
		text-align: center;
	}
	.page-header .content {
		flex-direction: column;
	}	
	.page-header .page-link {
		align-self: flex-end;
		margin-top: 20px;
	}	
}

/**
 * 2.0 - Breadcrumbs
**/

.breadcrumbs {
	margin: 2em 0;
	width: 100%;
	color: var(--main_color);
	font-size: 14px;
}

.breadcrumbs a {
	color: var(--text_color);
	text-decoration: none;
}

.breadcrumbs a:hover {
	color: var(--main_color);
}

.breadcrumbs .separator {
	position: relative;
	margin: 0 10px;
	color: var(--text_color);
	font-size: 0;
}

.breadcrumbs .separator::before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	border-width: 1px 1px 0 0;
	border-style: solid;
	transform-origin: center;
	transform: rotate(45deg);
}

/**
 * 3.0 - Header
 */

.main-footer,
.main-header {
	position: relative;
	background: #fff;
}

.main-footer .content,
.main-header .content {
	display: flex;
	justify-content: space-between;
	gap: 70px;
}

.main-footer .column,
.main-header .column {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/**
 * 3.0 - Header Content
 */

.main-header .header-content {	
	display: flex;
	padding: 12px 0;
}

.main-header .header-content .content {	
	gap: 70px;
}

.main-header .column-logo {
	margin-right: auto;
}

.main-header .column:last-child {
	text-align: right;
}	

.custom-logo-link {
	font-size: 0;
}

.custom-logo {
	max-width: 360px;
	max-height: 100%;
}

.main-header .phones-block,
.main-header .adresses-block,
.main-header .shedules-block {
	margin: 0;
}

.main-header .shedules-block {
}

.main-header .shedule,
.main-header .adress {
}

.main-header .shedule .label,
.main-header .adress .label {
	display: none;
}

.main-header .column-contacts {
	text-align: right;
}

.main-header .email-block {
	margin: 0 0 5px;
}

.main-header .email {
	color: inherit;
	text-decoration: none;
}

.main-header .phones-block .title {
	display: none;
}

.main-header .phone {
	display: flex;
	align-items: center;
	font-weight: 600;
	font-size: 28px;
}

.main-header .column-menu-button {
	display: none;
}

.menu-button {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	color: #fff;
	font-size: 18px;
	line-height: 1;
	text-transform: uppercase;
	cursor: pointer;      
	user-select: none;	
	background: linear-gradient(360deg, #14A0C8 0%, #0BB2E2 100%);
	border-radius: 16px;
	width: 50px;
	height: 50px;
}

.menu-button::after {
	content: "";
	display: block;
	width: 22px;
	height: 16px;	
	background: linear-gradient(
		to top, 
		#fff 0px, 
		#fff 2px, 
		transparent 2px, 
		transparent 7px,
		#fff 7px,
		#fff 9px,
		transparent 9px,
		transparent 14px,
		#fff 14px,
		#fff 16px
	);
}

body.active-menu .menu-button::after {
	content: '×';
	background: none;
	color: #fff;
	font-size: 50px;
	font-weight: 300;
	line-height: 0.35;
	margin-left: -5px;
}

/**
 * 3.0 - Header Menu
 */
 
.main-header .header-bottom {
	background: #fff;
}
 
.main-header .header-menu-block {
	width: 100%;
	height: 100%;
}

.fixed-header {
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	bottom: auto;
	left: 0;
	z-index: 12;	
	box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}
 
.footer-content .content:before,
.main-header .header-menu-block:before {
	content: '';
	position: absolute;
	top: 0;
	right: 80px;
	left: 80px;
	z-index: 3;
	border-top: 2px solid var(--main_color);
	opacity: 0.2;
}

.main-header .menu {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.main-header .menu-item {
	position: relative;
}

.main-header .menu a {
	padding: 20px 12px;
	font-weight: 600;
	font-size: 18px;
	text-transform: uppercase;
}

.main-header .menu .menu-item-home a {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	font-size: 0;
}

.main-header .menu .menu-item-home a::before {
	content: '';
	display: block;
	width: 24px;
	height: 24px;
	mask: url(css/img/home-icon.svg) center center /contain no-repeat;
	background: var(--main_color);
}

.main-header .current-menu-item > a,
.main-header .menu-item a:hover {
	color: var(--main_color);
}

.main-header .menu-item.has-children > a::after,
.main-header .menu-item.menu-item-has-children > a::after {
	content: url('css/img/menu-arrow.svg');
	display: inline-block;
	margin-left: 10px;
	transform: rotate(90deg);
}

.main-header .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 20;
	padding: 10px 0;
	margin: 0;
	min-width: 480px;
	background: #fff;
	box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

.main-header .menu-item:hover > .sub-menu {
	display: block;
}

.main-header .sub-menu .menu-item {
	position: relative;
}

.main-header .sub-menu .menu-item a {
	position: relative;
	padding: 10px 40px 10px 26px;
	font-weight: 400;
	font-size: 18px;
	text-transform: none;
	color: var(--text_color);
}

.main-header .sub-menu .menu-item:not(:last-child) > a::before {
	content: '';
	position: absolute;
	right: 26px;
	bottom: 0;
	left: 26px;
	border-bottom: 1px solid #e3edf6;
}

.main-header .sub-menu .menu-item a:hover,
.main-header .sub-menu .current-menu-item > a {
	color: var(--main_color);
}

.main-header .sub-menu .menu-item.has-children > a::after,
.main-header .sub-menu .menu-item.menu-item-has-children > a::after {
	position: absolute;
	top: 50%;
	right: 26px;
	margin-top: -11px;
	transform: rotate(0deg);
}

.main-header .sub-menu .sub-menu {	
	position: absolute;
	top: -10px;
	left: 100%;
}

.main-header .sub-menu .sub-menu .sub-menu {	
	background: #8ed6f6;
}

.fixed-menu {
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	bottom: auto;
	left: 0;
	z-index: 12;
}

@media (max-width: 1440px) {
	.main-header .header-content .content {
		gap: 12px;
	}
	
	.main-header .column-logo {
	  margin-right: 0;
	}
}

@media (max-width: 1260px) {
	.custom-logo {
		max-width: 200px;
	}
	
	.main-header .phone {
		font-size: 17px;
		color: var(--main_color);
	}
	
	.main-header .email-block .title {
		display: none;
	}
	
	.main-header .email {
		font-size: 16px;
		font-weight: 500;
	}
	
	.socials-block .social {
		width: 40px;
		height: 40px;
		margin-left: 5px;
	}
	
	.main-header .menu a {
		font-size: 16px;
	}
}

@media (max-width: 1024px) {

	.main-header .column-button {
		display: none;
	}

	.main-header .column-menu-button {
		display: flex;
	}	
	
	body:not(.active-menu) .header-bottom {
		display: none;
	}
	
	.main-header .menu-column {
		width: 100%;
	}
	
	.main-header .header-menu-block {
		order: 1;
	}
	
	.main-header .header-menu-block .menu {
		flex-grow: 1;
		display: block;
		overflow: auto;
	}
	
	.main-header .header-menu-block .menu > .menu-item:not(:first-child) {
		border-top: 1px solid #aaa;
	}
	
	.main-header .header-menu-block .menu-item a {
		padding: 10px;
		text-align: left;
		color: inherit;
	}
	
	.main-header .header-bottom .header-menu-block .sub-menu {
		display: none;
		position: static;
		padding-left: 0;
		margin: 0;
		min-width: 0;
		width: 100%;
		box-shadow: none;
	}
	
	.main-header .header-menu-block .menu-item.active > .sub-menu {
		display: block;
		background: #fff;
	}
	
	.main-header .sub-menu .menu-item {
		border: none;
	}
	
	.header-menu-block .sub-menu .menu-item a {
		justify-content: flex-start;
	}
}

@media (max-width: 720px) {
	.main-header .header-content .content {
		flex-wrap: wrap;
		justify-content: space-between;
		max-width: 400px;
	}
		
		
	.main-header .column-logo {
		order: 0;
	}
	
	.main-header .column-menu-button {
		order: 1;
	}
	
	.main-header .column-socials {
		order: 2;
	}
	
	.main-header .column-contacts {
		order: 3;
	}
}

@media (max-width: 360px) {
	.socials-block .social {
		width: 30px;
		height: 30px;
	}
	.main-header .phone {
		font-size: 16px;
	}
}


/**
 * 3.1 - Footer
**/

.main-footer {
	font-size: 18px;
}

.main-footer .content {
	align-items: stretch;
	margin: 70px auto;
	padding-top: 70px;
	gap: 0;
}

.main-footer .title {
	font-weight: 600;
}

.main-footer .column {
	justify-content: flex-start;
	flex-grow: 0;
}

.main-footer .column-logo {
	justify-content: space-between;
	align-items: flex-start;
}

.main-footer .copyright {
	font-weight: 600;
}

.main-footer .copyright p {
	margin: 0 0 0.5em;
}

.main-footer .privacy-policy-link {
	margin: 0.5em 0 0;
	color: inherit;
	font-size: 16px;
	text-decoration: none;
}

.main-footer .privacy-policy-link:hover {
	color: var(--main_color);
}

.main-footer .column-menu {
	margin-left: auto;
}

.main-footer .menu-item a {
	padding: 5px 5px 5px 0;
}

.main-footer .column-contacts {
	margin-left: 176px;
}

.main-footer .column-contacts > * {
	margin: 0 0 1em;
	font-size: inherit;
}

.main-footer .social {
	width: 50px;
	height: 50px;
}

@media (max-width: 1024px) {
	.main-footer .copyright {
		max-width: 300px;
	}
}

@media (max-width: 1024px) {
	.main-footer .column-menu + .column-menu {
		display: none;
	}
}

@media (max-width: 760px) {
	.main-footer .column-menu {
		display: none;
	}
	.fixed-footer .icon-link {
		font-size: 0;
	}
}

@media (max-width: 520px) {
	.footer-content .content {
		flex-direction: column;
		align-items: center;
	}
}

/**
 * 3.1 - Map
**/

.ya-map {
	position: relative;
	margin: 1em 0;
	width: 100%;
	height: 480px;
}

.ya-map [class*="balloon__content"],
.ya-map [class*="balloon_layout"],
.ya-map [class*="balloon-content__header"],
.ya-map [class*="balloon-content__footer"] {
	color: inherit;
	font-weight: inherit;
	font-size: inherit;
}

.ya-map [class*="balloon_layout"] {
	top: -60px !important;
	left: 50px !important;
	box-shadow: none;
	background: var(--main_color);
}

.ya-map [class*="balloon__content"] {
	padding: 20px 25px;
	color: #fff;
	background: var(--main_color);
	font-size: 14px;
	font-family: inherit;
}

.ya-map [class*="balloon-content__header"] {
	font-weight: 700;
}

.ya-map [class*="balloon_layout"] [class*="balloon__tail"] {
	position: absolute;
	background: transparent none repeat scroll 0 0;
	border-left: 15px solid transparent;
	border-top: 15px solid var(--main_color);
	height: 0;
	left: 0;
	margin-left: -15px;
	top: 0;
	width: 0;
	transform: none;
	box-shadow: none;
}

.ya-map [class*="balloon__tail"]:after {
	content: none;
}

.ya-map br {
	display: none;	
}

.ya-map .phone {
	font-size: 18px;
}

.ya-map .phone:hover {
	color: var(--main_color);
}

/**
 * 3.1 - Post Thumbnail
**/

.posts-block {
	display: flex;
	align-items: stretch;
	justify-content: stretch;
	flex-wrap: wrap;
	gap: 48px;
	margin: 2em 0;
	clear: both;
}

.bx-wrapper .posts-block {
	display: block;
	padding: 0;
	margin: 0;
	height: 100%;
}

.post-item {
	display: flex;
	position: relative;
	flex-direction: column;
	width: calc((100% + 48px) / 4 - 48px);
	max-width: 354px;
	transition: 0.5s;		
}

.bx-wrapper .post-item {
	box-shadow: none;
	height: 100%;
}

.post-item .post-link {
	display: inherit;
	flex-direction: inherit;
	position: relative;
	z-index: 1;
	border-radius: 25px;
	width: 100%;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.post-item .post-link::before {
	content: '';
	position: absolute;
	top: -10px;
	right: -10px;
	bottom: -10px;
	left: -10px;
	transition: inherit;
	border-radius: inherit;
}

.post-item .post-link:hover::before {
	box-shadow: 0px 10px 30px rgba(20, 160, 200, 0.2);
}

.post-item .image-box {
	display: flex;
	position: relative;
	padding-top: calc(100% * 266 / 354);
	border-radius: 25px 25px 0 0;
	width: 100%;
	overflow: hidden;
	transition: inherit;
	
}

.post-item .image-box svg,
.post-item .image-box img {	
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: contain;
}

.post-item .post-link .image-box:hover svg,
.post-item .post-link .image-box:hover img {
    transform: scale(1.12);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}	

.post-item .image-box .more::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 30px;
	background: var(--main_color);
	transition: inherit;
}

.post-item .content-block {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	margin: 20px 0;
	font-size: 18px;
}

.post-item .caption {
	margin: 0;
	color: var(--text_color);
	text-align: left;
	transition: 0.5s;
}

.category-item .caption {
	text-align: center;
}

.post-item .post-link:hover .caption {
	color: var(--main_color);
}

.post-item .page-link {
	margin-top: auto;
	color: var(--main_color);
}

.post-item .page-link::after {
	background: var(--main_color);
}

.advices-block {
	margin-top: 3em;
}

.advices-block > .content > .caption {
	font-size: 26px;
}

.advices-block .posts-block {
	flex-grow: 1;
}

@media (max-width: 1440px) {
	.posts-block {
		justify-content: center;
	}
	
	.post-item  {		
		width: calc((100% + 48px) / 3 - 48px);
	}
	
	.advices-block .post-item:nth-child(4) {
		display: none;
	}
}

@media (max-width: 1440px) {
	.posts-block {
		gap: 24px;
	}
	
	.post-item  {		
		width: calc((100% + 24px) / 3 - 24px);
	}
}

@media (max-width: 780px) {	
	.post-item  {		
		width: calc((100% + 24px) / 2 - 24px);
	}
	
	.advices-block .post-item:nth-child(4) {
		display: block;
	}
}

@media (max-width: 520px) {	
	.post-item {
		width: 100%;
	}
	.advices-block .post-item:nth-child(3),
	.advices-block .post-item:nth-child(4) {
		display: none;
	}
}
/**
 * 3.1 - Product
**/

.product-item {
}

.product-item .post-link {
	border: 1px solid #e3edf6;
	border-radius: 25px;
	background: #ffffff;
	box-shadow: 0px 10px 30px rgba(16, 32, 61, 0.1);
}

.product-item .post-link:hover {
	box-shadow: 0px 10px 30px rgba(20, 160, 200, 0.2);
}

.product-item .post-link::before {
	content: none;
}

.product-item .image-box {
	border-bottom: 2px solid #e3edf6;
}

.product-item .content-block {
	margin: 26px;
}

.product-item .caption {
}

.main-product-block .content {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	margin-bottom: 50px;
}

.detailed-product-item .gallery-block,
.main-product-block .gallery-block {
	flex-shrink: 0;
	position: relative;
	border: 1px solid #f2f4f7;
	border-radius: 25px;
	margin-right: 50px;
	width: 484px;
	min-height: 100%;
	overflow: hidden;
} 

.detailed-product-item .gallery-block .main-image,
.main-product-block .gallery-block .main-image {
	flex-grow: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	padding-top: calc(100% * 350 / 480);
	width: 100%;
	background: #fff;
}

.detailed-product-item .flags-block,
.main-product-block .flags-block {
	font-size: 14px;
}

.detailed-product-item .gallery-block .main-image svg,
.detailed-product-item .gallery-block .main-image img,
.main-product-block .gallery-block .main-image svg,
.main-product-block .gallery-block .main-image img {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 100%;
	max-height: 100%;
	transform: translate(-50%, -50%);
}

.detailed-product-item .bx-wrapper,
.main-product-block .bx-wrapper {
	margin: 24px auto;
}

.detailed-product-item .gallery-block .previews-block,
.main-product-block .gallery-block .previews-block {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	padding: 14px 50px;
	width: 100%;
	background: #f2f4f7;
}

.detailed-product-item .gallery-block .preview-image,
.main-product-block .gallery-block .preview-image {	
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	border-radius: 16px;
	width: calc((100% - 20px) / 3);
	background: #fff;
	overflow: hidden;
	cursor: pointer;
}

.detailed-product-item .gallery-block .image-block,
.main-product-block .gallery-block .image-block {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	padding-top: calc(100% * 350 / 480);
	width: 100%;
}	

.detailed-product-item .gallery-block .preview-image img,
.detailed-product-item .gallery-block .preview-image svg,
.main-product-block .gallery-block .preview-image img,
.main-product-block .gallery-block .preview-image svg {
	position: absolute;	
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height:auto;
	box-shadow: none;
	object-fit: cover;
}

.main-product-block .description-block {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}

@media (max-width: 920px) {
	
	.main-product-block .content {
		flex-direction: column;
	}
	
	.main-product-block .gallery-block {
		max-width: 100%;
		min-height: 0;
		margin: 0 auto;
	}
	
}

.detailed-product-item {
	flex-direction: row;
	width: 100%;
	max-width: none;
}

.detailed-product-item .content-block {
	align-items: flex-start;
}

.detailed-product-item .button {
	display: flex;
	justify-content: center;
	align-items: center;
}

.detailed-product-item .button::after {
  content: '';
  display: block;
  margin-left: 0.5em;
  width: 16px;
  height: 16px;
  mask: url('css/img/arrow-link.svg') center center /contain no-repeat;
  background: #fff;
  transition: inherit;
}

.detailed-product-item .bx-wrapper {
	padding: 0;
	margin: 14px auto;
}

.detailed-product-item .gallery-block {
	background: #F2F4F7;
}

.detailed-product-item .gallery-block .previews-block {
	padding: 0;
}

.detailed-product-item .bx-wrapper .previews-block {
	display: Block;
}

.detailed-product-item  .bx-controls-direction .bx-prev,
.detailed-product-item  .bx-controls-direction .bx-next {
	bottom: 20px;
	width: 35px;
	height: 44px;
	border-radius: 18px;
	background: #fff;
	opacity: 1;
}

.detailed-product-item .bx-controls-direction .bx-prev {
	left: -45px;
	right: auto;
}

.detailed-product-item .bx-controls-direction .bx-next {
	left: auto;
	right: -45px;
}

.detailed-product-item .bx-controls-direction .bx-prev::after,
.detailed-product-item .bx-controls-direction .bx-next::after {
	top: 50%;
	left: 50%;
	width: 12px;
	height: 12px;
	margin-left: -8px;
	border-width: 1px 1px 0 0;
	border-style: solid;
	border-radius: 1px;
	background: none;
	transform-origin: top right;
	transform: rotate(45deg);
}

.detailed-product-item .bx-controls-direction .bx-prev::after {
	margin-left: -20px;
	transform: rotate(-135deg);
}

/**
 * 3.1 - Front Page
**/

.front-main-content {
	display: flex;
	flex-direction: column;
	margin: 0;
}

.front-page-section {
	position: relative;
	padding: 50px 0;
}

.front-page-section .content {
	display: flex;
	flex-direction: column;	
	overflow: hidden;
}

.front-page-section .section-header .text-block {
}

.front-page-section .section-header .title {
	display: flex;
	position: relative;
	color: var(--alt_color);
	font-size: 22px;
	text-transform: uppercase;
}

.front-page-section .section-header .title::before {
	content: '';
	margin: 6px 12px 0 0;
	width: 14px;
	height: 14px;
	background: var(--alt_color);
}

.front-main-content .content > h2 {
	margin: 2.5em 0 1.5em;
	font-weight: 700;
	font-size: 30px;
	text-transform: uppercase;
}

@media (max-width: 600px) {
	.front-main-content h2 {
		font-size: 24px;
	}
}

/**
 * 3.1 - Front Slider Section
**/

.front-slider-section {
	padding: 0;
}

.slider-container {	
	position: relative;
	padding-top: calc(100% * 350 / 1416 + 50px);
	min-height: 220px;
	height: 630px;
	background: var(--alt_color);
}

.slider-container .bx-wrapper {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 0;
}

.slider-container .bx-wrapper .bx-viewport {
	overflow: hidden;
	height: 100%;
}

.slider-container .bx-slider {
	height: 100%;
}

.slider-container .slide {
	height: 100%;
	color: #fff;
}

.slider-container .image-box {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.slider-container .image-box::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	background: linear-gradient(90deg, rgba(6, 8, 14, 0.7) 0%, rgba(6, 8, 14, 0) 84.41%);
}

.slider-container .image-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slide .content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	height: 100%;
}

.slide-content {
	position: relative;
	z-index: 5;
	max-width: 650px;
	color: #fff;
}

.slide-content h1,
.slide-content h2,
.slide-content h3,
.slide-content h4,
.slide-content h5,
.slide-content h6 {
	font-size: 46px;
}

/**
 * 3.1 - Achievements Block
**/

.achievements-block {
	display: flex;
	position: relative;
	z-index: 2;
	margin: 0;
	border-radius: 25px;
	overflow: hidden;
	clear: both;
}

.slider-container + .achievements-block,
.slider-container + .content .achievements-block {
	margin-top: -75px;
}

.achievements-block::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	background: url('css/img/achievement-bg.png');
	background-size: cover;
	mix-blend-mode: soft-light;	
}

.achievement {	
	flex-basis: 0;
	flex-grow: 1;
	padding: 32px;
	background: var(--main_color);
	color: #fff;
	font-weight: 500;
	font-size: 24px;
	font-variant-numeric: tabular-nums;
	text-align: center;
}

.achievement:nth-child(4n+2) {	
	background: linear-gradient(360deg, #14A0C8 0%, #0BB2E2 100%);
}

.achievement:nth-child(4n+3) {	
	background: #4fc2e3;
}

.achievement:nth-child(4n+4) {	
	background: #6fd6f3;
}

.achievement-content {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.achievement-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.achievement .caption {
	z-index: 2;
	margin: 0;
	font-weight: 500;
	font-size: 58px;
}

.achievement .text {
	position: relative;
	z-index: 2;
}

.achievement p {
	margin: 0 0 0.2em;
}

@media (max-width: 1400px) {
	.achievement .caption {
		font-size: 48px;
	}
}

@media (max-width: 1200px) {
	.achievement {
		font-size: 16px;
	}
	.achievement .caption {
		font-size: 35px;
	}
}

@media (max-width: 860px) {
	.front-start-section > .content {
		padding: 0;
	}
	.achievements-block {
		border-radius: 0;
		flex-wrap: wrap;
	}
	.slider-container + .achievements-block,
	.slider-container + .content .achievements-block {
		margin-top: 0;
	}
	.achievement {
		flex-basis: 50%;
	}
	
}

@media (max-width: 580px) {
	.slider-container {
		height: 550px;
		background: #fff;
	}
	.slider-container .slide {
	}
	.slide .content {
		justify-content: flex-start;
	}
	.slide-content {
		color: var(--text_color);
	}
	.slider-container .image-box {
		top: auto;
		height: 290px;
	}
	.slide-content {
		font-size: 16px;
	}
	.slide-content h1,
	.slide-content h2,
	.slide-content h3,
	.slide-content h4,
	.slide-content h5,
	.slide-content h6 {
		font-size: 22px;
	}
}

@media (max-width: 390px) {
	.achievement .caption {
		font-size: 26px;
	}
}

/**
 * 3.1 - Questions Block
**/

.questions-block {
	margin: 2em 0 0;
	clear: both;
}
.questions-block > .caption {
	font-weight: 700;
	font-size: 30px;
	text-transform: uppercase;
	text-align: center;
}

.question-item {
	padding: 0;
	border-bottom: 2px solid #e3edf6;
	font-size: 18px;
}

.question-item:last-child {
	border: none;
}

.question-item::before {
	Content: none;
}

.question-item .caption::after {
	content: '';
	position: absolute;
	top: 14px;
	right: 0;
	border-radius: 50%;
	width: 32px;
	height: 32px;
	background: #F7F8FA url('css/img/question-arrow.svg') center  no-repeat;
	cursor: pointer;
}

.question-item.active::after {
	transform: rotate(180deg);
}

.question-item .caption {
	padding: 20px 40px 20px 0;
	margin: 0;
	font-size: 20px;
	cursor: pointer;
}

.question-item .caption::after {
	content: 
}

.question-item .answer {
	display: none;
}

#question-form {
	position: relative;
	padding: 44px 0;
	border-radius: 0;
	background: none;	
    grid-template-columns: 2fr 1fr 1fr;
}

#question-form::before {
	content: '';
	position: absolute;
	top: 0;
	right: -9999px;
	bottom: 0;
	left: -9999px;
	z-index: -1;
	background: #f2f4f7;
}

#question-form .description-block {
	font-weight: 400;
	font-size: 16px;
}

#question-form .caption {
	font-size: 20px;
	text-transform: none;
}

/**
 * 3.1 - Certificate Block
**/

.certificates-block {
	margin: 70px 0;
}

.certificates-block .caption {
	margin-bottom: 1.5em;
	font-weight: 700;
	font-size: 30px;
	text-transform: uppercase;
	text-align: center;
}

.bx-wrapper .gallery-size-certificate {
	display: block;
}

.gallery-size-certificate .gallery-item {
	width: 354px;
}

.gallery-size-certificate .gallery-item .gallery-icon {
	padding-top: 490px;
}

.partners-block {
	margin: 70PX 0;
}

.partners-block .caption {
  margin-bottom: 1.5em;
  font-weight: 700;
  font-size: 30px;
  text-transform: uppercase;
  text-align: center;
}

.partners {
	display: flex;
	gap: 48px;
}

.bx-wrapper .partners {
  display: block;
}

.partner-item {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 280px;
	height: 162px;
	border: 1px solid #EFEFEF;
	border-radius: 25px;
}

.partner-item img,
.partner-item svg {
	max-width: 80%;
	max-height: 80%;
}

.examples-block {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.examples-block .example-item {
	display: flex;
	flex-direction: column;
	width: 48%;
	font-size: 18px;
}

.example-gallery {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.example-gallery img,
.example-gallery svg {
	width: 174px;
	height: 126px;
	margin: 10px 0;
}

.example-gallery img:first-child,
.example-gallery svg:first-child {
	width: 100%;
	height: 416px;
}

.example-content {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.parameters {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	margin: 1em 0;
	gap: 40px;
}

.parameters .parameter {
	color: #14A0C8;
	font-weight: 700;
}

.example-item .text {
	flex-grow: 1;
}

.example-item .button {
	align-self: flex-start;
}