.contact-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-form {
    flex: 2;
}

.contact-form-inputs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-people {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.contact-card {
    background-color: rgb(255, 255, 255);
    box-shadow: 2px 2px 8px rgb(199, 199, 199);
    padding: 25px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    height: 100%;
}

.contact-flex h2 {
    text-transform: uppercase;
    font-size: 22px;
    color: rgb(50, 50, 50);
    margin-bottom: 5px;
}

.input-group input, .input-group textarea {
    color: rgb(50, 50, 50);
    border-color: rgba(0, 0, 0, 0.4);
    border-radius: 25px;
    padding: 15px 15px 15px 40px
}

.input-group textarea {
    resize: vertical;
    /* min-height: 54px; */
    height: 100px;
    max-height: 300px;
    transition: height 0s;
}

.floating-label, .input-group label i.fa {
    color: rgb(50, 50, 50);
}

.input-group input:-webkit-autofill,
.input-group input:-webkit-autofill:hover,
.input-group input:-webkit-autofill:focus,
.input-group input:-webkit-autofill:active{
	-webkit-text-fill-color: rgb(0, 0, 0) !important;
	transition: background-color 5000000s ease-in-out 0s;
}

.addresses {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}
@media (max-width: 1000px) {
    .contact-flex, .addresses {
        flex-direction: column;
    }
}
.addresses .card {
    padding: 20px;
    border-radius: 20px;
    background-color: #ffffff;
    box-shadow: 2px 2px 8px rgb(199, 199, 199);
    flex: 1;
}
.camp-flex {
    display: flex;
    gap: 20px;
}
@media (max-width: 768px)
{
    .camp-flex {
        flex-direction: column;
    }
}
.camp-flex > * {
    flex: 1;
}

.addresses .card h2 {
    font-size: clamp(20px, 4vw, 22px);
}

p.contact {
    display: flex;
    align-items: start;
    text-align: left;
    font-size: 18px;
    line-height: 2;
}

p.contact a {
    color: #000000;
}

p.contact, p.contact i {
    color: rgb(50, 50, 50);
    padding-right: 8px;
    padding-top: 8px;
}

p.contact i {
    width: 35px;
    min-width: 35px;
    display: flex;
    justify-content: center;
}

.card iframe {
    border-radius: 20px;
}

.person {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 18px;
}

.person, p.phone a {
    color: rgb(50, 50, 50);
}

p.phone {
    display: flex;
    align-items: center;
    gap: 15px;
}

.separator {
    border-bottom: 1px solid rgb(187, 187, 187);
}
section {
    position: relative;
    overflow: hidden;
}
section.img-bg.map::before {
    background-image: linear-gradient(0deg, rgba(226, 226, 226, 0.9), rgba(243, 243, 243, 0.95)), url('../img/map.webp');
}
.img-bg {
    color: rgb(50, 50, 50);
}
#contact-map {
    width: 100%;
    border: none;
}