#main{


}
.cartoon{

    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

}

.wrap {
    width: 85%;
    height: 75%;
    background: #fff;
    border-radius: 20px;
    box-shadow: 10px 10px 50px rbga(0, 0, 0, 0.1);
    display: grid;
    grid-template-rows: 65px 1fr;
    overflow: hidden;
}

.nav2 {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 50px;
    background: #fff;
}

.content {
    width: 90%;
    height: 92%;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
}

.video {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    transition: 0.5s;
}
.iframe{
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    transition: 0.5s;
}

.video iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.text {
    position: absolute;
    left: -500px;
    transition: 0.5s;
    opacity: 0;
}

.text h1 {
    font-size: 70px;
    line-height: 100%;
}

.text h2 {
    font-size: 32px;
    padding: 30px 0;
    font-weight: 200;
}







.slogan {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 15%;
    left: 0;
    transition: 0.5s;
}

.slogan .more {
    margin: 50px auto;
}

.slogan h1 {
    font-size: 70px;
    line-height: 120%;
    color: #fff;
}

.content:hover .text {
    position: absolute;
    left: 0;
    opacity: 1;
    z-index: 888;
}

.content:hover .star1 {
    position: absolute;
    top: 8%;
    left: 44%;
    z-index: 999;
}

.content:hover .star2 {
    position: absolute;
    top: 80%;
    left: 40%;
    z-index: 999;
}

.content:hover .star3 {
    position: absolute;
    top: 50%;
    left: 96%;
    z-index: 999;
}

.content:hover .video {
    width: 50%;
    position: absolute;
    right: 0px;
    top: 0px;
}

.content:hover .slogan {
    position: absolute;
    left: -600px;
}
