@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;400&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}
html {
  overflow-x: hidden;
  max-width: 100%;
}

#slider {
  overflow: hidden;
  width: 100vw;
}

#slider ul {
  list-style: none;
}

#slider ul li {
  height: 100vh;
  width: 100vw;
  float: left;
}

#slider ul li img {
  height: 100vh;
  object-fit: cover;
  width: 100vw;
}

.control_prev,
.control_next {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  top: 40%;
}

.control_prev:hover,
.control_next:hover {
  -webkit-transition: all 0.2s ease;
}
.control_prev {
  left: 50px;
}
.control_next {
  right: 50px;
}
.heading1::before {
  content: "";
  width: 150px;
  height: 3px;
  background-color: #f38c30;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.heading2::before {
  content: "";
  width: 150px;
  height: 3px;
  background-color: #f38c30;
  position: absolute;
  top: -15px;
  left: 0;
}

/* Scrollbar Track */
::-webkit-scrollbar {
  width: 8px; /* Width of the scrollbar track */
}

/* Scrollbar Thumb */
::-webkit-scrollbar-thumb {
  background: #f38c30; /* Color of the thumb */
  border-radius: 6px; /* Rounded corners */
}

.mobile-menu {
  left: -200%;
  transition: 0.5s;
}

.mobile-menu.active {
  left: 0;
}
.about-section {
  background-color: #ffffff;
  background-image: url("./img/gray-rectangle-2.png");
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 70% auto;
}

.animateMe{
  opacity: 0;
}
 
.animateMe .animated{
    opacity: 1;
}

.gallery{
  margin: 1rem;
  overflow: hidden;
  
  & .slick-slide img{
    width: 120px !important;
  }

  & .slick-slide div{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 160px;
  }
}