* {
    box-sizing: border-box;
}

body {
    font-family: 'Cuprum', sans-serif;
    /* font-size: 15px; */
    /* line-height: 1.5; */
    /* padding: 0;
  margin: 0; */
    width: 100%;
    /* height: 100vh; */
    background-color: #272727;
}

.hidden {
    display: none;
}

.visible-mobile {
    display: none;
}

header {
    background-color: #272727;
    min-height: 80px;
}

header::after {
    content: '';
    display: block;
    width: 85%;
    height: 80px;

    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    top: 0%;
    bottom: 0;
    left: 10px;
    right: 10px;
    -moz-border-radius: 100px / 10px;
    border-radius: 100px / 10px;

    position: absolute;
    bottom: 0;
    left: 10%;
    z-index: -1;
}

nav {
    padding: 8px;
}

.logo {
    float: left;
    padding: 8px;
    margin-left: 9%;
    margin-top: 8px;
}

.logo a {
    color: #49abbf;
    text-transform: uppercase;
    font-size: 32px;
    letter-spacing: 2px;
    text-decoration: none;
}

nav ul {
    float: right;
    margin-right: 5%;
}

nav ul li {
    display: inline-block;
    float: left;
    padding: 10px 0 0 40px;
}

nav ul li a {
    color: #49abbf;
    text-decoration: none;
    text-transform: capitalize;
    font-size: 18px;
    letter-spacing: 1px;
    transition: all .3s ease;
}

nav ul li a:hover {
    color: #d6d6d6;
}

.container-text {
    width: 80%;
    margin: auto;
    padding-bottom: 30px;
    text-align: justify;
    text-justify: inter-word;
    /* display: inline-block; */
    display: flow-root;
}

@media screen and (max-width: 864px) {
    .logo {
        padding: 0;
        position: absolute;
    }

    .container-text {
        width: 100%;
    }    

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        background: #fff;
        opacity: 0;
        transition: all 0.2s ease;
    }

    .nav-wrapper ul {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
    }

    .nav-wrapper ul li {
        display: block;
        float: none;
        width: 100%;
        text-align: right;
        margin-bottom: 10px;
    }

    .nav-wrapper ul li:nth-child(1) a {
        transition-delay: 0.05s;
    }

    .nav-wrapper ul li:nth-child(2) a {
        transition-delay: 0.1s;
    }

    .nav-wrapper ul li:nth-child(3) a {
        transition-delay: 0.18s;
    }

    .nav-wrapper ul li:nth-child(4) a {
        transition-delay: 0.3s;
    }

    .nav-wrapper ul li:not(:first-child) {
        margin-left: 0;
    }

    .nav-wrapper ul li a {
        padding: 10px 24px;
        opacity: 0;
        color: grey;
        font-size: 18px;
        letter-spacing: 1px;
        transform: translateX(-20px);
        transition: all 0.2s ease;
    }

    .nav-btn {
        position: absolute;
        right: 15px;
        top: 15px;
        display: block;
        width: 48px;
        height: 48px;
        cursor: pointer;
        z-index: 2;
        border-radius: 50%;
    }

    .nav-btn i {
        display: block;
        height: 2px;
        background: #49abbf;
        border-radius: 2px;
        margin-left: 14px;
    }

    .nav-btn i:nth-child(1) {
        margin-top: 16px;
        width: 24px;
    }

    .nav-btn i:nth-child(2) {
        margin-top: 6px;
        opacity: 1;
        width: 20px;
    }

    .nav-btn i:nth-child(3) {
        margin-top: 6px;
        width: 24px;
    }

    #nav:checked+.nav-btn {
        transform: rotate(45deg);
    }

    #nav:checked+.nav-btn i {
        background: grey;
        transition: transform 0.2s ease;
    }

    #nav:checked+.nav-btn i:nth-child(1) {
        transform: translateY(8px) rotate(180deg);
    }

    #nav:checked+.nav-btn i:nth-child(2) {
        opacity: 0;
    }

    #nav:checked+.nav-btn i:nth-child(3) {
        transform: translateY(-8px) rotate(90deg);
    }

    #nav:checked~.nav-wrapper {
        z-index: 1;
        opacity: .95;
    }

    #nav:checked~.nav-wrapper ul li a {
        opacity: 1;
        transform: translateX(0);
    }
}

@media screen and (max-width: 480px) {
    .logo {
        margin-left: 5%;
    }
 
    .visible-mobile {
        display: block;
    }

    .hidden-mobile {
        display: none;
    }
}

.article-title {
    margin-top: 7%;
    margin-bottom: 3%;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
}

/* main title */
h1 {
    color: #fff;
    font-size: 28px;
    font-weight: normal;
    text-align: center;
}

/* categories below main title */
h2 {
    color: #bebebe;
    font-size: 20px;
    font-weight: lighter;
    text-align: center;
}


h3 {
    color: #7f95ea;
    font-size: 20px;
    font-weight: lighter;
    text-align: center;
    margin-top: 3em;
}

/* section title */
h4 {
    color: #fff;
    font-size: 24px;
    font-weight: normal;
    text-align: center;
}

/* image caption */
h5 {
    color: #bebebe;
    font-size: 20px;
    font-weight: lighter;
    text-align: center;
}

p0 {
    color: #49abbf;
    font-size: 18px;
    font-weight: 100;
    text-align: left;
}

/* body paragraph text */
p {
    color: #bebebe;
    font-size: 20px;
    font-weight: 100;
    text-align: justify;
    text-align-last: left;
    line-height: 1.5;
    /* spacing between lines within a paragraph */
    margin-bottom: 0.5em;
}

/* p + p { margin-block-start: 1lh; } */


.highlight {
    color: #49abbf;
}

p3 {
    color: #bebebe;
    font-size: 18px;
    font-weight: 100;
    text-align: left;
    font-style: italic;
}

.container-text a {
    color: #fff;
}

.container-text a:hover {
    color: #7f95ea;
}

.container-text a:active {
    color: #fff;
}

.container-text-center a {
    color: #fff;
}

.container-text-center a:hover {
    color: #7f95ea;
}

.container-text-center a:active {
    color: #fff;
}

.container-text-bottom-20 {
    margin-top: 30px;
}

.container-text-bottom-20 a {
    color: #fff;
}

.container-text-bottom-20 a:hover {
    color: #7f95ea;
}

.container-text-bottom-20 a:active {
    color: #fff;
}

.article-title a {
    color: #fff;
}

.article-title a:hover {
    color: #7f95ea;
}

.article-title a:active {
    color: #fff;
}

.iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.poster {
    max-width: 720px;
}

.article-body {
    max-width: 1440px;
    margin: 0 auto;
    width: 80%;
    /* position: relative; */
}

/* space between ALL direct children */
/* .article-body>*+* {
    margin-top: 2rem; 
} */

.photo {
    margin: 50px 0 0 0;
    padding: 0;
    list-style: none;
    display: block;
    text-align: center;
    width: 80%;
    margin-left: 10%;
}

.photo-70 {
    margin: 50px 0 0 0;
    padding: 0;
    list-style: none;
    display: block;
    text-align: center;
    width: 70%;
    margin: auto;
}

.gallery ul li {
    list-style: none;
}

.gallery ul li img {
    width: 100%;
    margin-bottom: 30px;
}

figure img {
    display: block;
    margin: 0 auto;
    width: 100%;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-touch-callout: none;
}

.container-text-center {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
    display: inline-block;
}

.container-text-left {
    width: 100%;
    margin-bottom: 30px;
    text-align: left;
    display: inline-block;
}

.container-text-bottom-20 {
    width: 100%;
    margin-bottom: 20px;
    text-align: justify;
    text-justify: inter-word;
    display: inline-block;
}

.container-text-bottom-20-center {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
    display: inline-block;
}

.container-text-bottom-10 {
    width: 100%;
    margin-bottom: 10px;
    text-align: justify;
    text-justify: inter-word;
    display: inline-block;
}

.container-text-bottom-40 {
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
    display: inline-block
}

.container-bottom-20 {
    margin-bottom: 20px;
    text-align: center;
    display: inline-block;
}

.bottom-10 {
    width: 100%;
    margin-bottom: 10px;
}

.max900 {
    max-width: 900px;
}

.max720 {
    max-width: 720px;
    margin: 0 auto;
}

ul.first {
    color: #bebebe;
    font-size: 20px;
    font-weight: 100;
    text-align: left;
    list-style-type: square;
    list-style-position: outside;
    margin-left: -2em;
    text-align: justify;
}

ul.second {
    color: #bebebe;
    font-size: 18px;
    font-weight: 100;
    text-align: left;
    list-style-type: circle;
    list-style-position: inside;
    text-align: justify;
}

ol.number {
    color: #bebebe;
    font-size: 20px;
    font-weight: 100;
    text-align: left;
    list-style-position: outside;
    margin-left: -2em;
    text-align: justify;
}

footer {
    background-color: #272727;
}

.container {
    width: 80%;
    height: 100px;
    position: relative;
    left: 10%;
}

.copyright {
    color: #bebebe;
    display: inline-block;
    height: 60px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ig {
    width: 36px;
    display: inline-block;
    float: right;
    margin-top: 30px;
    margin-left: 10px;
}