main{
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section{
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
}
.play-btn{
    width: 20px;
    height: 20px;
    margin: 0;
    padding: 0;
    background-color: #f00;
    display: flex;
    flex: 0 0 20px;
    border-radius: 50%;
    position: relative;
}
@media all and (max-width: 560px) {
    .location-scout-headline .play-btn{
        width: 15px;
        height: 15px;
        flex: 0 0 15px;
    }
}
.play-btn:before{
    width: 0;
    height: 0;
    content: '';
    border: solid 8px transparent;
    border-left-color: #fff;
    position: absolute;
    top: 50%;
    left: calc(50% + 5px);
    transform: translate(-50%, -50%);
}
@media all and (max-width: 560px) {
    .location-scout-headline .play-btn:before{
        border-width: 5px;
        left: calc(50% + 3px);
    }
}
.play-btn:after{
    width: 100%;
    height: 100%;
    content: '';
    border: solid 2px #f00;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}

.vimeo-popup{
    cursor: pointer;
}
.popup-wrap{
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}
.popup-wrap.active{
    display: flex;
}
.popup{
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin: 0;
    padding: 0;
    position: relative;
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 0;
}
.popup > a{
    width: 100%;
    max-width: 600px;
}
.popup-iframe{
    width: 100%;
    max-width: 1200px;
    height: 0;
    margin: 0;
    padding: 56.25% 0 0 0;
    position: relative;
    flex: 0 0 auto;
    z-index: 0;
}
.popop-overlay{
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color: rgba(0,0,0, 1);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.popup-close-btn{
    width: 25px;
    height: 25px;
    margin: 0;
    padding: 0;
    background-color: #f00;
    border: solid 2px #f00;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 25px;
    right: 25px;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    z-index: 1;
}
.popup-iframe iframe{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}
@media all and (max-width: 560px) {
    .popup{
        width: 96%;
    }
    .popup-close-btn{
        top: 5px;
        right: 5px;
    }
}