/*font*/
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Montserrat'sans-serif;
}

:root{
    --second-color:#dfd6a7;
    --first-bg-color:#75492b;
    --third-color:rgb(255, 192, 206);
    --black-color:#151515;
    --main-color: #f7e6df;
    --white-color:#fff;
    --light-gre: #928f8fd2;

    --font-cursive: 'Great Vibes', cursive;
    --font-body: 'Montserrat', sans-serif;

}

html{
    font-size: 60.6%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body{
    background: var(--white-color);
    color: var(--text-color);
    display: flex;
    max-width: 1440px;
    flex-direction: column;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Header section */
.header{
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 0.4rem 3% 0.4rem;
    background: var(--main-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
 .logo img{
    width: 13vw;
    height: auto;
    /* mix-blend-mode:hard-light; */
    mix-blend-mode: multiply;
}
.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* height: 90px; */
}
.navbar ul{
    display: flex;
    list-style: none;
    align-items: center;
}
.navbar a{
    font-size: 2.3rem;
    text-decoration: none;
    color: var(--black-color);
    margin-left: 4rem;
    font-weight: 700;
    transition: 0.3s;
    border-bottom: 3px solid transparent;
}
.navbar a:hover,
.navbar a.active{
   color: var(--first-bg-color);
   border-bottom: 3px solid var(--first-bg-color);
} 
#menu-icon{
    font-size: 2rem;
    padding: 5px 5px 0;
    z-index: 100;
    cursor: pointer;
    display: none;
    color: var(--black-color);
}
#menu-icon:hover{
    color: var(--first-bg-color);
}

/* Slider section */
#slider{
    /* height: 500px; */
}
#slider .img-slider{
    position: relative;
    width: 500%;
    height: 700%;
    display: block;
    margin: 0;
    left: 0;
    margin-top: -3rem;
    background-position: center;
    animation: 20s slider infinite;
}
.img-slider img{
    float: left;
    height: 620px;
    width: 20%;
}
@keyframes slider {
    0%{
        left: 0;
    }
    20%{
        left: 0;
    }
    25%{
        left: -100%;
    }
    45%{
        left: -100%;
    }
    50%{
        left: -200%;
    }
    70%{
        left: -200%;
    }
    75%{
        left: -300%;
    }
    95%{
        left: -300%;
    }
    100%{
        left: -400%;
    } 
    
 }

 /* home setion */
#home {
    position: absolute;
    top:50%;
    left: 3%;
}
#home h1{
    font-size: 3.9rem;
    color: var(--black-color);
    font-weight: 700;
}
#home h2{
    font-size: 2.9rem;
    /* font-family: var(--font-cursive); */
    font-weight: 700;
    color: var(--black-color);
}
#home .social-icons a{
    display: inline-flex;
    width: 4.2rem;
    height: 4.2rem;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: 2px solid var(--black-color);
    font-size: 2rem;
    border-radius: 50%;
    color: var(--black-color);
    transition: 0.3s ease;
    margin: 2rem 1rem 2rem 1rem;
}
#home .social-icons a:hover{
    color: var(--text-color);
    transform: scale(1)translateY(-4px);
    box-shadow: 0 0 20px var(--light-gre);
    background-color: var(--light-gre);
}
#home .btn{
    display: inline-block;
    padding: 1rem 2.7rem;
    background: var(--black-color);
    box-shadow: 0 0 10px var(--black-color);
    border-radius: 4rem;
    font-size: 1.2rem;
    font-family: var(--font-cursive);
    color: var(--white-color);
    border: 2px solid transparent;
    letter-spacing: 0.1rem;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}
.btn:hover{
    transform: scale(1.1);
    box-shadow: 0 0 10px var(--black-color);
} 

/* service section*/
#service{
    padding: 0.4rem 4% 0.4rem;
}
#service h1{
    font-size: 5rem;
    padding: 0.4rem 4% 0.4rem;
    text-align: center;
    font-weight: 600;
    margin: 5rem  0  2rem  0;
}
#service h1::after{
    content: "";
    height: 0.3rem;
    width: 20rem;
    background-color: var(--first-bg-color);
    display: block;
    margin: auto;
}
.treatment p{
    font-size: 2.2rem;
    color: var(--first-bg-color);
    font-family: 400;
    padding: 3rem;
}
.row{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(500px , 1fr));
  gap: 20px;
}
.treatment .sub1{
    width: 100%;
    padding: 4rem 0 1rem 0 ;
    text-align: center;
    background-color: var(--main-color);
    border-radius:  100px 0 30% 0;
}
.treatment .sub-img img{
    width: 80%;
    height: 90%;
    border-radius: 40px 0 40% 0 ;
}
.treatment h3{
    font-size: 2.8rem;
    font-weight: 600;
    padding-top: 4rem;
    text-align: left;
    margin-top: 2rem;
    padding: 0 0 0 7rem;
}
.treatment .sub-content ul li{
    font-size: 2rem;
    font-weight: 300;
    text-align: left;
    padding: 0 0 0.3rem 0;
}
.treatment .sub-content ul{
    margin-top: 1.2rem;
    padding: 0 0 0 8rem;
}
.row .sub1 .button .btn{
    display: inline-block;
    padding: 1rem 2.7rem;
    margin: 2rem;
    background: var(--first-bg-color);
    box-shadow: 0 0 0 var(--first-bg-color);
    border-radius: 4rem;
    font-size: 2rem;
    color: var(--white-color);
    border: 2px solid transparent;
    letter-spacing: 0.1rem;
    transition: 0.3s ease-in-out;
    cursor: pointer;
    z-index: 10;
}

.row .sub1 .button .btn:hover{
    transform: scale(1.1);
    box-shadow: 0 0 0 var(--first-bg-color);
} 
.button{
    text-align: left;
    margin: 0 0 0 9rem;
}
.treatment .slogn {
    padding: 3rem;
    margin-top: 2rem;
    font-size: 2.9rem;
    font-weight: 600;
    text-align: center;
    color: var(--first-bg-color);
}

/* About us */
#about {
    background-color: var(--main-color);
    border-radius: 200px 0 60px 0;
    margin: 4rem;
    padding: 3.8rem;
}
#about h1{
    font-size: 5rem;
    padding: 0.4rem 4% 0.4rem;
    color: var(--black-color);
    text-align: center;
    font-weight: 600;
    margin: 5rem  0 2rem  0;
}
#about h1::after{
    content: "";
    height: 0.3rem;
    width: 18rem;
    background-color: var(--first-bg-color);
    display: block;
    margin: auto;
}
#about .about-us {
    display: flex;
    align-items: center;
    padding: 2.7rem;
    font-size: 2.7rem;
}
.about-img img{
    width: 2300px;
    height: 600px;
    padding: 6rem;
    border-radius: 30%;
}
.about-info p{
    padding: 4rem;
    font-size: 2.8rem;
    text-align: center;
    font-family: var(--font-body);
    color: var(--black-color);
    font-weight: 500;
}
.about-info #info-imp{
    text-transform: lowercase;
}
.about-slogan {
    font-size: 3rem;
    text-align: center;
    padding: 0 0 10rem 0 ;
    color: var(--black-color);
    font-weight: 500;
}

/* Gallery */
#gallery{
    border-radius: 200px 0 60px 0;
    background-color: var(--main-color);
    margin: 3rem;
    padding: 3.8rem;
}
#gallery h1{
    font-size: 5rem;
    padding: 0.4rem 4% 0.4rem;
    color: var(--black-color);
    text-align: center;
    font-weight: 600;
    margin: 5rem 0  2rem  0;
}
#gallery h1::after{
    content: "";
    height: 0.3rem;
    width: 14rem;
    background-color: var(--first-bg-color);
    display: block;
    margin: auto;
}
img{
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    display: inline-block;
}
.gallery-img .img{
    display: flex;
    justify-content: center;
    align-items: center;
}
.gallery-img .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.gallery-img {
    padding-top: 8rem;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
}

/* Contact us  */
#contact {
    background-color: var(--main-color);
    border-radius: 200px 0 60px 0;
    margin: 3rem;
    padding: 3.8rem;
}
#contact h1{
    font-size: 5rem;
    padding: 0.4rem 4% 0.4rem;
    color: var(--black-color);
    text-align: center;
    font-weight: 600;
    margin: 5rem  0 2rem  0;
}
#contact h1::after{
    content: "";
    height: 0.3rem;
    width: 19rem;
    background-color: var(--first-bg-color);
    display: block;
    margin: auto;
}
.contact-container {
    width: 100%;
    padding: 2rem;
    display: flex;
    justify-content: space-around;
    align-items: center; 
}
#contact .contact-form {
    position: relative;
    z-index: 10;
    left: 3px;
    margin: 3rem;
}

.contact-form input,
.contact-form textarea {
    width: 400px;
    height: 45px;
    padding: 0.7rem 0 0.7rem  1.5rem;
    margin-bottom: 3rem;
    font-size: 2.2rem;
    border: 1.5px solid #ddd;
    border-radius: 30px;
    align-items: center;
}
.contact-form input:focus ,
.contact-form textarea:focus{
    border: 2px solid #f08b38a6;
}
.contact-form button {
    padding: 0.8rem 1.5rem;
    border: none;
    background-color: var(--first-bg-color);
    color: var(--white-color);
    font-size: 2.3rem;
    cursor: pointer;
    border-radius: 30px;
}
.contact-form button:hover {
    background-color: var(--first-bg-color);
}
.contact-right .phone{
    margin-top: 3rem;
}
.contact-right .address h4{
    font-size: 3.8rem;
    margin: 3rem;
}
.contact-right .address p{
    font-size: 2.4rem;
    margin: 3rem;
}
.contact-right .phone h4{
    font-size: 3.8rem;
    margin: 3rem;
}
.contact-right .phone p{
    font-size: 2.4rem;
    margin: 3rem;
}

/* Maps */
#maps{
    padding: 0.4rem 4% 0.4rem;
    margin: 3rem;
}
.map{
    width: 100%;
    height: 500px;
}
.map iframe{
    width: 100%;
    height: 500px;
    padding: 5rem ;
}

/* footer */
footer {
    position: relative;
    bottom: 0;
    width: 100%;
}
#footer{
    width: 100%;
    padding: 5px 3px 2px;
    margin-top: 8rem;
    background-color: var(--main-color);
}
.footer-icon{
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-icon a{
    text-decoration: none;
    padding: 5px;
    background-color: var(--white-color);
    margin: 5px;
    border-radius: 50%;
    text-align: center;
    height: 4.2rem;
    width: 4.2rem;
    font-size: 2rem;
}
.footer-icon a i{
    font-size: 3rem;
    color: var(--black-color);
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-icon a:hover{
    background-color: var(--main-color);
    transition: 0.5s;
}
.footer-icon a i:hover{
    color: var(--black-color);
    transition: 0.5s;
}
.footer-navbar{
    margin: 16px;
}
.footer-navbar ul{
    display: flex;
    justify-content: center;
    list-style: none;
}
.footer-navbar ul li a{
    color: var(--black-color);
    margin: 1px;
    padding: 0 1rem 0 0;
    text-decoration: none;
    font-size: 2.4rem;
    font-weight: 600;
    transition: 0.5s;
}
.footer-navbar ul li a:hover{
    color: var(--first-bg-color);
    text-align: center;
}
.footer-copy{
    background-color: var(--main-color);
    padding: 10px;
    text-align: center;
}
.footer-copy p{
    color: var(--black-color);
    font-size: 3rem;
}



/* @media quary */

@media (max-width: 1445px) {

    .logo img{
        width: 24rem;
    }
    #home {
        position: absolute;
        top: 56%;
    }
    .img-slider img{
        height: 650px;
    }
    .about-img img{
        height: 600px;
        width: 3400px;
        padding: 6rem;
    }
}

@media (max-width:1280px) {
    #home {
        position: absolute;
        top: 68%;
        left: 2%;
    }
}

@media (max-width: 1030px) {
    
    .logo img{
        width: 23rem;
    }
    #home {
        position: absolute;
        top: 26%;
        left: 3%;
    }
    #home h1{
        font-size: 4.8rem;
    }
    #home h2{
        font-size: 3.3rem;
    }
    .img-slider img{
        height: 560px;
    }
    .about-img img{
        height: 550px;
        width: 3600px;
        padding: 6rem;
    }
}

@media (max-width: 920px) {

    #home {
        position: absolute;
        top: 26%;
        left: 3%;
    }
    #about .about-us {
        display: inline;
        padding: 3rem;
    }
    .about-img img{
        height: 700px;
        width: 750px;
        padding: 6rem;
    }
}

@media (max-width: 855px) {

    #home {
        position: absolute;
        top: 28%;
        left: 3%;
    }
    #about .about-us {
        display: inline;
    }
    .about-img img{
        height: 700px;
        width: 750px;
        padding: 6rem;
    }
}

@media (max-width: 830px) {

    #home {
        position: absolute;
        top: 30%;
        left: 3%;
    }
    #about .about-us {
        display: inline;
    }
    .about-img img{
        height: 700px;
        width: 750px;
        padding: 6rem;
    }
}

@media (max-width: 770px) {

    .header{
        width: 100%;
        z-index: 100;
    }
    .logo img{
        width: 20rem;
    }
    #home {
        position: absolute;
        top: 36%;
        left: 3%;
    }
    #home h1{
        font-size: 2.8rem;
    }
    #home h2{
        font-size: 1.8rem;
    }
    #home .social-icons a{
        font-size: 1.4rem;
        width: 3.8rem;
        height: 3.8rem;
    }
    #home .btn{
        font-size: 0.9rem;
    }
    .treatment h3{
        font-size: 3rem;
    }
    .treatment h2{
        font-size: 0.2rem;
    }
    .treatment .sub-content ul li{
        font-size: 2rem;
    }
    .treatment h2{
        font-size: 3.7rem;
    }
    .treatment p {
        font-size: 2.3rem;
    }
    #about .about-us {
        display: inline;
    }
    .about-img img{
        height: 700px;
        width: 750px;
        padding: 6rem;
    }
    .contact-container{
        display: inline;
    }
    .contact-form input,
    .contact-form textarea {
        width: 600px;
        height: 50px;
    } 
    .footer-icon a i{
        font-size: 4rem;
    }
    .footer-navbar ul li a{
        font-size: 3rem;
    }
    .footer-copy p{
        font-size: 3.7rem;
    }
}

@media (max-width:600px) {
    .header{
        height: 10rem;
        width: 100%;
        z-index: 100;
    }
    .navbar ul{
        position: absolute;
        top: 40px;
        width: 200px;
        right: 38px;
        flex-direction: column;
        background-color: var(--main-color);
        font-size: 2rem;
        border-radius: 0 0 20px 20px;
        overflow: hidden;
    }
    .navbar ul{
        font-size: 1.6rem;
        display: block;
    }
    .navbar ul li {
        padding: 15px 0;
    }
    .logo img{
        width: 13rem;
    }
   #menu-icon{
    display: block;
   }  
}

@media (max-width:550px) {
    .header{
        height: 10rem;
        width: 100%;
        z-index: 100;
    }
    .navbar ul{
        position: absolute;
        top: 40px;
        width: 200px;
        right: 38px;
        flex-direction: column;
        background-color: var(--main-color);
        font-size: 2rem;
        border-radius: 0 0 20px 20px;
        overflow: hidden;
    }
    .navbar ul{
        font-size: 1.6rem;
        display: block;
    }
    .navbar ul li {
        padding: 15px 0;
    }
    .logo img{
        width: 13rem;
    }
   #menu-icon{
    display: block;
   }
   .img-slider img{
    height: 450px;
   }
    #home {
        position: absolute;
        top: 39%;
        left: 3%;
    }
    #home h1{
        font-size: 2rem;
    }
    #home h2{
        font-size: 1rem;
    }
    #home .social-icons a{
        font-size: 1.4rem;
        width: 3.2rem;
        margin: 1.3rem 0.3rem 1.3rem 0.3rem;
        height: 3.2rem;
    }
    #home .btn{
        font-size: 0.9rem;
    }
    .row .sub1 .button .btn{
        font-size: 1.5rem;
    }
    #service h1{
        font-size: 3.5rem;
    }
    .treatment p{
        font-size: 1.7rem;
    }
    .treatment .sub-img img{
        width: 90%;
    }
    .treatment .sub1{
        width: 96%;
    }
    .treatment .sub-content ul{
        padding: 0   4rem;
    }
    .treatment .sub-content h3{
        padding: 0   2.5rem;
    }
    .treatment .slogn{
        font-size: 2.2rem;
    }
    #about{
        border-radius: 90px 0 80px 0;
        margin: 1.4rem;
    }
    #about h1{
        font-size: 3.6rem;
    }
    #about h1::after{
        width: 10rem;
    }
    #gallery{
        border-radius: 90px 0 80px 0;
        margin: 1.4rem;
    }
    #gallery h1{
        font-size: 3.5rem;
    }
    #gallery h1::after{
        width: 10rem;
    }
    #contact{
        border-radius: 90px 0 80px 0;
        margin: 1.4rem;
    }
    #contact h1{
        font-size: 3.5rem;
    }
    #contact h1::after{
        width: 16rem;
    }
    .contact-form input,
    .contact-form textarea {
        width: 220px;
    }
    #maps h4{
        font-size: 2.5rem;
    }
    .footer-icon a i{
        font-size: 1rem;
    }
    .footer-navbar ul li a{
        height: 3.3rem;
        width: 3.3rem;
    }
    .footer-copy p{
        font-size: 1.9rem;
    } 
}

@media (max-width: 480px) {
    .header{
        height: 10rem;
        width: 100%;
        z-index: 100;
    }
    .navbar ul{
        position: absolute;
        top: 40px;
        width: 200px;
        right: 38px;
        flex-direction: column;
        background-color: var(--main-color);
        font-size: 2rem;
        border-radius: 0 0 20px 20px;
        overflow: hidden;
    }
    .navbar ul{
        font-size: 1.6rem;
        display: block;
    }
    .navbar ul li {
        padding: 15px 0;
    }
    .logo img{
        width: 13rem;
    }
   #menu-icon{
    display: block;
   }
    #home {
        position: absolute;
        top: 28%;
        left: 3%;
    }
    #home h1{
        font-size: 1.8rem;
    }
    #home h2{
        font-size: 0.9rem;
    }
    #home .social-icons a{
        font-size: 1rem;
        width: 2.9rem;
        height: 2.9rem;
    }
    #home .btn{
        font-size: 0.7rem;
    }
    .row .sub1 .button .btn{
        font-size: 1.5rem;
    }
    #service h1{
        font-size: 3rem;
    }
    .treatment p{
        font-size: 1.7rem;
    }
    .treatment .sub-img img{
        width: 75%;
    }
    .treatment .sub1{
        width: 75%;
    }
    #about{
        border-radius: 90px 0 80px 0;
        margin: 1.4rem;
    }
    #about h1{
        font-size: 3.8rem;
    }
    #about h1::after{
        width: 15rem;
    }
    #gallery{
        border-radius: 90px 0 80px 0;
        margin: 1.4rem;
    }
    #gallery h1{
        font-size: 3.8rem;
    }
    #gallery h1::after{
        width: 12rem;
    }
    #contact{
        border-radius: 90px 0 80px 0;
        margin: 1.4rem;
    }
    #contact h1{
        font-size: 3.8rem;
    }
    #contact h1::after{
        width: 17rem;
    }
    .contact-form input,
    .contact-form textarea {
        width: 220px;
    }
    #maps h4{
        font-size: 2.5rem;
    }
    .footer-icon a i{
        font-size: 3rem;
    }
    .footer-navbar ul li a{
        font-size: 1.6rem;
    }
    .footer-copy p{
        font-size: 1.9rem;
    } 
}
    
@media (max-width: 435px){
    .header{
        height: 10rem;
        width: 100%;
        z-index: 100;
    }
    .navbar ul{
        position: absolute;
        top: 40px;
        width: 200px;
        right: 38px;
        flex-direction: column;
        background-color: var(--main-color);
        font-size: 2rem;
        border-radius: 0 0 20px 20px;
        overflow: hidden;
    }
    .navbar ul{
        font-size: 1.6rem;
        display: block;
    }
    .navbar ul li {
        padding: 15px 0;
    }
    .logo img{
        width: 13rem;
    }
   #menu-icon{
    display: block;
   }
   .img-slider img{
    width: 20%;
    height: 320px;
    margin-top: 8rem;
   }
   #home {
    position: absolute;
    top: 26%;
    left: 3%;
    }
    #home .btn{
        font-size: 0.9rem;
    }
    #service h1{
        margin-top: 2rem;
        font-size: 3rem;
    }
    .treatment h2{
        font-size: 2rem;
    }
    .treatment p {
        font-size: 1.7rem;
    }
    .treatment h3{
        font-size: 2rem;
    }
    .treatment .sub-content ul li{
        font-size: 1.6rem;
    }
    .treatment .sub-img img{
        width: 78%;
    }
    .treatment .sub1{
        width: 78%;
    }
    .row .sub1 .button .btn{
        font-size: 1.5rem;
    }
    .treatment .slogn{
        font-size: 2rem;
    }
    #about{
        border-radius: 100px 0 90px 0;
        margin: 2rem;
    }
    #about .about-us {
        display: inline;
    }
    .about-img img{
        height: 380px;
        padding: 2.5rem;
    }
    .about-info p{
        font-size: 1.5rem;
        padding: 1.5rem;
    }
    .about-slogan{
        font-size: 2.1rem;
        margin: 0  0.7rem ;
    }
    #gallery{
        border-radius: 100px 0 90px 0;
        margin: 2rem;
    }
    #contact{
        border-radius: 100px 0 90px 0; 
        margin: 2rem;  
    }
    .contact-container {
        padding-top: 4rem;
    }
    .contact-form input,
    .contact-form textarea {
        width: 300px;
        height: 40px;
    } 
    #contact .contact-form {
        position: relative;
        z-index: 10;
        left: -10px;
    }
    .contact-container{
        display: inline;
    }
    .contact-right .address h4{
        font-size: 2.5rem;
    }
    .contact-right .address p{
        font-size: 1.8rem;
    }
    .contact-right .phone h4{
        font-size: 2.5rem;
        margin: 3rem;
    }
    .contact-right .phone p{
        font-size: 1.8rem;
        margin: 2rem 0 2rem 3rem;
    }
    .map{
        height: 440px;
    }
    .map iframe{
        height: 400px;
        padding: 1rem 0 1rem 0 ;
    }
    .footer-icon a{
        width: 4.2rem;
        height: 4.2rem;
    }
    .footer-icon a i{
        font-size: 3rem;
    }
    .footer-navbar ul li a{
        font-size: 1.4rem;
    }
    .footer-copy p{
        font-size: 2rem;
    }
}

@media (max-width: 415px) {
    #home{
        top: 27%;
    }
    #service h1::after{
        width: 15rem;
    }
    #about h1{
        font-size: 3rem;
    }
    #about h1::after{
        width: 12rem;
    }
    #gallery h1{
        font-size: 3rem;
    }
    #gallery h1::after{
        width: 10rem;
    }
    #contact h1{
        font-size: 3rem;
    }
    #contact h1::after{
        width: 13rem;
    }
}

@media (max-width: 390px) {
    #home {
        position: absolute;
        top: 30%;
        left: 3%;
    }
    .treatment .sub1{
        width: 69%;
    }
    .treatment .sub-content ul li{
        font-size: 1.6rem;
    }
    .row .sub1 .button .btn{
        font-size: 1.9rem;
    }
    #about{
        border-radius: 90px 0 80px 0;
        margin: 2rem;
    }
    .about-img img{
        height: 340px;
        padding: 2.5rem;
    }
    .about-info p{
        padding: 1rem;
    }
    #gallery{
        border-radius: 90px 0 80px 0;
        margin: 2rem;
    }
    #contact{
        border-radius: 90px 0 80px 0;   
        margin: 2rem;
    }
    #maps{
        padding: 0.2rem 1% 0.2rem;
        margin: 0.2rem;
    }  
    .contact-form input,
    .contact-form textarea {
        width: 250px;
        height: 40px;
    } 
    .footer-icon a i{
        font-size: 3rem;
    }
    .footer-navbar ul li a{
        font-size: 1.2rem;
    }
    .footer-copy p{
        font-size: 1.9rem;
    } 
}

@media (max-width: 376px) {
    #home{
        top: 37%;
    }
    .about-img img{
        height: 320px;
        padding: 2.5rem;
    }
}

@media (max-width: 360px) {
    #home{
        top: 33%;
    }
    .treatment .sub-img img{
        width: 65%;
    }
    .treatment .sub1{
        width: 65%;
    }
    .about-info p{
        padding: 1rem;
    }
}

@media (max-width: 344px) {
    #home{
        top: 27%;
    }
    .contact-form input,
    .contact-form textarea {
        width: 220px;
    }
}

@media (max-width: 325px) {
    #home {
        position: absolute;
        top: 40%;
        left: 3%;
    }
    .img-slider img{
        width: 20%;
        height: 300px;
        margin-top: 8rem;
    }
    .treatment .sub1{
        width: 59%;
    }
    .row .sub1 .button .btn{
        font-size: 1.5rem;
    }
    #about{
        border-radius: 90px 0 80px 0;
        margin: 1.4rem;
    }
    .about-img img{
        height: 300px;
        padding: 1rem;
    }
    .about-info p{
        padding: 1rem;
    }
    #gallery{
        border-radius: 90px 0 80px 0;
        margin: 1.4rem;
    }
    #contact{
        border-radius: 90px 0 80px 0;
        margin: 1.4rem;
    }
    .contact-container{
        display: inline;
        padding: 0.1rem;
    }
    #contact .contact-form {
        position: relative;
        z-index: 10;
        left: -10px;
    }
    .contact-form input,
    .contact-form textarea {
        width: 220px;
    }
    #maps{
        padding: 0.2rem 1% 0.2rem;
        margin: 0.2rem;
    }
    .footer-icon a i{
        font-size: 3rem;
    }
    .footer-navbar ul li a{
        font-size: 1.2rem;
    }
    .footer-copy p{
        font-size: 1.9rem;
    } 
}

@media (max-width:295px) {
    .treatment .sub1{
        width: 54%;
    }
    .about-img img{
        height: 300px;
        padding: 1rem;
    }
    .about-info p{
        padding: 1rem;
    }
    .contact-container{
        padding: 0.1rem;
    }
    .contact-form input,
    .contact-form textarea {
        width: 210px;
    }
    #maps{
        padding: 0.2rem 1% 0.2rem;
        margin: 0.2rem;
    }
}

@media (max-width:288px) {
    .contact-container{
        padding: 0 0 0 -10rem;
    }
    .contact-form input,
    .contact-form textarea {
        width: 210px;
    }
    #maps{
        padding: 0.2rem 1% 0.2rem;
        margin: 0.2rem;
    }    
    #contact .contact-form {
        position: relative;
        z-index: 10;
        left: -20px;
    }
}

@media (max-width:260px) {
    .contact-container{
        padding: 0 0 0 -1000rem;
    }
    .contact-form input,
    .contact-form textarea {
        width: 200px;
    }
    #maps{
        padding: 0.1rem 0.1% 0.1rem;
    }
    #contact .contact-form {
        position: relative;
        z-index: 10;
        left: -20px;
    }
}