
/* BUTTON CIRCLE */
.btn-circle-out {
    display: flex;
    padding: 80px 0;
    position: relative;
    margin: auto;
    transform: rotate(0deg);
    transition: all 500ms ease;
    justify-content: center;
}

.btn-wrap {
    height: 200px;
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}

.btn-circle-in {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--orange);
    border: 1px solid var(--dark-grey);
    border-radius: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    background-color: var(--dark-grey);
    text-align: center;
}

.btn-circle-in:hover {
    color: var(--dark-grey);
    border: 1px solid var(--orange);
}

.btn-position {
    position: absolute;
}

.btn-circle-in span {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    left: 0;
    top: 0;
    background-color: var(--orange);
    z-index: -1;
    border-radius: 100%;
    transition: all 0.7s;
    transform: translate(-50%, -50%);
}

.btn-circle-in:hover span {
    width: 300px;
    height: 300px;
}

.overflow{
    overflow: hidden;
}

/* HERO-SECTION */
.hero {
    background-color: var(--dark-grey);
    width: 100%;
    height: 100vh;
}

.hero .text-wrap {
    position: relative;
    z-index: 1;
    width: max-content;
    max-width: 800px;
    padding: 3.5em 0 1em 5em;
    margin-left: 0;
}

.hero .hero-title {
    font-family: var(--font-catapult);
    font-size: 5rem;
    font-weight: 700;
    color: var(--orange);
    text-align: left;
    line-height: 1.2;
    padding-bottom: 0.5em;
    overflow: hidden;
    visibility: hidden;
}

.hero .hero-sub {
    font-family: var(--font-catapult);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--white);
    text-align: left;
    overflow: hidden;
    visibility: hidden;
}

.slide-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--light-red);
    z-index: 999999;  

    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-wrap .text-container {
    display: flex;
    flex-direction: row;
    gap: 1em;
    overflow: hidden;
    color: white;
    visibility: hidden;
  }

.slide-wrap .text-container h1 {
    font-family: var(--font-catapult);
    font-size: 3.5rem;
    padding: 0;
    margin: 0;
    letter-spacing: 2px;
}

.scroll-btn {
    padding: 0 5em;
}
.scroll-btn img{
    filter: invert(1);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

/*  HERO IMAGE REVEAL */
.slides {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    /* animate*/
}

.slide-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
}

.item {
    clip-path: polygon(100% 100%, 100% 100%, 100% 0, 100% 0);
}

.item img {
    object-fit: cover;
    object-position: center;
    height: 100vh;
    width: 100%;
}

.slide-inner:first-child .item {
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
}

/* event SECTION */
.event {
    max-width: 100vw;
    padding: 80px 1rem;
}

.event-title {
    margin-top: 10%;
}

.event-slide {
    display: flex;
}

.p-wrap {
    position: relative;
    overflow: hidden;
    width: 35vw;
    height: 80vh;
    margin-left: -0.5vw;
  }

  .panel {
    position: absolute;  
    left: 0%;
    top: 0%;
    right: 0%;
    width: 100%;
    height: 100%;
  }

  .panel  img{
	height: 100%;
	width: 100%;
}

 .text-wrap {
    position: relative;
    overflow: hidden;
    height: 80vh;
    margin-left: 4vw;
  }
 
  .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;
    line-height: 1.3;
    color: var(--dark-grey);
}

.panel-text p {
    background-color: var(--orange);
    color: var(--white);
    text-align: center;
    border: 0;
    padding: 5px;
    text-transform: uppercase;
    width: 15vw;
    font-weight: 700;
}

/* CLUB SECTION */
.club {
    overflow: hidden;
}

.club-wrap {
    position: relative;
    width: 100%;
    height: 100vh;
    padding-top: 32.5vh;
}

.club-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/club-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(100%);
}

.club .box-wrap {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.club .box {
    width: 30vw;
    padding: 80px 50px;
    background-color: rgba(0, 0, 0, .85);
    position: relative;
}

.club .heading {
    margin-bottom: 5rem;
}

.club .heading p {
    font-family: var(--font-catapult);
    color: var(--orange);
    font-size: 1.75rem;
}

.club .wrap {
    text-align: center;
}

.club .btn-club {
    position: relative;
    margin: auto;
    padding: 19px 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;
}

.club .btn-club:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border-radius: 28px;
    background: var(--light-red);
    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;
}

.club .btn-club:hover:before {
    width: 100%;
    background: var(--light-red);
}

.club .btn-club span {
    position: relative;
    font-size: 18px;
    line-height: 18px;
    font-weight: 600;
    letter-spacing: 0.1em;
    vertical-align: middle;
    color: var(--white);
    font-family: var(--font-quick);
}

.club .btn-club svg {
    position: relative;
    top: 0;
    margin-left: 10px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: var(--white);
    stroke-width: 2;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.club .btn-club:hover svg {
    transform: translateX(0);
}

.club .btn-club:active {
    transform: scale(0.96);
}

/* BLOG SECTION */
.blog {
    max-width: 100vw;
    padding-top: 80px;
    padding-bottom: 100px;
}
.blog .slider {
    position: relative;
    margin: 10vh 0 0 30px;
}

.blog .slider-nav {
    position: relative;
    margin-top: 20%;
    /* top: 50%;     */
    align-items: center;
    justify-content: flex-end;
}

.blog .slider-nav i {
    height: 46px;
    width: 46px;
    cursor: pointer;
    text-align: center;
    line-height: 46px;
    background: var(--orange);
    border-radius: 50%;
    font-size: 1.2rem;
    transform: translateY(-50%);
    color: var(--white);
    margin-left: 10px;
}

.blog .slider i:first-child {
    left: -23px;
}

.blog .slider i:last-child {
    right: -23px;
}
.slider .frame {
    white-space: nowrap;
    width: 85vw;
    position: relative;
    font-size: 0;
    overflow: hidden;
    scroll-behavior: smooth;
    cursor: pointer;
    height: 70vh;
}
.blog .slide {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 42vw;
    height: 28vw;
    background: var(--white-smoke);
    box-shadow: 0px 5px 30px 1px rgba(42, 27, 77, 0.25);
    margin-right: 7.25vw;
}

.blog .slide .slide-img {
    display: block;
    overflow: hidden;
    height: 100%;
}

.blog .slide .slide-out {
    width: 340px;
    height: 200px;
    position: absolute;
    right: calc(30px - 3.1vw);
    bottom: calc(30px - 30px - 3.1vw);
    background: var(--orange);
    transition: all 0.7s ease-out;
    z-index: 1;
}

.blog .slide img{
    height: 100%;
    width: 100%;
}

.blog .slide .slide-text {
    position: absolute;
    z-index: 1;
    right: -3.1vw;
    bottom: -3.1vw;
    width: 340px;
    height: 200px;
    background: var(--dark-grey);
    box-shadow: 0px 5px 30px 1px rgba(42, 27, 77, 0.25);
}

.slide-text {
    padding: 40px 30px;
    font-family: var(--font-quick);
    color: var(--white);
    white-space: normal;
}

.slide-text h4 {
    padding-bottom: 20px;
    font-family: var(--font-catapult);
}

.slide-text span {
    display: block;
    font-style: italic;
    font-size: 16px;
}

.frame.dragging {
    cursor: grab;
    scroll-behavior: auto;
}

.frame.dragging .slide {
    pointer-events: none;
}

/* PROFILE SECTION */
.profile-title {
    position: relative;
    text-align: center;
    opacity: 1;
    padding-top: 100px;
    margin-right: 6vw;
}

.profile-title h2 {
    color: var(--black);
    font-family: var(--font-catapult);
    font-size: 10rem;
    line-height: 1.2;  
}

.bg-profile {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.bg-profile img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    filter: grayscale(100%);
}

.cover{
    display: flex;
    flex-direction: row;
    position: absolute;
    top: 0;
    left: 0; 
    height: 100%;
    width: 100%;
}

.cover-slice{
    height: 100%;
    flex-grow: 1;
    background: var(--white);
}

.bg-profile .wrap {
    position: absolute;
    right: 10%;
    bottom: 10%;
    opacity: 0;
}

.bg-profile .btn-profile {
    position: relative;
    margin: auto;
    padding: 19px 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;
}

.bg-profile .btn-profile:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border-radius: 28px;
    background: var(--light-red);
    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;
}

.bg-profile .btn-profile:hover:before {
    width: 100%;
    background: var(--light-red);
}

.bg-profile .btn-profile span {
    position: relative;
    font-size: 18px;
    line-height: 18px;
    font-weight: 600;
    letter-spacing: 0.1em;
    vertical-align: middle;
    color: var(--white);
    font-family: var(--font-quick);
}

.bg-profile .btn-profile svg {
    position: relative;
    top: 0;
    margin-left: 10px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: var(--white);
    stroke-width: 2;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.bg-profile .btn-profile:hover svg {
    transform: translateX(0);
}

.bg-profile .btn-profile:active {
    transform: scale(0.96);
}

