/* General Width, Alignment, Fonts and Color Changes */

.container {
  max-width: 1140px;
}

.categories-header {
  max-width: 700px;
}

.center {
    margin: 0 auto;
}

.bg-light {
    background-color: #f8f8f8;
}

.bg-dark {
    background-color: #333333;
}

body {
    font-family: "Tw Cen MT Regular", "Roboto", "Helvetica Neue", "Arial";
    color: #333333
}

.m-top {
    margin-top: 10px;
}

.logo {
    padding-bottom: 10px;
}

/* Gradients Animation */

.gradient-animation {
    background: linear-gradient(90deg, #c029d9, #932be2, #632deb, #322ff4);
    background-size: 400% 400%;

    -webkit-animation: purple-blue 30s ease infinite;
    -moz-animation: purple-blue 30s ease infinite;
    animation: purple-blue 30s ease infinite;
}

@-webkit-keyframes purple-blue {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-moz-keyframes purple-blue {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@keyframes purple-blue {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}

#gradient1 {
    background-image: linear-gradient(to right, #c029d9, #932be2)
}

#gradient2 {
    background-image: linear-gradient(to right, #932be2, #632deb)
}

#gradient3 {
    background-image: linear-gradient(to right, #632deb, #322ff4)
}

/* Buttons */

.button-link {
        color: white;
        text-decoration: none;
      }

.btn {
    border-radius: 25px;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 5px;
    border: 0px;
}

.btn-long {
    padding-left: 40px;
    padding-right: 40px;
}

#btn-back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: none;
  font-weight: 500;
  background-color: black;
  z-index: 9999;
}

#btn-back-to-top:hover {
  background-color: #9f2ae0;
}

.arrow-up {
    color: white;
    font-size: 20px;
}

/* Underline Animation Links */

a:hover {
    color: white;
}

.underline{
  position: relative;
}

.underline::before{
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background-color: white;
  transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

@media (hover: hover) and (pointer: fine) {
  .underline:hover::before{
    left: 0;
    right: auto;
    width: 100%;
  }
    
.underline-header {
  position: relative;  
}

.underline-header::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background-image: linear-gradient(to right, #c029d9, #632deb);
  transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1); 
}

@media (hover: hover) and (pointer: fine) {
  .underline-header:hover::before{
    left: 0;
    right: auto;
    width: 100%;
  }

/* Spacing for scrollspy */

span.anchor {
    margin-top: -54px; /* height of nav, in this case 54px */
    display: block;
    height: 54px; /* height of nav, in this case 54px */
    visibility: hidden;
    position: relative;
}
    

/* Custom translucent site header */

.site-header {
  background-color: white;
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
}
.site-header a {
  color: #515151;
  transition: color .15s ease-in-out;
  text-decoration: none;
}
.site-header a:hover {
  color: black;
  text-decoration: none;
}
    
/* Rounded Cards for stocks */
.rounded-corners {
    border-radius: 25px;
    border: 0px;
    }

/* Dummy devices (replace them with your own or something else entirely!)  */

.product-device {
  position: absolute;
  right: 10%;
  bottom: -30%;
  width: 300px;
  height: 540px;
  background-color: #333;
  border-radius: 21px;
  transform: rotate(30deg);
}

.product-device::before {
  position: absolute;
  top: 10%;
  right: 10px;
  bottom: 10%;
  left: 10px;
  content: "";
  background-color: rgba(255, 255, 255, .1);
  border-radius: 5px;
}

.product-device-2 {
  top: -25%;
  right: auto;
  bottom: 0;
  left: 5%;
  background-color: #e5e5e5;
}


/*  Extra utilities */

.flex-equal > * {
  flex: 1;
}
@media (min-width: 768px) {
  .flex-md-equal > * {
    flex: 1;
  }
}
