*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;

}

section{

    position: relative;
    width: 100%;
    height: 7vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background-color: rgb(15, 15, 15); */
   
    
}
header{

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
   padding: 10px 10px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   background-color: rgb(255, 255, 255); 
   /* opacity:0.1; */
   
    
}

header .logo{

    position: relative;
    margin: 20px 20px;
    width: 300px;
    opacity:100% ;
}

header ul {

    position: relative;
    display: flex;

}

header ul li {
    list-style: none;
}

header ul li a {
    display: inline-block;
    color: rgb(0, 0, 0);
    font-size: 18px;
    margin-left: 45px;
    padding-right:50px ;
    text-decoration: none;
}

.content{

    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.content .textBox{

    position: relative;
    width: 800px;
}

.content .textBox h2{
   
    font-size: 3rem;
    line-height: 1.5rem;
    font-weight: 500;
}

.content .textBox h2 span{

    color:#845847;
    font-size: 2.5rem;
   
    font-weight: bolder;
}

.content .textBox p{

    margin-top: 10px;
    line-height: 1.5rem;
}

.content .textBox a {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 20px;
    background-color: #322520;
    border-radius: 40px ;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    color: aliceblue;
}

.content .imgBox{
    width: 600px;
    display: flex;
    justify-content: flex-end;
    padding-right: 50px;
    margin-top: 50px;
}

.content .imgBox img{

    width: 560px;
}

header ul li a:hover{

    color: rgb(82, 43, 43);
}

.thumb{

    position: absolute;
    left: 50%;
    bottom: -150px;
    transform:translate(-50%) ;
    display: flex;
}

.thumb li {
    list-style: none;
    display: inline-block;
    margin: 0 20px;
    cursor: pointer;
}

.thumb li :hover{
    transform: translateY(-15px);
}

.thumb li img{
   
    width: 200px;
}

/* .sci{
    position: absolute;
    top: 50%;
    right: 30px ;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100px;
    color: black;
} */

.circle{

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #322520;
    clip-path: circle(600px at right 800px);
    
}