/********** Template CSS **********/
:root {
    --primary: #3374ff;
    --bg-blog: #f3f3f3ec;
    --bg-info-article: #ffffffec;
    --primary_dark: #125dff;
    --secondary: #58d5a4;
    --light: #1a1a1a;
    --bg-light-card: #3f4e64;
    --dark: #eef9ff;
    --bkg: #293341;
    --bkg-light: #b1b1b1;
}
.bg-light-card {
    background-color: var(--bg-light-card) !important;
}

.bg-primary-dark {
    background-color: var(--primary_dark) !important;
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bg-primary-dark i{
    font-size: 24px;
}

body {
    background-color: var(--bkg);
    color: var(--dark);
}

.wow {
    visibility: hidden;
}
body.ready .wow {
    visibility: visible;
}


html {
    scroll-behavior: smooth;
}

a[href^="#"] {
    cursor: pointer;
}

/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--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);
    }
}

@font-face {
    font-family: 'Akashi';
    src: url('/static/fonts/akashi/akashi.woff2') format('woff2');
    /*
    src: url('https://fonts.cdnfonts.com/s/93590/AyakashiPersonaluse-mL01a.woff') format('woff');
    */
}

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

.back-to-top {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 9999;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    background-color: #0d6efd;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.back-to-top i {
    line-height: 44px;
    display: block;
    margin: 0 auto;
}

.back-to-top:hover {
    background-color: #0b5ed7;
}

@media (max-width: 600px) {
    .back-to-top {
        left: 10px;
        bottom: 12px;
    }
}


.h-captcha {
    transform: scale(0.95);
    transform-origin: center;
}

/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
    color: var(--dark);
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
    color: var(--dark);
}

.facts-h4 {
  display: none;
  text-align: center;
  margin-top: 40px;
  padding-left: 15px;
  padding-right: 15px;
  color: var(--dark);
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
    color: var(--dark);
}

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

p {
    font-size: 18px;
}

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

.btn-primary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}
.btn-primary::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--primary_dark);
    border-radius: inherit;
    transform: scale(0);
    transition: transform 0.4s ease;
    z-index: 1;
    mix-blend-mode: screen;
}
.btn-primary:hover::after {
    transform: scale(1);
}
.btn-primary > * {
    position: relative;
    z-index: 2;
    color: #FFFFFF;
}
.btn-primary:active {
    transform: scale(0.97);
}


.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
    background: var(--primary);
}
.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.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;
}


/* Images */
.main-image img {
    width: 100%;
    max-width: 420px;
    height: auto;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    border-radius: 16px;
    display: block;
    margin-top: 16px;
    margin-bottom: 16px;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 768px) and (max-width: 1024px) {
    .main-image {
        width: 100%;
    }

    .main-image img {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}


.additional-image img {
    width: 100%;
    max-width: 340px;
    height: auto;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    border-radius: 16px;
    display: block;
    margin-top: 16px;
    margin-bottom: 16px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 480px) {
    .additional-image img {
        max-width: 320px;
    }
}

.partner-card {
    padding: 16px;
    border-radius: 24px;
    height: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}
.partner-card:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.partner-card-img {
    width: 100%;
    max-width: 300px;
    margin-bottom: 12px;
    border-radius: 24px;
    display: block;
}


/* Forms */
.user-lowercase:not(:placeholder-shown) {
    text-transform: lowercase;
}


/* Locale */
#language-selector {
    margin-right: 12px;
}

.language-dropdown {
    position: relative;
    display: inline-block;
}

#language-button {
    background: none;
    padding: 4px 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    border: none;
}

#language-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    overflow: hidden;
    z-index: 1000;
}

.lang-option {
    padding: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    color: black !important;
}

.lang-option:hover {
    background-color: #f0f0f0;
}

.lang-option > a {
    color: #000 !important;
    text-decoration: none;
}


/*** Topbar ***/
.topbar {
    background-color: #1a1a1a;
}

/*** Navbar ***/
.navbar {
    position: sticky;
    top: 0;
    z-index: 1020;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.075);
}

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

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

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

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

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

/* Text Logo */

@media (max-width: 767.98px) {
    
    .navbar-brand span {
        color: var(--primary);
        font-family: 'Akashi', sans-serif;
        display: inline-block;
        overflow: visible;
        white-space: normal;
        clip-path: inset(0 0 0 0) !important;
        transition: none !important;
        vertical-align: middle;
        line-height: 1;
    }
    .navbar-brand img {
        vertical-align: middle;
        display: inline-block;
        width: 40px !important;
        margin-left: -20px;
    }
    .navbar-toggler {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1030;
    }
}

@media (min-width: 768px) {
    .navbar-brand span {
        font-family: 'Akashi', sans-serif;
        display: inline-block;
        overflow: hidden;
        white-space: nowrap;
        clip-path: inset(0 100% 0 0);
        transition: clip-path 0.7s ease;
        vertical-align: middle;
        line-height: 1;
        color: var(--dark);
    }
    .navbar-brand:hover span {
        clip-path: inset(0 0 0 0);
    }
    .navbar-brand img {
        vertical-align: middle;
        display: inline-block;
    }
}

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

    .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(--dark);
    }

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

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

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--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;
    }

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

/*
.carousel-item.active {
    position: relative;
    height: 900px;
}

#webglCanvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 900px;
    display: block;
    z-index: 0;
}

#loading, #ui {
    position: absolute;
    top: 10px; left: 10px;
    z-index: 2;
    pointer-events: none;
    color: white;
}
*/

.top-header-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
}

.top-header-box .h2-top-header,
.top-header-box .h3-top-header {
    text-align: center;
    margin: 0;
}

.top-header-box .h2-top-header {
    font-size: 36px;
    margin-bottom: 10px;
}

.top-header-box .h3-top-header {
    margin-top: 10px;
}

.btn-header {
    font-size: 20px;
}

@media (max-width: 767px) {
    .top-header-box {
        height: 180px;
        margin-bottom: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    .top-header-box .h2-top-header {
        font-size: 20px !important;
        line-height: 1.2 !important;
    }
    .top-header-box .h3-top-header {
        font-size: 16px !important;
        padding-bottom: 5px;
    }
    .btn-header {
        display: inline-block;
        position: relative;
        z-index: 2;
        font-size: 16px;
        margin-top: -20px;
    }
}



/*** Section Title ***/
/*
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--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: 0px;
    background: var(--dark);
    -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; }
}

@-webkit-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; }
}
*/

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

@media (max-width: 768px) {
    img.img-fluid.rounded-4.mb-4.d-block.mx-auto {
        max-width: 350px !important;
    }
}

.simple-label>span.new {
  background-color: #259400;
  border-color: #259400;
  color: #FFF;
  font-size: 12px;
}

.bg_header_gradient_contact_us {
    background: linear-gradient(rgba(6, 24, 52, 0.7), rgba(6, 24, 52, 0.7));
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.bg-header-contact-us {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url('/static/images/cover/contact_us_cover.jpg') center center no-repeat;
    background-size: cover;
}


.p-content {
    font-weight: normal !important;
}
.p-content-main {
    font-weight: normal !important;
}

@media (min-width: 992px) {
    .p-content-main {
        max-width: 860px;
        margin-left: auto;
        margin-right: auto;
    }
}


/*
Intro Home
*/

.inside-us-home {
    font-size: 16px;
}


/* Sliders Responsive */

#consultant-services-desktop {
    display: block;
}

#consultant-services-mobile {
    display: none;
}

@media (max-width: 768px) {
    #consultant-services-desktop {
        display: none;
    }
    #consultant-services-mobile {
        display: block;
    }
}


#it_services_desktop {
    display: block;
}

#it-services-responsive {
    display: none;
}

@media (max-width: 768px) {
    #it-services-desktop {
        display: none;
    }
    #it-services-responsive {
        display: block;
    }
}

/*
#cyber-saas-desktop {
    display: block;
}
#cyber-saas-mobile {
    display: none;
}
@media (max-width: 768px) {
    #cyber-saas-desktop {
        display: none;
    }
    #cyber-saas-mobile {
        display: block;
    }
}

#cyber-saas-gold-mobile {
    display: none;
}
@media (max-width: 768px) {
    #cyber-saas-gold-mobile {
        display: block;
    }
}

#cyber-saas-mobile .swiper-slide,
#cyber-saas-gold-mobile .swiper-slide {
    width: auto !important;
}
*/

/* 
    Services Header Images
*/

/* Cybersecurity */
.bg-header-ai-solutions {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url('/static/images/cover/AI_Solutions_GAR_AI_Tech.jpg') center center no-repeat;
    background-size: cover;
}

/* Cybersecurity */
.bg-header-cybersecurity-service {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url('/static/images/cover/Cybersecurity_Gar_AI_Tech.jpg') center center no-repeat;
    background-size: cover;
}
.bg-header-cyber_defense {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url('/static/images/cover/Cybersecurity_Gar_AI_Tech.jpg') center center no-repeat;
    background-size: cover;
}
.bg-header-red_team {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url('/static/images/cover/Cybersecurity_Gar_AI_Tech.jpg') center center no-repeat;
    background-size: cover;
}

.link-animated a:hover {
    padding-left: 0;
    color:var(--primary_dark) !important;
}
.link-animated-p p:hover {
    padding-left: 0;
    color:var(--primary_dark) !important;
}

.form_get_in_touch {
    padding: 30px !important;
    padding-top: 35px !important;
    background-color: #034376 !important;
    border-radius: 20px;
}
.form_get_in_touch .row.g-4 {
    row-gap: 10px;
}

/* Footer  */
.footer-link {
    font-size: 14px;
}

.footer-dark {
    background-color: #242424 !important;
}

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