:root {
    --accent-blue: #0A4860;
    --text-black: #292929;
    --text-gray: #535353;
    --light-gray: #BCBCBC;
    --text-white: #ffffff;
}

.about-reverse, .about-col {
	display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-image {
    width: 40%;
    margin-bottom: 90px;
}

.about-descr {
    width: 50%;
}

.about-descr ul li {
	padding-left: 20px;
	position: relative;
}

.about-descr ul li::before {
	content: '';
	width: 15px;
	transform: translateY(50%);
	border-radius: 50%;
	height: 15px;
	position: absolute;
	left: 0;
	background: url('../themes/demo/assets/images/check.svg') no-repeat center;
}

.section-descr {
    font-weight: 400;
    font-size: 1.0625rem;
    line-height: 28px;
    color: var(--text-gray);
}

.contacts-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contacts-left {
    width: 47%;
}

.contacts-left-text {
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 26px;
    color: var(--text-gray);
    margin-bottom: 28px;
}

.contacts-left-button {
	display: inline-block;
	cursor: pointer;
    padding: 26px 21px;
    border: none;
    font-weight: 500;
    font-size: 1rem;
    color: white;
    background: var(--accent-blue);
    transition: all .2s ease-in;
}

.contacts-left-button:hover {
	background: var(--text-black);
}

.contacts-right {
    width: 47%;
}

.contacts-right-text {
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 26px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.contacts-right-phone {
    display: inline-block;
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 26px;
    color: var(--text-black);
    margin-bottom: 30px;
    text-decoration: 1px solid underline transparent;
    transition: all .2s ease-in;
}

.contacts-right-phone:hover, .contacts-right-email:hover {
	text-decoration-color: var(--accent-blue);
}

.contacts-right-phone:active, .contacts-right-email:active  {
	color: var(--accent-blue);
}

.contacts-right-email {
    font-weight: 400;
    font-size: 1.875rem;
    line-height: 26px;
    color: var(--text-black);
    text-decoration: 1px solid underline transparent;
    transition: all .2s ease-in;
}

@media (max-width: 880px) {
	.about-reverse {
		flex-direction: column-reverse;
	}
	
	.about-col {
		flex-direction: column;
	}
	
	.about-descr {
		margin-bottom: 15px;
	}
	
	.about-image {
		margin-bottom: 30px;
	}
	
	.about-image, .about-descr {
		width: 100%;
	}
	
	.contacts-wrapper {
		flex-direction: column-reverse;
	}
	
	.contacts-left, .contacts-right {
		width: 100%;
	}
	
	.contacts-right {
		margin-bottom: 30px;
	}
}