/*
--------------------------------------------------------------
# Gable Themes - Theme Styles
--------------------------------------------------------------
*/

/*
--------------------------------------------------------------
## Typography
--------------------------------------------------------------
*/
html {
    margin-top: 0 !important;
}

body {
    font-family: 'GAble', sans-serif !important;
    line-height: 1.6;
    font-size: 1rem;
    color: #444;
    background-color: #fefefe;
    margin: 0;
    padding: 0;
}

p {
    margin: 0 0 1.5rem 0;
    font-family: 'GAble', sans-serif !important;
}

div, span {
    font-family: 'GAble', sans-serif !important;
}

a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'GAble', sans-serif !important;
    cursor: pointer;
}

a:hover, a:focus {
    color: rgb(242 144 10/1);
    text-decoration: none;
}

/*
--------------------------------------------------------------
## Layout
--------------------------------------------------------------
*/
#wpadminbar + #page {
    #masthead {
        padding-top: 48px;
        .container {
            .col-left {
                #site-navigation {
                    #mega-menu-overlay {
                        top: 112px;
                    }
                }
            }
        }
    }
    #primary {
        .page {
            .entry-content {
                .wpb-content-wrapper {
                    .wpb_row.vc_row-fluid:has(.section-level-navigation-bar) {
                        top: 114px;
                    }
                }
            }
        }
    }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.site.home {
    main#primary {
        margin-top: -84px;
    }
}

.site-main {
    padding: 2rem 0;
}

.content-area {
    width: 100%;
}

@media (min-width: 768px) {
    .has-sidebar .content-area {
        width: 70%;
        float: left;
        padding-right: 2rem;
    }

    .widget-area {
        width: 30%;
        float: right;
    }

    .content-area::after,
    .site-main::after {
        content: "";
        display: table;
        clear: both;
    }
}

/*
--------------------------------------------------------------
## Header
--------------------------------------------------------------
*/
.site-header {
    background: #000;
    padding: 1rem 0;
    position: sticky;
    z-index: 1000;
    top: 0;
}

#masthead.home {
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.5s ease, border-bottom 0.5s ease;
}

#masthead.home.scrolled {
    background: #000;
    border-bottom: 1px solid #000;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.site-header .container .col-left {
    display: flex;
    @media (max-width: 1024px) {
        flex-direction: row-reverse;
    }
}

.site-header .container .col-right {
    display: flex;

    @media (max-width: 1024px) {
        .translation-btn,
        .contactus-btn {
            display: none;
        }
    }
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-title {
    font-size: 1.5rem;
    margin: 0;
}

.site-title a {
    color: #fff;
    text-decoration: none;
}

.site-description {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    margin-left: 1rem;
}

.custom-logo {
    max-height: 50px;
    width: auto;
    margin-right: 1rem;
}

/*
--------------------------------------------------------------
## Navigation
--------------------------------------------------------------
*/
.main-navigation {
    display: flex;
    align-items: center;
}

.menu-toggle {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 4px;
    display: none;
}

.menu-wrapper ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.menu-wrapper li {
    margin-right: 2rem;
}

.menu-wrapper a {
    color: #333;
    text-decoration: none;
    padding: 0.5rem 0;
    display: block;
    transition: color 0.3s ease;
}

.menu-wrapper a:hover {
    color: #0073aa;
}

@media (max-width: 1024px) {
    .menu-toggle {
        display: flex;
        align-items: center;
    }

    .menu-wrapper {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid #eee;
        padding: 1rem 0;
    }

    .menu-wrapper ul {
        flex-direction: column;
        padding: 0 20px;
    }

    .menu-wrapper li {
        margin-right: 0;
        border-bottom: 1px solid #eee;
    }

    .site-header .container {
        position: relative;
    }
}

/*
--------------------------------------------------------------
## Posts & Pages
--------------------------------------------------------------
*/
article {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
}

article:last-child {
    border-bottom: none;
}

.entry-header {
    margin-bottom: 0.5rem;
}

.entry-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.entry-title a {
    color: #333;
    text-decoration: none;
}

.entry-title a:hover {
    color: #0073aa;
}

.entry-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.entry-meta span {
    margin-right: 0.5rem;
}

.post-thumbnail {
    margin-bottom: 1.5rem;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.entry-content {
    line-height: 1.7;
}

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

.read-more {
    display: inline-block;
    background: #0073aa;
    color: #fff !important;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.read-more:hover {
    background: #005177;
}

/*
--------------------------------------------------------------
## Sidebar & Widgets
--------------------------------------------------------------
*/
.widget {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 8px;
}

.widget-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 0.5rem;
}

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

.widget li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.widget li:last-child {
    border-bottom: none;
}

.widget a {
    color: #333;
    text-decoration: none;
}

.widget a:hover {
    color: #0073aa;
}

/*
--------------------------------------------------------------
## Footer
--------------------------------------------------------------
*/

.footer-widgets {
    margin-bottom: 2rem;
}

.footer-widget-area {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-widgets .widget {
    background: transparent;
    padding: 0;
}

.footer-widgets .widget-title {
    color: #fff;
    border-bottom-color: #555;
}

.footer-widgets a {
    color: #ccc;
}

.footer-widgets a:hover {
    color: #fff;
}

.site-info {
    border-top: 1px solid #555;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.copyright {
    font-size: 0.9rem;
}

.copyright a {
    color: #ccc;
}

.footer-menu-wrapper ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.footer-menu-wrapper li {
    margin-left: 2rem;
}

.footer-menu-wrapper a {
    color: #ccc;
    text-decoration: none;
}

.footer-menu-wrapper a:hover {
    color: #fff;
}
body .vc_row{
    margin: 0px;
}
body .vc_column_container>.vc_column-inner {
    padding-left: 0px;
    padding-right: 0px;
}
@media (max-width: 420px){
    body .container-content-area{
        padding: 0 1rem;
    }
    
}
@media (max-width: 787px) and (min-width: 420px){
    body .container-content-area{
        padding: 0 2rem;
    }
    
}
@media (min-width: 787px) {
    body .container-content-area{
        padding: 0 2rem;
    }
}
@media (min-width: 1024px) and (max-width: 1000px) {
    body .container-content-area{
        max-width: 56rem;
        margin: 0 auto;
    }
}
@media (min-width: 1280px) {
    body .container-content-area{
        max-width: 80rem;
        margin: 0 auto;
    }
}
body .text-outline-btn{
    position: relative;
}

body .vc_btn3-container.text-outline-btn button{
    border: 0px !important;
    background: unset !important;
    padding: 0px !important;
    width: 100% !important;
    text-align: left;
}

body .text-outline-btn:has(i){
    padding-right: 30px;
}
body .text-outline-btn button i{
    right: -30px !important;
}

body .text-outline-btn:hover button{
    color: #F2900A !important;
}

body .text-outline-btn:hover button i{
    color: #F2900A;
}

body .vc_btn3-container.text-outline-btn a{
    border: 0px !important;
    background: unset !important;
    padding: 0px !important;
    width: 100% !important;
    text-align: left;
}

body .text-outline-btn:has(i){
    padding-right: 30px;
}
body .text-outline-btn a i{
    right: -30px !important;
}

body .text-outline-btn:hover a{
    color: #F2900A !important;
}

body .text-outline-btn:hover a i{
    color: #F2900A;
}

body {
    .vc_btn3-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: fit-content;
        cursor: pointer;

        &.button-primary {
            background-color: rgb(242 144 10 / 1);
            .vc_btn3 {
                font-size: 1.125rem !important;
                font-weight: 600 !important;
                padding: 8px 16px !important;
            }
        }

        &.button-secondary {
            .vc_btn3 {
                color: rgba(50, 50, 50, 1);
                font-size: 1.125rem !important;
                font-weight: 600 !important;
                padding: 8px 16px !important;
            }
        }
    }
}

body .button-primary button {
    border: 0px !important;
    background: unset !important;
    padding: 0px !important;
    color: #fff !important;
}

body .vc_btn3-container.button-primary:hover button {
    color: #fff;
    --tw-bg-opacity: 1;
    background-color: rgb(251 146 60 / var(--tw-bg-opacity));
    --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0,0,0,.07)) drop-shadow(0 2px 2px rgba(0,0,0,.06));
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

body .vc_btn3-container.button-primary button:hover {
    color: #fff !important;
}

body .w-fix{
    width: fit-content !important;
}

body .button-primary a {
    border: 0px !important;
    background: unset !important;
    padding: 0px !important;
    color: #fff !important;
}

body .vc_btn3-container.button-primary:hover a {
    color: #fff;
    --tw-bg-opacity: 1;
    background-color: rgb(251 146 60 / var(--tw-bg-opacity));
    --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0,0,0,.07)) drop-shadow(0 2px 2px rgba(0,0,0,.06));
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

body .vc_btn3-container.button-primary a:hover {
    color: #fff !important;
}