@import url(./font.css);

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

.container {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    border: none;
    background-color: unset;
    transition: 0.3s;
    cursor: pointer;
}

button:active {
    transform: translateY(2px);
    transition: 0.3s;
    opacity: 0.8;
}

:root {
    --c700: "Comfortaa-Bold";
    --c400: "Comfortaa-Regular";
    --m700: "Montserrat-Bold";
    --m400: "Montserrat-Regular";
    --r500: "Roboto-Medium";
    --r400: "Roboto-Regular";
    --gold: #F18128;
    --dark: #040D1F;
}

.header__top {
    background: linear-gradient(90.09deg, #3800AF 0%, #BF7204 97.52%, #C27500 100%, #C27500 100%);
    display: flex;
    justify-content: center;
    gap: 24px;
    align-items: center;
    padding: 20px 0;
    animation: bg 2s linear infinite;
}
@keyframes bg {
    0% {
        filter: hue-rotate(0);
    }

    100% {
        filter: hue-rotate(360deg);
    }
}
.header__top img {
    animation: film 2s linear infinite;
}
@keyframes film {
    from {
        transform: rotateX(0);
    }

    to {
        transform: rotateY(360deg);
    }
}


.header__top__text {
    font-family: var(--c400);
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #fff;
}

.nav {
    background-color: #000;
}

.nav__logo {
    font-family: var(--c700);
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    color: #fff;
}

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

.nav__list {
    display: flex;
    gap: 18px;
    padding: 0 12px;
}

.nav__link {
    font-family: var(--m400);
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #fff;
    transition: 0.2s;
}

.nav__link:hover {
    color: var(--gold);
    transition: 0.2s;
}

.nav__link::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: var(--gold);
    display: block;
    border-radius: 2px 2px 0 0;
    transform: scale(0);
    transition: 0.3s;
}

.nav__link span {
    padding: 40px 6px;
    display: block;
}

.nav__link:hover::after {
    transform: scale(1);
    transition: 0.3s;
}

.intro {
    background-image: url(../Images/intro_bg.png);
    height: 740px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.intro::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: #070F19BF;
    z-index: -1;
}

.intro__box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    height: 100%;
    gap: 30px;
}

.intro__title {
    font-family: var(--m700);
    font-weight: 700;
    font-size: 64px;
    line-height: 100%;
    color: #fff;
}

.intro__text {
    font-family: var(--m400);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #C8C8C8;
    width: 570px;
    text-align: justify;
}

.intro__btns {
    display: flex;
    gap: 30px;
}

.btn {
    padding: 17px 48px;
    background-color: var(--gold);
    border-radius: 4px;
}

.btn:hover {
    background-color: var(--dark);
    color: #fff;
    transition: 0.3s;
}

.close img,
.menu img {
    width: 25px;
    height: 25px;
}

#check {
    display: none;
}

.close,
.menu {
    display: none;
}

body::-webkit-scrollbar{
    background-color: var(--dark);
}
body::-webkit-scrollbar-thumb{
    background: linear-gradient(180.09deg, #3800AF 0%, #BF7204 97.52%, #C27500 100%, #C27500 100%);
    border-radius: 10px;
}