/* =========== Banner style css start ============ */
.banner {
  position: relative;
  background: url('../images/banner.png') no-repeat center center/cover;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 50px;
  overflow: hidden;
  z-index: 10;
}

.banner::after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  z-index: -10;
}

.banner-content {
  text-align: start;
  animation: fadeIn 1.5s ease-in-out;
}

.banner-content h1 {
  font-size: 52px;
}

.banner-content p {
  font-size: 20px;
}

.bottom-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: url('your-shape-path.svg') no-repeat center bottom/cover;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(60px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========== Banner style css start ============ */




/* ============ About Us  Css Start ============= */
.about_us_sec {
  background: #f8f8f8;
}

.about_us_contents {}

.about_us_contents span img {
  width: 80px;
}

.about_us_contents h1 {
  margin: 1rem 0;
  font-size: 42px;
}

.about_us_contents h1 span {
  color: #f1c100;
  font-weight: 700;
}

.about_us_contents h4 {
  margin-bottom: 1rem;
}

.about_us_contents p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.about_us_contents_details p {
  -webkit-line-clamp: 200;
}

.about_img img{
  border-radius: 10px;
}

/* ============ About Us  Css Start ============= */


/* ============= Contact Form Css Style Start =============== */
.contact_static_bg {
  padding-top: 40px;
  background: url(../images/contact_bg.avif) no-repeat center center;
  background-size: cover;
  height: 330px;
}

.contact_page_sec {
  margin-top: -250px;
}

.contactForm {
  background: white;
  padding: 1.5rem;
  border-radius: 2px;
  border: 1px solid #eee;
}

.contactForm h2 {
  margin-bottom: 15px;
  font-size: 26px;
}

.contactForm h2 span {
  font-weight: 700;
  color: #f1c100;
}

.form-group {
  position: relative;
}

.input_style {
  width: 100%;
  padding: 6px 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
  font-size: 16px;
}

textarea {
  resize: none;
  height: 80px;
}

.label_style {
  padding: 5px 0;
  color: #888;
  transition: 0.3s;
  pointer-events: none;
  background: #fff;
}

.input_style:focus {
  padding: 6px 1rem;
  color: #218838;
  background: #fff;
}

.captcha {
  color: #28a745;
  font-weight: 600;
}

.form_submit_btn {
  margin-top: 10px;
  background: #28a745;
  color: white;
  border: none;
  padding: 10px;
  width: 100%;
  cursor: pointer;
  font-size: 16px;
  border-radius: 4px;
}

.form_submit_btn:hover {
  background: #218838;
}

.map-container {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
  width: 300px;
  height: 200px;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact_item_card {
  height: 140px;
  margin-top: 1.5rem;
  background-color: rgba(255, 255, 255, .6);
  padding: 20px;
  backdrop-filter: blur(5px);
  border-radius: 10px;
}

.icon_wrapper_contact {
  display: flex;
  align-items: center;
  grid-gap: 1rem;
}

.icon_wrapper_contact h5 {
  font-size: 1rem;
  display: flex;
  flex-direction: column;
}

.icon_wrapper_contact h5 em {
  margin-bottom: 2px;
  font-size: 12px;
  color: #888;
}

.icon_wrapper_contact h5 a {
  color: #252525;
}

.contact_item_card span {
  margin-bottom: .6rem;
  display: inline-block;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  background: #f1c100;
  font-size: 14px;
  color: #fff;
}

/* ============= Contact Form Css Style Start =============== */





/* =============== Breadcrumb Style Css Start ============ */
.bc {
  padding: 30px 0;
}

.breadcrumb {
  display: flex;
  border-radius: 10px;
  text-align: center;
  top: 50%;
  width: 100%;
  height: 40px;
  z-index: 1;
}


.breadcrumb__item {
  height: 100%;
  background-color: white;
  color: #252525;
  border-radius: 7px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  transform: skew(-21deg);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin: 5px;
  padding: 0 40px;
  cursor: pointer;
}


.breadcrumb__item:hover {
  background: #f1c100;
  color: #FFF;
}


.breadcrumb__inner {
  display: flex;
  flex-direction: column;
  margin: auto;
  z-index: 2;
  transform: skew(21deg);
}

.breadcrumb__title {
  font-size: 16px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}


@media all and (max-width: 1000px) {
  .breadcrumb {
    height: 35px;
  }

  .breadcrumb__title {
    font-size: 11px;
  }

  .breadcrumb__item {
    padding: 0 30px;
  }
}

@media all and (max-width: 710px) {
  .breadcrumb {
    height: 30px;
  }

  .breadcrumb__item {
    padding: 0 20px;
  }

}

/* =============== Breadcrumb Style Css Start ============ */
.list-boxs .card {
  margin-top: 1.5rem;
  text-align: center;
  position: relative;
  border-bottom: 1px solid #218838;
  border-radius: 0;
  height: 500px;
  overflow-y: scroll;

}

.list-boxs .card .head,
.list-boxs .card .body {
  background-color: #FFF;
  padding: 1.5rem 1rem;

}

.list-boxs .card .head {
  color: #252525;
  font-size: 1.5rem;
  text-transform: uppercase;
  transform: translateY(30px);
  transition: transform .3s linear;
  border-bottom: 1px solid #f1c100;
}

.list-boxs .card:hover .head {
  transform: translateY(0);
  box-shadow: 0 -5px 10px rgba(0, 0, 0, .1);
}

.list-boxs .card .ticket {
  color: #ff0000;
  width: 80%;
  margin: 0 auto;
  padding: 1rem;
  font-size: 1.4rem;
  font-weight: bold;
  height: 60px;
  box-shadow: inset 0px 6px 6px -5px rgba(0, 0, 0, .25),
    inset 0px -6px 6px -5px rgba(0, 0, 0, .25);

}

.list-boxs .card .body {
  transform: translateY(-30px);
  transition: transform .3s linear;

}

.list-boxs .card:hover .body {
  transform: translateY(0);
  box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
}

.list-boxs .card p {
  font-size: .95rem;
  color: #333;
  text-align: justify;
}


.problem_solutions {
  padding: 60px 0;
  background: #f8f8f8;
  text-align: center;
}

.downloadPdf {
  display: inline-block;
  background: #f1c100;
  padding: 10px 1rem;
  color: #fff !important;
  font-weight: 600;
}




.news-card {
  margin: 1rem 0;
  border: 0px solid aqua;
  position: relative;
  height: 12rem;
  overflow: hidden;
  border-radius: 0.5rem;
  flex: 1;
  min-width: 290px;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
}

.news-card {
  height: 20rem
}

.news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0) linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.7) 80%);
  ;
  z-index: 0;
}

.news-card__card-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  /*     background: rgba(255,0,0,.5); */
}

.news-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: relative;
  z-index: -1;
}

.news-card__text-wrapper {
  position: absolute;
  bottom: 0rem;
  padding: 1rem;
  color: white;
  /*     background-color: rgba(0, 0, 0, 0.4); */
  transition: background-color 1.5s ease;
}

.news-card__title {
  font-size: 20px;
  transition: color 1s ease;
  margin-bottom: .5rem;
}

.news-card__post-date {
  font-size: .7rem;
  margin-bottom: .5rem;
  color: #CCC;
}

.news-card__details-wrapper {
  max-height: 0;
  opacity: 0;
  transition: max-height 1.5s ease, opacity 1s ease;
}

.news-card:hover .news-card__details-wrapper {
  max-height: 20rem;
  opacity: 1;
}

.news-card:hover .news-card__text-wrapper {
  background-color: rgba(0, 0, 0, 0.6);
}

.news-card:hover .news-card__title {
  color: yellow;
}

.news-card:hover .news-card__image {
  transform: scale(1.2);
  z-index: -1;
}

.news-card__excerpt {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.news-card__read-more {
  background: black;
  color: #fff !important;
  display: block;
  padding: 0.4rem 0.6rem;
  border-radius: 0.3rem;
  margin-top: 1rem;
  border: 1px solid #444;
  font-size: 0.8rem;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  text-decoration: none;
  width: 7rem;
  margin-left: auto;
  position: relative;
  z-index: 5;
}

.news-card__read-more i {
  position: relative;
  left: 0.2rem;
  color: #888;
  transition: left 0.5s ease, color 0.6s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.news-card__read-more:hover i {
  left: 0.5rem;
  color: #f1c100;
}
.news_details_content_left{
  padding: 1.5rem;
  border: 1px solid #eee;
}
.news_des p{
  margin-top: 1rem 0 !important;
}
.news_details_content_left h1,
.news_details_content_left h2,
.news_details_content_left h3,
.news_details_content_left h4{
  font-size: 32px;
}
.post_author h6{
  font-size: 12px;
  margin-bottom: 0;
}
.post_author h6 span{
  font-size: 12px;
}
.news_details_date_time time{
  font-size: 12px;
}
.news_details_date_time time span{
  font-size: 12px;
}
.news_details_sidebar_right{
  top: 1rem;
  position: sticky;
}
.news_details_sidebar_right h2{
  font-size: 32px;
  margin-bottom: 1rem;
}
.news_details_latest_news_wrap{
  background: #fff;
  margin-bottom: 1rem;
}
.news_details_latest_news_wrap .left_item{
  width: 30%;
  height: 110px;
}
.news_details_latest_news_wrap .right_item{
  width: 70%;
}
.news_details_latest_news_wrap .left_item img{
  width: 100%;
  height: 100%;
  border-radius: 2px;
}
.news_details_latest_news_wrap .right_item h1{
  margin-bottom: 0;
  font-size: 18px;
  margin-bottom: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.news_details_latest_news_wrap .right_item p{
  margin-bottom: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.news_details_latest_news_wrap .right_item a{
  padding: 2px 1rem;
  margin-top: .3rem;
  display: inline-block;
  background: #eee;
  color: #252525;
}

/* =========== Terms Conditions Style Css ============= */
.tc_wrapper{
  padding: 1.5rem;
  border: 1px solid #eee;
}
.tc_contents{}
.tc_contents h1{
  margin-bottom: 1.5rem;
  font-size: 26px;
}
.tc_contents p{
  color: #444;
}
.tc_list{
  margin-left: 1rem;
  list-style: lower-alpha;
}
.tc_list li{
  margin: 10px 0;
  font-size: 18px;
}
.tc_list h5{
  margin-left:1rem;
  margin-bottom: 0;
  position: relative;
}
.tc_list h5::before {
  position: absolute;
  content: '';
  width: 25px;
  height: 2px;
  background: #252525;
  top: 15px;
  left: -32px;
}
/* =========== Terms Conditions Style Css ============= */