.containerHalf {
    background-color: var(--lightBackColor);
    height: 100%;
    width: 100%;
    margin: 0;
    display: flex;
}

.halfVideoSection {
    flex: 1;
    height: 100vh;
    overflow: hidden;
}

.halfContentSection {
    flex: 1;
    height: 100vh;
    background-color: var(--backColor);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

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

.halfVideo:hover {
    transform: scale(1.1);
}

.halfImage {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../images/SPOT BTS (1).jpg");
}

.aboutTextContainer {
    width: 75%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-left: 4vh;
}

.aboutText1 {
    width: 85%;
    color: var(--darkGray);
    margin-bottom: 20px;
}

.aboutText2 {
    width: 85%;
    color: var(--darkGray);
    margin-bottom: 20px;
}

.GetInTouch {
    border: solid var(--green) 2px;
    border-radius: var(--medRadius);
    background: transparent;
    height: 50px;
    width: 150px;
    z-index: 4;
    color: var(--green);
    font-size: 15px;
    font-weight: 500;
    font-family: "Swiss 721", sans-serif !important;
    margin-bottom: 15vh;
    transition-delay: 0.1s;
}

.GetInTouch:hover {
    cursor: pointer;
    background-color: var(--green);
    color: white;
}


@media only screen and (max-width: 768px) {
    /*.containerHalf {*/
    /*    flex-direction: column-reverse;*/
    /*}*/

    .halfContentSection {
        height: 100vh;
    }

    .halfVideoSection {
        display: none;
        /*height: 50vh;*/
    }

    .text {
        margin-bottom: 5vh;
    }
}
