@font-face {
  font-family: "JetBrainsMono";
  src: url("../../fonts/JetBrainsMono-Variable.ttf");
}

html{
    overflow-x: clip;
}

.loader{
    background-color: #F9F9F9;
}

.preloader img{
    max-width: 900px;
}

.mouse-cursor{
    display: none;
}

#back-top i{
    color: var(--white);
}

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

.color-text{
    color: #131313;
}

.color-theme{
    color: var(--theme);
}

.bg-theme{
    background-color: var(--theme);
}

.bg-blue-light{
    background-color: #f2f9ff;
}

.bg-blue{
    background-color: #c5ddfd;
}

.bg-purple{
    background-color: #7171ef;
}

body.body-dark .bg-blue{
    background-color: var(--theme);
}


body.body-dark .bg-purple{
    background-color: var(--theme2);
}


body.body-dark .bg-blue-dark{
    background-color: var(--theme);
}

body.body-dark .bg-purple-dark{
    background-color: var(--theme2);
}

.theme-btn{
    border: 2px solid var(--theme);
}

.nowrap{
    white-space: nowrap;
}

/* Menu */

:root {
    --menu-bg: #F9F9F9;
    --menu-text: #000000;
    --menu-grid: rgba(0, 0, 0, 0.05);
    --menu-label: #666666;
}

.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    background-color: var(--menu-bg);
    color: var(--menu-text);
    z-index: 99999;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    overflow-y: scroll;
    overflow-x: clip;
}

.fullscreen-menu.is-open {
    transform: translateY(0);
}

.fullscreen-menu__pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 50px 50px;
    background-image: 
        linear-gradient(to right, var(--menu-grid) 1px, transparent 1px),
        linear-gradient(to bottom, var(--menu-grid) 1px, transparent 1px);
    animation: panGrid 10s linear infinite;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

/* .fullscreen-menu.is-hovering .fullscreen-menu__pattern {
    opacity: 0;
} */

@keyframes panGrid {
    0% { background-position: 0 0; }
    100% { background-position: 150px 150px; }
}

.fullscreen-menu__wrapper {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 30px 15px;
}

.fullscreen-menu__close {
    align-self: flex-end;
    cursor: pointer;
    color: var(--menu-text);
    padding: 0 10px;
    transition: opacity 0.3s ease;
}

.fullscreen-menu__close i {
    font-size: 28px;
    font-weight: 300;
}

.fullscreen-menu__close:hover {
    opacity: 0.5;
}

.fullscreen-menu__grid {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin-top: 10px;
}

.menu-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--menu-label);
    margin-bottom: 1rem;
}

.menu-standard__list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
}

.menu-standard__list a {
    color: var(--menu-text);
    text-decoration: none;
    font-size: 1.3rem;
    line-height: 2;
    transition: opacity 0.3s ease;
}

.menu-standard__list a:hover {
    opacity: 0.5;
}

.email-link {
    color: var(--menu-text);
    text-decoration: none;
    font-size: 1.3rem;
    line-height: 2;
    border-bottom: 1px solid var(--menu-grid);
    padding-bottom: 5px;
    transition: opacity 0.3s ease;
}

.email-link:hover { opacity: 0.5; }

.menu-services { padding-top: 2rem; }

.menu-services__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-item a {
    color: var(--menu-text);
    text-decoration: none;
    font-size: 1.3rem;
    line-height: 2;
    transition: opacity 0.3s ease;
}

.service-preview { display: none; }

@media screen and (max-width: 1439px){
    .service-item a:hover { opacity: 0.5; }
}

@media (min-width: 1440px) {
    .fullscreen-menu__grid {
        flex-direction: row;
        align-items: flex-start;
        margin-top: 5vh;
    }

    .menu-standard {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .menu-services {
        flex: 2;
        padding-top: 0;
    }

    .service-preview {
        display: block;
        position: absolute;
        right: -100px;
        top: 50%;
        width: 250px;
        height: 250px;
        margin-left: 50px;
        transform: translateY(-50%) scale(0.5);
        background-size: cover;
        background-position: center;
        border-radius: 4px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: 5;
    }

    .service-item:hover .service-preview {
        opacity: 1;
        transform: translateY(-50%) scale(0.75);
    }

    .menu-services__list:hover .service-item:not(:hover) a {
        opacity: 0.2;
    }

    .service-item {
        position: relative;
        margin-bottom: 2rem;
    }

    .service-item a {
        font-family: "JetBrainsMono", "JetBrains Mono", monospace;
        color: var(--menu-text);
        text-decoration: none;
        font-size: clamp(1.5rem, 5vw, 4rem);
        font-weight: 700;
        line-height: 1.2;
        letter-spacing: -0.02em;
        display: inline-block;
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .service-item:hover a {
        transform: translateX(-50px);
        color: var(--theme2);
    }

    body.body-dark .service-item:hover a {
        color: var(--white);
    }
}

/* Dark mode */

.header__hamburger{
    border: 2px solid var(--theme);
    border-radius: 50%;
}

body.body-dark .header__hamburger{
    border-color: var(--white);
}

body.body-dark .loader{
    background-color: #010101;
}

body.body-dark .header-1{
    background-color: #010101;
}

body.body-dark {
    --menu-bg: #0a0a0a;
    --menu-text: #ffffff;
    --menu-grid: rgba(255, 255, 255, 0.05);
    --menu-label: #aaaaaa;
    --theme: #000078;
    --theme2: #3809ae;
}

body.body-dark .header-1 .header-right .sidebar__toggle{
    background-color: #131313;
}

body.body-dark .header-1 .header-right .sidebar__toggle i{
    color: var(--white);
}

body.body-dark .service-preview{
    filter: brightness(0.9) contrast(1.2);
}

body.body-dark img{
    filter: brightness(0.98) contrast(1.05);
}

body.body-dark .color-text{
    color: var(--white);
}

body.body-dark .color-theme{
    color: var(--white);
}

body.body-dark .lets-talk-section,
body.body-dark footer.footer-section{
    background: #010101;
}

/* Page Title */

.breadcrumb-wrapper{
    background-color: rgb(198, 223, 255);
}

body.body-dark .breadcrumb-wrapper{
    background-color: var(--theme);
}

.breadcrumb-wrapper .breadcrumb-sub-title h1{
    color: var(--theme);
}

body.body-dark .breadcrumb-wrapper .breadcrumb-sub-title h1{
    color: var(--white);
}

.breadcrumb-wrapper .circle-shape{
    filter: brightness(0) invert(1);
    opacity: 0.45;
}

body.body-dark .breadcrumb-wrapper .circle-shape{
    opacity: 0.08;
}

.breadcrumb-wrapper .circle-shape-left{
    left: -85px;
    top: 15%;
}

.breadcrumb-wrapper .circle-shape-left img{
    transform: rotate(180deg) scale(0.7);
}

/* Footer */

@media screen and (min-width: 768px) {
    .cta-box{
        max-width: 70%;
    }
}

.lets-talk-section,
footer.footer-section{
    background: #F9F9F9;
}

.single-footer-widget{
    margin-bottom: 32px;
}

@media screen and (max-width: 991px) {
    .single-footer-widget{
        margin-bottom: 12px;
    }
}

.single-footer-widget,
.single-footer-widget a{
    color: #131313;
}

footer .footer-heading{
    font-size: 22px;
    font-weight: 400;
}

footer .footer-widgets-wrapper .single-footer-widget .widget-head{
    margin-bottom: 18px;
}

footer .links-column{
    gap: 0 64px;
}

/* footer .company-info *, */
footer .links-column a{
    display: inline-block;
    margin-bottom: 4px;
    font-size: 16px;
}

footer .links-column a:hover{
    opacity: 0.6;
}

.footer-bottom .footer-bottom-wrapper p{
    font-weight: 300;
}

body.body-dark footer .links-column a{
    color: #FFFFFFCC;
}


/* Elements */

.theme-list-style-1 li{
    color: #131313;
    padding: 12px 16px;
    background-color: rgb(244, 246, 255);
    border-left: 4px solid var(--theme);
    margin-bottom: 6px;
}

@media screen and (max-width: 991px){
    .about-wrapper-3 .about-image{
        max-width: 100%;
    }
}