/* Add your styles here */
body {
  background: #FFFFFF;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  display: flex;
    overflow: hidden;
    
}

.bar{
    top: 150px;
    height: 70px;
    width: 70px;
    background-color: black;
    border-radius: 50px;
    position: relative;
    transition: 0.4s ease;

}
.bar.active{
    height: 480px;

}
.toggleBox{
    position: relative;
    display: block;
    height: 70px;
    width: 70px;
    border-radius: 50px;
}
.icon{
    position: absolute;
    height: 4px;
    width: 35px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: white;
    border-radius: 50px;
}
.toggleBox.active .icon{
    width: 0;
}
.icon::before,.icon::after{
    position: absolute;
    content: '';
    height: 4px;
    width: 35px;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: white;
    border-radius: 50px;
    transition: 0.3s;
}
.icon::before{
    top: 12px;
}
.icon::after{
    bottom: 8px;
}
.toggleBox.active .icon::before{
    width: 40px;
    transform-origin: right;
    transform: translate(-25px,4px) rotate(45deg);
}
.toggleBox.active .icon::after{
    width: 40px;
    transform-origin: right;
    transform: translate(-25px,-6px) rotate(-45deg);
}
.navitems{
    width: 100%;
    padding-inline-start:0;
    visibility: hidden;
}
.navitem a{
    text-transform: uppercase;
    color: black;
    margin: -22px 0;
}
.navitem a i{
    position: relative;
    display: block;
    font-size: 18px;
    padding: 25px 0;
    width: 100%;
    color: white;
    text-align: center;
    transform: scale(0);
}
.navitem a span{
    position: absolute;
    margin: -43px 70px;
}
.bar.active .navitems{
    visibility: visible;
}
.bar.active .navitems li a i{
    transform: scale(1);
    transition: 0.4s ease;
    transition-delay: calc(0.04s * var(--i));
}
.bar.active .navitems li:hover a i {
    transition: 0.2s ease;
    color: #0ec46b;
}
.bar.active .navitems li a span {
    transform: translateX(15px);
    transition: 0.4s ease;
    transition-delay: calc(0.04s * var(--g));
}
.bar.active .navitems li:hover a span {
    transform: translateX(30px);
    transition: 0.2s ease;
    color: #0ec46b;
}
.navitem a i::after{
    position: absolute;
    content: '';
    top: 50%;
    right: 7px;
    width: 0px;
    height: 50%;
    transform: translateY(-50%);
    background-color: #0ec46b;
    border-radius: 8px 0 0 8px;
}
.navitem:hover a i::after{
    width: 8px;
    transition: 0.3s;
}

header .logo a {
	background-image: url("logo.png");
	background-size: 300px;
        background-position-x: -100px;
        background-position-y: -50px;
	background-repeat: no-repeat;
        
	margin: auto 5px;
        float: left;
	display: inline-block;
	height: 120px;
	width: 111px;
	text-indent: -999999px;
	position: relative;
        top: -15px;
}
form {
    display: flex;
    flex-direction: column;
    width: 500px;
    margin: auto;
    padding: 30px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  label {
    margin-bottom: 10px;
  }
  input, textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    resize: vertical;
  }
  input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    cursor: pointer;
    margin-top: 10px;
  }