/* start: Hero */
header {
    padding: 64px 0;
    background-color: var(--blue-100);
    box-shadow: inset 0 -180px 0 0 var(--white);
}
.hero-title {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
}
.hero-description {
    text-align: center;
    margin: 0 auto;
    margin-bottom: 32px;
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.5;
}
.hero-button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 64px;
}
.hero-button > * {
    margin-right: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    max-width: 940px;
    margin: 0 auto;
}
.hero-wrapper > * {
    background-color: var(--white);
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 16px 48px -16px rgba(0, 0, 0, .1);
    text-align: center;
    transition: all .2s;
}
.hero-wrapper > :hover {
    transform: translateY(-8px);
}
.hero-item-icon {
    width: 64px;
    height: 64px;
    border-radius: 6px;
    background-color: var(--blue-600);
    margin: 0 auto;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 24px;
}
.hero-item-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}
.hero-item-description {
    color: var(--gray-600);
    line-height: 1.5;
}
/* end: Hero */



/* start: Features */
.features-section {
    overflow: hidden;
}
.features-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
}
.features-wrapper:not(:last-child) {
    margin-bottom: 80px;
}
.features-wrapper.reverse > :first-child {
    order: 2;
}
.features-wrapper.reverse > :last-child {
    order: 1;
}
.features-wrapper img {
    width: 100%;
}
/*.features-wrapper.reverse img {*/
/*    margin-left: -20%;*/
/*}*/
.features-wrapper .section-description {
    margin-bottom: 24px;
    line-height: 1.5;
}
/* end: Features */



/* start: Cta */
.cta-section {
    background-color: var(--blue-100);
}
.cta-section {
    text-align: center;
}
.cta-section .section-title {
    margin-bottom: 24px;
}
/* end: Cta */







/* start: Breakpoints */
@media screen and (max-width: 767px) {
    .hero-title {
        font-size: 28px;
    }
    .hero-description {
        font-size: 16px;
    }
    .hero-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .features-wrapper {
        grid-template-columns: 1fr;
    }
    .features-wrapper.reverse > :first-child {
        order: 1;
    }
    .features-wrapper.reverse > :last-child {
        order: 2;
    }
}
@media screen and (max-width: 575px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
    }
}
/* end: Breakpoints */