

    /* CSS HEX
    --cultured: #f3f3f3;
    --old-lace: #f5f1e3;
    --light-sky-blue: #83d3ff;
    --blue-green: #4291b4;
    --lapis-lazuli: #366489;
    --ruby: #d81159;

     CSS HSL
    --cultured: hsla(0, 0%, 95%, 1);
    --old-lace: hsla(47, 47%, 93%, 1);
    --light-sky-blue: hsla(201, 100%, 76%, 1);
    --blue-green: hsla(198, 46%, 48%, 1);
    --lapis-lazuli: hsla(207, 43%, 37%, 1);
    --ruby: hsla(338, 85%, 46%, 1);

    SCSS RGB
    $cultured: rgba(243, 243, 243, 1);
    $old-lace: rgba(245, 241, 227, 1);
    $light-sky-blue: rgba(131, 211, 255, 1);
    $blue-green: rgba(66, 145, 180, 1);
    $lapis-lazuli: rgba(54, 100, 137, 1);
    $ruby: rgba(216, 17, 89, 1);

    */

    .location {
        z-index: 2;
        min-height: 100vh;
        background-color: rgba(243, 243, 243, 1);
        padding-top: 0;
    }
    /* .location .section-title {
        padding-top: 90px;
        padding-bottom: 2rem;
    } */
    .location .section-subtitle {
        text-align: center;
        margin: 3rem auto;
        justify-content: center;
    }
    .location .section-subtitle p{
        font-size: 17px;
    }
    .location .section-subtitle p:nth-child(2){
        font-size: 15px;
        margin-bottom: 2rem;
    }

    .location .section-subtitle p b{
        font-weight: 600;
    }
    .location .btn-location {
        display: inline-block;
        padding: 0.25rem 1.25rem;
        color: #366489;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        text-transform: uppercase;
        border: 1px solid #366489;
        transition: color .15s;
        cursor:pointer;
    }

    .location .gallery {
        margin-top: 2rem;
        margin-bottom: 4rem;
    }
    .location .grid {
      display: flex;
      flex-direction: column;
      flex-flow: row wrap;
      justify-content: space-between;
      column-gap: 1rem;
      row-gap:1rem;
    }
    .location .grid div:nth-child(1),
    .location .grid div:nth-child(2),
    .location .grid div:nth-child(6),
    .location .grid div:nth-child(7) {
        width: 48%;
    }
    .location .grid div:nth-child(3),
    .location .grid div:nth-child(4),
    .location .grid div:nth-child(5) {
        width: 32%;
    }
    .location .grid div:nth-child(8) {
        width: 100%;
    }

    .location .img-container {
      width: 100%;
      /* height: 500px; */
      cursor: pointer;
      overflow: hidden;
      position: relative;
    }
    .location .grid div:nth-child(8) .img-container {
        height: 550px;
    }
    .location .grid div:nth-child(8) .img-container img{
        position: relative;
        bottom: 18%;
    }

    .location .img-container:hover .img-content-hover {
      display: block;
    }
    .location img {
      width: 100%;
      /* height: 500px; */
      -o-object-fit: cover;
         object-fit: cover;
      transform: scale(1);
      transition: all 0.3s ease-in-out;
    }
    .location img:hover {
      transform: scale(1.05);
    }

    .location .img-content-hover {
      z-index: 1;
      position: absolute;
      top: 0;
      left: 0;
      white-space: nowrap;
      display: none;
      padding: 1rem;
      background: #fff;
      font-weight: 400;
      margin-top: 1.25rem;
      margin-left: -2rem;
    }

    .location .title {
      color: #2e2e2e;
      font-size: 1.5rem;
      font-weight: 700;
    }

    .location .category {
      font-size: 1rem;
      color: #787878;
    }

    .location .img-content {
      display: none;
    }

    .tooltip {
    transform: translate(-50%, -200%);
    display: none;
    position: absolute;
    color: #F0B015;
    background-color: #000;
    border: none;
    border-radius: 4px;
    padding: 15px 10px;
    z-index: 10;
    display: block;
    width: 100%;
    max-width: 200px;
    top: 0;
    left: 50%;
    text-align: center;
}

.tooltip:after {
    content: "";
    display: block;
    position: absolute;
    border-color: rgba(0, 0, 0, 1) rgba(0, 0, 0, 0);
    border-style: solid;
    border-width: 15px 15px 0;
    bottom: -13px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 0;
}
