.wrapper {
    /* background-color: rgb(240, 240, 240); */
}

.contact-form-wrapper {
    background-color: rgb(255, 255, 255);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.367);
}
.contact-title {
    font-size: 35px;
}

.information-item i {
    font-size: 16px;
    color: rgba(38, 34, 34, 0.804);
    transition: all 0.3s ease;
}

.information-item a {
    font-size: 16px;
    color: rgb(53, 53, 53);
    text-decoration: none;
    text-underline-offset: 5px;
    text-decoration-color: blue;
    transition: all 0.3s ease;
    opacity: 1;
}

.information-item:has(a:hover) {
    opacity: 1;
    color: var(--primary-color);
    text-decoration: underline;
    text-decoration-color: var(--primary-color);
    text-decoration-thickness: 1.2px;
    text-underline-offset: 5px;
}

.information-item:has(a:hover) > i, .information-item:has(a:hover) > a {
    color: var(--primary-color);
}


@media screen and (max-width: 992px) {
    .contact-title {
        font-size: 25px;
        font-weight: 600;
    }
}

@media screen and (max-width: 768px) {
    .contact-title {
        font-size: 20px;
    }
}

