.sect-hero {
    padding: 4em 0 5em 0;
    background: url('../themes/demo/assets/images/background-blue.svg') no-repeat center;
    background-size: cover;
}

.hero-title {
    font-weight: 700;
    font-size: 2.8125rem;
    line-height: 1.2;
    color: white;
}

.contacts-container {
    background: var(--accent-blue);
    width: 49%;
    border-radius: 20px;
}

.contacts-content {
    padding: 4em 0%;
}

.sect-contacts .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F7F7F7;
    border-radius: 20px;
}

.contacts-list {
    max-width: 75%;
    margin: 0 auto;
}

.contacts-list-item:not(:last-child) {
    margin-bottom: 25px;
    padding-bottom: 1em;
    border-bottom: 1px solid #FFFFFF33;
}

.contacts-list-item-title {
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.2;
    color: white;
    margin-bottom: 8px;
}

.contacts-list-item-group {
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.2;
    color: white;
    margin-right: 2rem;
    display: flex;
    margin-bottom: 1rem;
}

.contacts-list-item-group-svg {
	display: flex;
	flex-direction: column;
}

.contacts-list-item-group-svg svg {
	margin-bottom: 25px;
}

.contacts-list-item-link {
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.2;
    color: white;
    margin-bottom: 32px;
    display: block;
    transition: all .2s ease-in;
}

a.contacts-list-item-link:hover {
    color: var(--dark-blue);
}

.contacts-list-item-group svg {
    margin-right: 10px;
}

.contacts-list-item:last-child .contacts-list-item-group {
    display: flex;
}

.map-link {
    text-decoration: 1px solid underline white;
    transition: all .2s ease-in;
}

a.map-link:hover {
    color: var(--dark-blue);
    text-decoration-color: var(--dark-blue);
}

.form-container {
    width: 45%;
    margin: 0 auto;
}

.form-title {
    font-weight: 700;
    font-size: 2.8125rem;
    line-height: 1.2;
    color: #151515;
    margin-bottom: 22px;
}

.form-subtitle {
    font-weight: 400;
    font-size: 1.375rem;
    line-height: 1.2;
    color: #666666;
    margin-bottom: 22px;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Old close btn */
/* .close {
	width: 20px;
	height: 25px;
	border: 1px solid;
	display: flex;
	justify-content: center;
	border-radius: 1rem;
} */


/* New close btn */
.alert .close {
	width: 25px;
	height: 25px;
	border: 1px solid #000;
	border-radius: 50%;
	font-size: 18px;
	line-height: 20px;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	position: relative;
}
.alert .close span {
	font-weight: bold;
	font-size: 20px;
}



.consultation-form-input {
    padding: 25px 20px;
    margin-bottom: 22px;
    border: 1px solid #BDBDBD;
    border-radius: 7px;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.1;
    color: #777777;
    background: transparent;
    transition: all .2s ease-in;
}

.consultation-form-input:focus {
    border-color: var(--accent-blue);
    outline: none;
    color: var(--accent-blue);
}

.consultation-form-input:focus::placeholder {
    color: var(--accent-blue);
}

.consultation-form-input::placeholder {
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.1;
    color: #777777;
}

.consultation-form-button {
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.2;
    color: white;
    background: var(--accent-blue);
    padding: 24px 0;
    border: none;
    border-radius: 7px;
    transition: all .2s ease-in;
}

.consultation-form-button:hover {
    background: var(--dark-blue);
}

.consultation-form-button:active {
    background: #151515;
}

#map {
    height: 50vh;
    width: 100%;
    border-radius: 20px;
    margin-top: 50px;
    overflow: hidden;
}

.contacts-list-item-group svg {
    min-width: 16px;
    min-height: 16px;
}

@media (max-width: 1215px) {
	.contacts-list-item-group-svg svg {
		margin-bottom: 22px;
	}
}

@media (max-width: 1024px) {
    .sect-contacts .container {
        flex-direction: column-reverse;
    }

    .contacts-container {
        width: 100%;
        margin-bottom: 25px;
    }

    .form-container {
        padding: 1em 3em;
        width: 100%;
    }
    
    .contacts-list-item-group-svg svg {
		margin-bottom: 22px;
	}
}

@media (max-width: 768px) {
	.contacts-list-item-group-svg svg {
		margin-bottom: 20px;
	}
}

@media (max-width: 550px) {
	.contacts-list-item-group-svg svg {
		margin-bottom: 18px;
	}
}

@media (max-width: 425px) {
	.contacts-list-item-group-svg svg {
		margin-bottom: 15px;
	}
}