/* Hero section */
.hero-section {
    position: relative;
    z-index: 2;
    color: #fff;
    top: 0;
    height: 40%;
}


.hero-section h3 {
    position: relative;
    font-size: 64px;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-top: 10%;
    z-index: 3;
}
/* End of hero section */

/* Coordinates section */
.coordinates__item {
    width: 307px;
    height: 307px;
    background: #FFFFFF;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 20px 0;
}

.coordinates__item .icon {
    border-radius: 50%;
    background-color: var(--bs-purple);
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coordinates__item.social-networks {
    width: 10%;
    box-shadow: none;
    padding: 0;
}

.coordinates__item.social-networks .social-networks_icon {
    width: 92.38px;
    height: 92.38px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.coordinates__item .title span {
    font-size: 24px;
}

.coordinates__item span {
    font-size: 20px;
}
/* End of coordinates section */

/* Contact form section */
.contact-form_wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.contact-form_wrapper .contact_form {
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form_wrapper .contact_form textarea {
    height: 150px;
}

.contact-form_wrapper .contact_form .submit-btn {
    width: 100%;
}

.contact-form_wrapper .form {
    width: 45%;
    box-shadow: -14px 14px 0px -1px var(--bs-purple);
} 

.contact-form_wrapper .map {
    width: 50%;
}
/* End of contact form */
