
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 > .cloud {
    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 > .cloud > span {
    position: relative;
    padding: 20px 0;
    margin-bottom: 20px;
    font-size: xx-large;
}

main > .content > .cloud > a {
    text-decoration: none;
    color: #a61b29;
    margin-bottom: 2vw;
    font-size: 1.3vw;
    transition: transform 0.1s linear;
}

main > .content > .cloud > a:hover {
    transform: scale(1.1);
}

main > .content > .cloud > .text {
    color: #434343;
    line-height: 2;
}

main > .content > hr {
    position: relative;
    margin: 40px;
    width: 80%;
    height: 1px;
    background-color: #DFDFDF;
    border: none;
}

main > .content > .cloud > .text > .images {
    position: relative;
    margin: 4vw 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-content: center;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

main > .content > .cloud > .text > .images > img {
    width: 32%;
    height: 18vw;
    border-radius: 2vw;
    box-shadow: 0 1px 5px 0 #43434333;
}