.headline_maps{
    padding-left:35px;
    padding-bottom:30px;
    padding-top:30px;
    font-size:20px;

    position:relative;
    animation-name:start_animation_maps;
    animation-duration: 1s;
}

.headline_contact h1 {
    padding-bottom:30px;
}
.headlines {
    display: flex;
}
.maps{
    padding-left:35px;
    display:flex;

    position:relative;
    animation-name:start_animation_maps;
    animation-duration: 1s;
}
.contact_text{
    margin-top:70px;
    display:flex;
    font-size:20px;

    position:relative;
    animation-name:start_animation_contact_text;
    animation-duration: 1s;
}
.phone{
    padding-left:80px;
    padding-top:45px;
}
.phone h1{
    font-size:30px;
}
.adress{
    padding-left:80px;
}
.adress h1 {
    font-size:30px;

}
.row {
    display:flex;
}

.headline_contact {
    font-size:46px;
}
/*ANIMATION*/
@keyframes     start_animation_contact_text {
    0%{
        left:1000px;
    }
    100%{
        left:0px;
    }
}
@keyframes start_animation_maps {
    0%{
        right:1000px;
    }
    100%{
        right:0px;
    }
}


/*MEDIA*/
@media(max-width: 1200px){
    .maps{

        justify-content: center;
        padding-left:0px;
        
    }
    .maps iframe{
        aspect-ratio: 16/9;
        width:80%;
        height:auto;

    }
    .contact_text{
        justify-content: center;
        padding-top:20px;
        display:block;
        padding-bottom:5%;

    }
    .phone {
        padding-left:0px;
        padding-top: 30px;
        text-align: center;
    }
    .adress {
        text-align: center;
        padding-left:0px;
    }
    .row {
        display:block;
    }
    .headline_maps{
        text-align:center;
    }
}