:root {
    --color-text: #E3E3E3;
    --color-text-dark: #181818;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat/Montserrat-Regular.woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat/Montserrat-Bold.woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Unbounded';
    src: url('../font/Unbounded/Unbounded-Regular.woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Unbounded';
    src: url('../font/Unbounded/Unbounded-Medium.woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 200 !important;
    background-color: #F4F4F4 !important;
    overflow-x: hidden;
}

.list-reset {
    margin: 0;
    list-style-type: none;
    padding: 0;
}

.section-offset {
    padding: 100px 0;
}

.section-title, .item-link {
    font-size: 24px;
    font-weight: 400 !important;
    text-transform: uppercase;
    margin-bottom: 50px;
    color: var(--color-text-dark);
    text-decoration: none;
}

.item-link:hover {
    color: #15A052;
}

.item-link {
    color: var(--color-text);
    transition: color 300ms ease-in-out;
}

.item-nav {
    width: max-content;
}

.card__description {
    font-size: 14px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 200;
    margin-bottom: 0;
}

.section-title, .card__title {
    font-family: 'Unbounded', sans-serif;
}

.card-content {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 20px;
    min-height: 400px;
    padding: 50px;
    color: var(--color-text);
    opacity: 1;
    transition: opacity 500ms ease-in-out, background-image 250ms ease-in-out;
}

.fade-out {
    opacity: 0;
    transition: opacity 500ms ease-in-out;
}

.mega-card {
    background-image: url("../img/mega-card.webp");
}

.pokedex-card {
    background-image: url("../img/pokedex-card.webp");
}

.battle-card {
    background-image: url("../img/battle-card.webp");
}

.card-todo, .card-wait {
    margin-bottom: 20px;
}

.card__title {
    font-size: 20px !important;
    font-weight: 200;
    text-shadow: 0 0 5.3px rgba(255, 255, 255, 0.25);
    margin-bottom: 10px;
}

.npc-card {
    background-image: url("../img/npc.webp");
}

.event-card {
    background-image: url("../img/events.webp");
}

.worlds-card {
    background-image: url("../img/world.webp");
}

.bra-tr-100 {
    border-top-right-radius: 100px;
}

.bra-bl-100 {
    border-bottom-left-radius: 100px;
}

.left-content img {
    filter: drop-shadow(0px 0px 5px rgba(56, 56, 56, 0.67));
    margin-bottom: 30px;
}

.section-description {
    font-size: 20px;
    line-height: 133%;
    color: #181818;
    margin-bottom: 50px;
    width: 50%;
}

.btn-section {
    position: relative;
    color: var(--color-text) !important;
    padding: 10px 25px !important;
    border-radius: 15px !important;
    font-size: 20px !important;
    border: unset !important;
    cursor: pointer;
}

.btn-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #4EC98C 0%, #109C4D 100%);
    border-radius: 15px;
    transition: opacity 300ms ease-in-out;
    z-index: -1;
}

.btn-section:hover::before {
    opacity: 0;
}

.btn-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #109C4D 0%, #4EC98C 100%);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 300ms ease-in-out;
    z-index: -1;
}

.btn-section:hover::after {
    opacity: 1;
}

.btn-check:focus+.btn, .btn:focus,
.accordion-button:focus {
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(78, 201, 140) !important;
}

.accordion-button {
    padding: 40px 25px !important;
    background: linear-gradient(90deg, #4EC98C 0%, #109C4D 100%);
    border-radius: 20px !important;
    font-family: 'Unbounded', sans-serif;
    font-size: 1.3rem !important;
    text-transform: uppercase;
    color: var(--color-text) !important;
}

.accordion-item {
    border-radius: 20px !important;
    background-color: unset !important;
    border: unset !important;
    margin-bottom: 25px !important;
}

.accordion-body {
    padding: 25px !important;
    background: linear-gradient(90deg, #DEDEDE 0%, #A3A3A3 100%);
    border-radius: 20px;
    margin-top: 15px;
    font-size: 20px;
}

.accordion-button:not(.collapsed)::after, .accordion-button::after {
    background-image: url('../img/arrow.svg') !important;
}

.accordion-button::after {
    width: 50px !important;
    height: 50px !important;
    background-size: 100% !important;
}

.item-accordion:not(:last-child) {
    margin-bottom: 30px;
}

.list-accordion {
    list-style-image: url('../img/arrow-right.svg');
    list-style-position: inside;
}

.nav-content {
    background-color: var(--color-text-dark);
    padding: 50px 0;
}

.list-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.hero-block {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 0 !important;
    padding-top: 15% !important;
}

.circle-container {
    position: absolute;
    top: -55px;
    right: -45%;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: -1;
}

.rotating-circle {
    position: absolute;
    width: 1000px;
    height: 1000px;
    border-radius: 50%;
    background-color: var(--color-text-dark);
}

.circle-image {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: contain;
    top: 50%;
    left: 50%;
    transform-origin: 0 0;
    background: rgba(24, 24, 24, 0.17);
    box-shadow: inset 1.40434px -1.40434px 1.40434px rgba(20, 20, 20, 0.54), inset -1.40434px 1.40434px 1.40434px rgba(255, 255, 255, 0.54);
    backdrop-filter: blur(13.3412px);
    padding: 15px;
}

.center-gif {
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    width: inherit;
    height: initial;
    overflow: hidden;
}

.center-gif img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image1 { animation: moveImage1 15s linear infinite; }
.image2 { animation: moveImage2 15s linear infinite; }
.image3 { animation: moveImage3 15s linear infinite; }
.image4 { animation: moveImage4 15s linear infinite; }
.image5 { animation: moveImage5 15s linear infinite; }
.image6 { animation: moveImage6 15s linear infinite; }
.image7 { animation: moveImage7 15s linear infinite; }
.image8 { animation: moveImage8 15s linear infinite; }

@keyframes moveImage1 {
    0% {
        transform: translate(-50%, -50%) rotate(360deg) translateX(500px) translateY(0px) rotate(-360deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(500px) translateY(0px) rotate(0deg);
    }
}

@keyframes moveImage2 {
    0% {
        transform: translate(-50%, -50%) rotate(360deg) translateX(353.55px) translateY(353.55px) rotate(-360deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(353.55px) translateY(353.55px) rotate(0deg);
    }
}

@keyframes moveImage3 {
    0% {
        transform: translate(-50%, -50%) rotate(360deg) translateX(0px) translateY(500px) rotate(-360deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(0px) translateY(500px) rotate(0deg);
    }
}

@keyframes moveImage4 {
    0% {
        transform: translate(-50%, -50%) rotate(360deg) translateX(-353.55px) translateY(353.55px) rotate(-360deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(-353.55px) translateY(353.55px) rotate(0deg);
    }
}

@keyframes moveImage5 {
    0% {
        transform: translate(-50%, -50%) rotate(360deg) translateX(-500px) translateY(0px) rotate(-360deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(-500px) translateY(0px) rotate(0deg);
    }
}

@keyframes moveImage6 {
    0% {
        transform: translate(-50%, -50%) rotate(360deg) translateX(-353.55px) translateY(-353.55px) rotate(-360deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(-353.55px) translateY(-353.55px) rotate(0deg);
    }
}

@keyframes moveImage7 {
    0% {
        transform: translate(-50%, -50%) rotate(360deg) translateX(0px) translateY(-500px) rotate(-360deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(0px) translateY(-500px) rotate(0deg);
    }
}

@keyframes moveImage8 {
    0% {
        transform: translate(-50%, -50%) rotate(360deg) translateX(353.55px) translateY(-353.55px) rotate(-360deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(353.55px) translateY(-353.55px) rotate(0deg);
    }
}

.section-offset.develop {
    padding: 50px 0;
}

.develop {
    background: var(--color-text-dark);
    color: var(--color-text);
    text-align: center;
}

.develop .link {
    color: #15A052;
    text-decoration: none;
    transition: color 300ms ease-in-out;;
}

.develop .link:hover {
    color: #4EC98C;
}