@font-face {
    font-family: SlatePro;
    src: url(./font_slate/SlatePro.ttf);
    font-style: normal;
  }

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

header{
    background-color: #0062c2;
}

li{
    list-style: none; 
}

a{
    color: #fff;
    text-decoration: none;
    font-family: SlatePro;
}

body{
    background-color: #dedede;
    font-size: calc(0.6em + 0.5vw);
}

.navbar{
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

.nav-menu{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.nav-branding{
    font-size: 2rem;
    font-family: SlatePro;
    padding-right: 20px;
}

.nav-link{
    transition: 0.7s ease;
}

.nav-link:hover{
    color: #c0167b;
}

.hamburger{
    display: none;
    cursor: pointer;
}

.bar{
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
}

@media(max-width:1280px){
    .hamburger{
        display: block;
    }

    .hamburger.active .bar:nth-child(2){
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu{
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: #0062c2;
        width: 100%;
        text-align: center;
        transition: 0.3s;
    }

    .nav-item{
        margin: 16px 0;
    }

    .nav-menu.active{
        left: 0;
        z-index: 2;
    }
}

ul{
    font-family: SlatePro;
}

@media only screen and (max-width: 762px) {
    img {
      width: 100%;
    }
}

@media only screen and (max-width: 2000px) {
    img {
      width: 100%;
    }
}

#outward{
    background-image: url(./img/outward.png);
    width: 100%;
}

#text{
    font-family: SlatePro;
    font-size: calc(0.6em + 1.4vw);
    background-color: #dedede;
    color: #262626;
    opacity: 0.95;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    background-color: #ffffff;
    -moz-box-shadow: 0 0 4px #000000;
    -webkit-box-shadow: 0 0 4px #000000;
    box-shadow: 0 0 4px #000000;
    padding: 4em;
    z-index: 1;
}

#customer{
    background-image: url(./img/customerFocus.png);
}

