*,
*:before,
*:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 3%;
    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);
}

/* intro */
.intro {
    padding-top: 80px;
}

.intro__inner {
    display: flex;
    position: relative;
    height: calc(110vh - 80px);
    width: 100%;
}

.intro__inner::after {
    content: "";
    display: block;
    background: rgba(0, 0, 0, 0.25);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 25px;
}


.intro__logo {
    height: 100%;
    width: 100%;
    position: relative;
    border-radius: 25px;
}

.intro__title {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    text-align: center;
    line-height: 150%;
    transform: translate3d(-50%, -50%, 0);
    font-family: 'Open Sans' sans-serif;
    font-size: 50px;
    font-weight: 700;
    color: #fff;
}

/* country */

.countries {
    padding-top: 80px;
}

.countries h2 {
    text-align: left;
    font-weight: 200;
    font-size: 48px;
    font-family: 'Prata', serif;
    color: #2d3033;
}

.countries h3 {
    text-align: left;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 20px;
    color: #6b6b6b;
    opacity: 0.8;
}

.countries__inner.wrap {
    display: flex;
    flex-wrap: nowrap;
    padding: 30px 2px;
    overflow: hidden;
    overflow-x: scroll;
    gap: 15px;
}

.countries__inner::-webkit-scrollbar {
    display: none;
}

.countries__inner a {
    width: 23%;
    height: 260px;
    position: relative;
}

.country {
    flex-shrink: 0;
}


.country:hover .country__img {
    transform: scale(1.01);
}

.country__img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    transition: transform 0.2s ease;
}

.country h2 {
    font-family: "Prata", serif;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    position: absolute;
    bottom: 20px;
    right: 0;
    left: 0;
    z-index: 3;
}

.slider {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.slider_btn {
    cursor: pointer;
    font-size: 40px;
    border: 0;
    background: transparent;
    opacity: 80%;
}

.slider_btn:hover {
    opacity: 1;
}

/* Button */

.button__inner {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 100px;
}

.btn {
    display: inline-block;
    padding: 14px 80px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Raleway' sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    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;
}
