.t-gradient {
  background-image: radial-gradient( circle farthest-corner at 101.2% 98%, rgba(255,4,144,1) 10%, rgba(63,189,251,1) 90% );
  /*background: linear-gradient(to right, #33ccff 10%, #cc00ff 90%);*/
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

a{text-decoration: none}

main {
  background: black;
  color: white;
  position: relative;
}


.montserrat{
    font-family: 'Montserrat', sans-serif;
}

.bg-90{
    background: rgba(10, 10, 10, 0.7)!important;
}

.title {
  position: relative;
  height: 100%;
  height: 120vh;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px -200px 100px black inset;
}

.logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 40%;
}

.headervideo {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  
}

.carousel-img {
    width: auto;
    max-width:100%;
    height: 500px;
    margin-left: auto;
    margin-right: auto;
    object-fit: cover;
}
.carousel-title {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.dark-flush{
    background-color: black!important;
    color: white!important;
    border: 1px solid #aaa;
}

.divider {
    height: 6rem;
}

.grad-divider{
    margin: 6rem;
    border-radius: 5px;
    height: 2px;
    background-image: radial-gradient( circle farthest-corner at 101.2% 98%, rgba(255,4,144,1) 0%, rgba(63,189,251,1) 90% );
}

.grad-line{
    margin: 2rem;
    border-radius: 5px;
    height: 2px;
    background-image: radial-gradient( circle farthest-corner at 101.2% 98%, rgba(255,4,144,1) 0%, rgba(63,189,251,1) 90% );
}

hr.rounded {
  border-top: 2px solid white;
  border-radius: 5px;
  margin: 5rem;
}

.btn-gradient {
    width: 200px;
    background: linear-gradient(to bottom right, #F01298, #7E68FF, #33ccff, #7E68FF, #F01298, #7E68FF, #33ccff, #7E68FF);
    /*background-image: radial-gradient( circle farthest-corner at 101.2% 98%, rgba(255,4,144,1) 0%, rgba(63,189,251,1) 90% );*/
    text-align: center;
    color: #fff;
    text-decoration: none;
    display: block;
    top: 45vh;
    font-weight: normal;
    border-radius: 6px;
    overflow: hidden;
    box-sizing: border-box;
}

.btn-gradient:hover {
    -webkit-animation: play 1.5s ease-in infinite;
    color: #fff;
}

.btn-gradient span {
    padding: 14px 0;
    font-size: 22px;
    display: block;
    margin: 3px;
    background: #000;
    border-radius: 3px;
}

@-webkit-keyframes play {
    0% {
        background-position: 0px;
    }
    20% {
        background-position: -110px;
    }
    35% {
        background-position: -180px;
    }
    50% {
        background-position: -210px;
    }
    80% {
        background-position: -350px;
    }
    100% {
        background-position: -390px;
    }
}