#top-home {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    min-height: calc(100vh - 160px);
    width: 100%;
    max-width: 1500px;
    margin: 80px auto;
    color: #254E70;
}

#top-home img {
    width: 45%;
    max-width: 600px;
    border-radius: 7px;
}

#top-home>div:not(#scroll-notice) {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 300px;
    width: 250px;
    margin: 30px 0;
}

#top-home span {
    color: #C13874;
}

#top-home h1 {
    font-size: 17px;
    font-weight: 500;
}

#top-home span {
    font-size: 35px;
    font-weight: 500;
}

#top-home a {
    text-decoration: none;
    color: #254E70;
}

#info div {
    display: flex;
    flex-direction: row;
    align-items: center;
}

#info i {
    font-size: 28px;
    margin: 15px;
}

#info h2 {
    font-size: 20px;
    margin: 0;
    font-weight: 500;
}

/* SCROLL NOTICE */

#scroll-notice {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    bottom: 0;
    margin-bottom: 2vh;
    color: #254E70;
    animation: floating 3s infinite;
}

/* TEXT UNDERNEETH HOME SCREEN */

#bottom-home {
    width: 90%;
    max-width: 400px;
    text-align: justify;
    color: #254E70;
    margin: 50px auto;
}

#bottom-home h2 {
    width: fit-content;
    margin: 0 auto;
}

/* QUESTIONS DIV PART */

#questions {
    position: relative;
    width: 100%;
}

#questions {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 30px 0 50px 0;
}

#questions p {
    width: 90%;
    max-width: 400px;
    text-align: justify;
    color: #254E70;
    margin: 0;
}

#questions h2 {
    color: #C13874;
    font-size: 28px;
    font-weight: 500;
    margin: 50px 0 15px 0;
}

#questions a {
    background-color: rgb(193, 56, 116, 0.9);
    color: white;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 10px;
    margin: 15px 0 50px 0;
}

#questions::after {
    position: absolute;
    content: '';
    background-image: url('../img/hands.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.2;
    z-index: -1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    box-shadow: 0 0 5px 5px #F5F5F5 inset;
}

/* FIND DIV PART */

#find {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 50px 0;
}

#find p {
    width: 90%;
    max-width: 320px;
    text-align: justify;
    color: #254E70;
    margin: 50px 0 20px 0;
}

#find a {
    background-color: rgb(193, 56, 116, 0.9);
    color: white;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 10px;
    margin: 10px 0 50px 0;
}

#find::after {
    position: absolute;
    content: '';
    background-image: url('../img/plan.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.3;
    z-index: -1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    box-shadow: 0 0 5px 5px #F5F5F5 inset;
}

@media screen and (max-width: 760px) {
    #top-home {
        flex-direction: column;
        justify-content: space-around;
        margin: 70px 0;
        min-height: calc(80vh - 140px);
    }

    #scroll-notice {
        display: none;
    }

    #top-home img {
        width: 90%;
        margin-top: 0;
    }
}