/* Fonts */
@font-face {
    font-family: Roboto Regular;
    src: url("./fonts/Roboto-Regular.ttf");
    font-weight: normal;
}

@font-face {
    font-family: Roboto Bold;
    src: url("./fonts/Roboto-Bold.ttf");
    font-weight: bold;
}

@font-face {
    font-family: Raleway;
    src: url("./fonts/Raleway-Regular.ttf");
    font-weight: normal;
}

/* Styles */
html, body {
    background: #051123;
    color: #ffffff;
    font-family: Roboto Regular, sans-serif;
}

.container {
    width: 1200px;
    margin: auto;
    padding: 20px 0;
}

a {
    text-decoration: none;
}

.logo {
    display: flex;
    align-items: center;
    width: fit-content;
    margin-top: 40px;
}

.logo img {
    width: 250px;
    margin-right: 15px;
}

.description {
    font-size: 32px;
    line-height: 40px;
    margin: 20px 0;
}

.app-links {
    position: absolute;
    bottom: -10pt;
    display: flex;
}

.app-link {
    background: black;
    border: #A7A9AC 1px solid;
    border-radius: 5px;
    display: flex;
    padding: 5px;
    margin: 0 5px;
    width: 100%;
    align-items: center;
}

section {
    margin: 50px 0;
}

.wallet-list {
    display: grid;
    align-items: center;
    flex-wrap: wrap;
    grid-template-columns: auto auto auto;
}

.mobile-wallet {
    margin: 50px 0;
    border: 2px solid #353E4A;
    width: 360px;
    height: 220px;
    position: relative;
    box-sizing: border-box;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding: 0 0 1.5% 0;
    z-index: 1;
}

.wallet-logo {
    margin: auto;
    width: 100px;
    height: 100px;
}

.wallet-logo-ksbc {
    margin: auto;
    width: 250px;
    height: 100px;
}

.wallet-logo-o-business {
    margin: auto;
    width: 200px;
    height: 100px;
}

.wallet-logo-esb {
    margin: 50px;
    width: 300px;
    height: 300px;
}

.sub-title {
    font-size: 24px;
    line-height: 28px;
}

p {
    font-size: 18px;
    line-height: 21px;
}
.settings-steps {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}
.settings-steps li {
    font-size: 18px;
    line-height: 30px;
}

/* Media queries */

@media (min-width: 200px) and (max-width: 1200px) {
    .container {
        width: 90%;
    }

    .description {
        font-size: 18px;
        line-height: 24px;
    }

    .sub-title {
        font-size: 16px;
        line-height: 21px;
    }

    p {
        font-size: 14px;
        line-height: 24px;
    }

    .settings-steps li {
        font-size: 14px;
        line-height: 24px;
    }
    .mobile-wallet {
        padding: 0 0 2.5% 0;
    }
}

@media (min-width: 200px) and (max-width: 300px) {
    .mobile-wallet {
        width: 250px;
    }

    .app-link img {
        width: 90px;
    }
}


@media (min-width: 200px) and (max-width: 900px) {
    .wallet-list {
        justify-content: center;
        grid-template-columns: auto;
    }
}

@media (min-width: 900px) and (max-width: 1300px) {
    .wallet-list {
        justify-content: space-between;
        grid-template-columns: auto auto;
    }
}

/* Animations */

.mobile-wallet.effect {
    -webkit-transition: background 0.2s, color 0.2s;
    -moz-transition: background 0.2s, color 0.2s;
    transition: background 0.2s, color 0.2s;
}

.mobile-wallet.effect:hover {
    background: rgba(255, 255, 255, .1);
    color: #64bb5d;
}

.mobile-wallet.effect:hover i {
    color: #64bb5d;
}

.mobile-wallet.effect:hover:before {
    -webkit-animation: spinAround 2s linear infinite;
    -moz-animation: spinAround 2s linear infinite;
    animation: spinAround 2s linear infinite;
}