:root {
    --gray: #787878;
    --cyan: #44E293;
    --bgCol: #101010;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto";
}
body{
    height: 100vh;
    width: 100%;
    background-color: var(--bgCol);
}
.container {
    height: 100vh;
}
.whole-header {
    height: 100%;
    position: relative;
    top: -70px;
}
header .main-header {
    width: 100%;
    height: 100%;
}
.main-header .navbar {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: absolute;
    align-items: center;
    z-index: 2;
}
.navbar .logo h2 {
    letter-spacing: 1px;
    font-size: 16px;
    color: var(--gray);
}
.logo h2 span {
    color: white;
}
.navbar .nav-links {
    gap: 7px;
    list-style: none;
    display: flex;
}
.nav-links li .main-menu { 
    padding: 10px 16px;
    color: white;
    display: flex;
    align-items: center;
    gap: 4px;
}
.main-menu i {
    font-size: 12px;
}
.main-header .header-center {
    height: 100%;
}
.header-center .header-content {
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    place-content: center;
}
.header-content h3 {
    color: white;
    position: relative;
    right: 10%;
    top: 30%;
    font-size: 22px;
    width: 34vw;
    font-weight: 100;
}
.header-content h3 span {
    color: var(--cyan);
}
.header-content img {
    height: 100%;
    clip-path: polygon(31% 5%, 100% 25%, 61% 100%, 0 93%);
}

.header-center .header-animation {
    display: flex;
    gap: 10%;
    height: 20vh;
    align-items: center;
    /* margin-top: 5%; */
}
.header-animation .header-contacts {
    display: grid;
    font-size: 14px;
    color: var(--gray);
    align-content: center;
    gap: 15%;
}
.header-animation .animated-text {
    align-content: center;
    color: white;
    font-size: 5vw;
    font-weight: 900;
}


/* Global Classes */

#background-animation {
    position: fixed;
    background-image: url(img/download.png);
    width: 300%;
    height: 300%;
    background-position: center;
    animation-name: bg-movement;
    animation-duration: 0.5s;
    animation-timing-function: steps(20);
    animation-iteration-count: infinite;
}
.bg-animations .bg-lines {
    position: fixed;
    width: 100vw;
    height: 100%;
    display: flex;
    justify-content: space-around;
}
.bg-lines #lines {
    width: 0.5px;
    opacity: 0.3;
    height: 100%;
    /* background-color: white; */
    background-color: rgb(49, 49, 49);
}
@keyframes bg-movement {
    from {
            left: -100%;
            top: -100%;
    }
    to {
        left: 0;
        top: 0;
    }
}

.menu-btn {
    color: white;
    font-size: 20px;
    font-weight: 100;
    display: none;
}

.cursor {
    background-color: var(--cyan);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: fixed;
    opacity: 0.4;
    transition: 0.15s ease-out;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.p-45 {
    padding: 45px;
}
