@import url("https://fonts.googleapis.com/css2?family=Jost:wght@400;700&display=swap");

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Jost", sans-serif;
}
.slider-container{
  width: 100%;
  height: 80vh;
  background-image: url('Images/bg-img.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-images{
  display: flex;
  align-items: center;
  gap: 10px;
}
.slider-images img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.slider-img{
  width: 80px;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  transition: 0.7s ease;
}
.slider-images .slider-img:first-child, .slider-images .slider-img:last-child, .slider-images .slider-img:nth-child(7){
  height: 280px;
}
.slider-images .slider-img:nth-child(2), .slider-images .slider-img:nth-child(6){
  height: 280px;
}
.slider-images .slider-img:nth-child(3), .slider-images .slider-img:nth-child(4), .slider-images .slider-img:nth-child(5){
  height: 280px;
}
h1{
  font-family: "Jost", sans-serif;

  font-size: 10px;
  font-weight: 500;
  text-align: left;
  text-transform: uppercase;
  color: #ffff;
  position: absolute;
  top: 40%;
  left: -50%;
  transform: rotate(270deg);
  transition: 0.7s ease;
}
.details{
  position: absolute;
  bottom: 43px;
  left: 43px;
}
.details h2{
  font-family: "Jost", sans-serif;
  font-size: 26px;
  font-weight: 700;
  text-align: left;
  line-height: 44px;
  text-align: left;
  color: #fff;
  text-transform: uppercase;
  transition: 0.7s ease;
  display: none;
}
.details p{
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  line-height: 33px;
  text-align: left;
  color: #fff;
  text-transform: uppercase;
  transition: 0.7s ease;
  display: none;
}
.slider-img.active{
  width: 300px !important;
  height: 300px !important;
}
.slider-img.active h1{
   display: none;
}
.slider-img.active .details p, .slider-img.active .details h2{
  display: block;
}







@media (max-width:1250px){
.slider-container{
    height: 350px;
  width: 390px;
  display: block;
}
.slider-img.active{
  width: 170px !important;
  height: 170px !important;
}

.slider-images{
  gap: 5px;
}
.slider-img{
  width: 25px;
}
h1{

  top: 43%;
  left: -160%;

}

.slider-images .slider-img:first-child, .slider-images .slider-img:last-child, .slider-images .slider-img:nth-child(7){
  height: 150px;
}
.slider-images .slider-img:nth-child(2), .slider-images .slider-img:nth-child(6){
  height: 150px;
}
.slider-images .slider-img:nth-child(3), .slider-images .slider-img:nth-child(4), .slider-images .slider-img:nth-child(5){
  height: 150px;
}

}




@media (max-width: 1250px){
.send-btn {
    width: 50px;
    height: 30px;
}
}

.send-btn {
    background: #62BB51;
    color: #fff;
    font-family: 'Noto Sans Georgian', sans-serif;
    font-size: 18px;
    width: 150px;
    height: 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
}