section.contacts-start {
    padding-bottom: 96px;
}
.quote {
    position: relative;
    padding: 24px;
    border-radius: 12px;
    background: #DADAEC;
}
.exc-mark-right {
    position: absolute;
    top: 0;
    right: 66px;
}
section.about-team {
    padding: 64px 0;
    background: #06065f;
}
.block-question {
    display: flex;
    position: absolute;
    /*left: 45px;*/
    bottom: -64px;
}
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    /*row-gap: 32px;*/
    /*justify-content: space-between;*/
    gap: 48px;
}
.contact-box {
    display: flex;
    align-items: center;
    /*width: 50%;*/
    width: auto;
    gap: 16px;
}
.icon-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: #0000ef;
    border-radius: 100%;
}
.about-team .contact-box {
	width: 100%;
}
.about-team .icon-circle {
	transition: all 0.3s;
}
.about-team a img {
	filter: brightness(0) invert(1);
    transition: filter 0.3s;
}
.about-team a:hover {
	background: var(--white);
    color: var(--blue);
}
.about-team a:hover img {
	filter: brightness(1) invert(0);
}
.about-team .btn-group {
	gap: 24px;
}
.contact-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
section.about-team * {
    color: #fff;
}
section.contact-addresses {
	padding: 64px 0;
    background: #DADAEC;
}
section.form-fill .col-left {
    gap: 10px;
}
.form-fill label, .form-fill .h3, .form-fill ol > li, .form-fill ol li:before {
    color: #06065F!important;
}
form .custom-add-file {
    background: #06065F;
    color: #FBFBFB;
}
.block-circles {
    bottom: -100px;
}
.circle {
    border: 1.5px solid #06065F;
}
@media (max-width: 1279px) {
    section:not(.post-top):not(.contacts-start) {
        padding: 40px 0 !important;
    }
    section.contacts-start {
        padding-bottom: 40px;
    }
    .exc-mark-right {
        display: none;
    }
    section.about-team .col-left {
        text-align: center;
    }
    .block-question {
        left: initial;
        right: 15px;
        bottom: -76px;
        width: 100px;
    }
    .contact-wrapper {
        flex-direction: column-reverse;
        gap: 32px;
    }
    .block-question svg {
        display: none;
    }
	.about-team .contact-box {
		flex-wrap: wrap;
		justify-content: center;
	}
	.about-team .btn-group {
		justify-content: center;
	}
	.about-team .btn-group a {
		width: 100%;
		max-width: 300px;
	}
    .contact-box {
        display: flex;
        width: 100%;
        gap: 16px;
        align-items: center;
    }
    .block-circles {
        display: none;
    }
	.contact-addresses .h2 {
		text-align: center;
	}
}