.head {
    background: linear-gradient(rgba(0, 0, 0, 0.545), rgba(0, 0, 0, 0.622)), url("https://images.unsplash.com/photo-1620641788421-7a1c342ea42e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=3000&q=80");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 100vh;
    color: white;
}

.topNav {
    background: var(--tertiary-color);
    color: var(--light-color);
    padding: 10px 0;
}

.topRight {
    display: flex;
    gap: 10px;
}

.nav {
    font-family: var(--secondary-font);
    /* display: none; */
    padding: 30px 0;
    transition: 0.1s!important;
}

.navLeft {
    font-size: 35px;
    font-weight: 700;
}

.navRight {
    display: flex;
    font-size: 20px;
    gap: 20px;
    text-transform: uppercase;
    font-family: var(--primary-font);
    font-weight: 300;
}

.mobNav {
    flex-direction: column;
    display: none;
}

.mobNavHead {
    font-size: 25px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 40px);
    padding: 10px 20px;
}

.hamburger div {
    background-color: var(--primary-color);
    width: 30px;
    margin: 8px;
    height: 3px;
}

.mobNavLinks {
    position: absolute;
    width: 100%;
    transform: translateY(92.8px);
    display: none;
    flex-direction: column;

}

.mobNavLinks li {
    text-transform: uppercase;
    background: var(--tertiary-color);
    color: white;
    padding: 30px 0;
    text-align: center;
    font-size: 25px;
    font-weight: 300;
}

.headerCon {
    min-height: 400px;
    height: 80vh;
}

.headLeft h1 {
    font-family: var(--secondary-font);
    font-size: 35px;
    max-width: 400px;
    padding-bottom: 10px;
}

.headLeft h2 {
    font-family: var(--primary-font);
    font-weight: 300;
    font-size: 20px;
    max-width: 512px;
    padding-bottom: 10px;
}

/* .imageContainer {
    background-image: url('https://datbraincompany.com/wp-content/uploads/2019/03/artificial-intelligence-concept-server-room-big-data-processing-brain-incubator.png');
    background-position: right center;
    background-size: cover;
    height: 500vw !important;
    width: 100% !important;
} */

.headRight {
    transform: translateY(10%);
}

.headRight {
    width: 500px;
    height: auto;
    overflow: hidden;
}

.headRight img {
    display: block;
    width: 100%;
    height: auto;
    animation-name: updown;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

@keyframes updown {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }

}

.navScroll{
    position: fixed;

    background: white;
    color: black;
    z-index: 1;
    top: 0;
    left: 0;
    padding: 20px 0;
    box-shadow: 1px 1px 7px var(--primary-color);
    width: 100%;
}