/** general */
.m-10 {
    margin: 10px;
}
.p-10 {
    padding: 10px;
}
.py-10 {
    padding: 10px 0;
}

/** Location Listing Starts */
.locations {
    background-color: rgba(243,248,252,.8);
}
.locations h1 {
    margin-bottom: 20px;
    color: #143b58;
}
.locations .location-listing {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.locations .location-listing .location-item {
    padding: 20px 15px;
    flex: 0 0 33.33%;
    max-width: 33.33%;
}
.locations .location-listing .location-item-inner {
    height: 100%;
    padding: 25px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 29px rgba(0, 0, 0, .06);
}
.locations .location-listing h2 {
    margin-bottom: 16px;
    padding: 0px 30px 15px 0px;
    border-bottom: 1px solid rgb(20 59 88 / 20%);
}
.locations .location-listing h2 a {
    font-weight: 700;
    color: #143B58;
    display: inline-block;
    vertical-align: middle;
}
.locations .location-listing .location-media {
    margin-bottom: 25px;
}
.locations .location-listing .location-media iframe {
    width: 100%;
    height: 200px;
}
.locations .location-listing .location-body {
    width: 100%;
}
.locations .location-listing .location-body p {
    position: relative;
    padding-left: 30px;
}
.locations .location-listing .location-body p i {
    position: absolute;
    top: 3px;
    left: 0px;
    font-size: 18px;
    color: #143B58;
}
.locations .location-listing .location-body p:not(:last-child) {
    padding-bottom: 20px;
}
.locations .location-listing .location-body p,
.locations .location-listing .location-body-innner a {
    color: #143B58;
    line-height: 24px;
    margin: 0;
}
.locations .location-listing .location-body-innner {
    padding-bottom: 25px;
}
.locations .location-listing .location-body-innner a {
    text-decoration: none;
    transition: 0.3s;
}
.locations .location-listing .location-body-innner a:hover {
    text-decoration: unset;
    color: #338ED1;
}
.locations .location-listing .location-action {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.locations .location-listing .location-action a {
    max-width: 100%;
}
.locations .location-listing .location-action .contactus:hover {
    color: #fff;
    background-color: var(--bs-btn-color);
}
.locations .location-listing .location-action .contactus:hover i {
    color: #fff;
}
/** Location listing Ends */


/** responsive css */
@media (max-width:1260px) {
    /** location list*/
    .locations .container {
        max-width: 100% !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .locations .location-listing .location-action {
        grid-template-columns: 1fr;
    }
    /** location list*/
}
@media (max-width: 991px) {
    /** Location listing Starts */
    .locations .location-listing {
        margin: -10px;
    }
    .locations .location-listing .location-item {
        flex: 0 0 50%;
        max-width: 100%;
    }
    /** Location listing Ends */
}
@media (max-width: 720px) {
    /** Location listing Starts */
    .locations .location-listing .location-item {
        flex: 0 0 100%;
    }
    .locations .location-listing .location-body {
        max-width: 100%;
    }
    /** Location listing Ends */
}