* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.section1 {

  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.title-gallery {
  display: flex;
  text-align: center;
  font-size: 22px;
  padding-bottom: 10px;
}

.desc {
  display: flex;
  text-align: center;
  font-size: 18px;
  color: rgb(85, 85, 85);
  padding-bottom: 20px;
}

.desc-2 {
  position: absolute;
  display:flex;
  text-align: center;
  bottom: 20px;
  font-size: 15px;
  color: rgb(85, 85, 85);
}

.container {
  max-width: 1200px;
  width: 95%;
}

.slider-wrapper {
  position: relative;
}

.slider-wrapper .slide-button {
  position: absolute;
  top: 50%;
  outline: none;
  border: none;
  height: 50px;
  width: 50px;
  z-index: 5;
  color: #fff;
  display: flex;
  cursor: pointer;
  font-size: 2.2rem;
  background: #000;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform: translateY(-50%);
}

.slider-wrapper .slide-button:hover {
  background: #404040;
}

.slider-wrapper .slide-button#prev-slide {
  left: -25px;
  display: none;
}

.slider-wrapper .slide-button#next-slide {
  right: -25px;

}

.slider-wrapper .image-list {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 18px;
  font-size: 0;
  list-style: none;
  margin-bottom: 30px;
  overflow-x: auto;
  scrollbar-width: none;
  border-radius: 1rem;
}

.slider-wrapper .image-list::-webkit-scrollbar {
  display: none;
}

.slider-wrapper .image-list .image-item {
  width: 325px;
  height: 400px;
  object-fit: cover;
}

.container .slider-scrollbar {
  height: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}

.slider-scrollbar .scrollbar-track {
  background: #ccc;
  width: 100%;
  height: 2px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  position: relative;
}

.slider-scrollbar:hover .scrollbar-track {
  height: 4px;
}

.slider-scrollbar .scrollbar-thumb {
  position: absolute;
  background: #000;
  top: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  cursor: grab;
  border-radius: inherit;
}

.slider-scrollbar .scrollbar-thumb:active {
  cursor: grabbing;
  height: 8px;
  top: -2px;
}

.slider-scrollbar .scrollbar-thumb::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  bottom: -10px;
}

@media only screen and (max-width: 1023px) {
  .slider-wrapper .slide-button {
    display: none !important;
  }

  .slider-wrapper .image-list {
    gap: 10px;
    margin-bottom: 15px;
    scroll-snap-type: x mandatory;
  }

  .slider-wrapper .image-list .image-item {
    width: 280px;
    height: 380px;
  }

  .slider-scrollbar .scrollbar-thumb {
    width: 20%;
  }
}
html,
body {
  height: 100%;
}
body {
  background-color: #131313;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "slnt" 0;
}
[x-cloak] {
  display: none !important;
}
.logo:hover .logo-svg {
  transform: rotateY(180deg);
}
.btn--animateglowPink {
  --border-size: 6px;
  --border-angle: 0turn;
  background-image: conic-gradient(
      from var(--border-angle),
      #131313,
      #131313 50%,
      #131313
    ),
    conic-gradient(
      from var(--border-angle),
      transparent 20%,
      #FFC100,
      transparent
    );
  background-size: calc(100% - (var(--border-size) * 2))
      calc(100% - (var(--border-size) * 2)),
    cover;
  background-position: center center;
  background-repeat: no-repeat;
  animation: 8s linear infinite bg-spin;
}
@keyframes bg-spin {
  to {
    --border-angle: 1turn;
  }
}
@property --border-angle {
  syntax: "<angle>";
  inherits: true;
  initial-value: 0turn;
}
.circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  grid-template-areas: "layer";
  place-items: center;
  border-radius: 50%;

  --radius: 250px;
  width: 100%;
  min-height: 100%;
  transition: all 0.3s ease;
}
.stat {
  grid-area: layer;
  --d: calc(var(--i) / var(--total));
  --r-offset: -0.25turn;
  --r-amount: 1turn;
  --r: calc((var(--r-amount) * var(--d)) + var(--r-offset));
  --transform: rotate(var(--r)) translate(var(--radius))
    rotate(calc(-1 * var(--r)));
  transform: var(--transform);
}
.glass {
  background: rgba(255, 255, 255, 0.26) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1) !important;
  backdrop-filter: blur(9.3px) !important;
  -webkit-backdrop-filter: blur(9.3px) !important;
}
@media (max-width: 1280px) {
  .stat {
    --radius: 25vmin !important;
  }
}
@keyframes float {
  0% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(0px);
  }
  50% {
    box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
    transform: translatey(-5px);
  }
  100% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(0px);
  }
}
@keyframes floatdown {
  0% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(-5px);
  }
  50% {
    box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
    transform: translatey(0px);
  }
  100% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(-5px);
  }
}


/***Card***/
@import url("https://fonts.googleapis.com/css?family=Cardo:400i|Rubik:400,700&display=swap");
  :root {
    --d: 700ms;
    --e: cubic-bezier(0.19, 1, 0.22, 1);
    --font-sans: "Rubik", sans-serif;
    --font-serif: "Cardo", serif;
  }
  
  * {
    box-sizing: border-box;
  }
  
  html, body {
    height: 100%;
  }
  
  body {
    display: grid;
    place-items: center;
  }
  
  .page-content {
    display: grid;
    grid-gap: 1rem;
    padding: 1rem;
    max-width: 1024px;
    margin: 0 auto;
    font-family: var(--font-sans);
  }
  @media (min-width: 600px) {
    .page-content {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (min-width: 800px) {
    .page-content {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  .card {
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding-bottom: 2rem;
    width: 100%;
    text-align: center;
    color: whitesmoke;
    background-color: whitesmoke;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1), 0 16px 16px rgba(0, 0, 0, 0.1);
  }

  .card:hover{
    box-shadow: rgba(218, 173, 29, 0.1) 0px 1px 1px 0px inset, rgba(255, 217, 1, 0.25) 0px 50px 100px -20px, rgba(235, 153, 0, 0.3) 0px 30px 60px -30px;  }

  @media (min-width: 600px) {
    .card {
      height: 450px;
    }
  }
  .card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    background-size: cover;
    background-position: 0 0;
    transition: transform calc(var(--d) * 1.5) var(--e);
    pointer-events: none;
  }
  .card:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    pointer-events: none;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.009) 11.7%, rgba(0, 0, 0, 0.034) 22.1%, rgba(0, 0, 0, 0.072) 31.2%, rgba(0, 0, 0, 0.123) 39.4%, rgba(0, 0, 0, 0.182) 46.6%, rgba(0, 0, 0, 0.249) 53.1%, rgba(0, 0, 0, 0.32) 58.9%, rgba(0, 0, 0, 0.394) 64.3%, rgba(0, 0, 0, 0.468) 69.3%, rgba(0, 0, 0, 0.54) 74.1%, rgba(0, 0, 0, 0.607) 78.8%, rgba(0, 0, 0, 0.668) 83.6%, rgba(0, 0, 0, 0.721) 88.7%, rgba(0, 0, 0, 0.762) 94.1%, rgba(0, 0, 0, 0.79) 100%);
    transform: translateY(-50%);
    transition: transform calc(var(--d) * 2) var(--e);
  }
  .card:nth-child(1):before {
    background-image: url(https://images.pexels.com/photos/56904/pexels-photo-56904.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1);
  }
    
   
    
  .card:nth-child(2):before {
    background-image: url(https://images.pexels.com/photos/9555099/pexels-photo-9555099.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1);
    background-position:  0 0,
  center;
  }
  .card:nth-child(3):before {
    background-image: url(https://images.pexels.com/photos/1906658/pexels-photo-1906658.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1);
  }
  .card:nth-child(4):before {
    background-image: url(https://images.pexels.com/photos/9555108/pexels-photo-9555108.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1);
  }
  
  .content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 1rem;
    transition: transform var(--d) var(--e);
    z-index: 1;
  }
  .content > * + * {
    margin-top: 1rem;
  }
  
  .title {
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 1.2;
  }
  
  .copy {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.35;
  }
  
  .btn {
    cursor: pointer;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.65rem;
    font-weight: bold;
    letter-spacing: 0.025rem;
    text-transform: uppercase;
    color: white;
    background-color: black;
    border: none;
  }
  .btn:hover {
    background-color: #0d0d0d;
  }
  .btn:focus {
    outline: 1px dashed yellow;
    outline-offset: 3px;
  }
  
  @media (hover: hover) and (min-width: 600px) {
    .card:after {
      transform: translateY(0);
    }
  
    .content {
      transform: translateY(calc(100% - 4.5rem));
    }
    .content > *:not(.title) {
      opacity: 0;
      transform: translateY(1rem);
      transition: transform var(--d) var(--e), opacity var(--d) var(--e);
    }
  
    .card:hover,
  .card:focus-within {
      align-items: center;
    }
    .card:hover:before,
  .card:focus-within:before {
      transform: translateY(-4%);
    }
    .card:hover:after,
  .card:focus-within:after {
      transform: translateY(-50%);
    }
    .card:hover .content,
  .card:focus-within .content {
      transform: translateY(0);
    }
    .card:hover .content > *:not(.title),
  .card:focus-within .content > *:not(.title) {
      opacity: 1;
      transform: translateY(0);
      transition-delay: calc(var(--d) / 8);
    }
  
    .card:focus-within:before, .card:focus-within:after,
  .card:focus-within .content,
  .card:focus-within .content > *:not(.title) {
      transition-duration: 0s;
    }
  }




.carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 60vh;
    top: 0;
    right: 1000px;
    width: 65vw;

}
#carousel-root {
    width: 100%;
    height: 40vh;
}
.carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    position: relative;
}
.carousel-item {
    height: 100%;
    aspect-ratio: 16/9;
    position: absolute;
    transition-duration: 1s;
    background-repeat:no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    z-index: 3;
    border-radius: 10px;
}

.carousel-item:after {
    content: "";
    display: block;
    height: 60%;
    width: 100%;
    bottom: 0;
    position: absolute;
    background: linear-gradient(0deg, #000, transparent);
    z-index: -1;
    border-radius: 0 0 10px 10px;
}
.carousel-item .title {
    padding: 0px;
    position: absolute;
    bottom: 15px;
    color: #dfdfdf;
    width: calc(100% - 40px);
    left: 20px;
    text-align: left;
    box-sizing: border-box;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: larger;
    font-weight: bold;
}
.carousel-middle {
    bottom: 0%;
    opacity: 1;
}
.carousel-wrapper:hover .carousel-middle{
    transform: scale(1.05);
}
.carousel-wrapper:hover .carousel-middle .title{
    -webkit-line-clamp: 4 !important;
    line-clamp: 4 !important;
    color: #fff !important;
}
.carousel-left-1 {
    transform: scale(.7) translateX(-20%);
    transform-origin: bottom left;
    bottom: 5%;
    z-index: 2;
    opacity: 0.95;
}
.carousel-left-2 {
    transform: scale(.5) translateX(-50%);
    transform-origin: bottom left;
    bottom: 8%;
    z-index: 1;
    opacity: 0.9;
}
.carousel-right-1 {
    transform: scale(.7) translateX(20%);
    transform-origin: bottom right;
    bottom: 5%;
    z-index: 2;
    opacity: 0.95;
}
.carousel-right-2 {
    transform: scale(.5) translateX(50%);
    transform-origin: bottom right;
    bottom: 8%;
    z-index: 1;
    opacity: 0.9;
}

.carousel-hide {
    width: 0;
    height: 0;
    opacity: 0;
    margin: 0;
    bottom: 20%;
    z-index: -1;
}
#carousel-btn-container {
    display: flex;
    opacity: 0;
    position: relative;
    height: 100%;
    aspect-ratio: 16/9;
    justify-content: space-between;
    align-items: center;
    z-index: 3;
    pointer-events: none;
    transition-duration: .5s;
}
#carousel-btn-container a {
    z-index: 200;
    color: #fff;
    cursor: pointer;
    pointer-events: all;
    background: #00000085;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.prev-btn {
    padding: 15px 5px 15px 13px;
}
.next-btn {
    padding: 15px 13px 15px 5px;
}
[class^=arr-] {
    /* Arrows @RCB */
    border: solid currentColor;
    border-width: 0 0.15em 0.15em 0;
    display: inline-block;
    padding: 0.5em;
}
.arr-right {
    transform: rotate(-45deg);
}
.arr-left {
    transform: rotate(135deg);
}
