*,
*:before, 
*:after { 
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Raleway', sans-serif;
    background-color: #f7f7f7;

    -webkit-font-smoothing: antialiesed;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none;
            /* -webkit-user-select: none;
            -moz-user-select: none;
            user-select: none;
            pointer-events: none; */
}

.container {
    max-width: 80vw;
    margin: 0 auto;
}

p {
    margin: 0 0 10px ;
}

img {
    height: auto;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

/* header */

.header {
    width: 100%;
    height: 60px;
    background-color: #fff;
    position: fixed;
    top: 0;
    z-index: 10;
    box-shadow: 0px -5px 8px 2px #979494;
}

.header__inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;

}

.header__logo__content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    left: -20px;
}


.header__logo {
    width: 40px;
    height: 40px;
}

.header__logo__title {
    color: #000;
    margin-left: 7px;
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 400;
}


.header__search {
    fill: #000;
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-top: 0px;
}



/* burger */

.burger {
    background: none;
    border: 0;
    cursor: pointer;
    box-sizing: border-box;
    padding: 5px;
}

.burger__item {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #000;
    font-size: 0;
    color: transparent;
    position: relative;
}

.burger__item::before, .burger__item::after {
    content: "";
    width: 100%;
    height: 100%;

    background-color: #000;
    position: absolute;
    right: 0;
    z-index: 1;
    transition: transform linear 0.2s;
}

.burger__item::before {
    top: -8px;
}

.burger__item::after {
   bottom: -8px;
}

/* nav */

.nav {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 400px;
    position: fixed;
    top: 0;
    left: -420px;
    z-index: 200;
    background-color: #fff;
    padding: 50px 25px;
    box-shadow: 0 0px 10px 2px #979494;
    transition: 0.5s;
}

.nav.active {
    left: 0;
}

.nav__close__content {
    background-color: #eee;
    padding: 22px;
    margin-top: 20px;
    margin-right: 15px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}

.nav__close__content:hover {
    cursor: pointer;
}

.nav__close {
    position: relative;
    right: -10px;
}

.nav__close::after, .nav__close::before {
    content: "";
    background-color: #000;
    width: 20px;
    height: 2px;
    position: absolute;
    right: 0;
    z-index: 201;
}

.nav__close::after {
    transform: rotate(45deg);
}

.nav__close::before {
    transform: rotate(-45deg);
}

.nav ul {
    list-style: none;
}

.nav ul li a {
    display: flex;
    align-items: center;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    margin: 20px 0;
    opacity: 90%;
    transition: opacity .1s linear ;
}

.nav ul li a:hover {
    opacity: 1;
    text-decoration: underline;
}

.nav ul li a span {
    margin-left: 10px;
}

.nav__icon {
    width: 25px;
    height: 25px;
    fill: rgb(28, 30, 28);
}

/* archive */

.archive__page {
    padding-top: 100px;
    padding-bottom: 100px;
}

.archive__inner {
    padding-top: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.archive__page > h1 {
    text-align: left;
    font-weight: 200;
    font-size: 48px;
    font-family: 'Prata', serif;
    color: #2d3033;
}

.archive {
    display: flex;
    flex-wrap: nowrap;
    height: 300px;
    width: 60%;
}

.archive__logo {
    width: 50%;
}

.archive__logo:hover .img {
    transform: scale(1.01);
}

.img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.archive-content {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 10px;
}

.archive-content h2 {
    text-align: left;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 30px;
    color: #6b6b6b;
}

.archive-content p {
    color: #6b6b6b;
    font-size: 14px;
}


/* btn */
.btn {
    display: inline-block;
    padding: 10px;
    width: 170px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    border: 0;
    color: #fff;
    cursor: pointer;
    transition: background 0.17s linear;
    background-color: #e42a2a;
}

.btn:hover {
    background-color: #e84545;
}

/* footer */

footer {
    background-color: #292929;
    padding: 40px 30px;
}

.footer__header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.footer__img {
    width: 40px;
    height: 40px;
}

.footer__logo__title {
    color: #fff;
    margin-left: 7px;
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 400;
}

footer ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 10px;
}

footer ul li {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    opacity: 0.9;
    transition: opacity 0.2s linear;
}
footer ul li:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer__paragraf {
    text-align: center;
    margin-top: 50px;
    color: #d0d0d0;
}


