/* banner css */
.page-header{
  height: 200px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.banner-heading-text{
  color: #fff;
  text-decoration: underline;
  text-transform: uppercase;
}

.background-set-style{
  background-color: #fff;
  color: #000;
}

/* deadline section start */
.deadline-section {
  text-align: center;
  /* padding: 20px; */
}

.deadline-heading {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
  position: relative;
}

.deadline-heading::after {
  content: "";
  /* width: 80px;
  height: 2px; */
  background-color: #000;
  display: block;
  margin: 15px auto 0;
}

.deadline-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  /* gap: 20px; */
}

.deadline-card {
  /* width: 390px; */
  background-color: white;
  border-radius: 40px;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  padding: 0;
  text-align: left;
  transition: transform 0.3s ease-in-out;
  overflow: hidden;
}

.deadline-card:hover {
  transform: translateY(-10px);
}

/* Title Section */
.deadline-title h3{
  background-color: #E2F2E4;
  padding: 30px;
  color: #333;
  font-weight: bold;
  font-size: 16px;
}

/* Content Section */
.deadline-content {
  background-color: white;
  padding: 30px;
}

.deadline-content h3 {
  font-size: 14px;
  margin-bottom: 15px;
  color: #333;
}

.deadline-meta {
  font-size: 14px;
  color: #B786DD;
  margin-bottom: 15px;
}

.deadline-content p {
  font-size: 16px;
  color: #555;
}

.deadline-button-container {
  margin-top: 40px;
}

.view-all-deadline-btn {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #4D898C;
  color: #4D898C;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
}

.view-all-deadline-btn:hover {
  background-color: #4D898C;
  color: white;
}

.right-line:after {
  content:"";
  display: inline-block;
  height: 0.5em;
  vertical-align: bottom;
  width: 130px;
  /* margin-right: -100%; */
  margin-left: 10px;
  border-top: 1px solid black;
}

.left-line:before {
  content:"";
  display: inline-block;
  height: 0.5em;
  vertical-align: bottom;
  width: 130px;
  /* margin-left: -100%; */
  margin-right: 10px;
  border-top: 1px solid black;
}
/* deadline section End */

.profile-cards .profile-card {
  background-color: #ffffff;
  border-radius: 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  /* max-width: 800px; */
  width: 100%;
  display: grid;
  grid-template-columns: 120px 1fr;
  grid-template-rows: auto;
  grid-template-areas: "image content";
  gap: 0px;
  position: relative;
  align-items: center;
  margin-bottom: 40px;
}

.profile-cards .profile-image {
  grid-area: image;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: -55px;
  left: -60px;
  border: 10px solid #CAEBEB;
  display: flex;
  justify-content: center;
  align-items: center;
}
.profile-cards .profile-image img{
max-width: 100%;          
max-height: 100%;
}
.profile-cards .profile-content {
  grid-area: content;
/*            margin-top: 50px;*/
}


.profile-cards .profile-content h2 {
  color: #333;
  font-weight: 500;
  font-size: 20px;
}

.profile-cards .profile-content p {
  margin-top: 10px;
  font-size: 16px;
  line-height: 2.0;
  color: #666666;
  text-align: justify;
}
.speaker-image{
      width: 50%;
}
.event-series-section{
  background-color: #fff;
  color: #000;
}
.outlook-image{
  height: 200px;
  width: 100%;
}
.event-map-text{
  font-size: 14px;
}
.text-space{
  padding-top: 6px;
}
.event-sch-place{
  color: #fff;
}

/* added by mayuri */
.p-font h3,h4{
  text-decoration: underline;
}
.p-font .image{
  width: 450px;
}
/* Responsive code start */

/*  iPhone 5 */
@media only screen and (min-width: 320px) and (max-width  : 767px){
  .profile-cards .profile-card {
    grid-template-columns: 1fr;
    grid-template-areas: 
        "image"
        "content";
        text-align: center;
       
    }

    .profile-cards .profile-image {
        position: static;
        /* margin: 0 auto -50px; */
        margin-left: auto;
        margin-right: auto;
        border: 10px solid #CAEBEB;
        transform: none;
    }

    .profile-cards .profile-content {
        margin-top: 0;
        /* padding-top: 50px; */
    }

    .profile-cards .profile-content p {
        text-align: justify;
    }
    .profile-cards .py-5{
      padding-top: 2rem !important;
      padding-bottom: 2rem !important;
    }
    .profile-cards .px-5 {
      /* padding-right: 1.5rem !important;
      padding-left: 1.5rem !important; */
      padding-left: 0!important;
      padding-right: 0!important;
  }
  .profile-cards .mb-5{
    margin-bottom: 1rem !important;
  }
  .profile-cards .profile-content p{
    font-size: 12px;
  }
  .profile-cards .profile-content h2{
    font-size: 16px;
  }
  .p-font .image{
    width: auto;
  }
}


@media only screen and (min-width: 375px) and (max-width: 667px) and(max-height: 667px){
  .profile-cards .profile-card {
    grid-template-columns: 1fr;
    grid-template-areas: 
        "image"
        "content";
        text-align: center;
    }

    .profile-cards .profile-image {
        position: static;
        margin: 0 auto -50px;
        border: 10px solid #CAEBEB;
    }

    .profile-cards .profile-content {
        margin-top: 0;
        padding-top: 50px;
    }

    .profile-cards .profile-content p {
        text-align: justify;
    }
    .profile-cards .py-5{
      padding-top: 2rem !important;
      padding-bottom: 2rem !important;
    }
    .profile-cards .px-5 {
      padding-right: 1.5rem !important;
      padding-left: 1.5rem !important;
  }
  .profile-cards .mb-5{
    margin-bottom: 1rem !important;
  }
  .profile-cards .profile-content p{
    font-size: 12px;
  }
  .profile-cards .profile-content h2{
    font-size: 16px;
  }
}


/* iphone 12 pro */
/* @media only screen and (min-width: 390px) and (max-height: 932px) and (-webkit-min-device-pixel-ratio: 2){

  .profile-cards .profile-card {
    grid-template-columns: 1fr;
    grid-template-areas: 
        "image"
        "content";
        text-align: center;
    }

    .profile-cards .profile-image {
        position: static;
        margin: 0 auto -50px;
        border: 10px solid #CAEBEB;
    }

    .profile-cards .profile-content {
        margin-top: 0;
        padding-top: 50px;
    }

    .profile-cards .profile-content p {
        text-align: justify;
    }
    .profile-cards .py-5{
      padding-top: 2rem !important;
      padding-bottom: 2rem !important;
    }
    .profile-cards .px-5 {
      padding-right: 1.5rem !important;
      padding-left: 1.5rem !important;
  }
  .profile-cards .mb-5{
    margin-bottom: 1rem !important;
  }

  .profile-cards .profile-content p{
    font-size: 12px;
  }

  .profile-cards .profile-content h2{
    font-size: 16px;
  }
} */

@media only screen and (min-width: 320px) and (max-width: 767px) {
  .right-line:after {
    display: none;
  }
  
  .left-line:before {
    display: none;
   
  }

}

@media only screen and (min-width: 768px) and (max-width: 991px) {
.profile-cards .profile-card {
  grid-template-columns: 1fr;
  grid-template-areas: 
      "image"
      "content";
      text-align: center;
     
  }

  .profile-cards .profile-image {
      position: static;
      /* margin: 0 auto -50px; */
      margin-left: auto;
      margin-right: auto;
      border: 10px solid #CAEBEB;
      transform: none;
  }

  .profile-cards .profile-content {
      margin-top: 0;
      /* padding-top: 50px; */
  }

  .profile-cards .profile-content p {
      text-align: justify;
  }
}