* {
    margin: 0;
    padding: 0;
}
  
body {
    font-family:sans-serif,Arial, Helvetica;
    background-color: #000;
    color: #fff;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    padding: 1rem 2rem;
    border-bottom: 1.5px solid grey;

}
  
.logo {
    font-size: 30px;
    font-weight: bold;
    color: #fff;
}
  
.nav-links {
    display: flex;
    gap: 4rem;
}
  
.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
}
  
.nav-links a:hover {
    color: grey;
}
.logo:hover {
    color: grey;
}
main h1 {
    font-weight: 500;
    font-size: 8vw;
    text-align: center;
    margin-top: 11%;
    font-family: sans-serif;
}


.img_container {
    height: 100%;
    width: 100%;
}
.main_img img {
    height: auto;
    width: 95%;
    text-align: center;
    margin: 3% 2% 6% 2%;
    border-radius: 5%;
}
.row1, .row2 ,.row3 {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin-top: 1rem;

}
.row1 img, .row2 img,.row3 img {
    height: auto;
    width: 100%;

}
.sub_main {
    display: flex;
    justify-content: space-between;
    margin-top: 8%;
}
.contact {
    font-size: 1.7vw;
    margin-left: 2%;
}
.info {
    font-size: 1.3vw;
    margin-right: 2%;
}

.lower_div {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-left: 30px ;
    align-content: center;


}

.head {
    font-size: 2vw;
    font-weight: 300;
}
form {
    padding: 8px 16px ;
    text-align: center;
}
.input {
    background-color: black;
    height: 64px;
    width: 54px;
    border-radius: 8px;
    text-align: center;
    align-items: center;
    border: 1.5px solid rgb(55, 54, 54);
    color: grey;


    
}
.submit {
    border: 1.5px solid black;
    border-radius: 8px;
    height: 36px;
    width: 100%;
    background-color: #C11D1D;
    color: white;
    margin: 20px 0;
    text-align: center;

}
.skip {
    text-align: center;
    color: #C11D1D;
}


.lowest_heading {
    text-align: center;
    font-size: 4vw;

}


.testimonials {
    display: flex;
    gap: 50px;
    flex-direction: row;
    overflow-x: scroll;
    margin: 80px;



}
.testimonials img{
    height: 48px;
    width: 48px;
    padding: 20px;

}
.testimonials h5 {
    padding-top: 20px;
    font-size: 15px;
    font-weight: 700px;
    line-height: 20px;
}

.testimonials h4 {
    padding-top: 20px;
    
}

.testimonials p{
    font-size: 15px;
    font-weight: 200px;
    line-height: 20px;
    
}



.test1 ,.test2,.test3,.test4 ,.test5 {
    height: 10em;
    width: 30em;
    border: 1.5px solid rgb(55, 53, 53);
    border-radius: 16px;
    display: flex;
    inline-size: none;
    flex-wrap: nowrap;
}



.footer {

    text-align: center;
    padding: 10px;
    background-color: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;    
    margin-top: 100px;
    border-top: 1.5px solid rgb(55, 53, 53);
    padding-top: 200px;

}
footer Button {
    background-color: black;
    border: 1.5px solid rgb(55, 53, 53);
    border-radius: 6px;
    height: 20px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 17px;
}

footer p {
    color: grey;
    font-size: 22px;
}

@media screen and (max-width: 1250px) {
    .row1, .row2 ,.row3 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    
    }
    .img_container div{
        margin: 2rem;


    }

    
}

@media screen and (max-width: 540px) { 
    .navbar {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        background-color: #000;
        padding: 20px 30px;
    
    }
    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 48px;
        margin-top: 40px;
    }
  


}