@font-face {
	font-family: "Comfortaa";
	font-weight: 400;
	font-display: fallback;
	src: url("/fonts/Comfortaa-Regular.woff2") format("woff2");

}
@font-face {
	font-family: "Comfortaa";
	font-weight: 700;
	font-display: fallback;
	src: url("/fonts/Comfortaa-Bold.woff2") format("woff2");
}
@font-face {
	font-family: "Roboto";
	font-weight: 400;
	font-display: fallback;
	src: url("/fonts/Roboto-Regular.woff2") format("woff2");
}

@font-face {
	font-family: "Roboto";
	font-weight: 700;
	font-display: fallback;
	src: url("/fonts/Roboto-Bold.woff2") format("woff2");

}
* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}
html {
	touch-action: manipulation;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent;
	scroll-behavior: smooth;
}
body {
	font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", ui-sans-serif, sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: #000;
}
.body-is-active{
	touch-action: none;
	-ms-touch-action: none;
	overflow: hidden;
}
input,
textarea {
	width: 100%;
	font-family: inherit;
	font-size: 16px;
	padding: 10px 20px;
	border-radius: 5px;
	border: none;
}
input[type="submit"] {
	width: auto;
	display: inherit;
	color: #fff;
	background: #4f8bce;
	padding: 16px 50px;
	margin: 30px auto 0;
	cursor: pointer;
}
iframe {
	max-width: 100%;
	vertical-align: middle;
	border: none;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}
h2 {
	margin-bottom: 30px;
	font-weight: 700;
	font-size: 24px;
	line-height: 35px;
	text-align: center;
	color: #243580;
}
h3 {
	font-family: "Roboto";
	font-weight: 700;
	font-size: 16px;
	line-height: 22px;
	color: #243580;
}
p {
	margin: 15px 0;
	font-size: 14px;
	color: #303030;
}
ul {
	margin: 0 0 20px 40px;
	font-size: 14px;
	color: #303030;
}
ul li {
	padding-left: 0;
	margin-bottom: 15px;
	list-style: disc;
	background: none;
}
ul li::marker {
	font-size: 12px;
}
.container {
	position: relative;
	max-width: 1170px;
	width: 100%;
	padding: 0 20px;
	margin: 0 auto;
}

/*header*/
.main-header{
	position: relative;
	background-image: url(/img/home.webp);
	background-size: contain;
	background-attachment: fixed;
	background-repeat: no-repeat;
}
.main-header::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(255, 255, 255, 0.7);
}
.main-header.is-active {
	position: sticky;
	top: 0;
	z-index: 2;
	min-height: 100vh;
	background-size: cover;
}
.main-header:not(.is-active).sticky .main-header__nav{
	display: block;
}
.main-header.sticky .page-header{
	display: none;
}
.main-header:not(.is-active).sticky {
	position: sticky;
	top: 0;
	z-index: 2;
	    background: none;
	box-shadow: 0 2px 10px rgb(0 0 0 / 10%);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	transition: display .2s;
}
.main-header.sticky > .main-header__nav:not(.is-active) {
	background:none;
}
.main-header.sticky > .main-header__nav:not(.is-active) .main-header__social {
	display: none;
}
.main-header__top{
	height: 80px;
}
.main-header__top> .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: inherit;
}
.main-header__logo{
	width: 100px;
}
.main-header__phone {
	margin-left: auto;
}
.phone-link{
	display: flex;
	align-items: center;
	position: relative;
	color: #2F4858;
	text-decoration: none;
	font-weight: bold;
	font-size: 16px;
	overflow: hidden;
	background: linear-gradient(to right, #10e698, #10e698 50%, #2F4858 50%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-size: 200% 100%;
	background-position: 100%;
	transition: background-position 275ms ease;
}
.phone-link:hover{
	background-position: 0 100%;
}
.main-header__phone-link svg {
	height: 30px;
	width: auto;
}
.main-header__phone-link svg g{
	fill: #2F4858;
}
.main-header__phone-link:hover svg g{
	fill: #10e698;
}
.main-header__top .main-header__social{
	display: none;
}
.main-header__social a{
	transition: transform .3s;
}
.main-header__social a:hover{
	transform: scale(1.1);
}
.main-header__hamburger {
	border: none;
	touch-action: manipulation;
	width: 50px;
	cursor: pointer;
}
.main-header__hamburger-inner{
	margin-top: -1.5px;
}
.main-header__hamburger-inner,
.main-header__hamburger-inner::before,
.main-header__hamburger-inner::after {
	position: absolute;
	width: 30px;
	height: 4px;
	background-color: #2F4858;
	border-radius: 3px;
}
.main-header__hamburger-inner:after,
.main-header__hamburger-inner:before{
	content: "";
	display: block;
	transition-duration: 0.3s, 0.3s;
}
.main-header__hamburger-inner:before {;
	top: 10px;
}
.main-header__hamburger-inner:after {
	top: -10px;
}
.main-header__hamburger.is-active .main-header__hamburger-inner {
	background: 0 0;
}
.main-header__hamburger.is-active .main-header__hamburger-inner:before {
	top: 0;
	transform: rotate(45deg);
}
.main-header__hamburger.is-active .main-header__hamburger-inner:after {
	top: 0;
	transform: rotate(-45deg);
}
.main-header__nav{
	padding: 15px;
}
.main-header__list{
	display: flex;
	flex-direction: column;
	align-items: baseline;
	margin: 0 auto;
}
.main-header__list-item{
	list-style-type: none;
	display: flex;
	justify-content: center;
}
.main-header__list-link{
	text-decoration: none;
	font-size: 18px;
	color: #2F4858;
	font-weight: 700;
	overflow: hidden;
	background: linear-gradient(to right, #10e698, #10e698 50%, #2F4858 50%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-size: 200% 100%;
	background-position: 100%;
	transition: background-position 275ms ease;
}
.main-header__list-link:hover{
	background-position: 0 100%;
}
.main-header__social {
	display: flex;
	justify-content: space-around;
	margin-bottom: 25px;
}
.main-header__social a{
	width: 50px;
}
.main-button {
	display: block;
	border-radius: 10px;
	font-size: 28px;
	border: 3px solid #10e698;
	color: #2F4858;
	font-weight: bold;
	width: fit-content;
	padding: 8px 32px;
	margin: 0 auto;
	text-decoration: none;
	cursor: pointer;
	transition-duration: 0.3s, 0.3s;
}
.main-button:hover {
	background: #2F4858;
	border: 3px solid #2F4858;
	color: #10e698;
}
.page-header {
	padding: 50px 0 100px 0;
}
.page-header_title {
	color: #2F4858;
	font-size: 24px;
	line-height: 1;
	text-align: center;
	margin-bottom: 15px;
}
.page-header__price {
	border-radius: 10px;
	font-size: 24px;
	border: 3px solid #10e698;
	color: #2F4858;
	font-weight: bold;
	padding: 0px 15px;
	width: fit-content;
	margin: 0 auto 25px auto;
}
.page-header__list {
	margin: 0;
}
.list__item {
	display: flex;
	align-items: center;
	gap: 15px;
	list-style-type: none;
	margin-bottom: 5px;
}
.list__item::before {
	content: "";
	width: 21px;
	height: 21px;
	background: url(/img/checked_icon.svg) no-repeat;
	background-size: 21px;
}
.list__paragraph{
	font-size: 16px;
	color: black;
	margin: 0;
}
.page-section{
	padding: 50px 0;
}
.page-title {
	font-size: 34px;
	text-align: center;
	color: #2F4858;
}
.page-title:after {
	content: '';
	width: 75px;
	height: 3px;
	border-radius: 50px;
	background: -moz-linear-gradient(90deg, #10E698 0%, #00C7A5 23.96%, #00A7A5 48.96%, #008697 73.44%, #2F4858 100%);
	background: -webkit-linear-gradient(90deg, #10E698 0%, #00C7A5 23.96%, #00A7A5 48.96%, #008697 73.44%, #2F4858 100%);
	background: linear-gradient(90deg, #10E698 0%, #00C7A5 23.96%, #00A7A5 48.96%, #008697 73.44%, #2F4858 100%);
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;
	margin-bottom: 10px;
	transition: width .64s ease-in-out;
}
.page-title:hover:after {
	width: 150px;
}
.page__description {
	font-size: 24px;
	text-align: center;
	color: #2F4858;
}
/*advantages*/
.page-advantages{
	background: #F0F0F0;
}
.page-advantages__content {
	height: 200px;
    background: #fff;
    padding: 15px;
    margin: -15px 40px 20px 40px;
    box-shadow: 0px 6px 20px 0px rgb(51 136 255 / 15%);
    border-radius: 20px;
    z-index: 99999;
    position: relative;
}
.page-advantages__subtitle {
    color: #2F4858;
    border-bottom: 1px solid #2F4858;
    text-align: center;
    font-size: 18px;
    padding-bottom: 5px;
}
.advantages-button-prev, 
.advantages-button-next{
position: absolute;
    z-index: 1;
    border: none;
    top: 70%;
    width: 35px;
    height: 35px;
    cursor: pointer;
}
.advantages-button-prev, 
.advantages-button-next,
.portfolio-button-prev, 
.portfolio-button-next{
    width: 35px;
    height: 35px;
    cursor: pointer;
}
.advantages-button-prev,
.portfolio-button-prev {
    background: url(img/slider-arrow.svg) no-repeat;
    transform: rotate(180deg);
	left: 0px;
    background-color: #10e698;
    background-position: center;
}
.advantages-button-next,
.portfolio-button-next {
    background: url(img/slider-arrow.svg) no-repeat;
	right: 0px;
    background-color: #10e698;
    background-position: center;
}
/*calculator*/
.page-calculator__title{
	margin-bottom: 0;
}
.calculator__container {
    position: relative;
    background: rgba(246, 246, 246, 0.5);
    border: 5px solid #F6F6F6;
    border-radius: 25px;
    padding: 40px 15px;
}
.calculator__progresbar {
    display: block;
    width: 100%;
    height: 10px;
    padding: 3px;
    background: rgba(0, 0, 0, .1);
    border-radius: 10px;
    margin-bottom: 25px;
}
.progresbar_line {
    display: block;
    width: 0%;
    height: 100%;
    background: #10e698;
    border-radius: 10px;
}
.calculator__item:not(:first-child) {
    display: none;
}
.question__title {
	color: #2F4858;
	    font-size: 24px;
    line-height: 1.5;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}
.answer__items--grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.answer__items--flex{
	display: flex;
    flex-direction: column;
    gap: 15px
}
.answer__items--flex-finish {
    display: flex;
    gap: 15px;
    justify-content: center;
        margin-bottom: 25px;
}
.answer__item .answer__title-label {
	display: flex;
    flex-direction: column;
    border: 1px #ccc solid;
    border-radius: 5px;
    padding: 0;
    background: transparent;
    overflow: hidden;
    cursor: pointer;
    height: 175px;
}
.answer__items--flex .answer__item .answer__title-label,
.answer__items--flex-finish .answer__item .answer__title-label{
    height: auto;
    padding: 5px;
}
.answer__items--flex-finish .answer__item .answer__title-label{
    border: none;
    border-radius: 50px;
    padding: 15px;
    width: 70px;
    height: 70px;
}
.answer__items--flex-finish .answer__item .answer__title-label.check{
	box-shadow: 0px 0px 5px 0 #10e698;
}
.answer__items--flex-finish .answer__item .answer__title-label img {
    height: 50px;
}
.answer__check-input {
    appearance: none;
    padding: 0;
}
.answer__title {
    padding: 10px 0px;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    color: #2f4858;
}
label.answer__title-label.check {
    background: none;
    box-shadow: 1px 3px 5px 0 #10e698;
}
label.answer__title-label.check h4{
    color: #10e698;
}
.calculator_nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 25px;
}
.step_back {
    border: none;
    background: none;
    cursor: pointer;
}
.step_back svg path{
	fill:#000;
}
.step_next {
    background: #10e698;
    padding: 10px 25px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}
.form-send-status__button {
    padding: 15px;
    margin: 15px 0 0;
    border-radius: 3px;
    font: inherit;
    font-size: 16px;
    background-color: #10e698;
    color: #fff;
    cursor: pointer;
    transition: box-shadow 0.15s, opacity 0.15s;
    text-decoration: none;
}
.form-send-status__button:hover,
.form-send-status__button:focus-visible {
	background-color: #0ec482;
	box-shadow: 0 1.6px 3.6px 0 rgb(0 0 0 / 13%) inset, 0 0.3px 0.9px 0 rgb(0 0 0 / 11%) inset;
	opacity: 0.9;
}
/*features*/
.page-features,
.page-price {
    background: #F0F0F0;
}
.page-features__items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 25px 0;
	padding: 15px 0 25px 0;
	overflow: hidden;
}
.page-features__item {
    text-align: center;
    box-shadow: 0px 6px 20px 0px rgb(51 136 255 / 15%);
    background: #fff;
    margin: 0px 16px 0px 16px;
    padding: 30px 35px 40px 35px;
    background-position: top;
    border-radius: 20px;
}
.page-features__image {
    width: 108px;
    height: 108px;
    border: 5px solid #10e698;
    border-radius: 0;
    margin: 0 auto 20px;
    position: relative;
}
.page-features__image-svg{
	display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    height: 100%;
    width: 100%;
    position: absolute;
    right: -10px;
    bottom: -10px;
}
.features__img{
	width: 65%;
	height: 100%;
}
.page-features__subtitle {
	color: #2F4858;
	font-size:18px
}
/*portfolio*/
.portfolio-photo-swiper{
	margin-bottom: 10px;
}
.portfolio-photo__img{
	width: 100%;
	height: 300px;
	object-fit: cover;
	transition: transform 0.4s ease 0s;
	cursor: pointer;
}
.portfolio-photo-navigation-swiper .swiper-slide{
	outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    cursor: pointer;
}
.portfolio-photo-navigation-swiper .swiper-slide.swiper-slide-thumb-active {
    border: solid 4px #10e698;
}
.portfolio-photo-navigation__img,
.portfolio-video__navigation{
    width: 100%;
    height: 100px;
    object-fit: cover;
}
.portfolio-photo-navigation-swiper .overview__play{
    height: 25px;
    width: 25px;
}
.portfolio-photo-navigation-swiper .overview__play svg{
    width: 15px;
    height: 10px;
}
.portfolio-buttons-navigation{
	display: flex;
	gap: 25px;
	justify-content: center;
	margin-bottom: 25px;
}
.portfolio-swiper-pagination{
    text-align: center;
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 700;
    color: #2f4858;
}
.portfolio__content {
    margin-top: 15px;
}
.portfolio__content-title {
    font-size: 20px;
    text-align: center;
    color: #2F4858;
    margin-bottom: 15px;
}
.portfolio__content-info {
    color: gray;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 15px 0;
    margin: 0 0 0 0;
    border-top: 1px solid #999;
}
.portfolio__button {
	margin-top: 25px;
}
/*price*/
.price__table {
    font-size: 14px;
    border-collapse: collapse;
        width: inherit;
}
.price__row-head{
	background: black;
    color: #fff;
}
.price__th {
	padding: 0 5px;
}
.price__row:nth-of-type(even) {
    background: #f8f8f8;
}
.price__row {
    text-align: center;
}
.price__row td:first-child {
    text-align: left;
}
.price__td.price__td-title {
    padding: 5px 5px;
}
.price__table tr:first-child th:first-child {
  border-top-left-radius: 15px;
}
.price__table tr:first-child th:last-child {
  border-top-right-radius: 15px;
}
.footer_social{
	margin-bottom: 0px;
	gap:15px;
}
.price-additional {
    margin-top: 25px;
}
.price-additional__title {
    font-size: 24px;
    line-height: 1;
    color: #2F4858;
}
.price-additional__items {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 24px;
}
.price-additional__item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 6px 20px 0px rgb(51 136 255 / 15%);
    padding: 0 0 10px 0;
}
.price-additional__item-title {
    display: block;
    width: 100%;
    background: #000;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    padding: 10px 0;
    border-radius: 15px 15px 0 0;
}
.price-additional__item-list {
    margin: 15px 20px 20px 40px;
}
.price-additional__item-list li {
	display: flex;
	align-items: center;
	gap: 15px;
	list-style-type: none;
}
.price-additional__item-list li::before {
	content: "";
	min-width: 31px;
	height: 31px;
	background: url(/img/checked_icon.svg) no-repeat;
	background-size: 31px
}
/*form*/
.contact-form,
.calculator-form{
	background: #000;
	border-radius: 10px;
	box-shadow: 0px 6px 20px 0px rgb(51 136 255 / 15%);
	padding: 0 0 10px 0;
	width: fit-content;
	margin: 0 auto;
	padding: 25px 20px;
}
.contact-form-fieldset,
.calculator-form-fieldset {
	border: none;
}
.contact-form-fieldset-title,
.calculator-form-fieldset-title {
	margin-bottom: 25px;
    font-weight: 700;
    font-size: 24px;
    line-height: 35px;
    text-align: center;
    color: #0ec482;
}
.contact-form-fieldset-input,
.calculator-form-fieldset-input {
	display: block;
	height: 47px;
	margin-bottom: 15px;
	color: #000000;
}
.contact-form-fieldset-input::placeholder,
.calculator-form-fieldset-input::placeholder {
	color: #0ec482;
	font-size: 14px;
}
.contact-form-fieldset label,
.calculator-form-fieldset label{
	display: block;
    color: #0ec482;
    margin-bottom: 5px;
}
.contact-form-fieldset select{
	width: 100%;
}
.contact-form-fieldset-submit,
.calculator-form-fieldset-submit {
	display: block;
	width: 100%;
	height: 45px;
	padding: 0;
	margin: 30px 0 0;
	border: none;
	border-radius: 3px;
	font: inherit;
	font-size: 14px;
	text-transform: uppercase;
	background-color: #10e698;
	color: #fff;
	cursor: pointer;
	transition: box-shadow 0.15s, opacity 0.15s;
}
.contact-form-fieldset-submit:hover,
.contact-form-fieldset-submit:focus-visible,
.calculator-form-fieldset-submit:hover,
.calculator-form-fieldset-submit:focus-visible {
	background-color: #0ec482;
	box-shadow: 0 1.6px 3.6px 0 rgb(0 0 0 / 13%) inset, 0 0.3px 0.9px 0 rgb(0 0 0 / 11%) inset;
	opacity: 0.9;
}
.form-send-status,
.form-send-status--success,
.form-send-status--error {
  display: none;
}
.form-send .form-send-status,
.form-send-error .form-send-status {
  display: block;
}
.form-send .form-send-status--success{
  display: flex;
}
.form-send-error .form-send-status--error{
  display: flex;
}
.form-send-status div{
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px 15px;
}
.form-send-status__title{
    font-weight: 700;
    font-size: 30px;
    line-height: 35px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
		margin: 0;
}
.form-send-status__paragraph {
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    color: #fff;
	margin: 0;
}
.contact-form.form-send{
	background: #10e698;
}
.contact-form.form-send-error{
	background: #ff2d2d;
}
/*about*/
.about__container {
    display: grid;
    grid-template-columns: 1fr;
}
.about__img {
    order: 1;
}
.about__content {
    order: 0;
}
.about__statistics-items {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}
.about__statistics-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about__statistics-title {
    color: #10e698;
    font-size: 24px;
    font-weight: 700;
}
.about__statistics-description {
    text-align: center;
    color: #2F4858;
    font-size: 20px;
    font-weight: 700;
}
/*footer*/
.page-footer {
	background: #000;
	padding-top: 50px;
}
.page-footer__container {
	display: flex;
	flex-direction: column;
}
.page-footer__logo {
	width: 100px;
	margin: 20px 0;
}
.page-footer__column {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.page-footer__column.page-footer__column--one{
	flex-direction: row;
	justify-content: center;
	gap: 15px;
}
.page-footer__title{
	font-family: "Comfortaa";
	font-size: 28px;
	font-weight: 700;
	line-height: 1;
	color: #fff;
}
.page-footer__description{
	font-family: "Roboto";
	font-size: 20px;
	line-height: 1;
	color: #fff;
}
.page-footer__column--two{
	gap:10px;
}
.page-footer__contact{
	display: flex;
	gap: 25px;
	align-items: center;
}
.page-footer__phone-link{
	font-size: 20px;
	background: linear-gradient(to right, #10e698, #10e698 50%, #fff 50%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-size: 200% 100%;
	background-position: 100%;
}
.page-footer__footer-bottom{
	color: #fff;
	font-size: 14px;
	text-align: center;
	padding: 20px 15px 15px;
}
@media screen and (min-width: 550px) {
	.main-header{
		background-position: 50% 50%;
		background-size: 100%;
	}
}
@media screen and (min-width: 768px) {
	.main-header__phone-link {
		font-size: 18px;
	}
	.page-header {
		padding: 100px 0;
	}
	.page-header_title {
		font-size: 46px;
		margin-bottom: 50px;
	}
	.page-header__price {
		font-size: 40px;
		border: 5px solid #10e698;
		margin: 0 auto 75px auto;
	}
	.list__paragraph{
		font-size: 20px;
	}
	.list__item::before {
		content: "";
		width: 31px;
		height: 31px;
	}
	.answer__item .answer__title-label{
		height: auto;
	}
	.answer__image {
		object-fit: cover;
		height: 225px;
	}
	.page-footer__container{
		flex-direction: row;
		align-items: center;
		justify-content: center;
		gap: 25px;
	}
	.page-footer__column{
		flex-direction: row;
		align-items: center;
		justify-content: center;
		gap: 25px;
	}
	.page-footer__insta-img{
		height: 50px;
	}
}
@media screen and (min-width: 992px) {
	.main-header__list {
		flex-direction: row;
		justify-content: center;
		gap: 50px;
	}
	.main-header__list-item{
		margin: 0;
	}
	.main-header.sticky > .main-header__top {
		display: none;
	}
	.main-header__hamburger{
		display: none;
	}
	.main-header__button{
		display: none;
	}
	.main-header__top .main-header__social{
		display: flex;
	}
	.main-header__social{
		margin-bottom: 0px;
		margin-left: 25px;
		gap: 15px;
	}
	.main-header__nav:not(.is-active){
		display: none;
	}
	.page-header_title {
		font-size: 68px;
		text-align: center;
	}
	.page-header__block{
		padding: 25px 0;
	}
	.page-advantages__img{
		height: 233.48px;
	}
	.calculator__item-result .calculator-form{
		width: 500px;
	}
	.calculator__container{
		width: 900px;
		margin: 0 auto;
	}
	.page-features__items {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
	}
	.portfolio-swiper .swiper-slide{
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		gap:50px;
	}
	.portfolio__item{
		width: 60%
	}
	.portfolio__content{
		width: 40%
	}
	.portfolio-photo__img{
		height: 500px;
	}
	.portfolio-button-prev,
	.portfolio-button-next{
		width: 50px;
		height: 50px;
	}
	.portfolio__content-title {
		font-size: 24px;
		margin-bottom: 30px;
	}
	.portfolio__content-info{
		font-size: 18px;
		padding: 20px 0;
	}
	.price__table{
		box-shadow: 0px 6px 20px 0px rgb(51 136 255 / 15%);
		border-radius: 20px;
	}
	.price__th{
		padding: 15px;
	}
	.price__td.price__td-title{
		padding: 10px;
	}
	.price__table tr:last-child td:first-child {
		border-bottom-left-radius: 15px;
	}
	.price__table tr:last-child td:last-child {
		border-bottom-right-radius: 15px;
	}
	.price-additional__items{
		flex-direction: row;
		justify-content: center;
		gap: 50px;
	}
	.price-additional__item{
		max-width: 400px;
	}
	.about__container {
		grid-template-columns: 1fr 1fr;
		gap: 50px;
	}
	.about__img {
		order: 0;
	}
	.about__content {
		order: 1;
	}
	.about__paragraph {
		font-size: 16px;
		margin-bottom: 30px;
	}
	.about__statistics-items {
		flex-direction: column;
		align-items: center;
		gap: 50px;
	}
	.about__statistics-item {
		flex-direction: row;
		justify-content: center;
		gap: 15px;
		width: 100%;
		background: rgba(246, 246, 246, 0.5);
		border: 5px solid #F6F6F6;
		border-radius: 25px;
		padding: 25px 0;
}
	.about__statistics-title {
		font-size: 34px;
	}
	.about__statistics-description {
		font-size: 30px;
	}
}
@media screen and (max-width: 992px) {
	.main-header__nav {
		position: fixed;
		width: 100%;
		height: 100%;
		z-index: 1;
		transition: transform 0.3s ease 0s;
		transform: translate(-100%, 0px);
		overflow: hidden;
	}
	.main-header__nav.is-active {
		transform: translate(0%, 0px);
		position: relative;
		height: 100vh;
	}
	.main-header__list{
		margin: 25px 15px;
	}
	.main-header__list-item{
		background: #10e698;
		width: 100%;
	}
	.main-header__list-link{
		text-decoration: none;
		font-size: 18px;
		font-weight: 700;
		width: 100%;
		padding: 5px 50px;
		text-align: center;
	}
}

.photo-overlay {

	position: fixed;

	top: 0;

	left: 0;

	width: 100%;

	height: 100%;

	background-color: rgba(0, 0, 0, 0.8);

	display: flex;

	justify-content: center;

	align-items: center;

	z-index: 999;

}

.photo-overlay img {

	max-width: 100%;

	max-height: 100%;

}

.close-button {

	position: absolute;

	top: 20px;

	right: 20px;

	font-size: 30px;

    color: #fff;
    background-color: transparent;
    border: 1px solid;

	border-radius: 50%;

	width: 50px;

	height: 50px;

	cursor: pointer;

}