:root {
    --headerheight: 7.5vh;
}

.w {
    width: clamp(384px, 80vw, 1536px);
    margin: 0 auto;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul,
li {
    list-style: none;
}

a {
    text-decoration: none;
}

html,
body {
    background-color: white;
}

.header {
    position: fixed;
    width: 100vw;
    height: var(--headerheight);
    background: linear-gradient(90deg, white 33.3%, rgb(255, 225, 225) 66.7%, white 100%);
    box-shadow: 0 1px 5px 1px rgb(0, 0, 0, 0.2);

}

.scrollbar {
    width: 0;
    height: 2.5px;
    background-color: rgb(255, 0, 0, 0.5);
    animation: scrollbar 1s linear forwards;
    animation-timeline: scroll();
    box-shadow: 0 1px 1px 1px rgb(0, 0, 0, 0.2);
}

@keyframes scrollbar {
    from {
        width: 0;

    }

    to {
        width: 100%;

    }
}

.header .w {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo {
    height: clamp(50px, 5vw, var(--headerheight));
}

.header .logo img {
    height: 100%;
}

.nav ul {
    width: clamp(384px, 80vw, 1024px);
    height: var(--headerheight);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: clamp(10px, 2.5vw, 25px);
}

.nav ul li a {
    display: block;
    font-size: clamp(12px, 1vw, 20px);
    color: rgb(50, 50, 50);
    white-space: nowrap;
}

.language {
    width: 100px;
    height: var(--headerheight);
}

/* **********************footer********************** */
.footer {
    width: 100%;
    height: 500px;
    background-color: rgb(0, 0, 0, 0.75);
    white-space: nowrap;

}

.info {
    width: 100%;
    height: 80%;
}


.info>ul {
    background-color: pink;
    display: flex;
    justify-content: space-between;
}


.footercontact {
    font-size: clamp(8px, 5vw, 16px);
}

.footercontact img {
    height: clamp(25px, 5vw, var(--headerheight));

}

.footermoreinfo ul {
    display: flex;
    gap: 50px;
}

.footerqrcode img {
    height: 50px;
}
















.copyright {
    width: 100%;
    height: 20%;
    border-top: 1px solid rgb(0, 0, 0, 0.5);
}