html, body {
    overflow-x: hidden;
    background: var(--purple-lighter);
}

section {
    padding: 50px 0;
}

#mainNav {
    background: var(--purple-lighter);
}

#mainNav.bg {
    transition: .6s ease-in;
    padding: 0;
    box-shadow: 0 4px 15px rgb(0 0 0 / 6%);
}

section.header {
    position: relative;
}

section.header .illustration {
    background: url(../images/help/book-illustration.svg);
    background-size: contain;
    background-position: right bottom;
    background-repeat: no-repeat;
    position: absolute;
    right: calc(15% - 150px);
    bottom: 20%;
    width: 40%;
    height: 110%;
    opacity: .2;
}

.cursor-pointer {
    cursor: pointer !important;
}

.search {
    position: relative;
}

.search input {
    padding-left: 50px;
    background: var(--white)  !important;
}

.search .search-btn {
    position: absolute;
    top: 0;
    left: 0;
}

.search .h-scroll {
    overflow-y: auto;
    height: 60px;
    display: flex;
}

.placeholder-lg {
    min-height: 90px;
    border-radius: 20px;
}

.filters {
    position: relative;
    top: 4px;
    right: 5px;
    height: 50px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
}

.filters .dropdown_ {
    display: flex;
    margin-left: 5px;
}

.filters .dropdown_ .selected {
    background: var(--purple-lighter);
    color: var(--purple-dark);
    border-radius: 17px 0 0 17px;
    padding-left: 15px;
    text-align: center;
    border: 0;
    font-weight: 600;
}

.filters .dropdown_ .dropdown-toggle {
    background: var(--purple-lighter);
    color: var(--purple-dark);
    border-radius: 0 17px 17px 0;
    padding: 0 15px 0 5px;
    border: 0;
}

.filters .dropdown_ .dropdown-menu li {
    cursor: pointer;
}

.filters .dropdown_ .dropdown-menu li .active {
    background: var(--purple-dark);
    color: var(--white);
}



.groups {
    padding-top: 0;
    position: relative;
}

.groups .item {
    display: flex;
    justify-content: start;
    text-decoration: none;
    color: var(--black);
    background: var(--green-lighter);
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.groups .item .icon {
    margin-right: 15px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 60px;
    height: 60px;
}

.groups .item .content p {
    margin-bottom: 0;
}


.topics {
    padding-top: 0;
}

.topics .item {
    display: block;
    text-decoration: none;
    color: var(--black);
    background: var(--white);
    padding: 15px 25px;
    border-radius: 20px;
    margin-bottom: 10px;
    background-repeat: no-repeat;
    background-position: right 20px top 20px;
    background-size: auto 50px;
    position: relative;
}

.topics .item:hover {
    background: var(--yellow-lighter);
}

.topics .item .illustration {
    position: absolute;
    right: 10px;
    top: 10px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 60px;
    height: 60px;
    opacity: .1;
}

.topics .item .content p {
    margin-bottom: 0;
}

.topics .item .details .category {
    display: flex;
    align-items: center;
    justify-content: end;
}

.topics .item .details .category .icon {
    height: 20px;
    width: 20px;
    object-fit: contain;
    margin-right: 5px;
}

.topics .item .details .roles {
    display: flex;
    align-items: center;
    justify-content: end;
}

.topics .item .details .roles span {
    display: inline-block;
    margin: 0 5px 0 10px;
    width: 10px;
    height: 10px;
    border-radius: 10px;
}


footer a {
    color: var(--white);
    text-decoration: none;
}



/* RESPONSIVE */


/*Large Devices*/
@media (min-width: 991px) {

    .topics .item {
        display: flex;
        justify-content: space-between;
    }

    #mainNav {
        background: unset;
        padding: 30px 0;
    }

    section {
        padding: 40px 0;
    }

    .groups .item {
        padding: 20px 30px;
    }

    .groups .item .icon {
        margin-right: 25px;
    }

    section.header .illustration {
        right: 0;
        left: calc(85% - 200px);
        width: 500px;
        height: 500px;
        bottom: -200px;
        display: none;
    }


    .filters {
        position: absolute;
    }

}

section.start-trial-banner .box {
    background: var(--white);
    border-radius: 20px;
    border: 2px solid var(--black);
    padding: 20px 20px;
}

#bookDemoModal .calendly-inline-widget {
    height: 600px !important;
    overflow: hidden !important;
    width: 100%;
}

@media (min-width: 580px) {
    .btn.fluid-mobile {
        max-width: fit-content;
        min-width: fit-content;
    }
}

@media (min-width: 991px) {
    section.start-trial-banner .box {
        padding: 50px 100px;
    }
    .w-lg-100 {
        width: 100% !important;
    }
}

@media (min-width: 1400px) {
    section {
        padding: 70px 0;
    }
}
