.location{
   background-image: url(../images/timebg.jpg);
   background-position: center;
   background-repeat: no-repeat;
   background-size: cover;
   padding: 100px 0;
   z-index: 1;
   position: relative;
   &::after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(55, 98, 90, 0.815);
    z-index: -1;
   }
   .section_heading{
    text-align: center;
    padding-bottom: 60px;
       h4{
        font-size: 28px;
        color: $white;
        font-weight: 900;
        font-family: 'Playfair Display', serif;
        text-transform: uppercase;
       }
  }
.location_wrap{
    position: relative;
    .location_details{
        height: 350px;
        width: 450px;
        background-color:#16b092;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        position: absolute;
        bottom: 0;
        left: 0;
        .locationText{
            text-align: center;
            padding: 20px;
            i{
                font-size: 35px;
                color: $white;

            }
            h5{
                font-size: 18px;
                color: #f2f2f2;
                font-weight: 500;
            }
            h6{
                font-size: 24px;
                color: $white;
                font-weight: 500;
                line-height: 36px;
                font-family:$font-2 ;
                padding: 10px 0;
            }
        }
    }
    .location_map{
        border: 1px solid #c2cbd1ab;
        border-radius: 15px;
        iframe{
            width: 100%;
            height: 400px;
            border-radius: 10px;
        }
    }
}
}