.ContainerHalf {
    background-color: #FAFAFA;
    height: 100%;
    width: 100%;
    margin: 0;
    display: flex;
}

.HalfVideoSection {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    height: 100vh;
    overflow: hidden;
    background-color: white;
    object-fit: fill;
}

.HalfContentSection {
    flex: 1;
    height: 100vh;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.HalfVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.HalfVideo:hover {
    transform: scale(1.2);
}

.HalfImage {
    /*display: none;*/
    width: 100%;
    height: 100%;
    padding-top: 25px;
    object-fit: cover;
}

.Text {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.Text1 {
    width: 85%;
    font-size: 20px;
    font-weight: 700;
    color: #2d9f64;
    text-align: left;
    margin: 0 auto 20px 100px;
    font-family: "Swiss 721", sans-serif;
}

.Text2 {
    width: 85%;
    font-size: 32px;
    font-weight: 300;
    color: black;
    text-align: left;
    margin: 0 auto 5px 100px;
    font-family: "Montserrat", sans-serif;
    transition: 0.3s ease;
}

.Text2:hover {
    color: #2d9f64;
}



@media only screen and (min-width: 481px) and (max-width: 768px) {
    .HalfImage {
        width: 70%;
    }
}

@media only screen and (max-width: 480px) {
    .ContainerHalf {
        flex-direction: column;
    }

    .HalfContentSection {
        height: 50vh;
    }

    .HalfVideoSection {
        height: 50vh;
    }

    .Text1 {
        margin: 0 auto 20px auto;
    }

    .Text2 {
        font-size: 20px;
        margin: 0 3px 2px auto;
    }
}