img,
a {
    transition: transform 1s;
}

img:hover,
a:hover {
    transform: scale(1.1);
}


.header-container {
    background-image:  url('/assets/images/hero-background.svg');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
}

.other-header-container, .header-container, .start-tech-guide-container{
    background-color: var(--primary-color);
    position: relative;
    color: white;
    overflow: hidden;
}

.start-tech-guide-container-wrapper {
    max-width: var(--max-width);
    margin: auto;
    margin-top: 100px;
    margin-bottom: 50px;
}

.header-container>div:first-child, .other-header-container>div:first-child {
    max-width: var(--max-width);
    display: flex;
    margin: auto;
    gap: 8px;
    padding-top: 32px;
    padding-right: var(--global-desktop-padding);
    padding-left: var(--global-desktop-padding);
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: white;
}

.notfound-logo{
    color: var(--tertiary-color);
}

.logo img {
    width: 38.17px;
    height: 33.9px;
}

.logo p {
    font-family: 'DMSans_36pt-Bold';
    text-transform: uppercase;
    font-size: 20px;
}

nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-family: 'DMSans_18pt-Medium';
    gap: 40px;
    margin-left: 20px;


}

nav a {
    text-decoration: none;
    color: var(--secondary-color);
}


.auth-container {
    font-family: 'DMSans_36pt-Bold';
    display: flex;
    align-items: center;
    gap: 16px;


}

.auth-container a {
    text-decoration: none;
    height: 43px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 40px;
    text-wrap: nowrap;
}

.auth-container>a:nth-child(1) {
    border: 1px solid white;
    color: white;
}

.notfound-auth>a:nth-child(1) {
    border: 1px solid var(--tertiary-color);
    color: var(--custom-five);
}

.auth-container>a:nth-child(2) {
    background-color: white;
    color: black;
}

.notfound-auth>a:nth-child(2) {
    background-color: var(--tertiary-color);
    color: var(--custom-seven);
}

.hamburger {
    display: none;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.hamburger-2.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-2.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-2.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.bar {
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    justify-content: center;
    height: 2.5px;
    border-radius: 3px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: var(--custom-seven);
    width: 25px;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.notfound-bar{
    background-color: var(--custom-five);
}

.nav-menu {
    position: fixed;
    left: -100%;
    gap: 0;
    height: 100dvh;
    background-color: var(--primary-color);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    font-family: 'Satoshi-Medium';
    font-size: 20px;
    gap: 40px;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    z-index: 99999;
    box-sizing: content-box;
}

.nav-menu.active {
    left: 0;
}

.nav-menu-inner{
    padding: 44px 16px;
}

.nav-menu-inner>div:first-child {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-menu-inner>nav{
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 36px;
}
.nav-menu-inner>nav>a{
    text-align: center;
    text-decoration: none;
    font-family: 'DMSans_18pt-Medium';
    font-size: 14px;
    color: var(--secondary-color);
}


.nav-menu-inner>a:nth-child(3) {
    height: 41px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    border: 1px solid white;
    color: white;
    font-size: 14px;
    text-decoration: none;
    font-family: 'DMSans_36pt-Bold';
    margin-top: 24px;
    margin-bottom: 16px;
}



.active-nav-item {
    border-bottom: 1px solid var(--tertiary-color) ;
    text-decoration: underline;
    background: linear-gradient(136.9deg, var(--custom-thirteen) 2.3%, var(--custom-fourteen) 96.52%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
}

.nav-menu-inner>a:nth-child(4){
    height: 41px;
    width: 100%;
    display: flex;
    justify-content: center;
    color: black;
    align-items: center;
    border-radius: 40px;
    background-color: white;
    font-size: 14px;
    text-decoration: none;
    font-family: 'DMSans_36pt-Bold';
}

.notfound-menu>a{
    color: var(--custom-seventeen);
}

.mobile-logo{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    color: white;
    text-decoration: none;
}

.mobile-logo>img{
    height: 32px;
    width: 32px;
}

.mobile-logo>p{
    text-transform: uppercase; 
    color: white;
    font-size: 14px;
    font-family: 'DMSans_36pt-Bold';
    margin: 0px;
}

@media only screen and (max-width: 870px) {
    nav,
    .auth-container {
        display: none;
    }

    .hamburger{
        display: block;
    }

}

@media only screen and (max-width: 500px) {
    .header-container>div:first-child, .other-header-container>div:first-child {
        padding-right: var(--global-mobile-padding);
        padding-left: var(--global-mobile-padding);
    }
    .logo img {
        width: 32px;
        height: 32px;
    }

    .logo p {
        font-size: 15px;
    }

}