@import url("https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Momo+Trust+Display&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
section {
  scroll-margin-top: 180px; /* adjust based on your header height */
}
.release_updates{
  padding:20px;
  background: #fca311;
  border-radius: 14px;
  margin-bottom: 30px;
}
.release_updates h3{
  font-size: 30px;
  font-weight: 800;
}
.release_updates p{
  margin:0;
  font-size: 22px;
}
.modal-body .pills{
  padding:3px 6px;
  border-radius: 5px;
  background-color: #ddd;
}
.modal-body .inner-modal-title h2{
  width: 400px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#event_type{
  font-size: 22px;
}
#daysLeft{
  display: flex;
  align-items: flex-start;
  grid-gap: 10px;
}
#daysLeft .time-block{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-gap: 2px;
}
#daysLeft .time-block .block{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: tomato;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 3px;
  font-size: 20px;
}
.modal-body .inner-modal-title{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-body .flex-modal-pills{
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  grid-gap: 5px;
  margin: 20px 0;
}
html{
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito Sans", sans-serif !important;
  font-optical-sizing: auto;
  overflow: hidden;
  /*background: #E8F2F5;*/
  background: #fff;
  color: #2B2B2B;
  scroll-behavior: smooth;
}

.pageTitle {
  font-size: 16px !important;
}
.pageTitle a {
  font-size: 16px;
  text-decoration: none;
  color: #2B2B2B;
}

input[type=submit] {
  border: none;
}

.create-btn {
  padding: 10px 20px;
  font-size: 14px;
  background-color: #33a57d;
  color: #fff !important;
  border-radius: 4px;
  text-decoration: none;
}

.create-btn-2 {
  padding: 10px 20px;
  font-size: 14px;
  border: 1px solid #33a57d;
  color: #33a57d;
  border-radius: 4px;
  text-decoration: none;
  margin: 0;
}

.insert-item-btn {
  padding: 10px 20px;
  font-size: 14px;
  background-color: #33a57d;
  color: #fff !important;
  border-radius: 4px;
  text-decoration: none;
}

.wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  position: relative;
}
/* .wrapper .sticky-header{
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 10;
} */
.wrapper .top-header-fixed {
  padding: 20px 60px;
  background-color: #fff;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wrapper .top-header-fixed .login-action .welcome-note {
  font-size: 14px;
}
.wrapper .top-header-fixed .logo-img{
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.wrapper .top-header-fixed .login-action a {
  text-decoration: none;
  color: #2B2B2B;
  font-size: 22px;
  display: flex;
  align-items: center;
  grid-gap: 3px;
}
.wrapper .top-header-fixed .login-action a span {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: greenyellow;
}
.wrapper .header {
  background: #E8F2F5;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.wrapper .header p {
  color: #2B2B2B;
  font-size: 20px;
  letter-spacing: 0.5px;
  font-weight: 500;
  position: relative;
  margin: 0;
}
.wrapper .header p::before, .wrapper .header p::after {
  content: "";
  position: absolute;
  background: #2B2B2B;
  width: 60px;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
}
.wrapper .header p::before {
  left: -80px;
}
.wrapper .header p::after {
  right: -80px;
}
.wrapper main {
  flex: 1;
  display: flex;
  margin-top: 0;
}
.wrapper main .side-nav {
  width: 300px;
  background: #E8F2F5;
  height: calc(100vh - 70px);
  position: sticky;
  top: 0;
  left: 0;
  padding-top: 30px;
  overflow-y: hidden;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.15);
  z-index: 5;
}
.wrapper main .side-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.wrapper main .side-nav ul li a {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  color: #2B2B2B;
  font-size: 20px;
  margin-bottom: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.wrapper main .side-nav ul li:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: none;
}
.wrapper main .side-nav ul li.active {
  background-color: #33a57d;
  transform: none;
}
.wrapper main .side-nav ul li.active a {
  color: #fff;
}
.wrapper main .side-nav ul .locked-menus {
  position: relative;
  margin-top: 10px;
}
.wrapper main .side-nav ul .locked-menus ul {
  position: relative;
  z-index: -1;
}
.wrapper main .side-nav ul .locked-menus::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - 140px);
  background: rgba(232, 242, 245, 0.8);
  z-index: 1;
  border-radius: 8px;
}
.wrapper main .side-nav ul .locked-menus .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - 230px);
  z-index: 10;
  color: #2B2B2B;
  font-size: 16px;
  text-align: center;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.wrapper main .side-nav ul .locked-menus .overlay img {
  width: 100px;
  height: 100px;
  margin-top: -100px;
  opacity: 0.3;
  filter: invert(1);
}
.wrapper main .content-main {
  flex: 2;
  margin-left: 0;
  height: calc(100vh - 80px);
  overflow-y: auto;
  /*background: linear-gradient(180deg, #F5F9FC, #E8F2FA);*/
  background: #fff;
  position: relative;
  z-index: 1;
  padding-bottom: 50px;
}
.wrapper main .content-main .pages {
  animation: fadeIn 1s ease forwards;
  position: relative;
  padding: 0 30px 0 30px;
}
.wrapper main .content-main .pages .forgot-content {
  width: 30%;
  margin: 30px auto;
}
.wrapper main .content-main .pages .forgot-content h2 small {
  font-size: 22px;
}
.wrapper main .content-main .pages .forgot-content input[type=email] {
  font-size: 20px;
}
.wrapper main .content-main .pages .forgot-content .create-btn {
  display: block !important;
  width: 100% !important;
  font-size: 20px;
}
.wrapper main .content-main .pages ul.top-nav {
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  position: sticky;
  top: 0;
  left: 0;
  background: #fff;
  padding: 20px 0;
  z-index: 1500;
  border-bottom: 1px solid #ddd;
}
.wrapper main .content-main .pages ul.top-nav li a {
  text-decoration: none;
  color: #2B2B2B;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.wrapper main .content-main .pages ul.top-nav li a:hover {
  background: #33a57d;
  color: #fff;
  transform: scale(1.05);
}
.wrapper main .content-main .pages ul.top-nav li a.active {
  background: #FF7B00;
  color: #fff;
  transform: scale(1.05);
}
.wrapper main .content-main .pages .content .swiper {
  width: 100%;
  height: 75vh;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.wrapper main .content-main .pages .content .swiper .overlay-actions {
  background-color: rgba(255, 255, 255, 0.7);
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  grid-gap: 20px;
}
.wrapper main .content-main .pages .content .swiper .overlay-actions a {
  text-decoration: none;
  color: #fff;
  padding: 8px 18px;
  font-size: 22px;
  border-radius: 4px;
  font-weight: 300;
  font-family: "Jost", sans-serif;
}
.wrapper main .content-main .pages .content .swiper .overlay-actions a:first-child {
  background: #105798;
}
.wrapper main .content-main .pages .content .swiper .overlay-actions a:last-child {
  background: #E86203;
}
.wrapper main .content-main .pages .content .swiper .swiper-slide {
  position: relative;
  padding-left: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrapper main .content-main .pages .content .swiper .swiper-slide img.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  z-index: 1;
}
/* .wrapper main .content-main .pages .content .swiper .swiper-slide .overlay {
  background-color: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
} */
.wrapper main .content-main .pages .content .swiper .swiper-slide .swiper-content {
  position: relative;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 30px;
  /* height: calc(100% - 100px); */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.wrapper main .content-main .pages .content .swiper .swiper-slide .swiper-content h1 {
  font-size: 50px;
  color: #fff;
  font-weight: 800;
  text-align: center;
  margin: 10px auto;
  width: 70%;
  font-family: "Nunito Sans", sans-serif;
}
.wrapper main .content-main .pages .content .swiper .swiper-slide .swiper-content ul {
  list-style: none;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 40px;
}
.wrapper main .content-main .pages .content .swiper .swiper-slide .swiper-content ul li {
  display: flex;
  align-items: center;
  font-size: 25px;
  color: #fff;
  margin-bottom: 5px;
  font-weight: 300;
}
.wrapper main .content-main .pages .content .swiper .swiper-slide .swiper-content ul li img {
  width: 40px;
  height: 40px;
  margin-right: 5px;
}
.wrapper main .content-main .pages .content section {
  margin: 100px auto;
  padding: 30px;
}
/* .wrapper main .content-main .pages .content section#about h3 {
  font-weight: 800;
  font-family: "Nunito Sans", sans-serif;
  font-size: 100px;
} */
.wrapper main .content-main .pages .content section#about img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.wrapper main .content-main .pages .content section#about p {
  font-weight: 300;
  font-size: 24px;
  margin-bottom: 10px;
  text-align: justify;
  color: #495057;
  margin-bottom: 10px;
}
.wrapper main .content-main .pages .content section#about .image-cards {
  position: relative;
  display: flex;
}
.wrapper main .content-main .pages .content section#about .image-cards .img-card {
  width: 350px;
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
}
.wrapper main .content-main .pages .content section#about .image-cards .img-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wrapper main .content-main .pages .content section#about .image-cards .card1 {
  position: absolute;
  left: 100px;
  top: 50px;
  z-index: 10;
  border: 4px solid #fff;
}
.wrapper main .content-main .pages .content section#about .image-cards .card2 {
  position: absolute;
  top: 150px;
  right: 100px;
  z-index: 5;
}
/* .wrapper main .content-main .pages .content section.whyJoin h3 {
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 50px;
  color: #495057;
  text-align: center;
  text-transform: uppercase;
} */
.wrapper main .content-main .pages .content section.whyJoin small{
  font-size: 20px;
  font-weight: 400;
  display:block;
  margin-bottom: 50px;
  text-transform: uppercase;
  text-align: center;
}
.wrapper main .content-main .pages .content section.whyJoin h5 {
  font-weight: bold;
  font-size: 25px;
  padding: 10px;
  color: #fff;
  background: #33a57d;
  border:1px solid #33a57d;
  border-radius: 3px;
}

.wrapper main .content-main .pages .content section.whyJoin a{
  font-size: 24px;
  padding: 15px 10px;
  /* border:1px solid #105798; */
  /* border-radius: 6px; */
  margin-bottom: 10px;
  display: block;
  color: #105798;
  text-decoration: none;
  transition : 0.5s;
  min-height: 80px;
}

.wrapper main .content-main .pages .content section.whyJoin h5 small{
  margin-bottom: 0;
  font-size: 20px;
  text-align: left;
}
.wrapper main .content-main .pages .content section.whyJoin a:hover{
  background: #eaf4f4;
  color: #105798;
}
.wrapper main .content-main .pages .content section.whyJoin a.active{
  background: #105798;
  color: #fff;
  position: relative;
}
/* .wrapper main .content-main .pages .content section.whyJoin a.active::after{
  content: '';
  width: 20px;
  height: 20px;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  background: #105798;
  position: absolute;
  top: 50%;
  right: -22px;
  transform: translateY(-50%);
} */
.wrapper main .content-main .pages .content section.whyJoin ul {
  margin-top: 0;
}
.wrapper main .content-main .pages .content section.whyJoin ul li {
  font-size: 25px;
  margin-bottom: 10px;
  color: #495057;
}
.wrapper main .content-main .pages .content section.whyJoin ul li b{
  color: #33a57d;
}
.wrapper main .content-main .pages .content section.whyJoin p {
  font-size: 22px;
  color: #403d39;
  text-align: justify;
  margin-top: 20px;
}
/* .wrapper main .content-main .pages .content section.mapFeature .title {

}
.wrapper main .content-main .pages .content section.mapFeature .title h4 {
  font-size: 40px;
  text-align: center;
} */
.wrapper main .content-main .pages .content section.mapFeature h5 {
  font-size: 20px;
  text-align: center;
  font-weight: 400;
  margin-bottom: 50px;
}
.wrapper main .content-main .pages .content section.mapFeature #map {
  width: 100%;
  height: 800px;
}
.wrapper main .content-main .pages .content section.mapFeature .flex-content {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 10px;
  margin-bottom: 20px;
}
.wrapper main .content-main .pages .content section.mapFeature .flex-content a {
  font-size: 16px;
  text-decoration: none;
  background-color: #E8F2F5;
  border-radius: 10px;
  padding: 10px 20px;
  color: #2B2B2B;
}
.wrapper main .content-main .pages .content section.mapFeature .flex-content a.active {
  background-color: #33a57d;
  color: #fff;
}
.wrapper main .content-main .pages .content section.mapFeature .info-tab {
  position: absolute;
  z-index: 1000;
  top: 10px;
  right: 10px;
  width: 400px;
  height: 100%;
}
.wrapper main .content-main .pages .content section.mapFeature .info-tab .map-info {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background-color: #fff;
}
.wrapper main .content-main .pages .content section.mapFeature .info-tab .map-info .image-box {
  width: 100%;
  height: 300px;
}
.wrapper main .content-main .pages .content section.mapFeature .info-tab .map-info .image-box img {
  height: 100%;
  width: 100%;
}
.wrapper main .content-main .pages .content section.mapFeature .info-tab .map-info .details h3 {
  margin: 10px 0;
}
.wrapper main .content-main .pages .content section.mapFeature .info-tab .map-info .details p {
  font-size: 16px;
}
.wrapper main .content-main .pages .content section.mapFeature .info-tab .map-info .details small {
  font-size: 16px;
}
.wrapper main .content-main .pages .content section.mapFeature .info-tab .map-info .mapActions {
  display: flex;
  align-items: center;
  grid-gap: 10px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #999;
}
.wrapper main .content-main .pages .content section.mapFeature .info-tab .map-info .mapActions a {
  text-decoration: none;
  padding: 6px 12px;
  color: #fff;
  font-size: 16px;
  border-radius: 3px;
}
.wrapper main .content-main .pages .content section.mapFeature .info-tab .map-info .mapActions a:first-child {
  background: #33a57d;
}
.wrapper main .content-main .pages .content section.mapFeature .info-tab .map-info .mapActions a:last-child {
  background: #FF7B00;
}
.wrapper main .content-main .pages .registration {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.wrapper main .content-main .pages .registration .heading {
  font-size: 40px;
  font-weight: 700;
  color: #33a57d;
  text-align: center;
}
.wrapper main .content-main .pages .registration .sub-heading {
  font-size: 20px;
  font-weight: 300;
  text-align: center;
}
.wrapper main .content-main .pages .registration input[type=text], .wrapper main .content-main .pages .registration input[type=email] {
  height: 70px;
  font-size: 20px;
}
.wrapper main .content-main .pages .registration input[type=submit] {
  font-size: 20px;
  margin-right: 10px;
  display: block;
  width: 100%;
  height: 70px;
}
.wrapper main .content-main .pages .registration p {
  font-size: 20px;
  margin-top: 10px !important;
}
.wrapper main .content-main .pages .registration #showMessageResponse {
  margin: 10px 0;
  font-size: 16px;
  color: #2B2B2B;
  padding: 10px 12px;
  background-color: #cde9df;
  border-radius: 3px;
}
.wrapper main .content-main .pages .registration span {
  font-size: 18px;
  display: block;
  text-align: center;
}
.wrapper main .content-main .pages .services-content #map {
  width: 100%;
  height: 600px;
}
.wrapper main .content-main .pages .club-profile .content-left img.profile {
  width: 100%;
  max-height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin-bottom: 10px;
  border-radius: 10px;
}
.wrapper main .content-main .pages .club-profile .content-right h3 {
  font-size: 30px;
  margin-bottom: 30px;
}
.wrapper main .content-main .pages .club-profile .content-right a.social-link i {
  font-size: 50px;
  margin-right: 10px;
}
.wrapper main .content-main .pages .club-profile .content-right p {
  font-size: 20px;
}
.wrapper main .content-main .pages .club-profile .content-right .action {
  margin-top: 30px !important;
}
.wrapper main .content-main .pages .club-profile .content-right a {
  font-size: 20px !important;
}
.wrapper main .content-main .pages .club-profile .eventSwiper .swiper-wrapper {
  height: auto !important;
}
.wrapper main .content-main .pages .club-profile .eventSwiper .swiper-slide {
  border: 1px solid #ddd;
}
.wrapper main .content-main .pages .club-profile .eventSwiper .swiper-slide .event {
  display: flex;
  align-items: center;
  grid-gap: 10px;
}
.wrapper main .content-main .pages .club-profile .eventSwiper .swiper-slide .event .eventImage {
  flex-basis: 22%;
}
.wrapper main .content-main .pages .club-profile .eventSwiper .swiper-slide .event .eventImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.wrapper main .content-main .pages .club-profile .eventSwiper .swiper-slide .event .eventInfo {
  flex-basis: 76%;
  padding: 12px;
}
.wrapper main .content-main .pages .club-profile .eventSwiper .swiper-slide .event .eventInfo h4 {
  font-size: 22px;
  padding: 0;
  margin: 0;
}
.wrapper main .content-main .pages .club-profile .eventSwiper .swiper-slide .event .eventInfo p {
  text-align: left !important;
  font-size: 20px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin: 0;
}
.wrapper main .content-main .pages .club-profile .eventSwiper .swiper-slide .event .eventInfo p:last-child {
  margin-top: 5px;
}
.wrapper main .content-main .pages .club-profile .content {
  margin-top: 20px;
}
.wrapper main .content-main .pages .club-profile .content p.desc {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px !important;
}
.wrapper main .content-main .pages .club-content {
  padding-bottom: 100px;
}
.wrapper main .content-main .pages .club-content .myShopPage {
  margin-top: 30px;
  font-size: 20px;
}
.wrapper main .content-main .pages .club-content .myShopPage ul {
  list-style: none;
}
.wrapper main .content-main .pages .club-content .myShopPage ul li {
  font-size: 20px;
}
.wrapper main .content-main .pages .club-content .clubs-cards {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 15px;
}
.wrapper main .content-main .pages .club-content .clubs-cards .club {
  flex-basis: 32%;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ddd;
}
.wrapper main .content-main .pages .club-content .clubs-cards .club .image-cover {
  overflow: hidden;
  width: 100%;
  height: 300px;
  padding: 5px;
}
.wrapper main .content-main .pages .club-content .clubs-cards .club .image-cover img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.wrapper main .content-main .pages .club-content .clubs-cards .club .card-content {
  margin-top: 10px;
  padding: 10px;
}
.wrapper main .content-main .pages .club-content .clubs-cards .club .card-content h3 {
  font-size: 30px;
}
.wrapper main .content-main .pages .club-content .clubs-cards .club .card-content h3 a {
  color: #2B2B2B;
  text-decoration: none;
}
.wrapper main .content-main .pages .club-content .clubs-cards .club .card-content p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wrapper main .content-main .pages .content-default-profile .no_profile {
  display: flex;
  height: 400px;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.wrapper main .content-main .pages .content-default-profile .no_profile h1 {
  font-weight: bold;
  text-align: center;
}
.wrapper main .content-main .pages .content-default-profile .no_profile h3 {
  font-size: 20px;
  text-align: center;
}
.wrapper main .content-main .pages .content-default-profile .no_profile .flex-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.wrapper main .content-main .pages .content-default-profile .no_profile .flex-col a.new_profile {
  margin: 20px auto;
  font-size: 20px;
}
.wrapper main .content-main .pages .content-default-profile h4 {
  font-weight: bold;
}
.wrapper main .content-main .pages .content-default-profile ul {
  list-style: none;
  margin-left: 20px;
}
.wrapper main .content-main .pages .content-default-profile ul li {
  font-size: 20px;
  padding: 10px 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* section.blogs h3{
  font-size: 50px;
  text-align: center;
  font-weight: bold;
  color: #495057;
  text-transform: uppercase;
  margin-bottom: 20px;
  vertical-align: middle;
} */
section.blogs h3 a{
  font-size: 18px;
  text-decoration: none;
  color: #3a3a3a;
  width: 200px;
  display: block;
  margin-left: auto;
}
.blogs .categories{
  display: flex;
  justify-content: center;
  align-items: center;
  grid-gap: 10px;
  flex-wrap: wrap;
  margin:20px 0;
}

.blogs .categories a{
  padding: 5px 10px;
  background: #ddd;
  border-radius: 2px;
  font-size: 20px;
  text-decoration: none;
  color: #3a3a3a;
}

.blogs .blog-content{
  display: flex;
  grid-gap: 20px;
  justify-content: center;
}

.blogs .blog-content .blog-card{
  /*border:1px solid #ddd;
  border-radius: 8px;*/
  padding: 5px;
  width: 300px;
}

.blogs .blog-content .blog-card .blog-image{
  width: 100%;
  height: 300px;
  position: relative;
  z-index: 5;
  border-radius: 10px;
  overflow: hidden;
}

.blogs .blog-content .blog-card .blog-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blogs .blog-content .blog-card .blog-info {
  margin-top: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  background: rgba(0,0,0,0.5);
  padding: 30px 20px;
}
.blogs .blog-content .blog-card .blog-info h4{
  font-size: 25px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  color: #fff;
}
.blogs .blog-content .blog-card .blog-info .blog-short-details{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 12px 0;
}
.blogs .blog-content .blog-card .blog-info .blog-short-details .blog-category{
  padding: 4px 15px;
  background: #E86203;
  color: #fff;
  font-size: 14px;
  border-radius: 10px;
}
.blogs .blog-content .blog-card .blog-info .blog-short-details .blog-date{
  font-size: 15px;
  color: #fff;
}
.blogs .blog-content .blog-card a{
  display: block;
  /*width: 200px;*/
  margin-left: auto;
  padding: 15px 0;
  background: #105798;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: 14px;
  letter-spacing: 1px;
}

.wrapper main .content-main .pages .blog-content{
  padding: 30px;
}
.wrapper main .content-main .pages .blog-content .blog-wrapper{
  display: flex;
  align-items: flex-start;
  grid-gap: 20px;
  margin-top: 30px;
}
.wrapper main .content-main .pages .blog-content .blog-wrapper .blog-list{
  flex:4;
  display: flex;
  flex-wrap: wrap;
  grid-gap: 20px;
}
.blog-content .blog-wrapper .blog-list .blog-cards{
  flex-basis: 45%;
  border:1px solid #ddd;
  border-radius: 10px;
  grid-gap: 10px;
  padding: 12px;
}
.blog-content .blog-wrapper .blog-list .blog-cards .blog-image{
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
}
.blog-content .blog-wrapper .blog-list .blog-cards .blog-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-content .blog-wrapper .blog-list .blog-cards .blog-details{
  padding: 10px 0;
}
.blog-content .blog-wrapper .blog-list .blog-cards .blog-details h3{
  font-size: 30px;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient : vertical;
  -webkit-line-clamp : 2;
}
.blog-content .blog-wrapper .blog-list .blog-cards .blog-details .info{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}
.blog-content .blog-wrapper .blog-list .blog-cards .blog-details .info span.posted{
  font-style: italic;
}
.blog-content .blog-wrapper .blog-list .blog-cards .blog-details .info span.category{
  padding: 3px 5px;
  border-radius: 5px;
  background: tomato;
  color: #fff;
}
.blog-content .blog-wrapper .blog-list .blog-cards .blog-details .info hr{
  border-color: #fff;
}
.blog-content .blog-wrapper .blog-list .blog-cards .blog-details a{
  padding: 12px 0;
  display: block;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-size: 22px;
  background: #33a57d;
}
.blog-content .blog-wrapper .categories{
  flex:1;
  padding: 20px;
  border:1px solid #ddd;
  border-radius: 10px;
}
.blog-content .blog-wrapper .categories ul{
  list-style: none;
  margin: 0;
  padding: 0;
}
.blog-content .blog-wrapper .categories ul li{

}
.blog-content .blog-wrapper .categories ul li a{
  text-decoration: none;
  color: #403d39;
  font-size: 24px;
  display: block;
  padding: 10px 0;
  margin-bottom: 5px;
}
.blog-content .blog-wrapper .categories ul li a.active{
  background:#e5fff6;
  color: #008b5a;
  font-weight: bold;
}

/* Blog Single Page Content CSS  */

.wrapper main .content-main .pages .blog-content-single{
  padding: 30px;
}
.wrapper main .content-main .pages .blog-content-single .blog-wrapper{
  display: flex;
  align-items: flex-start;
  grid-gap: 20px;
  margin-top: 30px;
}
.wrapper main .content-main .pages .blog-content-single .blog-wrapper .blog-list{
  flex:2;
}


.blog-content-single .blog-wrapper .blog-list img.image-cover{
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.blog-content-single .blog-wrapper .blog-list h2{
  font-size: 60px;
  font-weight: 800;
  margin-top: 20px;
}
.blog-content-single .blog-wrapper .blog-list .desc p{
  font-size: 20px !important;
  text-align: justify !important;
}
.blog-content-single .blog-wrapper .blog-list .desc p a{
  font-size: 20px !important;
}
.blog-content-single .blog-wrapper .related-blogs{
  flex:1;

}
.blog-content-single .blog-wrapper .related-blogs .relate{
  padding: 20px;
  border:1px solid #ddd;
  border-radius: 10px;
}
.blog-content-single .blog-wrapper .related-blogs .otherBlogs{
  padding: 20px;
  border:1px solid #ddd;
  border-radius: 10px;
}
.blog-content-single .blog-wrapper .related-blogs ul{
  list-style: none;
  margin: 0;
  padding: 0;
}
.blog-content-single .blog-wrapper .related-blogs ul li span.cateGory{
  background: #E86203;
  padding: 2px 5px;
  color: #fff;
  font-size: 16px;
}
.blog-content-single .blog-wrapper .related-blogs ul li a{
  text-decoration: none;
  color: blue;
  font-size: 20px;
  font-style: italic;
  display: block;
  padding: 10px 15px;
  margin-bottom: 5px;
  display: flex;
  grid-gap: 10px;
}
.blog-content-single .blog-wrapper .related-blogs ul li a img{
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.wrapper main .content-main .pages .events .event-wrapper{
  display: flex;
  flex-wrap: wrap;
  grid-gap: 10px;
}

.wrapper .pages .events .event-wrapper .event{
  border:1px solid #ddd;
  border-radius: 4px;
  padding:12px;
  flex-basis: 31%;
  display: flex;
}
.wrapper .pages .events .event-wrapper .event .event-image-wrap{
  width: 100px;
}
.wrapper .pages .events .event-wrapper .event .event-image-wrap img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wrapper .pages .events .event-wrapper .event .event-info{
  padding:10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.wrapper .pages .events .event-wrapper .event .event-info span{
  display: block;
}
.wrapper .pages .events .event-wrapper .event .event-info a{
  padding:4px 8px;
  width: auto;
  background: #FF7B00;
  color: #fff;
  font-size: 16px;
  display: inline-block;
  text-decoration: none;
  margin-top: 5px;
}
#eventModal .complete-info{
  padding:7px 15px;
  background-color: #33a57d;
  text-decoration: none;
  color: #fff;
  border-radius: 3px;
}
#eventModal .complete-info.disabled{
  opacity: 0.5;
  cursor: not-allowed;
}
.pages section .title{
  text-align: center;
  font-size: 50px;
  width:50%;
  margin: 20px auto;
  border-top: 2px dotted;
  border-bottom: 2px dotted;
  padding: 10px 0;
  text-transform: uppercase;
}

.wrapper .footer {
  background-color: #33a57d;
  color: #ffffff;
  padding: 40px 0;
  font-family: "Segoe UI", sans-serif;
}
.wrapper .footer h2,
.wrapper .footer h4 {
  color: #ffffff;
  margin-bottom: 15px;
}
.wrapper .footer .footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.wrapper .footer .footer-content .footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #fff;
}
.wrapper .footer .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
}
.wrapper .footer .footer-content .footer-links ul li {
  margin-bottom: 10px;
}
.wrapper .footer .footer-content .footer-links ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.wrapper .footer .footer-content .footer-links ul li a:hover {
  color: #00b894;
}
.wrapper .footer .footer-content .footer-newsletter form {
  display: flex;
  margin-top: 10px;
}
.wrapper .footer .footer-content .footer-newsletter form input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 6px 0 0 6px;
  outline: none;
}
.wrapper .footer .footer-content .footer-newsletter form button {
  background-color: #00b894;
  color: #ffffff;
  border: none;
  padding: 10px 15px;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  transition: background-color 0.3s;
}
.wrapper .footer .footer-content .footer-newsletter form button:hover {
  background-color: #019874;
}
.wrapper .footer .footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #fff;
  padding-top: 20px;
}
.wrapper .footer .footer-bottom p {
  font-size: 0.9rem;
  color: #fff;
}
@media (max-width: 768px) {
  .wrapper .footer .footer-content {
    flex-direction: column;
  }
  .wrapper .footer .footer-content .col-md-4 {
    margin-bottom: 30px;
  }
}
