body{
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
.navbar{
    background-color: black;
    display: flex;
    /* justify-content: center;*/
    color: white; 
}
.logo{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
}
.list{
    width: 70%;
}
ul{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    list-style-type: none;
}
li{
    margin-left: 15px;
}
.section1{
    background-image: url("../imgs/home-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.486);
}
.black{
    background-color: rgba(0, 0, 0, 0.741);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.text{
    text-align: center;
    width: 50%;
}
.text h2{
    color: white;
}
.text h1{
    color: blueviolet ;
    font-size: 50px;
}
.text p{
    color: rgb(142, 140, 140);
}
.btn{
    border: 1px solid white;
    border-radius: 7px;
    width:100px;
    height: 35px;
    color: white;
    background-color: blueviolet;
    cursor: pointer;
}
.btn:hover{
    transition-duration: 0.5s;
    color: blueviolet;
    background-color: white;
}
.section2{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 15px;
}
.text2{
    font-size: 20px;
    width: 50%;
    text-align: center;
}
.text2 p{
    color: gray;
}
.photo1 img{
    border-radius: 20px; 
}
.section3{
    background-color: gray;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 15px;
}
.text3{
    font-size: 20px;
    width: 50%;
    text-align: center;
}
.text3 p{
    color: rgba(0, 0, 0, 0.755);
}
.photo2 img{
    margin: 20px 0 ;
    border-radius: 20px; 
}
.section4{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.photo3 img{ 
    border-radius: 900px;
    /* margin-bottom: 20px; */
}   
.photo3{
    margin-bottom: 20px;
    margin-top: 20px;
    text-align: center;
}
.photo3:hover{
    background-color: gray;
    color: white;
    transition-duration:0.5s ;
}
.photo3:hover img{
    transition-duration: 0.5s;
    transform: rotate(360deg);
}
.section5{
    background-color: gray;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.photo4{
    width: 45%;
    text-align: center;
    margin: 20px 0;
}
.label{
    width: 50%;
    /* text-align: center; */
}
input{
    width: 100%;
    margin: 7px;
    padding: 7px 0;
    border: 2px blueviolet solid;
    border-radius: 7px;
}
.label table{
    width: 100%;
    border-spacing: 5px;
}
textarea{
    margin-left: 5px;
    width: 100%;
    padding: 10px 0;
    border: 2px blueviolet solid;
    border-radius: 7px;
}
.label button{
    padding: 10px 25px;
    border-radius: 10px;
    background-color: blueviolet;
    color: white;
    border: solid white 1px ;
    cursor: pointer;
}
.section6{
    background-image: url("../imgs/Footer.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
}
.photo5{
    text-align: center;
    /* width: 50%; */
}
.text4{
    color: white;
    text-align: center;
}