.background-landing {
    background-image: url("../images/bg-mb-xs.webp");
    /* background-color: #333; */
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

.banner-mobile {
    display: block;
}

.banner-main {
    display: none;
}

@media only screen and (min-width: 550px) and (max-width: 650px) {
    .background-landing {
        background-image: url("../images/bg-mb-s.webp");
        /* background-color: #333; */
        background-repeat: no-repeat;
        background-position: top;
        background-size: cover;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        background-size: cover;
        -o-background-size: cover;
    }

    .banner-mobile {
        display: block;
    }

    .banner-main {
        display: none;
    }
  }

@media only screen and (min-width: 650px) and (max-width: 768px) {
    .background-landing {
        background-image: url("../images/bg-mb-m.webp");
        /* background-color: #333; */
        background-repeat: no-repeat;
        background-position: top;
        background-size: cover;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        background-size: cover;
        -o-background-size: cover;
    }

    .banner-mobile {
        display: block;
    }

    .banner-main {
        display: none;
    }
  }

  @media only screen and (min-width: 768px) and (max-width: 995px) {
    .background-landing {
        background-image: url("../images/bg-mb-lg.webp");
        /* background-color: #333; */
        background-repeat: no-repeat;
        background-position: top;
        background-size: cover;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        background-size: cover;
        -o-background-size: cover;
    }

    .banner-mobile {
        display: block;
    }

    .banner-main {
        display: none;
    }
  }

@media only screen and (min-width: 995px) and (max-width: 1200px) {
    .background-landing {
        background-image: url("../images/bg-s.webp");
        /* background-color: #333; */
        background-repeat: no-repeat;
        background-position: top;
        background-size: cover;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        background-size: cover;
        -o-background-size: cover;
    }

    .banner-mobile {
        display: none;
    }

    .banner-main {
        display: block;
    }

  }

  @media only screen and (min-width: 1200px) {
    .background-landing {
        background-image: url("../images/bg-m.webp");
        /* background-color: #333; */
        background-repeat: no-repeat;
        background-position: top;
        background-size: cover;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        background-size: cover;
        -o-background-size: cover;
    }

    .banner-mobile {
        display: none;
    }

    .banner-main {
        display: block;
    }

  }

.section-dark {
    background-color: rgba(0, 0, 0, 0.5);
    border-top: solid;
    border-bottom: solid;
    border-width: 2px;
    border-color: rgba(71, 71, 71, 0.5);
}

.section-footer {
    background-color: rgba(0, 0, 0, 0.7);
    border-top: solid;
    border-bottom: solid;
    border-width: 2px;
    border-color: rgba(71, 71, 71, 0.5);
}

.active {
    background-color: rgba(0, 0, 0, 0.95);
    /* border-bottom: solid;
    border-width: 2px;
    border-color: rgba(71, 71, 71, 0.5); */
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
    -webkit-transition: background 0.5s linear;
    -moz-transition: background 0.5s linear;
    -ms-transition: background 0.5s linear;
    -o-transition: background 0.5s linear;
    transition: background 0.5s linear;
}

/* TYPOGRAPHY */

.page-title {
    font-size: 4em!important;
}

.page-title-mobile {
    font-size: 3.5em!important;
}

.page-title-2 {
    font-weight: 300!important;
}

.page-title-2 {
    font-weight: 400!important;
    font-size: 1.6em!important;
}

.page-title-mb-2 {
    font-weight: 400!important;
}

.p-lg {
    font-size: 1.1em;
    color: #cccccc!important;
}

.social-icon {
    background: rgba(255, 255, 255, 0.0)!important;
}

/* IMAGES */

.img-m {
    width: 10rem;
    height: auto;
}

.img-header {
    height: 4rem;
    width: auto;
}

/* Card Styling */

.card-main {
    border-radius: 20px;
    background-color: #1a1a1a;
    border-style: solid;
    border-width: 2px;
    border-color: #333333;
}

.card-background {
    background-color: #2b2b2b;
}

.card-transparent {
    background-color: rgba(26, 26, 26, 0.7);
    border-radius: 1.5rem;
}

.card-link:hover {
    background-color: rgba(26, 26, 26, 0.6);
    border-color: #444;
}

.card-link:hover h3, .card-link:hover p {
    color: #999!important;
}

.card-bg-1 {
    background-image: url("../images/bg-texture-1.webp");
    /* background-color: #333; */
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

.card-bg-2 {
    background-image: url("../images/bg-texture-2.webp");
    /* background-color: #333; */
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

/* INPUT STYLING (REMOVE ARROWS FROM NUMBER INPUT ON ALL BROWSERS) */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}

/* Firefox */
input[type="number"] {
-moz-appearance: textfield;
}

.input-large {
    height: 3rem;
    font-size: 1.5rem;
}

.input-wallet {
    height: 3rem;
}

input[type="number"], textarea {
    background-color : #2b2b2b!important;
}

input[type="text"], textarea {
    background-color : #2b2b2b!important;
}

/* Asset Inputs */
.input-asset {
    width: 60%;
}

/* Currency Buttons */

.currency-button {
    width: 40%;
}

.currency-button:hover {
    opacity: 0.5;
    cursor: pointer;
}

/* Currency Modal */

.modal {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    padding-top: 10rem;
}

.modal-content {
    background-color: #1a1a1a;
    border-style: solid;
    border-width: 1px;
    border-color: #4a4a4a;
    margin: auto;
    border-radius: 20px;
    width: 60%;
}

.modal-border {
    border-bottom: 2px solid #333333;
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-modal:hover,
.close-modal:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d2e2e;
}

.scroll-list {
    max-height: 15rem;
    overflow-x: hidden;
    overflow-y: auto;
}

.currency-item p {
    font-size: 1.1em;
    font-weight: 500;
    padding-left: 1rem;
}

.currency-item:hover {
    background-color: #4a4a4a;
    cursor: pointer;
}

/* Responsive sizing for Modal */

@media only screen and (min-width: 768px) {
    .modal-content {
        width: 20%;
    }
  }


