* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
    background: #113ef5;
    margin: 0;
}

header {
    position: relative;
    width: 100%;
    min-height: auto;
    text-align: center;
    color: #fff;
    background: #113ef5;
}

header .header-content {
    position: relative;
    width: 100%;
    padding: 100px 15px 70px;
    text-align: center;
}

header .header-content .header-content-inner h1 {
    margin-top: 0;
    margin-bottom: 50px;
    font-size: 50px;
    font-size: 20px;
    font-weight: 300;
}

header .header-content .logo__efront {
    margin-bottom: 2em;
    width: 100%;
    max-width: 300px;
}

@media (min-width: 768px) {
    header {
        min-height: 100%;
    }

    header .header-content {
        position: absolute;
        top: 50%;
        padding: 0 50px;
        transform: translateY(-50%);
    }

    header .header-content .header-content-inner {
        margin-right: auto;
        margin-left: auto;
        max-width: 1000px;
    }

    header .header-content .header-content-inner h1 {
        font-size: 40px;
    }

    header .header-content .header-content-inner p {
        margin-right: auto;
        margin-left: auto;
        max-width: 80%;
        font-size: 18px;
    }
}

.btn {
    border-radius: 2rem;
    text-transform: uppercase;
    padding: 2rem 1.5rem;
    color: #000;
    background-color: #fff;
    border: 1px solid #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    transition:
        background-color 0.3s,
        color 0.3s;
}

.btn {
    text-decoration: none;
}

.btn:hover,
.btn:focus-visible {
    background-color: #000;
    color: #fff;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.tool-item {
    position: relative;
}

svg {
    height: 60px;
    width: 60px;
}

.status {
    font-size: 12px;
    font-weight: bold;
    display: block;
    border-radius: 4px;
    padding: 4px 8px;
    position: absolute;
    bottom: 9px;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 767px) {
    .grid {
        gap: 1rem;
    }
}
