a {
    text-decoration: none;
    color: black;
    cursor: pointer;
}

body {
    overflow-x: hidden;
}

html::-webkit-scrollbar {
    width: 7px;
}

html::-webkit-scrollbar-track {
    width: 5px;
}

html::-webkit-scrollbar-thumb {
    background-color: cornflowerblue;
    border-radius: 20px;
    width: 7px;
}

html {
    font-family: calibri;
}

.appbar .title,
.appbar-001 .title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: calibri;
    font-size: 22px;
    font-weight: bold;
}

.appbar-001 {
    background: white;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 4em;
    display: grid;
    grid-template-columns: 20% 50%;
    z-index: 2;
}

.appbar .nav-list {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    font-family: calibri;
    font-size: 18px;
    font-weight: 400;
}

.appbar .menu-icon {
    display: none;
    height: 4em;
    align-items: center;
    justify-content: center;
    margin-left: 54%;
}

@media screen and (max-width: 800px) {
    .appbar {
        display: flex;
        padding-left: 16px;
    }

    .appbar .nav-list {
        display: none;
        position: absolute;
        top: 4em;
        flex-direction: column;
        gap: 10px;
        width: 88%;
        border: 1px solid blue;
        background-color: white;
        padding: 16px 0;
    }

    .appbar .menu-icon {
        display: flex;
    }
}

.appbody {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    top: 10%;
    z-index: 1;
}


.btn-type-1 {
    padding: 16px;
    border-radius: 50px;
    border: 0;
    cursor: pointer;
    font-weight: 400;
    font-size: 19px;
    background: blue;
    color: white;
}

.features-div {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    margin: 20px 0 0 0;
}


.feature-card {
    width: 17em;
    height: 20em;
    background: white;
    display: grid;
    grid-template-rows: 15% 70% 15%;
    border-radius: 15px;
    border: 0;
    box-shadow: 3px 3px 11px 3px whitesmoke;
}

.feature-card .title {
    font-size: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card .footer {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card .footer a {
    font-size: 18px;
    font-weight: 600;
    color: blue;
}

.feature-card .features ul {
    font-size: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.feature-card .features ul li {
    margin: 10px 0 0 0;
    font-weight: 6;
    font-size: 20px;
}



