body {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-kerning: auto;
    font-weight: normal;
    font-style: normal;
}

* {
    transition: all 0.3s ease-in-out;
}


.uf-img-contact-form-01 {
    max-width: 100%;
    animation: uf-animation 4s ease-in-out 1s infinite alternate;
    position: relative;
}

.uf-ct-01-text-primary {
    color: #b7b7b7;
}

.uf-ct-01-btn-primary {
    background-color: none;
    border: 1px solid #000;
    color: #000;
    transition: all 0.3s ease-in-out;
}

.uf-ct-01-btn-primary:hover {
    background-color: #000000;
    color: #fff;
}

@keyframes uf-animation {
    0% {
        top: 0px;
    }

    50% {
        top: -30px;
    }

    100% {
        top: 0px;
    }
}

section#contact-section {
    padding: 5rem 0rem;
}

div.wrapper-contact-wrapper {
    display: flex;
    gap: 5rem;
    justify-content: space-between;
    align-items: center;
}

div.contact-details-wrapper {
    flex-basis: 40%;
}

div.contact-form-wrapper {
    flex-basis: 60%;
}

@media screen and (max-width: 768px) {
    div.wrapper-contact-wrapper {
        flex-direction: column-reverse;
    }

    div.contact-details-wrapper {
        flex-basis: 100%;
    }

    div.contact-form-wrapper {
        flex-basis: 100%;
    }
}

li.list-item a {
    text-decoration: underline;
    color: #000;
    transition: all 0.3s ease-in-out;
}

li.list-item a:hover {
    color: #0f12c2;
}