body {
    margin: 0;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
}

button:focus {
    outline: 0;
}


header {
    display: flex;
    width: 100%;
    justify-content: space-between;
    max-width: 1440px;
    align-items: center;
    margin-top: 10px;
}

header > a {
    white-space: nowrap;
    color: #657d95;
    font-weight: 400;
    font-family: "Roboto";
    font-size: 24px;
    text-decoration: none;
}

header > a > img {
    margin: 0 10px;
    width: 20vw;
    max-width: 200px;
    min-width: 80px;
}


.header-actions {
    text-align: right;
}

.header-actions > button {
    text-align: right;
    border: 1px solid #3287db;
    color: #3287db;
    border-radius: 20px;
    background-color: #fbfbfb;
    font-size: 12px;
    margin-bottom: 5px;
}
.header-actions > button:hover {
    background-color: #3287db;
    color: #fbfbfb;
    cursor: pointer;
}

.footer-actions {
    display: flex;
    justify-content: space-around;
}

.footer-actions > a {
    white-space: nowrap;
    color: #657d95;
    font-weight: 400;
    font-family: "Roboto";
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
}

.footer-actions > a:hover {
    color: #3287db !important;
}

.active-link {
    color: #3287db !important;
}

main {
    width: 100%;
    display: flex;
    flex-direction: column;
    max-width: 1440px;
}

h1 {
    font-size: 24px;
    color: #2e3039;
    font-weight: 300;
    font-family: "Roboto", sans-serif;
    margin: 0px;
    text-align: center;
}

h2 {
    margin: 0px;
    font-size: 18px;
    color: #2e3039;
    font-weight: 300;
    font-family: "Roboto", sans-serif;
    text-align: center;
}

h3 {
    color: #3287db;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    margin: 0;
}

p {
    font-size: 14px;
    color: #657d95;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    text-align: center;
    max-width: 600px;
    text-align: center;
}

.grow-your-business-container {
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    margin-top: 25px;
    margin-bottom: 25px;
    padding: 45px 10px;
    border-radius: 60px;
    background-color: #fbfbfb;
}

.why-perks-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 20px;
}

.why-choose-us-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px 0;
}

.get-started-button {
    width: 15.625vw;
    min-width: 180px;
    max-width: 350px;
    height: 40px;
    border-radius: 40px;
    background-color: #3287db;
    font-size: 16px;
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    border: none;
    -webkit-box-shadow: 10px 0px 5px 0px rgba(228,232,236,1);
    -moz-box-shadow: 10px 0px 5px 0px rgba(228,232,236,1);
    box-shadow: 10px 0px 5px 0px rgba(228,232,236,1);
}

.get-started-button:hover {
    background-color: #2970b5;
    cursor: pointer;
}

.card-list {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    margin: 10px 0;
    justify-content: center;
}

.card {
    display: flex;
    flex-direction: column;
    border-radius: 60px;
    background-color: #fbfbfb;
    padding: 10px 20px;
    margin: 10px 10px;
    justify-content: center;
    justify-self: center;
    align-items: center;
    padding-top: 15px;
    max-width: 225px;
}

.card > img {
    padding: 0 10px;
}

.card > p {
    color: #012133;
}

footer {
    max-width: 1440px;
    margin: 10px;
}

footer > span {
    display: flex;
    text-align: center;
    font-size: 12px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

@media (min-width: 425px) {
    .card {
        flex-direction: row;
    }
}

@media (min-width: 520px){
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 24px;
    }

    p {
        font-size: 16px;
    }

    h3 {
        font-size: 18px;
    }

    .get-started-button {
        height: 50px;
        font-size: 24px;
        -webkit-box-shadow: 20px 0px 5px 0px rgba(228,232,236,1);
        -moz-box-shadow: 20px 0px 5px 0px rgba(228,232,236,1);
        box-shadow: 20px 0px 5px 0px rgba(228,232,236,1);
    }

    .card-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .card {
        flex-direction: column;
    }
}

@media (min-width: 768px){
    body {
        padding: 0 125px;
    }

    header {
        margin-top: 20px;
    }


    header > span {
        font-size: 24px
    }

    .header-actions > button {
        font-size: 18px;
        padding: 5px 20px;
    }

    footer > span {
        font-size: 14px
    }

    .grow-your-business-container {
        margin-top: 50px;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 24px;
    }

    p {
        font-size: 18px;
    }

    header {
        margin-top: 40px;
    }

    .grow-your-business-container {
        margin-top: 100px;
    }

    .get-started-button {
        height: 60px;
        font-size: 28px;
        -webkit-box-shadow: 30px 0px 5px 0px rgba(228,232,236,1);
        -moz-box-shadow: 30px 0px 5px 0px rgba(228,232,236,1);
        box-shadow: 30px 0px 5px 0px rgba(228,232,236,1);
    }

    .card-list {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

@media (min-width: 1440px){
    .card {
        padding: 50px 10px;
    }
}