/* ******************************
:: 0.0 DESIGN TOKENS - Golden Grapes Trading
****************************** */
:root {
    /* Brand */
    --gg-wine:        #7a2342;
    --gg-wine-deep:   #5a1730;
    --gg-wine-light:  #9b2e57;
    --gg-gold:        #d4a574;
    --gg-gold-deep:   #b8884f;
    --gg-gold-light:  #e8c89c;

    /* Surfaces */
    --gg-cream:       #fbf6ec;
    --gg-cream-deep:  #f4ead4;
    --gg-cream-light: #fdfbf5;
    --gg-white:       #ffffff;

    /* Text */
    --gg-ink:         #1a1418;
    --gg-ink-soft:    rgba(26, 20, 24, 0.72);
    --gg-ink-muted:   rgba(26, 20, 24, 0.55);
    --gg-line:        rgba(122, 35, 66, 0.12);

    /* Effects */
    --gg-shadow-sm:   0 4px 14px rgba(26, 20, 24, 0.06);
    --gg-shadow-md:   0 10px 30px rgba(26, 20, 24, 0.08);
    --gg-shadow-lg:   0 18px 44px rgba(26, 20, 24, 0.12);
    --gg-shadow-wine: 0 10px 28px rgba(122, 35, 66, 0.22);

    /* Gradients */
    --gg-grad-wine:   linear-gradient(135deg, var(--gg-wine-light) 0%, var(--gg-wine) 60%, var(--gg-wine-deep) 100%);
    --gg-grad-gold:   linear-gradient(135deg, var(--gg-gold-light) 0%, var(--gg-gold) 60%, var(--gg-gold-deep) 100%);
    --gg-grad-mix:    linear-gradient(135deg, var(--gg-gold) 0%, var(--gg-wine) 100%);

    /* Radii */
    --gg-r-sm: 6px;
    --gg-r-md: 10px;
    --gg-r-lg: 16px;
    --gg-r-pill: 999px;
}

/* ******************************
:: 1.0 WEB FONTS
****************************** */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;900&family=Roboto:wght@300;400&display=swap');

/* ******************************
:: 2.0 IMPORT ALL CSS
****************************** */
@import url(bootstrap.min.css);
@import url(all.min.css);
@import url(../font/flaticon.css);
@import url(animate.min.css);
@import url(aos.css);
@import url(owl.carousel.min.css);
@import url(jquery.fancybox.min.css);

/* ******************************
:: 3.0 GLOBAL CSS
****************************** */
* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #222;
}

.main {
    background: #fff;
}

section,
.section {
    position: relative;
}

.container {
    width: 100%;
    margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    color: #222;
    margin-bottom: 0;
}

h1 {
    font-size: 4em;
    font-weight: 600;
    line-height: 1.2;
}

h2 {
    font-size: 40px;
    line-height: 1.3;
}

h3 {
    font-size: 20px;
    line-height: 1.2;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 14px;
    font-weight: 400;
}

p {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    color: #565656;
    margin-bottom: 0;
}

a {
    color: #444;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

a:hover,
a:focus {
    color: #0449c4;
}

a,
a:hover,
a:focus,
.btn:focus {
    text-decoration: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.text-body > a {
    text-decoration: underline;
    color: #212529;
}

ol,
ul {
    margin: 0;
    padding: 0;
}

ol li,
ul li {
    list-style: none;
}

img {
    height: auto;
    max-width: 100%;
}

/* ******************************
:: 4.0 COMMON CSS
****************************** */
.fw-3 {
    font-weight: 300;
}

.fw-4 {
    font-weight: 400;
}

.fw-5 {
    font-weight: 500;
}

.fw-6 {
    font-weight: 600;
}

.fw-7 {
    font-weight: 700;
}

.op-5 {
    opacity: 0.5;
}

.avatar-sm {
    height: 3rem;
    width: 3rem;
}

.avatar-md {
    height: 4rem;
    width: 4rem;
}

.avatar-lg {
    height: 5rem;
    width: 5rem;
}

.text-underlined,
.text-underlined:hover,
.text-underlined:focus {
    text-decoration: underline;
}

.text-primary {
    color: #7c4fe0 !important;
}

.text-secondary {
    color: #666 !important;
}

.form-control {
    font-size: 15px;
    height: 60px;
    border: none;
    outline: none;
    padding-left: 20px;
    border-radius: 8px;
    -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.form-control:focus {
    border: none;
    outline: none;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.featured-icon > span::before {
    font-size: 4.25rem;
    line-height: 1;
    color: #777;
    margin: 0;
}

.radius-100 {
    border-radius: 100px !important;
}

.h-100vh {
    height: 100vh;
}

.owl-carousel .owl-item img {
    width: auto;
}

.owl-prev:focus,
.owl-next:focus {
    outline: none;
}

/*SECTION HEADING*/
.section-heading {
    margin-bottom: 80px;
}

.section-heading > span {
    color: #222;
}

.section-heading > h2 {
    display: inline-block;
    font-size: 56px;
    font-weight: 700;
    /* text-transform: lowercase; */
    line-height: 1em;
    letter-spacing: 0;
}

@media (max-width: 991px) {
    .section-heading > h2 {
        font-size: 50px;
    }
}

@media (max-width: 575px) {
    .section-heading > h2 {
        font-size: 42px;
    }
}

/*SECTION PADDING*/
.pt_0 {
    padding-top: 0;
}

.ptb_50 {
    padding: 50px 0;
}

.ptb_100 {
    padding: 100px 0;
}

.ptb_150 {
    padding: 150px 0;
}

.ptb_180 {
    padding: 180px 0;
}

/*BUTTONS*/
.btn {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    line-height: 1;
    text-align: center;
    padding: 14px 30px;
    border: 0 none;
    border-radius: 100px;
    outline: 0 none;
    position: relative;
    z-index: 1;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn.active {
    color: #fff;
    -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn.btn-bordered {
    background: transparent none repeat scroll 0 0;
    color: #444;
}

.btn.btn-bordered:hover,
.btn.btn-bordered:focus,
.btn.btn-bordered.active {
    color: #fff;
}

.btn.btn-bordered:before,
.btn.btn-bordered-white:after {
    position: absolute;
    content: "";
    height: calc(100% + 4px);
    width: calc(100% + 4px);
    top: -2px;
    left: -2px;
    border-radius: 100px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.btn.btn-bordered:before {
    z-index: -2;
}

.btn.btn-bordered:after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    border-radius: 100px;
    background: #fff none repeat scroll 0 0;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    z-index: -1;
}

.btn.btn-bordered:hover:after,
.btn.btn-bordered:focus:after,
.btn.btn-bordered.active:after {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.btn.btn-bordered-white {
    background: transparent none repeat scroll 0 0;
    border: 2px solid #fff;
}

.btn.btn-bordered-white:hover,
.btn.btn-bordered-white:focus,
.btn.btn-bordered-white.active {
    border-color: transparent;
    outline: 0 none;
}

.btn.btn-bordered-white:after {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    z-index: -1;
}

.btn.btn-bordered-white:hover:after,
.btn.btn-bordered-white:focus:after,
.btn.btn-bordered-white.active:after {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.button-group {
    margin-top: 30px;
}

.button-group a {
    margin-right: 10px;
}

.button-group a:last-child {
    margin-right: 0;
}

.service-btn {
    position: relative;
    display: inline-block;
    font-weight: 500;
}

.homepage-5 .service-btn {
    color: rgba(255, 255, 255, .54);
}

.service-btn::after {
    position: absolute;
    content: '';
    height: 2px;
    width: 100%;
    background-color: #0449c4;
    border-radius: 4px;
    bottom: 0;
    left: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transition: -webkit-transform 0.3s ease-in 0s;
    transition: -webkit-transform 0.3s ease-in 0s;
    transition: transform 0.3s ease-in 0s;
    transition: transform 0.3s ease-in 0s, -webkit-transform 0.3s ease-in 0s;
}

.service-btn:hover::after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left;
    transform-origin: left;
}

/*BG SHAPE*/
.shape {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    line-height: 0;
    direction: ltr;
    overflow: hidden;
    z-index: -1;
}

.shape-top {
    top: -1px;
}

.shape-1 svg {
    display: block;
    width: calc(122% + 1.3px);
    height: 134px;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.shape-bottom {
    bottom: -1px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.shape-bottom svg {
    display: block;
    height: 275px;
    width: calc(228% + 1.3px);
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.homepage-2 .welcome-area .shape-bottom {
    top: auto;
    -webkit-transform: inherit;
    transform: inherit;
}

.homepage-2 .welcome-area .shape-bottom svg {
    height: 126px;
    width: calc(118% + 1.3px);
}

@media (max-width: 991px) {
    .shape-bottom svg {
        height: 112px;
    }

    .homepage-2 .welcome-area .shape-bottom svg {
        height: 68px;
    }
}

@media (max-width: 575px) {
    .homepage-2 .welcome-area .shape-bottom svg {
        height: 41px;
    }
}

.bg-shape {
    position: absolute;
    height: 190%;
    width: 100%;
    display: block;
    border-radius: 120px;
    background: linear-gradient(-47deg, #8731E8 0%, #4528DC 100%);
    bottom: 0;
    right: 0;
    -webkit-transform: translate(35%, -28%) rotate(-35deg);
    transform: translate(35%, -28%) rotate(-35deg);
    z-index: 0;
}

@media (max-width: 991px) {
    .bg-shape {
        height: 130%;
    }
}

/*BACKGROUND OVERLAY*/
.bg-overlay,
.overlay-dark {
    position: relative;
    z-index: 0;
}

.bg-overlay::after,
.overlay-dark:after {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.bg-overlay::after {
    opacity: 0.95;
    z-index: -1;
}

.overlay-dark::after {
    background-color: rgba(16, 16, 45, 1);
    opacity: 0.95;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";
    z-index: -1;
}

/*BACKGROUND COLORS*/
.color-1 {
    color: var(--gg-wine);
}

.color-2 {
    color: var(--gg-gold);
}

.color-3 {
    color: var(--gg-wine-deep);
}

.color-4 {
    color: var(--gg-gold-deep);
}

.color-5 {
    color: #ffd200;
}

.color-6 {
    color: #ff9d45;
}

.color-7 {
    color: #4285F4; /* Bright Blue */
}

.color-8 {
    color: #FF4DA6; /* Vibrant Pink */
}

.color-9 {
    color: #00C853; /* Strong Green */
}

.color-1.bg-hover:hover::after,
.color-1.bg-hover.active::after {
    background-color: var(--gg-wine);
}

.color-2.bg-hover:hover::after,
.color-2.bg-hover.active::after {
    background-color: var(--gg-gold);
}

.color-3.bg-hover:hover::after,
.color-3.bg-hover.active::after {
    background-color: var(--gg-wine-deep);
}

.color-4.bg-hover:hover::after,
.color-4.bg-hover.active::after {
    background-color: var(--gg-gold-deep);
}

.color-5.bg-hover:hover::after,
.color-5.bg-hover.active::after {
    background-color: #ffd200;
}

.color-6.bg-hover:hover::after,
.color-6.bg-hover.active::after {
    background-color: #ff9d45;
}

.color-7.bg-hover:hover::after,
.color-7.bg-hover.active::after {
    background-color: #4285F4;
}

.color-8.bg-hover:hover::after,
.color-8.bg-hover.active::after {
    background-color: #FF4DA6;
}

.color-9.bg-hover:hover::after,
.color-9.bg-hover.active::after {
    background-color: #00C853;
}

.text-muted {
    color: #888 !important;
}

.bg-grey {
    background-color: #f4f4f4;
}

.bg-inherit {
    background: inherit !important;
}

.bg-overlay::after {
    background: -webkit-radial-gradient(50% 50%, circle closest-side, var(--gg-wine-light) 0%, var(--gg-wine-deep) 100%);
}

.breadcrumb-area.bg-overlay::after {
    background: linear-gradient(-45deg, var(--gg-wine-light) 0%, var(--gg-wine-deep) 100%);
}

.btn,
.btn:active,
.btn.btn-bordered:before,
.btn.btn-bordered-white:after {
    background: linear-gradient(-45deg, var(--gg-gold) 0%, var(--gg-wine) 60%, var(--gg-wine-deep) 100%);
}

/*SOCIAL ICONS*/
.social-icons > a {
    margin: 5px;
    width: 45px;
    height: 45px;
    font-size: 20px;
    color: #fff;
    border-radius: 3px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.social-icons svg {
    display: block;
    height: 100%;
    line-height: 45px;
    margin: 0 auto;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.social-icons > a:hover svg:first-child {
    margin-top: -45px;
}

.social-icons > a.facebook {
    background-color: #3b5999 !important;
}

.social-icons > a.twitter {
    background-color: #55acee !important;
}

.social-icons > a.google-plus {
    background-color: #dd4b39 !important;
}

.social-icons > a.vine {
    background-color: #00b489 !important;
}

/*BACKGROUND IMAGES*/
/* .welcome-area {
    background: rgba(0, 0, 0, 0) url("../img/bg/welcome_bg.jpg") no-repeat fixed center center / cover;
}

.homepage-2 .welcome-area {
    background: rgba(0, 0, 0, 0) url("../img/bg/welcome_bg_2.png") no-repeat scroll center center / cover;
}

.homepage-3 .welcome-area {
    background: rgba(0, 0, 0, 0) url("../img/bg/welcome_bg_3.jpg") no-repeat scroll center center / cover;
}

.homepage-4 .welcome-area {
    background: rgba(0, 0, 0, 0) url("../img/bg/welcome_bg_4.jpg") no-repeat fixed center center / cover;
}

.cta-area {
    background: rgba(0, 0, 0, 0) url("../img/bg/cta_bg.jpg") no-repeat fixed center center / cover;
}

.breadcrumb-area {
    background: rgba(0, 0, 0, 0) url("../img/bg/inner_bg.jpg") no-repeat fixed center center / cover;
}

.blog .breadcrumb-area {
    background: rgba(0, 0, 0, 0) url("../img/bg/blog_bg.jpg") no-repeat fixed center center / cover;
}

.error-page {
    background: rgba(0, 0, 0, 0) url("../img/bg/error_bg.png") repeat-x fixed left top / cover;
}

.error-page .stars {
    background: rgba(0, 0, 0, 0) url("../img/bg/stars.svg") repeat fixed left top / contain;
} */

/* ******************************
:: 5.0 PRELOADER AREA CSS
****************************** */
.g-theme-preloader {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: default;
    z-index: 9000;
}

.g-theme-preloader .preloader-animation {
    z-index: 1000;
}

.preloader-animation .spinner {
    height: 9em;
    width: 9em;
    margin: 0 auto 3.5em auto;
    border: 3px solid rgba(0, 0, 0, 0.2);
    border-top-color: #000000;
    border-radius: 50%;
    -webkit-animation: spinner 1s infinite linear;
    animation: spinner 1s infinite linear;
}

.preloader-animation .loader {
    font: bold 5em "Poppins", sans-serif;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.preloader-animation .loader .animated-letters {
    position: relative;
    color: rgba(0, 0, 0, 0.2);
}

.loader .animated-letters:before {
    position: absolute;
    content: attr(data-text-preloader);
    top: -3px;
    left: 0;
    color: #000000;
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
    -webkit-animation: animated-letters 4s infinite;
    animation: animated-letters 4s infinite;
}

.loader .animated-letters:nth-child(2):before {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.loader .animated-letters:nth-child(3):before {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.loader .animated-letters:nth-child(4):before {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.loader .animated-letters:nth-child(5):before {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.loader .animated-letters:nth-child(6):before {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.loader .animated-letters:nth-child(7):before {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

.loader .animated-letters:nth-child(8):before {
    -webkit-animation-delay: 1.4s;
    animation-delay: 1.4s;
}

.g-theme-preloader p {
    font-family: "Poppins", sans-serif;
    letter-spacing: 8px;
    color: #3b3b3b;
}

.g-theme-preloader .loader-animation {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    font-size: 0;
    z-index: 1;
    pointer-events: none;
}

.single-loader .loader-bg {
    height: 100%;
    width: 100%;
    left: 0;
    background-color: #ffffff;
    -webkit-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
    transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

.g-theme-preloader.loaded .preloader-animation {
    opacity: 0;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
}

.g-theme-preloader.loaded .single-loader .loader-bg {
    width: 0;
    -webkit-transition: 0.7s all cubic-bezier(0.1, 0.1, 0.1, 1);
    transition: 0.7s all cubic-bezier(0.1, 0.1, 0.1, 1);
}

@-webkit-keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@-webkit-keyframes animated-letters {

    0%,
    75%,
    100% {
        opacity: 0;
        -webkit-transform: rotateY(-90deg);
        transform: rotateY(-90deg);
    }

    25%,
    50% {
        opacity: 1;
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}

@keyframes animated-letters {

    0%,
    75%,
    100% {
        opacity: 0;
        -webkit-transform: rotateY(-90deg);
        transform: rotateY(-90deg);
    }

    25%,
    50% {
        opacity: 1;
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}

@media screen and (max-width: 767px) {
    .preloader-animation .spinner {
        height: 8em;
        width: 8em;
    }

    .preloader-animation .loader {
        font: bold 3.5em "Poppins", sans-serif;
    }
}

@media screen and (max-width: 500px) {
    .preloader-animation .spinner {
        height: 7em;
        width: 7em;
    }

    .preloader-animation .loader {
        font: bold 2em "Poppins", sans-serif;
    }
}

/* ******************************
:: 6.0 SCROLL TO TOP AREA CSS
****************************** */
#scrollUp {
    position: fixed;
    right: 2%;
    bottom: 3%;
    height: 50px;
    width: 50px;
    line-height: 45px;
    border-radius: 50%;
    background-color: #191919;
    text-align: center;
    cursor: pointer;
    z-index: 500;
    display: none;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

#scrollUp > svg {
    display: block;
    height: 100%;
    font-size: 20px;
    color: #fff;
    margin: 0 auto;
}

#scrollUp:hover {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

/* ******************************
:: 7.0 HEADER AREA CSS
****************************** */
header {
    position: relative;
    z-index: 999;
}

.navbar-sticky {
    top: 0;
    background-color: #fff;
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px;
    -webkit-transition: all .15s ease-out 0s !important;
    transition: all .15s ease-out 0s !important;
}

.navbar-sticky.hidden {
    -webkit-transform: translate3d(0, -101%, 0) !important;
    transform: translate3d(0, -101%, 0) !important;
}

.navbar-sticky.visible {
    -webkit-transform: translate3d(0, 0, 0) !important;
    transform: translate3d(0, 0, 0) !important;
}

.navbar-expand {
    position: fixed;
    width: 100%;
    top: 0;
    padding: 20px 25px;
    pointer-events: initial;
    z-index: 2;
}

.navbar-expand.relative {
    position: relative;
}

.navbar-expand .navbar-nav {
    display: inline-block;
}

.navbar-expand .navbar-nav.toggle {
    display: none;
}

.navbar-expand .navbar-nav.toggle .toggle-icon {
    font-size: 20px;
}

.navbar .navbar-brand-sticky {
    display: none;
}

.navbar-sticky .navbar-brand-regular {
    display: none;
}

.navbar-sticky .navbar-brand-sticky {
    display: inline;
}

.navbar-sticky.hide {
    -webkit-transform: translateY(-100%) !important;
    transform: translateY(-100%) !important;
}

.navbar-expand .navbar-nav .nav-item {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.navbar-expand .navbar-nav ul .nav-item {
    display: block;
}

.navbar-expand .navbar-nav .nav-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    padding-right: 1rem;
    padding-left: 1rem;
}

.navbar-expand .navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, .75);
}

.navbar-expand.navbar-sticky .navbar-nav .nav-link,
.navbar-expand.navbar-light .navbar-nav .nav-link {
    color: #2c2e30;
}

.navbar-expand .navbar-nav .dropdown-menu .nav-link {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 0.9125rem;
    color: #2c2e30;
    padding: 0.625rem 1.25rem;
}

.dropdown .dropdown-menu {
    display: block;
    min-width: 14.375rem;
    margin: 0;
    padding: 0.625rem 0;
    border: none;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    visibility: hidden;
    opacity: 0;
}

.dropdown:hover > .dropdown-menu {
    visibility: visible;
    opacity: 1;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
}

.dropdown-menu .dropdown-menu {
    top: -8px;
    left: 100%;
}

.menu .items {
    width: calc(100% + 15px);
}

.menu .navbar-nav {
    line-height: 1;
}

.menu .dropdown .dropdown-menu {
    margin: 10px 0 15px 0;
    padding: 0 0 0 15px;
    -webkit-box-shadow: none;
    box-shadow: none;
    display: none;
    visibility: visible;
    opacity: 1;
}

.menu .dropdown .dropdown-menu.show {
    display: block;
}

.menu .dropdown-menu .dropdown-menu {
    position: relative;
    top: initial;
    left: initial;
}

.menu .nav-link {
    margin: 0 5px;
    padding: 10px 5px;
}

.menu .dropdown .dropdown-menu .nav-item .nav-link {
    font-size: 1rem;
    background: none;
    margin: 0 5px 16px;
    padding: 0;
}

.menu .nav-link:first-child {
    padding-left: 0;
    padding-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2e30;
}

.modal-open {
    overflow-x: hidden;
    overflow-y: hidden;
}

.dialog-animated {
    min-height: 100%;
    margin: 0 0 0 auto;
}

.modal.fade .modal-dialog.dialog-animated {
    -webkit-transform: translate(100%, 0)scale(1);
    transform: translate(100%, 0)scale(1);
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.modal.fade.show .modal-dialog.dialog-animated {
    height: 100%;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.modal-content {
    border: none;
    border-radius: 0;
    overflow-x: hidden;
}

.modal-header {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 2rem;
    border: none;
    font-weight: 600;
    border-radius: 0;
}

.modal-header .icon-close {
    font-size: 24px;
    cursor: pointer;
}

.modal-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 2rem;
}

.search-title {
    font-size: 45px;
    font-weight: 700;
    line-height: 1em;
    letter-spacing: 0;
}

/* ******************************
:: 8.0 WELCOME AREA CSS
****************************** */
.welcome-area {
    height: 800px;
    z-index: 1;
}

.welcome-intro h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1em;
    letter-spacing: 0;
}

.welcome-intro p {
    font-size: 16px;
}

.welcome-thumb-wrapper {
    position: relative;
    display: block;
    width: 100%;
}

.welcome-thumb-2,
.welcome-thumb-3,
.welcome-thumb-4,
.welcome-thumb-5,
.welcome-thumb-6 {
    position: absolute;
}

.welcome-thumb-2 {
    top: 50%;
    left: 0;
}

.welcome-thumb-3 {
    top: 55%;
    left: 36%;
}

.welcome-thumb-4 {
    top: 94%;
    right: 0;
}

.welcome-thumb-5 {
    top: -18%;
    left: 25%;
}

.welcome-thumb-6 {
    top: -9%;
    right: 15%;
}

.welcome-animation {
    position: relative;
    -webkit-animation: bounceHero 5s ease-in-out infinite;
    animation: bounceHero 5s ease-in-out infinite;
}

.welcome-thumb-2 .welcome-animation {
    -webkit-animation-duration: 6s;
    animation-duration: 6s;
}

.welcome-thumb-3 .welcome-animation {
    -webkit-animation-duration: 8s;
    animation-duration: 8s;
}

.welcome-thumb-4 .welcome-animation {
    -webkit-animation-duration: 4s;
    animation-duration: 4s;
}

.welcome-thumb-5 .welcome-animation {
    -webkit-animation-duration: 6s;
    animation-duration: 6s;
}

.welcome-thumb-6 .welcome-animation {
    -webkit-animation-duration: 7s;
    animation-duration: 7s;
}

@-webkit-keyframes bounceHero {
    0% {
        top: 0px;
    }

    50% {
        top: 25px;
    }

    100% {
        top: 0px;
    }
}

@keyframes bounceHero {
    0% {
        top: 0px;
    }

    50% {
        top: 25px;
    }

    100% {
        top: 0px;
    }
}

.welcome-area.bg-overlay::after {
    z-index: -2;
}

.welcome-area .welcome-shape {
    position: absolute;
    top: auto;
    bottom: -6px;
    left: 0;
    right: 0;
    z-index: -1;
}

/* ******************************
:: 8.1 HOMEPAGE-2 AREA CSS
****************************** */
.homepage-2 .btn.btn-bordered::before,
.homepage-2 .btn.btn-bordered-white::after,
.homepage-2 .bg-overlay::after,
.homepage-2 .benifits-item::after {
    background: linear-gradient(135deg, #ce3438 0%, #0449c4 100%);
}

/* ******************************
:: 8.2 HOMEPAGE-3 AREA CSS
****************************** */
.homepage-3 .btn.btn-bordered::before,
.homepage-3 .btn.btn-bordered-white::after,
.homepage-3 .bg-overlay::after,
.homepage-3 .grad-hover::before {
    background: linear-gradient(135deg, #10054d 0%, #45108a 100%);
}

.homepage-3 .play-icon {
    color: #45108a;
}

.homepage-3 .welcome-thumb-2 {
    top: -25%;
    left: 30%;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    z-index: 3;
}

.homepage-3 .welcome-thumb-3 {
    top: -13%;
    left: 4%;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    z-index: 2;
}

.homepage-3 .welcome-thumb-4 {
    top: 10%;
    left: -15%;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    z-index: 1;
}

.homepage-3 .welcome-thumb {
    position: relative;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    left: -100px;
}

.homepage-3 .welcome-thumb-1 {
    position: relative;
    display: inline-block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

/* ******************************
:: 8.3 HOMEPAGE-4 AREA CSS
****************************** */
.homepage-4 .btn.btn-bordered::before,
.homepage-4 .btn.btn-bordered-white::after,
.homepage-4 .bg-overlay::after,
.homepage-4 .grad-hover::before {
    background: linear-gradient(45deg, #8340ff 15%, #5900ff 65%);
}

/* ******************************
:: 8.4 HOMEPAGE-5 AREA CSS
****************************** */
.dark-bg,
body.dark,
.dark .bg-overlay::after,
.dark .dark-bg,
.dark .navbar-sticky-moved-up {
    background: #06052F !important;
}

.homepage-5 .btn:active,
.homepage-5 .btn.btn-bordered:before,
.homepage-5 .btn.btn-bordered-white:after {
    background: linear-gradient(45deg, #8340ff 15%, #5900ff 65%);
}

.homepage-5 .welcome-thumb-2 {
    top: 25%;
    left: -5%;
}

/* ***********************************
:: 9 PROMO AREA CSS
**************************************/
.single-promo {
    position: relative;
    -webkit-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.12);
    box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    overflow: hidden;
}

/* ***********************************
:: StandOut AREA CSS
**************************************/
.single-standout {
    position: relative;
    -webkit-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.12);
    box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    overflow: hidden;
    background-color: #fff;
}

.bg-hover {
    position: relative;
}

.bg-hover::after {
    position: absolute;
    content: '';
    height: 10px;
    width: 100%;
    left: 0;
    -webkit-transition: background-color 0.3s ease 0s;
    transition: background-color 0.3s ease 0s;
}

.bg-hover.hover-top::after {
    top: 0;
}

.bg-hover.hover-bottom::after {
    bottom: 0;
}

.single-promo h3 {
    font-size: 55px;
    font-weight: 700;
    text-transform: lowercase;
    line-height: 0.9em;
    letter-spacing: 0;
}

.homepage-3 .single-promo h3 {
    font-size: 38px;
}

.single-promo p {
    -webkit-transition: color 0.3s ease 0s;
    transition: color 0.3s ease 0s;
}

.single-standout h3 {
    font-size: 55px;
    font-weight: 700;
    text-transform: lowercase;
    line-height: 0.9em;
    letter-spacing: 0;
}

.homepage-3 .single-standout h3 {
    font-size: 38px;
}

.single-standout p {
    -webkit-transition: color 0.3s ease 0s;
    transition: color 0.3s ease 0s;
}

.promo-wrapper {
    position: relative;
    z-index: 2;
}

.grad-hover {
    position: relative;
    background: transparent;
    border-radius: 0;
    -webkit-transition: 300ms ease;
    transition: 300ms ease;
    -webkit-transition-property: color, background, mix-blend-mode, opacity, visibility, height;
    transition-property: color, background, mix-blend-mode, opacity, visibility, height;
}

.grad-hover::before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 300ms ease;
    transition: 300ms ease;
    -webkit-transition-property: color, background, mix-blend-mode, opacity, visibility, height;
    transition-property: color, background, mix-blend-mode, opacity, visibility, height;
    z-index: 0;
}

.grad-hover:hover::before,
.grad-hover.active::before {
    visibility: visible;
    opacity: 0.84;
}

.grad-hover h3,
.grad-hover p {
    -webkit-transition: color 0.3s ease 0s;
    transition: color 0.3s ease 0s;
}

.grad-hover:hover h3,
.grad-hover.active h3,
.grad-hover:hover p,
.grad-hover.active p {
    color: #fff;
    opacity: 1;
}

/* ******************************
:: 10.0 CONTENT AREA CSS
****************************** */
.content-area {
    z-index: 1;
}

.single-content-list span {
    font-size: 16px;
}

/*Profile Circle Wrapper*/
.profile-circle-wrapper {
    position: relative;
    height: 397px;
    width: 517px;
    margin: auto;
    pointer-events: fill;
    cursor: pointer;
    -webkit-transform: perspective(100px), translate3d(0, 0, 0);
    transform: perspective(1000px);
}

.folder-img {
    position: relative;
    /* top: 210px;
    left: 25px; */
    z-index: 1;
}

.profile-inner {
    position: absolute;
    height: 397px;
    width: 517px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border-radius: 50%;
    z-index: 2;
    -webkit-transition: 3s all;
    transition: 3s all;
}

.profile-circle {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid #ededed;
    border-radius: 50%;
    margin: 25px auto 0;
}

.circle-lg {
    height: 465px;
    width: 465px;
}

.circle-md {
    height: 335px;
    width: 335px;
    margin-top: 85px;
}

.circle-sm {
    height: 220px;
    width: 220px;
    margin-top: 145px;
}

.profile-icon {
    position: absolute;
    display: block;
    height: 55px;
    width: 55px;
    margin: 0 auto;
    -webkit-transition: 1s all;
    transition: 1s all;
}

.profile-icon img {
    -webkit-transform: rotate(-90deg);
    display: block;
}

.icon-1 {
    top: 40px;
    left: 35px;
    -webkit-transform-origin: 350% 182px;
    transform-origin: 350% 182px;
}

.icon-2 {
    top: 40px;
    left: 370px;
    -webkit-transform-origin: -135px 185px;
    transform-origin: -135px 185px;
}

.icon-3 {
    top: 210px;
    left: 425px;
    -webkit-transform-origin: -355% 12px;
    transform-origin: -355% 12px;
}

.icon-4 {
    top: 422px;
    left: 140px;
    -webkit-transform-origin: 160% -191px;
    transform-origin: 160% -191px;
}

.icon-5 {
    top: -28px;
    left: 130px;
    -webkit-transform-origin: 50% 193px;
    transform-origin: 50% 193px;
}

.icon-6 {
    top: 65px;
    left: -15px;
    -webkit-transform-origin: 328% 100px;
    transform-origin: 328% 100px;
}

.icon-7 {
    top: 200px;
    left: -20px;
    -webkit-transform-origin: 328% -35px;
    transform-origin: 328% -35px;
}

.icon-8 {
    top: -15px;
    left: 120px;
    -webkit-transform-origin: -28% 117px;
    transform-origin: -28% 117px;
}

.icon-9 {
    top: 175px;
    left: 80px;
    -webkit-transform-origin: 46% -68px;
    transform-origin: 46% -68px;
}

.icon-8,
.icon-9 {
    height: 65px;
    width: 65px;
}

/*Circle SM Animation*/
.circle-animation .icon-3-img,
.circle-animation .icon-4-img,
.circle-animation .icon-2-img,
.circle-animation .icon-1-img {
    -webkit-animation: rotateCircle 80s 3.01s infinite linear;
    animation: rotateCircle 80s 3.01s infinite linear backwards;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
}

.circle-animation .icon-1,
.circle-animation .icon-2,
.circle-animation .icon-3,
.circle-animation .icon-4 {
    -webkit-animation: rotateCircle 80s 3s infinite linear;
    animation: rotateCircle 80s 3s infinite linear;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

/*Circle MD Animation*/
.circle-animation .icon-5-img,
.circle-animation .icon-6-img,
.circle-animation .icon-7-img {
    -webkit-animation: rotateCircle 90s 1.01s infinite linear;
    animation: rotateCircle 90s 1.01s infinite linear;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;

}

.circle-animation .icon-5,
.circle-animation .icon-6,
.circle-animation .icon-7 {
    -webkit-animation: rotateCircle 90s 1s infinite linear;
    animation: rotateCircle 90s 1s infinite linear;
}

.circle-animation .icon-8,
.circle-animation .icon-9 {
    -webkit-animation: rotateCircle 35s 2s infinite linear;
    animation: rotateCircle 35s 2s infinite linear;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

/*Circle LG Animation*/
.circle-animation .icon-8-img,
.circle-animation .icon-9-img {
    -webkit-animation: rotateCircle 35s 2.01s infinite linear;
    animation: rotateCircle 35s 2.01s infinite linear;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
}

@-webkit-keyframes rotateCircle {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes rotateCircle {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.profile-icon {
    display: none;
}

/* ******************************
:: 11.0 SERVICE AREA CSS
****************************** */
.service-area {
    z-index: 1;
}

.single-service > span {
    display: inline-block;
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.5rem;
    text-align: center;
    border-radius: 10px;
}

.single-service > span::before {
    font-size: 2.5rem;
    margin: 0;
    line-height: inherit !important;
}

.single-service > span.icon-bg-1 {
    background-color: rgba(190, 99, 249, 0.15);
}

.single-service > span.icon-bg-2 {
    background-color: rgba(38, 198, 218, 0.15);
}

.single-service > span.icon-bg-3 {
    background-color: rgba(252, 87, 59, 0.15);
}

.single-service > span.icon-bg-4 {
    background-color: rgba(52, 255, 146, 0.15);
}

.single-service > span.icon-bg-5 {
    background-color: rgba(255, 210, 0, 0.15);
}

.single-service > span.icon-bg-6 {
    background-color: rgba(255, 157, 69, 0.15);
}

.single-service > span.icon-bg-7 {
    background-color: rgba(66, 133, 244, 0.15); /* Bright Blue */
}

.single-service > span.icon-bg-8 {
    background-color: rgba(255, 77, 166, 0.15); /* Vibrant Pink */
}

.single-service > span.icon-bg-9 {
    background-color: rgba(0, 200, 83, 0.15); /* Bold Green */
}

.single-service h3 {
    font-size: 30px;
    font-weight: 600;
    line-height: 1em;
    /* line-height: 0.9em; */
    letter-spacing: 0;
}

.single-service.service-gallery {
    margin-bottom: 45px;
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.01);
    box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.01);
    -webkit-transition: -webkit-box-shadow, -webkit-transform .4s cubic-bezier(.4, 0, .2, 1);
    transition: -webkit-box-shadow, -webkit-transform .4s cubic-bezier(.4, 0, .2, 1);
    transition: box-shadow, transform .4s cubic-bezier(.4, 0, .2, 1);
    transition: box-shadow, transform .4s cubic-bezier(.4, 0, .2, 1), -webkit-box-shadow, -webkit-transform .4s cubic-bezier(.4, 0, .2, 1);
}

.single-service.service-gallery .service-content {
    padding: 2rem;
}

.single-service.service-gallery:hover {
    -webkit-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.05);
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.homepage-6 .single-service.service-gallery {
    -webkit-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.08);
}

/* ******************************
:: 12.0 PORTFOLIO AREA CSS
****************************** */
.portfolio-area .items {
    overflow: initial !important;
}

.portfolio-menu .btn {
    background: transparent;
    color: #3a3a3a;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    position: relative;
    box-shadow: none;
}

.portfolio-menu .btn::after {
    position: absolute;
    content: '';
    height: 2px;
    width: 0;
    bottom: 5px;
    left: 50%;
    background-color: #0F4C81;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.portfolio-menu .btn.active {
    color: #0F4C81;
}

.portfolio-menu .btn.active::after {
    width: 60%;
    visibility: visible;
    opacity: 1;
}

.single-case-studies {
    position: relative;
    margin-bottom: 45px;
}

.single-case-studies > a > img {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: -webkit-transform .3s cubic-bezier(.4, 0, .2, 1), -webkit-filter 0.4s;
    transition: -webkit-transform .3s cubic-bezier(.4, 0, .2, 1), -webkit-filter 0.4s;
    transition: transform .3s cubic-bezier(.4, 0, .2, 1), filter 0.4s;
    transition: transform .3s cubic-bezier(.4, 0, .2, 1), filter 0.4s, -webkit-transform .3s cubic-bezier(.4, 0, .2, 1), -webkit-filter 0.4s;
}

.case-studies-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #ce3438 0%, #0449c4 100%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    opacity: 0;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: opacity .3s, -webkit-transform .3s cubic-bezier(.4, 0, .2, 1);
    transition: opacity .3s, -webkit-transform .3s cubic-bezier(.4, 0, .2, 1);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1), opacity .3s;
    transition: transform .3s cubic-bezier(.4, 0, .2, 1), opacity .3s, -webkit-transform .3s cubic-bezier(.4, 0, .2, 1);
}

.single-case-studies:hover .case-studies-overlay {
    opacity: 0.89;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.single-case-studies:hover > a > img {
    -webkit-filter: blur(3px);
    filter: blur(3px);
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.portfolio-area.style-two .single-case-studies:hover .case-studies-overlay,
.portfolio-area.style-two .single-case-studies:hover > a > img {
    -webkit-transform: inherit;
    transform: inherit;
}

/* ******************************
:: 13.0 VIDEO AREA CSS
****************************** */
.video-area {
    z-index: 1;
}

.video-content > .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 1;
    z-index: 1;
}

.video-thumb {
    position: relative;
    height: 100%;
    width: 100%;
    border-radius: 5px;
    -webkit-box-shadow: 0 0.313rem 0.875rem rgba(45, 49, 54, 0.09);
    box-shadow: 0 0.313rem 0.875rem rgba(45, 49, 54, 0.09);
    opacity: 0.89;
    -webkit-transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    z-index: 0;
}

.single-counter span {
    font-size: 3.4em;
}

.single-counter h4 {
    font-size: 16px;
}

.play-btn {
    position: relative;
    display: inline-block;
    height: 80px;
    width: 80px;
    background-color: #fff;
    border-radius: 50%;
}

.btn-circle {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
}

.play-icon {
    font-size: 22px;
    color: #0449c4;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@-webkit-keyframes grow {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    to {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes grow {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    to {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0;
    }
}

.play-animation {
    -webkit-animation: grow 3s infinite;
    animation: grow 3s infinite;
}

.animation-short {
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}

.homepage-2 .play-btn {
    background-color: rgba(252, 87, 59, 0.75);
}

.homepage-2 .btn-circle {
    background-color: rgba(252, 87, 59, 0.2);
}

.homepage-2 .play-icon {
    color: #fff;
}

.homepage-3 .welcome-intro .play-btn {
    height: 65px;
    width: 65px;
    line-height: 1;
    margin-left: 10px;
}

.homepage-3 .welcome-intro .play-icon {
    font-size: 20px;
}

/* ******************************
:: 14.0 PRICE PLAN AREA CSS
****************************** */
.single-price-plan {
    -webkit-box-shadow: 0 0.313rem 0.875rem rgba(45, 49, 54, 0.09);
    box-shadow: 0 0.313rem 0.875rem rgba(45, 49, 54, 0.09);
    background-color: #fff;
    border-radius: 1rem;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    overflow: hidden;
}

.plan-title > h3 {
    font-size: 30px;
    letter-spacing: 0;
}

.plan-title span {
    font-size: 15px;
    font-weight: 600;
    padding: .5em;
}

.plan-price span:not(.h1) {
    font-size: 34px;
}

.plan-price sub {
    top: 0;
    font-size: 24px;
}

.plan-features > li {
    color: #333;
}

.plan-button > .btn {
    display: block;
}

.dark-shadow {
    -webkit-box-shadow: 0px 0px 30px 0px rgba(217, 0, 255, 0.47) !important;
    box-shadow: 0px 0px 30px 0px rgba(217, 0, 255, 0.47) !important;
}

/* ******************************
:: 15.0 FAQ AREA CSS
****************************** */
.card-header .btn {
    position: relative;
    display: block;
    width: 100%;
    background: transparent;
    color: #222;
    text-align: left;
}

.card-header .btn.collapsed {
    color: #444;
}

.card-header .btn:hover,
.card-header .btn:focus,
.card-header .btn:active {
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
}

.card-header .btn::after,
.card-header .btn.collapsed::after {
    position: absolute;
    top: 50%;
    left: calc(100% - 1.25rem);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 18px;
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
}

.card-header .btn::after {
    content: '\f107';
}

.card-header .btn.collapsed::after {
    content: '\f105';
}

.faq-area.style-two .card-header .btn::after {
    display: none;
}

.faq-area.style-two .card-header .btn {
    cursor: inherit;
}

/* ******************************
:: 16.0 REVIEWS AREA CSS
****************************** */
.single-review {
    position: relative;
    background-color: #f4f4f4;
    -webkit-box-shadow: 0 10px 50px 0px rgba(0, 0, 0, 0.12);
    box-shadow: 0 10px 50px 0px rgba(0, 0, 0, 0.12);
    -webkit-transform: scale(0.96);
    transform: scale(0.96);
    -webkit-transition: background-color, -webkit-transform 0.3s ease-in-out 0s;
    transition: background-color, -webkit-transform 0.3s ease-in-out 0s;
    transition: background-color, transform 0.3s ease-in-out 0s;
    transition: background-color, transform 0.3s ease-in-out 0s, -webkit-transform 0.3s ease-in-out 0s;
    z-index: 1;
}

.owl-item.active.center .single-review {
    background-color: #fff;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.review-area.bg-overlay::after {
    opacity: 1;
}

.single-review .quot-icon {
    position: absolute;
    top: 8%;
    left: 13%;
}

/* ******************************
:: 17.0 TEAM AREA CSS
****************************** */
.team-area {
    z-index: 1;
}

.single-team {
    margin-bottom: 45px;
    -webkit-transition: -webkit-transform .4s cubic-bezier(.4, 0, .2, 1);
    transition: -webkit-transform .4s cubic-bezier(.4, 0, .2, 1);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1), -webkit-transform .4s cubic-bezier(.4, 0, .2, 1);
}

.single-team:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

/* ******************************
:: 18.0 BLOG AREA CSS
****************************** */
.blog-area {
    z-index: 1;
}

.single-blog {
    background-color: #fff;
    -webkit-box-shadow: 0 0.313rem 0.875rem rgba(45, 49, 54, 0.09);
    box-shadow: 0 0.313rem 0.875rem rgba(45, 49, 54, 0.09);
    border-radius: 4px;
    -webkit-transition: -webkit-box-shadow, -webkit-transform .4s cubic-bezier(.4, 0, .2, 1);
    transition: -webkit-box-shadow, -webkit-transform .4s cubic-bezier(.4, 0, .2, 1);
    transition: box-shadow, transform .4s cubic-bezier(.4, 0, .2, 1);
    transition: box-shadow, transform .4s cubic-bezier(.4, 0, .2, 1), -webkit-box-shadow, -webkit-transform .4s cubic-bezier(.4, 0, .2, 1);
}

.blog-thumb img {
    display: block;
    width: 100%;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.blog-title {
    font-size: 22px;
    font-weight: 700;
}

.blog-content {
    padding: 2rem;
}

.blog-content > p {
    line-height: 1.8;
}

.blog-btn {
    position: relative;
    display: inline-block;
    font-weight: 600;
}

.blog-btn::after {
    position: absolute;
    content: '\f101';
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
    opacity: 0;
    visibility: hidden;
    top: 50%;
    -webkit-transform: translateX(3px) translateY(-50%);
    transform: translateX(3px) translateY(-50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.blog-btn:hover::after,
.blog-btn:focus::after {
    visibility: visible;
    opacity: 1;
    top: 50%;
    -webkit-transform: translateX(5px) translateY(-50%);
    transform: translateX(5px) translateY(-50%);
}

.single-blog:hover {
    -webkit-transform: translateY(-7.5px);
    transform: translateY(-7.5px);
    -webkit-box-shadow: 0 0.313rem 0.875rem rgba(45, 49, 54, 0.12);
    box-shadow: 0 0.313rem 0.875rem rgba(45, 49, 54, 0.12);
}

/* ******************************
:: 19.0 BREADCRUMB AREA CSS
****************************** */
.breadcrumb-area {
    height: 550px;
    z-index: 1;
}

.breadcrumb-content > h2 {
    display: inline-block;
    font-size: 60px;
    font-weight: 900;
    line-height: 1em;
    letter-spacing: 0;
    background-image: linear-gradient(45deg, var(--gg-gold) 15%, var(--gg-wine) 65%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.breadcrumb {
    background-color: transparent;
    margin: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #fff;
}

.blog .breadcrumb-item > a,
.blog .breadcrumb-item,
.blog .breadcrumb-item::before,
.blog .breadcrumb-item.active {
    color: #fff;
}

/* ******************************
:: 20.0 BLOG PAGE AREA CSS
****************************** */
.blog .single-blog,
.single-blog {
    margin-bottom: 45px;
}

.pagination > li > a {
    font-size: 14px;
    font-weight: 500;
    width: 40px;
    display: inline-block;
    border: 1px solid #ededed;
    border-radius: 3px;
    color: #444;
    text-align: center;
}

.pagination > li.active > a {
    background: linear-gradient(45deg, var(--gg-gold) 15%, var(--gg-wine) 65%);
    color: #fff;
    border: 1px solid var(--gg-wine);
}

.pagination li:first-child a,
.pagination li:last-child a {
    display: block;
    border: none;
    position: relative;
}

.pagination li:first-child:hover a,
.pagination li:last-child:hover a {
    background: none;
    color: inherit;
    border: none;
}

.pagination li:first-child:hover a {
    -webkit-transform: translateX(-4px);
    transform: translateX(-4px);
}

.pagination li:last-child:hover a {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
}

/* **********************************
:: 21.0 BLOG PAGE DETAILS AREA CSS
*************************************/
/*Single Widget*/
.single-widget {
    margin-bottom: 35px;
}

.single-widget h5 {
    font-size: 20px;
    font-weight: 700;
    border-bottom: 1px solid #eee;
}

.sidebar .single-widget:last-child {
    margin-bottom: 0;
}

.widget-content a {
    font-weight: 500;
}

/*Search Widget*/
.search-widget input {
    background-color: #f7f7f7;
    border: 1px solid #eee;
    color: #444;
    height: 45px;
    padding: 10px 15px;
    width: 100%;
    -webkit-transition: -webkit-box-shadow 1s ease 0s;
    transition: -webkit-box-shadow 1s ease 0s;
    transition: box-shadow 1s ease 0s;
    transition: box-shadow 1s ease 0s, -webkit-box-shadow 1s ease 0s;
}

.search-widget input:focus {
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.widget-items li a.active {
    color: #7c4fe0;
}

.widget-items li a span {
    line-height: 1.4;
}

/*Post Widget*/
.post-thumb img {
    border: 1px solid #eee;
}

.post-widget .widget-items .post-date {
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}

.post-content h6 {
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
}

/*Tags Widget*/
.tags-widget .single-accordion {
    border: none;
}

.tags-widget-items a {
    border: 1px solid #e5e5e5;
    font-size: 12px;
}

/*Blog Details*/
.g-theme-blog .meta-info {
    border-bottom: 1px solid #eee;
}

.meta-info > ul > li {
    position: relative;
}

.meta-info > ul > li::after {
    position: absolute;
    content: '';
    height: 30%;
    width: 2px;
    background-color: #777;
    top: 50%;
    left: 100%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.meta-info > ul > li:last-child::after {
    display: none;
}

.g-theme-blog .blog-share a {
    padding: 0 10px;
}

.blog-share .social-icons > a {
    width: 35px;
    height: 35px;
    font-size: 16px;
}

.blog-share .social-icons > a.facebook:hover {
    background-color: #3b5999 !important;
    color: #fff;
}

.blog-share .social-icons > a.twitter:hover {
    background-color: #55acee !important;
    color: #fff;
}

.blog-share .social-icons > a.google-plus:hover {
    background-color: #dd4b39 !important;
    color: #fff;
}

.blog-share .social-icons svg {
    line-height: 35px;
}

.blog-share .social-icons > a:hover svg:first-child {
    margin-top: -35px;
}

.g-theme-blog .blog-details .blog-title > a {
    font-size: 30px;
}

.blockquote {
    background-color: #f7f7f7;
    position: relative;
}

.blockquote::after {
    position: absolute;
    content: '';
    height: 100%;
    width: 2px;
    background: linear-gradient(45deg, var(--gg-gold) 15%, var(--gg-wine) 65%);
    top: 0;
    left: 0;
}

.admin {
    border-top: 1px solid #eee;
}

.admin-thumb img,
.comments-thumb img {
    border: 1px solid #eee;
}

.comments,
.blog-contact {
    margin-left: 200px;
}

.single-comments {
    border: 1px solid #eee;
    margin-bottom: 1rem;
}

.single-comments:last-of-type {
    margin-bottom: 0;
}

.comments-content > h5 > a:last-child {
    font-size: 14px;
    font-weight: 500;
    color: #7c4fe0;
}

.contact-box.comment-box {
    text-align: left;
}

.contact-box.comment-box .form-group input {
    font-size: 15px;
    border: 1px solid #e5e5e5;
}

.contact-box.comment-box .form-group textarea {
    font-size: 15px;
    border: 1px solid #e5e5e5;
    height: 150px;
}

/* ******************************
:: 22.0 CONTACT AREA CSS
****************************** */
.contact-info {
    -webkit-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.12);
    box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    overflow: hidden;
}

.contact-info h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 0.9em;
    letter-spacing: 0;
}

.contact-box .form-group input,
.contact-box .form-group textarea {
    font-size: 14px;
    height: 50px;
    padding: 0 15px;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.contact-box .form-group textarea {
    height: 160px;
    padding: 15px;
}

.contact-box .form-group input::-webkit-input-placeholder,
.contact-box .form-group textarea::-webkit-input-placeholder {
    color: rgba(68, 68, 68, 0.6);
}

.contact-box .form-group input:-ms-input-placeholder,
.contact-box .form-group textarea:-ms-input-placeholder {
    color: rgba(68, 68, 68, 0.6);
}

.contact-box .form-group input::placeholder,
.contact-box .form-group textarea::placeholder {
    color: rgba(68, 68, 68, 0.6);
}

/*Map Area*/
.map-area {
    height: 550px;
    width: 100%;
}

.map-area iframe {
    height: 100%;
    width: 100%;
}

/* ******************************
:: 23.0 FOOTER AREA CSS
****************************** */
.footer-area .social-icons a {
    font-size: 22px;
}

.dark .footer-area .copyright-area {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.blog .footer-area {
    background: #191919;
}

.blog .footer-area .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ******************************
:: 24.0 ERROR AREA CSS
****************************** */
.error-page {
    height: 100%;
    overflow: hidden;
}

.error-content {
    padding: 17% 5% 10% 5%;
}

.error-objects img {
    pointer-events: none;
    z-index: 90;
}

.thumb-1 {
    position: absolute;
    top: 75%;
    width: 40px;
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    pointer-events: none;
    -webkit-animation: rocket-movement 200s linear infinite both running;
    animation: rocket-movement 200s linear infinite both running;
    z-index: 95;
}

.thumb-2 {
    position: absolute;
    top: 20%;
    left: 15%;
    width: 100px;
    z-index: 90;
}

.thumb-3 {
    position: absolute;
    top: 12%;
    left: 25%;
    width: 80px;
}

.thumb-4 {
    width: 140px;
    -webkit-animation: rotate-astronaut 200s infinite linear both alternate;
    animation: rotate-astronaut 200s infinite linear both alternate;
}

.astronaut {
    position: absolute;
    top: 60%;
    right: 20%;
    will-change: transform;
    -webkit-animation: move-astronaut 50s infinite linear both alternate;
    animation: move-astronaut 50s infinite linear both alternate;
    z-index: 110 !important;
}

.error-thumb {
    position: relative;
    width: 300px;
    pointer-events: none;
    z-index: 100;
}

.glowing-stars .star {
    position: absolute;
    height: 3px;
    width: 3px;
    background-color: #fff;
    border-radius: 100%;
    opacity: 0.3;
    will-change: opacity;
}

.glowing-stars .star:nth-child(1) {
    top: 80%;
    left: 25%;
    -webkit-animation: glow-star 2s infinite ease-in-out alternate 1s;
    animation: glow-star 2s infinite ease-in-out alternate 1s;
}

.glowing-stars .star:nth-child(2) {
    top: 20%;
    left: 40%;
    -webkit-animation: glow-star 2s infinite ease-in-out alternate 3s;
    animation: glow-star 2s infinite ease-in-out alternate 3s;
}

.glowing-stars .star:nth-child(3) {
    top: 25%;
    left: 25%;
    -webkit-animation: glow-star 2s infinite ease-in-out alternate 5s;
    animation: glow-star 2s infinite ease-in-out alternate 5s;
}

.glowing-stars .star:nth-child(4) {
    top: 75%;
    left: 80%;
    -webkit-animation: glow-star 2s infinite ease-in-out alternate 7s;
    animation: glow-star 2s infinite ease-in-out alternate 7s;
}

.glowing-stars .star:nth-child(5) {
    top: 90%;
    left: 50%;
    -webkit-animation: glow-star 2s infinite ease-in-out alternate 9s;
    animation: glow-star 2s infinite ease-in-out alternate 9s;
}

@-webkit-keyframes rocket-movement {
    100% {
        -webkit-transform: translate(1200px, -600px);
        transform: translate(1200px, -600px);
    }
}

@keyframes rocket-movement {
    100% {
        -webkit-transform: translate(1200px, -600px);
        transform: translate(1200px, -600px);
    }
}

@-webkit-keyframes spin-earth {
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
        -webkit-transition: -webkit-transform 20s;
        transition: -webkit-transform 20s;
        transition: transform 20s;
        transition: transform 20s, -webkit-transform 20s;
    }
}

@keyframes spin-earth {
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
        -webkit-transition: -webkit-transform 20s;
        transition: -webkit-transform 20s;
        transition: transform 20s;
        transition: transform 20s, -webkit-transform 20s;
    }
}

@-webkit-keyframes move-astronaut {
    100% {
        -webkit-transform: translate(-160px, -160px);
        transform: translate(-160px, -160px);
    }
}

@keyframes move-astronaut {
    100% {
        -webkit-transform: translate(-160px, -160px);
        transform: translate(-160px, -160px);
    }
}

@-webkit-keyframes rotate-astronaut {
    100% {
        -webkit-transform: rotate(-720deg);
        transform: rotate(-720deg);
    }
}

@keyframes rotate-astronaut {
    100% {
        -webkit-transform: rotate(-720deg);
        transform: rotate(-720deg);
    }
}

@-webkit-keyframes glow-star {
    40% {
        -webkit-opacity: 0.3;
        opacity: 0.3;
    }

    90%,
    100% {
        -webkit-opacity: 1;
        opacity: 1;
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        border-radius: 999999px;
    }
}

@keyframes glow-star {
    40% {
        -webkit-opacity: 0.3;
        opacity: 0.3;
    }

    90%,
    100% {
        -webkit-opacity: 1;
        opacity: 1;
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        border-radius: 999999px;
    }
}

/* ******************************
:: 25.0 RTL AREA CSS
****************************** */
.rtl .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.rtl .btn.btn-bordered::before,
.rtl .btn.btn-bordered-white::after,
.rtl .bg-overlay::after,
.rtl .grad-hover::before {
    background: linear-gradient(135deg, #E0040B 0%, #fc5130 100%);
}

/* About us */

/* #about .shape-bottom svg {
    left: 100%;
} */

.navbar-brand img {
    object-fit: contain;
    height: 45px;
}
.navbar-brand {
    background: rgba(255, 255, 255, 1); /* semi-transparent white */
    padding: 6px 12px; /* adjust as needed */
    border-radius: 6px; /* rounded edges */
    display: inline-block;
}

/* ******************************
:: HISTORY TIMELINE
****************************** */
.gg-timeline {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    padding: 20px 0;
}

.gg-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    margin-left: -1.5px;
    background: linear-gradient(180deg, var(--gg-gold) 0%, var(--gg-wine) 50%, var(--gg-wine-deep) 100%);
    border-radius: 3px;
}

.gg-timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
}

.gg-timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.gg-timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.gg-timeline-item::before {
    content: "";
    position: absolute;
    top: 32px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gg-white);
    border: 4px solid var(--gg-wine);
    box-shadow: 0 0 0 4px rgba(122, 35, 66, 0.18);
    z-index: 2;
}

.gg-timeline-item:nth-child(odd)::before {
    right: -9px;
}

.gg-timeline-item:nth-child(even)::before {
    left: -9px;
}

.gg-timeline-content {
    position: relative;
    background: #ffffff;
    padding: 28px 32px;
    border-radius: 8px;
    box-shadow: 0 6px 24px rgba(16, 16, 45, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gg-timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(16, 16, 45, 0.12);
}

.gg-timeline-content::after {
    content: "";
    position: absolute;
    top: 30px;
    width: 0;
    height: 0;
    border-style: solid;
}

.gg-timeline-item:nth-child(odd) .gg-timeline-content::after {
    right: -10px;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #ffffff;
}

.gg-timeline-item:nth-child(even) .gg-timeline-content::after {
    left: -10px;
    border-width: 10px 10px 10px 0;
    border-color: transparent #ffffff transparent transparent;
}

.gg-timeline-year {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gg-white);
    background: linear-gradient(-45deg, var(--gg-gold) 0%, var(--gg-wine) 60%, var(--gg-wine-deep) 100%);
    padding: 4px 14px;
    border-radius: var(--gg-r-pill);
    margin-bottom: 12px;
}

.gg-timeline-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #222;
}

.gg-timeline-content p {
    margin-bottom: 0;
    color: #555;
    line-height: 1.7;
}

/* ******************************
:: EXECUTIVE TEAM
****************************** */
.team-area .team-member {
    background: #ffffff;
    border-radius: 8px;
    padding: 28px 20px;
    box-shadow: 0 6px 24px rgba(16, 16, 45, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
}

.team-area .team-member:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(16, 16, 45, 0.12);
}

.team-area .team-thumb {
    width: 160px;
    height: 160px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--gg-cream);
    box-shadow: 0 0 0 3px rgba(122, 35, 66, 0.22);
    background: var(--gg-cream);
}

.team-area .team-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.team-area .team-info h4 {
    font-size: 20px;
    color: #222;
}

.team-area .team-role {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gg-wine);
}

.team-area .team-social {
    gap: 10px;
}

.team-area .team-social li {
    margin: 0 5px;
}

.team-area .team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f4f4f4;
    color: #555;
    font-size: 14px;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.team-area .team-social a:hover {
    background: linear-gradient(-45deg, var(--gg-gold) 0%, var(--gg-wine) 100%);
    color: var(--gg-white);
    transform: translateY(-2px);
}

/* ******************************
:: 20.0 UPLIFT - TYPOGRAPHY
****************************** */
body,
.welcome-intro p,
.section-heading > p,
p, li, span, a,
.btn, button, input, textarea, select,
.nav-link, .navbar, h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

body { font-weight: 400; letter-spacing: 0; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; letter-spacing: 0; }
.welcome-intro h1 { font-weight: 800; letter-spacing: 0; }
.section-heading > h2 { font-weight: 800; }
.btn { font-weight: 600; letter-spacing: 0.02em; }

/* ******************************
:: 21.0 UPLIFT - STATS COUNTER BAND
****************************** */
.gg-stats {
    background: linear-gradient(135deg, var(--gg-wine) 0%, var(--gg-wine-deep) 100%);
    padding: 70px 0;
    color: var(--gg-white);
    position: relative;
    overflow: hidden;
}

.gg-stats::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.gg-stats::after {
    content: "";
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.gg-stat-item {
    text-align: center;
    padding: 10px;
    position: relative;
    z-index: 1;
}

.gg-stat-number {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    display: inline-block;
    background: linear-gradient(180deg, var(--gg-white) 0%, var(--gg-gold-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gg-stat-suffix {
    font-size: 32px;
    font-weight: 700;
    color: var(--gg-gold-light);
    margin-left: 4px;
}

.gg-stat-label {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.85);
}

/* ******************************
:: 22.0 GLOBAL PRESENCE - IMAGERY BANNER (Plan B)
****************************** */
.gg-presence-banner {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
    color: #ffffff;
    background-color: #2a1a1f; /* fallback if image fails to load */
}

.gg-presence-banner-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
    transform: scale(1.05);
    animation: gg-banner-pan 24s ease-in-out infinite alternate;
}

@keyframes gg-banner-pan {
    from { transform: scale(1.05) translateX(-1.5%); }
    to   { transform: scale(1.05) translateX( 1.5%); }
}

.gg-presence-banner-content {
    position: relative;
    z-index: 1;
}

.gg-presence-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #f3d27a;
    padding: 8px 16px;
    border: 1px solid rgba(243, 210, 122, 0.5);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(6px);
    margin-bottom: 22px;
}

.gg-presence-headline {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: 0;
    color: #ffffff;
    margin-bottom: 18px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.gg-presence-sub {
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    max-width: 720px;
    margin: 0 auto 56px;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}

.gg-presence-stats {
    margin-bottom: 50px;
}

.gg-presence-stats .col-6,
.gg-presence-stats .col-md-3 { padding: 16px 12px; }

.gg-presence-num {
    font-size: 60px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    background: linear-gradient(180deg, #ffffff 0%, #f3d27a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gg-presence-suffix {
    font-size: 36px;
    font-weight: 700;
    color: #f3d27a;
    -webkit-text-fill-color: #f3d27a;
    margin-left: 2px;
}

.gg-presence-label {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.85);
}

.gg-presence-cta { margin-top: 12px; }

.gg-presence-cta .btn {
    padding: 14px 36px;
    font-size: 15px;
}

@media (max-width: 767px) {
    .gg-presence-banner { padding: 100px 0; }
    .gg-presence-headline { font-size: 36px; }
    .gg-presence-sub { font-size: 15px; margin-bottom: 40px; }
    .gg-presence-num { font-size: 44px; }
    .gg-presence-suffix { font-size: 26px; }
    .gg-presence-stats { margin-bottom: 32px; }
}

/* ******************************
:: 28.0 FORM FIELD POLISH
****************************** */
.form-control {
    background: var(--gg-white);
    border: 1px solid var(--gg-line);
    border-radius: var(--gg-r-md);
    padding: 14px 18px;
    font-size: 15px;
    color: var(--gg-ink);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control::placeholder { color: var(--gg-ink-muted); }

.form-control:focus {
    outline: none;
    border-color: var(--gg-wine);
    box-shadow: 0 0 0 4px rgba(122, 35, 66, 0.10);
}

.contact-box .form-group { margin-bottom: 14px; }

.contact-box textarea.form-control { min-height: 120px; resize: vertical; }

.contact-box .btn { padding: 16px 28px; border-radius: var(--gg-r-pill); }

/* Contact info card */
.contact-info {
    border-radius: var(--gg-r-md);
    background: var(--gg-cream);
    color: var(--gg-ink);
}

.contact-info span { color: var(--gg-wine); }

.contact-info a { color: var(--gg-ink); }
.contact-info h4 { font-size: 18px; word-break: break-all; }

/* ******************************
:: 29.0 FOOTER
****************************** */
.gg-footer {
    background: var(--gg-cream);
    color: var(--gg-ink);
    padding: 70px 0 0;
    border-top: 1px solid var(--gg-line);
}

.gg-footer-top {
    padding-bottom: 40px;
    border-bottom: 1px solid var(--gg-line);
}

.gg-footer-brand img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.gg-footer-tagline {
    color: var(--gg-ink-soft);
    font-size: 14px;
    line-height: 1.6;
    max-width: 340px;
}

.gg-footer-h {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gg-wine);
    margin-bottom: 18px;
}

.gg-footer-list li { margin-bottom: 10px; }

.gg-footer-list a {
    color: var(--gg-ink-soft);
    font-size: 14px;
    transition: color 0.2s ease;
    word-break: break-word;
}

.gg-footer-list a:hover {
    color: var(--gg-wine);
    text-decoration: none;
}

.gg-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 13px;
    color: var(--gg-ink-muted);
}

.gg-footer-bottom .copyright-right strong { color: var(--gg-wine); }

@media (max-width: 575px) {
    .gg-footer { padding-top: 50px; }
    .gg-footer-bottom { justify-content: center; gap: 8px; text-align: center; }
}

/* ******************************
:: 30.0 SECTION-HEADING REFINEMENT (unified)
****************************** */
.section-heading > h2 {
    color: var(--gg-ink);
}

.section-heading > p {
    color: var(--gg-ink-soft);
    font-size: 16px;
    line-height: 1.7;
}

/* Eyebrow label utility (re-usable above any heading) */
.gg-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gg-wine);
    margin-bottom: 14px;
}

/* ******************************
:: 23.0 UPLIFT - POLISH
****************************** */
/* Smoother button hover */
.btn {
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--gg-shadow-wine);
}

/* Lift commodity cards on hover */
.single-service {
    background: #ffffff;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.single-service:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(16, 16, 45, 0.10);
}

/* Standout cards smoother */
.single-standout {
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hero headline weight + line-height */
.welcome-intro h1 {
    line-height: 1.1;
}

/* Section spacing breathing room */
.section-heading {
    margin-bottom: 60px;
}

/* Refined contact card */
.contact-info {
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(16, 16, 45, 0.10);
}

/* ******************************
:: 24.0 SCROLL PROGRESS BAR
****************************** */
.gg-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--gg-gold) 0%, var(--gg-wine) 60%, var(--gg-wine-deep) 100%);
    z-index: 9999;
    transition: width 0.06s linear;
    box-shadow: 0 0 10px rgba(122, 35, 66, 0.55);
}

/* ******************************
:: 25.0 TIMELINE - MILESTONE ICONS
****************************** */
.gg-timeline-icon {
    position: absolute;
    top: -22px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gg-gold) 0%, var(--gg-wine) 100%);
    color: var(--gg-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 6px 18px rgba(122, 35, 66, 0.35);
    z-index: 3;
}

.gg-timeline-item:nth-child(odd) .gg-timeline-icon { right: 20px; }
.gg-timeline-item:nth-child(even) .gg-timeline-icon { left: 20px; }

.gg-timeline-content { padding-top: 36px; }

@media (max-width: 767px) {
    .gg-timeline-item:nth-child(odd) .gg-timeline-icon,
    .gg-timeline-item:nth-child(even) .gg-timeline-icon {
        left: auto;
        right: 14px;
        top: -22px;
    }
}

/* ******************************
:: 26.0 COMMODITY CARDS - IMAGE SLOT
****************************** */
.single-service {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.commodity-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: -12px -12px 18px -12px;
    overflow: hidden;
    border-radius: var(--gg-r-md) var(--gg-r-md) 0 0;
    background: linear-gradient(135deg, var(--gg-cream) 0%, var(--gg-gold-light) 100%);
}

.commodity-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.single-service:hover .commodity-thumb img { transform: scale(1.05); }

.commodity-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(26, 20, 24, 0.35) 100%);
    pointer-events: none;
}

.commodity-thumb .commodity-icon {
    position: absolute;
    bottom: 12px;
    left: 12px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gg-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--gg-wine);
    box-shadow: 0 4px 14px rgba(122, 35, 66, 0.3);
    z-index: 1;
}

.single-service .media-body { padding: 0 4px 8px; }

/* ******************************
:: 27.0 HERO POLISH
****************************** */
.welcome-thumb-wrapper {
    position: relative;
    display: inline-block;
}

.welcome-thumb-wrapper::before {
    content: "";
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at center, rgba(212, 165, 116, 0.35) 0%, transparent 60%);
    filter: blur(40px);
    z-index: -1;
    animation: gg-hero-pulse 4s ease-in-out infinite alternate;
}

@keyframes gg-hero-pulse {
    from { transform: scale(1);   opacity: 0.7; }
    to   { transform: scale(1.1); opacity: 1; }
}

.welcome-thumb-1 img {
    animation: gg-hero-float 6s ease-in-out infinite;
}

@keyframes gg-hero-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}

/* ******************************
:: 31.0 FINAL PROFESSIONAL LAYOUT PASS
****************************** */
:root {
    --gg-wine: #7a2342;
    --gg-wine-deep: #4f1428;
    --gg-gold: #d4a574;
    --gg-gold-light: #f3d27a;
    --gg-cream: #fbf6ec;
    --gg-white: #ffffff;
    --gg-ink: #1a1418;
    --gg-ink-soft: rgba(26, 20, 24, 0.72);
    --gg-ink-muted: rgba(26, 20, 24, 0.55);
    --gg-line: rgba(122, 35, 66, 0.14);
    --gg-shadow: 0 12px 34px rgba(26, 20, 24, 0.09);
    --gg-shadow-strong: 0 20px 48px rgba(26, 20, 24, 0.16);
    --gg-r-md: 10px;
    --gg-r-pill: 999px;
}

html {
    overflow-x: hidden;
    scroll-padding-top: 96px;
}

body {
    overflow-x: hidden;
    background: var(--gg-white);
    color: var(--gg-ink);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.main {
    background: var(--gg-white);
}

.container {
    max-width: 1180px;
    padding-left: 24px;
    padding-right: 24px;
}

.shape {
    display: none !important;
}

.ptb_100,
.ptb_150 {
    padding: 104px 0 !important;
}

.bg-grey {
    background: var(--gg-cream) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--gg-ink);
    letter-spacing: 0 !important;
}

p {
    color: var(--gg-ink-soft);
    line-height: 1.7;
}

a {
    color: var(--gg-wine);
}

a:hover {
    color: var(--gg-gold);
}

.section-heading {
    margin-bottom: 48px !important;
}

.section-heading > h2 {
    font-size: clamp(32px, 4vw, 48px) !important;
    line-height: 1.1 !important;
    font-weight: 800 !important;
    color: var(--gg-ink) !important;
}

.section-heading > p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
}

.section-heading.text-left > p {
    margin-left: 0;
}

.btn,
.btn.btn-bordered:before,
.btn.btn-bordered-white:after {
    background: linear-gradient(135deg, var(--gg-gold) 0%, var(--gg-wine) 54%, var(--gg-wine-deep) 100%) !important;
}

.btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: var(--gg-r-pill) !important;
    padding: 14px 28px !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    border: 0 !important;
    box-shadow: 0 10px 24px rgba(122, 35, 66, 0.22);
}

.btn.btn-bordered-white {
    border: 1px solid rgba(255, 255, 255, 0.72) !important;
    color: var(--gg-white) !important;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--gg-shadow-strong);
}

/* Header */
#header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 2000;
}

#header .navbar {
    position: relative !important;
    width: 100%;
    min-height: 82px;
    padding: 12px 0 !important;
    background: rgba(255, 255, 255, 0.96) !important;
    border-bottom: 1px solid rgba(122, 35, 66, 0.10);
    box-shadow: 0 10px 32px rgba(26, 20, 24, 0.08);
    backdrop-filter: blur(14px);
}

#header .container.header {
    display: flex;
    align-items: center;
    max-width: 1180px;
    min-height: 58px;
}

.navbar-brand {
    display: inline-flex !important;
    align-items: center;
    flex: 0 0 auto;
    padding: 8px 12px !important;
    border-radius: var(--gg-r-md) !important;
    background: var(--gg-white) !important;
    box-shadow: none !important;
}

.navbar-brand img {
    width: auto !important;
    height: 42px !important;
    max-width: 116px;
    object-fit: contain;
}

.navbar-expand .navbar-nav.items {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.navbar-expand .navbar-nav .nav-item {
    margin: 0 !important;
}

.navbar-expand .navbar-nav .nav-link {
    color: var(--gg-ink) !important;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 13px !important;
    border-radius: var(--gg-r-pill);
}

.navbar-expand .navbar-nav .nav-link:hover {
    color: var(--gg-wine) !important;
    background: rgba(122, 35, 66, 0.08);
}

.navbar-expand .navbar-nav.toggle {
    margin-left: auto;
}

.navbar-expand .navbar-nav.toggle .toggle-icon {
    color: var(--gg-ink) !important;
}

/* Hero */
.welcome-area {
    min-height: 760px !important;
    height: auto !important;
    padding: 148px 0 96px !important;
    background:
        radial-gradient(circle at 72% 28%, rgba(212, 165, 116, 0.26), transparent 32%),
        linear-gradient(135deg, #7a2342 0%, #5e1931 54%, #32101d 100%) !important;
    overflow: hidden;
}

.welcome-area.bg-overlay::after {
    display: none !important;
}

.welcome-area .container {
    position: relative;
    z-index: 2;
}

.welcome-area .row {
    display: grid !important;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 56px;
    align-items: center;
}

.welcome-area .col-12,
.welcome-area .col-md-7,
.welcome-area .col-md-5 {
    max-width: none !important;
    flex: none !important;
    padding-left: 15px;
    padding-right: 15px;
}

.welcome-intro h1 {
    max-width: 720px;
    margin-bottom: 22px;
    font-size: clamp(44px, 6vw, 76px) !important;
    line-height: 0.98 !important;
    font-weight: 800 !important;
    color: var(--gg-white) !important;
}

.welcome-intro p {
    max-width: 650px;
    margin: 0 0 30px !important;
    color: rgba(255, 255, 255, 0.84) !important;
    font-size: 17px !important;
    line-height: 1.7;
}

.welcome-thumb-wrapper {
    display: block !important;
    width: 100%;
    max-width: 520px;
    margin-left: auto;
}

.welcome-thumb-1 {
    display: block;
    position: relative;
}

.welcome-thumb-1 img {
    display: block !important;
    width: 100% !important;
    max-width: 520px !important;
    height: auto !important;
    max-height: 520px;
    object-fit: contain;
    margin-left: auto !important;
    border-radius: 16px;
    filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.28));
}

/* About */
#about {
    background: var(--gg-white);
}

#about .row,
#process .row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 64px;
    align-items: center;
}

#about .col-12,
#about .col-lg-6,
#process .col-12,
#process .col-lg-6 {
    max-width: none !important;
    flex: none !important;
}

#about .content-inner,
#process .content-inner {
    text-align: left !important;
}

.content-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.content-icon {
    padding-right: 0 !important;
}

.content-icon span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(122, 35, 66, 0.10);
    color: var(--gg-wine) !important;
}

.service-thumb,
.folder-img {
    width: 100%;
    max-width: 540px;
}

.service-thumb img,
.folder-img {
    display: block;
    width: 100% !important;
    height: auto !important;
    max-height: 560px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--gg-shadow-strong);
}

/* Stats */
.gg-stats {
    padding: 76px 0 !important;
    background:
        radial-gradient(circle at 20% 20%, rgba(212, 165, 116, 0.18), transparent 28%),
        linear-gradient(135deg, var(--gg-wine) 0%, var(--gg-wine-deep) 100%) !important;
}

.gg-stats .row {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin: 0 !important;
}

.gg-stat-item {
    max-width: none !important;
    flex: none !important;
    padding: 24px 18px !important;
    margin: 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    text-align: center;
}

.gg-stat-number {
    font-size: clamp(42px, 5vw, 64px) !important;
}

.gg-stat-label {
    min-height: 34px;
}

/* Cards and commodities */
.single-service,
.single-standout,
.team-member,
.contact-box,
.contact-info {
    border: 1px solid var(--gg-line) !important;
    border-radius: var(--gg-r-md) !important;
    background: var(--gg-white) !important;
    box-shadow: var(--gg-shadow) !important;
}

.single-service,
.single-standout {
    height: 100%;
    padding: 28px !important;
}

.single-service h3 {
    font-size: 23px !important;
    line-height: 1.22 !important;
}

.service-area .row:last-child {
    align-items: stretch;
}

#commodities .container > .row:last-child,
.standout-area .container > .row:last-child {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-left: 0 !important;
    margin-right: 0 !important;
    align-items: stretch;
}

#commodities .container > .row:last-child > [class*="col-"],
.standout-area .container > .row:last-child > [class*="col-"] {
    width: 100% !important;
    max-width: none !important;
    flex: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-bottom: 0 !important;
}

.commodity-thumb {
    margin: -28px -28px 24px -28px !important;
    border-radius: var(--gg-r-md) var(--gg-r-md) 0 0 !important;
    max-height: 260px;
}

.commodity-thumb::after {
    background:
        linear-gradient(180deg, rgba(26, 20, 24, 0.02) 0%, rgba(26, 20, 24, 0.48) 100%),
        linear-gradient(135deg, rgba(122, 35, 66, 0.16), rgba(212, 165, 116, 0.06)) !important;
}

.commodity-thumb img {
    filter: saturate(1.04) contrast(1.02);
}

.commodity-note {
    margin: 0 0 14px;
    color: var(--gg-ink-soft);
    font-size: 15px;
    line-height: 1.7;
}

.commodity-spec-list {
    list-style: none;
    margin: 0;
    padding: 14px 0 0;
    border-top: 1px solid var(--gg-line);
}

.commodity-spec-list li {
    position: relative;
    margin: 0 0 10px;
    padding-left: 18px;
    color: var(--gg-ink-soft);
    font-size: 15px;
    line-height: 1.65;
}

.commodity-spec-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gg-gold);
}

.commodity-spec-list b {
    color: var(--gg-ink);
    font-weight: 800;
}

.commodity-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--gg-wine);
    font-weight: 800;
    font-size: 14px;
}

.commodity-link i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.commodity-link:hover i {
    transform: translateX(4px);
}

/* Presence banner */
.gg-presence-banner {
    min-height: 620px;
    display: flex;
    align-items: center;
    padding: 120px 0 !important;
}

.gg-presence-headline {
    font-size: clamp(38px, 5vw, 58px) !important;
}

/* Timeline */
.history-area {
    background: var(--gg-cream) !important;
}

.gg-timeline-content {
    border: 1px solid var(--gg-line);
    border-radius: 14px !important;
    box-shadow: var(--gg-shadow) !important;
}

.gg-timeline-content h3 {
    color: var(--gg-ink) !important;
}

/* Team */
.team-area .row {
    align-items: stretch;
}

#team .container > .row:last-child {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
    margin-left: 0 !important;
    margin-right: 0 !important;
    align-items: stretch;
}

#team .container > .row:last-child > [class*="col-"] {
    width: 100% !important;
    max-width: none !important;
    flex: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-bottom: 0 !important;
}

.team-area .team-member {
    padding: 32px 20px !important;
    min-height: 360px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center !important;
}

.team-area .team-thumb {
    width: 168px !important;
    height: 168px !important;
    border: 5px solid var(--gg-cream) !important;
    box-shadow: 0 0 0 3px rgba(122, 35, 66, 0.18) !important;
}

.team-area .team-info {
    width: 100%;
    text-align: center !important;
}

.team-area .team-social {
    justify-content: center !important;
}

/* Standout */
.standout-area .row:last-child {
    align-items: stretch;
}

.single-standout h4 {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
}

.single-standout.bg-hover::after {
    opacity: 0;
}

.single-standout:hover,
.single-service:hover,
.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--gg-shadow-strong) !important;
}

/* Contact and CTA */
.contact-area {
    background: linear-gradient(180deg, var(--gg-white) 0%, var(--gg-cream) 100%);
}

.contact-area .section-heading {
    text-align: left !important;
}

.contact-info {
    overflow: hidden;
}

.contact-box {
    padding: 34px !important;
}

.contact-box .form-group input,
.contact-box .form-group textarea,
.form-control {
    height: 56px !important;
    border: 1px solid var(--gg-line) !important;
    border-radius: var(--gg-r-md) !important;
    box-shadow: none !important;
}

.contact-box .form-group textarea {
    height: 150px !important;
}

.cta-area {
    background: linear-gradient(135deg, var(--gg-wine) 0%, var(--gg-wine-deep) 100%) !important;
}

.cta-area.bg-overlay::after {
    display: none !important;
}

.cta-area .section-heading h2,
.cta-area .section-heading p {
    color: var(--gg-white) !important;
}

/* Footer */
.gg-footer {
    background: var(--gg-cream) !important;
}

.gg-footer {
    position: relative;
    padding: 82px 0 0 !important;
    overflow: hidden;
}

.gg-footer::before {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    right: -160px;
    top: -180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.18), transparent 68%);
    pointer-events: none;
}

.gg-footer-top {
    position: relative;
    padding-bottom: 42px !important;
}

.gg-footer-main-col {
    max-width: 420px !important;
}

.gg-footer-brand {
    display: inline-flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: var(--gg-r-md);
    background: var(--gg-white);
    box-shadow: 0 8px 24px rgba(26, 20, 24, 0.08);
}

.gg-footer-brand img {
    height: 52px !important;
    width: auto;
}

.gg-footer-tagline {
    margin-bottom: 0;
    color: var(--gg-ink-soft);
    font-size: 15px;
    line-height: 1.75;
}

.gg-footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.gg-footer-badges span {
    padding: 7px 10px;
    border-radius: var(--gg-r-pill);
    background: rgba(122, 35, 66, 0.08);
    color: var(--gg-wine);
    font-size: 12px;
    font-weight: 800;
}

.gg-footer-h {
    color: var(--gg-wine) !important;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.8px;
}

.gg-footer-list li {
    margin-bottom: 12px;
}

.gg-footer-list a,
.gg-footer-contact-card a {
    color: var(--gg-ink-soft);
    font-weight: 600;
}

.gg-footer-list a:hover,
.gg-footer-contact-card a:hover {
    color: var(--gg-wine);
}

.gg-footer-contact-card {
    display: grid;
    gap: 12px;
    padding: 18px;
    border: 1px solid var(--gg-line);
    border-radius: var(--gg-r-md);
    background: rgba(255, 255, 255, 0.58);
}

.gg-footer-contact-card i {
    width: 18px;
    color: var(--gg-wine);
}

.gg-footer-credits {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 0;
    border-top: 1px solid var(--gg-line);
    color: var(--gg-ink-muted);
    font-size: 12px;
}

.gg-footer-bottom {
    gap: 18px;
}

.gg-footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
    margin: 0;
    padding: 0;
}

.gg-footer-bottom-links li {
    list-style: none;
}

.gg-footer-bottom-links a {
    color: var(--gg-ink-muted);
    font-weight: 700;
}

/* Final responsive layout */
@media (max-width: 1199px) {
    .navbar-expand .navbar-nav.items {
        gap: 0;
    }

    .navbar-expand .navbar-nav .nav-link {
        padding-left: 9px !important;
        padding-right: 9px !important;
    }
}

@media (max-width: 991px) {
    .ptb_100,
    .ptb_150 {
        padding: 78px 0 !important;
    }

    .welcome-area {
        padding-top: 128px !important;
    }

    .welcome-area .row,
    #about .row,
    #process .row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .welcome-thumb-wrapper,
    .service-thumb,
    .folder-img {
        max-width: 620px;
        margin: 0 auto;
    }

    .gg-stats .row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #commodities .container > .row:last-child,
    .standout-area .container > .row:last-child,
    #team .container > .row:last-child {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    #header .navbar {
        min-height: 72px;
    }

    .navbar-brand img {
        height: 36px !important;
    }

    .welcome-area {
        min-height: auto !important;
        padding: 112px 0 72px !important;
    }

    .welcome-intro h1 {
        font-size: 40px !important;
    }

    .welcome-intro p {
        font-size: 15px !important;
    }

    .gg-stats .row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    #commodities .container > .row:last-child,
    .standout-area .container > .row:last-child,
    #team .container > .row:last-child {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gg-presence-banner {
        min-height: auto;
        padding: 88px 0 !important;
    }

    .contact-area .section-heading {
        text-align: center !important;
    }
}

/* ******************************
:: 32.0 WHOLE-PAGE COMPLETION PASS
****************************** */
@media (min-width: 576px) {
    .d-none.d-sm-block {
        display: block !important;
    }

    .d-block.d-sm-none {
        display: none !important;
    }
}

@media (max-width: 575px) {
    .d-none.d-sm-block {
        display: none !important;
    }

    .d-block.d-sm-none {
        display: block !important;
    }
}

.gg-presence-stats {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin: 52px 0 42px !important;
}

.gg-presence-stats > [class*="col-"] {
    width: 100% !important;
    max-width: none !important;
    flex: none !important;
    padding: 22px 12px !important;
    margin: 0 !important;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
}

.gg-presence-num {
    font-size: clamp(42px, 5vw, 62px) !important;
}

.contact-area > .container > .row {
    display: grid !important;
    grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.15fr);
    gap: 46px;
    align-items: stretch !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.contact-area > .container > .row > [class*="col-"] {
    width: 100% !important;
    max-width: none !important;
    flex: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.contact-us ul,
.contact-us li {
    margin: 0 !important;
    padding: 0 !important;
}

.contact-info {
    position: relative;
    padding: 34px 28px !important;
    margin: 0 !important;
    min-height: 216px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-info::after,
.contact-info.bg-hover::after {
    display: none !important;
}

.contact-info span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: rgba(122, 35, 66, 0.10);
    color: var(--gg-wine) !important;
}

.contact-info a {
    display: block !important;
    color: var(--gg-ink) !important;
}

.contact-info h4 {
    margin: 0;
    font-size: clamp(17px, 1.6vw, 22px) !important;
    line-height: 1.3;
    word-break: break-word !important;
}

.contact-box {
    min-height: 100%;
}

.contact-box form,
.contact-box form .row,
.contact-box form [class*="col-"],
.contact-box .form-group {
    width: 100% !important;
    max-width: none !important;
}

.contact-box form .row {
    display: block !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.contact-box form [class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.contact-box .form-control,
.contact-box .form-group input,
.contact-box .form-group textarea {
    width: 100% !important;
}

.contact-box .btn {
    width: auto !important;
    min-width: 190px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-box .btn .pr-3 {
    padding-right: 0 !important;
}

.form-message {
    min-height: 28px;
    margin-bottom: 0 !important;
    padding: 0 !important;
    color: var(--gg-ink-muted) !important;
}

.cta-area {
    padding: 92px 0 !important;
}

.cta-area .section-heading {
    max-width: 840px;
    margin-left: auto !important;
    margin-right: auto !important;
}

.gg-footer-top {
    display: grid !important;
    grid-template-columns: minmax(260px, 1.25fr) minmax(180px, 0.7fr) minmax(260px, 1fr);
    gap: 40px;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.gg-footer-top > [class*="col-"] {
    width: 100% !important;
    max-width: none !important;
    flex: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

@media (max-width: 991px) {
    .gg-presence-stats,
    .gg-footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-area > .container > .row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .gg-presence-stats,
    .gg-footer-top {
        grid-template-columns: 1fr;
    }

    .gg-footer-bottom,
    .gg-footer-credits,
    .gg-footer-bottom-links {
        justify-content: center;
        text-align: center;
    }

    .contact-info {
        min-height: auto;
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .contact-area {
        overflow: hidden;
    }

    .contact-area .section-heading p {
        max-width: 310px;
        margin-left: auto;
        margin-right: auto;
        font-size: 15px;
        line-height: 1.6;
    }

    .contact-info h4 {
        max-width: 100%;
        font-size: 16px !important;
        overflow-wrap: anywhere !important;
        word-break: break-word !important;
    }

    .contact-box {
        padding: 24px !important;
    }

    .contact-box .btn {
        width: 100% !important;
    }
}

/* ******************************
:: 33.0 FOOTER FINAL GRID
****************************** */
.gg-footer-top {
    display: grid !important;
    grid-template-columns: minmax(300px, 1.25fr) minmax(140px, 0.55fr) minmax(150px, 0.6fr) minmax(290px, 1.05fr) !important;
    gap: 38px !important;
    align-items: start !important;
}

.gg-footer-top > [class*="col-"] {
    min-width: 0 !important;
}

.gg-footer-main-col {
    max-width: none !important;
}

.gg-footer-contact-card {
    width: 100%;
    max-width: 100%;
}

.gg-footer-badges {
    display: flex;
    flex-wrap: wrap;
}

.gg-footer-contact-card a {
    display: grid !important;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    overflow-wrap: anywhere;
}

.gg-footer-bottom {
    border-top: 1px solid var(--gg-line);
    margin-top: 22px;
}

@media (max-width: 1199px) {
    .gg-footer-top {
        grid-template-columns: minmax(280px, 1.2fr) minmax(130px, 0.55fr) minmax(140px, 0.6fr) minmax(250px, 1fr) !important;
        gap: 28px !important;
    }
}

@media (max-width: 991px) {
    .gg-footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 575px) {
    .gg-footer-top {
        grid-template-columns: 1fr !important;
    }

    .gg-footer-badges {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, max-content));
        gap: 10px;
        max-width: 100%;
    }

    .gg-footer-badges span {
        max-width: 100%;
        width: fit-content;
        white-space: normal;
    }

    .gg-footer-contact-card a {
        grid-template-columns: 18px minmax(0, 1fr);
    }
}

/* ******************************
:: 34.0 JOURNEY, TEAM, FOOTER REDESIGN
****************************** */
.history-area {
    padding: 88px 0 84px !important;
    background:
        linear-gradient(180deg, rgba(251, 246, 236, 0.96), rgba(255, 255, 255, 0.98)) !important;
}

.history-area .shape {
    display: none !important;
}

.history-area .section-heading,
.team-area .section-heading {
    margin-bottom: 42px !important;
}

.gg-timeline {
    max-width: 1180px !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px !important;
    padding: 0 !important;
}

.gg-timeline::before,
.gg-timeline-item::before,
.gg-timeline-content::after {
    display: none !important;
}

.gg-timeline-item,
.gg-timeline-item:nth-child(odd),
.gg-timeline-item:nth-child(even) {
    width: auto !important;
    left: auto !important;
    padding: 0 !important;
    text-align: left !important;
}

.gg-timeline-content {
    min-height: 100%;
    padding: 26px 24px 24px !important;
    border-radius: 10px !important;
    border: 1px solid rgba(122, 35, 66, 0.14) !important;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 246, 236, 0.82)) !important;
    box-shadow: 0 12px 28px rgba(26, 20, 24, 0.07) !important;
    overflow: hidden;
}

.gg-timeline-content::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gg-gold), var(--gg-wine));
}

.gg-timeline-icon,
.gg-timeline-item:nth-child(odd) .gg-timeline-icon,
.gg-timeline-item:nth-child(even) .gg-timeline-icon {
    position: static !important;
    width: 44px !important;
    height: 44px !important;
    margin-bottom: 18px;
    box-shadow: 0 10px 24px rgba(122, 35, 66, 0.18) !important;
}

.gg-timeline-year {
    position: absolute;
    top: 24px;
    right: 22px;
    padding: 7px 13px !important;
    font-size: 13px !important;
    letter-spacing: 0.8px !important;
}

.gg-timeline-content h3 {
    max-width: 75%;
    margin: 0 0 8px !important;
    font-size: 21px !important;
    line-height: 1.25;
}

.gg-timeline-label {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--gg-wine);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.gg-timeline-content p {
    font-size: 14px !important;
    line-height: 1.65 !important;
    color: var(--gg-ink-soft) !important;
}

.team-area {
    padding: 86px 0 74px !important;
    background:
        radial-gradient(circle at 16% 12%, rgba(212, 165, 116, 0.14), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #fbf6ec 100%) !important;
}

#process {
    background:
        radial-gradient(circle at 84% 18%, rgba(212, 165, 116, 0.12), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #fbf6ec 100%) !important;
    color: var(--gg-ink) !important;
}

#process .folder-img {
    width: 100%;
    height: min(440px, 42vw);
    min-height: 320px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--gg-shadow-md);
    background: #ffffff;
}

#process .content-inner {
    padding: 36px 40px !important;
    border: 1px solid var(--gg-line);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--gg-shadow);
}

#process .section-heading h2,
#process .section-heading p,
#process .content-text,
#process .content-text span {
    color: var(--gg-ink) !important;
}

#process .content-text span {
    line-height: 1.65;
}

#team .container > .row:last-child {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 22px !important;
}

#team .container > .row:last-child > [class*="col-"] {
    margin-bottom: 0 !important;
}

.team-area .team-member {
    min-height: 0 !important;
    padding: 0 !important;
    align-items: stretch !important;
    overflow: hidden;
    border-radius: 10px !important;
    border: 1px solid rgba(122, 35, 66, 0.13) !important;
    background: #ffffff !important;
}

.team-area .team-thumb {
    width: 100% !important;
    height: 238px !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: var(--gg-cream);
}

.team-area .team-thumb img {
    object-fit: cover;
    object-position: center top;
    transition: transform 0.35s ease;
}

.team-area .team-member:hover .team-thumb img {
    transform: scale(1.035);
}

.team-area .team-info {
    position: relative;
    width: 100% !important;
    box-sizing: border-box;
    padding: 26px 28px 26px !important;
    text-align: left !important;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-width: 0;
}

.team-tag {
    display: inline-flex;
    width: fit-content !important;
    max-width: 100%;
    margin-bottom: 12px;
    padding: 6px 10px;
    border-radius: var(--gg-r-pill);
    background: rgba(122, 35, 66, 0.08);
    color: var(--gg-wine);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.team-area .team-info h4 {
    margin-bottom: 7px !important;
    color: var(--gg-ink) !important;
    font-size: clamp(20px, 1.55vw, 22px) !important;
    line-height: 1.18 !important;
    overflow-wrap: anywhere;
}

.team-area .team-role {
    min-height: auto;
    margin-bottom: 18px !important;
    color: var(--gg-wine) !important;
    font-size: 12px !important;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.team-focus {
    min-height: 74px;
    margin-bottom: 22px;
    color: var(--gg-ink-soft);
    font-size: 14px;
    line-height: 1.7;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: none;
}

.team-area .team-social {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 10px !important;
    align-items: center;
    margin-top: auto !important;
    justify-content: flex-start !important;
}

.team-area .team-social li {
    margin: 0 !important;
}

.gg-footer {
    padding: 46px 0 0 !important;
    background:
        radial-gradient(circle at 90% 0%, rgba(212, 165, 116, 0.18), transparent 34%),
        linear-gradient(135deg, var(--gg-wine-deep), var(--gg-wine)) !important;
    color: rgba(255, 255, 255, 0.86) !important;
}

html,
body {
    background: var(--gg-wine-deep) !important;
}

.main {
    background: var(--gg-wine-deep) !important;
}

.gg-footer::before {
    display: none !important;
}

.gg-footer-top {
    padding-bottom: 26px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16) !important;
}

.gg-footer-brand {
    padding: 8px 10px !important;
    background: #ffffff !important;
}

.gg-footer-tagline,
.gg-footer-list a,
.gg-footer-contact-card a,
.gg-footer-credits,
.gg-footer-bottom,
.gg-footer-bottom-links a {
    color: rgba(255, 255, 255, 0.76) !important;
}

.gg-footer-h,
.gg-footer-contact-card i,
.gg-footer-bottom .copyright-right strong {
    color: var(--gg-gold) !important;
}

.gg-footer-badges span {
    background: rgba(255, 255, 255, 0.10) !important;
    color: #ffffff !important;
}

.gg-footer-contact-card {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.16) !important;
}

.gg-footer-credits {
    padding: 14px 0 !important;
    border-top: 0 !important;
}

.gg-footer-bottom {
    padding: 16px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.16) !important;
    margin-top: 0 !important;
}

@media (max-width: 991px) {
    .gg-timeline,
    #team .container > .row:last-child {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .team-area .team-thumb {
        height: 300px !important;
    }
}

@media (max-width: 575px) {
    .history-area,
    .team-area {
        padding: 64px 0 56px !important;
    }

    .gg-timeline,
    #team .container > .row:last-child {
        grid-template-columns: 1fr !important;
    }

    .gg-timeline-content h3 {
        max-width: none;
        padding-right: 86px;
    }

    .team-area .team-thumb {
        height: 320px !important;
    }

    .team-focus {
        min-height: 0;
    }

    .gg-footer {
        padding-top: 38px !important;
    }
}
