:root {
    --BLACK: #000000;
    --WHITE: #FFFFFF;
    --line: #e3eeec;
    --GREY: #808080;
    --LIGHT_GREY: #D0D0D0;
    --MINT_GREEN: #06CCB3;
    --DARK_MINT_GREEN: #049E8E;
    --LIGHT_MINT_GREEN: rgba(59, 197, 170, 0.2);
}

@font-face {
    font-family: Albertus;
    src: url("../fonts/albr55w.ttf");
}

@font-face {
    font-family: VAGRoundedRegular;
    src: url("../fonts/VAGRoundedRegular.ttf");
}

.vag-font {
    font-family: VAGRoundedRegular;
}

.navbar {
    background-color: var(--BLACK);
    padding: 5px 16px;
}

.nav-link.active {
    font-weight: bold;
}

.navbar .nav-link {
    line-height: 1;
    padding: 5px !important;
}

.logo {
    display: inline-block;
    height: 45px;
    width: 45px;
}

.logo img {
    height: 100%;
    width: 100%;
}

footer {
    text-align: center;
    padding: 10px 0;
    font-size: 12px;
    background-color: var(--BLACK);
    color: var(--WHITE);
}

footer p {
    margin: 0;
}

.lib-title {
    font-family: 'Albertus';
    color: #1bbfad;
    font-weight: 400;
}

.lib-cta {
    background-color: var(--LIGHT_MINT_GREEN) !important;
    border: 2px solid var(--MINT_GREEN) !important;
    color: var(--BLACK) !important;
    border-radius: 0;
    padding: .5rem 1rem;
    font-size: 20px;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.lib-cta:hover {
    background-color: transparent !important;
    color: var(--MINT_GREEN) !important;
    text-decoration: none;
}

.lib-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 6rem;
    grid-column-gap: 8rem;
    align-items: center;
    margin-top: 4rem;
}

.lib-card {
    position: relative;
    border: 1px solid #c8c8c8;
    background: #fff;
    padding: 24px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
    width: 100%;
    max-width: 420px;
    min-width: 360px;
    min-height: 200px;
    text-align: center;
}

.lib-card h3 {
    color: #18b7a9;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 3rem;
}

.lib-card p {
    margin-bottom: .5rem;
    font-size: 15px;
    color: #1c2d2d;
}

.lib-card .lib-icon {
    position: absolute;
    top: -40px;
    left: 43%;
    width: 4.5rem;
}

.lib-left {
    justify-self: end;
}

.lib-right {
    justify-self: start;
}

.lib-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 5;
}

.lib-oval {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lib-top {
    margin-bottom: 18px;
}

.lib-bottom {
    margin-top: 4rem;
}

@media (max-width: 1024px) {
    .lib-title{
        font-size: 2rem;
    }
    .lib-oval {
        width: 100%;
    }

    .lib-grid {
        grid-template-columns: 1fr;
        grid-row-gap: 3rem;
        margin-top: 0;
    }
    .lib-oval img{
        height: 14rem!important;
    }
    .lib-center {
        position: relative;
    }
    .lib-right, .lib-left {
        justify-self: center;
    }
}

@media (max-width: 767.98px) {

    .lib-center {
        position: relative;
    }
    .lib-oval img{
        height: 14rem!important;
    }

    .lib-grid {
        grid-template-columns: 1fr;
        grid-row-gap: 3rem;
        margin-top: 0;
    }

    .lib-oval {
        height: 16rem;
    }

    .lib-title {
        font-size: 18px;
    }

    .lib-card {
        padding: 20px;
        min-width: 0;
        max-width: none;
        width: calc(100% - 48px);
        margin: 0 auto;
    }

    .lib-card .lib-icon {
        left: 50%;
        transform: translateX(-50%);
    }
}