.about-me p {
    font-size: 18px;
    color: #000;
    font-family: "comic sans ms", sans-serif;
}
.about-me ul {
    padding: 0;
}
.about-me ul li {
    font-size: 16px;
    color: #000;
    font-family: "comic sans ms", sans-serif;
    margin-bottom: 10px;
}
.author-test img {
    width: 100px;
    height: 100px;
}
.footer-title {
    font-weight: 700;
    font-size: 24px;
}
.about-info p {
    margin-bottom: 10px;
}
.app-img img {
    max-width: 100%;
    width: 100%;
}
.inner-banner {
    background: url("../img/inner-banner.jpg") no-repeat;
    background-size: cover;
    background-position: center center;
    height: 300px;
    position: relative;
}
.inner-banner::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-bottom: 4rem solid #f5f5f5;
    border-right: 100vw solid transparent;
    right: 0;
    bottom: 0;
    z-index: 2;
}
.inner-banner::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: #0c0c0a;
    background: -moz-linear-gradient(90deg, #0c0c0a 0%, #0c0c0a 10%, rgba(12, 12, 10, 0.05) 90%);
    background: -webkit-linear-gradient(90deg, #0c0c0a 0%, #0c0c0a 10%, rgba(12, 12, 10, 0.05) 90%);
    background: linear-gradient(90deg, #0c0c0a 0%, #0c0c0a 10%, rgba(12, 12, 10, 0.05) 90%);
    filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=" #0c0c0a ",endColorstr=" #0c0c0a
        ",GradientType=1)";
    width: 100%;
}
.inner-banner h2 {
    color: #fff;
    font-weight: 700;
    font-size: 42px;
    position: relative;
    z-index: 999;
    padding-top: 130px;
    text-align: right;
}
.footer-paralax.typ-contact{
    margin-top: 0 !important;
    position: relative;
}
.footer-paralax.typ-contact .contact-mf{
    margin-top: 0 !important;
}
.footer-paralax.typ-contact::before{
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #f5f5f5;
    width: 100%;
    height: 30%;
    z-index: 1;
}
.testimonial-inner{
    padding: 4rem 0;
}
.testimonial-inner .testimonial-box{
    background: var(--main-bg-color) !important;
    padding: 2rem;
    border: 5px solid var(--secondary-bg-color);
    border-radius: 1rem;
}
.testimonial-inner .testimonial-box .description{
    padding: 0rem;
}
.testimonial-inner .test-list{
    margin: 0;
    padding: 0;
    /* display: grid;
    gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: masonry;
    break-inside: avoid; */
    display: column;
    columns: 2;
    break-inside: avoid;
    
}
.testimonial-inner .test-list li{
    break-inside: avoid;
    margin-bottom: 1rem;
}
.testimonial-inner .testimonial-box .author-test{
    margin-top: 0;
}
.testimonial-inner .testimonial-box .author-test img{
    border: 3px solid #fff;
} 
.footer-copy{
    padding: 10px 0;
    background-color: var(--secondary-bg-color);
}
.footer-copy p{
    color: #fff;
    margin: 0;
    font-size: 14px;
}
.hospital-block{
    background-color: var(--main-bg-color);
}
.hospital-block .info-wrap{
    padding: 15px 10px;
    text-align: center;
}
.hospital-block .info-wrap h3{
    color: #fff;
    font-weight: 600;
    font-size: 22px;
    line-height: 30px;
}
.hospital-block .info-wrap h4{
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
}
.hospital-block .info-wrap a{
    background-color: var(--secondary-bg-color);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    line-height: normal;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
}
#hospital-mf.owl-carousel .owl-stage{display: flex;}
#hospital-mf .owl-item {
    display: flex;
        flex: 1 0 auto;
}
#appointment.paralax-mf.footer-paralax{
    padding: 4rem 0rem !important;
}
.fix-btn {
    position: fixed;
    bottom: 0px;
    left: 20px;
    z-index: 2;
    padding-left: 0;
}
.fix-btn li {
    width: 50px;
    height: 50px;
    /* line-height: 50px; */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff0000;
    text-align: center;
    border: 2px solid #ff0000;
    margin-bottom: 10px;
    border-radius: 50%;
}
.fix-btn li:last-child {
    background: #1bd741;
    border-color: #1bd741;
}
.fix-btn li:last-child i {
    font-size: 28px;
}
.fix-btn li i {
    color: #fff;
    font-size: 24px;
}
.trin-trin {
    animation-name: trin;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
@keyframes trin {
    from {
        transform: rotate3d(0, 0, 1, 0deg);
    }
    20%,
    32%,
    44%,
    56%,
    68% {
        transform: rotate3d(0, 0, 1, 0deg);
    }
    23%,
    35%,
    47%,
    59%,
    71% {
        transform: rotate3d(0, 0, 1, 15deg);
    }
    26%,
    38%,
    50%,
    62%,
    74% {
        transform: rotate3d(0, 0, 1, 0deg);
    }
    29%,
    41%,
    53%,
    65%,
    77% {
        transform: rotate3d(0, 0, 1, -15deg);
    }
    80% {
        transform: rotate3d(0, 0, 1, 0deg);
    }
}
.whatsapp-btn {
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(241, 119, 50, 0.7);
    }
    50% {
        box-shadow: 0 0 0 0 rgba(241, 119, 50, 0.4);
    }
    75% {
        box-shadow: 0 0 0 14px rgba(241, 119, 50, 0.2);
    }
}

@media screen and (max-width: 768px) { 
    .about-mf .about-img img{
        margin: 0;
    }
    .about-mf .box-shadow-full{
        padding-top: 2rem;
    }
    .about-me p{
        font-size: 14px;
        line-height: 21px;
    }
    .title-a{
        font-size: 1.8rem;
    }
    #appointment.paralax-mf.footer-paralax{
        padding: 4rem 1rem !important;
    }
    .app-img img{
        margin-bottom: 3rem;
    }
    .sect-mt4{
        margin-top: 2rem;
    }
    .testimonial-inner .test-list{
        columns: 1;
    }
    .testimonial-box .author{
        font-size: 1.2rem;
    }
    .testimonial-inner .testimonial-box{
        padding: 1.5rem;
    }
    .lead{
        font-size: 1rem;
    }
}