body {
    background: #141414;
    margin: 0;
    overflow-x: hidden;
    max-width: 100vw;
}
hr{
    height: 0.5px;
    background-color: #FFF;
    border: none;
    margin: 0;
}
button {
    background: none;
    outline: none;
    border: none;
}
a {
    text-decoration: none;
}
.container {
    margin: 0 auto;
    width: 1420px;
    justify-content: center;
}
.desktop{
    display: block;
}
.mobile {
    display: none;
}
.show{
    display: block;
}
.arrow-btn {
    margin: auto 0;
    width: 50px;
    height: 50px;
}
@media (max-width: 1500px) {
    .container {
        width: 1100px;
    }
}
@media (max-width: 1200px) {
    .container {
        width: 900px;
    }
}
@media (max-width: 950px) {

    .container {
        width: 700px;
    }
    .desktop{
        display: none;
    }
    .mobile {
        display: block;
    }
}
@media (max-width: 750px) {
    .container {
        width: 90%;
        margin-right: 5%;
        margin-left: 5%;
    }
    .arrow-btn {
        margin: auto 0;
        width: 40px;
        height: 40px;
    }
}
.card-gradient {
    background: linear-gradient(
        142.92deg, #252525 1.67%,
        #131313 99.01%
    );
    border: none;
}
.arrow {
    margin-right: 20px;
}
.flex {
      display: flex;
}

.block {
  display: block;
}

.wrap {
  flex-wrap: wrap;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
justify-content: center;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}
.self-center {
  align-self: center;
}
