* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}
html{
    scroll-behavior: smooth;
    color:#473f3f;
    line-height: 1.6;
}
.header{
    width: 100%;
    display: flex;
    justify-content: center;
}
.header_content{
    width: 1080px;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f4c75e;
    border-radius: 5px;
}
.nav_link{
    margin-right: 10px;
}

/*--------------------------------------*/
.hero{
    width: 100%;
    display: flex;
    justify-content: center;
}
.hero_content{
    width: 1080px;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f3f2f2;
    border-radius: 5px;
}
.btn{
    height: 50px;
    width: 150px;
    background-color: #f8efda;
    font-size: 25xpx;
    border-radius: 8px ;
    border: 0;
}
hr{
    width: 1080px;
    margin: 0 auto;
    border: none;
    height: 2px;
    text-align: center;
}
/*--------------------------------------*/
.steps{
    width: 100%;
    display: flex;
    justify-content: center;
}
.content_steps{
    width: 1080px;
    height: 200px;
    background-color: #f3f2f2;
}
.steps_grid{
    width: 1000px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.steps_text{
    display: flex;
    justify-content: center;
}
.step_card{
    width: 200px;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-left: 100px;
    background-color: #f3f2f2;
}
/*--------------------------------------*/
.main_layout{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.layout_grid{
    width: 1080px;
    height: 300px;
    background-color: #f3f2f2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.layout_text{
    width: 700px;
}
img{
    width: 200px;
    height: 100px;
    background-repeat: no-repeat;
    background-size: cover;
}
.content_main{
    display: flex;
    justify-content:space-between ;
    align-items: center;
}
.sidebar_widget{
    margin-left: 40px;
}
/*--------------------------------------*/
.footer{
    width: 100%;
    display: flex;
    justify-content: center;
}
.footer_content{
    width: 1080px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4c75e;
    border-radius: 5px;
}
a{
    text-decoration: none;
    color:#473f3f;
}