/*==================================================
Typography
==================================================*/

:root {
    --font-heading: "Raleway", sans-serif;
    --font-body: "Inter", sans-serif;
}

html,
body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: .01em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/********** Template CSS **********/
.topbar-social-btn {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
    background: transparent !important;
    color: var(--social-icon) !important;
    border: 1px solid var(--social-icon) !important;
    text-decoration: none;
    transition: .2s ease;
}

.topbar-social-btn:hover,
.topbar-social-btn:focus {
    background: var(--social-icon) !important;
    color: var(--social-icon-color) !important;
    border-color: var(--social-icon) !important;
}

.topbar-social-btn i {
    color: var(--social-icon) !important;
    line-height: 1;
    transform: translateY(-1px);
}

.topbar-social-btn:hover i {
    color: inherit !important;
}

/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--bg-primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% { -webkit-transform: perspective(120px); }
    50% { -webkit-transform: perspective(120px) rotateY(180deg); }
    100% { -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg); }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    background: var(--body-bg);
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    visibility: visible;
    opacity: 1;
    transition: opacity .5s ease-out, visibility 0s linear 0s;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 500 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #fff;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    color: #fff;
}

.btn-secondary:hover {
    color: #fff;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark {
    background: transparent;
}

.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    outline: none;
    transition: .5s;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--text-color!important);
}

.sticky-top .navbar-nav .nav-link:hover,
.sticky-top .navbar-nav .nav-link.active {
    color: var(--bg-primary!important);
}

.navbar-dark .navbar-brand h1 {
    color: #fff;
}

.navbar-dark .navbar-toggler {
    color: var(--bg-primary) !important;
    border-color: var(--bg-primary) !important;
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        background: transparent;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }

    .sticky-top.navbar-dark {
        position: fixed;
        background: var(--bg-color);
        border-bottom: 1px solid color-mix(in srgb, var(--text-color) 10%, transparent);
    }

    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 20px 0;
        color: var(--text-color);
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--bg-primary);
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--bg-primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .navbar-dark,
    .sticky-top.navbar-dark {
        position: relative;
        background: var(--bg-color);
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--text-color);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--bg-primary);
    }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .7);
    z-index: 1;
}

.carousel-item img {
    min-height: 520px;
    object-fit: cover;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }

    .carousel-item img {
        min-height: 420px;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--bg-primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0;
    background: var(--bg-color);
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% { left: 0; }
    50% { left: 145px; }
    100% { left: 0; }
}

@keyframes section-title-run {
    0% { left: 0; }
    50% { left: 145px; }
    100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; }
    50% { left: 50%; margin-left: 45px; }
    100% { left: 50%; margin-left: -75px; }
}

@keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; }
    50% { left: 50%; margin-left: 45px; }
    100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% { left: 0; }
    50% { left: 85px; }
    100% { left: 0; }
}

@keyframes section-title-run-sm {
    0% { left: 0; }
    50% { left: 85px; }
    100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 250px;
    bottom: -48px;
    left: 50%;
    margin-left: -125px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: color-mix(in srgb, var(--text-color) 18%, transparent);
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--bg-primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--bg-color) !important;
    box-shadow: 0 0 30px color-mix(in srgb, var(--text-color) 14%, transparent);
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px color-mix(in srgb, var(--text-color) 14%, transparent);
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background:
        linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)),
        url("../img/carousel-1.0178306be227.jpg") center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}


/*** Work Process ***/
.process-icon {
    width: 75px;
    height: 75px;
}

.process-item .position-relative::after {
    position: absolute;
    content: "\f101";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 50px;
    color: color-mix(in srgb, var(--text-color) 45%, transparent);
    top: 0;
    right: -45px;
    -webkit-animation: process-item-icon 3s infinite linear;
    animation: process-item-icon 3s infinite linear;
}

@-webkit-keyframes process-item-icon {
    0% { right: -30px; }
    50% { right: -45px; }
    100% { right: -30px; }
}

@keyframes process-item-icon {
    0% { right: -30px; }
    50% { right: -45px; }
    100% { right: -30px; }
}

.process-item:last-child .position-relative::after {
    display: none;
}

@media (max-width: 992px) {
    .process-item:nth-child(2) .position-relative::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .process-item .position-relative::after {
        display: none;
    }
}


/*** Project Portfolio ***/
#portfolio-flters .btn {
    position: relative;
    display: inline-block;
    margin: 10px 4px 0 4px;
    transition: .5s;
}

#portfolio-flters .btn:hover,
#portfolio-flters .btn.active {
    color: #fff !important;
}

.portfolio-item {
    margin-bottom: 60px;
}

.portfolio-img img {
    transition: .3s;
}

.portfolio-item:hover .portfolio-img img {
    transform: scale(1.2);
}

.portfolio-title {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 120px;
    padding: 0 30px;
    margin: -25px;
    right: 10px;
    left: 10px;
    bottom: -60px;
    background: var(--bg-color);
    color: var(--text-color);
    box-shadow: 0 0 30px color-mix(in srgb, var(--text-color) 10%, transparent);
    transition: .5s;
    z-index: 3;
}

.portfolio-item:hover .portfolio-title {
    bottom: -45px;
}

.portfolio-btn {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 2;
    opacity: 0;
}

.portfolio-item:hover .portfolio-btn {
    opacity: 1;
}

.portfolio-btn a {
    transition: .5s;
}

.portfolio-item:hover .portfolio-btn a {
    margin-top: -60px;
}

.portfolio-box::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    border-radius: 2px;
    background: rgba(0, 0, 0, .7);
    transition: .5s;
    z-index: 1;
}

.portfolio-item:hover .portfolio-box::after {
    height: 100%;
}

.project-carousel .owl-nav {
    margin-top: 30px;
    width: 100%;
    height: 46px;
    display: flex;
    justify-content: center;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    position: relative;
    margin: 0 5px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--bg-primary);
    border-radius: 2px;
    font-size: 22px;
    transition: .5s;
}

.branding--link {
    display: none !important;
}

/*** Theme-safe website surfaces ***/

.site-surface {
    background: var(--bg-color) !important;
    color: var(--text-color) !important;
}

.site-surface-alt {
    background: var(--body-bg-alt) !important;
    color: var(--text-color) !important;
}

.site-surface-dark {
    background: var(--bg-color) !important;
    color: var(--text-color) !important;
}

.site-surface-primary {
    background: var(--bg-gradient) !important;
    color: #fff !important;
}

.site-muted {
    color: color-mix(in srgb, var(--text-color) 72%, transparent) !important;
}

.site-heading {
    color: var(--text-color) !important;
}

.site-footer {
    background: var(--bg-color) !important;
    color: var(--text-color) !important;
}

.site-footer h1,
.site-footer h2,
.site-footer h3,
.site-footer h4,
.site-footer h5,
.site-footer h6,
.site-footer p,
.site-footer a {
    color: var(--text-color) !important;
}

.site-footer a:hover {
    color: var(--bg-primary) !important;
}

.site-footer .section-title::after {
    background: var(--bg-color);
}

.site-footer-bottom {
    background: color-mix(in srgb, var(--bg-color) 88%, #000) !important;
    color: var(--text-color) !important;
}

.site-footer-bottom a {
    color: var(--text-color) !important;
}

.site-footer-bottom a:hover {
    color: var(--bg-primary) !important;
}

/*** Keep intentional white text on primary/hero areas ***/

.bg-primary,
.site-surface-primary,
.carousel-caption,
.bg-header {
    color: #fff !important;
}

.bg-primary h1,
.bg-primary h2,
.bg-primary h3,
.bg-primary h4,
.bg-primary h5,
.bg-primary h6,
.bg-primary p,
.bg-primary a,
.site-surface-primary h1,
.site-surface-primary h2,
.site-surface-primary h3,
.site-surface-primary h4,
.site-surface-primary h5,
.site-surface-primary h6,
.site-surface-primary p,
.site-surface-primary a,
.carousel-caption h1,
.carousel-caption h2,
.carousel-caption h3,
.carousel-caption h4,
.carousel-caption h5,
.carousel-caption h6,
.carousel-caption p,
.bg-header h1,
.bg-header h2,
.bg-header h3,
.bg-header h4,
.bg-header h5,
.bg-header h6,
.bg-header p,
.bg-header a {
    color: #fff !important;
}

/*** Theme-aware footer link/icon fix ***/

.link-animated a {
    color: var(--text-color) !important;
}

.link-animated a:hover {
    color: var(--bg-primary) !important;
}

.link-animated i,
.site-footer i {
    color: var(--bg-primary) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6,
.section-title h5,
.section-title h1,
.section-title h2,
.navbar-brand,
.navbar-nav .nav-link,
.btn,
.dropdown-header,
.carousel-caption h1,
.carousel-caption h5 {
    font-family: var(--font-heading);
}

p,
small,
span,
li,
label,
input,
textarea,
select,
.form-control,
.form-select,
.dropdown-item,
.card-text,
blockquote {
    font-family: var(--font-body);
}

h1,
.display-1 {
    font-weight: 900;
    letter-spacing: -.03em;
}

h2,
.display-2 {
    font-weight: 800;
    letter-spacing: -.025em;
}

h3,
.display-3 {
    font-weight: 700;
}

h4,
h5,
h6 {
    font-weight: 700;
}

.navbar-nav .nav-link {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: .02em;
}

.btn {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: .02em;
}

.section-title h5 {
    font-size: .9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .14em;
}

.section-title h1,
.section-title h2 {
    font-weight: 500!important;
}

.carousel-caption h1 {
    font-weight: 500!important;
    letter-spacing: -.04em;
    line-height: 1.05;
}

.carousel-caption h5 {
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.service-item h4,
.fact-text h5,
.card-title {
    font-family: var(--font-heading);
    font-weight: 700;
}

.dropdown-header {
    color: var(--bg-primary);
}

.site-primary-surface {
            background: var(--topbar-bg) !important;
            color: #fff !important;
        }

        .site-primary-surface * {
            color: #fff !important;
        }

        .site-theme-toggle {
            width: 45px;
            height: 45px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            margin: 0;
            line-height: 1;
            border-radius: 0 !important;
            border: 0 !important;
            text-decoration: none;
            transition: .2s ease;
            flex: 0 0 45px;
        }

        html[data-bs-theme="dark"] .site-primary-surface .site-theme-toggle {
            background: var(--body-bg) !important;
            color: #ffcb00 !important;
        }

        html[data-bs-theme="dark"] .site-primary-surface .site-theme-toggle:hover {
            background: var(--body-bg-alt) !important;
            color: #ffffff !important;
        }

        html[data-bs-theme="light"] .site-primary-surface .site-theme-toggle {
            background: var(--bg-primary) !important;
            color: #212121 !important;
        }

        html[data-bs-theme="light"] .site-primary-surface .site-theme-toggle:hover {
            background: var(--bg-secondary) !important;
            color: #212121 !important;
        }

        .site-theme-toggle i {
            line-height: 1;
            transform: none;
        }

        .site-search-modal {
            background: color-mix(in srgb, var(--bg-color) 78%, transparent) !important;
        }

        .site-modal-close {
            background-color: #fff !important;
            opacity: 1;
        }

        .site-footer-original {
            background: #111111 !important;
            color: #ffffff !important;
        }

        .site-footer-original h1,
        .site-footer-original h2,
        .site-footer-original h3,
        .site-footer-original h4,
        .site-footer-original h5,
        .site-footer-original h6,
        .site-footer-original p {
            color: #ffffff !important;
        }

        .site-footer-original a {
            color: #ffffff !important;
            text-decoration: none;
        }

        .site-footer-original a:hover {
            color: #ffcb00 !important;
        }

        .site-footer-original i,
        .site-footer-original .footer-links i {
            color: #ffcb00 !important;
        }

        .site-footer-original .footer-links a {
            color: #ffffff !important;
            opacity: .95;
        }

        .site-footer-original .footer-links a:hover {
            color: #ffcb00 !important;
            opacity: 1;
            padding-left: 10px;
        }

        .site-footer-original .section-title::before {
            background: #ffcb00 !important;
        }

        .site-footer-original .section-title::after {
            background: #111111 !important;
        }

        .site-footer-brand {
            background: linear-gradient(100deg, #ffcb00 0%, #ff9b00 50%) !important;
            color: #ffffff !important;
        }

        .site-footer-brand,
        .site-footer-brand h1,
        .site-footer-brand h2,
        .site-footer-brand h3,
        .site-footer-brand h4,
        .site-footer-brand h5,
        .site-footer-brand h6,
        .site-footer-brand p,
        .site-footer-brand a,
        .site-footer-brand i {
            color: #ffffff !important;
        }

        .site-footer-brand img {
            max-width: 100%;
        }

        .site-footer-bottom-original {
            background: #000000 !important;
            color: #ffffff !important;
        }

        .site-footer-bottom-original p,
        .site-footer-bottom-original a {
            color: #ffffff !important;
        }

        .site-footer-bottom-original a:hover {
            color: #ffcb00 !important;
        }

.blog-header {
    height: 500px;
    overflow: hidden;
}

.blog-header-overlay {
    background: rgba(0, 0, 0, 0.45);
}