body {
    background-color: #f2f2f7;
}
nav.top-nav {
    background-color: #008080;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.logo, .logo:hover {
    text-decoration: none;
    font-size: 25px;
    font-weight: 700;
}
nav .links-list-primary {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    margin-left: 25px;
}
nav .links-list-primary a {
    color: #fff;
    text-decoration: none;
    position: relative;
}
nav .links-list-primary a::after {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    content: '';
    background-color: #fff;
    height: 1px;
    transition: width 0.2s;
}
nav .links-list-primary a:hover::after {
    width: 100%;
}
nav .links-list-primary a i {
    font-size: 13px;
}
.hamburger, .hamburger:active, .hamburger:focus, .hamburger:hover {
    color: #fff;
    font-size: 20px;
    display: block;
    cursor: pointer;
    padding: 0 8px;
    transition: 0.2s;
    border-radius: 6px;
}
.hamburger.active {
    background-color: #fff;
    color: #008080;
}
nav .links-list-mobile {
    z-index: 1;
    position: absolute;
    right: 15px;
    top: 100%;
    list-style: none;
    margin: 0;
    padding-left: 0;
    box-shadow: 1px 1px 8px #515151;
    padding: 20px;
    border-radius: 12px;
    display: none;
    background-color: #fff;
}
body.mobile-menu-open nav .links-list-mobile {
    display: block !important;
}
nav .links-list-mobile li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
    text-decoration: none;
}
nav .links-list-mobile li:not(:last-child) {
    margin-bottom: 10px;
}
nav .links-list-mobile li a span {
    flex: 1;
    text-align: right;
}
nav .links-list-mobile li a i {
    color: #008080;
}
@media (max-width: 570px) {
    nav .links-list-primary {
        display: none !important;
    }
    footer {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
@media (min-width: 570.1px) {
    nav .links-list-mobile {
        display: none !important;
    }
    body.mobile-menu-open nav .links-list-mobile {
        display: none !important;
    }
    .hamburger {
        display: none !important;
    }
}
.hero-section {
    background-color: #008080;
    padding: 20px 40px;
    padding-bottom: 30px;
}
.title {
    font-size: 2rem;
}
.color-white, .color-white:active, .color-white:focus, .color-white:hover {
    color: #fff !important;
}
.editor-wrapper {
    background-color: #fff;
    border-radius: 12px;
    padding: 10px 15px;
    margin-bottom: 25px;
}
.editor-wrapper textarea {
    outline: 0;
    width: 100%;
    height: 350px;
    font-size: 1.25em;
    resize: none;
    border: none;
}
footer {
    padding: 20px 40px;
    background-color: #116868;
}
footer .links-list-primary {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    margin-top: 10px;
    margin-bottom: 10px;
}
footer .links-list-primary a {
    color: #fff;
    text-decoration: none;
    position: relative;
}
footer .links-list-primary a::after {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    content: '';
    background-color: #fff;
    height: 1px;
    transition: width 0.2s;
}
footer .links-list-primary a:hover::after {
    width: 100%;
}
footer .links-list-primary a i {
    font-size: 13px;
}
@media (max-width: 480px) {
    footer .links-list-primary {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
}
.custom-options {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.custom-options .option {
    color: #fff;
    border-radius: 5px;
    padding: 0.1em 0.4em 0.15em;
    cursor: pointer;
}
.custom-options .option:hover {
    background-color: #116868;
}
.custom-options .option.selected {
    background-color: #fff;
    color: #008080;
}
.custom-options .option label {
    margin: 0;
    white-space: nowrap;
    cursor: pointer;
}
@media (min-width: 992px) {
    .editor-wrapper {
        margin-bottom: 0;
    }
    .editor-wrapper textarea {
        height: 463px;
    }
}
.btn-primary {
    background-color: #008080;
    border-color: #008080;
}
.btn-primary:hover {
    background-color: #086666;
    border-color: #086666;
}
ul.pagination {
    gap: 10px;
}
ul.pagination>li {
    font-size: 16px;
    display: inline-block;
    background: #9e9e9e;
}
ul.pagination>li.active {
    background: #008080 !important;
}
ul.pagination>li>a {
    color: #ffffff;
    display: block;
    padding: 3px 10px;
}