* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

nav{
  display: flex;
  justify-content: space-between;
  padding: 10px 25px;
  background-color: #EEEEEE;
}

.logo{
  padding: 7px 10px;
  width: 200px;
}

.logo > img{
  width: 100%;
}


.logo-profile{
  margin-right: -25px;
  width: 50px;
  z-index: 1;
}

.logo-profile > img{
  width: 100%;
}

.profile {
  display: flex;
  align-items: center;
  gap: 20px;
}

.account {
  /* background-color: #4CAF50; */
  color: black;
  padding: 11px 14px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  background-color: #D9D9D9;

}

.account:hover {
  background-color: #b8b8b8;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  width: 135px;
  display: none;
  position: absolute;
  top: 45px;
  background-color: #D9D9D9;
}

.dropdown-content > a.logout-btn {
  font-size: 13px;
  color: black;
  padding: 6px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content{
  background-color: #D9D9D9;
  border-radius: 5px; 
}

.dropdown-content > a:hover {
  background-color: #cdcdcd;
  border-radius: 5px
}

.show {
  display: block;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: #0573F0;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #ffffff;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.menu > a{
  display: flex;
  align-items: center;
  font-size: 15px;
  height: 50px;
}

.menu > a:hover{
  background-color: white;
  color: black;
}

.head{
  font-weight: 600;
  text-align: center;
}

hr{
  margin: auto;
  width: 250px;
}


.header{
  margin-top: 60px;
}

.header > h1{
  text-align: center;
  font-size: 35px;
}

.step-items{
  margin: auto;
  display: flex;
  max-width: 1140px;
  padding: 20px;
  height: 420px;
}

.contents{
  margin: auto;
  width: 250px;
}


.img{
  background-color: #cccbcb80;
  border-radius: 30px;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.item{
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.item > h4{
  text-align: center;
  font-size: 20px;
}

.item > p{
  /* width: 200px; */
  padding: 10px;
  text-align: center;
  margin: auto;
}
