@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    scroll-behavior: smooth;
    overflow-x: hidden;
}


::selection {
    background-color: #525aad;
    color: #fff;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #525aad;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #d40001;
}

a {
    text-decoration: none;
}

.about h1 {
    color: #525aad;
    font-size: 35px;
    font-weight: bolder;
    font-family: "Poppins", sans-serif;
}

h2 {
    color: #525aad;
    font-size: 33px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    font-weight: bolder;
}

b {
      display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: #f07d01;
    margin-top: 20px;

}

p {
    color: #000000;
    text-align: justify;
}



@-webkit-keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 7));
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 7));
    }
}

.slider {


    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.slider::before,
.slider::after {
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: auto;
    position: absolute;
    width: 300px;
    z-index: 2;
}

.slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.slider::before {
    left: 0;
    top: 0;
}

.slider .slide-track {
    -webkit-animation: scroll 40s linear infinite;
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 14);
}

.slider .slide {
    height: 400px;
    /* increase overall slide height */
    width: 350px;
    /* increase slide width */
}

.slider .slide img {
    height: 350px;
    /* increase image height */
    width: 350px;
    /* increase image width */
    object-fit: cover;
    /* ensures image fills the slide without distortion */
}


.topbar {
    background: linear-gradient(45deg, #525aad, #525aad, #525aad);
    color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
}

.topbar .social-icons {
    display: flex;
    gap: 20px;
    justify-content: end;
}

.topbar .social-icons i {
    color: #4f5f50;
    background-color: #fff;
    padding: 7px;

    border-radius: 50%;
}

nav .logo {
    width: 100px;
}

footer .logo {
    width: 200px;
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
}

footer .social-icons {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

footer .social-icons i {
    color: #4f5f50;
    background-color: #fff;
    padding: 7px;

    border-radius: 50%;
}

.contact .social-icons {
    display: flex;
    gap: 20px;
    justify-content: start;
}

.contact .social-icons i {
    color: #fff;
    background-color: #4f5f50;
    padding: 7px;

    border-radius: 50%;
}

.topbar p {
    margin-bottom: 0px;
    color: #fff;
}

.topbar a {
    color: #fff;
}

.navbar-light .navbar-nav .nav-link {
    font-size: 16px;
    color: #000;
    font-weight: 600;
}

.navbar-light .navbar-nav .active {
    color: #f07d01 !important;
}

.dropdown-item.active,
.dropdown-item:active {
    color: #ffffff !important;
    text-decoration: none;
    background-color: #f9e3e3;
}

.about-doctors .card {
    margin: 10px;
    padding: 10px;
    border: none;
    box-shadow: 15px 13px 20px 2px #525aad33;
    border-radius: 20px;
    transition: 0.5s;
}

.about-doctors .card:hover {
    box-shadow: -15px -20px 20px 2px #d400011a;
    margin: 30px;
}

.about-doctors .card img {
    width: 80%;
}

.about-doctors .card h3 {
    color: #525aad;
}

.about-doctors .card h6 {
    color: #525aad;
    font-size: 16px;
    font-weight: 600;
}

.about-doctors .card a {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    background-color: #525aad;
    padding: 5px 10px;
    border: 2px solid #525aad;
    border-radius: 16px 0px 16px 0px;
    transition: 1s;
}

.about-doctors .card a:hover {
    border-radius: 0px 16px 0px 16px;
    background-color: transparent;
    color: #4f5f50;
}

.about-choose .d-flex span {
    font-size: 40px;
    margin-right: 15px;
}

.about-choose .d-flex p {
    margin-bottom: 0px;
}

.about-choose .d-flex {
    margin-bottom: 20px;
}

.services .card {
    margin: 10px;
    padding: 80px 30px;
    border: 2px solid #ccc;
    border-radius: 50%;
    width: 100%;
    height: 300px;
    box-shadow: 15px 20px #525aad;

}

.services .card h4 {
    font-weight: 600;
    text-align: center;
    color: #4f5f50;
}

.services .card a {
    color: #4f5f50;
    box-shadow: 12px 8px 13px -4px #ccc;
    padding: 5px;
    font-weight: 600;
}

.services .card a:hover {
    background-color: #4f5f50;
    color: #fff;
}

.kenburns-slideshow {
    aspect-ratio: 16 / 9;
    display: grid;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 0;
    margin: 0;
    padding: 0;
    height: 500px;
}

.kenburns-slide {
    aspect-ratio: inherit;
    contain: strict;
    grid-area: 1/-1;
    opacity: 0;
    position: relative;
}

.kenburns-slide:not(:first-of-type) {
    display: none;
}

.kenburns-img {
    aspect-ratio: inherit;
    backface-visibility: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    border: 0;
    display: block;
    /* -o-object-fit: cover;
    object-fit: cover; */
    outline: none;
    padding: 0;
    position: relative;
    text-shadow: none;
    /* vertical-align: middle; */
    width: 100%;
    height: 500px;
}








@keyframes pan-right {
    0% {
        transform: translateX(calc(-1 * var(--pan))) scale(var(--min-scale));
    }

    100% {
        transform: translateX(var(--pan)) scale(var(--min-scale));
    }
}

@keyframes pan-left {
    0% {
        transform: translateX(var(--pan)) scale(var(--min-scale));
    }

    100% {
        transform: translateX(calc(-1 * var(--pan))) scale(var(--min-scale));
    }
}

@keyframes pan-down {
    0% {
        transform: translateY(calc(-1 * var(--pan))) scale(var(--min-scale));
    }

    100% {
        transform: translateY(var(--pan)) scale(var(--min-scale));
    }
}

@keyframes pan-up {
    0% {
        transform: translateY(var(--pan)) scale(var(--min-scale));
    }

    100% {
        transform: translateY(calc(-1 * var(--pan))) scale(var(--min-scale));
    }
}

@keyframes pan-zoom-in-right {
    0% {
        transform: translateX(calc(-1 * var(--pan))) scale(var(--min-scale));
    }

    100% {
        transform: translateX(var(--pan)) scale(var(--max-scale));
    }
}

@keyframes pan-zoom-in-left {
    0% {
        transform: translateX(var(--pan)) scale(var(--min-scale));
    }

    100% {
        transform: translateX(calc(-1 * var(--pan))) scale(var(--max-scale));
    }
}

@keyframes pan-zoom-in-down {
    0% {
        transform: translateY(calc(-1 * var(--pan))) scale(var(--min-scale));
    }

    100% {
        transform: translateY(var(--pan)) scale(var(--max-scale));
    }
}

@keyframes pan-zoom-in-up {
    0% {
        transform: translateY(var(--pan)) scale(var(--min-scale));
    }

    100% {
        transform: translateY(calc(-1 * var(--pan))) scale(var(--max-scale));
    }
}

@keyframes pan-zoom-out-right {
    0% {
        transform: translateX(calc(-1 * var(--pan))) scale(var(--max-scale));
    }

    100% {
        transform: translateX(var(--pan)) scale(var(--min-scale));
    }
}

@keyframes pan-zoom-out-left {
    0% {
        transform: translateX(var(--pan)) scale(var(--max-scale));
    }

    100% {
        transform: translateX(calc(-1 * var(--pan))) scale(var(--min-scale));
    }
}

@keyframes pan-zoom-out-down {
    0% {
        transform: translateY(calc(-1 * var(--pan))) scale(var(--max-scale));
    }

    100% {
        transform: translateY(var(--pan)) scale(var(--min-scale));
    }
}

@keyframes pan-zoom-out-up {
    0% {
        transform: translateY(var(--pan)) scale(var(--max-scale));
    }

    100% {
        transform: translateY(calc(-1 * var(--pan))) scale(var(--min-scale));
    }
}

@keyframes pan-zoom-in-top-left-to-bottom-right {
    0% {
        transform: translate(calc(-1 * var(--pan)), calc(-1 * var(--pan))) scale(var(--min-scale));
    }

    100% {
        transform: translate(var(--pan), var(--pan)) scale(var(--max-scale));
    }
}

@keyframes pan-zoom-out-bottom-right-to-top-left {
    0% {
        transform: translate(var(--pan), var(--pan)) scale(var(--max-scale));
    }

    100% {
        transform: translate(calc(-1 * var(--pan)), calc(-1 * var(--pan))) scale(var(--min-scale));
    }
}

@keyframes pan-zoom-in-bottom-left-to-top-right {
    0% {
        transform: translate(calc(-1 * var(--pan)), var(--pan)) scale(var(--min-scale));
    }

    100% {
        transform: translate(var(--pan), calc(-1 * var(--pan))) scale(var(--max-scale));
    }
}

@keyframes pan-zoom-out-top-right-to-bottom-left {
    0% {
        transform: translate(var(--pan), calc(-1 * var(--pan))) scale(var(--max-scale));
    }

    100% {
        transform: translate(calc(-1 * var(--pan)), var(--pan)) scale(var(--min-scale));
    }
}

@keyframes pan-zoom-in-top-right-to-bottom-left {
    0% {
        transform: translate(var(--pan), calc(-1 * var(--pan))) scale(var(--min-scale));
    }

    100% {
        transform: translate(calc(-1 * var(--pan)), var(--pan)) scale(var(--max-scale));
    }
}

@keyframes pan-zoom-out-bottom-left-to-top-right {
    0% {
        transform: translate(calc(-1 * var(--pan)), var(--pan)) scale(var(--max-scale));
    }

    100% {
        transform: translate(var(--pan), calc(-1 * var(--pan))) scale(var(--min-scale));
    }
}

@media (max-width:51.29875em) {
    .kenburns-slideshow {
        aspect-ratio: 4/3;
    }
}


/* call Button */


.call-buton .cc-calto-action-ripple {
    z-index: 99999;
    position: fixed;
    right: 1rem;
    bottom: 2rem;
    background: #525aad;
    width: 45px;
    height: 45px;
    padding: 14px;
    border-radius: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #ffffff;
    -webkit-animation: cc-calto-action-ripple 0.6s linear infinite;
    animation: cc-calto-action-ripple 0.6s linear infinite;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
}

.call-buton .cc-calto-action-ripple i {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    font-size: 20px;
}

.call-buton .cc-calto-action-ripple:hover i {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

@-webkit-keyframes cc-calto-action-ripple {
    0% {
        -webkit-box-shadow: 0 4px 10px rgba(0, 114, 162, 0.2), 0 0 0 0 rgba(0, 55, 182, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(6, 101, 180, 0.2);
        box-shadow: 0 4px 10px rgba(0, 88, 219, 0.2), 0 0 0 0 rgba(0, 98, 185, 0.2), 0 0 0 5px rgba(0, 86, 139, 0.2), 0 0 0 10px rgba(7, 97, 148, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 4px 10px rgba(8, 83, 174, 0.2), 0 0 0 5px rgba(12, 85, 159, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2), 0 0 0 20px rgba(0, 66, 158, 0);
        box-shadow: 0 4px 10px rgba(7, 91, 186, 0.2), 0 0 0 5px rgba(5, 81, 163, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0);
    }
}

@keyframes cc-calto-action-ripple {
    0% {
        -webkit-box-shadow: 0 4px 10px rgba(2, 58, 164, 0.2), 0 0 0 0 rgba(13, 103, 206, 0.2), 0 0 0 5px rgba(3, 58, 177, 0.2), 0 0 0 10px rgba(6, 59, 184, 0.2);
        box-shadow: 0 4px 10px rgba(8, 116, 239, 0.2), 0 0 0 0 rgba(5, 131, 203, 0.2), 0 0 0 5px rgba(4, 112, 206, 0.2), 0 0 0 10px rgba(3, 89, 188, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(12, 69, 184, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2), 0 0 0 20px rgba(11, 82, 169, 0);
        box-shadow: 0 4px 10px rgba(2, 70, 171, 0.2), 0 0 0 5px rgba(7, 76, 141, 0.2), 0 0 0 10px rgba(1, 61, 150, 0.2), 0 0 0 20px rgba(236, 139, 0, 0);
    }
}


/* Back to top button */
#button {
    display: inline-block;
    background-color: #525aad;
    width: 35px;
    height: 35px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 8rem;
    right: 1rem;
    transition: background-color .3s,
        opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

#button::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 17px;
    line-height: 35px;
    color: #fff;
}

#button:hover {
    cursor: pointer;
    background-color: #333;
}

#button:active {
    background-color: #555;
}

#button.show {
    opacity: 1;
    visibility: visible;
}


/* whatsapp Button */
.float {
    position: fixed;
    width: 45px;
    height: 45px;
    padding: 5px;
    bottom: 40px;
    left: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 23px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    line-height: 35px;
}


.gallery-slider {
    background: linear-gradient(45deg, #4b54b0, #2d5e6d4a), url(../Images/galleryhome.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding-top: 200px;
    padding-bottom: 200px;
}

.gallery-slider a {
    background-color: #ffffff;
    color: #4f5f50;
    font-weight: bold;
    padding: 10px 25px;
    animation: blink 3s infinite;
}




@keyframes blink {
    0% {
        opacity: 1;
    }

    25% {
        opacity: 0.7;
        background-color: rgb(0, 0, 0);
        color: #fff;
    }

    50% {
        opacity: 0.5;
        background-color: rgb(0, 0, 0);
        color: #fff;
    }

    75% {
        opacity: 0.7;
        background-color: #4f5f50;
        color: #fff;
    }

    100% {
        opacity: 1;
    }
}




.card img {
    width: 171px;
   
}

.contact a {
    color: #000;
}

.contact a:hover {
    color: #4f5f50;
}

footer {
    background: linear-gradient(45deg, #525aadc9, #525aadc2, #525aadcc), url(../Images/home.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding-top: 100px;
    color: #fff;
}

footer h2 {
    color: #fff;
    font-size: 50px;
    margin-bottom: 30px;
}

footer a {
    color: #fff;
    font-weight: bold;
}

footer p {
    color: #fff;
    font-weight: bold;
}

footer a:hover {
    color: #000000;

}

.banner {
    background: linear-gradient(84deg, #525aadc9, #525aad8a), url(../Images/breadcrumb.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding-top: 100px;
    padding-bottom: 100px;
}

.services-banner-2 {
    background: linear-gradient(84deg, #525aadc9, #525aad8a), url(../Images/breadcrumb.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding-top: 100px;
    padding-bottom: 100px;
}

.banner h1 {
    color: #fff;
    font-size: 40px;
}

.services-banner-2 h2 {
    color: #fff;
    font-size: 40px;
}

.banner h5 {
    color: #c1c0c0;
}

.services-banner-2 h5 {
    color: #e2e2e2;
}

.banner a {
    color: #c1c0c0;
}

.banner a:hover {
    color: #fff;
}

.services-banner-2 a {
    color: #e2e2e2;
}

.services-banner-2 a:hover {
    color: #fff;
}


.gallery-banner {
    background: linear-gradient(84deg, #525aadc9, #525aad8a), url(../Images/gallery-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding-top: 200px;
    padding-bottom: 200px;
}

.bullets .card {
    text-align: center;
    border: none;
    box-shadow: 15px 13px 20px 2px #525aad29;
    padding: 10px;
    margin: 10px;
    height: 150px;
}

.bullets .card i {
    color: #3eb77f;
    font-size: 40px;
}

.gallery-banner h2 {
    color: #fff;
    font-size: 40px;
}

.gallery-banner h5 {
    color: #fff;
    font-size: 20px;
}

.gallery-banner a {
    color: #fff;
    font-size: 20px;
}

@media screen and (max-width:1024px) {

    .services .card {

        height: 320px;
    }

    .card img {
        width: 134px;
        margin-left: 44px;
        margin-top: -76px;
    }
}

@media screen and (max-width:800px) {
    .topbar p {
        font-size: 15px;
    }

    .topbar {
        font-size: 11px;
    }

    .bullets .card {
        height: auto;
    }

    h1 {
        font-size: 26px;
    }

    h5 {
        font-size: 18px;
    }

    h2 {
        font-size: 30px;
    }

    .services .card {
        height: auto;
    }

    .gallery-slider {
        background-image: url(../Images/gallery-bg.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
        height: 100vh;
        width: 100vw;
    }





    footer h2 {
        font-size: 30px;
    }

    .kenburns-img {
        aspect-ratio: auto;

        height: 250px;
    }

    .kenburns-slide {
        aspect-ratio: auto;

    }

    .kenburns-slideshow {

        height: 300px;
    }
}

@media screen and (max-width:800px) {


    .card img {
        width: 69px;

    }

}


@media screen and (max-width:480px) {


    .card img {
        width: 190px;
        margin-left: 47px;
        margin-top: -32px;
        margin-bottom: 15px;
    }

    .gallery-slider {
        background-image: url(../Images/gallery-bg.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
        height: 100vh;
        width: 100vw;
    }

    .topbar a {

        font-size: 12px;
    }

    .topbar {

        font-size: 11px;
    }

    .kenburns-img {
        aspect-ratio: auto;

        height: 250px;
    }

    .kenburns-slide {
        aspect-ratio: auto;

    }

    .kenburns-slideshow {

        height: auto;
    }

    h1 {

        font-size: 30px;
    }

    h5 {
        font-size: 18px;

    }

    p {
        font-size: 15px;
    }

    h2 {
        font-size: 30px;
    }

    .services .card {
        margin: 10px 0px 40px 0px;
        height: auto;
    }







    footer h2 {
        font-size: 30px;
    }

    .banner {


        padding-top: 30px;
        padding-bottom: 30px;
    }

    .services-banner-2 {


        padding-top: 30px;
        padding-bottom: 30px;
    }

    .banner h2 {
        font-size: 20px;
    }

    .banner h5 {
        font-size: 14px;
    }

    .gallery-banner {
        background: linear-gradient(45deg, #4f5f506f, #4f5f506c), url(../Images/gallery-bg.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    nav .logo {
        width: 75px;
    }

    footer .logo {
        width: 130px;
    }

    .slider .slide {
        height: 225px;
        width: 200px;
    }

    .slider .slide img {
        height: 200px;
        width: 200px;
    }

    .gallery-banner h2 {
        color: #fff;
        font-size: 30px;
    }

    .gallery-banner h5 {
        color: #fff;
        font-size: 18px;
    }

    .gallery-banner a {
        color: #fff;
        font-size: 18px;
    }
}

.ser-page h3,
.ser-page strong {
    color: #525aad;
}


.service-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.ser-right {
    display: block;
    text-align: center;
    padding: 12px 15px;
    margin-bottom: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ser-right:last-child {
    margin-bottom: 0;
}

.ser-right:hover {
    background: #525aad;
    color: #ffffff;
    box-shadow: 0 6px 15px rgba(13, 110, 253, 0.3);
    transform: translateX(5px);
}

.ser-right.active {
    background-color: #525aad;
    color: #fff;
}


@media (max-width: 767px) {

    .float{
        left: 10px;
        bottom: 10px;
    }

    .call-buton .cc-calto-action-ripple{
        right: 10px;
        bottom: 10px;
    }

    #button{
        bottom: 5rem;
    }

  h1 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 12px;
        align-items: left;
    }

    h2 {
        font-size: 22px;
        line-height: 1.35;
        margin-bottom: 10px;
        align-items: left !important;
    }

    h3 {
        font-size: 18px;
        line-height: 1.4;
        margin-bottom: 8px;
    }

    h4 {
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 6px;
    }

    h5 {
        font-size: 14px;
        line-height: 1.45;
        margin-bottom: 4px;
        font-weight: 600;
    }

    h6 {
        font-size: 13px;
        line-height: 1.45;
        margin-bottom: 4px;
        font-weight: 500;
    }

    .about-choose h2{
      margin-top: 30px;
    }

    .faq img {
        margin-bottom: 30px;
    }

     .contact img {
        margin-top: 20px;
    }

      .contact iframe {
        margin-bottom: 30px;
    }

    b {
        font-size: 16px;
    }

        h2, h3{
        text-align: left !important;
    }

     footer {
        padding-top: 30px;
    }

    footer h2 {
        font-size: 20px;
        line-height: 1.4;
        margin-bottom: 20px;
        text-align: left;
    }

    footer h4 {
        font-size: 18px;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    footer p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 8px;
    }

    footer .logo {
        max-width: 140px;
    }

   .about h1{
    font-size: 25px;
   }
  

.banner h1 {
    color: #fff;
    font-size: 26px;
}

.about h2 {
    margin-top: 20px;
}

}


@media (max-width: 768px) {

  .kenburns-slideshow {
    width: 100%;
    overflow: hidden;
  }

  .kenburns-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
  }

  .kenburns-slide:first-child {
    position: relative;
    opacity: 1;
  }

  .kenburns-img {
    width: 100%;
    height: auto;            
    display: block;
    object-fit: contain; 
    transform: none !important;
    animation: none !important;
  }
}