
.glow-on-hover {
    width: 220px;
    height: 50px;
    border: none;
    outline: none;
    color: #fff;
    background: #EE8738;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 20px;
}

.glow-on-hover2 {
    width: 220px;
    height: 50px;
    border: none;
    outline: none;
    color: #fff;
    background: #F45625;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 20px;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #F45625, #EE8738, #1F6B87);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 20px;
}

.glow-on-hover2:before {
    content: '';
    background: linear-gradient(45deg, #F45625, #EE8738, #1F6B87);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 20px;
}

.glow-on-hover:active {
    color: #000
}
.glow-on-hover2:active {
    color: #000
}

.glow-on-hover:active:after {
    background: transparent;
}
.glow-on-hover2:active:after {
    background: transparent;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover2:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #EE8738;
    left: 0;
    top: 0;
    border-radius: 20px;
}

.glow-on-hover2:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #F45625;
    left: 0;
    top: 0;
    border-radius: 30px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}  



.link {
    height: 30px;
    align-items: center;
    color: #000;
    text-decoration: none;
    display: flex;
  }

  .link.__contact {
    background-color: var(--color4);
    padding: 20px;
    border-radius: 10px;
    
  }

  .link.__contact:hover {
    background-color: var(--color5);
 
  }
  
  /* Hide extra text */
  .mask {
    position: relative;
    padding: 0;
    height: 20px;
  
    /*  Remove overflow to see how it works　:) */
    overflow: hidden;
  }
  
  .link-container {
    transition: transform 0.4s ease;
  }
  
  .title {
    display: block;
  
    /*  Set same font-size and line height  */
    font-size: 20px;
    line-height: 20px;
    color: white;
    transition: transform 0.4s ease;
  }
  
  .link-title1 {
    transform-origin: right center;
  }
  
  .link-title2 {
    transform-origin: left center;
    transform: rotate(20deg);
  }
  
  .link-icon {
    position: relative;
    width: 35px;
    height: 35px;
    background: #f8f8ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
  
    /*  Remove overflow to see how it works　:) */
    overflow: hidden;
  }
  
  .icon {
    display: block;
    position: absolute;
    transition: transform 0.4s ease;
  }
  
  .icon:nth-child(2) {
    transform: translate(-40px);
  }
  
  /* Hover Action*/
  
  /* Move up two texts (20px = font-size) */
  .link:hover .link-container {
    transform: translateY(-20px);
  }
  
  /* Rotate texts a little bit */
  .link:hover .link-title1 {
    transform: rotate(20deg);
  }
  
  .link:hover .link-title2 {
    transform: rotate(0);
  }
  
  /* Move arrows to right */
  .link:hover .icon:first-child {
    transform: translate(40px);
  }
  
  .link:hover .icon:nth-child(2) {
    transform: translate(0px);
  }


  .btn1 {
    font-size: 16px;
    font-weight: 600;
    background-color: var(--color3);
    padding: 24px 24px 24px 32px;
    display: flex;
    align-items: center;
    position: relative;
    transition: all .5s cubic-bezier(.77,0,.175,1);
 }
  .btn1 .text {
    color: #fff;
    line-height: 1;
    position: relative;
    z-index: 5;
    margin-right: 32px;
 }
  .btn1 svg {
    display: inline-block;
    position: relative;
    z-index: 5;
    transform: rotate(0deg) translateX(0);
    transform-origin: left;
    transition: all .5s cubic-bezier(.77,0,.175,1);
 }
  .btn1::before {
    content: '';
    background-color: var(--color4);
    width: 32px;
    height: 32px;
    display: block;
    position: absolute;
    z-index: 1;
    border-radius: 99px;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    transition: all .5s cubic-bezier(.77,0,.175,1);
 }
  .btn1.light {
    background-color: var(--color4);
 }
  .btn1.light::before {
    background-color: var(--color3);
 }
  .btn1:hover svg {
    transform: rotate(45deg) translateX(-8px);
 }
  .btn1:hover::before {
    content: '';
    width: 100%;
    height: 100%;
    right: 0;
    border-radius: 0px;
 }
   