@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");
*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-appearance: none;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
	color: inherit;
}

.container {
	width: 1110px;
	padding: 0 15px;
	margin: 0 auto;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.container {
		width: 960px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.container {
		width: 720px;
	}
}

@media (min-width: 576px) and (max-width: 767px) {
	.container {
		width: 540px;
	}
}

@media (max-width: 575px) {
	.container {
		width: 100%;
	}
}

body {
	font-family: 'Montserrat';
	font-weight: normal;
	font-size: 18px;
	line-height: 22px;
	overflow-x: hidden;
	width: calc(100vw - (100vw - 100%));
}

.body-overflow {
	width: 100vw;
	height: 100vh;
	overflow: hidden;
}

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

.menu-button {
	position: absolute;
	top: 14px;
	right: 15px;
	height: 30px;
	cursor: pointer;
}

.menu-button__dash {
	width: 30px;
	height: 2px;
	background: #297FFF;
	position: absolute;
	left: 15px;
	transition: all .3s ease;
}

.menu-button__dash--top {
	top: 0;
}

.menu-button__dash--middle {
	top: 8px;
}

.menu-button__dash--bottom {
	top: 16px;
}

.menu-button--opened .menu-button__dash {
	width: 24px;
}

.menu-button--opened .menu-button__dash--top {
	top: 8px;
	transform: rotate(45deg);
}

.menu-button--opened .menu-button__dash--middle {
	opacity: 0;
}

.menu-button--opened .menu-button__dash--bottom {
	top: 8px;
	transform: rotate(-45deg);
}

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

@media (max-width: 767px) {
	.header__wrapper {
		height: 50px;
	}
}

.header__logo {
	display: flex;
}

.header__logo img {
	width: 40px;
	height: 40px;
	object-fit: contain;
	margin-right: 5px;
}

.header__logo span {
	font-weight: 600;
	font-size: 18px;
	line-height: 22px;
	width: 135px;
	max-width: 100%;
	color: #424242;
}

.header__menu-button {
	display: none;
}

@media (max-width: 767px) {
	.header__menu-button {
		display: block;
		width: 50px;
		padding: 0 15px;
	}
}

.header__phone {
	font-weight: 600;
	font-size: 24px;
	line-height: 29px;
	text-align: center;
	color: #000000;
}

@media (max-width: 992px) {
	.header__phone {
		display: none;
	}
}

.header--stuck {
	position: fixed;
	top: 0;
	width: 100%;
	left: 0;
	background: #fff;
}

@media (max-width: 767px) {
	.header-navigation {
		display: none;
		position: fixed;
		top: 50px;
		height: calc(100vh - 100px);
		background: #fff;
		z-index: 999;
		left: 0;
		width: 100%;
	}
}

.header-navigation__items {
	display: flex;
	align-items: center;
}

@media (max-width: 767px) {
	.header-navigation__items {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}
}

.header-navigation__item a {
	display: block;
	font-size: 16px;
    line-height: 20px;
	font-weight: bold;
	color: #424242;
	padding: 34px 10px;
}

@media (max-width: 992px) {
	.header-navigation__item a {
		font-size: 16px;
		line-height: 20px;
		padding: 34px 10px;
	}
}

@media (max-width: 767px) {
	.header-navigation__item a {
		padding: 15px 10px;
	}
}

.header-navigation__item--active a {
	color: #919191;
}

.welcome-block__wrapper {
	display: flex;
	flex-wrap: wrap;
}

.welcome-block__content {
	padding-top: 80px;
	font-size: 18px;
	line-height: 22px;
	color: #424242;
	width: 60%;
}

@media (max-width: 991px) {
	.welcome-block__content {
		padding-top: 30px;
		width: 100%;
	}
}

.welcome-block__content p {
	margin-bottom: 50px;
}

.welcome-block__content ul li {
	display: flex;
	align-items: center;
	width: 100%;
}

.welcome-block__content ul li::before {
	content: "";
	display: inline-block;
	width: 25px;
	height: 25px;
	background-image: url("../img/list-icon.svg");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: 12px;
	flex-shrink: 0;
}

.welcome-block__content ul li + li {
	margin-top: 20px;
}

.welcome-block__content .btn {
	margin-top: 50px;
}

.welcome-block__title {
	font-weight: bold;
	font-size: 64px;
	line-height: 78px;
	color: #424242;
	width: 489px;
	max-width: 100%;
	margin-bottom: 30px;
}

@media (max-width: 991px) {
	.welcome-block__title {
		font-size: 40px;
		line-height: 57px;
		width: auto;
	}
}

.welcome-block__image {
	width: 40%;
}

@media (max-width: 991px) {
	.welcome-block__image {
		width: 100%;
		margin-top: 50px;
		text-align: center;
	}
}

.welcome-block__image img {
	height: 100%;
	object-fit: contain;
	object-position: right bottom;
}

@media (max-width: 991px) {
	.welcome-block__image img {
		max-width: 300px;
	}
}

.btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: max-content;
	padding: 20px 40px;
	border-radius: 45px;
	transition: all .3s ease;
}

.btn svg {
	margin-right: 10px;
}

.btn--orange {
	background: #FFCE23;
	color: #000000;
}

.btn--orange svg {
	fill: #424242;
}

.btn--orange:hover {
	background: #424242;
	color: #fff;
}

.btn--orange:hover svg {
	fill: #fff;
}

/*# sourceMappingURL=style.css.map */



.btn--yellow {
	background: #FFCE23;
	border-radius: 20px;
	font-size: 18px;
	line-height: 22px;
	color: #424242;
	padding: 12px 20px;
}

.btn--yellow:hover {
	background: #efba00;
}

.phone-button {
	display: flex;
	align-items: center;
}

.phone-button svg {
	margin-right: 10px;
	flex-shrink: 0;
}

.section {
	margin: 70px 0;
}

.section__title {
	font-weight: 600;
	font-size: 26px;
	line-height: 35px;
	margin-bottom: 15px;
}

.section__subtitle {
	font-size: 18px;
	line-height: 142.9%;
	color: #FFCE23;
	margin-bottom: 15px;
}

.section__subtitle--uppercase {
	text-transform: uppercase;
}

.about-block__top {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.about-block__title {
	width: 33.33%;
}

@media (max-width: 767px) {
	.about-block__title {
		width: 100%;
		margin-bottom: 30px;
	}
}

.about-block__content {
	width: calc(100% - 33.33%);
}

@media (max-width: 767px) {
	.about-block__content {
		width: 100%;
	}
}

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

.about-block__item {
	width: 33.33%;
	padding: 10px 15px;
}

@media (max-width: 767px) {
	.about-block__item {
		width: 100%;
		padding: 15px 0;
	}
}

.about-block__item + .about-block__item {
	border-left: 1px solid #E5E5E5;
}

@media (max-width: 767px) {
	.about-block__item + .about-block__item {
		border-left: 0;
		border-top: 1px solid #E5E5E5;
	}
}

.about-block__number {
	font-family: Roboto;
	font-style: normal;
	font-weight: bold;
	font-size: 60px;
	color: rgba(255, 206, 35, 0.22);
}

.about-block__item-title {
	font-size: 24px;
	line-height: 142.9%;
	margin-top: -15px;
	margin-bottom: 10px;
}

.services__header {
	text-align: center;
}

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

.services__item-content {
	width: 100%;
	height: 100%;
	background: #FFFFFF;
	box-shadow: 6px 11px 32px rgba(0, 0, 0, 0.05);
	border-radius: 10px;
	padding: 20px 25px;
	transition: all .3s ease;
}

.services__item-content:hover {
	box-shadow: 6px 11px 32px rgba(0, 0, 0, 0.1);
}

.services__icon {
	width: 50px;
	height: 50px;
	margin-bottom: 20px;
}

.services__icon img {
	width: 100%;
	height: 100%;
}

.services__title {
	margin-bottom: 10px;
	transition: all .3s ease;
}

.services__item {
	width: 33.33%;
	padding: 15px;
	display: block;
}

@media (max-width: 991px) {
	.services__item {
		width: 50%;
	}
}

@media (max-width: 767px) {
	.services__item {
		width: 100%;
	}
}

.services__item span {
	display: block;
}

.services__item:hover .services__title {
	color: #FFCE23;
}

.text-image__wrapper {
	display: flex;
	flex-wrap: wrap;
}

.text-image__image {
	width: 33.33%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

@media (max-width: 767px) {
	.text-image__image {
		width: 100%;
	}
}

.text-image__image img {
	width: 100%;
	height: auto;
}

.text-image__image--round img {
	border-radius: 10px;
}

.text-image__content {
	width: calc(100% - 33.33%);
}

@media (max-width: 767px) {
	.text-image__content {
		width: 100%;
	}
}

.text-image--image-left .text-image__content {
	padding-left: 70px;
}

@media (max-width: 991px) {
	.text-image--image-left .text-image__content {
		padding-left: 25px;
	}
}

@media (max-width: 767px) {
	.text-image--image-left .text-image__content {
		padding-left: 0;
		padding-top: 40px;
	}
}

.text-image--image-right .text-image__content {
	padding-right: 30px;
}

@media (max-width: 991px) {
	.text-image--image-right .text-image__content {
		padding-right: 25px;
	}
}

@media (max-width: 767px) {
	.text-image--image-right .text-image__content {
		padding-right: 0;
		padding-bottom: 40px;
	}
}

.budged-image {
	position: relative;
}

.budged-image__budge {
	position: absolute;
	top: 50%;
	transform: rotate(-90deg);
	height: 30px;
	padding: 2px 50px;
	background-image: url("../img/icons/budge.svg");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	color: #FFFFFF;
	width: max-content;
	left: calc(50% + 36px);
}

@media (min-width: 768px) and (max-width: 991px) {
	.budged-image__budge {
		display: none;
	}
}

.callback {
	background: #297FFF;
	position: relative;
}

.callback::after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 17%;
	background-image: url("../img/callback.png");
	background-size: cover;
	height: 150%;
	background-position: top;
	background-repeat: no-repeat;
}

@media (max-width: 991px) {
	.callback::after {
		display: none;
	}
}

.callback__wrapper {
	padding: 25px 0;
	text-align: center;
	color: #fff;
}

.callback__button a {
	margin: 15px auto 0;
}

.testimonials__header {
	text-align: center;
}

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

.testimonials__item {
	width: 33.33%;
	padding: 15px;
}

@media (max-width: 767px) {
	.testimonials__item {
		width: 100%;
	}
}

.testimonials__item-content {
	background: rgba(41, 127, 255, 0.22);
	border-radius: 10px;
	padding: 30px 20px 50px;
	position: relative;
}

.testimonials__item-content::before {
	content: "";
	display: block;
	width: 45px;
	height: 35px;
	background-image: url("../img/icons/quote.svg");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	top: -17.5px;
}

.testimonials__text {
	margin-bottom: 25px;
}

.testimonials__author {
	font-weight: 500;
}

.faq__content {
	margin-bottom: 30px;
}

.accordion-item {
	padding: 15px 0;
}

.accordion-item + .accordion-item {
	border-top: 1px solid #E5E5E5;
}

.accordion-item__header {
	cursor: pointer;
}

.accordion-item__title {
	font-weight: 500;
	transition: all .3s ease;
}

.accordion-item__content {
	padding-top: 15px;
	display: none;
}

.accordion-item--opened .accordion-item__title {
	color: #FFCE23;
}

.accordion-item--opened .accordion-item__content {
	display: block;
}

.footer__footer {
	padding-top: 80px;
	background: #424242;
}

.footer__footer-wrapper {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -7.5px;
	padding: 25px 0;
	color: #fff;
}

.footer__column {
	width: 33.33%;
	padding: 0 7.5px;
}

@media (max-width: 767px) {
	.footer__column {
		width: 100%;
	}
}

.footer__logo {
	text-transform: uppercase;
	margin-bottom: 15px;
	font-size: 24px;
	font-weight: 500;
}

.footer__phone, .footer__email {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.footer__phone svg, .footer__email svg {
	flex-shrink: 0;
	margin-right: 10px;
}

.footer__column-title {
	font-size: 24px;
	margin-bottom: 15px;
}

.footer__link {
	margin-bottom: 10px;
}

.footer__links {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -5px;
}

@media (max-width: 991px) {
	.footer__links {
		margin: 0;
	}
}

.footer__links .footer__link {
	width: 50%;
	padding: 0 5px;
}

@media (max-width: 991px) {
	.footer__links .footer__link {
		width: 100%;
		padding: 0;
	}
}

.footer__copyright {
	text-align: center;
	padding: 5px 0;
}

.footer-callback {
	position: relative;
	margin-bottom: -65px;
	z-index: 1;
}

@media (max-width: 767px) {
	.footer-callback {
		padding: 25px 15px;
	}
}

.footer-callback__wrapper {
	display: flex;
	flex-wrap: wrap;
	padding: 30px 70px;
	background: #297FFF;
	border-radius: 10px;
}

.footer-callback__text {
	width: calc(100% - 33.33%);
	font-size: 24px;
	color: #fff;
	line-height: 34px;
}

@media (max-width: 767px) {
	.footer-callback__text {
		width: 100%;
	}
}

.footer-callback__button {
	display: flex;
	align-items: center;
	width: 33.33%;
}

@media (max-width: 767px) {
	.footer-callback__button {
		width: 100%;
	}
}

.footer-callback__button a {
	margin-left: auto;
}

@media (max-width: 767px) {
	.footer-callback__button a {
		margin-right: auto;
	}
}

.service-header {
	padding: 160px 0;
	background-image: url("../img/service-header-bg.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

@media (max-width: 767px) {
	.service-header {
		background-image: unset;
		background-color: #297FFF;
	}
}

.service-header__content {
	width: 50%;
}

@media (max-width: 767px) {
	.service-header__content {
		width: 100%;
	}
}

.service-header__title {
	font-weight: 600;
	font-size: 30px;
	line-height: 60px;
	color: #FFFFFF;
	margin-bottom: 30px;
}

.service-header__text {
	color: #fff;
	margin-bottom: 30px;
}

.callback2 {
	background-image: url("../img/callback2-bg.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 60px 0;
	color: #fff;
}

@media (max-width: 991px) {
	.callback2 {
		background-image: unset;
		background-color: #297FFF;
	}
}

.callback2__wrapper {
	width: 70%;
}

@media (max-width: 991px) {
	.callback2__wrapper {
		width: 100%;
	}
}

.prices__header {
	text-align: center;
	margin-bottom: 40px;
}

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

.prices__item {
	width: 33.33%;
	padding: 15px;
}

@media (max-width: 767px) {
	.prices__item {
		width: 100%;
	}
}

.prices__item-content {
	border: 2px solid #E5E5E5;
	border-radius: 10px;
	padding: 40px 50px;
	text-align: center;
	transition: all .3s ease;
}

.prices__item-content:hover {
	border-color: #297FFF;
}

.prices__title {
	font-size: 24px;
	width: max-content;
	margin: 0 auto;
}

.prices__title::after {
	content: "";
	display: block;
	width: 80%;
	height: 1px;
	margin: 10px auto 20px;
	background: #ECECEC;
}

.prices__price {
	font-weight: 600;
	font-size: 36px;
	line-height: 44px;
	color: #297FFF;
	margin-bottom: 20px;
}

.prices__list li + li {
	margin-top: 10px;
}

.prices__button {
	margin-top: 20px;
}

.prices__button a {
	margin: 0 auto;
	color: #fff;
	font-weight: 500;
}

.page-header {
	background-image: url("../img/page-header-bg.jpg");
	background-size: cover;
	background-position: center right;
	background-repeat: no-repeat;
	padding: 90px 0;
}

.page-header__title {
	text-align: center;
}

.page-header__title h1 {
	font-weight: 500;
	font-size: 26px;
	line-height: 45px;
	color: #424242;
	text-align: center;
}

.contacts__wrapper {
	display: flex;
	flex-wrap: wrap;
	background: #FFFFFF;
	box-shadow: 6px 8px 24px rgba(0, 0, 0, 0.15);
	border-radius: 10px;
	overflow: hidden;
}

.contacts__info {
	width: 40%;
	color: #fff;
	padding: 30px 25px 30px 30px;
	background: #297FFF;
}

@media (max-width: 991px) {
	.contacts__info {
		width: 100%;
		padding: 30px;
	}
}

.contacts__column-title {
	margin-bottom: 20px;
}

.contacts__form {
	padding: 30px 30px 30px 50px;
	width: 60%;
}

@media (max-width: 991px) {
	.contacts__form {
		width: 100%;
		padding: 30px;
	}
}

.contact-item {
	display: flex;
	align-items: center;
	margin: 15px 0;
}

.contact-item__icon {
	flex-shrink: 0;
	width: 30px;
	margin-right: 10px;
}

.contact-item__icon svg {
	width: 100%;
}

.contact-item__title {
	font-weight: 500;
	margin-bottom: 5px;
}

.contact-item__contact {
	font-size: 15px;
	line-height: 19px;
}

.contact-item__contact a {
	text-decoration: none;
}

.form__input {
	margin-bottom: 30px;
}

.form__input input {
	width: 100%;
	border: none;
	outline: none;
	box-shadow: none;
	height: 40px;
	border: 1px solid #ECECEC;
	border-radius: 5px;
	padding: 12px 14px;
	color: #B5B5B5;
	font-family: "Montserrat";
}

.form__input input::placeholder {
	font-family: "Montserrat";
	font-size: 16px;
	color: #B5B5B5;
}

.form__textarea {
	margin-bottom: 30px;
}

.form__textarea textarea {
	border: none;
	outline: none;
	box-shadow: none;
	height: 40px;
	border: 1px solid #ECECEC;
	border-radius: 5px;
	padding: 12px 14px;
	color: #B5B5B5;
	width: 100%;
	height: 100px;
	resize: none;
	font-family: "Montserrat";
}

.form__textarea textarea::placeholder {
	font-size: 16px;
	color: #B5B5B5;
	font-family: "Montserrat";
}

.form__row {
	margin: 0 -15px;
	display: flex;
	align-items: center;
}

@media (max-width: 767px) {
	.form__row {
		flex-direction: column;
	}
}

.form__row .form__input {
	flex-basis: 0;
	flex-grow: 1;
	padding: 0 15px;
}

@media (max-width: 767px) {
	.form__row .form__input {
		flex-basis: unset;
		flex-grow: unset;
		width: 100%;
	}
}

.form__submit input {
	border: none;
	outline: none;
	box-shadow: none;
	background: #FFCE23;
	box-shadow: 0px 4px 17px rgba(0, 0, 0, 0.15);
	border-radius: 15px;
	padding: 12px 80px;
	color: #424242;
	font-size: 17px;
	font-weight: 400;
}

.map {
	margin-bottom: -70px;
}

.map iframe {
	width: 100%;
	height: 500px;
}

.welcome-contacts__item {
	display: flex;
	margin-bottom: 10px;
	align-items: center;
}
.welcome-contacts__icon {
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 10px;
}
.welcome-contacts__icon svg {
	width: 20px;
	height: 20px;
}

.welcome-contacts__text a {
	color: #297fff;
	font-weight: 500;
	transition: all .3s ease;
}

.welcome-contacts__text a:hover {
	color: #ffce23;
}

.content h2 {
	font-weight: 600;
	font-size: 26px;
	line-height: 35px;
	margin-bottom: 15px;
}

.content p {
	margin-bottom: 10px;
}

.content ul, .content li {
	list-style: disc;
}

.content ul {
	margin-left: 15px;
	margin-bottom: 10px;
}

.phone-button {
}
.phone-button__number {
  display: inline-flex;
  width: unset!important;
  max-width: unset!important;
}
.phone-button__number img {
  width: 100%!important;
  max-width: 100%!important;
  object-fit: contain;
}
.phone-button__number.rem img {
  height: 1rem;
}
.phone-button__number.inverse img {
  filter: invert(100%);
}

.page-404 {
            text-align: center;
            padding: 100px 0;
            min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
        }
        .page-404__title {
            font-size: 72px;
            font-weight: 700;
            margin-bottom: 25px;
        }
        .page-404__text {
            font-size: 18px;
            margin: 20px 0;
        }
        .page-404__button {
            display: inline-block;
            padding: 10px 20px;
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            background-color: #007bff;
            text-decoration: none;
            border-radius: 5px;
        }
        .page-404__button:hover {
            background-color: #297fff;
        }
        @media (max-width: 768px) {
            .page-404__title {
                font-size: 48px;
            }
            .page-404__text {
                font-size: 16px;
            }
            .page-404__button {
                font-size: 14px;
            }
        }
        
        
.scroll-to-top {
    
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #e6e5e5;
  box-shadow: 0 8px 30px #1c171714;
  z-index: 99;
  border: none;
  cursor: pointer;
  display: none;
}
.scroll-to-top svg {
    width: 24px;
  height: 24px;
  fill: #4d4d4d;
}

.scroll-to-top--visible {
            display: flex;
        }