.memory-section .row .rev{
    margin-bottom: 2rem;
    flex-direction: column-reverse;
}

.memory-section .memory-image img{
    width: 100%;
    display: block;
    height: 250px;
    object-fit: cover;
    box-shadow: 0px 0px 2px #060606;
    max-width: 100%;
    border-radius: 20px 20px 0 0;
}
.memory-section .img {
    width: 100%;
    position: relative;
}
.memory-section .content {
    width: 100%;
    position: relative;
}

.memory-section .memory-item {
    position: relative;
    box-shadow: 0px 0px 1px #060606;
    right: 0;
    top: 0px;
    background: #fff;
    min-height: auto;
    z-index: 1;
    padding: var(--p14);
    height: auto;
}
.memory-section h2{
    font-size: var(--f25);
    margin-bottom: var(--m10);
    height: 39px;
    overflow: hidden;
}
.memory-section h2 a{
    font-family: var(--secondary-font);
}
.memory-section .dot {
    position: absolute;
    right: -2rem;
    bottom: -3.6rem;
    left: auto;
    text-align: end;
    width: fit-content;
    display: none;
}

.memory-section .rev .memory-image img{
    right:0px;
}
.memory-section .row:nth-child(even) .dot {
    left: -2rem;
}

.memory-image {
    position: relative;
}
.row.align-items-center {
    margin: 0px;
}
.memory-content p{
margin-bottom: var(--m5);
}
.memory-content h6{
    color: var(--black-color);
    margin-bottom: 0;
}

/* attractions */

:root{
    --text-light: rgba(255,255,255,0.6);
    --text-lighter: rgba(255,255,255,0.9);
    --spacing-s: 8px;
    --spacing-m: 16px;
    --spacing-l: 24px;
    --spacing-xl: 32px;
    --spacing-xxl: 64px;
  }
  .hero-section .head-sec{
    margin-bottom: var(--m30);
  }
.hero-section{
    align-items: flex-start;
    display: flex;
    min-height: 100%;
    justify-content: center;
    background: var(--white-color);
  }
  
  .hero-section .card-grid{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: var(--spacing-l);
    grid-row-gap: var(--spacing-l);
    max-width: var(--width-container);
    width: 100%;
  }
  
  @media(min-width: 540px){
    .hero-section .card-grid{
      grid-template-columns: repeat(2, 1fr); 
    }
  }
  
  @media(min-width: 960px){
    .hero-section   .card-grid{
      grid-template-columns: repeat(3, 1fr); 
    }
  }
  
  .hero-section .card{
    list-style: none;
    position: relative;
    border: none;
    overflow: hidden;
    border-radius: 20px;
    height: 500px;
  }
  
  .hero-section .card:before{
    content: '';
    display: block;
    padding-bottom: 150%;
    width: 100%;
  }
  
  .hero-section .card__background{
    background-size: cover;
    background-position: center;
    border-radius: var(--spacing-l);
    bottom: 0;
    filter: brightness(0.75) saturate(1.2) contrast(0.85);
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform-origin: center;
    trsnsform: scale(1) translateZ(0);
    transition: 
      filter 200ms linear,
      transform 200ms linear;
  }
  
  .hero-section .card:hover .card__background{
    transform: scale(1.05) translateZ(0);
  }
  
  .hero-section .card-grid:hover > .card:not(:hover) .card__background{
    filter: brightness(0.5) saturate(0) contrast(1.2) blur(20px);
  }
  
  .hero-section  .card__content{
    left: 0;
    padding: var(--spacing-l);
    position: absolute;
    top: 0;
  }
  
  .hero-section .card__category{
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-s);
    text-transform: uppercase;
  }
  
  .hero-section .card__heading{
    color: var(--text-lighter);
    font-size: 1.9rem;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.2);
    line-height: 1.4;
    word-spacing: 0vw;
    text-transform: capitalize;
  }
  .hero-section .hero-btn a.main-btn{
    display: block;
    width: 150px;
    text-align: center;
    margin: auto;
  }
  .hero-btn {
    text-align: center;
    margin-top: 30px;
}
.hero-section{
    background: var(--white-color);
}
.hero-section .head-sec{
    text-align: center;
}

.head-sec p {
    font-size: var(--f12);
    font-weight: 600;
    color: var(--btn-color);
    margin-bottom: var(--m5);
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.7;
}
.head-sec span{
    font-size: var(--f45);
    font-weight: 400;
    line-height: 1;
    margin-top: -10px;
    color: var(--white-color);
    font-family: var(--other-font);
    text-align: right;
}
.head-sec{
    text-align: center;
}
.head-sec h2{
    font-size: var(--f32) !important;
}
.atr-sub {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}
.atr-sub .card-image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: 0.5s all;
    background-size: cover;
    }
    .atr-sub .card-content {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #00000059;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.atr-sub .card-content h3{
    color: var(--white-color);
    text-shadow: 0 0 3px #000;
    margin-bottom: 0px;
    font-size: 25px;
    text-align: center;
}
.atr-sub a:hover .card-image{
transform: scale(1.10);
}
section.sub-category {
    background: var(--lt-bg-color);
}
section.sub-category .row{
    gap: 30px 0;
}