body {
    font-family: "Rubik";
    width: 100%;
    margin: 0;
    color: #121212;
}

h1, h2, h3 {
    margin: 0;
    font-optical-sizing: auto;
    font-weight: 900;
}

h1 {
    font-size: 32px;
    color: #121212;
    font-weight: 900;
}

h2 {
    font-size: 26px;
    font-weight: 900;
    color: #121212;
    line-height: 1.3;
}

h3 {
    font-size: 22px;
    line-height: 22px;
}

.logo {
    width: 30px;
    height: 30px;
    background-image: url('static/logo.svg');
    background-size: contain; 
    background-repeat: no-repeat; 
    background-position: center;
    margin-right: 10px;
}

.small-logo-typo {
    height: 30px;
}

header h1 {
    display: inline-block;
    font-family: "Rubik";
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 26px;
    line-height: 30px;
    margin: 0;
}

.logo-container {
    display: flex;
    flex-direction: row;
}

.app {
    width: calc(100% - 20px);
    margin: 0 10px;
}

.hero h1 {
    line-height: 1.3;
    padding: 0 10px;
}

.hero h2 {
    font-weight: 300;
    padding: 0;
    font-size: 22px;
    padding: 0 10px;
}

.hero p {
    text-align: left;
}

h4 {
    display: inline-block;
    background-color: #077EFF;
    margin: 10px;
    line-height: 30px;
    padding: 0 15px;
    color: white;
    border-radius: 8px;
    text-transform: uppercase;
}

section h2 {
    padding: 0 20px;
}

header {
    width: calc(100% - 20px);
    margin: 0 10px;
    padding: 25px 0;
    margin-bottom: 15px;
}

.card-container div {
    box-shadow: 0 0 20px 5px #F0F0F5;
    border-radius: 20px;
    padding: 30px;
}

.card-container p {
    margin-bottom: 0;
}

p {
    font-size: 18px;
    color: rgba(18, 18, 18, 0.65);
}

section {
    margin-bottom: 50px;
}

section.accent-color {
    background-color: #077EFF;
    border-radius: 20px;
    padding: 30px 35px;
    text-align: center;
}

section.accent-color > h2 {
    color: white;
    font-weight: 600;
    opacity: 1;
}

section.accent-color a {
    display: inline-block;
    padding: 0.5em 1.5em;
    background-color: #ffffff;
    color: #077EFF;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
}

.flex-row {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero {
    margin-bottom: 50px;
    margin-top: 0;
}

.hero .col-2 {
    margin-top: 50px;
}

.hexa-text::before {
    display: block;
    float: left;
    content: '';
    height: 22px;
    width: 22px;
    background-image: url(static/hexa.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 5px;
}

footer {
    display: flex;
    flex-direction: column;
    padding: 40px 0 40px 0;
}

footer div:last-child p {
    font-size: 14px;
    color: #AAB4CB;
    text-align: center;
}

footer div:first-child {
    margin: auto;
    margin: bottom 15px;
}

.accent-color p {
    color: white;
    opacity: 1;
    font-weight: 400;
    text-align: left;
    margin: 30px 0;
}

.flex-row-reverse {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero img {
    width: 96%;
    margin: auto;
    display: block;
}

.card-container {
  display: grid;
  grid-template-columns: 1fr; 
  grid-auto-rows: 1fr;
  gap: 30px;
  margin: auto;
}

@media (min-width: 900px) {
    .card-container {
        grid-template-columns: repeat(3, 1fr); 
    }
    .flex-row-reverse {
        flex-direction: row-reverse;
    }
}

@media (min-width: 1200px) {
    header, .app, footer {
        margin: auto;
        width: 1000px;
    }
    .hero {
        padding: 0 40px;
        min-height: 180px;
    }
    .flex-row {
        flex-direction: row;
    }
    section.accent-color {
        padding: 30px 150px;
    }


}