body {
    font-family: "Poppins", sans-serif;
    color: #111;
    line-height: 1.8;
}

.background-header {
    background-color: #ffffff !important;
    position: fixed !important;
    top: 0 !important;
    left: 0;
    right: 0;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15) !important;
    -webkit-transition: all .5s ease 0s;
    -moz-transition: all .5s ease 0s;
    -o-transition: all .5s ease 0s;
    transition: all .5s ease 0s;
    color: #fff;
}

.hero {
    background: linear-gradient(135deg,
            rgba(122, 106, 216, 0.95) 0%,
            rgba(75, 61, 181, 0.90) 50%,
            rgba(159, 148, 245, 0.85) 100%);
    background-size: cover;
    min-height: calc(100vh - 61px);
    margin-top: 61px;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 30px 0px;
}

.highlight {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.highlight span {
    background-color: #fff;
    color: #000000;
    padding: 4px;
    display: inline-flex;
    border-radius: 4px;
    border-left: solid 5px rgb(122, 106, 216);
}

.primary-color {
    color: rgb(122, 106, 216);
}

.highlight-dark {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.highlight-dark span {
    background-color: #f1f0fe;
    color: #000000;
    padding: 4px;
    display: inline-flex;
    border-radius: 4px;
    border-left: solid 5px rgb(122, 106, 216);
}

.nav-link {
    color: #000000;
    font-size: 16px
}

.nav-item {
    padding: 0px 15px;
}

.nav-item:last-child {
    padding-right: 0px;
}

.section-title {
    font-weight: 600;
    margin-bottom: 30px;
}

.section-light {
    background: #f1f0fe;
}

.section-white {
    background-color: #ffffff;
}

.section-padding {
    padding: 30px 0;
}

.card-light-block {
    background: #f1f0fe;
    padding: 20px;
    border-radius: 10px;
    height: 100%;
}

.card-light-block .title {
    color: rgb(122, 106, 216);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}

@media(min-width:768px) {

    .hero,
    .section-padding {
        padding: 100px 0px;
    }
}



.section-dark {
    background: #111;
    color: #fff;
}

.icon-list li {
    margin-bottom: 8px;
}

.card-box {
    padding: 35px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

footer {
    background: #000;
    color: #aaa;
    padding: 60px 0;
}