.section--scontact {
    width: 100%;
}
.section--scontact .container {
    height: 450px;
}
.section--scontact .section__content {
    background: var(--color-black);
    width: 400px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 42px 0;
    z-index: 100;
    position: absolute;
    bottom:-130px;
    left:0;
}

.section--scontact .section__content .section__text {
    color:var(--color-white);
    text-align: center;
    margin: 30px 0 0 0;
}
.section--scontact .section__content .section__text p:not(:first-child){
    margin: 15px 0 0 0;
}
.section--scontact .iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top:0;
    left:0;
    overflow: hidden;
    z-index: 1;
}

.section--scontact .iframe  iframe {
    position: absolute;
    top:-50%;
    left:-50%;
    width: 200%;
    height: 200%;
}


@media all and (max-width: 1000px){
    .section--scontact {
        background: var(--color-black);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column-reverse;
    }
    .section--scontact .container {
        height: auto;
    }
    .section--scontact .iframe {
        position: relative;
        height: 350px;
    }
    .section--scontact .section__content {
        width: 100%;
        border-radius: 0;
        position: relative;
        bottom:initial;
        left:initial;
        background: none;
    }
}
