:root {
    --dark: #000000;
    --light: #ffffff;
}

html, body {
    height: 100%;
    background-color: var(--dark);
    font-family: 'Spartan', sans-serif;
    font-weight: 300;
}

.bg-dark { background-color: var(--dark) !important;}

.border-right, .border-top {
    border-color: rgba(256, 256, 256, .2) !important;
}

section {
    min-height: 100vh;
}

#close {
    display: none;
}

#menu-content {
    opacity: 0;
    transition: 1s ease-in-out;
}

#open-icon {
    transition: 1s ease-in-out;
}

#close-icon {
    opacity: 0;
    transition: 1s ease-in-out;
}

.title {
    bottom: 2rem;
    left: 2rem;
}

.bg-image-1 {
    background-image: url('../img/img-01.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-image-2 {
    background-image: url('../img/img-02.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-image-3 {
    background-image: url('../img/img-03.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

#content {
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 10;
}

#menu-overlay {
    height: 100vh;
    top: 0;
    opacity: 0;
    transition: 1s ease-in-out;
}

.z-index-top {
    z-index: 1010;
}

@media (max-width: 1200px) { 
 .hero {
     padding: 0 1rem;
 }
}

@media (max-width: 991px) { 
    .menu {
        min-height: 80px;
    }
    footer {
        text-align: center;
    }

    footer .text-right {
        text-align: unset !important;
    }
}

@media (max-width: 576px) { 
    .display-3, .display-4 {
        font-size: 2rem;
    }
   .border-right {
    border-right: 0 !important;
   }
}
