@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
  --card-bg: #0E0F10;
  --card-bg-hover: #18191B;
  --card-border: #26282B;
  --color-primary: #C1008B;
  --color-primary-hover: #AD007D;
  --color-white: #FFFFFF;
  --text-primary: #D4D5D9;
  --main-bg: #050506;
  --text-secondary: #888D96;
}
.button-primary {
    cursor: pointer;
}
.button-primary .primary-button-bg .tn-atom {
    transition: all 0.3s ease;  
}
.button-primary:hover .primary-button-bg .tn-atom {
    background-color: var(--color-primary-hover) !important;
}
.logo-banner .tn-atom {
    background-image: url("https://i.ibb.co/hx6sZQcP/logo-with-plus.png");
    background-repeat: repeat;
    background-size: contain;
}
.banner-video {
    z-index: 99 !important;
}
.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
}
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 30px;
}
.link {
    font-weight: 600;
    font-size: 13px;
    line-height: 115%;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}
.link:before {
    width: 100%;
    height: 1px;
    content: '';
    position: absolute;
    bottom: -3px;
    animation: out 0.3s cubic-bezier(1, 0, 0.58, 0.97) 1 both;
}
.link:hover:before {
    animation: in 0.3s cubic-bezier(1, 0, 0.58, 0.97) 1 both;
}
@keyframes in{
  0%{
    width: 0;
    left:0;
    right:auto;
  }
  100%{
    left:0;
    right:auto;
    width: 100%;
  }
}
@keyframes out{
  0%{
    width:100%;
    left: auto;
    right: 0;
  }
  100%{
    width: 0;
    left: auto;
    right: 0;
  }
}