.custom__effact{
    /* width: 130px;
    height: 40px; */
    /* color: #fff; */
    /* border-radius: 5px;
    padding: 10px 25px; */
    /* font-family: 'Lato', sans-serif; */
    /* font-weight: 500; */
    /* background: transparent; */
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    /* display: inline-block; */
    outline: none;
    color: #F08D34;
  }
  /* effact__more */
  .effact__more {
      width: 60px;
      height: 40px;
      line-height: 42px;
      padding: 0;
      border: none;
    }
    .effact__more:hover {
      /* color: white; */
      background: transparent;
      box-shadow:none;
    }
    .effact__more:before,
    .effact__more:after{
      content:'';
      position:absolute;
      top:0;
      right:0;
      height:2px;
      width:0;
      background: white;
      background: #F08D34;;
      color: #F08D34;
      /* box-shadow:
       -1px -1px 5px 0px #fff,
       7px 7px 20px 0px #0003,
       4px 4px 5px 0px #0002; */
      transition:400ms ease all;
    }
    .effact__more:after{
      right:inherit;
      top:inherit;
      left:0;
      bottom:0;
    }
    .effact__more:hover:before,
    .effact__more:hover:after{
      width:100%;
      transition:800ms ease all;
    }
  
  /* effact__menu */
  .effact__menu {
      border: none;
      z-index: 1;
    }
    .effact__menu:after {
      position: absolute;
      content: "";
      width: 100%;
      height: 0;
      top: 0;
      left: 0;
      z-index: -1;
      border-radius: 5px;
      background-color: rgb(120, 34, 46);
      background-image: linear-gradient(315deg, rgb(120, 34, 46) 0%, rgb(120, 34, 46) 74%); 
      /* background-color: rgb(81, 20, 28);
      background-image: linear-gradient(315deg, rgb(81, 20, 28) 0%, rgb(81, 20, 28) 74%); */
      /* box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5); */
      transition: all 0.3s ease;
    }
    .effact__menu:hover a{
      color: white;
    }
    .effact__menu:hover:after {
      top: auto;
      bottom: 0;
      height: 100%;
    }
    