@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");

/* ====== COMMON ========= */

:root {
    --color-1: #fff;
    --color-2: #801c7d;
    --secondary-color: #000;
    --secondary: #34495e;
}

html {
    font-size: 12px;
}

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
    /* -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; */
}

body {
    font-family: "Nunito Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "wdth" 100, "YTLC" 500;
    font-weight: 600;
    font-size: 1.5rem;
    color: #000;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

button {
    background: none;
    box-shadow: none;
    border: 0;
    outline: 0;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

section {
    padding-top: 6rem;
    padding-bottom: 4rem;
}

.two-column {
    margin: auto;
    max-width: 100%;
}

.ml-1 {
    margin-left: 4px;
}

.ml-2 {
    margin-left: 8px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    color: #000;
}

@media (min-width: 576px) {
    .two-column,
    .container {
        max-width: 540px;
        margin: 0 auto;
    }
}

@media (min-width: 768px) {
    .two-column,
    .container {
        max-width: 720px;
        margin: 0 auto;
    }
}

@media (min-width: 992px) {
    .two-column,
    .container {
        max-width: 960px;
        margin: 0 auto;
    }
}

@media (min-width: 1200px) {
    .two-column,
    .container {
        max-width: 1140px;
        margin: 0 auto;
    }
}

.d-flex {
    display: flex;
}

.d-none {
    display: none;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.p-4 {
    padding: 1.4rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mr-1 {
    margin-right: 1rem;
}

.mr-2 {
    margin-right: 2rem;
}

.btn {
    padding: 1rem 2.2rem;
    border-radius: 999px;
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
}
form .btn {
    padding: 1.4rem 3.2rem;
}

.btn-primary {
    background: var(--color-2);
    color: #fff;
    transition: 0.2s all ease;
}

.btn-dark {
    background: #000;
    color: #fff;
    transition: 0.2s all ease;
}

.btn-secondary {
    background: #000;
    color: #fff;
    transition: 0.2s all ease;
}

.btn-block {
    width: 100%;
}

.shimmer {
    display: inline-block;
    position: relative;
    color: #fff;
    padding: 1rem 2rem;
    font-weight: 400;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
}

.shimmer::after {
    content: "";
    position: absolute;
    top: 100%;
    left: -100%;
    width: 100%;
    height: 100%;
    transform: rotate(45deg) scale(2);
    background: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.shimmer:hover::after {
    top: 0;
    left: 140%;
}

/* ======= SITE TOP =========== */
.site-top {
    padding: 1rem;
    background: #fff;
    color: #000;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.site-top .container {
    display: flex;
    padding: 0 0.8rem;
    justify-content: space-between;
}

.site-top .info-divider {
    margin: 0 1.4rem;
}
.site-top a {
    color: #000;
}
.site-top .social {
    cursor: pointer;
}

.site-top .info-detail {
    margin-left: 4px;
}

@media (max-width: 991px) {
    .site-top {
        display: none;
    }
}

/* ======== TOP NAV ======== */
.top-nav {
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important;
    transition: all 0.2s ease-in-out;
}

.top-nav > .container {
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
}

.brand {
    height: 6rem;
    color: #000;
    font-size: 2rem;
    padding: 1rem 0;
}

.brand span {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 4px;
    width: 100%;
    height: 100%;
}

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

.nav-menu {
    display: flex;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    height: 100%;
    font-weight: 700;
    color: #000;
    padding: 0.4rem 1.2rem;
}

.nav-item .dropdown {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 20rem;
    border-radius: 1px;
    transform: translateY(10px);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.dropdown-link {
    color: #000;
    font-size: 1.3rem;
    padding: 1rem 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-item:hover > .dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateY(-10px);
}

.dropdown-item {
    position: relative;
}

.dropdown-item > .dropdown {
    visibility: hidden;
    opacity: 0;
    top: 0;
    left: 100%;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.dropdown-item:hover > .dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

.dropdown-toggler {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
}

.navbar-toggler-wrapper {
    display: none;
    position: fixed;
    top: 18px;
    right: 10px;
    justify-content: flex-end;
    margin-bottom: 2.4rem;
    z-index: 1000;
}

.navbar-toggler {
    color: #000;
    font-weight: 400;
    font-size: 2rem;
    padding: 0.4rem 1rem;
    cursor: pointer;
}

.navbar-toggler i {
    pointer-events: none;
}

@media (max-width: 991px) {
    .brand img {
        width: 22rem;
        height: auto;
    }
}

/* =========== STICKY NAV ============ */
.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
}

.shadow {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.shadow-lg {
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
}

/* ======== TOP MENU RESPONSIVE ======== */
@media (max-width: 991px) {
    .sidenav-toggle {
        display: none;
    }
}

.sidenav-toggle i {
    pointer-events: none;
}

.side-nav {
    display: block;
    padding: 3rem 1rem 2rem 1rem;
    position: fixed;
    margin-right: 0;
    height: 100vh;
    background: var(--color-1);
    color: #000;
    right: 0;
    top: 0;
    width: 20rem;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.sidenav-close {
    display: block;
    width: 2rem;
    margin-left: auto;
    margin-right: 1rem;
    color: #000;
    cursor: pointer;
}

.side-nav.active {
    box-shadow: -4px 0 4px rgba(0, 0, 0, 0.1);
    transform: translateX(0);
}

.side-nav .nav-item:hover > .dropdown {
    transform: none;
}

.side-nav .nav-link,
.side-nav .dropdown-link {
    align-items: center;
    padding: 1.2rem 1rem;
    justify-content: space-between;
    color: #000;
}

.side-nav .nav-item .dropdown {
    display: none;
    visibility: visible;
    opacity: 1;
    position: static;
    transform: none;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: none;
    transition: none;
}

.side-nav .dropdown-item > .dropdown {
    display: none;
    background: rgba(0, 0, 0, 0.1);
    transition: none;
}

.side-nav span {
    border: 1px solid #fff;
    width: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 24px;
    border-radius: 50%;
}

.side-nav .nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.side-nav .dropdown-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 18rem;
}

.side-nav .nav-item:last-child,
.side-nav .dropdown-item:last-child {
    border-bottom: none;
}

@media (max-width: 991px) {
    .navbar-toggler-wrapper {
        display: flex;
    }

    .navbar-toggler {
        display: inline;
    }

    .nav-menu {
        display: block;
        padding: 6rem 1rem 2rem 1rem;
        position: fixed;
        margin-right: 0;
        height: 100vh;
        background: var(--color-1);
        color: #000;
        right: 0;
        top: 0;
        width: 20rem;
        transform: translateX(100%);
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        box-shadow: -4px 0 4px rgba(0, 0, 0, 0.1);
        transform: translateX(0);
    }

    .nav-item:hover > .dropdown {
        transform: none;
    }

    .nav-link,
    .dropdown-link {
        align-items: center;
        padding: 1.2rem 1rem;
        justify-content: space-between;
        color: #000;
    }

    .nav-item .dropdown {
        display: none;
        visibility: visible;
        opacity: 1;
        position: static;
        transform: none;
        background: rgba(0, 0, 0, 0.2);
        box-shadow: none;
        transition: none;
    }

    .dropdown-item > .dropdown {
        display: none;
        background: rgba(0, 0, 0, 0.1);
        transition: none;
    }

    .nav-menu span {
        border: 1px solid #fff;
        width: 24px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 24px;
        border-radius: 50%;
    }

    .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dropdown-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        max-width: 18rem;
    }

    .nav-item:last-child,
    .dropdown-item:last-child {
        border-bottom: none;
    }
    .brand {
        height: 7rem;
        /* margin-left: 2.3rem; */
        color: #000;
        font-size: 2rem;
        line-height: 2.8rem;
        padding: 1rem;
    }
}

/* ========= BANNER ============ */
.banner {
    width: 100%;
    background: var(--color-1);
    display: flex;
    /* grid-template-columns: 1.2fr 1fr; */
    /* grid-gap: 2rem; */
    padding: 12rem 0 3rem;
    justify-content: space-between;
}

.banner .container {
    display: flex;
}

@media (max-width: 991px) {
    .banner .container {
        flex-direction: column;
    }
    .banner .banner-left {
        order: 2;
    }
    .banner .banner-detail {
        line-height: initial;
        font-size: 2.6rem;
        text-align: center;
    }
    .banner .banner-right {
        order: 1;
        margin-bottom: 2rem;
    }
    .banner-right img {
        width: 70%;
    }
}

.banner-detail {
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.4;
    color: #000;
    text-align: center;
    margin-bottom: 1rem;
}

.banner-detail span {
    font-weight: 500;
}

.card {
    width: 100%;
    background-color: #fff;
    border-radius: 2px;
    padding: 4rem 2rem;
    padding-bottom: 2rem;
}

.banner-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    padding: 0 10rem;
}

.banner-right img {
    transform: translateY(-1rem);
    animation: bounce 4s ease-in-out infinite;
}

@keyframes bounce {
    0% {
        transform: translateY(-1rem);
    }
    50% {
        transform: translateY(0rem);
    }
    100% {
        transform: translateY(-1rem);
    }
}

.card-header {
    font-size: 2.4rem;
    font-weight: 500;
    color: #000;
    text-align: center;
}

.form-control {
    display: block;
    width: 100%;
    padding: 1.4rem;
    border: 1px solid #000;
    border-radius: 4px;
    outline: 0;
    box-shadow: none;
    background-color: #fff;
    resize: none;
}

.form-group {
    margin: 1.4rem 0;
}

@media (max-width: 991px) {
    .banner {
        grid-template-columns: 1fr;
        grid-gap: 3rem;
        padding: 10rem 2rem 2rem 2rem;
        text-align: center;
    }

    .banner-detail {
        font-size: 2.2rem;
    }

    .banner-left {
        margin-top: 0;
        padding: 0;
    }
}

/* ========== SERVICES ============ */

.services {
    padding-top: 10rem;
    padding-bottom: 6rem;
}

.services .card-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.card-wrapper .card {
    min-height: 20rem;
    width: calc(25% - 16px);
    background: #f5f8fa;
    overflow: hidden;
    word-wrap: break-word;
    margin: 6px;
    border-radius: 1.8rem;
    text-align: center;
}

@media (max-width: 991px) {
    .card-wrapper .card {
        width: 80%;
        margin: 1rem auto;
    }
}

.card-body h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.card-body i {
    font-size: 6rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.card-body img {
    width: 40px;
    height: 40px;
    fill: red;
}

@media (max-width: 991px) {
    .services {
        padding-top: 6rem;
    }
    .services .card-wrapper {
        flex-direction: column;
    }
}

/* ========= LATEST POSTS ========== */

.latest-post-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background: #dfe6e9;
}

.section-title {
    margin-bottom: 4rem;
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: #000;
    position: relative;
}

.post-img {
    height: 22rem;
    object-fit: cover;
}

.post-detail {
    padding: 0.6rem;
}

.post-title {
    font-weight: 600;
    font-size: 1.68rem;
    line-height: 2.4rem;
    margin-bottom: 1.2rem;
}

.post-title a {
    color: #000;
}

.post-date {
    font-size: 1.3rem;
}

.post-date span {
    font-weight: 500;
    margin-left: 0.6rem;
}

.owl-nav {
    display: inline-block;
    font-size: 3rem;
    color: #fff;
}

button.owl-prev,
button.owl-next {
    position: absolute;
    top: -5.4rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #34495e !important;
    transition: all 0.2s ease;
}

button.owl-prev:hover,
button.owl-next:hover {
    background: var(--secondary-color) !important;
}

button.owl-prev {
    right: 4rem;
}

button.owl-next {
    right: 0;
}

button.owl-next span {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-40%, -60%);
}

button.owl-prev span {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-54%, -60%);
}

@media (max-width: 991px) {
    .latest-post-section {
        padding-top: 8rem;
        padding-bottom: 4rem;
    }

    .owl-carousel {
        margin-top: 8rem;
    }

    button.owl-prev {
        transform: translateY(1.4rem);
        right: 5rem;
    }

    button.owl-next {
        transform: translateY(1.4rem);
        right: 1rem;
    }
}

.post-slide {
    min-height: 35rem;
    border-radius: 1.4rem;
    background: #fff;
}

.post-slide img {
    width: 100%;
    border-top-left-radius: 1.4rem;
    border-top-right-radius: 1.4rem;
}

/* ======== Featured Slide ========= */

.featured-slide {
    height: 24rem;
}
.featured-wrapper {
    height: 100%;
    display: block;
    width: 100%;
    position: relative;
}

.featured-img {
    width: 100%;
    height: 100%;
}

.featured-detail {
    position: absolute;
    top: 14%;
    /* transform: translateY(-30%); */
    left: 0;
    text-align: center;
    width: 86%;
    margin: 0 auto;
    right: 0;
}

.featured-title a {
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 2.6rem !important;
    line-height: 4rem !important;
}

.featured-category span {
    color: #fff;
    font-size: 1.8rem;
    display: inline-block;
    margin-bottom: 0.6rem;
}

.featured-btn a {
    margin-top: 1.2rem;
    display: inline-block;
    color: #fff;
}

/* ======== CATEGORY TABS ========== */

.category-section {
    background-color: rgba(0, 0, 0, 0.1);
}

.category-section .section-title {
    margin-bottom: 4.6rem;
}

.category-tabs {
    max-width: 90rem;
    margin: 0 auto;
    overflow-x: auto;
    padding-bottom: 4px;
    white-space: nowrap;
}
.category-tabs::-webkit-scrollbar {
    height: 0;
}
/* .category-tabs::-webkit-scrollbar-thumb {
    background-color: #bcbcbc;
    border-radius: 14px;
}
.category-tabs::-webkit-scrollbar-track {
    background-color: #dcdcdc;
} */

.tab {
    display: inline-block;
    position: relative;
    /* margin: 1rem; */
    color: #f3f3f3;
    background: #34495e;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-weight: 400;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
}

.tab.active,
.tab:hover {
    background: var(--secondary-color);
    color: #fff;
}

.posts-per-category {
    margin-top: 8.4rem;
}

.load-more {
    height: 30rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #555;
    background: rgba(255, 255, 255, 0.7);
    border: 1px dashed #cecece;
    cursor: pointer;
}

.load-more svg {
    fill: #6e6e6e;
    margin-bottom: 0.8rem;
}

.load-more span {
    font-size: 1.4rem;
    font-weight: 200;
}

.load-more.loading svg {
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

.category-section .container {
    position: relative;
}
.category-section .arrow-left,
.category-section .arrow-right {
    cursor: pointer;
    color: var(--secondary);
    position: absolute;
    top: 10rem;
    font-size: 2rem;
}

.category-section .arrow-left {
    left: -4px;
}
.category-section .arrow-right {
    right: -4px;
}

@media (max-width: 991px) {
    .category-tabs {
        max-width: 22rem;
        margin-bottom: 8rem;
    }
    .category-section .arrow-left,
    .category-section .arrow-right {
        top: 15rem;
    }

    .category-section .arrow-left {
        left: 8px;
    }
    .category-section .arrow-right {
        right: 8px;
    }
    .section-title {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .posts-per-category {
        margin-top: 1.8rem;
    }
}

/* ======= CTA SECTION ========== */
.cta-section {
    background-attachment: fixed;
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
}

.cta-section .container {
    display: flex;
    /* grid-template-columns: 6rem 3fr 1fr; */
    align-items: center;
    justify-content: space-between;
}

.cta-heading {
    color: #fff;
    font-size: 4.3rem;
    line-height: 6.8rem;
    font-size: 2.4rem;
    font-weight: 200;
    /* grid-column: 2 / 3; */
}

.cta-heading span {
    font-weight: 500;
}

.cta-btn {
    /* grid-column: 3 / -1; */
    /* text-align: right; */
    font-size: 1.4rem;
}

.cta-btn .fas {
    margin-left: 1.2rem;
}

@media (max-width: 991px) {
    .cta-section {
        padding: 2.4rem 1rem;
        background-size: cover;
        background-attachment: unset;
    }

    .cta-section .container {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .cta-section .cta-heading {
        font-size: 2rem;
        line-height: 3rem;
        text-align: center;
    }

    .cta-section .cta-btn {
        text-align: center;
        margin-top: 2rem;
    }
}

.modal-overlay {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    transition: all 0.3s ease;
}

.modal-box {
    position: absolute;
    top: -100%;
    left: 50%;
    width: 40%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.modal-box span {
    position: absolute;
    top: 0;
    right: 20px;
    font-size: 4rem;
    cursor: pointer;
}

.modal-overlay.active {
    visibility: visible;
    opacity: 1;
}

.modal-overlay.active .modal-box {
    top: 50%;
}

@media (max-width: 991px) {
    .modal-box {
        width: 90%;
    }
}

/* ======= FOOTER ======== */
footer {
    padding-top: 4rem;
    background: #f6f6f6;
    color: #000;
}

footer .container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin: 0 auto;
    align-items: start;
    grid-gap: 4rem;
    text-align: center;
}

footer .form-control {
    background: transparent;
    border: 1px solid #000;
    color: #000;
}

footer .btn {
    font-size: 1.3rem;
    margin-top: 0.6rem;
    padding: 1rem 1.2rem;
}

footer .box-title,
footer .box-title a {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    display: block;
    font-weight: 800;
}

.box .box-text {
    color: #000;
    line-height: 2rem;
    font-size: 1.3rem;
}

.box a {
    color: #000;
    font-size: 1.2rem;
    font-weight: 700;
}

.list-item {
    padding: 8px 0;
    font-size: 1.3rem;
}

.list-item:last-child {
    margin-bottom: 0;
}

.list-item a {
    display: block;
    color: #000;
}
.list-item:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.copyright {
    background: rgb(243, 247, 254);
    margin-top: 4rem;
    border-top: 3px solid var(--color-2);
    padding: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
}

.copyright a {
    color: #fff;
}

@media (max-width: 991px) {
    footer .container {
        grid-template-columns: 1fr;
    }

    .box {
        padding: 1.6rem;
    }
}

.toast-alert-box {
    display: none;
    position: fixed;
    z-index: 100000;
    top: 7.2rem;
    color: #fff;
    min-width: 20%;
    max-width: 40%;
    right: 2rem;
    font-size: 1.4rem;
    text-align: center;
    padding: 1rem;
    border-radius: 5rem;
    background: #2c3e50;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    opacity: 0.8;
}

@media (max-width: 991px) {
    .toast-alert-box {
        right: 2px;
        width: 80%;
    }
}

.loader {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 20000;
    transition: all 0.3s ease;
}

.loader .loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
}

.loader .loading-icon svg {
    fill: #aaa;
    width: 4rem;
    height: 4rem;
    animation: rotate 2s linear infinite;
}

.loader.active {
    visibility: visible;
    opacity: 1;
}

.loader .loading-icon span {
    font-size: 1.6rem;
    color: #aaa;
    margin-top: 1.4rem;
    display: block;
}

/* ========= SINGLE POST PAGE ============== */
.breadcumb-menu {
    padding: 2rem 1.4rem 4px;
}

.breadcumb-menu > i {
    margin-right: 0.6rem;
    color: var(--secondary-color);
}

.breadcrumb {
    display: inline-block;
    font-weight: 600;
    font-size: 1.4rem;
}

.breadcrumb-item {
    display: inline-block;
}

.breadcrumb-item::after {
    content: "/";
    margin: 0 8px;
    color: var(--secondary-color);
    font-weight: 600;
}

.breadcrumb-item:last-child::after {
    content: "";
    margin: 0;
}

.breadcrumb-item:last-child a {
    color: #888;
}

.breadcrumb-item a {
    color: var(--secondary-color);
}

.two-column {
    display: flex;
    /* background: #f6f6f6; */
    justify-content: space-between;
    padding: 12rem 0.8rem 1rem 0.8rem;
}

@media (max-width: 991px) {
    .two-column {
        flex-direction: column;
        padding: 8rem 2rem;
    }
}
.single-post {
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

.featured_img {
    width: 100%;
    max-height: 44rem;
    margin-bottom: 1rem;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    object-fit: cover;
}

.post-datetime > i {
    margin-right: 0.8rem;
}

.post-datetime > span {
    color: #888;
    font-weight: 600;
}

.post-author {
    text-transform: capitalize;
    color: var(--secondary-color);
    font-weight: 600;
}

.content {
    padding: 8px 3rem 2rem;
}

@media (max-width: 991px) {
    .content {
        padding: 1rem;
    }
}

aside {
    flex-basis: 28%;
    margin-top: 1rem;
}

aside .widget {
    box-shadow: -1px 0 3px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 2rem;
    background: #fff;
    margin-bottom: 2rem;
}

.category-box {
    text-align: center;
}

.category-box .category-btn {
    display: inline-block;
    color: #f3f3f3;
    font-size: 1.3rem;
    margin-bottom: 8px;
    background: #34495e;
    border-radius: 1.6rem;
    padding: 0.8rem;
    transition: all 0.3s ease;
}

.category-btn:hover {
    background: var(--secondary-color);
}

aside .widget-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
    color: #424242;
}

.widget-nav {
    margin-bottom: 1rem;
}

.marquee-slide {
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateY(47%);
    }
    100% {
        transform: translateY(-100%);
    }
}

.marquee-box {
    overflow: hidden;
    max-height: 20rem;
    box-shadow: 0px -4x 4px rgba(255, 255, 255, 0.8);
}

.widget-nav-link {
    display: block;
    padding: 1rem;
    border-radius: 3px;
    text-align: center;
    color: #fff;
    font-weight: 500;
    background: var(--color-2);
}

.widget-post img {
    border-radius: 5px;
}

.widget-post {
    margin-bottom: 2rem;
}

.widget-post .title {
    font-size: 1.4rem;
    text-align: center;
    font-weight: 600;
    padding: 2px;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

.single-post-title {
    font-size: 3.2rem;
    margin-bottom: 2rem;
    font-weight: 800;
}

.a-box {
    height: 34rem;
    text-align: center;
    overflow: hidden;
}

.a-box img {
    height: 100%;
}

/* .post-body {
    margin-top: 2.6rem;
    word-wrap: break-word;
    width: 100%;
}

.post-body h1, .post-body h2, .post-body h3, .post-body h4, .post-body h5, .post-body h6 {
    margin: 2rem 0;
}

.post-body h1{
    font-size: 3rem;
    font-weight: 600;
}

.post-body h2{
    font-size: 2.8rem;
    font-weight: 600;
}

.post-body h3{
    font-size: 2.6rem;
    font-weight: 600;
}

.post-body h4{
    font-size: 2.2rem;
    font-weight: 600;
}

.post-body h5{
    font-size: 2rem;
    font-weight: 600;
}
 
.post-body h6{
    font-size: 1.6rem;
    font-weight: 600;
}

.post-body p, .post-body ul li {
    margin: 1.2rem 0;
    line-height: 3rem;
    font-size: 1.5rem;
}

.post-body a{
    color: var(--secondary-color);
    font-weight: 500;
}

.post-body ul {
    list-style: disc;
    margin-left: 1rem;
}

.post-body table {
    width: 100%;
    text-align: center;
}

.post-body td {
padding: 2px;
}

.post-body ol {
    list-style: decimal;
    margin-left: 1rem;
} */

.post-body *:not(form *) {
    all: revert;
}

.post-body iframe {
    width: 100% !important;
    height: 500px !important;
}

.post-body form {
    all: inherit;
}

.post-body {
    margin-top: 2.6rem;
    overflow-wrap: anywhere;
    width: 100%;
    line-height: 3.5rem;
}

.post-body a {
    text-decoration: none;
    color: var(--secondary-color);
}

.post-body table {
    width: 100%;
    text-align: center;
}

.post-body td {
    padding: 2px;
}

.search-box {
    height: 4.3rem;
    width: 100%;
    position: relative;
}

.search-box input {
    box-shadow: none;
    outline: none;
    border: 0;
    border-radius: 0;
}

.search-box input {
    width: 100%;
    height: 100%;
    padding: 1.4rem 4.8rem 1.4rem 1rem;
    color: #6b6b6b;
    border: 1px solid #000;
    display: block;
}

.search-box .search-btn {
    position: absolute;
    top: 0;
    /* transform: translateY(-50%); */
    bottom: 0;
    right: 0;
    display: block;
    font-size: 1.7rem;
    z-index: 1000;
    cursor: pointer;
    background: var(--color-2);
    height: 100%;
    width: 4.5rem;
    color: #fff;
}

/* ========== Pagination ============= */
.pagination-wrapper {
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
}

.page-item {
    margin: 2px 4px;
    height: 3.4rem;
    width: 3.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-link {
    color: #fff;
    background: #888;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.page-item.active .page-link {
    color: #fff;
    background-color: var(--secondary-color);
}

.page-item.disabled .page-link {
    color: #fff;
    background: #aaaaaa;
    border: 0;
}

@media (max-width: 991px) {
    li.page-item {
        display: none;
    }
    .page-item:first-child,
    .page-item:nth-child(2),
    .page-item:last-child,
    .page-item:nth-last-child(2),
    .page-item.string,
    .page-item.active,
    .page-item.disabled {
        display: flex;
    }
}

.arrow-icon {
    font-size: 3rem;
    display: block;
    transform: translateY(-3px);
}

.social-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 6px;
}

.social-nav li {
    margin: 2px 0.6rem;
}

.social-nav li a {
    font-size: 2.6rem;
    display: block;
}

.preloader {
    position: fixed;
    visibility: visible;
    opacity: 1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 30000;
    background: var(--color-1);
}

.preloader.hide {
    visibility: hidden;
    opacity: 0;
}

.preloader .icon {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.3);
    animation: pulse 2s infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
    }
    70% {
        box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.error {
    max-width: 60rem;
    width: 100%;
    display: block;
    margin: auto;
    margin-top: -12rem;
}

#converter {
    font-size: 1.6rem;
    line-height: 3rem;
}

iframe {
    width: 100%;
    border: 0;
    max-height: 800px;
}

@media (max-width: 991px) {
    iframe {
        width: 100%;
        max-height: 400px;
    }
}

.rgba-convert {
    display: flex;
    align-items: center;
}

.input-wrapper {
    flex-basis: 70%;
}

.color-group {
    flex-basis: 30%;
}

.input-group {
    display: flex;
    align-items: center;
    margin: 2rem;
}

input[type="range"] {
    background: #f1f1f1;
    border-radius: 8px;
    flex-basis: 70%;
    height: 5px;
    outline: none;
    -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    cursor: pointer;
    border-radius: 50%;
}

#r::-webkit-slider-thumb {
    background: red;
}

#g::-webkit-slider-thumb {
    background: green;
}

#b::-webkit-slider-thumb {
    background: blue;
}

.input-num {
    flex-basis: 20%;
    margin-left: 2rem;
    height: 26px;
    text-align: center;
    border: 0;
    border-radius: 4px;
    background-color: #f1f1f1;
}

.input-num:focus {
    border: 0;
    outline: none;
}

/* Chrome, Safari, Edge, Opera */
.input-num::-webkit-outer-spin-button,
.input-num::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.show-color {
    height: 80px;
    width: 80px;
    border-radius: 4px;
    cursor: pointer;
    border: 1px dashed #d6d6d6;
}

.hex-value {
    text-align: center;
    width: 10rem;
    color: #888;
    font-size: 1.4rem;
    border-radius: 1rem;
    padding: 0.8rem;
    background: #f1f1f1;
}

.copy-code {
    background: var(--secondary-color);
}

.color-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.tool-details h3 {
    font-size: 2.6rem;
    line-height: 3rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.tool-details p {
    font-size: 1.6rem;
    line-height: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.tool-details img {
    margin-bottom: 2rem;
}

.more-section {
    padding: 10rem 0;
}

.more-section .title {
    font-size: 2.2rem;
    font-weight: 600;
}

.more-section .divider {
    margin: 2rem 0;
    height: 1px;
    background: #d8d8d8;
}

.more-box__wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.more-box {
    display: flex;
    flex-basis: 25%;
    padding: 10px;
    justify-content: space-between;
}

.more-box__title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-top: 1rem;
}

.more-box__desc {
    font-size: 1.2rem;
}

.more-box__image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
}

@media (max-width: 991px) {
    .more-box__wrapper {
        flex-direction: column;
    }
}

figure img {
    width: 100% !important;
}

form .btn-primary {
    background: var(--color-2);
    color: #fff;
}

.featured_articles-2 {
    background: var(--secondary-color);
    color: #fff;
    line-height: 42px;
}

.featured_articles-2 .section-title {
    margin-bottom: 2rem;
}

.featured_articles-2 h4 {
    font-weight: 600;
    margin: 16px 0;
    color: #fff;
}

.featured_articles-2 a {
    color: #000 !important;
    font-weight: 600;
}

.featured_articles-2 .section-title h3,
.featured_articles-2 .section-title h2 {
    color: #fff !important;
    font-size: 4.2rem;
}

.featured_articles-2 ul {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(3, 1fr);
}

.featured_articles-2 li {
    background: #fff;
    color: #4c4c4c;
    font-size: 15px;
    padding: 2px 15px;
    font-weight: 600;
    border-radius: 6px;
}
@media (max-width: 991px) {
    .featured_articles-2 ul {
        grid-template-columns: 1fr;
    }
    .featured_articles-2 .container {
        padding: 0 16px;
    }
}

.column-container {
    display: flex;
    padding: 2rem;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 3.2rem;
    margin-bottom: 10rem !important;
}
.img-container {
    width: 35%;
}

.img-container img {
    width: 100% !important;
    height: 30rem !important;
    object-fit: cover;
}

.content {
    flex-basis: 60%;
}
@media (max-width: 991px) {
    .column-container {
        flex-direction: column;
    }
    .single-post-title {
        font-size: 2.4rem;
    }
    .content {
        margin-bottom: 2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.4);
        padding-bottom: 2rem;
    }
    .img-container {
        width: 35%;
    }

    .img-container img {
        width: 100% !important;
        height: 30rem !important;
        object-fit: cover;
    }

    .content {
        flex-basis: 60%;
    }
}

.post-body table, .post-body tr, .post-body td, .post-body th {
    border: 1px solid #000;
    border-collapse: collapse;
}