* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5 {
    margin: 0;
    bottom: 0;
}

body {
    font-family: 'Nunito';
    font-family: "Nunito", sans-serif;
}

.navbar {
    width: 100%;
    height: 100%;
    background-color: black;
    color: white;

}

.navbar-wrapper {
    max-width: 1000px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0px;
    width: 100%;
}

.menu {}

.menu>ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.menu>ul>li {
    margin: 0rem 0.5rem;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2s;
}

.menu>ul>li>span {
    border-bottom: 2px solid rgb(23, 145, 226);

}

.menu>ul>li>i {
    font-size: 15px;
}

.main-wrapper {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(./img/carWash.jfif);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 0px;
    margin-bottom: 20px;
}

.main-wrapper>h3 {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 10px;
}

.main-wrapper>h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.main-wrapper>h1:nth-of-type(3) {
    text-transform: uppercase;
}

.main-wrapper>h1>span {
    color: rgb(23, 145, 226);
    font-weight: bolder;
}

.main-input {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.main-input>input {
    border: 2px solid rgb(23, 145, 226);
    background-color: black;
    border-radius: 32px;
    outline: none;
    width: 350px;
    height: 50px;
    padding-left: 40px;
    color: white;
    position: relative;
}

.main-btn {
    background-color: rgb(23, 145, 226);
    border-radius: 32px 32px 32px 32px;
    color: white;
    height: 50px;
    outline: none;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: absolute;
    right: 0;
    cursor: pointer;
}

.main-btn>i {
    font-size: 2rem;
}

.car {
    width: 100%;
    height: 100%;
    padding: 100px 0px;
}

.car-wrapper {
    max-width: 1000px;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
}

.car-box {
    box-shadow: 5px 10px 15px 5px rgb(0 0 0 /10%);
    max-width: 33%;
    flex: 33%;
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 30px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: .3s linear;

}

.car-box:hover {
    transform: scale(1.1);
    background-color: rgb(23, 145, 226);
    color: white;
}

.car-box:hover .car-title>h1,
.car-box:hover .car-a>h3,
.car-box:hover .car-a>i {
    color: white;
}

.car-img {
    width: 100%;
    height: 250px;
    padding: 20px;
}

.car-img>img {
    width: 100%;
    border-radius: 25px;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.car-item {
    padding: 0px 30px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.car-item>h5 {
    font-weight: 600;
    line-height: 1.2;
    color: rgb(59, 57, 57);
    font-size: 12px;
}

.car-title {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 10px;

}

.car-title>h1 {
    width: 90%;
    font-weight: 900;
    color: rgb(23, 145, 226);
    font-size: 2rem;
    line-height: 1;
}

.car-desc {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;

}

.car-desc>h6 {
    color: rgb(100, 96, 96);
    font-weight: 200;
    line-height: 1.5;
    width: 90%;
}

.car-a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.car-a>i {
    color: rgb(23, 145, 226);
    margin: 0px 5px;

}

.car-a>h3 {
    font-size: 12px;
    font-weight: 800;
    color: rgb(23, 145, 226);
}

.car-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.car-btn>button {
    color: white;
    background-color: black;
    border-radius: 10px;
    padding: 10px 30px;
    display: flex;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 10px;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: none;
    transition: .3s linear all;
}

.car-box:hover .car-btn>button {
    display: block;
}

.footer {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.8)), url(./img/carWash.jfif);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 100%;
    color: white;
    overflow: hidden;
}

.footer-wrapper {
    padding: 80px;
    max-width: 1000px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
}

.footer-box {
    max-width: 25%;
    flex: 25%;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.footer-box>h3 {
    margin-bottom: 10px;
    font-style: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.footer-box>div {
    width: 30px;
    height: 2px;
    border-radius: 50px;
    background-color: rgb(23, 145, 226);
    margin-bottom: 30px;
}

.footer-box>ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-box>ul>li {
    margin: 5px 0px;
    font-weight: 200;
    line-height: 1.2;
    font-size: 15px;
}

.footer-box>ul>li>i {
    font-size: 20px;
}

.footer-box>ul>li>i:nth-child(2),
.footer-box>ul>li>i:nth-child(3) {
    margin: 0px 10px;
}

.email {
    margin-right: 10px;
    color: rgb(23, 145, 236);
}

.footer-copy {
    padding: 10px 200px;
    border-top: 1px solid gray;
    display: flex;
    justify-content: space-between;

}

.copy-l {
    width: 50%;
    display: flex;
    justify-content: left;
    align-items: center;
    text-align: center;
}

.copy-l>h4 {
    font-size: 10px;
    color: rgb(182, 175, 175);
}

.copy-r {
    width: 50%;
    display: flex;
    justify-content: right;
    align-items: center;
    text-align: right;
}

.copy-r>img {
    width: 40%;
    height: 100%;
} 

.container{
    width: 100%;
    height: 100vh;
    background-color: red;
}
.menu-toggle{
    font-size: 50px;
    margin-right: 20px;
    cursor: pointer;
    display: none;
}
@media screen and (max-width:768px) {
    .navbar {
        position: relative;
        width: 100%;
    }

    .menu {
        display: none;
    }
    .menu-toggle{
        display: block;
    }

    .main-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
        text-align: center;
    }

    .main-wrapper>h3 {
        font-size: 0.8rem;
    }

    .main-wrapper>h1 {
        font-size: 2rem;
    }
    .main-btn>i{
        font-size: 1.5rem;
    }
    .car-wrapper{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .car-box{
        max-width:none;
        margin-bottom: 30px;
    }
    .footer-wrapper{
        display: flex;
        flex-direction: column;
    }
    .footer-box{
        margin-top: 50px;
        max-width: none;
    }
    .footer-box>div{
        margin-bottom: 10px;
    }
    .footer-copy{
        flex-direction: column;
        padding: 0;
    }
    .copy-l{
        width: 100%;
        justify-content: center;
        align-items: center;
        margin: 10px 0px;
    }
    .copy-r{
        width: 100%;
        justify-content: center;
        align-items: center;
        margin: 10px 0px;
    }
} 