.overlay_imagePopup{
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
  
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.overlay_imagePopup:target {
  visibility: visible;
  opacity: 1;
  z-index: 55;
}

.popup {
  width: 100%;
  height: auto;
  margin-top: 50px;
  background-color: #000000;
  position: fixed;
  z-index: 60;  
  overflow:hidden;
  display: flex;
  justify-content: center; 
  opacity: 1;
}



.popup .close {
    width: 50px;
  position: absolute;
  font-size: 40px;
  top: 1px;            
  right: 0px;
  
  transition: all 200ms;
  background-color: #000000;
  text-decoration: none;
  color: #fff;
  text-align: center;
}

.popup .rightarrow {
    width: 50px;
  position: absolute;
  font-size: 40px;
  top: 45%;            
  right: 0px;
  
  transition: all 200ms;
  background-color: #000000;
  text-decoration: none;
  color: #fff;
  text-align: center;
}
.popup .close:hover {
  color: #c4c3c2;
}
.popup .content {
  font-family: 'Open Sans', sans-serif;
  font-size: 1em;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}


@media screen and (max-width: 700px){
  .box{
    width: 100%;
  }
  .popup{
    width: 100%;
  }
  .image_left{
    width: 50%;
    height: 50%;
}

.popup .contT{
   
}
}