*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Spartan', sans-serif;
  }

  /* fixed */

  h1 {
    font-size: 60px;
    color: #222;
  }
h2 {
    font-size: 46;
    color: #222;
}
h4 {
    font-size: 20px;
    color: #222;
}
h6 {
    font-weight: 700;
    font-size: 12px;
    color: #222;
}
 p {
    font-size: 16px;
    color: #465b52;
    margin: 15px 0 20px o;
}
.section-p1 {
    padding: 40px 80px;
}
.section-m1 {
    margin: 40px 0;
} 
body{
    width: 100%;
    background: hsla(0, 4%, 69%, 0.747);
}

/* whatsapp */

.whatsapp{
    position: fixed;
    bottom: 60px;
}

/* call me */

.call-me{
    position: fixed;
    bottom: 10px;
}


/* logo */
.logo a{
    padding: 20px 40px;
    width: 100px;
    height: 100px;
}
/* head */
#header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 40px;
    background: black;
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
}
/* nav bar */
#navbar{
    display: flex;
    justify-content: center;
    align-items: center;
}
#navbar li{
    padding: 0 30px;
    list-style: none;
    position: relative;
}
#navbar li a{
    text-decoration: none;
    font-size: 25px;
    font-weight: 500px;
    color: rgb(204, 201, 196);
    transition: 0.3 ease;
}
#navbar li a:hover,
#navbar li a.active{
    color: aqua;
}
#navbar li a.active::after,
#navbar li a:hover::after{
    content: "";
    width: 30%;
    height: 5px;
    background: #088178;
    position: absolute;
    bottom: -4px;
    left: 20px;
}
#mobile{
    display: none;
    align-items: center;
}
#close{
    display: none;
}
#banner{
    background: url(./photos/1.jpeg);
    background-size: cover;
    background-position:center ;
    height: 100vh;
}
.banner-text{
    text-align: center;
    padding-top: 130px;
}
.banner-text h1{
    color: white;
    font-size: 60px ;
}
.banner-text p{
    color: rgb(223, 217, 217);
    font-size: 27px ;
}
.banner-btn{
    margin: 60px auto 0;
}

.banner-btn a{
    font-size: 27px;
    width: 170px;
    text-decoration: none;
    display: inline-block;
    padding: 12px 0;
    color: #fff;
    border: .5px solid #fff;
    position: relative;
    z-index: 1;
}
.banner-btn a span{
    font-size: 27px;
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #ff994f;
    z-index: -1;
    transition: 0.5s;
}
.banner-btn a:hover span{
    width: 100%;
}
/* slider */
.slider{
    display: flex;
    width: 49%;
    height: 400px;
    background-image: url(./photos/1\(6\).jpg);
    background-size: 100% 100%;
    animation: changeImage 20s linear infinite;
    margin-left: 20px;
    margin-top: 20px;
    box-shadow: rgba(149, 157,165, 0.2) 0px 8px 24px;
}
@keyframes changeImage{
    0% {
        background-image: url(./photos/11\ \(2\).jpg);
    }
    25% {
        background-image: url(./photos/1\ \(1\).png);
    }
    50% {
        background-image: url(./photos/1\ \(2\).jpg);
    }
    75% {
        background-image: url(./photos/1\ \(3\).jpg);
    }
    80% {
        background-image: url(./photos/1\ \(4\).jpg);
    }
}
/* Form */
.contact-container{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-left: 600px;
    margin-top: -500px;
}
.contact-left{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}
.contact-left-title h2{
    font-weight: 600;
    color: #a363aa;
    font-size: 40px;
}
.contact-left-title hr{
    border: none;
    width: 120px;
    height: 5px;
    background-color: #a363aa;
    border-radius: 10px;
    margin-bottom: 20px;
}
.contact-inputs{
    width: 400px;
    height: 40px;
    border: none;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color: #666;
    border-radius: 50px;
}
.contact-left textarea{
    height: 80px;
    padding-top: 15px;
    border-radius: 20px;
}
.contact-inputs:focus{
    border: 2px solid #ff994f;
}
.contact-inputs::placeholder{
    color: #a9a9a9;
}
.contact-left button{
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    color: #fff;
    gap: 10px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(270deg,#ff994f,#fa6d86);
    cursor: pointer;
}
/* headings */
.heading h1{
    font-size: 60px;
    margin-top: 10px;
    margin-left: 10%;
    color: #e08c51;
    }
.heading h2{
    font-size: 30px;
    margin-left: 150px;
    margin-top: 20px;
    gap: 20px;
    color: #5c4c42;


}
/* .heading h3{
    font-size: 25px;
    margin-left: 200px;
    margin-top: 20px;
} */


/* contact us */
.contact-us h2{
    font-size: 50px;
    margin-top: 40px;
    margin-left: 80px;
    color: #5c4c42;
}
.wrapper{
    display: inline-flex;
    margin-left: 80px;
    margin-top: 55px;
}
.wrapper .icon{
    margin:  0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68,-0.55,0.265,1.55);
}
.wrapper .icon span{
    position: relative;
    height: 60px;
    width: 60px;
    display: block;
    text-align: center;
    border-radius: 50%;
    background: #fff;
    z-index: 2;
    box-shadow: 0 10px 10px grba(0,0,0,0.1);
}
.wrapper .icon:hover span a{
    color: #fff;
}
.wrapper .icon span a{
    font-size: 27px;
    line-height: 55px;
}
.wrapper .icon span {
    color: #fff;
}
.wrapper .icon .tooltip{
    position: absolute;
    top: 0px;
    background: #fff;
    color: #fff;
    font-size: 20px;
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 10px 10px grba(0,0,0,0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.68,-0.55,0.265,1.55);
}
.wrapper .icon:hover .tooltip{
    opacity: 1;
    pointer-events: auto;
    top: -60px;
}
.wrapper .icon .tooltip::before{
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    background: #fff;
    bottom: -8px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.4s cubic-bezier(0.68,-0.55,0.265,1.55);
}
.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip{
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.4);
}
.wrapper .email:hover span,
.wrapper .email:hover .tooltip,
.wrapper .email:hover .tooltip:before{
    background: #a363aa;
}
.wrapper .facebook:hover span,
.wrapper .facebook:hover:hover .tooltip,
.wrapper .facebook:hover:hover .tooltip:before{
    background: #a363aa;
}
.wrapper .instagram:hover span,
.wrapper .instagram:hover:hover:hover .tooltip,
.wrapper .instagram:hover:hover:hover .tooltip:before{
    background: #a363aa;
}
.wrapper .location:hover span,
.wrapper .location:hover:hover:hover .tooltip,
.wrapper .location:hover:hover:hover .tooltip:before{
    background: #a363aa;
}
.wrapper .call:hover span,
.wrapper .call:hover:hover:hover .tooltip,
.wrapper .call:hover:hover:hover .tooltip:before{
    background: #a363aa;
}

/* address */
.address{
    margin-left: 150px;
    margin-top: 50px;
}
.add{
    font-size: 30px;
    color: #5c4c42;
    
}
#address-bar{
    font-size: 45px;
    margin-left: 90px;
     color: #5c4c42;
}
.icon-address h3{
    font-size:27px;
    padding-left: 45px;
}

/* services */
#first-serve{
    align-items: center;
}










/* About US */

.about h2{
    color: rgb(73, 77, 80);
    font-size: 50px;
    margin-top: 30px;
    margin-left: 40px;
}
.para1{
    font-size: 25px;
    margin-top: 40px;
    margin-left: 77px;
}
.para2{
    font-size: 25px;
    margin-top: 20px;
    margin-left: 75px;
}
/* slider1 */
.slider1{
    display: flex;
    width: 36%;
    height: 390px;
    background-image: url(./photos/1\(6\).jpg);
    background-size: 100% 100%;
    animation: changeImage1 70s linear infinite;
    margin-left: 780px;
    margin-top: -390px;
    box-shadow: rgba(149, 157,165, 0.2) 0px 8px 24px;
}
@keyframes changeImage1{
    0% {
        background-image: url(./photos/a6.jfif);
    }
    25% {
        background-image: url(./photos/a1.jfif);
    }
    50% {
        background-image: url(./photos/a5.jfif);
    }
    75% {
        background-image: url(./photos/a9.jfif);
    }
    80% {
        background-image: url(./photos/a10.jfif);
    }
}
.head11 h1{
    font-size: 50px;
    margin-top: 50px;
    margin-left: 90px;
}
.head11 h2{
    font-size: 40px;
    margin-top: -1px;
    margin-left: 100px;
}
.head11 h3{
    font-size: 29px;
    margin-top: 0px;
    margin-left:0 ;
}



/* testimonials */
#testSlide{
    width: 100%;
    min-height: 100vh;
    background-color: #fcfcfc;
    display: flex;
    justify-content: center;
    align-items: center;
}
 .container{
    width: 100%;
    position: relative;
    min-height: 330px;
    background: color #f5f5f5;
    margin-top: -150px;
}
.container .content-wraper{
    width: 70%;
    min-height: inherit;
    margin: 30px auto;
    text-align: center;
}
.content-wraper .header1 h1{
    position: relative;
    font-size: 68px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 1px;
}
.content-wraper .header1 h1::before{
    content: '';
    width: 250px;
    height: 5px;
    background-color: #006994;
    border-radius: 25px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}
.content-wraper .testrow{
    width: 100%;
    min-height: inherit;
    position: relative;
    overflow: hidden;
}
.testrow .testitem{
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.testrow .testitem:not(.active){
    top: 0%;
    left: -100%;
}
.testrow .testitem img{
    width: 130px;
    height: 130px;
    margin-top: 20px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 5px;
    outline: 2px solid #006994;
    outline-offset: 2px;
}
.testrow .testitem h3{
    font-size: 30px;
    font-style: italic;
    padding: 7px;
}
.testrow .testitem h4{
    font-style: italic;
}
.testrow .testitem p{
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1.2;
    padding: 10px;
}
.content-wraper .indicators{
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px;
    cursor: pointer;
}
.content-wraper .indicators .dot{
    width: 15px;
    height: 15px;
    margin:-30px 3px;
    border: 3px solid #aaa;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.5s ease;
}
.content-wraper .indicators .active{
    background-color: #006994;
}
@keyframes next1{
    from{
        left: 0%;
    }
    to{
        left: -100%;
    }
}
@keyframes next2{
    from{
        left: 100%;
    }
    to{
        left: 0%;
    }
}
@keyframes prev1{
    from{
        left: 0%;
    }
    to{
        left: 100%;
    }
}
@keyframes prev2{
    from{
        left: -100%;
    }
    to{
        left: 0%;
    }
}









  







 /* Start media Query */
 @media screen and (max-width:799px){
    html,body{
        width: 100%;
        height: 100%;
        padding: 0;
        margin: 0;
        overflow-x: hidden;
    }

    .banner-text h1{
        font-size: 37px;
    }
    .banner-text p{
        font-size: 24px;
        margin-left: 10px;
        margin-right: 5px;
    }
    #banner{
        background-size: cover;
        background-position:center ;
        height: 100vh;
    }
    /* nav bar */
    #navbar{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        right: -300px;
        height: 100vh;
        width: 202px;
        background-color: #1f2022;
        box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
        padding: 80px 0 0 10px;
        transition: 0.3s;
    }

    #navbar.active{
        right: 0px;
    }
    #navbar li{
        margin-bottom: 35px;
    }
    #mobile{
        display: flex;
        align-items: center;
    }
    #mobile{
        font-size: 24px;
        padding: 10px;
    }  
    #close{
        display: initial;
        position: absolute;
        top: 30px;
        left: 20px;
        font-size: 25px;
    }
    /* home slider */
    .slider{
        display: inline-block;
        width: 95%;
        margin-left: 10px;
        margin-right: 10px;
    }
    /* home form */
    .contact-container{
        width: 80%;
        margin-left: 20px;
        margin-top: -100px;
        border-radius: 50px;
    }
    .contact-left{
        width: 900px;
        resize: vertical;
        overflow: auto;
    }
    /* content */
    #content .heading h1{
        font-size: 39px;
        margin-top: -85px;
        margin-left: 80px;
    } 
    #content .heading h2{
        font-size: 250x;
        margin-left: 10px;
        margin-left: 40px;
    }


    /* contact */
    #contact .contact-us h2{
        margin-left: 10px;
    }
    #contact .wrapper{
        display: flex;
        flex-direction: row;
        overflow:scroll;
        width: 100%;
        margin-left: -50px;
        padding: -50px;
        text-align: center;
        gap: 10px;
    }
    #contact .address .add {
        font-size: 45px;
        margin-left: -85px;
    }
    #contact #address-bar{
        font-size: 60px;
        margin-left: -50px;
    }
    #contact h3{
        font-size: 20px;
        margin-left: -89px;
    }



    /* service page */

    /* head 1 */
    #first-serve .head1 h2{
        font-size: 34px;
        margin-left: 20px;
    }
    #first-serve .head1 h3{
        font-size: 30px;
        margin-left: 12px;
        margin-top: 10px;
    }  
    #first-serve .container{
        display: inline-block;
        border-radius: 10px;
        overflow: auto;
        margin-top: 50px;
        width: 350px;
        margin-left: 20px;
    }
    #first-serve .container .row1 {
        font-size: 20px;
    }
    #first-serve .container h2{
        font-size: 32px;
    }
    #first-serve .container .row1 p{
        font-size: 20px;
        font-weight: 500;
    }
      
    #first-serve .container1{
        display: inline-block;
        border-radius: 10px;
        overflow: auto;
        margin-top: 20px;
        width: 350px;
        margin-left: 20px;
    }
    #first-serve .container1 .row2 {
        font-size: 20px;
    }
    #first-serve .container1 h2{
        font-size: 32px;
    }
    #first-serve .container1 .row2 p{
        font-size: 20px;
        font-weight: 500;
    }
    
    #first-serve .container2{
        display: inline-block;
        border-radius: 10px;
        overflow: auto;
        margin-top: 20px;
        width: 350px;
        margin-left: 20px;
    }
    #first-serve .container2 .row3 {
        font-size: 20px;
    }
    #first-serve .container2 h2{
        font-size: 32px;
    }
    #first-serve .container2 .row3 p{
        font-size: 20px;
        font-weight: 500;
    }
    #first-serve .container3{
        display: inline-block;
        border-radius: 10px;
        overflow: auto;
        margin-top: 20px;
        width: 350px;
        margin-left: 20px;
    }
    #first-serve .container3 .row4 {
        font-size: 20px;
    }
    #first-serve .container3 h2{
        font-size: 32px;
    }
    #first-serve .container3 .row4 p{
        font-size: 20px;
        font-weight: 500;
    }
    


    /* About Page */

/* slider1 */
.slider1{
    display: flex;
    width: 89%;
    height: 390px;
    background-image: url(./photos/1\(6\).jpg);
    background-size: 100% 100%;
    animation: changeImage1 70s linear infinite;
    margin-left: 20px;
    margin-top: 40px;
    box-shadow: rgba(149, 157,165, 0.2) 0px 8px 24px;
}
    @keyframes changeImage1{
    0% {
        background-image: url(./photos/a6.jfif);
    }
    25% {
        background-image: url(./photos/a1.jfif);
    }
    50% {
        background-image: url(./photos/a5.jfif);
    }
    75% {
        background-image: url(./photos/a9.jfif);
    }
    80% {
        background-image: url(./photos/a10.jfif);
    }
    }

    .about h2{
        font-size: 39px;
    }
    .about .para1{
        font-size: 28px;
    }
    .head11 h1{
        font-size: 35px;
        margin-left: 71px;
    }
    .head11 h2{
        font-size: 35px;
        margin-left: 71px;
    }




    /* Testimonials */
    .content-wraper .header1 h1{
        font-size: 45px;
        margin-top: 90px;
    }
    .testrow{
        margin-top: -60px;
        width: auto;
        height: 650px;
    }
    .testrow .testitem{
        margin-top: 60px;
    }
    .testrow .testitem p{
        font-size: 20px;
    }


    

     }
