/**  block  **/

.ad-area {
    position: relative;
    display: flex;
    max-width: 100%;
    background: #EBEBEB;
    margin: 6px 0;
    border-radius: 4px;
    padding: 8px 0;
}

.ad-image {
    display: inline-block;
    max-width: 180px;
    margin: 0 6px;
    box-sizing: border-box;
}

.ad-title {
    display: block;
    box-sizing: border-box;
    overflow: hidden;
    margin: 0 auto;
    max-width: 70%;
    height: 140px;
    padding: 0 6px 0 18px;
}

.ad-link {
    position: absolute;
    right: 6%;
    bottom: 20px;
    border: none;
    text-decoration: none;
    color: black;
    border-radius: 4px;
    background: white;
    padding: 8px 4px;
}

.pulse {
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -o-transform: scale(1);
      -ms-transform: scale(1);
    }
  
    50% {
      transform: scale(1.05);
      -webkit-transform: scale(1.05);
      -moz-transform: scale(1.05);
      -o-transform: scale(1.05);
      -ms-transform: scale(1.05);
    }
  
    100% {
      transform: scale(1);
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -o-transform: scale(1);
      -ms-transform: scale(1);
    }
  }

.nw {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 10px; 
  font-size: 14px;
  text-align: left;
  margin-top: 15px !important;
}

.main-link {
  display: block;
  margin: 40px auto;
  padding: 20px;
  font-size: 20px;
  text-decoration: none;
  background-color: #de0606;
  text-align: center;
  color: #fff !important;
  border-radius: 4px;
  border: none;
  cursor: pointer
}

.main-link:hover {
  opacity: .8
}
