:root {
    --primary-color: #292a2d;
    --text-color: #a9a9b3;
    --nav-background: #1d1e20;
    --overlay-color: #ffffff70;
    --max-site-size: 960px;
    scroll-behavior: smooth;
}

body {
    margin: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body a {
    color: #000;
}

body strong {
    color: #000;
}

body.dark-theme {
    background-color: var(--primary-color);
    color: var(--text-color);
}

body.dark-theme a {
    color: #fff;
}

body.dark-theme strong {
    color: #fff;
}

body.dark-theme .modal-content {
    background-color: var(--primary-color);
}

*:not(i) {
    font-family: 'Poppins', sans-serif;
}

*:not(i, h1, h2, h3, h4, h5, h6) {
    font-weight: 300;
    font-size: 25px;
}

@media (min-width: 992px) {
    *:not(i, h1, h2, h3, h4, h5, h6) {
        font-size: 18px;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--text-color);
}

a:hover {
    opacity: 0.5;
    text-decoration: none;
}

.row {
    margin-left: 0;
    margin-right: 0;
}   

.videoPlayer{
    z-index: 5;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.videoPlayer i{
    font-size: 70px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-color);
    display: none;
    z-index: 6;
}

.grid-project .grid-project-item{
    background-color: #000;
}

.grid-project .grid-project-item .overlay {
    cursor: pointer;
}

.grid-project .grid-project-item:hover .overlay {
    display: block;
}

.grid-project {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: flex-start;
}

.dropdown-menu{
    background: var(--nav-background);
    border: 1px solid var(--overlay-color);
}

.btn:focus {
    box-shadow: none;
}

.inner {
    max-width: var(--max-site-size);
    width: 100%;
    margin: 0 auto;
}

.modal-dialog {
    width: 100%;
    max-width: calc(100% - 20px);
}

@media (min-width: 992px) {
    .modal-dialog {
        max-width: 80%;
    }
}

/*********** Nav *************/
body nav a {
    color: #fff;
}

body.dark-theme nav a {
    color: #a9a9b3;
}

.nav-space {
    margin-top: 63px;
}

nav {
    background-color: var(--nav-background);
    position: fixed !important;
    z-index: 9;
}

nav .link-active {
    font-weight: 600;
}

.social-nav {
    position: fixed;
    z-index: 99;
    bottom: 20px;
    right: 20px;
}

.social-nav i {
    font-size: 60px;
}

@media (min-width: 992px) {
    .social-nav i {
        font-size: 30px;
    }
}
/************ Footer **********/
footer .social-bar a {
    min-width: 24px;
    min-height: 24px;
    text-align: center;
}

footer .social-bar a i {
    font-size: 24px;
}