body {
    background-image: linear-gradient(to left,#FEFEFE 0%,#e8e9f4 100%);
    font-family: 'Archivo';
}

.fs-1, .fs-2, .fs-3, .fs-4, .fs-5, .fs-6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: 'Archivo';
    /* font-family: 'Poppins'; */
}

header {
    /* background: #6f2df4; */
    /* background: #571cce; */
    background: linear-gradient(to right, #119155, #072b1a);

    transition: 0.4s;

    box-shadow: 0 .5em 1.5em rgba(0, 0, 0, .1), 0 .125em .5em rgba(0, 0, 0, .25);
}

@media screen and (min-width: 992px) {
    header {
        position: sticky;
        top: 0;
        z-index: 1020;
    }
}

footer {
    background: #fff;
    text-align: center;
    border-top: 1px solid #ddd;
}

section.section-color {
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0) 0%,
        /* rgba(111,45,244,0.15) 50%, */
        rgba(16,137,80,0.15) 50%,
        rgba(0,0,0,0) 100%
    );
}

.home-title {
    background: linear-gradient(to right bottom, rgb(0, 0, 0) 30%, rgba(0, 0, 0, 0.45)) padding-box text; 
    -webkit-text-fill-color: transparent; 
}

.btn-primary {
    background-color: #158d55;
    border-color: #158d55;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #0e643c;
    border-color: #0e643c;
}

.btn-primary.disabled,
.btn-primary:disabled {
    background-color: #158d55;
    border-color: #158d55;
    opacity: 0.65;
}