.nav-link.active {
  color: #f1f1f1 !important;
  background: #ffca2c !important;
}

*, *::before, *::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

::-moz-selection {
  color: #f1fbff;
  background: #ffca2c;
}

::selection {
  color: #f1fbff;
  background: #ffca2c;
}

/* For WebKit-based browsers (Chrome, Safari, etc.) */
/* Customize the scrollbar track */
::-webkit-scrollbar {
  width: 10px;
  background-color: #f1f1f1;
}

/* Customize the scrollbar thumb */
::-webkit-scrollbar-thumb {
  background-color: #888;
}

/* For other browsers (Firefox, Edge, etc.) */
/* Customize the scrollbar track and thumb */
body {
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1; /* thumb color and track color */
}

/* Hover effect for scrollbar thumb */
::-webkit-scrollbar-thumb:hover {
  background-color: #ffca2c;
}

/* Hover effect for scrollbar thumb in other browsers */
body::-webkit-scrollbar-thumb:hover {
  background-color: #ffca2c;
}

body {
  background: #f1fbff !important;
  scroll-behavior: smooth;
}

.up-button {
  color: #ffca2c;
  position: fixed;
  bottom: 1rem;
  right: 2rem;
  transition: opacity 0.3s;
  z-index: 30;
  text-decoration: none;
  font-size: 2.8rem;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
  pointer-events: all;
}
.up-button.btn-hidden {
  opacity: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

.landing-page {
  width: 100%;
  height: 100vh;
  height: 100dvh;
}
.landing-page .landing-swiper {
  width: 100%;
  height: 100%;
}
.landing-page .landing-swiper > .custom-nav-btn {
  opacity: 0.4;
  transition: opacity 0.3s;
}
.landing-page .landing-swiper > .custom-nav-btn:hover {
  opacity: 1;
}
.landing-page .swiper-slide {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.landing-page .swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
  pointer-events: none;
}
.landing-page .slider-content {
  position: absolute;
}
.landing-page .slider-content-1, .landing-page .slider-content-3 {
  top: 30%;
  left: 10%;
}
.landing-page .slider-content-2 {
  top: 70%;
  right: 10%;
}
.landing-page .slider-content-4 {
  top: 30%;
  right: 10%;
}
.landing-page .swiper-button-next {
  right: 5%;
}
.landing-page .swiper-button-prev {
  left: 5%;
}
.landing-page .swiper-pagination-bullet-active {
  background: #fec107;
}

@media (width <= 600px) {
  .slider-content {
    left: 50% !important;
    top: 30% !important;
    transform: translate(-50%, -50%);
    text-align: center !important;
  }
}
.x-section-padding {
  padding-block: 90px;
}
.x-social > a {
  text-decoration: none;
  color: #252627;
}

#portfolio .swiper-slide {
  text-align: center;
}
#portfolio .swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
#portfolio .swiper-pagination-bullet-active {
  background: #fec107;
}
#portfolio .swiper {
  overflow-y: visible;
}
#portfolio .swiper-content {
  position: relative;
}
#portfolio .swiper-content .project-content {
  overflow: hidden;
  position: absolute;
  height: 0%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0.3;
  transition: all 0.5s ease-in-out;
}
#portfolio .swiper-content:hover .project-content {
  height: 100%;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: transparent;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 13px;
  height: 13px;
  background-color: #ffca2c;
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  position: absolute;
  left: 50%;
}

#preloader div:nth-child(1) {
  left: calc(50% + 8px);
  animation: animate-preloader-1 0.6s infinite;
}

#preloader div:nth-child(2) {
  left: calc(50% + 8px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(3) {
  left: calc(50% + 32px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(4) {
  left: calc(50% + 56px);
  animation: animate-preloader-3 0.6s infinite;
}

@keyframes animate-preloader-1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes animate-preloader-3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes animate-preloader-2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}/*# sourceMappingURL=style.css.map */