body {
    font-family: "Poppins", sans-serif;
    background-image: url("../images/77.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding: 0 !important;
}

.font-italic,
i,
em {
    font-family: "Playfair Display", serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
}
h2 {
    margin-bottom: 30px;
    text-transform: uppercase;
}

a,
a:link,
a:visited {
    color: inherit;
    text-decoration: underline;
}
a:hover,
a:focus,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
}

figcaption.figure-caption {
    font-size: 13px;
}

header {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 150px 0 70px;
    min-height: 100vh;
}
header .header-content {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    color: #fff;
}

nav a,
nav a:link,
nav a:visited,
nav a:hover,
nav a:focus,
nav a:active {
    text-decoration: none;
}

/* nav .nav-item .nav-link.active {
	background: inherit !important;
} */

.modal {
    background-color: rgba(100, 149, 237, 0.8);
}
.modal-content {
    background-color: transparent;
    border: 0;
    border-radius: 0;
    margin: 50px 0;
}
.modal-body {
    font-size: 13px;
}
.modal-body img {
    width: 100%;
}
.modal-header,
.modal-footer {
    border-top: 0;
    border-bottom: 0;
    font-size: 13px;
}
.modal .close {
    color: #fff;
    text-shadow: none;
    font-weight: normal;
}
.modal .close span {
    font-size: 70px;
    position: absolute;
    top: 0;
    right: 20px;
}

.bg-primary {
    background: #6495ed !important;
}

section {
    padding: 70px 0;
    display: flex;
    align-items: center;
}

section ul > li {
    font-size: 13px;
}

section img {
    padding: 4px;
    transition: all 0.3s;
}
section a img:hover,
a img:focus {
    background-color: #6495ed;
}

section.section-light-opacity {
    background-color: rgba(255, 255, 255, 0.9);
    color: #222;
}

section.section-light {
    background-color: rgba(255, 255, 255, 1);
    color: #222;
}

section.section-blue-opacity {
    background-color: rgba(100, 149, 237, 0.7);
    color: #fff;
}

section.section-blue {
    background-color: rgba(100, 149, 237, 1);
    color: #fff;
}

section.section-dark-opacity {
    min-height: 70vh;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
}

section.section-dark {
    background-color: rgba(0, 0, 0, 1);
    color: #fff;
}

footer {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.9);
    color: #222;
}

footer p.copyright {
    margin-bottom: 0;
    font-size: 13px;
}

.image-container {
    position: relative;
    width: 100%;
    min-height: 150px;
    height: auto;
}
.image-container .skeleton-loader {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #e0e0e0 25%, #f5f5f5 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    position: absolute;
    top: 0;
    left: 0;
}
@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.image-container img.loaded {
    opacity: 1;
}

.project > a,
.inline-project {
    display: inline-block;
    padding: 5px 10px;
    margin: 2px;
    border-radius: 4px;
    background: #00000020;
}
.project > a {
    transition: all 0.3s;
    &:hover,
    &:focus {
        background: #00000040;
    }
}
