.location{
    padding: 30px 0;
    .section_heading{
        text-align: center;
        padding-bottom: 60px;
           h4{
            font-size: 28px;
            color: #333;
            font-weight: 900;
            font-family: 'Playfair Display', serif;
            text-transform: uppercase;
           }
      }
    .location_wrap{
        position: relative;
        .location_details{
            height: 350px;
            width: 450px;
            background-color: $primaryColor;
            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: 35px;
                    padding: 10px 0;
                }
            }
        }
        .location_map{
            border: 1px solid #c2cbd1ab;
            border-radius: 15px;
            iframe{
                width: 100%;
                height: 400px;
                border-radius: 15px;
                filter: grayscale(80%);
            }
        }
    }
}