/* content css */
#content {
    margin: 0px 0px;
}

#content .find-box{
    position: relative;
    height: 62vh;
    width: 100vw;
    text-align: center;
    background: linear-gradient(rgba(72, 146, 251, 0.6), rgba(174, 215, 213, 0.6)), 
    url(../image/bg.png), no-repeat center center;
    background-size: cover;
}

#content .find-box h1{
    margin-top: 0;
    padding-top: 12vh;
    font-size: 50px;
    color: white;
    text-shadow: 4px 4px black;
}

#content .find-box input{
    margin-top: 5px;
    color: rgb(5, 38, 255);
    font-size: 20px;
    padding: 8px 10px;
    width: 30vw;
    font-family: 'Times New Roman', Times, serif;
    box-shadow: 2px 2px black;
}

#content .find-box button{
    font-size: 20px;
    padding: 8px;
    color: white;
    font-family: 'Times New Roman', Times, serif;
    box-shadow: 2px 2px black;
}

#content .find-box::after {
    bottom: 0;
    background: url(../image/overlay-bottom.png) bottom center no-repeat;
    background-size: contain;
    position: absolute;
    content: "";
    width: 100vw;
    height: 80px;
    left: 0;
    z-index: 1;
    box-sizing: border-box;
}

#content .find-box .find-result{
    /* display: none; */
    position: fixed;
    top: 20vh;
    left: 50%;
    transform: translate(-50%, 0);
    text-align: center;
    height: 70vh;
    width: 50vw;
    border: solid;
    background-color: white;
    z-index: 2;
}

#content .find-box .find-result img{
    margin-top: 40px;
    border: solid;
    border-radius: 15px;
    width: 200px;
}

#content .find-box .find-result > button{
    position: fixed;
    right: 5px;
    top: 5px;
    width: 40px;
}

#content .find-box .find-result .list-class {
    display: flex;
    justify-content: center;
}

#content .find-box .find-result .list-class button{
    margin: 30px 5px;
    background-color: rgb(0, 132, 255);
    width: 15vw;
}

#content .find-box .find-result .list-class p{
    font-size: 20px;
    margin-top: 30px;
}

#content .about {
    text-align: center;
    padding-top: 12vh;
}

#content .about h1{
    font-size: 36px;
}

#content .about .info{
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

#content .about .info-text{
    margin: 0 50px;
    width: 50vw;
    margin-left: 20px;
    text-align: left;
}

#content .about .info-text p{
    font-size: 20px;
}

#content .about img {
    width: 340px;
    border: solid;
    margin: 0 30px;
}

@media only screen and (max-width: 600px) {
    #content .find-box{
        position: relative; 
        text-align: center;
        background: linear-gradient(rgba(72, 146, 251, 0.6), rgba(174, 215, 213, 0.6)), 
        url(../image/bg.png), no-repeat center center;
        background-size: contain;
        height: 200px;
    }
    #content .find-box h1{
        padding-top: 5vh;
        font-size: 20px;
    }
    #content .find-box input{
        font-size: 12px;
        width: 60vw;
    }
    #content .find-box button{
        font-size: 12px;
    }
    #content .find-box .find-result {
        position: fixed;
        left: 50%;
        transform: translate(-50%, 0);
        text-align: center;
        top: 10vh;
        height:fit-content; 
        padding-bottom: 40px;
        width: 80vw;
        border: solid;
        background-color: white;
        z-index: 2;
    }
    #content .find-box .find-result .list-class button{
        margin: 30px 5px;
        background-color: rgb(0, 132, 255);
        width: 60vw;
    }
    #content .about h1{
        font-size: 20px;
    }
    #content .about .info{
        
    }
    #content .about .info img{
        width: 160px;
        height: 160px;
        border: solid;
        margin: 0 0;
    }
    #content .about .info-text {
        margin: 0 0 0 10px;
        text-align: left;
    }
    #content .about .info-text p{
        font-size: 8px;
        margin: 0;
        margin-bottom: 5px; 
    }
    #content .about .tg{
        display: block;
    }
    #content .about .tg h2{
        font-size: 16px;
    }
}