.top-header {
    width: 900px;
    margin: 0 auto;
    display: flex;
    padding-bottom: 2.5rem;
}

section .title-pages {
    overflow: hidden;
    visibility: hidden;
}

.bottom-header {
    width: 600px;
    margin: 0 auto;
}

.icon-title {
    width: 20%;
    overflow: hidden;
    visibility: hidden;
}

.icon-title .outer {
    pointer-events: none;
    animation: sway_vertical 11s cubic-bezier(.445, .05, .55, .95) infinite;
}

@keyframes sway_vertical {
    0% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-.4rem);
    }

    50% {
        transform: translateY(.4rem);
    }

    75% {
        transform: translateY(-.5rem);
    }

    100% {
        transform: translateY(0);
    }
}

.icon-title .inner {
    animation: sway_horizontal 14s cubic-bezier(.455, .03, .515, .955) infinite;
}

@keyframes sway_horizontal {
    0% {
        transform: rotate(0);
    }

    17% {
        transform: rotate(4deg);
    }

    33% {
        transform: rotate(-6deg);
    }

    50% {
        transform: rotate(7deg);
    }

    67% {
        transform: rotate(-4deg);
    }

    83% {
        transform: rotate(5deg);
    }

    100% {
        transform: rotate(0);
    }
}

.icon-title svg {
    margin-top: 7rem;
    margin-left: 3rem;
}

.arrow svg {
    width: 200px;
    height: 200px;
    padding-top: 30px;
}

.bottom-header .arrow {
    pointer-events: none;
    animation: sway_vertical 11s cubic-bezier(.445, .05, .55, .95) infinite;
}

/** BLOG PAGE SLIDE */
.blog-slides {
    overflow: hidden;
}

.blog-wrap {
    height: 100dvh;
}

.blog-list {
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    display: flex;
    position: relative;
}

.blog-item {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex: none;
    grid-template-rows: auto;
    grid-template-columns: 40% 60%;
    grid-auto-columns: 1fr;
    width: 100vw;
    height: 100%;
    display: grid;
    position: absolute;
    inset: 0%;
}

.blog-content {
    background-color: var(--white);
    color: var(--black);
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
    display: flex;
}

.blog-content h2 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    font-family: var(--font-catapult);
}

.blog_p {
    margin-top: 1rem;
    background-color: var(--light-red);
    color: var(--white);
    text-align: center;
    border: 0;
    padding: 5px;
    text-transform: uppercase;
    width: 15vw;
    font-weight: 700;
}

.blog-media {
    /*object-fit: cover;*/
    width: 100%;
    height: 100%;
}

.blog-item img {
    max-width: 100%;
    display: inline-block;
    vertical-align: middle;
}

@media screen and (max-width: 479px) {
    .blog-item {
        grid-template-columns: 100%;
    }

    .blog-content {
        padding: 1rem;
    }
}

/** BLOG DETAILS */
.content {
    padding-top: 80px;
    max-width: 1032px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.content h1 {
    font-size: 80px;
    font-weight: 700;
    font-family: var(--font-catapult);
    text-transform: uppercase;
}

.content .title {
    padding-left: 52px;
    margin-bottom: 50px;
}

.content .desc {
    position: relative;
    margin-top: 24px;
}

.desc p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0;
    text-align: justify;
    margin-bottom: 1rem;
}

/** SWIPER */
.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.swiper-navigation {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.swip-btn {
    display: inline-flex;
    width: 48px;
    height: 48px;
    color: var(--black);
    background-color: var(--white);
    border: 1px solid var(--dark-grey);
    border-radius: 50%;
}

.swip-btn:hover {
    background-color: var(--dark-grey);
    color: var(--white);
}

.swip-pos {
    position: relative;
    align-items: center;
    padding: 0 14px;
    cursor: pointer;
}

.paging {
    margin-left: 32px;
    margin-right: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 32px !important;
}

.swiper-button-prev-cus {
    flex-direction: row-reverse;
    padding-left: 0;
}

i .fa-solid {
    position: relative;
    width: 46px;
    min-width: 46px;
}

.video-embed {
    margin: 50px;
}

/** button back */
.btn-wrap {
    position: relative;
    display: flex;
    justify-content: flex-end;
    margin: 5rem 0 8rem;
}

.btn-back {
    position: relative;
    padding: 16px 22px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.btn-back:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border-radius: 28px;
    background: var(--orange);
    width: 56px;
    height: 56px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-back:hover:before {
    width: 100%;
    background: var(--orange);
}

.btn-back span {
    position: relative;
    font-size: 18px;
    line-height: 18px;
    font-weight: 600;
    letter-spacing: 0.1em;
    vertical-align: middle;
    color: var(--dark-grey);
    font-family: var(--font-quick);
}

.btn-back svg {
    position: relative;
    top: 0;
    margin-left: 10px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: var(--dark-grey);
    stroke-width: 2;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.btn-back:hover svg {
    transform: translateX(0);
}

.btn-back:active {
    transform: scale(0.96);
}