
main > .head {
    position: relative;
    width: 100%;
    height: 22vw;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

main > .head > video {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: fill;
}

main > .head > img {
    position: relative;
    width: 100%;
    height: 100%;
}

main > .content {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

main > .content > hr {
    position: relative;
    margin: 40px;
    width: 80%;
    height: 1px;
    background-color: #DFDFDF;
    border: none;
}

main > .content > .about, main > .content > .contact {
    position: relative;
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

main > .content > .about > span {
    position: relative;
    padding: 20px 0;
    margin-bottom: 20px;
    font-size: xx-large;
}

main > .content > .about > .text {
    color: #434343;
    line-height: 2;
}

main > .content > .about > .card-list {
    position: relative;
    padding: 40px 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

main > .content > .about > .card-list > .card {
    position: relative;
    width: 22%;
    height: 6vw;
    padding: 10px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

main > .content > .about > .card-list > .card > img {
    position: absolute;
    width: 100%;
    height: 100%;

}

main > .content > .about > .card-list > .card > span {
    position: relative;
    font-size: large;
    color: white;
}

main > .content > .about > .card-list > .card > .title {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: small;
    font-weight: bold;
}

main > .content > .about > .card-list > .card > .text {
    font-size: xx-large;
    font-weight: bold;
    transition: transform 0.1s linear;
}

main > .content > .about > .card-list > .card > .text:hover {
    transform: scale(1.2);
}

main > .content > .contact > span {
    position: relative;
    padding: 20px 0;
    margin-bottom: 20px;
    font-size: xx-large;
}

main > .content > .contact > .group {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
}

main > .content > .contact > .group > .list {
    position: relative;
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: center;
    align-items: flex-start;
}

main > .content > .contact > .group > .map {
    position: relative;
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

main > .content > .contact > .group > .list > ul {
    position: relative;
    width: 100%;
    height: 100%;
    line-height: 2;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
}

main > .content > .contact > .group > .list > ul > li {
    list-style-type: none;
    color: #434343;
    font-size: large;
}