#promotion {
    position: relative;
    background-repeat: no-repeat;
    background-size: 50% auto;
    background-position: left center;
    overflow: hidden;
}

#promotion .container {
}

#promotion .background_img {
    width: 50%;
    height: 120%;
    position: absolute;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
#promotion .background_img::after {
    opacity: .25;
    position: absolute;
    content:"";
    width:100%;
    height:100%;
    background:var(--chamoisee-color)
}

#promotion .banner {
  display: flex;
  flex-direction: row-reverse;
  position: relative;
  width:100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow:0 20px 15px hsla(0,0%,0%,.25)
}

#promotion aside {
  width: 100%;
  max-width: 30em;
  padding: calc(2vw + 3em) calc(1vw + 2.75em) calc(2vw + 4em);
  color:white;
  background:hsla(0,0%,0%,.5);
}

#promotion aside h3 {
    font-size: clamp(.85rem, .75rem + .5vw, .9375rem);
    letter-spacing: .075em;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold-color);
    margin: 0;
    margin-bottom: .75em;
}

#promotion aside h2 {
    font-size: clamp(1.725em, 1.25rem + .75vw, 1.825rem);
    color:white;
}

#promotion aside p {
    line-height:2.2;
}

#promotion .price {
    color: var(--gold-color);
    font-weight: 500;
    font-size: clamp(1.25rem, 1rem + .5vw, 1.425rem);
    margin-top: 1.5em;
}
#play_video {
    display: flex;
    align-items: center;
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: .825rem;
    padding: 1.125em 1.75em 1.125em;
    color: white;
    cursor: pointer;
    border:none;
    text-transform: uppercase;
    letter-spacing: .075em;
    background:var(--outer-space-color);
    transition: background-color .35s cubic-bezier(0,0,0.3,1);
}
#play_video:hover {
    background:#46564F;
}
.play_video {display: none;}
.ico-play{
    font-size: 7px;
    position: relative;
    display: inline-block;
    padding: 2.125em;
    margin-right: 2em;
    text-transform: uppercase;
    letter-spacing: .125em;
    font-weight: 400;
}
.ico-play::after {
    content: "";
    width:6em;
    height:6em;
    border:1px solid white;
    border-radius:50%;
    position: absolute;
    right:-1px; top:50%;
    transform:translate3d(0,-50%,0)
}

#video_modal {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    z-index: 103;
    left: 0;
    right: 0;
    transform:scale(.5);
    width: 100%;
    height: 100%;
    background: hsla(0,0%,0%,.85);
    transition: transform .5s ease, opacity .5s ease, visibility .5s ease
}
#video_modal.active {
    opacity: 1;
    visibility: visible;
    transform:scale(1);
}

#video_modal iframe{
    opacity: 0;
    visibility: hidden;
    width:100%;
    height:100%;
}
#video_modal iframe.active {
    opacity: 1;
    visibility: visible;
    transition: opacity .5s ease, visibility .5s ease
}

#video_modal .ico-close {
    visibility: hidden;
    opacity: 0;
    border: none;
    background: none;
    color: hsla(0,0%,100%,.5);
    position: absolute;
    right: 0;
    padding: .25em;
    margin: .75em;
    font-size: 1.25em;
    cursor: pointer;
    transition: color .35s cubic-bezier(0,0,0.3,1), opacity .5s ease, visibility .5s ease;
}
#video_modal .ico-close.active {
    visibility: visible;
    opacity: 1;
}

#video_modal .ico-close:hover {
    color:white
}



@media only screen and (max-width: 80rem) {
    #promotion .button {
        margin-top: 6em
    }
}

@media only screen and (max-width: 64rem) {
    #promotion aside {padding-right: 2.5em;}
}

@media only screen and (max-width: 48rem) {
    #play_video {display:none}
    .play_video {
        display: inline-block;
        z-index: 2;
        color:var(--outer-space-color);
        font-size: 45px;
        position: relative;
        top: .375em;
        border:none;background:none;
        cursor: pointer;
        margin-left: calc(.25em + 1.5vw);
        transition:color .5s ease
    }
    .play_video:hover {color: #46564F}
    .play_video::after {
        content:"";
        width:35px;
        height:30px;
        background:white;
        position: absolute;
        z-index: -1;
        left:5px; right:0; top:9px;
        border-radius: 50%;
    }
}

@media only screen and (max-width: 28.75rem) {
    #promotion aside {
        padding: calc(1.25vw + 4em) 1.5em;}


}