.contact-banner {
    position: relative;
    height: 850px;
}

.contact-banner::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: rgba(0, 0, 0, 0.39);
}

.contact-banner-icon {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    z-index: 4;
}

.contact-banner-image {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-banner-icon img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 100%;
}

.contact-banner-content {
    position: relative;
    margin-top: 100px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(73, 73, 73, 0.32);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 5;
    padding: 20px 15px;
}

.contact-banner-title-and-sub-title {
    text-align: center;
    color: var(--white);
}

.contact-banner-texts a {
    color: var(--white);
    text-decoration: none;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.contact-banner-texts a span {
    display: block;
    font-weight: 500;
}

.contact-banner-texts {
    margin-top: 10px;
}

.contact-banner-contacts {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    width: 90%;
    margin-left: 5%;
    gap: var(--item-spacing);
}

.contact-banner-contacts a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background-color: rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    width: 100%;
    padding: 5px 20px;
}

.contact-link-icon {
    width: 25px;
    height: 25px;
}

.contact-link-icon svg {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media only screen and (min-width:992px) {
    .contact-banner-content {
        margin-top: 150px;
        padding: 30px 40px;
        width: 70%;
        margin-left: 15%;
    }

    .contact-banner-contacts {
        width: 100%;
        margin-left: 0;
        align-items: center;
        justify-content: center;
    }

    .contact-banner-contacts a {
        width: fit-content;
    }
}

@media only screen and (min-width:1200px) {
    .contact-banner-content {
        width: 60%;
        margin-left: 20%;
        padding: 50px 60px;
        margin-top: 200px;
    }

    .contact-banner-contacts {
        margin-top: 30px;
    }

}

@media only screen and (min-width:1400px) {
    .contact-banner-title-and-sub-title {
        width: 80%;
        margin-left: 10%;
    }
}

@media only screen and (min-width:992px) and (hover:hover) {
    .contact-banner-contacts a {
        transition: background-color var(--timing-function);
    }

    .contact-banner-contacts a:hover {
        background-color: rgba(255, 255, 255, 0.15)
    }
}