.section {
    overflow: hidden;
}

.fullScreenVideo {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

.textHover:hover {
    color: var(--green);
}

.titleText h1:hover ~ .textHover {
    color: var(--green);
}

.titleText h1:hover + .textHover {
    color: var(--green);
}

.Container {
    display: flex;
    height: 100%;
}

.videoSection {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
}

.title {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    z-index: 60;
    width: 600px;
    margin-bottom: 25vh;
    margin-left: 10vw;
    transition: 0.3s ease;
}

.titleText {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.size2 {
    width: 550px;
}

.headerText:hover {
    color: white;
}

.caseStudy {
    border: solid white 3px;
    border-radius: 10px;
    background: transparent;
    height: 55px;
    width: 140px;
    z-index: 4;
    color: white;
    font-size: 20px;
    font-weight: 700;
    font-family: "Swiss 721", sans-serif !important;
    transition: 0.2s ease;
    margin-top: 30px;
}

.caseStudy:hover {
    cursor: pointer;
    border: solid white 3px;
    background-color: white;
    color: black;
}

.getInTouchPage {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--gray);
    height: 100%;
    width: 100%;
}

.linearBtn.big:hover {
    background-color: #45b97c;
    color: white;
    border-color: #45b97c;
}

.linearBtn.big:hover span {
    display: none;
}

.linearBtn.big:hover:before {
    transition-delay: 2s;
    content: "Contact";
    color: white;
}

@media only screen and (max-width: 768px) {

    .titleText h3 {
        font-size: 50px;
    }

    .title {
        max-width: 90vw;
    }
}

@media only screen and (max-width: 480px) {

    .titleText h3 {
        font-size: 30px;
    }

    .title {
        max-width: 90vw;
    }
}