body {
    width: 100vw;
    margin: 50px 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
}

.container {
    place-items: center;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 1fr minmax(350px, auto) 1fr;
    grid-template-rows: min-content min-content 1fr min-content min-content;
    grid-template-areas:
        ". header-content ."
        "hero-col-left hero-col-center hero-col-right"
        "hero-span hero-span hero-span"
        "hero-span-central hero-span-central hero-span-central"
        ". hero-col-center2 ."
        /* "footer footer footer"; */
}

.header-content {
    grid-area: header-content;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 45px;
}

.hero-col-left {
    grid-area: hero-col-left;
}

.hero-col-center {
    grid-area: hero-col-center;
    text-align: center;
}

.hero-col-center h1 {
    font-size: 65px;
    font-weight: 800;
    color: black;
}

.hero-col-center p {
    font-size: 20px;
    font-weight: 200;
    color: darkgrey;
    margin-bottom: 35px;
}

.hero-col-center .btn {
    color: white;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin: 0 20px;
    height: 60px;
}

.btn1 {
    background-color: darkcyan;
    padding: 0 25px;
    border-radius: 50px;
}

.btn2 {
    background-color: blueviolet;
    padding: 0 25px;
    border-radius: 50px;
}

.hero-col-right {
    grid-area: hero-col-right;
}

.hero-span {
    grid-area: hero-span;
    background-color: white;
    height: 250px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.hero-span .number {
    margin: 0;
    border: 1px solid darkgrey;
    border-radius: 50px;
    padding: 10px 18px;
    transform: translateY(50px);
}

/* .hero-span .line {
    margin: 0;
    color: darkgrey;
    border-left: 1px;
    transform: translateY(-20px);
    transform: translateX(23px);
} */

.hero-span-central {
    grid-area: hero-span-central;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 22.5px;
    margin-bottom: 20px;
}

.hero-span-central img {
    width: 20%;
    border-radius: 7px;
}

.hero-col-center2 {
    grid-area: hero-col-center2;
    text-align: center;
}

.hero-col-center2 h2 {
    font-size: 35px;
}

.hero-col-center2 h3 {
    font-size: 16px;
    text-transform: uppercase;
    color: darkcyan
}

/* .footer {
    grid-area: footer;
    margin-top: 100px;
} */