@charset "utf-8";
/* CSS Document */


/* Button Background Animation */
.click-btn_cus {
    margin: 0.5rem; 
    border: 1px solid #fff;
    text-align: center;
    text-decoration: none;
    transition: all 0.35s;
    box-sizing: border-box;
}  
.btn-style508 {
    position: relative;
    overflow: hidden;
}
.btn-style508::before {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    transform: translate(-100%, 0) rotate(50deg);
    transform-origin: top left;
    transition: all 0.35s;
    background-color: var(--theme-active-color);
    z-index: -1;
    content: "";
}
.btn-style508:hover::before {
    transform: translate(0, 0);
}

@keyframes beatAnimat{
0%, 100% {
    transform: scale(1);
}
50% {
    transform: scale(1.2);
}
}

@keyframes maequeeScroll{
from {
    transform: translateX(0%);
}
to {
    transform: translateX(-50%);
}
}


.linkWrap {
  width: min-content;
}
button.link {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
  }
  button.link.style-7 {
    width: 10rem;
    height: auto;
  }
  button.link.style-7 .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: var(--theme-active-color);
    border-radius: 1.625rem;
  }
  button.link.style-7 .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
  }
  button.link.style-7 .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
  }
  button.link.style-7 .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.25rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    transform: rotate(45deg);
  }
  button.link.style-7 .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0;
    margin: 0 0 0 1.85rem;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
  }
  button.link:hover .circle {
    width: 100%;
  }
  button.link:hover .circle .icon.arrow {
    background: #fff;
    transform: translate(1rem, 0);
  }
  button.link:hover .button-text {
    color: #fff;
  }

  
.cta_cus {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: auto;
    padding: 20px 24px;
    color: #000;
    text-decoration: none;
    transition: all 0.2s ease;
  }
  .cta_cus:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border-radius: 28px;
    background: #ccb7f9;
    width: 56px;
    height: 56px;
    transition: all 0.3s ease;
  }
  .cta_cus span {
    position: relative;
    font-size: 16px;
    line-height: 18px;
    font-weight: 500;
    vertical-align: middle;
    width: max-content;
}
  .cta_cus svg {
    position: relative;
    top: 0;
    margin-left: 10px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #111;
    transform: translateX(-5px);
    transition: all 0.3s ease;
  }
  .cta_cus:hover:before {
    width: 100%;
    background: #ccb7f9;
  }
  .cta_cus:hover svg {
    transform: translateX(0);
    stroke: var(--theme-active-color);
  }
  .cta_cus:hover .active {
    transform: scale(0.96);
  }
  
  
 @keyframes spin {
  from {transform: rotate(0);}
  to   {transform: rotate(360deg);}
}
  
/*--=== callsclex_share Animation ===---*/
@keyframes callsclex_share{ 
0% {
  transform: scaleX(1);
}
2.5%, 5% {
  transform: scale3d(.9, .9, .9) rotate(-3deg);
}
12.5%, 17.5%, 22.5%, 7.5% {
  transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
}
10%, 15%, 20% {
  transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
}
100%, 25% {
  transform: scaleX(1);
}
}

/*--=== Up Down Animation ===---*/
@keyframes airTree{ 
0%, 100% {
  transform: rotate(0deg) translateX(0);
}

25%, 75% {
  transform: rotate(0) translateY(15px);
}
50% {
  transform: rotate(0) translateY(30px);
}
}


@-webkit-keyframes HideList {
  from {
    transform: scaleY(1);
  }
  to {
    transform: scaleY(0);
  }
}

@keyframes HideList {
  from {
    transform: scaleY(1);
  }
  to {
    transform: scaleY(0);
  }
}