/** Legendary Variables **/

html, body {
    margin: 0;
    padding: 0;

    font-family: 'Oswald', sans-serif;
}

.navbar {
    border-bottom: 7px solid #ffdf01;
}

.navbar-dark {
    background-color: #000 !important;
}

#content-slider-background {
    height: calc(100vh - 63px);
    position: relative;
}

.nav-item {
    margin-left: auto;
    margin-right: auto;
    padding-left: auto;
    padding-right: auto;
}

.vevona-logo {
    position: fixed;
    bottom: 0;
    right: 0;
    margin: 50px;
    width: 78px;
    height: 77px;
    background: url('../img/vevona.png');
}
.vevona-logo a {
    display: block;
    width: 100%;
    height: 100%;
}

/** Font Families **/

.font-oswald {
    font-family: 'Oswald', sans-serif;
}

/** Font Colors **/

.custom-color-yellow {
    color: #ffdf01;
}

/** Background Colors **/

.custom-background-yellow {
    background-color: #ffdf01;
}

.custom-background-black {
    background-color: #1a1a1a;
}

/** Special Replacements **/

.text-decoration-none {
    text-decoration: none !important;
}

/** Ticks and Lines **/

.left-tick {
    position: absolute;
    left: 0;
    bottom: 0;
    margin-left: -32px;
    margin-bottom: -7px;
}

.right-tick {
    position: absolute;
    top: 0;
    right: 0;
    margin-right: -32px;
    margin-top: -17px;
}

.left-line {
    background: url('../img/line.png');
    height: 4px;
    width: 51px;
    position: absolute;
    left: -19%;
    top: 50%;
}

.right-line {
    background: url('../img/line.png');
    height: 4px;
    width: 51px;
    position: absolute;
    right: -19%;
    top: 50%;
}

/** Portfolio Items **/

.cover-container {
    height: calc(100vh - 51px);
    width: 100%;
    white-space: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    position: relative;
}

.cover-item {
    display: inline-block;
    height: 100%;
}

@media (max-width: 576px) {
    .cover-container {
        height: 100%;
        overflow-x: hidden;
        overflow-y: scroll;
    }

    .cover-item {
        display: block;
        height: auto;
    }
}

/** Social Media Icons **/

.box {
    height: 130px;
    background-color: rgba(0, 0, 0, 0.5);
}
.portfolio-details-link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}
.custom-centered-text {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-black {
    background-color: #000;
}

.custom-opacity {
    opacity: .4;
    transition: opacity .4s ease-in-out;
}

.custom-opacity:hover {
    opacity: 1;
}

.for-portfolio-button {
    border: 1px solid white;
}

.custom-hr-line {
    background-color: #ffdf01;
    width: 100%;
    height: 3px;
}

/** Absolute Body Area **/

#absolute-body-area {
    position: absolute;
    overflow: hidden;
    bottom: 0;
    right: 0;
    left: 0;
}

/** Index Page Full Screen Slider **/

#absolute-slide-area {
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100%;

}

#slides {
    height: 100%;
    position: absolute;
    margin: 0;
    padding: 0;
    -webkit-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px);
    transition: all 0.66s ease;
    -webkit-transition: all 0.66s ease;
}

.slide {
    list-style: none;
    position: relative;
    float: left;
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100%;
    text-align: center;
    line-height: 300px;
    background-size: cover;
    background-color: #ccc;
    background-position: 50% 50%;
    color: #fff;
    -webkit-transform: translate3d(0px, 0px, 0px);
    visibility: hidden;
    -webkit-transform-style: preserve-3d;
}

.alive {
    visibility: visible;
}

.nav {
    position: fixed;
    z-index: 9;
    top: 50%;
    cursor: pointer;
    color: #ffdf01;
    opacity: 0.7;
    transition: all 0.66s ease;
    -webkit-transition: all 0.66s ease;
}

.nav:hover {
    opacity: 1.0;
}

#left {
    left: 3%;
}

#right {
    right: 3%;
}