@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body,
html {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  background-color: #f4f4f4;
}
h1,
h2,
h3,
h4,
h5,
h6,
a,
button,
p,
span,
div,
section {
  font-family: "Open Sans", sans-serif;
}
.overflow-hidden {
  overflow: hidden;
}
.relative {
  position: relative;
}
a:hover {
  text-decoration: none;
  color: inherit;
}

/*  */
.main_page{
  min-height: 100vh;
}

.cover_up{
  position: relative;
}
.cover_up video{
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
}
.cover_up.fullscreen{
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100%;
  position: relative;
}
.cover_up.fullscreen .cover_fullscreen{
    position: absolute;
    bottom: 0px;
    width: 100%;
    left: 0;
    padding: 30px 60px;
    background: linear-gradient(180deg, rgba(227, 237, 238, 0) 0%, rgba(0, 0, 0, 0.5) 35%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 10;
    color: #fff;
}
.cover_up.fullscreen .cover_fullscreen .name{
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
.cover_up.fullscreen .cover_fullscreen .by{
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 0px;
}
.cover_up.fullscreen .cover_fullscreen .region span{
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 10px;
  margin-top: 10px;
  color: #fff;
  background-color: #047aaa;
  padding: 2px 10px;
  border-radius: 5px;
  display: inline-block;
}
.cover_up.fullscreen .cover_fullscreen .category span{
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 0px;
  background-color: #047aaa;
  padding: 2px 10px;
  border-radius: 5px;
  display: inline-block;
}

.cover_up.fullscreen .cover_fullscreen .date{
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 20px;
}
.title_cover{
  font-size: 35px;
  color: #fff;
  font-weight: 600;
  padding: 20px 0px;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translate(0, -20%);
  left: 0;
  right: 0;
  z-index: 4;
  text-shadow: 1px 2px 5px rgb(0, 0, 0);
  text-transform: capitalize;
}
.cover_up::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0.7;
}
/* cover evenet */
.title_details_event{
  padding: 20px 0px;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translate(0, -20%);
  left: 0;
  right: 0;
  z-index: 4;
}
.title_details_event h4{
  font-size: 17px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 1px 2px 5px rgb(0, 0, 0)
}
.title_details_event h3{
  font-size: 22px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 20px;
  text-shadow: 1px 2px 5px rgb(0, 0, 0)
}
.title_details_event h1{
  font-size: 28px;
  color: #fff;
  font-weight: 600;
  text-shadow: 1px 2px 5px rgb(0, 0, 0)
}
.title_details_event .date{
  font-size: 1rem;
  font-weight: 400;
  margin: 20px 0px;
  color: #fff;
  text-shadow: 1px 2px 5px rgb(0, 0, 0)
}
.title_details_event .sahre_program{
  justify-content: center;
}

.title_details_event.training h1{
  max-width: 800px;
  margin: 0 auto;
}



.padding_fix{
  padding: 40px 0;
}
/* Title Section Global */
.title_line{
  font-size: 30px;
  color: #000;
  font-weight: 600;
  padding-bottom: 20px;
  border-bottom: 2px solid #047aaa;
}

.title_section {
  text-align: left;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.title_section .text{
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  color: #000;
  text-transform: capitalize;
}
.title_section .see_more a {
  font-size: 1.2rem;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
}
.title_section .see_more a i {
 font-size: 20px;
 vertical-align: middle;
}
.title_section .see_more a:hover {
  color: #047aaa;
}
.title_section .text::after {
  content: "";
  mask-image: url('../images/banner-line.svg');
  background: #047aaa;
  display: block;
  width: 100%;
  height: 20px;
  margin-top: 5px;
  /* mask-size: contain; */
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
  /* margin-left: auto; */
  /* margin-right: auto; */

}
/* Endd */
/* News Card */
.news_card{
  background: #fff;
  border-radius: 10px;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
  overflow: hidden;
  margin-bottom: 30px;
  transition: box-shadow 0.3s;
  display: block;
  text-decoration: none;
  color: #000;
  height: 100%;
}
.news_card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.3s;
}
.news_card:hover img {

  opacity: 0.8;
}
.news_card .news_data {
  padding: 20px 20px 0px 20px;
  min-height: 170px;

}
.news_card .news_data .section {
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #047aaa;
}
.news_card .news_data h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.news_card .news_data p {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.news_card .news_data .date {
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.news_card:hover {
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.news_card.small img {
  height: 200px;
}
/* End */

/* Publication Card */
.publication_card{
  border-radius: 10px;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
  overflow: hidden;
  margin-bottom: 30px;
  transition: box-shadow 0.3s;
  display: block;
  text-decoration: none;
  height: 100%;
  text-align: center;
}
.publication_card img{
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.3s;
  max-width: 285px;
  border-radius: 10px;
  margin: 0 auto;
}
.publication_card img:hover {
  opacity: 0.8;
}
/* End */
.sahre_program{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.sahre_program a{
  font-size: 14px;
  color: #fff;
  background-color: #333;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s;
}
.sahre_program a:hover{
  background-color: #047aaa;
}

/* Writer */
.writer_info{
  border-bottom: 1.5px solid #047aaa;
  padding-bottom: 14px;
  display: flex;
    align-items: center;
    justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.writer_info .single_writer{
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  flex: 0 0 calc(100% / 4);
}
.writer_info .single_writer .info{
  flex: 1;
  padding: 0px 10px;
}
.writer_info .single_writer .image{
  width: 90px;
  height: 90px;
  overflow: hidden;
  background-color: #000;
  border-radius: 10px;
  flex: 0 0 90px;
}
.writer_info .single_writer .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.writer_info .single_writer .info .name{
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-bottom: 0px;
  text-transform: capitalize;
  text-shadow: 0px 0px 1px rgb(0, 0, 0);
}
.writer_info .single_writer .info .position{
  font-size: 12px;
  font-weight: 400;
  color: #333;
}

/* trainng_form */
.trainng_form{
  margin-top: 80px;
}
.trainng_form form{
  background-color: #fff;
  padding: 30px 14px;
  border-radius: 5px;
}
.trainng_form form .form-group{
  margin-bottom: 25px;
}
.trainng_form form .form-group label{
  font-size: 13px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 4px;
  display: block;
}
.trainng_form form .form-group input{
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  color: #000;
  font-weight: 400;
  outline: none;
}
.trainng_form form .form-group textarea{
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  color: #000;
  font-weight: 400;
  outline: none;
}
.trainng_form form .form-group input:hover , .trainng_form form .form-group textarea:hover{
  border-color: #047aaa;
}

.trainng_form .uk-button-primary{
  background-color: #047aaa;
  color: #fff;
  padding: 5px 50px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  display: inline-block;
  margin-top: 20px;
  transition: all 0.3s;
}
.trainng_form .submit_btn{
  text-align: center;
}
.trainng_form .uk-button-primary:hover{
  opacity: 0.8;
}
.pagination{
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}
.pagination li{
    display: inline-block;
}
.pagination li button{
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border: 1px solid #ccc;
    cursor: pointer;
    transition: all 0.3s;
}
.pagination li button:hover{
    background-color: #047aaa;
    color: #fff;
    border: 1px solid #047aaa;
}
.pagination li:first-child , .pagination li:last-child{
    font-size: 24px;
}
.page-item.disabled{
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border: 1px solid #ccc;
    cursor: not-allowed;
    opacity: 0.5;
}
.pagination li.active{
    background-color: #047aaa;
    color: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border: 1px solid #047aaa;
    cursor: pointer;
}

.play_icon_large{
    font-size: 30px;
    color: white;
    cursor: pointer;
    background-color: red;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}
.play_icon_small{
    font-size: 10px;
    color: white;
    cursor: pointer;
    background-color: red;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

.news_card .news_data h3 , .news_card .news_data .section{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}
.writer_info .add_to_cart{
    color: #fff;
    background-color: #333;
    display: inline-flex
;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s;
    padding: 10px 30px;
    gap: 10px;
    text-transform: capitalize;
    font-size: 14px;
    margin-top: 14px;
}
.writer_info .add_to_cart:hover{
    background-color: #047aaa;
}
