
.top-header {
    width: 1000px;
    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;
}

/** AGENDA PAGE SLIDE */
.event {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 100vh;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
  }

  .panel {
    position: absolute;  
    left: 0%;
    top: 0%;
    width: 100%;
    height: 100%;
  }

  .panel  img{
	height: 100%;
	width: 100%;
}

  .text-wrap {
    position: relative;
    overflow: hidden;
    width: 450px;
    height: 100vh;
  }
  
  .panel-text {
    position: absolute;
    left: 0%;
    top: 40%;
    right: 0%;
    z-index: 1;  
    width: 100%;
    height: 100%;
    text-transform: uppercase;
    font-weight: 900; 
    opacity: 0;
  }

  .panel-text h1 {
    font-size: clamp(1em, 3vw, 2.5em);
    text-transform: uppercase;
    font-family: var(--font-catapult);
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
}

.panel-text p {
    background-color: var(--light-red);
    color: var(--white);
    text-align: center;
    border: 0;
    padding: 5px;
    text-transform: uppercase;
    width: 15vw;
    font-weight: 700;
}

/** EVENT 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 .desc-title {
    font-size: 1.25em;
    font-weight: 700;
    font-family: var(--ont-quick);
    text-transform: capitalize;
    /* padding-left: 20px !important; */
    background-color: var(--orange);
    color: var(--dark-grey);
    padding: 8px !important;
    max-width: fit-content;
}

.content .title,
.content .desc-title {
    padding-left: 52px;
    margin-bottom: 50px;
}

.content img {
    padding: 0;
}

.banner img {
    padding: 70px;
}

iframe.pdf {
    width: 100%;
    aspect-ratio: 4 / 3;
}

/** 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);
}

.swiper.marquee-swiper {
    margin-top: 4rem;
    mask-image: linear-gradient(to right,
            transparent 0%,
            white 10%,
            white 90%,
            transparent 100%);
}

.swiper-wrapper.marquee-swiper {
    transition-timing-function: linear;
    align-items: center;
}

.swiper-slide.marquee-swiper {
    width: 12rem;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 3/5;
}

.swiper-slide.marquee-swiper img {
    max-width: 150px;
    max-height: 150px;
}
