nav {
    display: flex;
    position: fixed;
    top: 0;
    overflow-y: auto;
    bottom: 0;
    padding-top: 15px;
    padding-bottom: 15px;
    height: fit-content;
    align-items: center;
    width: 100%;
    background-color: rgba(38, 38, 38, 0);
    padding-left: 150px;
    justify-content: space-between;
    padding-right: 150px;
    z-index: 300;
    transition: all 0s;
}
@media (max-width: 1500px) {
    nav {
        padding-left: 80px !important;
        padding-right: 80px !important;
    }
}
@media (max-width: 1100px) {
    nav {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
    nav>div:nth-of-type(2) {
        display: none !important;
    }
}
@media (max-width: 600px) {
    nav {
        padding-left: 25px !important;
        padding-right: 25px !important;
    }
    nav>div:nth-of-type(2) {
        display: none !important;
    }
}
nav>div:nth-of-type(1) {
    display: flex;
    gap: 40px;
    align-items: center;
}
nav>div:nth-of-type(2) {
    display: flex;
    gap: 15px;
    align-items: center;
}
.navbar-image {
    height: 100px;
    width: 130px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    display: flex;

}

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

.navbar-item {
    color: white;
    text-decoration: none;
    font-family: var(--font-second) !important;
    font-weight: 100;
    font-size: 12px;
    transition: all 0.25s;
}

.navbar-item:hover {
    color: #cccccc;
}

.navbar-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 8px;
    font-family: var(--font-second) !important;
    font-weight: 100;
    font-size: 16px;
    font-weight: 200;
    padding: 10px 15px;
    background-color: #201e1c;
    text-decoration: none;
    border: solid 1px white;
}
.navbar-phonenumber {
    font-family: var(--font-second);
    font-weight: 100;
    font-size: 15px !important;
    border-bottom: solid 2px #201e1c;
    color: white !important;
    text-decoration: none;
}
.navbar-phone:hover {
    color: black;
    background-color: white;
}

@media (max-width: 1100px) {
    .navbar-items {
        display: none;
    }

    .navbar-image {
        height: 80px;
        width: 130px;
    }

    nav {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .navbar-button {
        display: flex !important;
    }
}

/* Hamburger Icon */
.navbar-button {
    height: 30px;
    width: 37px;
    display: none;
    position: relative;
    z-index: 3;
    border: none;
    background-color: transparent;
}

.navbar-button>div {
    transition: all 0.3s;
}

.navbar-button-line-1 {
    background-color: white;
    border-radius: 3px;
    height: 3px;
    left: 0;
    position: absolute;
    width: 100%;
    border: 0;
    margin: 0;
    outline: 0;
    padding: 0;
    top: 0;
    vertical-align: baseline;
}

.navbar-button-line-2 {
    background-color: white;
    border-radius: 3px;
    height: 3px;
    left: 0;
    position: absolute;
    margin: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    border: 0;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
}

.navbar-button-line-3 {
    background-color: white;
    border-radius: 3px;
    height: 3px;
    left: 0;
    position: absolute;
    border: 0;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
    width: 100%;
    bottom: 0;
}

.navbar-button.active>.navbar-button-line-1 {
    transform: translateY(13px) translateY(-50%) rotate(-45deg);
}

.navbar-button.active>.navbar-button-line-2 {
    opacity: 0;
}

.navbar-button.active>.navbar-button-line-3 {
    transform: translateY(-15px) translateY(0%) rotate(45deg);
}

/* Navbar Mobile */
.navbar-mobile {
    position: fixed;
    opacity: 0;
    pointer-events: none;
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    left: 0;
    top: 0;
    width: 100%;
    background-color: var(--background);
    transition: all 0.5s;
}

.navbar-mobile>a {
    font-size: 60px;
}

.navbar-mobile.active {
    pointer-events: all;
    opacity: 1;
    display: flex;
    height: 100vh !important;
}


/* Footer */
footer {
    display: flex;
    flex-direction: column;
    gap: 0px;
    position: static;
}

.footer-top {
    display: flex;
    gap: 50px;
    align-items: center !important;
    justify-content: center !important;
}

.footer-top>div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.footer-top>div>p {
    color: white;
    font-family: var(--font-second);
    font-weight: 100;
}

.footer-top>div>div {
    display: flex;
    gap: 8px;
}

.footer-top>div>div>a {
    color: white;
    font-size: 19px;
}

.footer-top>div>svg {
    height: 30px;
    width: 30px;
}

.footer-barrier {
    height: 100px;
    width: 0.5px;
    background-color: #3F3B3A;
}

footer>hr {
    height: 1.5px;
    background-color: #3F3B3A;
    opacity: 100%;
    width: 100%;
}

.footer-bottom {
    display: flex;
    width: 100%;
    margin: auto;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom>div {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    color: white;
}

.footer-bottom>div>p {
    font-family: var(--font-second);
    font-size: 12px;
    font-weight: 100;
}

.footer-bottom>div>div>p {
    font-family: var(--font-second);
    font-size: 12px;
    font-weight: 100;
}

.footer-bottom>div>a {
    font-family: var(--font-second);
    font-size: 12px;
    color: white;
    font-weight: 100;
    text-decoration: none;
}

.footer-bottom>div>hr {
    height: 15px;
    width: 0.5px;
    background-color: #3F3B3A;
    opacity: 100%;
}

.footer-developer {
    height: auto;
    object-fit: fill;
    cursor: pointer;
    margin-bottom: 1px;
}

@media (max-width: 1000px) {
    .footer-bottom {
        flex-direction: column;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 650px) {
    .footer-top>div {
        display: flex;
        flex-direction: row;
    }

    .footer-barrier {
        display: none !important;
    }

    .footer-top {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 10px;
    }

    .footer-top>div>div>a {
        font-size: 20px;
    }
}

@media (max-width: 650px) {
    .navbar-mobile>a {
        font-size: 40px;
    }
}

@media (max-width: 415px) {
    .footer-bottom>div:nth-of-type(3) {
        flex-direction: column;
        height: 100%;
    }

    .footer-bottom>div:nth-of-type(3)>hr {
        display: none;
    }
}