:root {
    --white: #ffffff;
    --black: #000000;
    --dark: #000000;
    --gray: #afafaf;
    --brown: #5f473f;
    --brown-light: #aa6c21;
}

/* Avenir Light */
@font-face {
    font-family: 'Avenir';
    src: url('../fonts/AvenirLTStd-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

/* Avenir Book (Regular) */
@font-face {
    font-family: 'Avenir';
    src: url('../fonts/AvenirLTStd-Book.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

/* Avenir Book (Medium) */
@font-face {
    font-family: 'Avenir';
    src: url('../fonts/AvenirLTStd-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}


html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}


body {
    font-size: 14px;
    font-family: 'Avenir', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--black);
    background-color: #f7f6f5;
    margin: 0;
    padding: 0;
    min-height: 100vh;

    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;

    overflow-x: hidden;
}

/* Keep sections transparent so body gradient shows */
section,
main,
header,
footer {
    background: transparent;
}


p {
    color: var(--black) !important;
}

a {
    color: var(--brown-light);
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: var(--black);
}

h1,
h2,
h3,
h4,
h5 {
    font-size: 14px;
    font-family: 'Avenir', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    color: var(--brown);
}


h1 {
    font-size: 50px;
    font-weight: 900;
}

h2 {
    font-size: 32px;
    font-weight: 700;
}

h3 {
    font-size: 27px;
    font-weight: 700;
}

h4 {
    font-size: 24px;
    font-weight: 600;
}

h5 {
    font-size: 18px;
    font-weight: 600;
}


::-moz-selection {
    background-color: var(--brown);
    color: var(--white);
}

::selection {
    background-color: var(--brown);
    color: var(--white);
}

body::-webkit-scrollbar {
    width: 4px;
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px var(--brown);
    box-shadow: inset 0 0 6px var(--brown);
}

body::-webkit-scrollbar-thumb {
    background-color: var(--brown);
    outline: 1px solid var(--brown);
}


.section {
    padding: 50px 0px;
}

.image-white {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(309deg) brightness(103%) contrast(103%);
    -webkit-filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(309deg) brightness(103%) contrast(103%);
}

.image-brown {
    filter: invert(23%) sepia(50%) saturate(322%) hue-rotate(330deg) brightness(96%) contrast(80%);
    -webkit-filter: invert(23%) sepia(50%) saturate(322%) hue-rotate(330deg) brightness(96%) contrast(80%);
}

.image-brown-light {
    filter: invert(47%) sepia(13%) saturate(2615%) hue-rotate(353deg) brightness(91%) contrast(83%);
    -webkit-filter: invert(47%) sepia(13%) saturate(2615%) hue-rotate(353deg) brightness(91%) contrast(83%);
}

.small {
    font-size: 12px;
}


.font-100 {
    font-weight: 100 !important;
}

.font-200 {
    font-weight: 200 !important;
}

.font-400 {
    font-weight: 400 !important;
}

.font-500 {
    font-weight: 500 !important;
}

.font-600 {
    font-weight: 600 !important;
}

.font-700 {
    font-weight: 700 !important;
}

.font-800 {
    font-weight: 800 !important;
}

.font-900 {
    font-weight: 900 !important;
}


.text-brown {
    color: var(--brown) !important;
}

.text-brown-light {
    color: var(--brown-light) !important;
}

.text-white {
    color: var(--white) !important;
}

.text-dark {
    color: var(--black) !important;
}

.text-gray {
    color: var(--gray) !important;
}

.border-radius-0 {
    border-radius: 0px !important;
    -webkit-border-radius: 0px !important;
    -moz-border-radius: 0px !important;
    -ms-border-radius: 0px !important;
    -o-border-radius: 0px !important;
}

.border-radius-3 {
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    overflow: hidden;
}

.border-radius-5 {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    overflow: hidden;
}

.border-radius-10 {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
}

.border-radius-15 {
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.border-radius-20 {
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    overflow: hidden;
}

.border-radius-50 {
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    overflow: hidden;
}

.form-border-red {
    border: 2px solid red !important;
}


.border-bottom-gray {
    border-bottom: 0.5px solid var(--gray) !important;
}

button:focus {
    outline: 0;
    box-shadow: none;
}

.btn {
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    position: relative;
    overflow: hidden !important;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    text-transform: uppercase;
}

.btn-brown {
    background-color: var(--brown) !important;
    color: var(--white) !important;
    font-weight: 600;
}

.btn-brown-light {
    background-color: var(--brown-light) !important;
    color: var(--white) !important;
    font-weight: 600;
}


/* Backgrounds Starts */
.bg-brown {
    background-color: var(--brown) !important;
}

.bg-brown-light {
    background-color: var(--brown-light) !important;
}

.bg-white {
    background-color: var(--white);
}

/* Backgrounds Ends */



/* Navbar Starts */
.desktop-navbar {
    padding: 10px 0px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.desktop-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-left,
.navbar-right {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 30px;
}

.navbar-logo {
    flex: 0 0 auto;
    text-align: center;
}

.navbar-right {
    justify-content: flex-end;
}

.navbar-left a,
.navbar-right a {
    color: var(--dark);
}

/* Navbar Ends */


/* Home Banner Starts */
.home-banner-wrapper {
    height: 95vh;
    position: relative;
}

.home-banner-wrapper::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #00000045;
}

.home-banner-wrapper .home-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    z-index: 400;
}

.home-banner-content span {
    color: var(--white);
}

.home-banner-title {
    color: var(--white);
    font-size: 55px;
    line-height: 1.3;
}

.heading-animation span {
    display: inline;
    padding-bottom: 0.2em;

    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 0% 1px;

    transition: background-size .5s ease;
}

.heading-animation:hover span {
    background-size: 100% 1px;
}

.home-banner-title:hover span {

    background-size: 100% 1px;

}

.home-banner-meta {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cs-meta-author {
    margin-right: 10px;
}

.cs-meta-date {
    color: var(--white);
}

.cs-meta-author-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
}

.cs-meta-author-inner:hover {
    color: var(--white);
}

.cs-author {
    margin-left: 5px;
    font-weight: 600;
}

.home-banner-author {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin-right: 8px;
    object-fit: cover;
    object-position: center;
}


.nav-thumb {
    height: 50px;
    width: 50px;
}

.home-slider-nav {
    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    z-index: 10;
    width: 100%;
    max-width: 1000px;
    /* adjust as needed */
}

.splide__track--nav>.splide__list>.splide__slide {
    border: 0px !important;
}

.banner-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-buttons h6 {
    color: var(--white);
    margin-bottom: 0px;
    padding-left: 10px;
}

.banner-buttons img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.home-slider-arrows {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

@media (min-width: 1366px) {
    .container {
        max-width: 1280px;
    }
}

/* Home Banner Ends */

/* Home Info Starts */
.info-image img {
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

/* Home Info Ends */


/* Home Blog Starts */
.blog-card1 {
    position: relative;
    margin-bottom: 48px;
    overflow: hidden;
    height: 450px;
}

.blog-card1::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #0000004f;
}

.blog-card1-content {
    position: absolute;
    bottom: 30px;
    left: 0px;
    width: 100%;
    height: auto;
}

.blog-category {
    display: inline;
    color: white !important;
    background-color: var(--brown);
    padding: 8px 10px;
    font-size: 12px;
}

.blog-card1-content h2 {
    margin-top: 10px;
    color: white;
}

.blog-meta {
    display: flex;
    justify-content: start;
    align-items: center;
}


.blog-card2 {
    position: relative;
}

.blog-card2 .blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
}

.blog-card2-content h3 {
    color: var(--brown);
}

.blog-card2-content h3 a {
    color: var(--brown);
}


.blog-card3 {
    position: relative;
}

.blog-card3 .blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
}

.blog-card3 img {
    height: 243px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-card2 a img {
    height: 243px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-card3-content h3 {
    color: var(--brown);
}

.blog-row {
    margin-bottom: 30px;
    border-bottom: 0.5px solid var(--gray);
}


.blog-sidebar {
    padding: 0px;
}

.sidebar-item {
    padding: 40px;
}

.sidebar-author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    margin: 0 auto;
    margin-bottom: 30px;
}

.social-icons {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.social-icons li {
    margin-right: 8px;
    margin-bottom: 0px;
}

.sidebar-categories {
    padding-left: 0px;
}

.sidebar-categories-list li,
.sidebar-categories__list li {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    padding: 1.25rem 0;
    color: var(--black);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    border-top: 1px solid var(--gray);
    margin-bottom: 0px;
    font-weight: 600;
}

.sidebar-categories-list li a {
    margin-right: auto;
}

.footer-links {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    list-style-type: none;
    margin: 0;
    padding: 0
}

.footer-links li {
    margin-right: 15px;
    margin-bottom: 0px
}

.footer-box {
    display: flex;
    align-items: center;
}


.footer-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-logo {
    margin-right: 25px;
}

/* Home Blog Ends */


/* Mobile Navbar Starts */
.mobile-navbar {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 700;
}

.mobile-navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-toggle {
    background: none;
    border: 0;
    font-size: 30px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    padding: 20px;
}

.mobile-menu.show {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 8px;
    border-top: 0.5px solid #afafaf40;
}



/* Mobile Navbar Ends */

.lead {
    font-size: 22px;
}



/* Media Quries Starts */
@media (max-width: 1399.98px) {}

@media (max-width: 1199.98px) {}

@media (max-width: 991.98px) {}

@media (max-width: 768px) {}

@media (max-width: 575.98px) {
    .home-banner-title {
        font-size: 23px;
    }

    .home-slider-nav {
        padding: 30px;
    }

    .home-banner-wrapper {
        height: 75vh;
    }

    .info-image img {
        width: 100%;
        height: 380px;
        object-fit: cover;
        object-position: center;
        margin-bottom: 10px;
    }

    .info-content {
        margin-bottom: 20px;
    }

    .blog-card1 {
        height: 300px;
    }

    .blog-card1 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    .blog-card1 .cs-photo {
        width: 34px;
        height: 34px;
    }

    .blog-card1 .blog-card1-content .blog-meta {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .blog-card1 .cs-meta-date {
        text-align: center;
    }

    h2 {
        font-size: 25px;
    }

    h3 {
        font-size: 20px;
    }

    .blog-sidebar {
        margin-top: 30px;
    }

    .footer-logo {
        margin-right: 9px;
        height: 50px;
    }

    .btn {
        font-size: 12px;
    }

    .lead {
        font-size: 18px;
    }
}



/* Media Quries Ends */