/* 112  */

.headerText {
  font-size: 1.24rem;
  line-height: 18px;
  text-shadow: 0px 0px 10px black;
}

/* 113 */

.headerText2 {
  font-size: 5rem;
  text-shadow: 0px 0px 30px black;
}

@media only screen and (max-width: 600px) {
  .headerText2 {
    font-size: 3rem;
    text-shadow: 0px 0px 30px black;
  }
}

/* 211, 223, 235  */

.aboutIcons {
  background: #044F89;
}

.icon-blue {
  color: #044F89;
}

/* Blog */

.blogcards {
  margin-bottom: 20px;
  /* margin-top: 15px */
}

.blog-item .blog-detail {
  padding: 15px;
  width: 100%;
  height: 118px;
}

#mapimage {
  width: 100% !important;
  height: 72% !important;
  margin-top: 14% !important;
}

#contactForm {
  width: 100%
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  color: white;
  box-shadow: 2px 2px 4px #000000;
  z-index: 1;
  margin-bottom: 3%;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cme-activities-div {
  /* padding-right: 15px;
  padding-left: 15px; */
  margin: 0;
  /* column-gap: 15px; */
  row-gap: 15px;
}

.cme-activities {
  background-color: #ffffff;
  transition: all .4s ease;
}

.cme-activities-div .cme-activities-roundtables {
  /* border-bottom: 6px solid #C3030A; */
  background: rgba(255, 255, 255, 1);
  height: 100%;
  box-sizing: border-box;
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: center;
  padding: 0 35px;
}

.cme-activities-div .cme-activities-title {
  font-size: 26px;
  font-weight: 800;
  font-family: 'Raleway', sans-serif;
  color: #C3030A;
  text-transform: uppercase;
  text-decoration: none;
  background-color: transparent;
  text-shadow: none;
  border-width: 0px;
  border-color: rgb(0, 0, 0);
  border-style: none;
  margin-bottom: 10px;
  line-height: 32px;
}

.cme-activities-div .cme-activities-roundtables p {
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 0;
}

.cme-activities-div .cme-activities-roundtables a {
  margin-top: 25px;
  background: rgb(82, 88, 102);
  border-radius: 5px;
  transition: all .4s ease;
  width: 150px;
  padding: 8px 30px;
  border: none;
}

.cme-activities .overlay {
  display: none;
}

.cme-activities:hover .overlay {
  background-color: rgba(0, 0, 0, .7);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  font-weight: 600;
}

.cme-activities .overlay svg {
  fill: #ffffff;
  height: 20px;
}

@media only screen and (max-width: 767px) {
  .cme-activities-div .cme-activities-roundtables {
    height: auto;
    padding: 40px 35px;
  }
}

#home {
  background-image: url("/static/img/slides/Slider_Image_1b.jpg");
  animation: slides 35s infinite;
  -webkit-animation: slides 35s infinite;

  /* background-size: cover;
  background-position: center center;     */
  width: 100%;
  height: 100%;
}

@keyframes slides {
  0% {
      background-image: url("/static/img/slides/Slider_Image_1b.jpg");
  }
  23% {
      background-image: url("/static/img/slides/Slider_Image_2b.jpg");
  }
  53% {
    background-image: url("/static/img/slides/Slider_Image_3b.jpg");
  }
  73% {
    background-image: url("/static/img/slides/Slider_Image_4b.jpg");
  }
  94% {
    background-image: url("/static/img/slides/Slider_Image_5b.jpg");
  }
  /* Add more keyframes for additional images */
}

@media only screen and (max-width: 600px) {
  #home {
    height: 500px;
    /* background-size:contain */
    /* background-size: auto 500px; */
  } 

  #home .min-h-100vh {
    min-height: 500px;
    padding-top: 110px;
  }

  #home .min-h-100vh .p-100px-tb {
    padding-top: 0;
    padding-bottom: 0;
  }

  #home.bg-fixed {
    background-attachment: unset !important;
  }
}
