
.form-block {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 40px;
}

.btn.send_form {
    max-width: 100%;
    margin: 0 auto;
    padding: 10px;
    background-color: #29292D;
    transition: 0.3s all ease;
    color: #ffffff;
}

.btn.send_form:hover {
    max-width: 100%;
    margin: 0 auto;
    padding: 10px;
    background-color: var(--button--hover);
    transition: 0.3s all ease;
    color: #ffffff;
}

.form-block h3 {
    padding: 0;
    margin: 0;
}

.form-block .form-group {
    overflow-y: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 340px;
}

.form-block textarea,
.form-block input {
    height: 40px;
    width: 100%;
    padding: 0 10px;
    outline: none !important;
    margin: 5px 0;

    color: #3F3F44;
    font-family: 'Calibri', serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    border-radius: 2px;
    background-color: #fff;
    border: 1px solid #DADADA;
    transition: 0.3s all ease;
}

input::placeholder {
    color: #9E9EA7;
}

.fancybox__content .form-block textarea:focus,
.form-block input:focus {
    transition: 0.3s all ease;
    border: 1px solid #3F3F44;
    outline: none;
}

.form-block textarea {
    height: 95%;
    padding: 12px;
}

.navigation-block__contacts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.form-block .button {
    display: inline-block;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
    font-size: 18px;
    line-height: 30px;
    height: 50px;
    transition: 0.6s;
    background-color: #EA2839;
    color: #ffffff;
    border: 0;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: normal;
    text-align: center;
    margin: 0 auto;
}

.form-block .button:hover {
    transition: 0.6s;
    background-color: #EE061A;
}

.fancybox__content .errortext {
    font-size: 12px;
}

.contacts__item-tel {
    color: white;
	white-space: nowrap;
}
.contacts__item-tel span {
    color: white;
	white-space: nowrap;
}
.contacts__item-tel img {
    width: 25px;
	display: none;
}
@media (max-width: 1500px) {
	.contacts__item-tel img {
		display: block;
	}
}

@media (max-width: 1367px) {
    .navigation-block__contacts {
        gap: 10px;
    }
	.navigation-block__contacts .contacts__item .button__link {
		padding: 0 10px;
	}
}

@media (max-width: 1200px) {
    .navigation-block {
        display: none;
    }
}

.top-baner-on-main {
    width: 100%;
    margin: -30px 0 30px 0;
}