:root {
    --geka-primary: #1b1f2d;
    --geka-secondary: #ffc828;
    --geka-body: #878c9b;
    --geka-border: #eeeeee;
    --geka-topbar: #f5f5f5;
    --geka-white: #ffffff;
    --geka-footer-bottom: #10131e;
}

.main-header.conebrick-header {
    position: relative;
    z-index: 100;
    width: 100%;
    font-family: "Roboto", sans-serif;
}

.conebrick-header .page-top-bar {
    background: var(--geka-topbar);
    border-bottom: 1px solid var(--geka-border);
    color: var(--geka-body);
    font-size: 13px;
    line-height: 1.8;
}

.conebrick-header .page-top-bar .row {
    align-items: center;
}

.conebrick-header .top-bar-wrap {
    min-height: 46px;
    display: flex;
    align-items: center;
}

.conebrick-header .top-bar-left {
    justify-content: flex-start;
}

.conebrick-header .top-bar-right {
    justify-content: flex-end;
}

.conebrick-header .top-bar-info,
.conebrick-header .top-bar-social-network {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.conebrick-header .top-bar-info {
    gap: 26px;
    flex-wrap: wrap;
}

.conebrick-header .top-bar-info .info-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--geka-body);
    white-space: nowrap;
}

.conebrick-header .top-bar-info .info-icon {
    color: var(--geka-secondary);
    font-size: 14px;
}

.conebrick-header .top-bar-info a,
.conebrick-header .top-bar-info span {
    color: inherit;
}

.conebrick-header .top-bar-social-network {
    gap: 18px;
}

.conebrick-header .top-bar-social-network a {
    color: var(--geka-primary);
    transition: color 0.3s ease;
}

.conebrick-header .top-bar-social-network a:hover {
    color: var(--geka-secondary);
}

.conebrick-header .header-shell,
.conebrick-header .sticky-shell {
    background: var(--geka-white);
}

.conebrick-header .header-shell {
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
    height: 105px;
    min-height: 105px;
    max-height: 105px;
    overflow: visible;
}

.conebrick-header #page-header-inner {
    height: 105px;
    min-height: 105px;
    max-height: 105px;
}

.conebrick-header .header-inner-row,
.conebrick-header .sticky-shell .outer-box {
    display: flex;
    align-items: center;
}

.conebrick-header .header-inner-row {
    min-height: 105px;
    height: 105px;
}

.conebrick-header .branding {
    display: flex;
    align-items: center;
    height: 100%;
}

.conebrick-header .branding__logo a,
.conebrick-header .sticky-header .logo-box a {
    display: inline-flex;
    align-items: center;
}

.conebrick-header .branding__logo img,
.conebrick-header .sticky-header .logo-box img,
.conebrick-header .mobile-menu .nav-logo img {
    width: 142px;
    max-width: 100%;
    height: auto;
}

.conebrick-header .navigation-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    min-height: 105px;
    height: 105px;
    gap: 0;
}

.conebrick-header .main-menu .navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.conebrick-header .main-menu .navigation > li {
    position: relative;
    display: flex;
    align-items: stretch;
    height: 105px;
    padding: 0 !important;
    margin: 0;
}

.conebrick-header .main-menu .navigation > li > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 105px;
    padding: 0 14px;
    color: var(--geka-primary);
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.62px;
    line-height: 1.2;
    text-transform: capitalize;
    transition: color 0.3s ease;
}

.conebrick-header .main-menu .navigation > li.dropdown > .dropdown-btn,
.conebrick-header .sticky-header .main-menu .navigation > li.dropdown > .dropdown-btn {
    display: none !important;
}

.conebrick-header .main-menu .navigation > li > a .menu-item-title {
    position: relative;
    display: inline-block;
}

.conebrick-header .main-menu .navigation > li > a .menu-item-title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: var(--geka-secondary);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
}

.conebrick-header .main-menu .navigation > li:hover > a .menu-item-title:after,
.conebrick-header .main-menu .navigation > li.current > a .menu-item-title:after {
    transform: scaleX(1);
}

.conebrick-header .main-menu .navigation > li.dropdown > a:before,
.conebrick-header .main-menu .navigation > li.dropdown > a:after {
    display: none;
    content: none !important;
}

.conebrick-header .main-menu .navigation > li.dropdown > a .menu-caret {
    display: none;
    align-items: center;
    justify-content: center;
    color: rgba(17, 17, 17, 0.5);
    font-size: 12px;
    line-height: 1;
    transform: translateY(1px);
}

.conebrick-header .main-menu .navigation > li:hover > a,
.conebrick-header .main-menu .navigation > li.current > a {
    color: var(--geka-primary);
}

.conebrick-header .main-menu .navigation > li > ul {
    min-width: 260px;
    padding: 18px 0;
    background: var(--geka-white);
    border: 0;
    box-shadow: 0 18px 40px rgba(27, 31, 45, 0.12);
}

.conebrick-header .main-menu .navigation > li > ul > li > a {
    padding: 10px 28px;
    color: var(--geka-body);
    font-family: "Roboto", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.2;
    background: transparent;
    transition: color 0.3s ease, background 0.3s ease;
}

.conebrick-header .main-menu .navigation > li > ul > li:hover > a,
.conebrick-header .main-menu .navigation > li > ul > li > a:hover {
    color: var(--geka-secondary);
    background: transparent;
}

.conebrick-header .mobile-nav-toggler {
    color: var(--geka-primary);
}

.conebrick-header .sticky-header {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 30px rgba(27, 31, 45, 0.08);
}

.conebrick-header .sticky-header .outer-box {
    justify-content: space-between;
    min-height: 62px;
}

.conebrick-header .sticky-header .logo-box {
    display: inline-flex;
    align-items: center;
    margin: 0;
}

.conebrick-header .sticky-header .logo-box img {
    width: 108px;
}

.conebrick-header .sticky-header .menu-area {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 22px;
}

.conebrick-header .sticky-header .main-menu .navigation > li > a {
    padding-top: 24px;
    padding-bottom: 24px;
}

.conebrick-header.fixed-header .sticky-header {
    box-shadow: 0 10px 28px rgba(27, 31, 45, 0.12);
}

.conebrick-header .mobile-menu .menu-box {
    background: var(--geka-primary);
}

.conebrick-header .mobile-menu .contact-info h4,
.conebrick-header .mobile-menu .contact-info a,
.conebrick-header .mobile-menu .contact-info li {
    color: var(--geka-white);
}

.conebrick-header .mobile-menu .contact-info a:hover {
    color: var(--geka-secondary);
}

.conebrick-footer {
    font-family: "Roboto", sans-serif;
    color: #878c9b;
}

.conebrick-footer .page-footer-inner {
    position: relative;
    padding: 100px 0 82px;
    background: #1d2030;
}

.conebrick-footer .page-footer-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
}

.conebrick-footer .widget {
    position: relative;
    z-index: 1;
}

.conebrick-footer .widget-title {
    margin-bottom: 28px;
    color: #ffffff;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.conebrick-footer .textwidget,
.conebrick-footer p,
.conebrick-footer a,
.conebrick-footer li {
    color: #8b90a0;
    font-size: 15px;
    line-height: 2;
}

.conebrick-footer a:hover {
    color: #ffc828;
}

.conebrick-footer .footer-main-row {
    display: flex;
    align-items: flex-start;
}

.conebrick-footer .footer-branding-widget {
    padding-right: 80px;
}

.conebrick-footer .footer-about-copy {
    max-width: 390px;
    margin: 0 0 8px;
}

.conebrick-footer .logo-footer {
    display: inline-flex;
    margin-bottom: 0;
}

.conebrick-footer .logo-footer img {
    width: 170px;
    max-width: 100%;
    height: auto;
}

.conebrick-footer .footer-logo-wrap {
    margin-bottom: 22px;
}

.conebrick-footer .footer-brand-divider {
    width: 100%;
    max-width: 370px;
    height: 1px;
    margin-bottom: 22px;
    background: rgba(255, 255, 255, 0.1);
}

.conebrick-footer .footer-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.conebrick-footer .footer-button i {
    color: #ffc828;
    font-size: 13px;
}

.conebrick-footer .footer-links,
.conebrick-footer .copyright-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.conebrick-footer .footer-links li + li {
    margin-top: 1px;
}

.conebrick-footer .footer-links a {
    color: #8b90a0;
}

.conebrick-footer .footer-links a:hover {
    color: #ffffff;
}

.conebrick-footer .footer-contact p {
    max-width: 300px;
    margin-bottom: 8px;
}

.conebrick-footer .tm-social-links {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 46px;
}

.conebrick-footer .tm-social-links a {
    color: #a1a6b7;
    font-size: 24px;
    transition: color 0.3s ease;
}

.conebrick-footer .tm-social-links a:hover {
    color: #ffc828;
}

.conebrick-footer .page-copyright-inner {
    padding: 36px 0 34px;
    background: #10131e;
}

.conebrick-footer .page-copyright,
.conebrick-footer .page-copyright a {
    font-size: 14px;
    line-height: 1.8;
    color: #8b90a0;
}

.conebrick-footer .copyright-links {
    display: flex;
    justify-content: flex-end;
    gap: 34px;
    flex-wrap: wrap;
}

.conebrick-footer .page-copyright p {
    margin: 0;
}

body.conebrick-home #oc-fullslider.banner {
    height: 760px !important;
    min-height: 760px;
    background: #1b1f2d;
    overflow: visible;
    margin-bottom: 120px;
}

body.conebrick-home #oc-fullslider.banner .owl-theme .item {
    height: 760px !important;
}

body.conebrick-home #oc-fullslider.banner .overlay-bg {
    background:
        linear-gradient(90deg, rgba(241, 247, 252, 0.88) 0%, rgba(241, 247, 252, 0.78) 24%, rgba(241, 247, 252, 0.26) 54%, rgba(255, 255, 255, 0.02) 72%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.04) 100%);
}

body.conebrick-home #oc-fullslider.banner .hero-layout {
    align-items: center;
    padding: 114px 15px 114px;
}

body.conebrick-home #oc-fullslider.banner .wrap-caption {
    max-width: 460px;
    padding-left: 18px;
}

body.conebrick-home #oc-fullslider.banner .caption-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 28px;
    border: 3px solid #8dc63f;
    border-radius: 50%;
    color: #8dc63f;
    font-size: 28px;
}

body.conebrick-home #oc-fullslider.banner .caption-supheading {
    position: relative;
    display: none;
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 26px;
    padding-bottom: 14px;
}

body.conebrick-home #oc-fullslider.banner .caption-supheading:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 96px;
    height: 3px;
    background: #ffc828;
}

body.conebrick-home #oc-fullslider.banner .caption-heading {
    color: #111111;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 40px;
    line-height: 0.96;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 36px;
}

body.conebrick-home #oc-fullslider.banner .caption-text {
    max-width: 620px;
    color: rgba(27, 31, 45, 0.74);
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    line-height: 1.8;
    padding-bottom: 0;
    margin-bottom: 0;
}

body.conebrick-home #oc-fullslider.banner .caption-text:after {
    display: none !important;
}

body.conebrick-home #oc-fullslider.banner .hero-action-row {
    display: flex !important;
    margin-top: 0;
}

body.conebrick-home #oc-fullslider.banner .custom-nav {
    right: 4%;
    top: 50%;
    gap: 16px;
    display: none;
}

body.conebrick-home #oc-fullslider.banner .owl-nav .owl-prev,
body.conebrick-home #oc-fullslider.banner .owl-nav .owl-next {
    width: 64px;
    height: 64px;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.03);
}

body.conebrick-home #oc-fullslider.banner .owl-nav .owl-prev:hover,
body.conebrick-home #oc-fullslider.banner .owl-nav .owl-next:hover {
    background: #ffc828;
    border-color: #ffc828;
    color: #1b1f2d;
}

body.conebrick-home #oc-fullslider.banner .owl-nav .owl-prev span,
body.conebrick-home #oc-fullslider.banner .owl-nav .owl-next span {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 30px;
}

body.conebrick-home #oc-fullslider.banner .theme-btn {
    min-width: 160px;
    padding: 18px 34px;
    border-radius: 6px;
    background: #222634;
    border-color: #222634;
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    text-transform: none;
    letter-spacing: 0;
}

body.conebrick-home #oc-fullslider.banner .theme-btn:hover {
    background: #ffc828;
    border-color: #ffc828;
    color: #1b1f2d;
}

body.conebrick-home #oc-fullslider.banner .outline-btn {
    display: none !important;
}

body.conebrick-home #oc-fullslider.banner .hero-feature-panels {
    position: absolute;
    right: 19%;
    bottom: -72px;
    z-index: 6;
    display: flex;
    width: min(770px, 58vw);
    box-shadow: 0 22px 45px rgba(27, 31, 45, 0.18);
}

body.conebrick-home #oc-fullslider.banner .hero-feature-panel {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    flex: 1 1 50%;
    min-height: 144px;
    padding: 34px 34px 28px;
    color: #ffffff;
}

body.conebrick-home #oc-fullslider.banner .hero-feature-panel-light {
    background: linear-gradient(135deg, #ffc928 0%, #f2b40c 100%);
}

body.conebrick-home #oc-fullslider.banner .hero-feature-panel-strong {
    background: linear-gradient(135deg, #f0a000 0%, #df8b00 100%);
}

body.conebrick-home #oc-fullslider.banner .hero-feature-icon {
    flex: 0 0 48px;
    font-size: 40px;
    line-height: 1;
    color: #ffffff;
}

body.conebrick-home #oc-fullslider.banner .hero-feature-content h4 {
    margin: 2px 0 12px;
    color: #ffffff;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1;
}

body.conebrick-home #oc-fullslider.banner .hero-feature-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 1199.98px) {
    .conebrick-header .header-shell,
    .conebrick-header #page-header-inner,
    .conebrick-header .header-inner-row {
        min-height: 96px;
        height: 96px;
        max-height: 96px;
    }

    .conebrick-header .navigation-wrap {
        min-height: 96px;
        height: 96px;
    }

    .conebrick-header .main-menu .navigation > li {
        height: 96px;
    }

    .conebrick-header .main-menu .navigation > li > a {
        height: 96px;
        padding-top: 0;
        padding-bottom: 0;
        padding-left: 12px;
        padding-right: 12px;
        font-size: 14px;
        letter-spacing: 1.2px;
    }

    body.conebrick-home #oc-fullslider.banner,
    body.conebrick-home #oc-fullslider.banner .owl-theme .item {
        height: 680px !important;
        min-height: 680px;
    }

    body.conebrick-home #oc-fullslider.banner .caption-heading {
        font-size: 40px;
    }

    body.conebrick-home #oc-fullslider.banner .hero-feature-panels {
        right: 9%;
        width: min(700px, 72vw);
    }
}

@media (max-width: 991.98px) {
    .conebrick-header .page-top-bar {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .conebrick-header .top-bar-wrap {
        min-height: auto;
        justify-content: center;
    }

    .conebrick-header .top-bar-info {
        justify-content: center;
        gap: 10px 18px;
    }

    .conebrick-header .top-bar-right {
        margin-top: 6px;
    }

    .conebrick-header .header-shell,
    .conebrick-header #page-header-inner,
    .conebrick-header .header-inner-row {
        min-height: 82px;
        height: 82px;
        max-height: 82px;
    }

    .conebrick-header .branding__logo img {
        width: 128px;
    }

    .conebrick-footer .page-footer-inner {
        padding-top: 90px;
        padding-bottom: 36px;
    }

    .conebrick-footer .widget {
        margin-bottom: 36px;
    }

    .conebrick-footer .footer-branding-widget {
        padding-right: 0;
    }

    .conebrick-footer .tm-social-links {
        margin-top: 28px;
    }

    .conebrick-footer .copyright-links {
        justify-content: flex-start;
        gap: 18px;
        margin-top: 14px;
    }
}

@media (max-width: 767.98px) {
    body.conebrick-home #oc-fullslider.banner,
    body.conebrick-home #oc-fullslider.banner .owl-theme .item {
        height: 620px !important;
        min-height: 620px;
    }

    body.conebrick-home #oc-fullslider.banner .hero-layout {
        padding: 82px 0 72px;
        align-items: flex-start;
    }

    body.conebrick-home #oc-fullslider.banner .caption-heading {
        font-size: 40px;
        line-height: 1.05;
    }

    body.conebrick-home #oc-fullslider.banner .caption-text {
        font-size: 16px;
    }

    body.conebrick-home #oc-fullslider.banner .hero-feature-panels {
        position: static;
        width: 100%;
        margin-top: 24px;
        box-shadow: none;
        flex-direction: column;
    }

    body.conebrick-home #oc-fullslider.banner .hero-feature-panel {
        min-height: 0;
        padding: 22px 22px 20px;
    }

    body.conebrick-home #oc-fullslider.banner .custom-nav {
        display: none !important;
    }
}
