#WhyDreesWaveAnimation {
    position: fixed;    
    z-index: -100;    
    top: 50%;
    left: 50%;
    width: 100%;
    height: auto;
    z-index: -100;
    transform: translateX(-50%) translateY(-50%);     
}

#whydreesWaveAnimationID {
    position: fixed;      
    width: 100%;
    height: auto;
    z-index: -100;    
}
.dk-whydreesBg {
    position: absolute;    
    right: 0;
    top: 50%;
    left: 50%;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 0 0;
    transform: translateX(-50%) translateY(-50%); 
}
.dk-whydreesBg:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}


.dk-why-drees-section {
    position: fixed;
    top: 105px;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    padding: 75px;
    width: 100%;
    overflow-y: auto;
}

.dk-why-drees-section h2 {   
    font-size: 78px;
    line-height: 87px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: .2rem;
    margin: 0 0 35px 0;
}
.dk-why-drees-section h3 {
    color: #ffffff;
    font-family: 'helveticaregular';
    font-weight: 400;
    font-size: 40px;
    line-height: 50px;
    letter-spacing: .1rem;
}


.dk-wd-list-animation {
    margin: 100px 0 0 0;
    display: flex;
    justify-content: center;
}

.animate-box{
    /* max-width: 22%; */
    width: 390px;
    height: 400px;
    position: relative; 
    border-radius: 20px;
    box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    margin-right: 25px;
}
.animate-box:last-child {
    margin-right: 0;
}
.animate-box img{
    position: absolute;
    width:auto;
    height: 100%;
    left:50%;
    top: 50%;
    transform: translate(-50%, -50%);    
}

.animate-box .box{
    background: rgba(0,0,0,1);
    color: white;
    position: absolute;
    top:0;
    bottom:0;
    left: 0;      
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    font-family: 'helveticaregular';
    font-size: 25px;
    line-height: 25px;
    letter-spacing: 0.1em;
    color: #A1B11A;
}
              
.animate-box .box.box1{
    animation-name: box1;
    animation-duration: .5s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}
.animate-box .box.box2 {
    animation-name: box2;
    animation-duration: .5s;
    animation-delay: 1.5s;
    animation-fill-mode: forwards;
}
.animate-box .box.box3{
    animation-name: box3;
    animation-duration: .5s;
    animation-delay: 2s;
    animation-fill-mode: forwards;
}
.animate-box .box.box4 {
    animation-name: box4;
    animation-duration: .5s;
    animation-delay: 2.5s;
    animation-fill-mode: forwards;
}

  
@keyframes box1 {  
    from {top: 0; }
    to{top: 80%;  background: rgba(0,0,0,0.5); }
  }
  
  @keyframes box2 {
    from {top: 0; }
    to {top: 80%;  background: rgba(0,0,0,0.5);}
  }
  @keyframes box3 {
    from {top: 0; }
    to {top: 80%; background: rgba(0,0,0,0.5); }
  }
  @keyframes box4 {
    from {top: 0;}
    to {top: 80%;  background: rgba(0,0,0,0.5);}
  }

  @media only screen and (min-width: 1921px) {
    .dk-why-drees-section {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 75px 130px;
    }
    .dk-why-drees-mainpanel {
        /* width:1750px; */
    }
    .animate-box img {
        width: 100%;
    }
  }