/* Gold GTC simple layout — desix-style structure, black/white theme */

.gtc-simple #magic-cursor,
.gtc-simple #scroll-indicator {
    display: none !important;
}

.gtc-simple.body-padding,
.gtc-simple #smooth-content.body-padding {
    padding: 0;
}

.gtc-simple {
    --gtc-header-h: 124px;
}

.gtc-wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.gtc-sec {
    padding: 100px 0;
    background: #fff;
    color: #141414;
}

.gtc-sec--dark {
    background: #121212;
    color: #fff;
}

.gtc-sec--muted {
    background: #f6f6f6;
}

.gtc-sec-title {
    margin-bottom: 50px;
}

.gtc-sec-title--split {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.gtc-sec-title--center {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.gtc-sub {
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--tp-theme-primary, #c5a46e);
}

.gtc-sec-title h2,
.gtc-sec-title .gtc-heading {
    margin: 0 0 16px;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 600;
    color: inherit;
}

.gtc-sec-title p,
.gtc-lead {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #6b6b6b;
}

.gtc-sec--dark .gtc-lead,
.gtc-sec--dark .gtc-sec-title p {
    color: rgba(255, 255, 255, 0.72);
}

.gtc-service .gtc-lead,
.gtc-sec--dark .gtc-service .gtc-lead,
.agntix-dark .gtc-service .gtc-lead {
    color: #141414;
}

.gtc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;
    border: 0;
    background: #141414;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.gtc-btn:hover {
    background: var(--tp-theme-primary, #c5a46e);
    color: #141414;
}

.gtc-btn--light {
    background: #fff;
    color: #141414;
}

.gtc-btn--light:hover {
    background: var(--tp-theme-primary, #c5a46e);
    color: #141414;
}

.gtc-btn--line {
    background: transparent;
    color: inherit;
    padding: 0;
    min-height: 0;
    border-bottom: 1px solid currentColor;
}

.gtc-btn--line:hover {
    background: transparent;
    color: var(--tp-theme-primary, #c5a46e);
}

/* Header */
.gtc-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    color: #141414;
}

.gtc-header.header-sticky {
    position: fixed;
    background: #fff;
    box-shadow: 0 8px 24px rgba(20, 20, 20, 0.08);
    animation: none;
}

.gtc-header-top {
    background: #141414;
    color: #fff;
    font-size: 13px;
}

.gtc-header-top .gtc-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    gap: 16px;
}

.gtc-header-top a,
.gtc-header-top span {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
}

.gtc-header-top a:hover {
    color: var(--tp-theme-primary, #c5a46e);
}

.gtc-header-top-left,
.gtc-header-top-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.gtc-header-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gtc-header-social a {
    color: #fff;
}

.gtc-header-main {
    border-bottom: 1px solid rgba(20, 20, 20, 0.08);
}

.gtc-header-main .gtc-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    gap: 24px;
}

.gtc-header-logo img {
    max-height: 48px;
    width: auto;
}

.gtc-nav {
    flex: 1;
}

.gtc-nav .tp-mobile-menu-active > ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.gtc-nav .tp-mobile-menu-active > ul > li {
    position: relative;
}

.gtc-nav .tp-mobile-menu-active > ul > li > a {
    display: inline-block;
    padding: 28px 0;
    color: #141414;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}

.gtc-nav .tp-mobile-menu-active > ul > li > a:hover,
.gtc-nav .tp-mobile-menu-active > ul > li:hover > a {
    color: var(--tp-theme-primary, #c5a46e);
}

.gtc-nav .tp-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    margin: 0;
    padding: 12px 0;
    list-style: none;
    background: #fff;
    box-shadow: 0 12px 32px rgba(20, 20, 20, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.2s ease;
    z-index: 20;
}

.gtc-nav li:hover > .tp-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.gtc-nav .tp-submenu li {
    position: relative;
}

.gtc-nav .tp-submenu a {
    display: block;
    padding: 8px 20px;
    color: #141414;
    font-size: 14px;
    text-decoration: none;
}

.gtc-nav .tp-submenu a:hover {
    color: var(--tp-theme-primary, #c5a46e);
}

.gtc-nav .tp-submenu .tp-submenu {
    top: 0;
    left: 100%;
}

.gtc-header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.gtc-header-phone {
    display: none;
    flex-direction: column;
    line-height: 1.2;
    color: #141414;
    text-decoration: none;
}

.gtc-header-phone small {
    color: #6b6b6b;
    font-size: 12px;
}

.gtc-header-phone strong {
    font-size: 15px;
}

@media (min-width: 1200px) {
    .gtc-header-phone {
        display: flex;
    }
}

.gtc-header .ss-color-mode-toggle {
    width: 42px;
    height: 42px;
}

.gtc-header .tp-offcanvas-open-btn {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(20, 20, 20, 0.12);
    background: transparent;
    padding: 0;
}

.gtc-header .tp-offcanvas-open-btn i {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: #141414;
}

/* Hero */
.gtc-hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    background: #141414 center / cover no-repeat;
    color: #fff;
}

.gtc-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 20, 0.62);
}

.gtc-hero .gtc-wrap {
    position: relative;
    z-index: 1;
    padding-top: 80px;
    padding-bottom: 80px;
}

.gtc-hero-content {
    max-width: 760px;
}

.gtc-hero-content .gtc-sub {
    color: var(--tp-theme-primary, #c5a46e);
}

.gtc-hero-content h1 {
    margin: 0 0 20px;
    font-size: 64px;
    line-height: 1.1;
    font-weight: 600;
    color: #fff;
}

.gtc-hero-content p {
    margin: 0 0 28px;
    max-width: 560px;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
}

.gtc-hero-counters {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 48px;
}

.gtc-hero-counters strong {
    display: block;
    font-size: 40px;
    line-height: 1;
    color: inherit;
}

.gtc-hero .gtc-hero-counters strong {
    color: #fff;
}

.gtc-hero-counters span {
    display: block;
    margin-top: 8px;
    color: #6b6b6b;
}

.gtc-hero .gtc-hero-counters span {
    color: rgba(255, 255, 255, 0.7);
}

/* Cards / grids */
.gtc-card,
.gtc-service,
.gtc-project,
.gtc-news,
.gtc-team,
.gtc-quote,
.gtc-review {
    background: #fff;
    color: #141414;
}

.gtc-service,
.gtc-project,
.gtc-news,
.gtc-team {
    margin-bottom: 24px;
}

.gtc-media {
    display: block;
    overflow: hidden;
    background: #ececec;
}

.gtc-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gtc-service:hover .gtc-media img,
.gtc-project:hover .gtc-media img,
.gtc-news:hover .gtc-media img,
.gtc-team:hover .gtc-media img {
    transform: scale(1.05);
}

.gtc-service .gtc-media,
.gtc-project .gtc-media,
.gtc-news .gtc-media {
    aspect-ratio: 4 / 3;
}

.gtc-team .gtc-media {
    aspect-ratio: 3 / 4;
}

.gtc-service-body,
.gtc-news-body,
.gtc-team-body {
    padding: 22px 0 0;
}

.gtc-team-body,
.gtc-team-body h3,
.gtc-team-body h3 a,
.gtc-team-body span,
.gtc-sec--dark .gtc-team-body,
.gtc-sec--dark .gtc-team-body h3,
.gtc-sec--dark .gtc-team-body h3 a,
.gtc-sec--dark .gtc-team-body span,
.agntix-dark .gtc-team-body,
.agntix-dark .gtc-team-body h3,
.agntix-dark .gtc-team-body h3 a,
.agntix-dark .gtc-team-body span {
    color: #141414;
}

.gtc-sec--dark .gtc-service-body,
.gtc-sec--dark .gtc-news-body,
.gtc-sec--dark .gtc-team-body,
.gtc-sec--dark .gtc-project-body {
    color: #fff;
}

.gtc-card-title,
.gtc-service h3,
.gtc-project h3,
.gtc-news h3,
.gtc-team h3 {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 600;
}

.gtc-card-title a,
.gtc-service h3 a,
.gtc-project h3 a,
.gtc-news h3 a,
.gtc-team h3 a {
    color: inherit;
    text-decoration: none;
}

.gtc-card-title a:hover,
.gtc-service h3 a:hover,
.gtc-project h3 a:hover,
.gtc-news h3 a:hover,
.gtc-team h3 a:hover {
    color: var(--tp-theme-primary, #c5a46e);
}

.gtc-meta {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    color: #6b6b6b;
}

.gtc-sec--dark .gtc-meta,
.gtc-project .gtc-meta {
    color: rgba(255, 255, 255, 0.65);
}

.gtc-project {
    position: relative;
}

.gtc-project-body {
    padding-top: 16px;
}

.gtc-about-copy p {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.8;
    color: #6b6b6b;
}

.gtc-about-media {
    position: relative;
}

.gtc-about-media img {
    width: 100%;
    height: auto;
    display: block;
}

.gtc-about-media img + img {
    position: absolute;
    right: 0;
    bottom: -30px;
    width: 46%;
    border: 8px solid #fff;
}

.gtc-process {
    height: 100%;
    padding: 8px 8px 0 0;
}

.gtc-process-num {
    display: block;
    margin-bottom: 16px;
    font-size: 28px;
    font-weight: 700;
    color: var(--tp-theme-primary, #c5a46e);
}

.gtc-process h3 {
    margin: 0 0 12px;
    font-size: 22px;
}

.gtc-process p {
    margin: 0;
    color: #6b6b6b;
    line-height: 1.7;
}

.gtc-marquee {
    overflow: hidden;
    background: #141414;
    color: #fff;
    padding: 22px 0;
}

.gtc-marquee-track {
    display: flex;
    width: max-content;
    gap: 48px;
    animation: gtc-marquee 28s linear infinite;
}

.gtc-marquee-track span {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.04em;
    white-space: nowrap;
    text-transform: uppercase;
}

@keyframes gtc-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.gtc-team-social {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.gtc-team-social a,
.gtc-sec--dark .gtc-team-social a,
.agntix-dark .gtc-team-social a {
    color: #141414;
}

.gtc-brands {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 36px;
}

.gtc-brands img {
    max-height: 48px;
    width: auto;
    filter: grayscale(1);
    opacity: 0.7;
}

.gtc-quote,
.gtc-review {
    height: 100%;
    padding: 32px;
    border: 1px solid rgba(20, 20, 20, 0.08);
}

.gtc-quote p,
.gtc-review p {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.7;
}

.gtc-quote-author,
.gtc-review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gtc-quote-author img,
.gtc-review-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.gtc-quote-author strong,
.gtc-review-author strong {
    display: block;
}

.gtc-quote-author span,
.gtc-review-author span,
.gtc-review small {
    color: #6b6b6b;
    font-size: 13px;
}

.gtc-video {
    position: relative;
    display: block;
    overflow: hidden;
}

.gtc-video img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.gtc-video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #141414;
}

.gtc-video-play span {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gtc-ig-grid .gtc-media {
    aspect-ratio: 1;
}

.gtc-stars {
    color: #d0d0d0;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.gtc-stars .is-on {
    color: var(--tp-theme-primary, #c5a46e);
}

.gtc-news-body p {
    margin: 0 0 14px;
    color: #6b6b6b;
}

/* Inner page title */
.gtc-page-title {
    background: #141414;
    color: #fff;
    padding: calc(70px + var(--gtc-header-h)) 0 80px;
    text-align: center;
}

.gtc-page-title h1 {
    margin: 0 0 16px;
    font-size: 52px;
    line-height: 1.15;
    color: #fff;
}

.gtc-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: rgba(255, 255, 255, 0.7);
}

.gtc-breadcrumb li:not(:last-child)::after {
    content: "/";
    margin-left: 8px;
    color: rgba(255, 255, 255, 0.35);
}

.gtc-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.gtc-breadcrumb a:hover,
.gtc-breadcrumb .is-current {
    color: var(--tp-theme-primary, #c5a46e);
}

.gtc-page-banner {
    margin: 0;
}

.gtc-page-banner img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    display: block;
}

.gtc-sidebar-box,
.gtc-sidebar-help,
.gtc-price {
    padding: 28px;
    margin-bottom: 24px;
    border: 1px solid rgba(20, 20, 20, 0.08);
    background: #fff;
}

.gtc-sidebar-box h3,
.gtc-sidebar-help h3,
.gtc-price h3 {
    margin: 0 0 18px;
    font-size: 22px;
}

.gtc-price h3 small {
    font-size: 14px;
    font-weight: 500;
    color: #6b6b6b;
}

.gtc-sidebar-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.gtc-sidebar-list li {
    border-bottom: 1px solid rgba(20, 20, 20, 0.08);
}

.gtc-sidebar-list a {
    display: block;
    padding: 12px 0;
    color: #141414;
    text-decoration: none;
}

.gtc-sidebar-list a:hover {
    color: var(--tp-theme-primary, #c5a46e);
}

.gtc-sidebar-help {
    background: #141414;
    color: #fff;
}

.gtc-sidebar-help p,
.gtc-sidebar-help a {
    color: rgba(255, 255, 255, 0.78);
}

.gtc-sidebar-help .gtc-btn {
    margin-top: 18px;
}

.gtc-service-details img {
    width: 100%;
    margin-bottom: 28px;
    display: block;
}

.gtc-service-details h2 {
    margin: 12px 0 16px;
    font-size: 36px;
}

.gtc-service-details-body {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.8;
    color: #3c3c3c;
}

.gtc-service-details-body p {
    margin-bottom: 16px;
}

.gtc-price-list {
    margin: 20px 0;
    color: #3c3c3c;
}

.gtc-price-list ul {
    padding-left: 18px;
}

.gtc-price-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 36px;
}

.gtc-price-tabs .nav-tab {
    display: inline-flex;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.gtc-price-tabs .nav-links {
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid rgba(20, 20, 20, 0.12);
    background: #fff;
    color: #141414;
    font-weight: 600;
}

.gtc-price-tabs .nav-links.active {
    background: #141414;
    color: #fff;
    border-color: #141414;
}

.gtc-pagination {
    margin-top: 24px;
}

.gtc-pagination .tp-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.agntix-dark .gtc-page-title,
.agntix-dark .gtc-sidebar-help {
    background: #121212;
}

.agntix-dark .gtc-sidebar-box,
.agntix-dark .gtc-price {
    background: #1a1b1e;
    border-color: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.agntix-dark .gtc-sidebar-list a,
.agntix-dark .gtc-service-details-body,
.agntix-dark .gtc-price-list {
    color: rgba(255, 255, 255, 0.78);
}

.agntix-dark .gtc-sidebar-list li {
    border-color: rgba(255, 255, 255, 0.08);
}

@media (max-width: 991px) {
    .gtc-page-title h1 {
        font-size: 36px;
    }
}

.gtc-faq-item {
    border-bottom: 1px solid rgba(20, 20, 20, 0.1);
}

.gtc-faq-q {
    margin: 0;
}

.gtc-faq-q button {
    width: 100%;
    text-align: left;
    background: none;
    border: 0;
    padding: 18px 0;
    font-size: 18px;
    font-weight: 600;
    color: #141414;
}

.gtc-faq-a {
    padding: 0 0 18px;
    color: #3c3c3c;
    line-height: 1.7;
}

.gtc-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.gtc-form input,
.gtc-form textarea {
    width: 100%;
    margin-bottom: 18px;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid rgba(20, 20, 20, 0.14);
    background: #fff;
    color: #141414;
}

.gtc-form textarea {
    min-height: 140px;
}

.gtc-map iframe {
    width: 100%;
    min-height: 420px;
    border: 0;
}

.gtc-detail-list {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.gtc-detail-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(20, 20, 20, 0.08);
}

.gtc-detail-list span {
    display: inline-block;
    min-width: 120px;
    font-weight: 600;
    color: #141414;
}

.gtc-simple .tp-login-area,
.gtc-simple .profile__area {
    padding-top: calc(80px + var(--gtc-header-h));
}

.agntix-dark .gtc-faq-q button,
.agntix-dark .gtc-detail-list span {
    color: #fff;
}

.agntix-dark .gtc-form input,
.agntix-dark .gtc-form textarea {
    background: #1a1b1e;
    border-color: rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* Footer */
.gtc-footer {
    background: #121212;
    color: #fff;
}

.gtc-footer-info {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 36px 0;
}

.gtc-footer-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.gtc-footer-info-item i {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--tp-theme-primary, #c5a46e);
}

.gtc-footer-info-item small {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
}

.gtc-footer-info-item a,
.gtc-footer-info-item span {
    color: #fff;
    text-decoration: none;
}

.gtc-footer-widgets {
    padding: 70px 0 40px;
}

.gtc-footer-logo img {
    max-height: 52px;
    width: auto;
    margin-bottom: 20px;
}

.gtc-footer p,
.gtc-footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.gtc-footer h4 {
    margin: 0 0 22px;
    font-size: 20px;
    color: #fff;
}

.gtc-footer-links,
.gtc-footer-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.gtc-footer-links li {
    margin-bottom: 10px;
}

.gtc-footer-links a {
    text-decoration: none;
}

.gtc-footer-links a:hover {
    color: var(--tp-theme-primary, #c5a46e);
}

.gtc-footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.gtc-footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.gtc-footer-form {
    display: flex;
    gap: 8px;
}

.gtc-footer-form input {
    flex: 1;
    min-height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: transparent;
    color: #fff;
    padding: 0 14px;
}

.gtc-footer-form button {
    min-height: 50px;
    padding: 0 18px;
    border: 0;
    background: var(--tp-theme-primary, #c5a46e);
    color: #141414;
    font-weight: 600;
}

.gtc-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
}

/* Dark mode */
.agntix-dark .gtc-header,
.agntix-dark .gtc-header-main,
.agntix-dark .gtc-header.header-sticky,
.agntix-dark .gtc-nav .tp-submenu {
    background: #0e0f11;
    color: #fff;
}

.agntix-dark .gtc-header-main {
    border-color: rgba(255, 255, 255, 0.08);
}

.agntix-dark .gtc-nav .tp-mobile-menu-active > ul > li > a,
.agntix-dark .gtc-nav .tp-submenu a,
.agntix-dark .gtc-header-phone,
.agntix-dark .gtc-header-phone strong {
    color: #fff;
}

.agntix-dark .gtc-header-phone small {
    color: rgba(255, 255, 255, 0.55);
}

.agntix-dark .gtc-header .tp-offcanvas-open-btn {
    border-color: rgba(255, 255, 255, 0.18);
}

.agntix-dark .gtc-header .tp-offcanvas-open-btn i {
    background: #fff;
}

.agntix-dark .gtc-sec {
    background: #0e0f11;
    color: #fff;
}

.agntix-dark .gtc-sec--muted {
    background: #16171a;
}

.agntix-dark .gtc-sec--dark {
    background: #121212;
}

.agntix-dark .gtc-lead,
.agntix-dark .gtc-about-copy p,
.agntix-dark .gtc-process p,
.agntix-dark .gtc-news-body p {
    color: rgba(255, 255, 255, 0.7);
}

.agntix-dark .gtc-quote,
.agntix-dark .gtc-review,
.agntix-dark .gtc-about-media img + img {
    background: #1a1b1e;
    border-color: rgba(255, 255, 255, 0.08);
}

.agntix-dark .gtc-btn {
    background: #fff;
    color: #141414;
}

.agntix-dark .gtc-btn:hover {
    background: var(--tp-theme-primary, #c5a46e);
}

@media (max-width: 1199px) {
    .gtc-nav {
        display: none;
    }

    .gtc-header .tp-offcanvas-open-btn {
        display: inline-block;
    }
}

@media (max-width: 991px) {
    .gtc-simple {
        --gtc-header-h: 82px;
    }

    .gtc-header-top {
        display: none;
    }

    .gtc-hero {
        min-height: 560px;
    }

    .gtc-hero-content h1,
    .gtc-sec-title h2,
    .gtc-sec-title .gtc-heading {
        font-size: 36px;
    }

    .gtc-sec {
        padding: 70px 0;
    }

    .gtc-about-media img + img {
        position: static;
        width: 100%;
        margin-top: 16px;
        border: 0;
    }
}

@media (max-width: 575px) {
    .gtc-hero-content h1 {
        font-size: 32px;
    }

    .gtc-footer-form {
        flex-direction: column;
    }
}
