@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  font-family: Poppins, sans-serif;
  scroll-behavior: smooth;
}

:root {
  --black-color: #1e1c1c;
  --white-color: #f7f7f7;
}

img, button, iframe, a {
  user-select: none;
}

.slidein {
  animation: slideAnimation 1s ease var(--slidein-delay, 0) forwards;
}

@keyframes slideAnimation {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navUnderLine {
  position: relative;
  padding: 0 2px;
  cursor: pointer;
}

.navUnderLine::before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #dd572d;
  transition: 200ms all;
}
.navUnderLine:hover::before {
  width: 100%;
}

.fadeIn {
  animation: fadeIn 1s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fastFadeIn {
  animation: fadeIn 0.5s;
}

@keyframes fastFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.myShadow {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-next:after, .swiper-button-prev:after{
  color: rgb(144, 144, 144);
}
.swiper-pagination-bullet-active{
  background: #f1a10e !important;
}

.input:user-invalid{
  border: 1px solid red;
}

.telegram-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #0088cc;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out;
}

.telegram-float:hover {
  transform: scale(1.1);
}

.telegram-float img {
  width: 40px;
  height: 40px;
}
.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  max-width: 1200px;
  margin: auto;
  padding: 10px;
}

.image-gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease-in-out;
}

.image-gallery img:hover {
  transform: scale(1.05);
}
