:root {
    --background-gray: #f8f8f8;
    --text-gray: #8e939f;
}

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@100;200;300;400;500;600;700;800;900&display=swap');

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

body,
body p,
body div,
body div.g-simplecontent .g-simplecontent-item-main-content,
body span {
    font-size: 14px;
}

body .g-heading h2 span,
body .g-heading h2 {
    font-size: 22px;
    text-transform: uppercase;
}

body .g-heading h2 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    75% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


body .g-heading h2 span {
    text-align: center;
    width: fit-content;
    animation: fadeIn 3s;
}

h2 {
    color: black;
    position: relative;
    display: inline-block;
    font-size: 1.6rem;
}

h2>span {
    padding: 1px;
    z-index: 0;
    position: relative;
}

h2>span:last-child::after {
    content: "";
    /* Necessary for the pseudo-element to be rendered */
    display: block;
    height: 12px;
    background: #00afcb66;
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    z-index: -1;
}

.fa-magnifying-glass::before,
.fa-search::before {
    content: "";
    cursor: pointer;
    position: relative;
    top: 0%;
    color: #7d8a9a;
}

.search-input {
    position: relative;
}

.no-results {
    display: none;
    color: black;
    font-size: 16px;
    padding: 0px 10px;
    margin: 0;
}

.search-input input {
    padding: 10px 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    background: white;
    font-size: 14px;
}

.search-input input:focus,
.search-input input:hover {
    border-color: rgba(0, 0, 0, 0.5);
}

.search-input img {
    position: absolute;
    right: 20px;
    font-size: 12px;
    top: 14px;
}

h3,
h4 {
    font-family: Barlow;
}

a {
    font-size: 14px;
}

@media (max-width: 816px) {

    body .g-content {
        margin-left: 0;
        margin-right: 0;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    body p {
        color: var(--text-gray);
    }

}

@media (min-width:440px) {

    body .g-heading h2 span,
    body .g-heading h2 {
        font-size: 24px;
    }
}

@media (min-width: 816px) {

    body .g-heading h2 span,
    body .g-heading h2 {
        font-size: 24px;
        text-transform: none;
    }

    body .g-heading h2 {
        flex-direction: row;
        justify-content: left;
    }

    body .g-heading h2 span {
        text-align: left;
    }

    body,
    body p,
    body div,
    body div.g-simplecontent .g-simplecontent-item-main-content,
    body span {
        font-size: 18px;
    }


}

@media (min-width: 927px) {

    body .g-heading h2 span,
    body .g-heading h2 {
        font-size: 28px;
    }
}

@media (min-width: 1100px) {

    body .g-heading h2 span,
    body .g-heading h2 {
        font-size: 33px;
    }

    h2>span::after {
        height: 14px !important;
        bottom: 4px !important;
    }
}

@media (min-width: 1250px) {

    body .g-heading h2 span,
    body .g-heading h2 {
        font-size: 38px;
    }

    h2>span::after {
        bottom: 6px !important;
    }
}