@media (max-width: 992px) {
    .slider {
        margin-top: 116px !important;
    }

    .contact-banner iframe {
        height: 50vh !important;
    }

    .gallery-page {
        margin-top: 116px !important;
    }

    .loding-container {
        margin-top: -116px !important;
    }

    .about-bg-01 {
        height: auto;
        background-image: url(https://hairmastersalon.lk/assets/img/mobile-01.webp);
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }

    .about-bg-02 {
        height: auto;
        background-image: url(https://hairmastersalon.lk/assets/img/mobile-02.webp);
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }
}

.slider-txt {
    margin-top: -116px !important;
    position: relative;
}

@media (max-width: 768px) {
    .slider-txt {
        margin-top: 0px !important;
    }
}

.product-card {
    border-radius: 10px;
    border-bottom: 1px solid red;
    transition: all linear .2s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card:hover,
.product-card:active {
    box-shadow: .2em .5em .5em rgba(255, 0, 0, 0.4);
    transform: scale(1.1);
}

.product-img {
    border-radius: 10px 10px 0 0;
    height: 200px;
    max-width: 100%;
}

.hair-cut {
    background-image: url(https://hairmastersalon.lk/assets/img/services/Hair-Cutting.webp);
}

.hair-coloring {
    background-image: url(https://hairmastersalon.lk/assets/img/services/Hair-Coloring.webp);
}

.hair-treatments {
    background-image: url(https://hairmastersalon.lk/assets/img/services/Hair-Treatments.webp);
}

.facials {
    background-image: url(https://hairmastersalon.lk/assets/img/services/Facials.webp);
}

.makeup {
    background-image: url(https://hairmastersalon.lk/assets/img/services/Makeup.webp);
}

.manicure {
    background-image: url(https://hairmastersalon.lk/assets/img/services/Manicure.webp);
}

.hair-cut,
.hair-coloring,
.hair-treatments,
.facials,
.makeup,
.manicure {
    background-size: cover;
    background-position: center;
}

.product-text {
    padding: 1em;
    text-align: center;
}

.product-cart button {
    border: 0;
    border-radius: 0 0 10px 10px;
    color: #f5f6fa;
    cursor: pointer;
    font-family: inherit;
    padding: 1em;
    text-transform: uppercase;
    transition: all linear .3s;
    width: 100%;
}

.product-cart button:hover {
    font-weight: 500;
    letter-spacing: .1em;
}

.bg-pattern {
    background-image: linear-gradient(#6c757d36 0.6000000000000001px, transparent 0.6000000000000001px), linear-gradient(to right, #6c757d36 0.6000000000000001px, #000000 0.6000000000000001px);
    background-size: 12px 12px;
}

.banner {
    height: 50vh;
    background-image: url(https://hairmastersalon.lk/assets/img/banner.webp);
    background-size: cover;
    background-position: right;
    background-attachment: fixed;
}

@media (min-width: 992px) {
    .banner {
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }
}

@supports (-webkit-touch-callout: none) {
    .banner {
        display: none;
    }

    .contact-banner {
        background: url(https://hairmastersalon.lk/assets/img/contact-bg.webp) center top no-repeat scroll !important;
        background-size: cover;
    }

    .about-bg-01 {
        background-image: none !important;
        background-color: #000 !important;
    }

    .about-bg-02 {
        background-image: none !important;
        background-color: #000 !important;
    }
}

.contact-banner {
    height: auto;
    background-image: url(https://hairmastersalon.lk/assets/img/contact-bg.webp);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

textarea::placeholder {
    color: #000 !important;
}

.bi-facebook:hover {
    color: #0d6efd;
    transition: 0.5s;
}

.bi-instagram:hover {
    color: #d63384;
    transition: 0.5s;
}

.bi-whatsapp:hover {
    color: #198754;
    transition: 0.5s;
}

.gallery-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.loding-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100vw;
    background: #000;
    position: fixed !important;
    z-index: 10000;
}

.load-container {
    position: relative;
    display: inline-block;
    width: 130px;
    height: 130px;
    overflow: hidden;
    letter-spacing: normal;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
}

.linespinner {
    width: 10px;
    height: 30px;
    background: #919191;
    position: relative;
    animation: linespinner 1s ease-in-out infinite;
    animation-delay: 0.4s;
    border-radius: 8px;
}

.linespinner:after,
.linespinner:before {
    border-radius: 8px;
    content: "";
    position: absolute;
    width: 10px;
    height: 30px;
    background: #919191;
    animation: linespinner 1s ease-in-out infinite;
}

.linespinner:before {
    right: 18px;
    animation-delay: 0.15s;
}

.linespinner:after {
    left: 18px;
    animation-delay: 0.6s;
}

@keyframes linespinner {

    0%,
    100% {
        background-color: #919191;
        box-shadow: 0 0 0 #919191, 0 0 0 #919191;
    }

    50% {
        background-color: #ffffff;
        box-shadow: 0 -15px 0 #ffffff, 0 15px 0 #ffffff;
    }
}