/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
.body1{
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #EFEFEF;
}
.slide-container{
  max-width: 1120px;
 
  padding: 40px 0;
}
.slide-content{
  margin: 0 40px;
  overflow: hidden;
  border-radius: 25px;
}
.card{
  border-radius: 25px;
  background-color: #FFF;
}
.image-content,
.card-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 14px;
}
.image-content{
  position: relative;
  row-gap: 5px;
  padding: 25px 0;
}
.overlay{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color:#FF7F50;
  border-radius: 25px 25px 0 25px;
}
.overlay::before,
.overlay::after{
  content: '';
  position: absolute;
  right: 0;
  bottom: -40px;
  height: 40px;
  width: 40px;
  background-color: #FF7F50;
}
.overlay::after{
  border-radius: 0 25px 0 0;
  background-color: #FFF;
}
.card-image{
  position: relative;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  background: #FFF;
  padding: 3px;
}
.card-image .card-img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.name{
  font-size: 18px;
  font-weight: 500;
  color: #333;
}
.description{
  font-size: 14px;
  color: #707070;
  text-align: center;
  height:auto !important;
}
.button{
  border: none;
  font-size: 16px;
  color: #FFF;
  padding: 8px 16px;
  background-color: #f04623;
  border-radius: 6px;
  margin: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button:hover{
  background: #f04623;
}

.swiper-navBtn{
  color:#f04623;
  transition: color 0.3s ease;
}
.swiper-navBtn:hover{
  color:#f04623;
}
.swiper-navBtn:active{
  color: red!important;
}
.swiper-button-next::before, .swiper-button-prev::before{
  color: red;
}


.swiper-button-next, .swiper-rtl .swiper-button-prev{
  color: red!important;
}

.swiper-button-next,
.swiper-button-prev {
  color: #f04623 !important; /* Set the color of both arrow buttons */
  font-size: 35px; /* Adjust the font size if necessary */
  z-index: 10; /* Ensure the buttons are above other elements */
}

.swiper-button-next::before,
.swiper-button-prev::before {
  color: #f04623 !important; /* Set the color of the arrow icons */
}



@media screen and (max-width: 768px) {
  .slide-content{
    margin: 0 10px;
  }
  .swiper-navBtn{
    display: none;
  }
}


/* Go to up css */

.gotobtn
{
  height:60px;
  width: 25%;
  background-color: #f04623;
  border-radius:5px;
  float:right;
  border:none;
}

.goto
{
  color:white;
  height:20px;
  width:40%;
  margin-left: 10px;
  margin-bottom:-20px;
}

.view1
{
  display: inline-block;
  padding: 10px 45px;
  background-color: #f04623;
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: none;
  border-radius: 5px;
  margin-top: 15px;
  text-decoration: none;
}

.view1:hover {
  background-color:transparent;
  border:2px solid wheat;
  text-decoration: none;
  color:white /* Change background color on hover */
  
}

