* {
    margin: 0;
    padding: 0;
}

.navbar {
    display: flex;
    /* padding: 0px 30px; */
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    cursor: pointer;
    
    /* background-color: black; */
}

.nav-list {
    width: 70%;
    display: flex;
    align-items: center;
    padding: 0 23px;
}

.nav-list li {
    list-style: none;
    padding: 10px 30px;



}

.nav-list li a {
    text-decoration: none;
    color: antiquewhite;
}

.nav-list li a:hover {
    color: gray;
}

.rightNav {
    width: 30%;
    text-align: right;
    align-items: center;
    padding: 0px 23px;
}

#search {
    padding: 2px;
    font-size: 13px;
    border: 2px solid gray;
    border-radius: 9px;
    align-items: center;
    height: 20px;
}

.logo {
    margin-right: 20px;
}

.background {
    background: rgba(124, 120, 120, 0) url('./5.jpg');
    background-size: cover;
    background-blend-mode: darken;
}

/* .navcolor{
    background-color: blue;
} */

.box-main {
    display: flex;
    justify-content: center;
    align-items: center;
    color: aliceblue;

    max-width: 50%;
    margin: auto;
    height: 70%;
}

.firstSection {
    height: 100vh;
}

.firstHalf {
    display: flex;
    width: 75%;
    flex-direction: column;
    justify-content: center;
}

.secondHalf {
    width: 30%;
    /* padding: 20px 0; */

}

.secondHalf img {
    width: 70%;
    border: 4px solid white;
    border-radius: 20px;
    display: block;
    margin: auto;
    align-items: center;
    height: 150px;
}

.text-big {
    font-size: 41px;
}

.text-small {
    font-size: 18px;
}


.btn {
    padding: 8px 20px;
    margin: 7px 3px;
    border: 2px solid wheat;
    border-radius: 18px;
    /* font-size: 18px; */
    background: none;
    color: aliceblue;
    cursor: pointer;
}


.btn-sm {
    padding: 5px 10px;
    vertical-align: middle;
}

.section {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    max-width: 80%;
    margin: auto;
}

.section-left {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    max-width: 80%;
    margin: auto;
    flex-direction: row-reverse;
}

.paras {
    padding: 0 65px;
}

.contact {
    height: 70vh;
    background-color: rgb(238, 225, 225);
}

.text-center {
    text-align: center;
    font-size: 40px;
}

.form {
    max-width: 400px;
    margin: auto;
}

.form input {
    width: 100%;
    font-size: 19px;
    border: 2px solid gray;
    border-radius: 6px;
    margin-top: 40px;
    padding: 5px 3px;
}

.form button {
    border: 2px solid rgb(0, 0, 0);
    border-radius: 6px;
    color: black;
    margin-top: 40px;
    padding: 5px 3px;
    width: 60px;
    align-items: center;
}

.imgFluid {
    border: 2px solid rgb(0, 0, 0);
    border-radius: 50px;

}

.burger{
    display: none;
    position: absolute;
    cursor: pointer;
    right: 5%;
    top: 15px;

}

.line{
    width: 33px;
    background-color: white;
    height: 4px;
    margin: 5px 3px;
}





