.top-section {
    margin-top: 100px;
    margin-bottom: 50px;
    height: 80vh;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
}
.top-border {
    width: 80%;
    height: 100%;
    border-radius: 25px;
    position: relative;
}
.top-image {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
    background-color: rgb(84, 56, 65);
}
.top-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
    filter: blur(5px);
    opacity: 50%;
}
.title {
    width: 100%;
    display: flex;
    justify-content: center;
    position: absolute;
    z-index: 2;
}
.title h1 {
    font-size: 80px;
    margin: 0;
    padding: 0;
    background-color: white;
    padding: 15px 50px 15px 50px;
    border-radius: 0px 0px 25px 25px;
    text-align: center;
}
.top-content {
    z-index: 2;
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%);
    color: white;
}
.contact-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.contact-content h5 {
    font-size: 24px;
    margin-bottom: 50px;
    font-style: italic;
    text-align: center;
    min-width: 600px;
}
.contact-info {
    width: 375px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
    margin-left: 125px;
}
.contact-info p {
    font-size: 20px;
    margin: 0;
    padding: 0;
}
.contact-info span {
    font-weight: bolder;
    font-size: 20px;
    margin: 0;
    padding: 0;
}
.contact-info a {
    font-size: 20px;
    margin: 0;
    padding: 0;
    color: white;
}
.left-info,
.right-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
@media screen and (max-width: 850px) {
    .top-section {
        margin-bottom: 0px;
        margin-top: 100px;
        height: 65vh;
        padding-bottom: 25px;
    }

    .top-border {
        width: 90%;
    }

    .title h1 {
        font-size: 45px;
    }
}
@media screen and (max-width: 650px) {
    .top-content .contact-content h5 {
        min-width: 150px;
    }

    .top-content .contact-content .contact-info {
        margin-left: 75px;
    }
}
@media screen and (max-width: 500px) {
    .top-content .contact-content h5 {
        min-width: 300px;
        width: 300px;
        font-size: 20px;
    }

    .top-content .contact-content .contact-info {
        gap: 25px;
        margin-left: 125px;
    }

    .top-content .contact-content .contact-info p,
    .top-content .contact-content .contact-info span,
    .top-content .contact-content .contact-info a {
        font-size: 16px;
    }

    .title h1 {
        font-size: 35px;
    }
}
