html {
    font-family: 'Syne', sans-serif;
}

.menu-items a {
    position:relative;
    transition:.2s;
}
.menu-items a::before {
    background: url(images/under.png) no-repeat 50%;
    background-size: auto;
    background-size: 100% 100%;
    content: "";
    height: 7px;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    transition: .3s;
    width: 100%;
    z-index: 1;
}

.menu-items a:hover{
    color: #03C086;
}

.menu-items a:hover::before{
    opacity: 1;
}

a.active::before{
    opacity: 1;
}


a.active{
    color: #03C086;
}

.arrow-btn {
    align-items: center;
    color: #fff;
    display: inline-flex;
    display: flex;
    font-size: 14px;
    font-weight: 600;
    justify-content: space-between;
    text-decoration: none;
    transition: all .3s;
}  
.arrow-btn.inv{
    color: #000;
} 
.arrow-btn:hover span:before {
    opacity:1;
    transform:translate(-50%,-50%)
  }
  .arrow-btn:hover span:after {
    opacity:0;
    transform:translate(200%,-50%)
  }
  .arrow-btn span {
    background:#fffefd;
    border-radius:50%;
    display:inline-flex;
    height:31px;
    margin-right:14px;
    overflow:hidden;
    position:relative;
    transition:.3s;
    width:31px
  }

  .arrow-btn.inv span{
    background: #1E1E1E;
  }
  .arrow-btn span:after,
  .arrow-btn span:before {
    background:url(images/right-arrow.svg) no-repeat 50%;
    background-size:contain;
    content:"";
    height:11px;
    left:50%;
    position:absolute;
    top:50%;
    transform:translate(-50%,-50%);
    transition:.8s;
    width:11px
  }

  .arrow-btn.inv span:after,
  .arrow-btn.inv span:before {
    background:url(images/right-arrow-white.svg) no-repeat 50%;
    
  }
  .arrow-btn span:before {
    opacity:0;
    transform:translate(-200%,-50%)
  }

  .transition-3s {
    transition: all .3s;
  }

  .maz::after {
    background: url(images/maz.svg) no-repeat 50%;
      background-size: auto;
    background-size: contain;
    bottom: 45%;
    content: "";
    height: 50px;
    left: 98%;
    position: absolute;
    width: 61px;
  }

  .ar-maz::after {
    background: url(images/maz.svg) no-repeat 50%;
      background-size: auto;
    background-size: contain;
    bottom: 45%;
    content: "";
    height: 50px;
    right: 98%;
    position: absolute;
    width: 61px;
    transform: scaleX(-1);
  }

.under::before{
    background: url(images/underline.png) no-repeat 50%;
    background-size: auto;
    background-size: 100% 100%;
    content: "";
    height: 15px;
    left: 0;
    position: absolute;
    top: 90%;
    width: 100%;
}

.under3::before{
    background: url(images/underline.png) no-repeat 50%;
    background-size: auto;
    background-size: 100% 100%;
    content: "";
    height: 5px;
    left: 0;
    position: absolute;
    top: 90%;
    width: 100%;
}


.animated-button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 16px 36px;
    border: 4px solid;
    border-color: transparent;
    font-size: 16px;
    background-color: inherit;
    border-radius: 100px;
    font-weight: 600;
    color: #03C086;
    box-shadow: 0 0 0 2px #03C086;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button svg {
    position: absolute;
    width: 24px;
    fill: #03C086;
    z-index: 9;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .arr-1 {
    right: 16px;
}

.animated-button .arr-2 {
    left: -25%;
}

.animated-button .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: #03C086;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .text {
    position: relative;
    z-index: 1;
    transform: translateX(-12px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button:hover {
    box-shadow: 0 0 0 12px transparent;
    color: #212121;
    border-radius: 12px;
}

.animated-button:hover .arr-1 {
    right: -25%;
}

.animated-button:hover .arr-2 {
    left: 16px;
}

.animated-button:hover .text {
    transform: translateX(12px);
}

.animated-button:hover svg {
    fill: #212121;
}




.animated-button:hover .circle {
    width: 220px;
    height: 220px;
    opacity: 1;
}


i[class^="fi-rr-"]::before, i[class*=" fi-rr-"]::before, span[class^="fi-rr-"]::before, span[class*="fi-rr-"]::before {
    font-family: uicons-regular-rounded !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: unset;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }