.header {
    position: fixed;
    z-index: 10;
    top: 0;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

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

.header.sticky {
    background-color: #06001E;
    background-image: linear-gradient(180deg, rgba(0, 241, 243, 0.1) 0%, rgba(1, 30, 61, 0.1) 100%);
}

.header.sticky .header-container {
    padding: 14px 31px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 31px 12px;
}

.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 19px;
}

.firstScreenImg {
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    /* transform: translateX(34px); */
    margin: auto;
    max-width: 100%;
    mix-blend-mode: color-dodge;
    overflow: hidden;
}

.firstScreenImg-bg {}

.firstScreen {
    padding: 385px 31px 94px;
}

.firstScreen-label {
    padding-top: 20px;
    padding-bottom: 43px;
}

.hamburger {
    display: none;
    cursor: pointer;
    position: relative;
    z-index: 999;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    transition: all 0.5s ease-in-out;
}

.hamburger-icon {
    width: 28px;
    height: 2px;
    background: #FFFFFF;
    transition: all 0.5s ease-in-out;
    border-radius: 6px;
}

.hamburger-icon::before,
.hamburger-icon::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 2px;
    border-radius: 6px;
    background: #FFFFFF;
    transition: all 0.5s ease-in-out;
}

.hamburger-icon::before {
    transform: translateY(-9px);
}

.hamburger-icon::after {
    transform: translateY(9px);
}

.header-logoWrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.mobileMenu {
    position: fixed;
    left: 0;
    top: 0;
    background: linear-gradient(145.35deg, #001124 13.95%, #002143 95.27%, #002041 95.27%);
    padding: 40px 39px;
    width: 335px;
    max-width: 90%;
    overflow-y: auto;
    max-height: 100vh;
    z-index: 20;
}

/**
 * ----------------------------------------
 * animation slide-in-fwd-tl
 * ----------------------------------------
 */

@-webkit-keyframes slide-in-fwd-tl {
    0% {
        -webkit-transform: translateZ(-1400px) translateY(-800px) translateX(-1000px);
        transform: translateZ(-1400px) translateY(-800px) translateX(-1000px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateZ(0) translateY(0) translateX(0);
        transform: translateZ(0) translateY(0) translateX(0);
        opacity: 1;
    }
}

@keyframes slide-in-fwd-tl {
    0% {
        -webkit-transform: translateZ(-1400px) translateY(-800px) translateX(-1000px);
        transform: translateZ(-1400px) translateY(-800px) translateX(-1000px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateZ(0) translateY(0) translateX(0);
        transform: translateZ(0) translateY(0) translateX(0);
        opacity: 1;
    }
}

.slide-in-fwd-tl {
    -webkit-animation: slide-in-fwd-tl 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-in-fwd-tl 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

/**
 * ----------------------------------------
 * animation slide-in-bck-tl
 * ----------------------------------------
 */

@-webkit-keyframes slide-in-bck-tl-reverce {
    0% {
        -webkit-transform: translateZ(700px) translateY(-300px) translateX(-400px);
        transform: translateZ(700px) translateY(-300px) translateX(-400px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateZ(0) translateY(0) translateX(0);
        transform: translateZ(0) translateY(0) translateX(0);
        opacity: 1;
    }
}

@keyframes slide-in-bck-tl-reverce {
    0% {
        -webkit-transform: translateZ(700px) translateY(-300px) translateX(-400px);
        transform: translateZ(700px) translateY(-300px) translateX(-400px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateZ(0) translateY(0) translateX(0);
        transform: translateZ(0) translateY(0) translateX(0);
        opacity: 1;
    }
}

.slide-in-bck-tl-reverce {
    -webkit-animation: slide-in-bck-tl-reverce 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) reverse both;
    animation: slide-in-bck-tl-reverce 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) reverse both;
}

.popup {
    position: fixed;
    inset: 0;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000a228a;
    transition: background-color 1s ease;
    z-index: 20;
    display: none;
}

.popup-content {
    width: 80%;
}

.popup-body {
    background: #000a22;
    background-image: radial-gradient(121.84% 36.97% at 50.19% 40.43%, rgba(0, 81, 79, 0.45) 0%, rgba(0, 63, 66, 0) 100%);
}

.popup-close {
    position: absolute;
    width: 40px;
    height: 40px;
    right: 16px;
    top: 29px;
    z-index: 25;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.menu--popup {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 29px;
    padding: 40px 0 0;
}

.mobileMenu {
    display: none;
}

.menu-item--btnWrapper {
    padding-top: 5px;
    display: flex;
    flex-direction: column;
    gap: 23px;
    justify-content: center;
    align-items: flex-start;
}

@media (max-width:1200px) {
    .menu--desk {
        display: none !important;
    }
    .firstScreenImg img {
        transform: translateX(-10.5%);
    }
    .mobileMenu .hamburger {
        display: flex;
        width: 30px;
        height: 24px;
    }
    .mobileMenu .hamburger-icon,
    .mobileMenu .hamburger-icon::before,
    .mobileMenu .hamburger-icon::after {
        width: 30px;
    }
    .mobileMenu .hamburger-icon::before {
        transform: translateY(-10px);
    }
    .mobileMenu .hamburger-icon::after {
        transform: translateY(10px);
    }
    .hamburger {
        display: flex;
        width: 46px;
        height: 36px;
    }
    .hamburger-icon,
    .hamburger-icon::before,
    .hamburger-icon::after {
        width: 46px;
    }
    .hamburger-icon::before {
        transform: translateY(-15px);
    }
    .hamburger-icon::after {
        transform: translateY(15px);
    }
    .btn-small {
        padding-left: 28px;
        padding-right: 28px;
    }
    .logo {
        height: 56px;
    }
    /* .mobMenu{
        display: flex;
    } */
    /* .menu--popup{
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 30px 0;
    } */
    .hideTablet {
        display: none !important;
    }
    .header-container {
        padding: 29px 42px 12px;
    }
    .header-logoWrapper {
        width: 100%;
    }
    .logo-link {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .firstScreen {
        padding: 320px 24px 48px;
    }
    .firstScreen-label {
        padding-top: 18px;
        padding-bottom: 69px;
    }
    .menu-item {
        font-size: 14px;
    }
    .menu--popup {
        gap: 33px;
    }
}

@media (max-width:767px) {
    /* .popup-content{
        width: 100%;
        overflow-y: auto;
        height: 100%;
    }
    .btnHideOn767{
        display: none !important;
    }

    .firstScreen{
        padding: 238px 14px 100px 14px;
    }
    .menu-item{
        font-size: 14px;
        line-height: 100%;
    }
    .mobMenu{
        padding: 15px;
    }
    .firstScreenImg img{
        height: 94vh;
        transform: translateX(-15%);
    }
    .popup{
        padding: 20px;
    }
    .header-container{
        padding: 23px 14px 23px 35px;
    }
    .header-logoWrapper{
        width: 100%;
        padding-right: 17px;
    }
    .firstScreen-label{
        padding: 28px 0px;
        width: 224px;
        margin: auto;
    } */
    .mobileMenu {
        width: 232px;
        padding: 40px 30px;
    }
    .menu--popup {
        gap: 26px;
    }
    .header-container {
        padding: 25px 15px 12px 35px;
    }
    .logo {
        height: 34px;
    }
    .firstScreen {
        padding: 238px 0 98px;
    }
    .firstScreen-label {
        padding: 28px 0;
        max-width: 224px;
        margin: auto;
    }
    .hamburger {
        width: 28.6px;
        height: 22px;
    }
    .hamburger-icon,
    .hamburger-icon::before,
    .hamburger-icon::after {
        width: 28.6px;
    }
    .hamburger-icon::before {
        transform: translateY(-9px);
    }
    .hamburger-icon::after {
        transform: translateY(9px);
    }
    .backgroundTitle-projects {
        font-size: 34px;
        letter-spacing: 0.22em;
    }
    .popup {
        padding: 40px 0px;
    }
    .popup-content {
        width: 360px;
    }
    .firstScreenImg img {
        height: 747px;
        margin-top: 20px;
        transform: translateX(-14.5%);
    }
}

@media (max-width:389px) {
    .titleH1 {
        font-size: 26px;
    }
}

@media (max-width:370px) {
    .logo {
        height: 35px;
    }
    .titleH1 {
        font-size: 24px;
    }
}

/* @media () {
    
} */

@media (min-width:1200px) {
    .scale {
        transform: scale(.8);
        margin: 0 auto -1409px;
        transform-origin: top center;
    }
}