/*        nav {
            position: absolute;
            z-index: 3;
        }*/







.contact iframe {
    position: absolute;
    top: 100px;
    left: 0;
    width: 51%;
    height: 100vh;
    order: 1;
}

.contact .layerDown {
    position: relative;
    left: 30%;
    height: 100vh;
    z-index: 1;
    background: linear-gradient(90deg, transparent, var(--themeColorDark));
    pointer-events: none;
}

.contact .layerUp {
    padding-top: 140px;
    position: relative;
    z-index: 2;
    min-height: 100vh;
    background: var(--themeColorDark);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    order: 2;
}

.contact .box {
    height: 100px;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    margin: 12px;
    color: #fff;
    transition: all 0.15s ease-in-out;
}

    .contact .box:hover {
        background-color: rgba(255, 255, 255, 0.12);
    }

.contact .square {
    width: 65px;
    height: 65px;
    background-color: var(--themeColorBoom);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
}

.contact .content {
    margin-left: 10px;
    overflow: hidden;
}

    .contact .content h1 {
        font-weight: 900;
        padding-bottom: 3px;
        font-size: 20px;
    }










@media all and (max-width: 1200px) and (min-width: 30px) {
    .contact iframe {
        position: relative;
        order: 2;
        top: 0;
        width: 100%;
        height: 30vh;
    }

    .contact .layerUp {
        order: 1;
        min-height: 50vh;
        padding-bottom: 10px;
    }

    .contact .layerDown {
        display: none;
    }
}
