.menu {
    text-align: right;
}

.menu__icon {
   display: none;
   width: 45px;
   height: 28px;
   position: relative;
   cursor: pointer;
}

.menu__icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #05b735;
    /* border-radius: 9px; */
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.menu__icon span:nth-child(1) {
  top: 0px;
}

.menu__icon span:nth-child(2), .menu__icon span:nth-child(3) {
  top: 13px;
}

.menu__icon span:nth-child(4) {
  top: 26px;
 }

.menu__links-item {
    display: flex;
    color: #333333;
    font-size: 16px;
    line-height: 30px;
    padding: 0 10px;
    text-decoration: none;
}

.menu__links {
    display: flex;
    align-items: center;
}

.menu__links-item:hover {
    text-decoration: underline;
}

.menu.menu_state_open .menu__icon span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.menu.menu_state_open .menu__icon span:nth-child(2) {
  transform: rotate(45deg);
}

.menu.menu_state_open  .menu__icon span:nth-child(3) {
  transform: rotate(-45deg);
}

.menu.menu_state_open  .menu__icon span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.menu.menu_state_open .menu__links {
  display: block;  
}

@media screen and (max-width: 1035px) {
  .menu__icon{
    display: inline-block;
  }
  
  .menu__links {
    position: fixed;
    display: none;
    top: 0;
    right: 0;
    left: 0;
    margin-top: 65px;
    background-color:#05b735;
    z-index: 1000;
    overflow: auto;

  }
  
  .menu__links-item {
    display: block;
    padding: 10px 0;
    text-align: center;
    color: #ffffff;

  }

  .fontsize24 {
      text-align: center;
      margin: auto;
      padding-top: 15px;
      color: white;
  }

  .try_button {
    background-image: -moz-linear-gradient( 90deg, rgb(255,162,0) 0%, rgb(255,210,0) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(255,162,0) 0%, rgb(255,210,0) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(255,162,0) 0%, rgb(255,210,0) 100%);  
    width: 200px;
    font-size: 16px;
    color: white;
    border-radius: 40px;
    margin: auto;      
    padding: 0;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .buttons_header {
     margin-bottom: 30px;
     text-align: center;
  }

  .sig_button {
    margin: auto;
    width: 200px;
    text-align: center;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    border-radius: 40px;
  }



}