/*navbar*/
.navbar {
    position: relative;
    z-index: 1;
}

.navbar-brand {
    font-family: viga;
    font-size: 24px;
}

/* jumbotron */
.jumbotron {
    background-image: url(img/bg.jpg);
    background-size: cover;
    height: 640px;
    text-align: center;
    position: relative;
}

.jumbotron .container {
    z-index: 1;
    position: relative;
}

.jumbotron::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0, 0));
    position: absolute;
    bottom: 0;

}


.jumbotron .display-4 {
    color: white;
    margin-top: 200px;
    font-weight: 200;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);
    font-size: 32px;
    margin-bottom: 45px;
}

.jumbotron .display-4 span {
    font-weight: 500;
}


/* info panel */
.info-panel {
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    margin-top: -70px;
    background-color: white;
    padding: 30px;
}

.info-panel img {
    width: 80px;
    height: 80px;
    margin-right: 20px;
    margin-bottom: 20px;
}

.info-panel h4 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 2px;
}

.info-panel p {
    font-size: 12px;
    color: #ACACAC;
    margin-bottom: -2px;
}

/* workingspace */
.workingspace {
    margin-top: 100px;
    text-align: center;
}

.workingspace h3 {
    font-size: 30px;
    font-weight: 200;
    text-transform: uppercase;
    margin-top: 30px;
}

.workingspace h3 span {
    font-weight: 500;
}

.workingspace p {
    font-size: 16px;
    counter-reset: #ACACAC;
    font-weight: 200;
    margin: 25px 0;
}

/* footer */
.footer {
    margin-top: 100px;
}

.footer p {
    color: #ACACAC;
    font-size: 16px;
}

/*utility*/
.btnok {
    text-transform: uppercase;
    border-radius: 40px;
}

/*dekstop version */
@media (min-width:992px) {

    .navbar-brand,
    .nav-link {
        color: white !important;
        text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);
    }

    .nav-link {
        text-transform: uppercase;
        margin-right: 30px;
    }

    .nav-link:hover::after {
        content: '';
        display: block;
        border-bottom: 3px solid #f5c104;
        width: 50%;
        margin: auto;
        padding-bottom: 5px;
        margin-bottom: -8px;

    }

    .jumbotron {
        margin-top: -75PX;
        height: 640px;

    }

    .jumbotron .display-4 {
        font-size: 55px;

    }

    .workingspace {
        text-align: left;
    }


    section {
        min-height: 420px;
    }

}