body {
	margin: 0;
	padding: 0;
	font-family: 'Nunito', sans-serif;
	color: #222222;
	line-height: 1.3;
}

h1 {
	margin: 0;
	font-size: 30px;
	color: #FFFFFF;
	font-weight: 500;
}

h2 {
	margin: 0;
	font-size: 30px;
	font-weight: 500;
}

p {
	margin: 0;
	font-size: 17px;
}

ul, li {
	margin: 0;
	padding: 0;
	list-style: none;
}

a {
	color: #E84F56;
	text-decoration: none;
}

img {
	display: block;
}

input[type="text"], input[type="tel"], input[type="email"], textarea {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	font-family: 'Nunito', sans-serif;
	font-size: 16px;
	background: transparent;
	border: 0;
	border-radius: 5px;
	outline: none;
	resize: none;
	box-sizing: border-box;
	transition: 0.5s;
}

input[type="button"] {
	display: inline-block;
	margin: 0;
	padding: 10px 27px 8px;
	font-family: 'Nunito', sans-serif;
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 600;
    text-transform: uppercase;
	background: #E84F56;
	border: 3px solid transparent;
	border-radius: 50px;
	outline: none;
	cursor: pointer;
	box-sizing: border-box;
	transition: 0.5s;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}

input[type="button"]:hover {
	background: transparent;
}

/* overlay */

.popup {
	display: none;
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 50px;
	background: rgba(0, 0, 0, 0.9);
	box-sizing: border-box;
	z-index: 3;
}

.overlay__inner {
	max-width: 800px;
	padding: 50px;
	color: #FFFFFF;
	background: rgba(46, 59, 75, 0.8);
	border-radius: 10px;
	box-sizing: border-box;
}

.overlay__top {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

.popup-close {
	margin-left: auto;
	padding-left: 30px;
	cursor: pointer;
}

.popup-close span {
	display: block;
	width: 30px;
	height: 3px;
	margin: 8px 0;
	background: #FFFFFF;
	border-radius: 3px;
	transition: 0.5s;
}

.popup-close .e1 {
	transform: translateY(6px) rotate(45deg);
}

.popup-close .e2 {
	transform: translateY(-5px) rotate(-45deg);
}

.overlay__bottom {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 30px;
}

/* input */

.feedback-main input[type="text"], .feedback-main input[type="tel"], .feedback-main input[type="email"], .feedback-main textarea {
	padding: 20px;
	color: #FFFFFF;
	border: 2px solid #BDCAD3;
}

.feedback-main textarea {
	height: 150px;
}

.feedback-main input[type="text"]:focus, .feedback-main input[type="tel"]:focus, .feedback-main input[type="email"]:focus, .feedback-main textarea:focus {
	border: 2px solid #E84F56;
}

.feedback-main input[type="button"]:hover {
	background: transparent;
	border: 3px solid #FFFFFF;
}

.overlay input[type="text"], .overlay input[type="tel"], .overlay input[type="email"], .overlay textarea {
	margin-bottom: 15px;
	padding: 15px;
	color: #FFFFFF;
	border: 2px solid #BDCAD3;
}

.overlay input[type="text"]:focus, .overlay input[type="tel"]:focus, .overlay input[type="email"]:focus, .overlay textarea:focus {
	border: 2px solid #E84F56;
}

.overlay input[type="button"]:hover {
	background: transparent;
	border: 3px solid #FFFFFF;
}

.feedback input[type="text"], .feedback input[type="tel"], .feedback input[type="email"] {
	padding: 0 0 12px;
	color: #222222;
	font-weight: 500;
	border-bottom: 1px solid #CCCCCC;
}

.feedback input[type="text"]:focus, .feedback input[type="tel"]:focus, .feedback input[type="email"]:focus {
	border-bottom: 1px solid #888888;
}

.feedback input[type="button"]:hover {
	color: #E84F56;
	border: 3px solid #E84F56;
}

.feedback-result-1, .feedback-result-2 {
	display: none;
	position: fixed;
	right: 30px;
	bottom: 30px;
	width: 100%;
	max-width: 350px;
	margin: 0 !important;
	padding: 30px 30px 30px 100px;
	background-color: rgba(232, 79, 86, 0.9);
	background-image: url(../images/svg/warning.svg);
	background-repeat: no-repeat;
	background-position: 30px 50%;
	border-radius: 10px;
	box-sizing: border-box;
	z-index: 99999;
}

.checkbox {
    margin-right: 15px;
}

input[type="checkbox"],
input[type="radio"] {
    accent-color: #4F616E;
    width: 20px;
    height: 20px;
    margin-right: 15px;
}

/* placeholder */

.feedback-main input::placeholder, .feedback-main textarea::placeholder {
	color: #FFFFFF;
}

.overlay input::placeholder, .overlay textarea::placeholder {
	color: #CCCCCC;
}

.feedback input::placeholder, .feedback textarea::placeholder {
	color: #666666;
}

/* bg */

.bg-gray {
	background-color: rgba(216, 216, 216, 0.15);
}

.bg-blue {
	background: #15212F;
}

.bg-mountains {
	background-image: url(../images/mountains.png);
	background-repeat: no-repeat;
	background-position: bottom 50px right 50px;
}

.wrapper {
	max-width: 1400px;
	margin: 0 auto;
	padding: 50px 30px;
}

.pd-50 {
	padding: 50px 0;
}

.pl-50 {
	padding-left: 50px;
}

.btn {
	display: inline-block;
	padding: 10px 27px 8px;
	font-size: 13px;
	color: #FFFFFF;
	font-weight: 600;
	text-transform: uppercase;
	white-space: nowrap;
	background: #E84F56;
	border: 3px solid transparent;
	border-radius: 50px;
	cursor: pointer;
	transition: 0.5s;
}

.btn:hover {
	background: transparent;
	border: 3px solid #FFFFFF;
}

.btn i {
	margin-left: 8px;
}

.btn-hover--outline:hover {
	color: #E84F56;
	border: 3px solid #E84F56;
}

.fw-500 {
	font-weight: 500;
}

.fw-600 {
	font-weight: 600;
}

.fw-700 {
	font-weight: 700;
}

.white-space-nowrap {
	white-space: nowrap;
}

.d-flex {
	display: flex;
}

.align-items-center {
	align-items: center;
}

.header-wrap {
	max-width: 1400px;
	margin: 0 auto;
	padding: 50px 0;
	background: url(../images/dot.png) 0 0 repeat-x;
}

.swiper-wrap {
	padding: 0 50px;
	box-sizing: border-box;
}

.mt-30 {
	margin-top: 30px;
}

.mb-10 {
	margin-bottom: 10px;
}

.mb-15 {
	margin-bottom: 15px;
}

.mb-20 {
	margin-bottom: 20px;
}

.mb-25 {
	margin-bottom: 25px;
}

.mb-30 {
	margin-bottom: 30px;
}

.mb-50 {
	margin-bottom: 50px;
}

.mr-30 {
	margin-right: 30px;
}

.mr-15 {
	margin-right: 15px;
}

.mr-10 {
	margin-right: 10px;
}

.ml-auto {
	margin-left: auto;
}

.play {
	cursor: pointer;
}

/* accordion */

.accordion {
	border-radius: 16px;
	overflow: hidden;
}

.accordion__tab {
	background-color: rgba(216, 216, 216, 0.15);
	border-bottom: 1px solid #dde0e3;
}

.accordion__tab:last-child {
	border-bottom: 0;
}

.accordion__title {
	padding: 25px;
	font-size: 20px;
    color: #111111;
	font-weight: 600;
	cursor: pointer;
}

.accordion__content {
	display: none;
	padding: 0 25px 25px;
}

.accordion__arrow {
    transition: 0.5s;
}

.accordion__arrow-selected {
    transform: rotate(180deg);
}

/* header */

.header-top {
	display: none;
	height: 157px;
}

header {
	padding: 0 30px;
	background-color: rgba(46, 59, 75, 1);
}

.header-bg {
	background-image: url(../images/bg.jpg);
}

.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1400px;
	margin: 0 auto;
}

.header__mobile-btn {
	display: none;
	margin-left: 20px;
	cursor: pointer;
}

.header__mobile-btn span {
	display: block;
	width: 30px;
	height: 4px;
	margin: 7px 0;
	background: #FFFFFF;
	border-radius: 3px;
	transition: 0.5s;
}

.header__mobile-btn-active .e1 {
	transform: translateY(6px) rotate(45deg);
}

.header__mobile-btn-active .e2 {
	transform: translateY(-5px) rotate(-45deg);
}

.header__mobile-menu {
	display: none;
	max-width: 1400px;
	margin: 0 auto;
}

.header__mobile-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.header__mobile-menu li {
	background: url(../images/dot.png) 0 0 repeat-x;
}

.header__mobile-menu a {
	display: block;
	padding: 10px 0;
	font-size: 15px;
    color: #BBC3CD;
    transition: 0.5s;
}

.mobile-menu__sub-menu li a {
	margin-left: 10px;
	padding-left: 15px;
	background: url(../images/svg/sep.svg) 0 50% no-repeat;
}

.header__mobile-menu a:hover {
    color: #E84F56;
}

.sticky {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 0 30px;
	background-image: url(../images/bg.jpg);
	box-sizing: border-box;
	transition: 0.5s;
	z-index: 2;
}

.sticky-menu .sml {
    margin-bottom: 30px;
    background: url(../images/dot.png) 0 0 repeat-x,
				url(../images/dot.png) 0 100% repeat-x;
}

.logo__img {
	width: 50px;
	min-width: 50px;
	height: 50px;
	min-height: 50px;
	background: url(../images/logo.svg);
	background-size: cover;
	transition: 0.5s;
}

.logo__tag {
	margin-left: 20px;
}

.logo__tag-name {
	margin-bottom: 1px;
	font-size: 25px;
	color: #FFFFFF;
	font-weight: 700;
}

.logo__tag-desc {
	font-size: 13px;
	color: #FAFAFA;
	letter-spacing: 1px;
	white-space: nowrap;
}

nav ul {
	display: flex;
}

nav a {
    display: block;
    padding: 65px 25px;
    font-size: 17px;
    color: #FFFFFF;
	font-weight: 500;
	border-bottom: 5px solid transparent;
	transition: 0.5s;
	white-space: nowrap;
}

nav a:hover, .current-menu-item a, .current-page-ancestor a {
	color: #E84F56;
	border-bottom: 5px solid #E84F56;
}

.sub-menu .current-menu-item a {
	color: #E84F56;
}

.sub-menu {
	display: none;
	position: absolute;
	top: 120px;
	left: 27px;
	background: #FAFAFA;
	border: 1px solid #DFDFDF;
	border-radius: 5px;
	z-index: 2;
}

.sub-menu a {
    display: block;
    padding: 20px;
    color: #000000;
	font-weight: 600;
	border-bottom: 1px solid #DFDFDF;
}

.sub-menu li:last-child a {
	border-bottom: 0;
}

.sub-menu a:hover {
	color: #E84F56;
	border-bottom: 1px solid #DFDFDF;
}

.menu-item-39, .menu-item-44 {
	position: relative;
}

.header__phone {
	display: block;
	margin: 0 0 12px;
	font-size: 23px;
	color: #FFFFFF;
	font-weight: 500;
	white-space: nowrap;
}

.header__services {
	display: flex;
	flex-wrap: wrap;
	margin: 50px -15px 0;
}

.header__services a {
	position: relative;
	display: block;
	width: calc(25% - 30px);
	margin: 0 15px;
	padding: 75px 30px 30px;
	color: #FFFFFF;
	background: rgba(46, 59, 75, 0.7);
	border-radius: 5px;
	box-sizing: border-box;
	transition: 0.5s;
}

.header__services a:hover {
	background: #E84F56;
}

.header__services-icon {
	position: absolute;
	top: 30px;
	left: 30px;
	height: 30px;
	margin-bottom: 15px;
	transition: 0.5s;
}

.header__services a:hover .header__services-icon {
	height: 50px;
	opacity: 0.2;
}

.header__services a:hover .header__services-text {
	color: #FFFFFF;
}

.header__services-title {
	margin-bottom: 10px;
	font-size: 20px;
}

.header__services-text {
	margin-bottom: 15px;
	font-size: 15px;
	color: #BBC3CD;
}

.header__services-more {
	font-size: 15px;
	font-weight: 600;
}

.header__services-more span {
	border-bottom: 1px dashed #FFFFFF;
}

.btn-float {
	float: right;
	display: flex;
	gap: 10px;
}

/* experience */

.experience {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px 50px;
}

.experience__block {
	width: calc(25% - 30px);
	height: 109px;
	margin: 0 15px;
	background: url(../images/svg/wreath.svg) 50% 50% no-repeat;
	background-size: 200px;
	box-sizing: border-box;
	line-height: 1;
}

.experience__title {
	padding-top: 5px;
	font-family: 'Bebas Neue', cursive;
	font-size: 40px;
	text-align: center;
}

.experience__text {
	font-size: 15px;
	font-weight: 600;
	text-align: center;
}

/* about */

.about p {
	font-size: 21px;
	font-weight: 500;
}

.team {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.team__block {
    width: calc(33.33333% - 30px);
    margin: 0 15px 30px;
}

.team__block img {
    width: 125px;
	height: 125px;
    min-width: 125px;
	min-height: 125px;
    margin-bottom: 20px;
	background: rgba(128, 128, 128, 0.3);
	border-radius: 50%;
}

.team__name {
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 600;
}

.team__title {
	margin: 0 0 15px;
    color: #BBC3CD;
}

.team__text {
    color: #FFFFFF;
}

/* service */

.bg-service {
	background-color: #15212F;
	background-image: url(../images/bg-advantage.jpg);
	background-position: 50% 50%;
	background-size: cover;
}

.bg-service h2 {
	color: #FFFFFF;
}

.bg-service__desc {
	width: 80%;
	margin-bottom: 20px;
	color: #FFFFFF;
}

.bg-steps {
	background-color: #15212F;
	background-image: url(../images/bg-advantage.jpg);
	background-position: 50% 50%;
	background-size: cover;
}

.steps-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 30px;
	color: #FFFFFF;
}

.service-steps {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}

.service-steps__block {
	width: calc(25% - 30px);
	margin: 30px 15px 0;
}

.service-steps__block-number {
	font-family: 'Bebas Neue', cursive;
	font-size: 50px;
	color: #E84F56;
}

.service-steps__title {
	margin: 0 0 10px;
    font-size: 20px;
    font-weight: 600;
}

.service-steps__text {
	color: #BBC3CD;
}

.fs-18 {
	font-size: 18px;
}

.fs-20 {
	font-size: 20px;
}

.fs-21 {
	font-size: 21px;
}

.fs-24 {
	font-size: 24px;
}

.fs-30 {
	font-size: 30px;
}

.color-red {
	color: #E84F56;
}

.color-gray {
	color: #999999;
}

.features {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -25px;
}

.features-block {
	display: flex;
	width: calc(50% - 30px);
	margin: 30px 15px 0;
	padding: 30px;
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid #F0F0F0;
	border-radius: 10px;
	box-sizing: border-box;
}

.features-block div:nth-child(1) {
	margin-right: 30px;
}

.features-block__title {
	margin: 0 0 8px;
    font-size: 23px;
	font-weight: 600;
}

.features-block__text {
    font-size: 17px;
}

.service-block {
	display: flex;
	flex-wrap: wrap;
	margin: -20px -15px 0;
}

.service-block div {
	width: calc(33.33333% - 30px);
	margin: 30px 15px 0;
	padding: 30px;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 5px;
	box-shadow: 0px 8px 40px -8px rgb(0 0 0 / 8%);
	box-sizing: border-box;
}

.service-block i {
    margin-bottom: 20px;
    font-size: 45px;
    color: #E84F56;
}

.service-block-title {
    font-size: 20px;
	font-weight: 600;
}

.service-cost {
	padding: 50px;
	border: 1px dashed #CCCCCC;
	border-radius: 10px;
}

.service-cost-block {
	display: flex;
	justify-content: space-between;
}

.service-cost__list li {
	margin-bottom: 20px;
	padding-left: 20px;
	font-size: 17px;
	font-weight: 600;
	background: url(../images/line.png) 0 50% no-repeat;
}

.service-cost__list li:last-child {
	margin-bottom: 0;
}

/* */

.service-choose {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.service-choose__block {
	display: flex;
	align-items: center;
}

.service-choose__block div:nth-child(1) {
	margin: 0 50px;
}

.service-choose__block img {
	display: block;
    width: 127px;
    border-radius: 50%;
}

.service-choose__block-title {
	margin-bottom: 5px;
	font-size: 23px;
	font-weight: 500;
	white-space: nowrap;
}

/* table */

.table, 
.table table tr,
.table tr td,
.table table tbody,
.table table thead,
.table table tfoot,
.table table tr th,
.table table tfoot tr tf {
    margin: 0;
    background: none;
    border: none;
    border-collapse: collapse;
    border-spacing: 0;
    background-image: none;
}

.table {
	width: 100%;
}

.table thead td {
	width: 50%;
	padding: 20px;
	font-size: 13px;
    color: #FFFFFF;
    font-weight: 600;
    text-transform: uppercase;
	background: #E84F56;
}

.table tbody td {
	width: 50%;
	padding: 20px;
	color: #222222;
}

.table tbody tr:nth-child(even) {
	background-color: rgba(216, 216, 216, 0.15);
}

/* */

.service-price {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}

.service-price__block {
	width: calc(33.333% - 30px);
	margin: 30px 15px 0;
	padding: 30px;
    background: rgba(46, 59, 75, 0.7);
    border-radius: 10px;
	box-shadow: 0px 15px 17px rgba(0, 0, 0, 0.06);
	box-sizing: border-box;
}

.service-price__title {
	margin-bottom: 20px;
    font-size: 21px;
    color: #FFFFFF;
	font-weight: 500;
	text-align: center;
}

.service-price__text {
	margin-bottom: 20px;
    font-size: 15px;
    color: #FFFFFF;
}

.service-price__price {
	margin-bottom: 3px;
    font-size: 21px;
    color: #E84F56;
	font-weight: 600;
	text-align: center;
}

.service-price__time {
	margin-bottom: 20px;
	font-size: 15px;
	color: #FFFFFF;
	font-weight: 500;
	text-align: center;
}

.btn-wrap {
	text-align: center;
}

/* */

.service-features {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}

.service-features__block {
	width: calc(25% - 30px);
	margin: 30px 15px 0;
}

.service-features__block div {
	height: 109px;
	margin: 0 0 30px;
	padding-top: 25px;
    font-family: 'Bebas Neue', cursive;
    font-size: 40px;
    text-align: center;
	text-align: center;
    background: url(../images/svg/wreath.svg) 50% 50% no-repeat;
    background-size: 200px;
    box-sizing: border-box;
}

.service-features__title {
    margin-bottom: 10px;
    font-size: 20px;
    color: #000000;
    font-weight: 600;
	text-align: center;
}

.service-features__text {
    font-size: 15px;
    color: #444444;
	text-align: center;
}

/* services */

.services-wrap {
	max-width: 1400px;
	margin: 0 auto;
	padding: 50px 30px;
}

.services-wrap > p {
	margin-bottom: 50px;
}

.services {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}

.services__more {
	display: flex;
	justify-content: center;
}

.services__block {
	position: relative;
	width: calc(50% - 30px);
	margin: 0 15px 30px;
	padding: 30px 30px 60px;
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid #F0F0F0;
	border-radius: 10px;
	box-sizing: border-box;
	transition: 0.5s;
}

.services__block li {
	display: flex;
	padding: 7px 0;
	border-bottom: 1px dotted #CCCCCC;
}

.services__block li:last-child {
	margin-bottom: 0;
}

.services__title {
	margin-bottom: 20px;
	font-size: 25px;
	font-weight: 600;
}

.services__link {
	display: block;
	font-size: 18px;
	color: #000000;
	font-weight: 600;
	transition: 0.5s;
}

.services__link:hover {
	color: #E84F56;
}

.services__price {
	margin-left: auto;
	padding-left: 50px;
	font-weight: 600;
	white-space: nowrap;
}

.services__block-decor {
	position: absolute;
	left: 20px;
	bottom: 20px;
	width: 48px;
	height: 8px;
	background: #E84F56;
	border-radius: 10px;
	transition: 0.5s;
}

.services__block:hover .services__block-decor {
	width: calc(100% - 40px);
}

/* projects */

.projects__wrapper {
	max-width: 1400px;
    margin: 0 auto;
    padding: 50px 30px 30px;
}

.projects-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 30px;
}

.projects-wrap > p {
	margin-bottom: 50px;
}

.projects__menu {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 50px;
}

.projects__menu li {
	position: relative;
	margin-right: 30px;
	font-size: 18px;
    color: #000000;
    font-weight: 600;
    transition: 0.5s;
	cursor: pointer;
}

.projects__menu li:hover {
	color: #E84F56;
}

.projects__menu li.active span, .projects__menu li:hover span {
	width: 100%;
}

.projects__menu li.active {
	color: #E84F56;
}

.projects__menu div {
	padding-bottom: 10px;
}

.projects__menu span {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    background: #E84F56;
    border-radius: 4px;
    transition: 0.5s;
}

.projects__block {
	flex-wrap: wrap;
	margin: 0 -15px -10px;
}

.projects__block a {
	display: block;
	width: calc(33.33333% - 30px);
	margin: 0 15px 30px;
	color: #111111;
	background: #FFFFFF;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0px 15px 17px rgba(0, 0, 0, 0.06);
	transition: 0.5s;
}

.projects__block-img {
	overflow: hidden;
}

.projects__block-img img {
	display: block;
	width: 100%;
	transition: 0.5s;
}

.projects__block-desc {
	display: flex;
	padding: 20px;
	font-size: 21px;
	font-weight: 600;
}

.projects__block-desc div:nth-child(2) {
	margin-left: auto;
	padding-left: 30px;
}

.projects__block-desc img {
	width: 40px;
	transition: 0.5s;
	opacity: 0;
}

.projects__block a:hover {
	color: #E84F56;
}

.projects__block a:hover img {
	transform: scale(1.1);
}

.projects__block a:hover img {
	opacity: 1;
}

.type-landing {
	display: flex;
}

.type-corporate, .type-store {
	display: none;
}

/* advantage */

.bg-advantage {
	background-color: #15212F;
	background-image: url(../images/bg-advantage.jpg);
	background-position: 50% 50%;
	background-size: cover;
}

.advantage-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 30px 20px;
	color: #FFFFFF;
}

.advantage-wrap > p {
	margin-bottom: 50px;
}

.advantage {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}

.advantage__block {
	width: calc(33.33333% - 30px);
	margin: 0 15px 30px;
}

.advantage__block img {
	height: 45px;
	margin-bottom: 20px;
}

.advantage__title {
	margin-bottom: 10px;
	font-size: 20px;
	font-weight: 600;
}

.advantage__text {
	color: #BBC3CD;
}

/* brands */

.brands-wrap {
    max-width: 1400px;
    margin: 0 auto;
	padding: 0 30px;
}

.brands-wrap > p {
	margin-bottom: 50px;
}

.swiper-brands {
	overflow: visible;
}

.swiper-brands__wrapper {
	-webkit-transition-timing-function: linear !important;
	-o-transition-timing-function: linear !important;
	transition-timing-function: linear !important;
	-webkit-animation-iteration-count: infinite !important;
	animation-iteration-count: infinite !important;
}

.swiper-brands .swiper-slide {
	height: auto;
}

.swiper-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 80px;
}

.swiper-logo img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

/* reviews */

.reviews-wrap {
    max-width: 1400px;
    margin: 0 auto;
	padding: 50px 30px;
}

.reviews-wrap > p {
	margin-bottom: 50px;
}

.reviews-desc {
	font-size: 21px;
}

.swiper-reviews img {
	max-width: 100px;
	margin: 0 0 15px;
	border-radius: 100px;
	filter: grayscale(1);
}

.reviews__name {
	margin-bottom: 5px;
    font-size: 20px;
    font-weight: 600;
}

.reviews__company {
	margin-bottom: 15px;
	color: #999999;
}

/* achievements */

.achievements-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 30px;
}

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

.achievements div {
	display: flex;
	align-items: center;
	flex-direction: column;
	width: 200px;
	height: 217px;
	text-align: center;
	background-size: cover;
}

.achievements div:nth-child(1) {
	background-image: url(../images/svg/frame-1.svg);
}

.achievements div:nth-child(2) {
	background-image: url(../images/svg/frame-2.svg);
}

.achievements div:nth-child(3) {
	background-image: url(../images/svg/frame-3.svg);
}

.achievements div:nth-child(4) {
	background-image: url(../images/svg/frame-4.svg);
}

.achievements p {
	padding: 35px 0 15px;
	font-size: 15px;
	font-weight: 600;
}

.achievements-wrap > p {
	margin-bottom: 50px;
}

.achievements img {
	display: block;
	height: 70px;
}

/* feedback */

.feedback {
	padding: 50px;
	background: #ecf2f2;
	border-radius: 3px;
}

.feedback-bg {
	background-color: #15212F;
	background-image: url(../images/bg-feedback.jpg);
	background-position: 50% 50%;
	background-size: cover;
}

.feedback__top {
	display: flex;
	margin: 0 -15px;
}

.feedback__top div {
	width: calc(33.33333% - 30px);
	margin: 0 15px 30px;
}

.feedback__bottom {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 30px;
}

.feedback h2 {
	margin-bottom: 50px;
	font-size: 20px;
	color: #222222;
	text-transform: uppercase;
	font-weight: 600;
}

.feedback-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 30px;
	color: #FFFFFF;
}

.feedback-wrap > p {
	margin-bottom: 50px;
}

.feedback__bottom a, .overlay__bottom a {
	color: #FFFFFF;
	text-decoration: underline;
}

.feedback-form {
	padding-right: 50px;
}

.feedback-steps {
	padding-left: 50px;
	border-left: 1px solid #BDCAD3;
}

.feedback-steps h2 {
	margin-bottom: 30px;
	font-size: 21px;
}

.feedback-steps li {
	display: flex;
	font-size: 17px;
	font-weight: 600;
}

.feedback-steps-dot {
	width: 12px;
	height: 12px;
	background: transparent;
	border: 3px solid #E84F56;
	border-radius: 50%;
}

.feedback-steps-line {
	width: 2px;
	height: 25px;
	margin: 10px 0 10px 7px;
	background: #FFFFFF;
	border-radius: 5px;
}

.bg-red {
	background: #E84F56;
}

/* map */

.map {
	position: relative;
	height: 500px;
	background: url(../images/map.png) 50% 50% no-repeat;
}

.map-filter {
	filter: grayscale(1);
}

.map__card {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    margin: 0 auto;
    padding: 40px;
	color: #FFFFFF;
	text-align: center;
	background: rgba(21, 33, 47, 0.9);
	border-radius: 10px;
}

.map__title {
	font-size: 20px;
}

.map-links {
	display: flex;
	gap: 30px;
	align-items: center;
}

.map-links a {
    font-size: 20px;
    color: #FFFFFF;
    font-weight: 500;
    white-space: nowrap;
}

.map i {
	margin-right: 5px;
}

.link--underline {
	color: #FFFFFF;
	text-decoration: underline;
}

.icon {
	height: 25px;
}

/* footer */

footer {
	background: #15212F;
}

.footer-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 30px 20px;
}

.footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 -15px;
}

.footer-block {
	margin: 0 15px 30px;
}

.footer__title {
	margin-bottom: 20px;
	font-size: 18px;
	color: #FFFFFF;
	font-weight: 500;
}

.footer__link {
	display: block;
	margin-top: 10px;
	font-size: 15px;
	color: #BBC3CD;
	transition: 0.5s;
}

.footer__phone-link {
	display: block;
	font-size: 18px;
	color: #FAFAFA;
	white-space: nowrap;
	transition: 0.5s;
}

.footer__link:hover {
	color: #E84F56;
}

.footer__order {
	display: inline-block;
    margin-top: 20px;
	padding: 10px 27px 8px;
    font-size: 13px;
    color: #FFFFFF;
	font-weight: 600;
    text-transform: uppercase;
	text-align: center;
	white-space: nowrap;
    background: #E84F56;
	border: 3px solid transparent;
    border-radius: 50px;
	transition: 0.5s;
	cursor: pointer;
}

.footer__order:hover {
    border: 3px solid #FFFFFF;
	background: transparent;
}

.footer__social {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}

.footer-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: #E84F56;
	border-radius: 50%;
}

.footer-icon img {
	width: 20px;
}

/* copyright */

.copyright-wrap {
	background-color: #15212F;
	background-image: url(../images/dot.png);
	background-repeat: repeat-x;
	background-position: 0 0;
}

.copyright {
	display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px;
	font-size: 15px;
	color: #FFFFFF;
}

.copyright__right {
	margin-left: auto;
	padding-left: 30px;
}

.copyright a {
	color: #BBC3CD;
	transition: 0.5s;
}

.copyright a:hover {
	color: #E84F56;
}

/* header bottom */

.header-bottom {
	display: flex;
	align-items: center;
    max-width: 1400px;
    margin: 0 auto;
	padding: 40px 0;
	font-size: 15px;
	color: #BBC3CD;
	background: url(../images/dot.png) 0 0 repeat-x;
}

.header-bottom a {
	color: #BBC3CD;
	transition: 0.5s;
}

.header-bottom a:hover {
	color: #E84F56;
}

.path {
	display: flex;
	align-items: center;
	margin: 0 0 40px;
}

.sep {
	display: block;
	width: 8px;
	height: 8px;
	margin: 0 15px;
	background: url(../images/svg/sep.svg) no-repeat;
}

/* social */

.social {
	padding: 10px;
	color: #BBC3CD;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 500px;
}

.social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
}

.social__bg-green {
	background-color: #67c15e;
}

.social__bg-blue {
	background-color: #40b3e0;
}

/* to top */

#to-top {
	display: none;
	position: fixed;
	bottom: 50px;
	right: 50px;
	z-index: 1;
}

#to-top a, #to-top div {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	transition: 0.5s;
	cursor: pointer;
	z-index: 2;
}

/* about */

.page-desc-block {
	display: flex;
}

.page-desc {
	width: 50%;
	padding-right: 25px;
}

.page-card {
	width: 50%;
	padding-left: 25px;
}

.page-card__inner {
	padding: 30px;
	border: 1px dashed #CCCCCC;
	border-radius: 10px;
}

.cost-time {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.cost-time-2 {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

.cost-time > div, .cost-time-2 > div {
	margin-right: 30px;
}

.page-desc p {
	font-size: 21px;
	font-weight: 500;
}

.about-services > p {
	width: 80%;
    margin-bottom: 50px;
}

.about-services__block {
	display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.about-services__block a {
	display: block;
	width: calc(25% - 30px);
	margin: 0 15px 30px;
}

.about-services__block i {
	margin-bottom: 20px;
    font-size: 45px;
    color: #E84F56;
}

.about-services__title {
    margin-bottom: 10px;
    font-size: 20px;
	color: #000;
    font-weight: 600;
}

.about-services__text {
	font-size: 15px;
    color: #999999;
}

/* contacts */

.contacts-wrap {
	max-width: 1400px;
	margin: 0 auto;
	padding: 50px 30px;
}

.contacts {
	display: flex;
	flex-wrap: wrap;
}

.contacts-info {
    display: flex;
    flex-wrap: wrap;
	width: 50%;
	margin: 0 0 -30px;
}

.contacts-img {
	width: 50%;
	background-image: url(../images/office.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	border-radius: 10px;
}

.contacts-img img {
	display: none;
	width: 100%;
	border-radius: 10px;
}

.contacts__block {
    position: relative;
    width: calc(50% - 30px);
    margin: 0 30px 30px 0;
    padding: 30px 30px 60px;
    background: rgba(255, 255, 255, 0.8);
	border: 1px solid #F0F0F0;
    border-radius: 10px;
    box-sizing: border-box;
    transition: 0.5s;
}

.contacts__title {
	margin-bottom: 20px;
	font-size: 25px;
	font-weight: 600;
}

.contacts__link {
	display: block;
	margin: 0 0 12px;
	font-size: 23px;
	color: #222222;
	font-weight: 600;
	transition: 0.5s;
}

.contacts__link:hover {
	color: #E84F56;
}

.contacts__icon {
	display: flex;
	gap: 12px;
}

.contacts-icon img {
    width: 20px;
}

.contacts__text {
	margin: 0 0 12px;
	font-size: 20px;
}

.contacts__block-decor {
	position: absolute;
	left: 20px;
	bottom: 20px;
	width: 48px;
	height: 8px;
	background: #E84F56;
	border-radius: 10px;
	transition: 0.5s;
}

.contacts__block:hover .contacts__block-decor {
	width: calc(100% - 40px);
}

.bg-contacts {
	background-repeat: no-repeat;
	background-position: right 20px bottom 20px;
}

.bg-contacts:hover {
    background-position: right 20px bottom 45px;
}

.bg-contacts--phone {
	background-image: url(../images/svg/contacts/phone.svg);
}

.bg-contacts--mail {
	background-image: url(../images/svg/contacts/mail.svg);
}

.bg-contacts--address {
	background-image: url(../images/svg/contacts/address.svg);
}

.bg-contacts--schedule {
	background-image: url(../images/svg/contacts/schedule.svg);
}

/* reviews */

.reviews {
	display: flex;
    flex-wrap: wrap;
    margin: 0 -25px;
}

.reviews-block {
    width: calc(33.333% - 30px);
    margin: 0 15px 30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #F0F0F0;
	border-radius: 10px;
    box-sizing: border-box;
}

.reviews-block img {
	width: 100px;
	height: 100px;
	margin-bottom: 20px;
	border-radius: 50%;
	filter: grayscale(1);
}

/* other */

.table-wrap {
	border: 1px solid #DFDFDF;
	border-radius: 10px;
    overflow-x: auto;
}

.table-privacy {
	width: 100%;
	margin: 0;
	background: #FAFAFA;
    border: none;
    border-collapse: collapse;
    border-spacing: 0;
}

.table-privacy td {
	width: 50%;
	padding: 20px;
	font-weight: 500;
    border-bottom: 1px solid #DFDFDF;
	border-right: 1px solid #DFDFDF;
}

.table-privacy tr td:last-child {
	border-right: 0;
}

.table-privacy tr:last-child td {
	border-bottom: 0;
}

/* cookie */

.cookie-notice {
	display: none;
	position: fixed;
	bottom: 30px;
	left: 30px;
	width: 505px;
	padding: 30px;
	font-size: 14px;
	background-color: rgba(21, 33, 47, 0.9);
	border: 1px solid #546171;
	border-radius: 10px;
	box-sizing: border-box;
	z-index: 99999;
}

.cookie-notice.active {
	display: block;
}

.cookie-notice p {
	margin: 0 0 20px;
	color: #FFFFFF;
}

.cookie-notice a {
	color: #FFFFFF;
	text-decoration: underline;
}

/* media */

@media (max-width: 1400px) {

.header {
	padding: 30px 0;
}

.header__contact {
	margin-left: auto;
}

.header__nav {
	display: none;
}

}


@media (max-width: 1200px) {

.footer__logo {
	width: 100%;
}

.contacts__block {
    width: calc(100% - 30px);
}

.contacts-img {
	background-image: none;
}

.contacts-img img {
	display: block;
}

.cost-time {
	display: block;
}

.cost-time > div {
    margin-right: 0;
}

}

@media (max-width: 992px) {

h1, h2 {
	font-size: 25px;
}

.team__block {
    width: calc(50% - 30px);
}

.feedback-main input[type="text"], .feedback-main input[type="tel"], .feedback-main input[type="email"], .feedback-main textarea {
    padding: 15px;
}

#to-top {
    bottom: 30px;
    right: 30px;
}

.header-wrap {
    padding: 30px 0;
}

.header-bg, .bg-advantage, .bg-steps, .feedback-bg {
	background-color: rgba(46, 59, 75, 1);
}

.wrapper, .services-wrap {
    padding: 30px;
}

.page-desc-block {
    flex-direction: column;
}

.page-desc {
    width: 100%;
    padding-right: 0;
	margin-bottom: 30px;
}

.page-desc p {
    font-size: 18px;
}

.page-card {
    width: 100%;
    padding-left: 0;
}

.cost-time-2 {
	display: block;
}

.cost-time-2 > div {
    margin-right: 0;
}

.service-cost {
    padding: 30px;
}

.service-cost-block {
    flex-direction: column;
}

.service-cost-block div:nth-child(2) {
	margin: 20px 0;
}

.service-choose {
	flex-direction: column-reverse;
    align-items: flex-start;
}

.service-choose__block {
	margin: 0 0 30px;
}

.service-choose__block div:nth-child(1) {
    margin: 0 30px 0 0;
}

.service-choose__block-title {
	white-space: normal;
}

.steps-wrap {
    padding: 30px;
}

.service-steps__block {
    width: calc(50% - 30px);
}

.swiper__title {
    font-size: 25px !important;
}

.swiper__text, .about p {
    font-size: 18px !important;
}

.header__services {
    margin: 0 -15px;
}

.header__services a {
    width: calc(50% - 30px);
    margin: 35px 15px 0;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid #57616E;
}

.experience {
    justify-content: center;
	margin: 0 -15px;
}

.experience__block {
    width: calc(50% - 30px);
    margin: 0 15px 30px;
}

.projects-wrap {
    padding: 30px 30px 0;
}

.projects-wrap > p {
    margin-bottom: 30px;
}

.projects__menu {
    margin-bottom: 30px;
}

.projects__block {
    margin: 0 -15px;
}

.projects__block a {
    width: calc(50% - 30px);
}

.advantage-wrap {
    padding: 30px 30px 0;
}

.advantage-wrap > p {
    margin-bottom: 30px;
}

.advantage__block {
    width: calc(50% - 30px);
}

.pd-50 {
    padding: 30px 0;
}

.brands-wrap > p {
    margin-bottom: 30px;
}

.swiper-logo {
    height: 60px;
}

.reviews-wrap {
    padding: 30px;
}

.reviews-wrap > p {
    margin-bottom: 30px;
}

.achievements-wrap {
    padding: 30px 30px 0;
}

.achievements-wrap > p {
    margin-bottom: 30px;
}

.achievements {
	justify-content: center;
	margin: 0 -15px;
}

.achievements div {
	margin: 0 15px 30px;
}

.feedback-wrap {
    padding: 30px;
}

.feedback-wrap > p {
    margin-bottom: 30px;
}

.map__card {
	padding: 30px;
}

.footer-wrap {
    padding: 30px 30px 0;
}

.reviews-desc {
	font-size: 18px;
}

.reviews {
	flex-direction: column;
    margin: 0;
}

.reviews-block {
    width: 100%;
    margin: 0 0 30px;
}

.reviews-block img {
	width: 100px;
	height: 100px;
	margin-bottom: 20px;
	border-radius: 50%;
	filter: grayscale(1);
}

.overlay {
    padding: 30px;
	overflow-y: scroll;
}

.overlay__inner {
    max-width: 100%;
    padding: 30px;
}

.contacts {
    flex-direction: column;
}

.contacts-info {
    width: 100%;
    margin: 0;
}

.contacts-img {
	width: 100%;
}

.contacts__block {
    width: 100%;
    margin: 0 0 30px;
}

.cookie-notice {
	width: calc(100% - 60px);
}

}

@media (max-width: 768px) {

.team {
    flex-direction: column;
    margin: 0;
}

.team__block {
    width: 100%;
	margin: 0 0 30px;
}

.header-top {
	display: none;
	height: 127px;
}

.sticky {
	border-bottom: 1px solid #57616E;
}

.header__services, .experience {
    margin: 0;
}

.header__services a {
    width: 100%;
    margin: 30px 0 0;
}

.header__contact {
	display: none;
}

.header__mobile-btn {
	display: block;
}

.header-bottom {
    padding: 30px 0;
}

.path {
	display: block;
    margin: 0 0 30px;
}

.sep {
    display: inline-block;
	margin: 0 8px;
}

.service-steps {
    margin: 0;
}

.service-steps__block {
    width: 100%;
    margin: 30px 0 0;
}

.features {
    margin: 0;
}

.features-block {
	flex-direction: column;
    width: 100%;
    margin: 30px 0 0;
}

.features-block div:nth-child(1) {
    margin-right: 0;
}

.social {
	display: none;
}

.services__block {
	width: 100%;
}

.services__block li {
    flex-direction: column;
}

.services__price {
	margin-top: 5px;
    margin-left: 0;
    padding-left: 0;
}

.experience__block {
    width: 100%;
    margin: 0 0 30px;
}

.projects__menu {
    margin-bottom: 20px;
}

.projects__menu li {
    margin-right: 30px;
	margin-bottom: 10px;
}

.projects__block {
    margin: 0;
}

.projects__block a {
    width: 100%;
	margin: 0 0 30px;
}

.advantage {
    margin: 0;
}

.advantage__block {
    width: 100%;
    margin: 0 0 30px;
}

.achievements img {
    max-width: 150px;
}

.feedback__top {
    display: block;
    margin: 0;
}

.feedback__top div {
    width: 100%;
    margin: 0 0 20px;
}

.feedback__bottom, .overlay__bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
	margin-top: 20px;
}

.map, .map iframe {
	height: 350px;
}

.map__card {
	display: none;
}

.footer {
    margin: 0;
}

.footer-block {
	width: 100%;
	margin: 0 0 30px;
}

.copyright {
    flex-direction: column;
}

.copyright__right {
	margin-top: 15px;
    margin-left: 0;
    padding-left: 0;
}

.contacts-wrap {
    padding: 30px;
}

}