.hero-container {
    display: flex;
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 0;
}

.hero-left {
    padding-right: 2rem;
    color: #fff;
}

.hero-left,
.hero-right {
    flex: 1;
}

.text-kicker {
    display: block;
    font-size: .9rem;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.hero-heading {
    font-size: 3rem;
    line-height: 3.625rem;
}

.hero-text {
    margin-top: 10px;
    margin-bottom: 1.5rem;
}

.btn-commerce,
.btn-yellow {
    background: #faa50a;
    color: #000;
    text-decoration-line: none !important;
}

.btn {
    align-items: center;
    border: none;
    color: #000;
    cursor: pointer;
    display: inline-flex;
    font-size: 1rem;
    font-weight: 700;
    justify-content: center;
    /* line-height: 1.5; */
    padding: 0.8rem 1.5rem;
    touch-action: manipulation;
    user-select: none;
    vertical-align: middle;
}

@media screen and (max-width: 1300px) {
    .hero-container {
        width: 90%;
        padding: 5rem 0;
    }
	.hero-right{
		margin-top: 25px;
	}
}

@media screen and (max-width: 578px) {
    .hero-container {
        width: 80%;
		flex-direction: column;
    }
}



.de-banner {
    background-color: #ebebee;
    padding: 1rem 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.de-banner_text {
    color: var(--textcolor);
}

.de-banner_text h3 {
    margin-bottom: 0.4rem;
}

.de-banner_text p {
    margin-bottom: 0;
    font-size: 0.9rem;
}


.why-section {
    padding: 4rem 0;
    background-color: #fff;
}

.why-container {
    max-width: 1280px;
    margin: 0 auto;
    color: var(--textcolor);
}

.why-flex {
    display: grid;
    grid-template-columns: 2fr 1fr;
}

.why-section h1 {
    margin-bottom: 1.8rem;
}

.why-section h5 {
    margin-bottom: 0.4rem;
}

.why-text {
    margin-bottom: 1.5rem;
    line-height: 1.6rem;
}


.display-grid {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr 1fr;
    /* justify-content: center;
    flex-wrap: wrap; */
    gap: 2rem;
}

.grid-item {
    border: 1px solid #d9d9df;
    padding: 1.5rem;
    color: var(--textcolor);
}

.grid-item strong {
    font-size: 0.95rem;
}

.grid-item-title {
    margin-top: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.grid-item p {
    color: #000000d7;
}

@media screen and (max-width: 1300px) {

    .container,
    .why-container {
        width: 90%;
    }
}

@media screen and (max-width: 578px) {
    .container,
    .why-container {
        width: 80%;
    }
    .display-grid {
        grid-template-columns: 1fr;
    }

    .why-flex {
    grid-template-columns: 1fr;
}
}