@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

/* Global Colors */
:root {
  --background-color: #ffffff;
  --default-color: #3E4155;
}

body {
  font-family: 'Figtree', sans-serif;
  background-color: var(--background-color);
  color: var(--default-color);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  padding-bottom: 30px;
}

.user_bio {
  display: flex;
  align-items: flex-start;
  gap: 70px;
  padding: 50px 0;
}

.user_bio_img {
  flex-shrink: 0;
  width: 38%;
  overflow: hidden;
  border-radius: 20px;
}

.user_bio_text {
  margin-top: 30px;
}

.user_bio_text h6 {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;

}

.user_bio_text p {
  font-size: 16px;
  line-height: 1.6;
}

.event_card {
  border: 1px solid #E7E7E7;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.event_card .city {
  position: absolute;
  background-color: #ffffff;
  color: #000000;
  padding: 5px 10px;
  border-radius: 5.3px;
  font-size: 11px;
  font-weight: 500;
  top: 8px;
  left: 8px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0px 0px 3.59px 0px #00000040;

}

.event_card img {
  width: 100%;
  border-radius: 10px 10px 0 0;
  position: relative;
  z-index: 1;
}

.sub_heading{
  font-size: 32px;
  font-weight: 600;
  color: #000000;
  margin-top: 0px;
  margin-bottom:35px;
  padding-bottom: 15px;
  border-bottom: 1px solid #D9D9D9;
}

.card_inner {
  padding: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.card_inner_text {
  width: 100%;
}

.card_inner h6 {
  font-size: 12px;
  margin-bottom: 5px;
  font-weight: 500;
  color: #424B9E;
}

.card_inner h4 {
  font-size: 17px;
  margin-bottom: 5px;
  font-weight: 600;
  color: #333333;
}

.card_inner p {
  font-size: 12px;
  margin-bottom: 10px;
  font-weight: 500;
  color: #3E4155;
}

.card_inner .btn {
  background-color: #B3B4B8;
  color: #333333;
  border-radius: 6px;
  padding: 7px 20px;
  font-size: 14px;
  border: 0;
  margin-top: auto;
  width: auto;
}

.card_inner .btn:hover {
  background-color: #000000;
  color: #ffffff;
}

.card_inner .btn.btn-primary {
  background-color: #1A2589;
  color: #ffffff;
}

.card_inner .btn.btn-primary:hover {
  background-color: #000000;
  color: #ffffff;
}

.card_inner .btn.btn-secondary {
  background-color: #CCAA00;
  color: #ffffff;
}

.card_inner .btn.btn-secondary:hover {
  background-color: #000000;
  color: #ffffff;
}

/* Swiper Styles */
.eventsSwiper {
  width: 100%;
  padding: 0 0 50px 0;
}

.eventsSwiper .swiper-slide {
  height: auto;
}

.eventsSwiper .swiper-pagination {
  bottom: 0;
}

.eventsSwiper .swiper-pagination-bullet {
  background: #1A2589;
  opacity: 0.3;
  width: 10px;
  height: 10px;
}

.eventsSwiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: #1A2589;
}

.eventsSwiper .swiper-button-next,
.eventsSwiper .swiper-button-prev {
  color: #1A2589;
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
}

.eventsSwiper .swiper-button-next:after,
.eventsSwiper .swiper-button-prev:after {
  font-size: 20px;
  font-weight: bold;
}

.eventsSwiper .swiper-button-next:hover,
.eventsSwiper .swiper-button-prev:hover {
  background: #1A2589;
  color: #ffffff;
}



@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1170px;
  }
}


@media (min-width: 0px) and (max-width:991px) {

  .user_bio {
    gap: 30px;
    padding: 50px 0;
  }

  .user_bio_text {
    margin-top: 0px;
  }
}

@media (min-width: 0px) and (max-width:767px) {
  .user_bio {
    flex-direction: column
  }

  .user_bio_img {
    width: 100%;
  }
}

@media (min-width: 0px) and (max-width:575px) {
  .user_bio {
    padding: 20px 0;
    gap: 20px;
  }

  .user_bio_text h6 {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .sub_heading{
    font-size: 24px;
    margin-bottom: 20px;
  }

  body {
    padding-bottom: 10px;
  }
}