@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

@font-face {
    font-family: 'Vela Sans';
    src: url('../fonts/VelaSans-Regular.eot');
    src: url('../fonts/VelaSans-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/VelaSans-Regular.woff2') format('woff2'),
    url('../fonts/VelaSans-Regular.woff') format('woff'),
    url('../fonts/VelaSans-Regular.ttf') format('truetype'),
    url('../fonts/VelaSans-Regular.svg#VelaSans-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vela Sans';
    src: url('../fonts/VelaSans-SemiBold.eot');
    src: url('../fonts/VelaSans-SemiBold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/VelaSans-SemiBold.woff2') format('woff2'),
    url('../fonts/VelaSans-SemiBold.woff') format('woff'),
    url('../fonts/VelaSans-SemiBold.ttf') format('truetype'),
    url('../fonts/VelaSans-SemiBold.svg#VelaSans-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vela Sans';
    src: url('../fonts/VelaSans-Bold.eot');
    src: url('../fonts/VelaSans-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/VelaSans-Bold.woff2') format('woff2'),
    url('../fonts/VelaSans-Bold.woff') format('woff'),
    url('../fonts/VelaSans-Bold.ttf') format('truetype'),
    url('../fonts/VelaSans-Bold.svg#VelaSans-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}



/**************** Basic ****************/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}

body {
    background: #fff;
    line-height: normal;
    font-family: 'Invole', sans-serif;
    font-weight: 400;
    color: #000;
}

.wrapper {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 1650px;
    padding: 0 15px;
    margin: 0 auto;
}

.section {
    width: 100%;
    position: relative;
}

.button {
    width: fit-content;
    font-family: 'Vela Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 25px;
    text-align: center;
    color: #fff;
    background: #66B32F;
    border-radius: 5px;
    padding: 15px 35px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.button:hover {
    background-color: #74e461;
}

input:focus,
select:focus {
    outline: none;
}

.section {
    width: 100%;
    position: relative;
}

.section-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 55px;
    font-weight: 400;
    line-height: 75px;
    text-align: center;
    color: #383838;
}

/*******************************/

/*********** Header ************/

.header {
    width: 100%;
    position: relative;
    background-color: #fff;
    padding: 25px 0;
}

.header-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.header-logo {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-decoration: none;
	flex: none;
}

.header-logo__img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.header-logo__content {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 5px;
    margin-left: 15px;
    gap: 5px;
}

.header-logo__content > h5 {
    font-size: 26px;
    font-family: 'Vela Sans', sans-serif;
    font-weight: bold;
    line-height: 26px;
    text-align: left;
    color: #66b32f;
}

.header-logo__content > p {
    font-family: 'Vela Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    text-align: left;
    color: #4f4f4f;
}

.header-location {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-left: 40px;
}

.header-location > img {
    width: 15px;
}

.header-location > p {
    font-family: 'Vela Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    text-align: left;
    color: #383838;
}

.header-location > p > strong {
    font-weight: 700;
    display: block;
}

.header-call {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-left: auto;
}

.header-call__number {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-family: 'Vela Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 30.05px;
    white-space: nowrap;
    text-align: left;
    text-decoration: none;
    color: #383838;
}

.header-call__number > img {
    width: 18px;
    height: 18px;
}

.header-call__info {
    font-family: 'Vela Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 21.86px;
    color: #383838;
    position: relative;
}

.header-call__info:before {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #60FF66;
    left: -10px;
    top: 10px;
}

.header-socials {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
}

.header-socials > a {
    width: 32px;
    height: 32px;
    position: relative;
    text-decoration: none;
  display: flex;
}

.header-socials > a.ico-call__number {
    background: #fff;
    border: 2px solid #383838;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    display: none;
}

.header-socials > a.ico-call__number img{
    width: 100%;
    height: auto;
    padding: 6px;
}

.header-socials > a  > svg {
    width: 100%;
    height: 100%;
}

.header-socials > a  > svg path {
    transition: all 0.3s ease-in-out;
}

.header-socials > a:first-child > svg:hover path {
    fill: #6F9EF8;
}

.header-socials > a:nth-child(2) > svg:hover path {
    fill: #74E461;
}

.header__button {
    margin-left: 50px;
}

.header__fixed{
    padding: 10px 0;
    position: fixed;
    width: 100%;
    background: #fff;
    z-index: 9;
    top: -90px;
    transition: 0.2s linear;
}
.header__fixed .header-row{
    justify-content: space-between;
}

/******************************/

/************ Main ************/

.main {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about {
    padding: 130px 0 180px;
    background-image: url("../images/about-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.about:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(270deg, rgba(56, 56, 56, 0) 0%, rgba(56, 56, 56, 0.5) 26.75%, #383838 100%);
}

.about:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #3838385C;
}

.about .container {
    z-index: 2;
    position: relative;
}

.about-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.about-left {
    width: 60%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-left__title {
    font-family: 'Open Sans', sans-serif;
    font-size: 55px;
    font-weight: 400;
    line-height: 75px;
    text-align: left;
    color: #ffffff;
    margin-bottom: 25px;
}

.about-left__title > strong {
    font-weight: 700;
    display: inline-block;
    /*display: block;*/
}

.about-left__subtitle {
    font-family: 'Vela Sans', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 32.78px;
    text-align: left;
    color: #ffffff;
    margin-bottom: 55px;
}

.about-left__subtitle > strong {
    font-weight: 700;
    display: block;
}

.about-left__text {
    font-family: 'Vela Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 24.59px;
    text-align: left;
    color: #ffffff;
    margin-top: 20px;
}

.about-right {
    width: 30%;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 35px;
    border-radius: 20px;
    background-color: #fff;
}

.about-right:before {
    content: '';
    position: absolute;
    left: 10px;
    right: 10px;
    top: 10px;
    bottom: 10px;
    border: 1px solid #E4E4E4;
    border-radius: 20px;
    pointer-events: none;
}

.about-right__title {
    font-family: 'Open Sans', sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 33.79px;
    text-align: center;
    color: #383838;
    margin-bottom: 30px;
}

.about-right__title > strong {
    font-weight: 700;
    display: block;
}

.about-form {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.label-select {
    width: 100%;
    position: relative;
    height: 60px;
    border-radius: 5px;
    background-color: #f6f6f6;
    font-family: 'Vela Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 24.59px;
    text-align: left;
    color: #7b7b7b;
    padding: 12px 17px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

.label-select select {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    background-color: #f6f6f6;
    font-family: 'Vela Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 24.59px;
    text-align: left;
    color: #7b7b7b;
    border: none;
    cursor: pointer;
    -webkit-appearance: none;
}

.label-select > img {
    width: 32px;
    height: 32px;
    position: absolute;
    top: 13px;
    right: 17px;
    pointer-events: none;
}

.label-input {
    width: 100%;
    position: relative;
    height: 60px;
    border-radius: 5px;
    background-color: #f6f6f6;
    text-align: left;
    color: #7b7b7b;
    padding: 12px 17px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.label-input > img {
    width: 16px;
    height: 16px;
    opacity: .5;
}

.label-input > input {
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
    font-family: 'Vela Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 24.59px;
}

.about-form__button {
    width: 100%;
    margin-top: 10px;
}

.about-form__conf {
    font-family: 'Vela Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 21.86px;
    text-align: center;
    color: #7E7E7E;
    margin-top: 10px;
}

.about-form__conf > a {
    color: #383838;
    text-decoration: none;
    border-bottom: 1px solid #383838;
}

.advantages {
    padding: 130px 0;
}

.advantages-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 70px;
}

.advantages-content {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
}

.advantages-block {
    width: 30%;
    max-width: 400px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.advantages-block__img {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.advantages-block__img:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("/images/icons/ellipse-border.svg");
}

.advantages-block__img > img {
    max-width: 90%;
}

.advantages-block > h5 {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 24.51px;
    text-align: center;
    color: #383838;
    margin-top: 5px;
}

.advantages-block > p {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 24.51px;
    text-align: center;
    color: #383838;
    margin-top: 5px;
}

.price {
    padding: 100px 0;
    background: #F6F6F6;
}

.price-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.price-left {
    width: 50%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.price-left__title {
    text-align: left;
}

.price-left__text {
    max-width: 420px;
    font-family: 'Vela Sans', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 30.05px;
    text-align: left;
    color: #383838;
    margin-top: 25px;
    margin-bottom: 50px;
}

.price-right {
    width: 40%;
    position: relative;
}

.price-right > img {
    width: 100%;
}

.buy {
    padding: 100px 0;
}

.buy-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 70px;
}

.buy__title {
    max-width: 1100px;
}

.buy-content {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
}

.buy-block {
    width: calc(100% / 3 - 15px);
    height: 280px;
    position: relative;
    display: flex;
    border-radius: 10px;
    overflow: hidden;
}

.buy-block:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(60, 60, 60, 0.71) 100%);
}

.buy-block > img {
    width: 100%;
    height: 100%;
}

.buy-block > p {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-family: 'Open Sans', sans-serif;
    font-size: 26px;
    font-weight: 600;
    line-height: 35.41px;
    text-align: left;
    color: #ffffff;
    z-index: 1;
}

.buy-block:hover .buy-block__hover {
    z-index: 2;
    opacity: 1;
}

.buy-block__hover {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: -2;
    opacity: 0;
    background-color: #66B32F;
    transition: all 0.3s ease-in-out;
}

.buy-block__hover__button {
    background-color: #fff;
    color: #66B32F;
}

.buy-block__hover__button:hover {
    background-color: #fff;
    color: #66B32F;
    transform: scale(1.1);
}

.sell {
    padding: 100px 0;
    background: #F6F6F6;
}

.sell-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 70px;
}

.sell__title {
    max-width: 755px;
}

.sell-content {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.sell-block {
    width: calc(100% / 3 - 15px);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    background: #66B32F;
    border-radius: 10px;
    gap: 10px;
}

.sell-block > span {
    font-family: 'Open Sans', sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 54.47px;
    text-align: left;
    color: #365B1C;
}

.sell-block > h5 {
    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 32.68px;
    text-align: left;
    color: #ffffff;
}

.sell-block > p {
    font-family: 'Vela Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 24.59px;
    text-align: left;
    color: #dcedcf;
}

.gallery {
    padding: 100px 0;
}

.gallery-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 80px;
}

.gallery__title {
    max-width: 900px;
    text-align: left;
}

.gallery-content {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-block {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-block__img {
    width: 100%;
    height: 260px;
    border-radius: 10px;
    object-fit: cover;
}

.gallery-block__title {
    font-family: 'Open Sans', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 43.58px;
    text-align: left;
    color: #383838;
}

.gallery-block__info {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gallery-block__info__item {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.gallery-block__info__item-param {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 27.24px;
    text-align: left;
    color: #383838;
}

.gallery-block__info__item-sum {
    font-family: 'Vela Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 24.59px;
    text-align: left;
    color: #383838;
}

.gallery-block__info__item-span {
    font-family: 'Vela Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 24.59px;
    text-align: center;
    color: #ffffff;
    border-radius: 13px;
    background: #66B32F;
    padding: 0 10px;
}

.reviews {
    padding: 100px 0;
    background: #F6F6F6;
}

.reviews-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 70px;
}

.reviews-content {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.reviews-block {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reviews-block__img {
    width: 100%;
    position: relative;
    text-decoration: none;
    border-radius: 10px;
    display: flex;
}

.reviews-block__img:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background-image: url("/images/icons/play.svg");
    background-size: contain;
}

.reviews-block__img > img {
    width: 100%;
    min-height: 200px;
    max-height: 600px;
    object-fit: cover;
    border-radius: 10px;
}

.reviews-block > h5 {
    font-family: 'Open Sans', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 43.58px;
    text-align: left;
    color: #383838;
}

/***********************************/

/************** Footer *************/

.footer {
    width: 100%;
    position: relative;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.footer-row {
    width: 100%;
    max-width: 530px;
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    padding: 40px;
}

.footer__title {
    text-align: left;
    margin-bottom: 40px;
}

.footer__info {
    font-family: 'Vela Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 27.32px;
    text-align: left;
    color: #383838;
    text-decoration: none;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-bottom {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 290px;
    gap: 30px;
}

.footer-bottom__soc {
    width: 50px;
    height: 50px;
    position: relative;
    text-decoration: none;
}

.footer-bottom__soc > svg {
    width: 100%;
    height: 100%;
}

.footer-bottom__soc > svg > path {
    transition: all 0.3s ease-in-out;
}

.footer-bottom__soc:first-child > svg:hover path {
    fill: #6F9EF8;
}

.footer-bottom__soc:nth-child(2) > svg:hover path {
    fill: #74E461;
}

.footer-bottom__conf {
    font-family: 'Vela Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 21.86px;
    text-align: left;
    color: #383838;
    margin-left: auto;
    text-decoration: none;
}

/**********************************/

/************* Modal **************/

.modal-bg {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: rgb(0 0 0 / 80%);
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.modal-bg.active {
    z-index: 10;
    opacity: 1;
    overflow: auto;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    background: transparent;
}

.close-modal > img {
    width: 100%;
    height: 100%;
}

.feedback-content {
    width: 100%;
    max-width: 660px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    background-color: #fff;
    border-radius: 20px;
}

.feedback-content:after {
    content: '';
    position: absolute;
    left: 10px;
    right: 10px;
    top: 10px;
    bottom: 10px;
    border: 1px solid #E4E4E4;
    pointer-events: none;
    border-radius: 20px;
}

.feedback__title {
    font-family: 'Open Sans', sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 57.93px;
    text-align: center;
    color: #383838;
    margin-bottom: 30px;
}

.feedback-form {
    width: 100%;
    max-width: 460px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.feedback-form label {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    padding: 18px;
    border-radius: 5px;
    background: #F6F6F6;
}

.feedback-form label input {
    width: 100%;
    border: none;
    background: transparent;
    font-family: 'Vela Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 24.59px;
    color: #7b7b7b;
}

.feedback-form__button {
    width: 290px;
    margin-top: 20px;
}

.feedback-form__conf {
    max-width: 380px;
    font-family: 'Vela Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 21.86px;
    text-align: center;
    color: #7e7e7e;
}

.feedback-form__conf > a {
    color: #383838;
    text-decoration: none;
    border-bottom: 1px solid #383838;
}

.calc-content {
    width: 100%;
    max-width: 520px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    background-color: #fff;
    border-radius: 20px;
}

.calc-content:after {
    content: '';
    position: absolute;
    left: 10px;
    right: 10px;
    top: 10px;
    bottom: 10px;
    border: 1px solid #E4E4E4;
    pointer-events: none;
    border-radius: 20px;
}

.calc-form {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.calc-content__title {
    font-family: 'Open Sans', sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 33.79px;
    text-align: center;
    color: #383838;
    margin-bottom: 30px;
}

.calc-content__title > strong {
    font-weight: 700;
    display: block;
}

.calc-form__button {
    width: 100%;
    margin-top: 10px;
}

.calc-form__conf {
    font-family: 'Vela Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 21.86px;
    text-align: center;
    color: #7E7E7E;
    margin-top: 10px;
}

.calc-form__conf > a {
    color: #383838;
    text-decoration: none;
    border-bottom: 1px solid #383838;
}

/*****************************/

textarea.uk-form-danger, input.uk-form-danger {animation-duration: .5s;animation-timing-function: ease-out;animation-fill-mode: both;animation-name: uk-shake;}
input.uk-form-danger::placeholder {color: #f00;}
@keyframes uk-shake {
    0%, 100% { transform: translateX(0); }
    10% { transform: translateX(-9px); }
    20% { transform: translateX(8px); }
    30% { transform: translateX(-7px); }
    40% { transform: translateX(6px); }
    50% { transform: translateX(-5px); }
    60% { transform: translateX(4px); }
    70% { transform: translateX(-3px); }
    80% { transform: translateX(2px); }
    90% { transform: translateX(-1px); }
}

.mod_okno{}
.mod_okno .mod_title{font-family: 'Open Sans', sans-serif; font-size: 28px; font-weight: 500; text-align: center; color: #383838; margin-bottom: 30px;}
.mod_okno .mod_desc{font-family: 'Vela Sans', sans-serif; font-size: 16px; font-weight: 400; text-align: center; color: #7E7E7E; margin-bottom: 30px;}
.mod_okno .button{text-align: center; margin: auto;}
/*********** Media ***********/

@media only screen and (max-width: 1440px) {

    .header__button {
        margin-left: 20px;
    }

    .header-location {
        display: none;
    }

    .advantages-block {
        width: calc(100% / 3 - 40px);
    }

    .about {
        padding: 100px 0;
    }

}

@media only screen and (max-width: 1170px) {

    .about-row {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .about-left {
        width: 80%;
    }

    .about-right {
        width: 100%;
        max-width: 600px;
    }

    .price-row {
        flex-direction: column;
        align-items: center;
    }

    .price-left,
    .price-right {
        width: 80%;
    }

    .buy-block {
        width: calc(50% - 10px);
    }

}

@media only screen and (max-width: 992px) {

    .header__button {
        display: none;
    }

    .about-left {
        width: 100%;
    }

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

    .price-left, .price-right {
        width: 100%;
    }

    .footer-row {
        max-width: 400px;
    }

}

@media only screen and (max-width: 768px) {

    .header-call {
        display: none;
    }

    .header-socials {
        margin-left: auto;
		flex-wrap: wrap;
		justify-content: end;
    }

    .header-socials > a.ico-call__number {
        display: flex;
    }

    .about {
        padding: 90px 0;
    }

    .about-left__title {
        font-size: 48px;
        line-height: 48px;
    }

    .section-title {
        font-size: 38px;
        line-height: 42px;
    }

    .advantages {
        padding: 60px 0;
    }

    .buy-content {
        justify-content: center;
    }

    .buy-block {
        width: 80%;
    }

    .sell-content {
        flex-direction: column;
    }

    .sell-block {
        width: 100%;
    }

    .sell {
        padding: 60px 0;
    }

    .gallery-block__info__item {
        flex-direction: column;
        align-items: flex-start;
    }

    .gallery-block__title {
        font-size: 24px;
    }

    .reviews-block > h5 {
        font-size: 24px;
    }

    .footer-row {
        max-width: 100%;
        padding: 20px;
    }

    .footer iframe {
        position: relative;
        height: 350px;
    }

    .footer-bottom {
        margin-top: 30px;
    }

}

@media only screen and (max-width: 600px) {
    .header__fixed.fixed {
        top: 0;
        box-shadow: 0px 5px 25px 0px rgb(0 0 0 / 15%);
    }
	.header-socials > a {
		width: 25px;
		height: 25px;
	}
}
@media only screen and (max-width: 480px) {

    .header {
        padding: 15px 0;
    }

    .header-logo__img {
        width: 60px;
        height: 60px;
    }

    .header-logo__content {
        margin-left: 5px;
        gap: 2px;
    }

    .about-left__title {
        font-size: 32px;
        line-height: 36px;
    }

    .about-left__subtitle {
        font-size: 20px;
        line-height: 24px;
    }

    .button {
        font-size: 16px;
        padding: 10px 20px;
    }

    .about-right__title {
        font-size: 24px;
        line-height: 28px;
    }

    .about-right {
        padding: 20px;
    }

    .about-form__conf {
        font-size: 14px;
    }

    .section-title {
        font-size: 26px;
        line-height: 30px;
    }

    .buy-row,
    .sell-row,
    .reviews-row,
    .gallery-row,
    .advantages-content,
    .advantages-row {
        gap: 30px;
    }

    .advantages-block {
        width: 100%;
    }

    .price {
        padding: 30px 0;
    }

    .price-left__text {
        font-size: 20px;
        line-height: 24px;
        margin: 20px 0;
    }

    .buy {
        padding: 30px 0;
    }

    .buy-block {
        width: 100%;
        height: unset;
    }

    .buy-block > p {
        font-size: 20px;
    }

    .sell-block > h5 {
        font-size: 22px;
    }

    .reviews,
    .gallery {
        padding: 45px 0;
    }

    .footer-row {
        padding: 20px 0;
    }

    .footer__info {
        font-size: 18px;
    }

    .footer-bottom {
        gap: 15px;
    }

    .footer-bottom__soc {
        width: 35px;
        height: 35px;
    }

    .calc-content,
    .feedback-content {
        padding: 50px 20px;
    }

    .feedback-form__button {
        width: 100%;
    }

    .feedback__title {
        font-size: 24px;
        line-height: 28px;
    }

    .calc-form__conf,
    .feedback-form__conf {
        font-size: 14px;
    }

    .calc-content__title {
        font-size: 24px;
        line-height: 28px;
    }

}

@media only screen and (max-width: 450px) {

    .header-logo__content > p {
        font-size: 14px;
    }

}
@media only screen and (max-width: 390px) {

    .header .container{
        padding: 0 10px;
    }

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

    .header-logo__img {
        width: 30px;
        height: auto;
    }

    .header-logo__content {
        padding: 0;
        gap: 0;
    }
  

    .header-logo__content > p {
        font-size: 9px;
        line-height: normal;
    }

    .header-socials {
        gap: 7px;
    }

    .header-socials > a {
        width: 28px;
        height: 28px;
    }
  

}


.header__fixed a.call__number.zphone, .header .mob-call__number {
    display: none;
    flex: none;
    white-space: nowrap;
    width: 100%;
    height: auto;
    justify-content: flex-end;
    color: #383838;
    font-size: 18px;
    font-weight: 700;

}
.header .mob-call__number{}
@media only screen and (max-width: 768px) {
    .header__fixed a.call__number.zphone, .header .mob-call__number{display: inline-flex;}
}
@media only screen and (max-width: 390px) {
    .header__fixed a.call__number.zphone, .header .mob-call__number {font-size: 15px !important;}
}