@font-face {
    font-family: 'Product Sans';
    src: url('./font/Product Sans Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --yellow: #FCB03F;
    --grey: #707070;
    --black: #050505;
    --margin: 390px;
    --marginpercent: 18%;
    --margin: 390px;
    --nav-fs: 22px;
    --nav-lh: 36px;
}

.margin390 {
    margin: 0px min(var(--margin), var(--marginpercent));
}

* {
    margin: 0px;
    box-sizing: border-box;
    font-family: Product Sans;
}

.lightfont {
    font-family: 'Product Sans Light';
}

.title1 {
    font-weight: bold;
    font-size: clamp(1.5rem, 4vw, 7rem);
    line-height: 75pt;
    text-align: center;
    color: #fff;
}

.navlinks {
    position: relative;
    font-family: "Product Sans";
    font-weight: normal;
    font-size: 18px;
    line-height: var(--nav-lh);
    text-align: center;
    margin-left: 21px;
    color: #000;
    background: none;
}

.navlinks.active::after {
    content: '';
    display: block;
    width: 50%;
    height: 3px;
    text-align: center;
    background: var(--yellow);
    transition: width .4s ease-in;
    margin-top: 3px;
    margin-left: 0%;
    margin-right: 0%;
}

a.navlinks:hover {
    font-family: "Product Sans";
    color: var(--yellow);
    background: none;
}

.mobile-menu {
    position: fixed;
    background: #131418;
    height: 100vh;
    width: 100%;
    flex-direction: column;
    clip-path: circle(50px at 90% -20%);
    -webkit-clip-path: circle(50px at 90% -10%);
    transition: all 1s ease-out;
    pointer-events: none;
}

.mobile-menu.slide {
    clip-path: circle(1000px at 90% -10%);
    -webkit-clip-path: circle(1000px at 90% -10%);
    pointer-events: all;
}

.navlinks-m {
    font-weight: bold;
    font-size: 54px;
    text-align: center;
    color: #000;
}

.navlinks-m:hover {
    color: white;
}

/* links */
a,
a:hover,
a:visited,
.underline {
    font-family: "Product Sans";
    -webkit-text-decoration: none;
    text-decoration: none;
    background-image: linear-gradient(to top, var(--yellow), var(--yellow));
    background-position: 100% 100%;
    background-size: 100% 25%;
    background-repeat: no-repeat;
    -webkit-transition: background-size .15s ease-out;
    transition: background-size .15s ease-out;
    outline: none;
}

a:hover {
    background-size: 100% 100%;
}

a.whitea {
    color: white;
}

a.nobg {
    background: none;
}

/* footer */
.githeading {
    font-family: "Product Sans";
    font-weight: bold;
    font-size: 30px;
    line-height: 26px;
    text-align: left;
    color: #fff;
}

.gitdetail {
    font-family: "Product Sans";
    font-weight: normal;
    font-size: 23px;
    line-height: 26px;
    text-align: left;
    color: var(--grey);
}

.footeryear {
    font-family: "Product Sans";
    font-weight: normal;
    font-size: 23px;
    line-height: 26px;
    text-align: left;
    color: #fff;
}

.logo-holder {
    max-width: 130px;
    max-height: 60px;
}

@media only screen and (min-width: 41em) and (max-width: 50em) {
    .footercol {
        flex-direction: column;
    }
}

@media screen and (max-width: 1390px) {
    :root {
        --nav-fs: calc(6px + 1.2vw);
        --nav-lh: calc(6px + 1.2vw);
    }

    .navlinks {
        margin-left: calc(10px + 0.2vw);
    }
}