body{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}


.navbar_list{
    display: flex;
    justify-content: space-evenly;
    margin: 3% 1% 3% 40%;
    list-style: none;
    align-items: center;
    color: black;
}

.navbar_for_mobile {
    display: none;
    flex-direction: column;
    position: fixed;
    background: grey;
    padding: 30px;
    height: 100%;
    gap: 20px;
}


.contact_us_button {
    background-color: #F84646;
    border: 1px;
    height: 40px;
    width: 100px;
}

.hamburger_button {
    display: none;
    cursor: pointer;
}

.x_icon{
    display: none;
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
}


.header_sec_cont{
    position: relative;
    background: url('img/background.png') no-repeat center center/cover;
    background-color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;

}

.header_text_cont{
    display: flex;
    flex-direction: column;
    margin: 7% 0% 5% 5%;
}

.header_text1{
    font-size: 60px;
    width: 40%;
}


.header_text2 {
    font-size: 30px;
    width: 70%;
}

.input-group {
    display: flex;
    max-width: 500px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.input-group input {
    flex: 1;
    border: none;
    padding: 0.75em 1em;
    font-size: 1rem;
    outline: none;
    color: #444;
}

.input-group input::placeholder {
    color: #aaa;
}

.input-group button {
    border: none;
    background: #ff4d4f;
    color: #fff;
    padding: 0 1.5em;
    font-size: 1rem;
    cursor: pointer;
}

.quality_sec_h1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 10px 100px 0px;
    text-align: center;
}

.feature_cont {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.feature_cont p {
    width: 40%;
    text-align: center;
}


.feature_cont div{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main_quality_cont{
    padding: 10% 0% 10% 0%;
}

.input-group button:hover {
    background: #e04347;
}

.about_us_cont {
    background-color: rgb(255 37 37 / 86%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 50px;
    padding: 50px 0px 50px 0px;
}

.about_us_down{
    color: white;
    display: flex;
    gap: 10%;
    justify-content: center;
}

.about_us_down p{
    font-size: 20px
}

.about_us_h1{
    color: white;
}

.about_us_h1 h3{
    font-size: 40px;
}

.about_us_h1 p{
    font-size: 15px;
} 

@media (max-width: 1200px){

    .navbar_list{
    display: flex;
    justify-content: space-evenly;
    margin: 3% 1% 3% 20%;
    list-style: none;
    align-items: center;
    }

    .header_text_cont {
    display: flex;
    flex-direction: column;
    }

    .header_text1 {
    font-size: 60px;
    width: 60%;
    }

    .header_text2 {
    font-size: 25px;
    margin: 0% 0% 0% 0%;
    }
}


@media (max-width: 1024px){

    .navbar_list{
    display: flex;
    justify-content: space-evenly;
    margin: 3% 1% 3% 20%;
    list-style: none;
    align-items: center;
    font-size: 15px;
    }

    .header_text_cont {
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    }

    .header_text1 {
    font-size: 45px;
    width: 50%;
    }

    .header_text2 {
    font-size: 20px;
    margin: 0% 0% 0% 0%;
    }

}

@media (max-width: 768px){

    .navbar_list{
    display: flex;
    justify-content: space-evenly;
    margin: 3% 0% 3% 0%;
    list-style: none;
    align-items: center;
    font-size: 15px;
    }

    .header_text1 {
    font-size: 45px;
    width: 70%;
    }

}

@media (max-width: 640px){

    .navbar_list{
    gap: 15px;
    font-size: 12px;
    }

    .about_us_down {
    color: white;
    display: flex;
    gap: 10%;
    justify-content: center;
    flex-wrap: wrap;
    }
}

@media (max-width: 550px){

    .navbar_list li{
    display: none;
    }

    .navbar_list {
    display: flex;
    justify-content: space-between;
    margin: 10px 30px 10px 10px;
    }

    .hamburger_button{
    display: flex;
    }


    .navbar_for_mobile {
    display: flex;
    flex-direction: column;
    top: -5%;
    left: -100%;
    list-style: none;
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 70px 10px 0px 10px;
    height: 100%;
    transition: left 0.8s cubic-bezier(.77,0,.18,1);
    width: 35%;
    }
    
    .open{
    left: 0px;
    transition: left 0.8s cubic-bezier(.77,0,.18,1);
    }

    .header_text_cont {
    margin: 10% 0% 10% 0%;
    }

    .x_icon{
    display: flex;
    padding: 14px 100px 0px 0px;
    width: 20%;
    cursor: pointer;
    font-size: 25px;
}
}

@media (max-width: 426px) {

    .navbar_list li{
    display: none;
    }

    .navbar_list {
    display: flex;
    justify-content: space-between;
    margin: 10px 30px 10px 10px;
    }

    .navbar_list img{
    display: flex;
    }
}