*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Roboto', sans-serif;
}
body{
    background-color: #f2f2f2;
}
:root{
    --black--:rgb(42, 40, 40);
    --blue--: rgb(31, 164, 208);
}

nav{
    height: 100px;
    background-color: var(--black--);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 50px 0px 100px;
}
nav .logo{
    font-size: 30px;
    color: var(--blue--);
    font-weight: 600;
}

nav ul{
    display: flex;
    list-style: none;
}
nav ul li{
    margin: 0 50px;
}
nav ul li a{
    color: var(--blue--);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 8px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}
nav ul li a:hover,
nav ul li a.active{
    background: #fff;
    color: #1b1b1b;
}
nav .menu-btn i{
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: none;
}
#click{
    display: none;
}


@media (max-width: 940px){

nav .menu-btn i{
    display: block;
}
#click:checked ~ .menu-btn i:before{
    content: "\f00d";
}
nav .logo{
    margin-left: -80px;
}
    nav ul{
        position: fixed;
        top: 80px;
        left: -100%;
        background: var(--black--);
        height: 100vh;
        width: 100%;
        display: block;
        text-align: center;
        transition: all 0.3s ease;
    }
    #click:checked ~ ul{
        left: 0%;
    }
    nav ul li{
        margin: 40px 0;
    }
}
nav ul li a{
    font-size: 20px;
    display: block;
}
nav ul li a:hover,
nav ul li a.active{
    background: none;
    color: yellow;
}

/* banner */
.banner .back-video{
    margin-bottom: 100px;
}
.banner video{
    width: 100%;
    height: auto;
}
.banner h1{
    padding: 100px;
}
.banner button{
    display: flex;
    margin-left: 700px;
    margin-top: -70px;
    margin-bottom: 100px;

}
.banner strong{
    color: var(--blue--);
    display: flex;
    justify-content: center;
}
.banner button a{
    text-decoration: none;
}

@media (max-width:480px){
    .services h1 strong{
        font-size: .8rem;
        padding: 0;
        font-weight: 800;
        line-height: 30px;
        margin: 0;
    }
    .services{
        margin-top: -30px;
    }
    .banner button{
        margin-left: 150px;
        height: 43px;
        margin-top: -50px;
    }
    .banner h1{
        padding: 60px;
    }
    .cards .card .card-text{
        text-align: left;
        word-spacing: 1px;
    }
    .logos .logos-slide{
        animation: 8s slide infinite linear;
    }
}


.banner .services{
    background-color: var(--black--);
}
.service-heading h1{
    display: flex;
    justify-content: center;
    border-bottom: 3px solid;
    color: var(--blue--);
    margin-bottom: 50px;
    border-style: groove;
    border-color:var(--black--) ;
}
.service-card{
   
    margin-top: 50px;
    margin-bottom: 100px;
}
.card img{
    height: auto;
}
.card-text{
    font-size: 1rem;
    text-align: left;
    line-height: 30px;
    letter-spacing: 1px;
}
.card-title{
    font-weight: 800;
}

/* brands */
.brand{
    margin-bottom: 100px ;
}
.brand h1{
    display: flex;
    justify-content: center;
    color: var(--black--);
    font-weight: 800;
    margin-bottom: 50px;
}

@keyframes slide{
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
}

.logos{
    overflow: hidden;
    padding: 60px 0;

background: white;}
.logos-slide{
    white-space: nowrap;
    animation: 30s slide infinite linear;
}
.logos-slide img{
    height: 50px;
    margin: 00 40px;
}

.table{
    margin-bottom: 100px;
}



/* footer starts here */
.footer{
    background-color: var(--black--);
    color: var(--blue--);
}
.footer .icons{
    color: #fff;
    line-height: 50px;
}
.footer .icons a{
    font-family: 'Roboto' sans-serif;
    line-height: 2px;
    text-decoration: none;
    color:var(--blue--);
}
.footer .para{
    font-size: 1.2rem;
    letter-spacing: 1px;
}
@media (max-width:480px){
    .footer .para{
        font-size: .9rem;
    }
    .footer .icons{
        font-size: .9rem;
    }
    .copywrite{
        padding: 10px;
    }
}

.copywrite{
    background-color: var(--black--);
    color: var(--blue--);
}




/* footer ends here */


/* about  page*/
.about-banner img{
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
    margin-bottom: 100px;
}
.pic-text img{
    width: 100%;
    height: auto;
}
.pic-text h1{
    font-size: 1.5rem;
}
.pic-text{
    margin-bottom: 100px;
}
.pic-text span{
    color: navy;
}
.pic-text p{
    font-size: 1.2rem;
}
.call{
    background-color: var(--black--);
    color: var(--blue--);
    padding: 50px;
    margin-bottom: 100px;
}
.call-text span{
    color: yellow;
}
.call-text h1{
   display: flex;
   justify-content: center;
}
.call-text p{
    display: flex;
    justify-content: center;
    font-size: 1.5rem;
}
.call button{
    margin-left: 550px;
    width: 200px;
}
.call a{
    text-decoration: none;
    color: black;
}

/* choose start here*/
.choose{
    margin-bottom: 100px;
}
.choose h1{
    display: flex;
    justify-content: center;
    color: var(--black--);
    font-weight: 800;
    margin-bottom: 50px;
}
.choose img{
    align-items: center;
    width: 100%;
    height: auto;
}
.choose p{
    font-size: 1.4rem;
}
.choose span{
    color: var(--blue--);
    font-weight: 600;
}

@media (max-width:480px){
    .about-banner{
        margin-bottom: -50px;
    }
    .call-text h1{
        font-size: .8rem;
    }
    .call button{
        margin-left: 30px;
    }
    .call-text p{
        font-size: 1.3rem;
    }
    .pic-text img{
        margin-bottom: 30px;
    }
    .choose img{
        margin-bottom: 30px;
    }
}

/* choose end here */


/* SERVICES  STARTS*/
.services-banner{
    margin-bottom: 100px;
}
.services-banner img{
    width: 100%;
    height: auto;
}
.top-rated h1{
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    color: var(--blue--);
    margin-bottom: 30px;
}
.top-rated .city{
    color: var(--blue--);
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.top-rated p{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 100px;
}
@media (max-width:480px){
    .services-banner img{
        margin-bottom: -40px;
    }
    .top-rated h1{
        font-size: 1.3rem;
        margin-left: 20px;
    }
    .top-rated p{
        margin-left: 10px;
    }
    .s-call {
        display: none;
    }
    .mob h1{
        font-size: 1.3rem;
    }
}
@media (min-width:480px){
    .mob{
        display: none;
    }
}



/* SERVICES ENDS */

/* call service */
.s-call{
    background-image: url(dishwasher\ repair.webp);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 200px;
    margin-bottom: 100px;
}
.s-call h1{
    display: flex;
    justify-content: center;
    color: #fff;
    font-size: 3rem;
    
}
.s-call p{
    display: flex;
    justify-content: center;
    color: yellow;
    font-size: 3rem;
    font-weight: 700;
}
.mob{
    background-color: var(--black--);
    color: var(--blue--);
    padding: 30px 30px;
    margin-bottom: 50px;
}
.mob h1{
    display: flex;
    justify-content: center;
    align-items: center;

}
.mob p{
    color: var(--blue--);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: 700;
}


.mail h1{
    display: flex;
    justify-content: center;
    margin-top: 100px;
    color: var(--blue--);
    font-weight: 800;
}
.mail p{
    display: flex;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
}
.pic-contact img{
    width: 100%;
    height: auto;
}
.form button a{
    text-decoration: none;
}
.form button{
    width: 100px;
}
.main-form{

    margin-bottom: 100px;
}
@media (max-width:480px){
    .mail p{
        padding: 10px 30px;
    }
    .form{
        padding: 20px;
    }
    .form button{
        margin-bottom: 50px;
    }
}