:root {
    --white: #fff;
    --black: #000;
    --theme-color: #0080c5;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: "Poppins", sans-serif;
}

section {
    padding: 6rem 0;
    position: relative;
}

@media (min-width: 1700px) {
    .container {
        max-width: 1380px;
    }
}

p {
    color: #828282;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

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

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

figure {
    margin: 0;
}

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

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    background-color: var(--white);
}

.navbar-brand img {
    max-width: 155px;
    transition: 0.3s ease-in-out;
}

.navbar-toggler {
    border: 1px solid var(--white);
    color: var(--white);
}

.navbar-nav {
    gap: 1rem 2rem;
}

.navbar .nav-item .nav-link {
    color: var(--black);
    font-size: 1.125rem;
    font-weight: 400;
    text-transform: uppercase;
    position: relative;
    padding: 0;
}

.navbar .nav-item .nav-link::after {
    content: "";
    width: 100%;
    height: 3px;
    background-color: var(--black);
    position: absolute;
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: 0.3s ease-in-out;
}

.navbar .nav-item.active .nav-link::after,
.navbar .nav-item .nav-link:hover::after {
    transform: scaleX(1);
}

.nav-icon {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease-in-out;
    margin-left: 3rem;
}

.nav-icon span {
    display: block;
    background: var(--theme-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 40px;
    box-shadow: 0 0 1px 10px rgb(9 82 110 / 40%);
    text-align: center;
    font-size: 22px;
    color: var(--white);
    transition: 0.3s ease-in-out;
}

.nav-icon:hover span {
    background-color: var(--theme-color);
}


/* header {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 99999;
  top: 0;
  width: 100%;
  transition: 0.3s ease-in-out;
} */

header.sticky {
    position: fixed;
}

header.sticky .navbar-brand img {
    max-width: 100px;
}


/* Begin: Main Slider CSS */

.main-slider {
    position: relative;
    z-index: 1;
    overflow-x: hidden;
}

.main-slider .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0;
    display: flex;
    align-items: center;
    text-align: center;
    z-index: auto;
}

.main-slider h2 {
    font-size: 4.375rem;
    font-weight: 700;
    line-height: 1;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.testimonialSec .carousel-indicators,
.main-slider .carousel-indicators {
    margin: 0;
    left: auto;
    right: 0;
    flex-direction: column;
    top: 50%;
    gap: 1rem;
    transform: translateY(-50%);
    height: max-content;
}

.testimonialSec .carousel-indicators li,
.main-slider .carousel-indicators li {
    text-indent: unset;
    width: auto;
    height: auto;
    border: 0;
    margin: 0;
    background: transparent;
    transition: ease all 0.5s;
}

.testimonialSec .carousel-indicators li span,
.main-slider .carousel-indicators li span {
    font-size: 3.125rem;
    font-weight: 700;
    color: var(--white);
}

.testimonialSec .carousel-indicators li span::after,
.main-slider .carousel-indicators li span::after {
    content: "";
    display: inline-block;
    width: 150px;
    height: 2px;
    background: var(--white);
    position: relative;
    bottom: -5px;
    margin-left: -60px;
}

.testimonialSec .carousel-indicators li.active,
.main-slider .carousel-indicators li.active {
    transform: scale(1.3);
}

.topSocial {
    position: absolute;
    left: 5rem;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 11;
}

.topSocial ul {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 60px;
}

.topSocial ul li a {
    color: #fff;
    font-size: 1.3rem;
}

.topSocial ul li a:hover {
    color: var(--theme-color);
}

.mouse {
    position: absolute;
    bottom: 18rem;
    left: 50%;
    z-index: 11;
}


/* END: Main Slider CSS */

.themeBtn {
    display: inline-block;
    padding: 0.89em 1.5em;
    border-radius: 10px;
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--white);
    border: 1px solid var(--theme-color);
    line-height: 1;
    position: relative;
    background: linear-gradient(180deg, #0080c5 0%, #023478 100%) 0% 0%;
    overflow: hidden;
    z-index: 1;
    margin: 0.5rem 0;
}

.themeBtn:hover {
    background-color: transparent;
    color: var(--theme-color);
}

@keyframes criss-cross-left {
    0% {
        left: -20px;
    }
    50% {
        left: 50%;
        width: 20px;
        height: 20px;
    }
    100% {
        left: 50%;
        width: 375px;
        height: 375px;
    }
}

@keyframes criss-cross-right {
    0% {
        right: -20px;
    }
    50% {
        right: 50%;
        width: 20px;
        height: 20px;
    }
    100% {
        right: 50%;
        width: 375px;
        height: 375px;
    }
}

.themeBtn:before,
.themeBtn:after {
    position: absolute;
    top: 50%;
    content: "";
    width: 20px;
    height: 20px;
    z-index: -1;
    background-color: var(--white);
    border-radius: 50%;
}

.themeBtn:before {
    left: -20px;
    transform: translate(-50%, -50%);
}

.themeBtn:after {
    right: -20px;
    transform: translate(50%, -50%);
}

.themeBtn:hover:before {
    -webkit-animation: criss-cross-left 0.8s both;
    animation: criss-cross-left 0.8s both;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

.themeBtn:hover:after {
    -webkit-animation: criss-cross-right 0.8s both;
    animation: criss-cross-right 0.8s both;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}


/* Begin: Title CSS */

.title {
    margin-bottom: 1.5em;
    display: table;
}

.title span {
    font-size: 1.375rem;
    letter-spacing: 1px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 8px;
    white-space: nowrap;
    display: flex;
    align-items: flex-end;
    gap: 0 1rem;
}

.title span .line {
    height: 1px;
    width: 100%;
    background: var(--black);
    margin-bottom: 0.5rem;
}

.title h2 {
    font-size: 3.4375rem;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    margin: 0 0 1rem;
    color: var(--black);
}


/* END: Title CSS */


/*Start About Section */

.aboutSec figure::before {
    content: "";
    width: 428px;
    height: 428px;
    background-color: #ffc907;
    opacity: 0.2;
    border-radius: 50%;
    position: absolute;
    z-index: -1;
    left: 3rem;
    top: 2rem;
}

.aboutSec figure::after {
    content: "";
    width: 275px;
    height: 200px;
    position: absolute;
    bottom: 9rem;
    left: 3rem;
    z-index: -1;
    /* animation: pulse infinite 3s; */
    transform: rotate(45deg);
    background: linear-gradient(180deg, #0080c5 0%, #023478 100%);
}

.aboutSec figure img:first-child {
    margin-bottom: -5rem;
    margin-left: -1rem;
}

.aboutSec figure img:nth-child(2) {
    position: relative;
    z-index: 1;
}

.aboutSec figure img:last-child {
    margin-left: auto;
    display: block;
    margin-right: 2rem;
    margin-top: -2rem;
}


/* End About Section */


/* services Section */

.serviceSec {
    background: url(../images/bg.png) center/cover no-repeat;
    padding: 12rem 0;
}

.servCard {
    position: relative;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.servCard img {
    transition: 0.3s ease-in-out;
    background: #000;
}

.servCard .content {
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    right: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    transition: 0.3s ease-in-out;
    transform-origin: center;
    transform: scale(0);
    padding: 1rem;
}

.servCard .content h3 {
    font-size: 1.875rem;
    color: var(--white);
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
}

.servCard:hover img {
    transform: scale(1.25);
}

.servCard:hover .content {
    transform: scale(1);
}


/* testimonialSec */

.testimonialSec {
    background: url(../images/testBg.jpg) center/cover no-repeat;
    height: 100%;
    margin-top: -10rem;
    z-index: -1;
    overflow-x: hidden;
}

.testimonialSec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* z-index: 1; */
    background: linear-gradient(270deg, #0080c5 0%, #0080c500 50%);
}

.testimonialSec .carousel-indicators {
    top: 50%;
}

.testimonialSec .carousel {
    height: 100%;
    display: flex;
    align-items: center;
}

.testimonialCard {
    text-align: center;
}

.testimonialSec .testimonialCard .userImg {
    border-radius: 50%;
    border: 10px solid #a0ca3a;
}

.testimonialSec .testimonialCard p {
    margin-top: 1rem;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    font-style: italic;
}

.testimonialSec .testimonialCard h3 {
    font-size: 2.5rem;
    color: var(--white);
    font-weight: 700;
}


/* gallerySec */


/* .gallerySec */

.galleryImg {
    margin-bottom: 0.25rem;
}

.galleryThumb {
    margin: 0 0.25rem;
}

.galleryThumb img {
    transition: 0.3s ease-in-out;
    filter: grayscale(1);
}

.galleryThumb.slick-slide.slick-current.slick-active img {
    filter: none;
}

.ctaBnnr {
    text-align: center;
    padding: 6rem 0 12rem;
    background: url(../images/cta.png) center/cover no-repeat;
}

.ctaBnnr::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    z-index: -1;
    bottom: 0;
    background: linear-gradient(180deg, #0080c5 0%, #023478 100%) 0% 0%;
}

.ctaBnnr h2 {
    font-size: 3.125rem;
    color: var(--white);
    font-weight: 700;
    line-height: 1;
}

.ctaBnnr p {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--white);
}

.ctaBnnr .themeBtn {
    background: linear-gradient(180deg, #a0ca3a 0%, #0aa74c 100%);
}


/* financeSec */

.financeSec {
    margin-top: -12rem;
    z-index: 1;
    padding: 26rem 0;
    display: flex;
    align-items: center;
    background: url(../images/financeBg.png) center/cover no-repeat;
}

.financeSec .content {
    padding: 1rem;
    background: rgb(0 0 0/15%);
    backdrop-filter: blur(5px);
}

.financeSec .content .title h2 {
    color: var(--white);
}

.financeSec .content .title span {
    color: var(--white);
}

.financeSec .content ul li {
    color: var(--white);
    font-size: 1.375rem;
    line-height: 2;
    font-weight: 400;
    padding-left: 1.85rem;
    background: url(../images/tick.png) 0 center/20px no-repeat;
}

.brandIconSec {
    padding-bottom: 16rem;
}

.brandIcon {
    display: grid;
    place-items: center;
}


/* Map Section */

.mapSec {
    padding: 0;
}

.mapSec iframe {
    width: 100%;
    filter: grayscale(1);
    height: 750px;
}


/* Begin: footer */

footer {
    background: url(../images/footerBg.png) top/cover no-repeat;
    padding-top: 30em;
    position: relative;
    margin-top: -20rem;
}

footer .title {
    margin-bottom: 0.5rem;
}

footer .title h2 {
    color: var(--white);
    font-size: 2.25rem;
}

.newsLtrForm {
    display: flex;
    align-items: center;
    padding: 0 1rem;
    height: 70px;
    background: rgb(255 255 255/10%);
    border-radius: 12px;
    backdrop-filter: blur(2px);
}

.newsLtrForm input {
    background-color: transparent;
    border: none;
    width: calc(100% - 60px);
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    padding-left: 2rem;
    /* height: 100%; */
}

.newsLtrForm input::placeholder {
    opacity: 0.7;
    color: var(--white);
}

.newsLtrForm input:focus {
    outline: none;
    background-color: transparent;
}

.newsLtrForm button {
    background-color: transparent;
    color: #ffc907;
    line-height: 50px;
    text-align: center;
    font-size: 2rem;
    height: 60px;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.newsLtrForm button:hover {
    color: var(--theme-color);
}

footer h4 {
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 20px;
}

footer .links,
footer .contInfo {
    margin: 4rem 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .links li a {
    text-transform: uppercase;
    font-weight: 500;
    color: #828282;
    font-size: 1.25rem;
}

footer .contInfo li a {
    font-weight: 400;
    color: #828282;
    font-size: 1.125rem;
}

footer .contInfo li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem 0;
    text-align: center;
}

footer .contInfo li strong {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}

footer .links li a:hover,
footer .links li a:focus {
    color: var(--theme-color);
}

.copyRight {
    border-top: 1px solid #707070;
    padding: 1em 0;
    margin-top: 3em;
    position: relative;
}

.copyRight p {
    margin: 0;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
}

.footersocialIo {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: flex-end;
}

.footersocialIo a {
    color: var(--white);
    font-size: 1.5rem;
}

.footersocialIo a:hover {
    color: var(--theme-color);
}


/* about css start */

.abt-inn {
    margin-top: 2rem;
}


/* about css end */


/* product css start */

.product-sec .zig-zag1 {
    flex-direction: row-reverse;
}

.product-sec .zig-zag3 {
    flex-direction: row-reverse;
}

.product-sec .zig-zag5 {
    flex-direction: row-reverse;
}

.product-sec .row+.row {
    padding-top: 5rem;
}

.prod-txt h4 {
    font-size: 1.875rem;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
}

.prod-txt p {
    color: #828282;
    font-size: 16px;
    font-weight: 400;
    line-height: 2.3;
    font-family: "Montserrat", sans-serif;
}

.product-sec {
    padding-bottom: 8rem;
}


/* product css end */


/* finance css start */

.finance-sec {
    padding: 6rem 0rem 8rem;
}

.finance-sec .content {
    padding: 1rem;
    /* background: rgb(0 0 0/15%); */
    color: var(--black);
}

.finance-sec .content .title h2 {
    /* color: var(--white); */
    color: var(--black);
}

.finance-sec .content .title span {
    color: var(--black);
}

.finance-sec .content ul li {
    /* color: var(--white); */
    /* color: var(--black); */
    color: #828282;
    font-size: 1.375rem;
    line-height: 2;
    font-weight: 400;
    padding-left: 1.85rem;
    background: url(../images/tick.png) 0 15px/20px no-repeat;
    margin-top: 1rem;
}

.finance-sec figure img {
    max-height: 650px;
    width: 100%;
    object-fit: contain;
}

.finance-sec .content p {
    padding-top: 1rem;
    font-family: "Montserrat";
}

.finance-sec .content.prod-txt h4 {
    font-size: 2.5rem;
}

.inner-fin h2 {
    font-size: 2.625rem;
}


/* finance css end */


/* gallery page css start */

.gallery-sec {
    padding-bottom: 8rem;
}

.gallery-sec .row+.row {
    padding-top: 2rem;
}

.gla5 {
    margin-top: 2.5rem;
}

.loader-mn {
    padding-top: 2.25rem;
}

.loader-mn>figure {
    padding-bottom: 2rem;
}

.loader-mn .load-btn {
    padding-top: 1rem;
    font-size: 1.125rem;
    font-weight: 500;
    font-family: "Montserrat";
    color: var(--black);
}


/* gallery page css END */


/* contact page css start */

.icons-mn {
    display: flex;
    align-items: center;
    background: linear-gradient(179deg, #fdbd0a, #ef5b26);
    padding: 1rem 7rem;
    border-radius: 1rem;
    margin-bottom: 3rem;
}

.icon3 {
    background: linear-gradient(179deg, #0080c5, #023478);
}

.icon2 {
    background: linear-gradient(179deg, #a0ca3a, #0aa74c);
}

.icon-txt h4 {
    font-size: 1.375rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
}

.icon-txt a {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--white);
}

.contact-form textarea::placeholder {
    color: rgb(0 0 0 / 30%);
}

.contact-form input::placeholder {
    color: rgb(0 0 0 / 30%);
}

.contact-form textarea,
.contact-form input {
    width: 100%;
    background-color: var(--white);
    padding: 1.1em 0;
    height: 75px;
    font-size: 1.125rem;
    border-radius: 0.6rem;
    border: 1px solid #e8e8e8;
    padding-left: 45px;
    transition: 0.2s ease-in-out;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.05);
}

.contact-form textarea {
    height: 282px;
    padding-top: 10px;
    resize: none;
}

.contact-form textarea:focus,
.contact-form input:focus {
    outline: none;
    border: 1px solid #000544;
}


/* contact page css end */

.right-icon ul {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 2.4rem;
}

.right-icon {
    position: absolute;
    right: 4rem;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 11;
}

.right-icon ul li i {
    font-size: 2.5rem;
    color: #fff;
}


/* New Banner */

.mainBanner .overlay {
    position: absolute;
    top: 24%;
    right: 0;
    bottom: 0;
    left: -14%;
    display: flex;
    align-items: start;
}

.square {
    background: url(../images/mainBg.png) center/cover no-repeat;
    max-width: 275px;
    padding: 6rem 3rem;
    display: flex;
    justify-content: center;
}

.square ul li a {
    font-size: 1.375rem;
    color: var(--black);
    text-transform: uppercase;
    font-weight: 500;
}

.square ul li a img {
    padding-right: 0.625rem;
}

.bannerBottom {
    background-color: #425bc6;
}

.greenBox {
    padding: 6rem 4rem 3rem;
    background: linear-gradient(180deg, #94ae21 0%, #21641d 100%);
}

.greenBox p {
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--white);
}

.greenBox ul {
    flex-direction: column;
    flex-wrap: wrap;
    display: flex;
    height: 110px;
}

.greenBox p span {
    font-size: 3.125rem;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--white);
}

.greenBox ul li a {
    font-size: 1.25rem;
    color: var(--white);
}

.greenBox ul li+li {
    padding-top: 5px;
}

.greenBox ul li a img {
    padding-right: 0.625rem;
}

.yellowBox p {
    font-size: 2.5rem;
    margin: 0;
    color: var(--white);
}

.yellowBox {
    text-align: center;
    background: linear-gradient(91deg, #c3a422 0%, #b06b28 100%);
    padding: 6rem 4rem 3rem;
}

.money h3 sup,
.money h3 sub {
    font-size: 4.375rem;
    color: var(--white);
    font-weight: 600;
}

.money h3 {
    font-size: 12.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin: 0;
}

.money h3 span {
    font-size: 3.125rem;
    color: var(--white);
    text-align: initial;
    padding-left: 1rem;
}

.moneys h3 span {
    text-align: end;
    padding-right: 1rem;
}

.yellowBox h4 {
    font-size: 3.375rem;
    margin-top: -2.5rem;
    line-height: 1.3;
    color: var(--white);
}

.socialConveynce {
    text-align: center;
}

.socialConveynce h3 {
    font-size: 2.5rem;
    color: var(--white);
    text-transform: uppercase;
}

.socialConveynce p {
    font-size: 2.1875rem;
    margin: 10px 0 5px 0;
    color: var(--white);
}

.socialConveynce h4 {
    font-size: 3.125rem;
    text-transform: uppercase;
    color: var(--white);
}

.socialConveynce ul {
    text-align: start;
}

.socialConveynce ul li+li {
    padding-top: 5px;
}

.socialConveynce ul li a {
    font-size: 1.25rem;
    color: var(--white);
}

.socialConveynce ul li a img {
    padding-right: 0.625rem;
}

.socialConveynce h5 {
    font-size: 4.375rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
}

.socialConveynce h5 span {
    font-size: 2rem;
    display: block;
    font-weight: 500;
    margin-top: 2rem;
    color: var(--white);
}

.money {
    margin-top: -2.5rem;
}

.socialLogos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 1.5rem;
}

.utilize h2 {
    font-size: 2.5rem;
    text-align: center;
}

footer .title p {
    color: var(--white);
    margin-top: 12px;
}

footer .title p a {
    color: var(--white);
    font-weight: 500;
}

p.greenPara {
    font-size: 1.5rem;
}

.main-slider .carousel-caption {
    inset: 0px;
    padding: 0px;
    display: flex;
    align-items: center;
    text-align: center;
    z-index: auto;
}

.main-slider P {
    color: #fff;
    line-height: 1.5;
}

.testimonialCard p {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.social-list {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    position: absolute;
    left: 6rem;
    top: 50%;
    z-index: 1;
    transform: translateY(-50%);
}

.social-list li span.text {
    font-size: 1.125rem;
    color: var(--white);
    font-weight: 500;
    line-height: 1;
    writing-mode: vertical-lr;
    transform: scale(-1);
}

.social-list li span.line {
    width: 1px;
    height: 200px;
    display: inline-block;
    background: var(--white);
}

.social-list li a {
    font-size: 1.125rem;
    color: var(--white);
}

.social-list li a:hover {
    color: var(--white);
}

.form-inline .nav-item .nav-link span {
    font-weight: 600;
}

.form-inline .nav-item .nav-link {
    font-size: 0.875rem;
}

.gallery-sec .nav-tabs .nav-link {
    color: var(--black);
    border: 1px solid var(--black);
    padding: 10px 20px;
    border-radius: 6px;
    text-transform: capitalize;
}

.gallery-sec .nav-tabs .nav-link.active {
    border-color: var(--theme-color);
    color: var(--theme-color);
}

.gallery-sec .nav-tabs {
    gap: 1rem;
    margin-bottom: 2rem;
    border: 0;
    justify-content: center;
}