.location-section{
    width: 100%;
    padding: 100px 0;
    background-color: #fff;
    border-bottom: 1px solid #e4e4e5;
    box-shadow: rgb(0 0 0 / 0%) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.location-section .location-list-view {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

.location-section .location-list-view h2{
    margin: 0;
    margin-bottom: 10px;
}

.location-section .location-list-view p{
    margin: 0;
    margin-bottom: 25px;
}

.location-section .location-list-view ul{
    width: 50%;
    display: inline-block;
    flex-wrap: wrap;
    padding: 0;
}

.location-section .location-list-view ul li{
    color: #404041;
    font-size: 24px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    line-height: 36px;
    position: relative;
    margin-bottom: 20px;
    list-style: none;
}

.location-section .location-list-view ul li a{
    color: #404041;
    display: flex;
    align-items: center;
    line-height: 22px;
    padding-right: 15px;
    display: inline-block;
    position: relative;
}

.location-section .location-list-view ul li span {
    position: relative;
    margin-left: 10px;
    margin-top: 5px;
    position: absolute;
    right: 10px;
    top: 7px;
}

.location-section .location-list-view ul li a span img{
    display: none;
}

.location-section .location-list-view ul li a span::after{
    content: '';
    position: absolute;
    background-image: url(../../../assets/images/right-arrow.png);
    background-repeat: no-repeat;
    right: -10px;
    top: -5px;
    width: 8px;
    height: 12px;
}

.location-section .location-list-view ul li a:hover span::after{
    background-image: url(../../../assets/images/right-arrow-red.png);
}


/* ============== Responsive CSS Start ============== */


@media only screen and (max-width: 1440px) {
    .location-section {
        padding: 70px 0;
    }

    .location-section .location-list-view ul li{
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 16px;
    }
}

@media only screen and (max-width: 1200px) {
    .location-section {
        padding: 50px 0;
    }
    .location-section .location-list-view p {
        margin-bottom: 15px;
    }
    .location-section .location-list-view ul li {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 1080px) {
    
}

@media only screen and (max-width: 991px) {
  
}

@media only screen and (max-width: 767px) {
    .location-section {
        padding: 30px 0 20px;
    }
    .location-section .location-list-view ul{ width: 100%; margin: 0px; }
    .location-section .location-list-view ul li {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 10px;
        width: 100%;
    }
}

@media only screen and (max-width: 567px) {
    .location-section .location-list-view ul li span {
        margin-top: 2px;
    }
}

@media only screen and (max-width: 467px) {
    
}

@media only screen and (max-width: 360px) {
    
}



/* ============== Responsive CSS End ============== */