/* event */
.contaiiner {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 20px;
  }
  
  
  .container-flex {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  
  
  strong {
    font-weight: 700;
  }
  
  .current-page {
    border-bottom: 1px solid #707070;
  }
  
  .current-page:hover {
    color: #707070;
  }
  
  .article-featured {
    border-bottom: #707070 1px solid;
    padding-bottom: 2em;
    margin-bottom: 2em;
  }
  .article-featured h2{
    padding-left: 0.6em;
  }
  .article-recent-secondary p{
    padding-left: 0.6em;
  }
  .article-featured p{
    padding-left: 1em;
  }
  .article-featured a{
    padding-left: 1em;
  }
  .article-recent {
    display: flex;
    flex-direction: column;
    margin-bottom: 2em;
  }
  
  .article-recent-main {
    order: 2;
  }
  
  .article-recent-secondary {
    order: 1;
  }
  
  .sidebar-widget {
    border: 10px solid #efefef;
    margin-bottom: 2em;
    padding: 1em;
  }
  
  .widget-title {
    font-size: 1rem;
    font-family: sans-serif;
    font-weight: 700;
  }
  
  .widget-recent-post-title {
    font-size: 1rem;
  }
  
  .widget-recent-post {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #707070;
    margin-bottom: 1em;
  }
  
  .widget-recent-post:last-child {
    border: 0;
    margin: 0;
  }
  
  .widget-image {
    order: -1;
    margin-bottom: .5em;
  }
  
  
  @media (min-width: 675px) {
    
    .container-flex {
       flex-direction: row;
    }
    
    .container-nav{
       align-items: center;
    }
    
    main {
       width: 70%;
    }
  
    aside {
       width: 25%;
       min-width: 200px;
       margin-left: 1em;
    }
    .article-recent {
       flex-direction: row;
       justify-content: space-between;
    }
    
    .article-recent-main {
       width: 68%;
    }
    
    .article-recent-secondary {
       width: 30%;
    }
    
    .article-title {
       order: 99;
    }
    
    .article-image {
       width: 100%;
       min-height: 200px;
       object-fit: cover;
       
    }
    
    
    .article-featured {
       display: flex;
       flex-direction: column;
    }
    
    .article-image {
       order: -2;
    }
    
    .article-info {
       order: -1;
    }
    
    .article-title {
       order: 0;
    }
    
  }
  
  /** tickets ***/
  .containerr {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .item-container {
    position: relative;
    margin: 24px;
    width: 320px;
    height: 570px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 0 30px 5px rgba(0, 0, 0, 0.15);
    cursor: pointer;
  }
  
  .img-container,
  .body-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .img-container img {
    width: 100%;
  }
  
  .body-container {
    position: relative;
  }
  
  .overlay {
    position: relative;
    width: 100%;
    height: 400px;
    background-color: rgba(24, 83, 122, 0.6);
    opacity: 0;
    transition: height linear 0.4s, opacity linear 0.2s;
  }
  
  .item-container:hover .overlay {
    opacity: 1;
    height: 150px;
  }
  
  .event-info {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8px;
  }
  
  .title,
  .price {
    color: #18537a;
    font-size: 1.5em;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 12px;
  }
  
  .info {
    letter-spacing: 0.5px;
    margin-bottom: 6px;
  }
  
  .separator {
    width: 20%;
    height: 6px;
    background-color: #17537a;
    margin-bottom: 16px;
  }
  
  .additional-info {
    border-top: 1px solid #bbb;
    margin-top: 12px;
    padding: 28px;
    padding-bottom: 0;
  }
  
  .additional-info .info {
    font-size: 0.9em;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .info i {
    color: #18537a;
    font-size: 1.1em;
    margin-right: 4px;
  }
  
  .info span {
    color: #18537a;
    font-weight: bolder;
  }
  
  .action {
    color: #fff;
    border: 3px solid #fff;
    background-color: transparent;
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    outline: none;
    cursor: pointer;
    padding: 12px;
    text-transform: uppercase;
    font-size: 1.3em;
    font-weight: bold;
    letter-spacing: 2px;
    transition: background-color 0.4s, top 0.4s;
  }
  
  .item-container:hover .action {
    top: 50px;
  }
  
  .action:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
  
  .img-gallery{
    width: 80%;
    margin: 100px auto 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
    }
    .img-gallery img{
        width: 100%;
        cursor: pointer;
    }
    .img-gallery img:hover{
        transform: scale(0.8) rotate(-15deg);
        border-radius: 20px;
        box-shadow: 0 32px 75px rgba(68, 77, 136, 0.2);
    }
    .full-img{
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0.9);
        position: fixed;
        top: 0;
        left: 0;
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 100;
    }
    .full-img img{
        width: 90%;
        max-width: 500px;
    }
    .full-img span{
        position: absolute;
        top:5%;
        right: 5%;
        font-size: 30px;
        color:#fff;
        cursor: pointer;
    }
  