.section_heading {
  align-items: center;
  display: flex;
  margin-bottom: 20px;
  justify-content: space-between;
}
.section_heading .title {
  height: 55px;
}
.section_heading .title p {
  display: inline-block;
  top: 27px;
  color: rgb(0, 0, 0);
  right: 0px;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  text-align: right;
  padding: 0 0 0 14px;
  border-bottom: 3px rgb(245, 149, 47) solid;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
}
.section_heading .title p a {
  height: -moz-fit-content;
  height: fit-content;
  padding: 0;
  margin: 0;
}
.section_heading .button-heading {
  width: -moz-fit-content;
  width: fit-content;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}
.section_heading .button-heading a, .section_heading .button-heading button {
  font-size: var(--font-size-x1);
  /*width: auto;*/
  background-color: white;
  border: 1px solid #C4C4C4;
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 30px;
  text-decoration: none;
  color: #979090;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: start;
  padding: 5px 15px;
}
.section_heading .button-heading a:hover, .section_heading .button-heading button:hover {
  color: #3a3a3a;
  border: 1px solid #454242;
}
.section_heading .button-heading a span, .section_heading .button-heading button span {
  text-align: center;
  min-width: 100px;
  display: inline-block;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
}
.section_heading .button-heading a span svg, .section_heading .button-heading button span svg {
  width: var(--font-size-x1);
  margin-left: 5px;
  margin-right: 5px;
}

.active-button-type {
  background-color: #009DAF !important;
  color: white !important;
  border: 3px solid #009DAF !important;
}

.breadcrumbs {
  padding-top: 10px;
  padding-bottom: 10px;
}
.breadcrumbs > div {
  display: flex;
}
.breadcrumbs > div i {
  color: #979090;
  padding: 12px 0 12px;
  margin-top: auto;
  margin-bottom: auto;
  height: -moz-fit-content;
  height: fit-content;
}
.breadcrumbs > div p {
  font-size: 18px;
  color: #979090;
  width: -moz-fit-content;
  width: fit-content;
  padding: 13px;
  margin: 0;
  height: -moz-fit-content;
  height: fit-content;
}
.breadcrumbs > div p a {
  text-decoration: none;
  color: #707070;
}
.breadcrumbs > div p a:hover {
  color: #009DAF;
}

.reveal_active {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: all 2s ease;
  display: none;
}

.reveal.reveal_active {
  transform: translateY(0px);
  opacity: 1;
}

img.lazy-image {
  filter: blur(10px); /* Set blur to 0 for full resolution */
  transition: filter 1s; /* Add transition for transform property */
}

img.lazy-image.loaded {
  filter: blur(0); /* Set blur to 0 for full resolution */
}

div.lazy-background-image {
  filter: blur(10px); /* Set initial blur value */
  transition: filter 1s; /* Add transition for the filter property */
}

div.lazy-background-image.loaded {
  filter: blur(0); /* Set blur to 0 for full resolution */
}

@media (max-width: 991px) {
  .section_heading {
    display: flex;
    margin-bottom: 20px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .section_heading .title {
    margin-bottom: 15px;
    text-align: center;
  }
  .section_heading .title p {
    width: inherit;
    font-size: 20px;
    padding-left: 0;
  }
  .section_heading .button-heading {
    width: -moz-fit-content;
    width: fit-content;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
  }
  .section_heading .button-heading a span, .section_heading .button-heading button span {
    text-align: center;
    min-width: 50px;
  }
  .heading_response {
    align-items: center !important;
    display: flex;
    margin-bottom: 20px;
    justify-content: space-between !important;
    flex-direction: row !important;
  }
}
.section-gallery {
  height: 500px;
  margin-top: 90px;
}
.section-gallery .gallery {
  display: grid;
  grid-template-columns: repeat(4, 4fr);
  grid-template-rows: repeat(2, 4fr);
  grid-gap: 20px;
  background-color: #fff;
  color: #444;
  height: 400px;
}
.section-gallery .gallery div {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
}
.section-gallery .gallery div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
}
.section-gallery .gallery div img:hover {
  transform: scale(1.1);
  /* Apply opacity or box-shadow here */
  opacity: 0.9;
}
.section-gallery .gallery div div {
  width: 100%;
  height: 100%;
  display: flex;
  background-color: #f1f1f1;
  align-items: center;
  justify-content: center;
}
.section-gallery .gallery div div span {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 16px;
  color: #555555;
}
.section-gallery .gallery > :nth-child(1) {
  grid-column: 1/2;
  grid-row: 1/2;
}
.section-gallery .gallery > :nth-child(2) {
  grid-column: 1/2;
  grid-row: 2/3;
}
.section-gallery .gallery > :nth-child(3) {
  grid-column: 2/3;
  grid-row: 1/3;
}
.section-gallery .gallery > :nth-child(4) {
  grid-column: 3/5;
  grid-row: 1/3;
}

@media (max-width: 900px) {
  .section-gallery {
    margin-top: 50px;
  }
  .section-gallery .gallery {
    height: 350px;
    grid-template-columns: repeat(3, 4fr);
    grid-template-rows: repeat(3, 4fr);
  }
  .section-gallery .gallery div {
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }
  .section-gallery .gallery div img {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .section-gallery .gallery > :nth-child(1) {
    grid-column: 1/2;
    grid-row: 3/4;
  }
  .section-gallery .gallery > :nth-child(2) {
    grid-column: 2/3;
    grid-row: 3/4;
  }
  .section-gallery .gallery > :nth-child(3) {
    grid-column: 3/4;
    grid-row: 3/4;
  }
  .section-gallery .gallery > :nth-child(4) {
    grid-column: 1/4;
    grid-row: 1/3;
  }
}
.news-slider {
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 50px;
}
.news-slider .swiper-news {
  width: 100%;
  height: 485px;
  border-radius: 40px;
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.news-slider .swiper-news .swiper-wrapper {
  height: inherit;
}
.news-slider .swiper-news .swiper-wrapper .swiper-slide {
  height: 485px;
  border-radius: inherit;
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.news-slider .swiper-news .swiper-wrapper .swiper-slide a, .news-slider .swiper-news .swiper-wrapper .swiper-slide p {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.news-slider .swiper-news .swiper-wrapper .swiper-slide .img {
  height: 100%;
  width: 100%;
  border-radius: inherit;
  position: relative;
  display: inline-block;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 0;
}
.news-slider .swiper-news .swiper-wrapper .swiper-slide .img > div {
  box-shadow: inset -8vh -63vh 1000px -40vh rgb(0, 0, 0);
}
.news-slider .swiper-news .swiper-wrapper .swiper-slide .img a {
  color: #f9f9f9;
  position: absolute;
  top: 380px;
  right: 15%;
  width: 70%;
  text-decoration: none;
}
.news-slider .swiper-news .swiper-wrapper .swiper-slide .img a:hover {
  color: #707070;
}
.news-slider .swiper-news .swiper-wrapper .swiper-slide .img p {
  width: 180px;
  height: 30px;
  z-index: 12;
  position: absolute;
  top: 375px;
  right: 10px;
  color: #f9f9f9;
}
.news-slider .swiper-news .swiper-wrapper .swiper-slide .img p i {
  color: #009DAF;
}
.news-slider .swiper-news .swiper-wrapper .swiper-slide-active a, .news-slider .swiper-news .swiper-wrapper .swiper-slide-active p {
  opacity: 1;
}
.news-slider .swiper-news .swiper-news-button-next {
  display: flex;
  position: absolute;
  top: 390px;
  right: 94%;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 100%;
  opacity: 1;
  font-size: 22px;
  color: #f9f9f9;
  z-index: 12;
  background-color: initial;
}
.news-slider .swiper-news .swiper-news-button-prev {
  display: flex;
  position: absolute;
  top: 390px;
  right: 86%;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 100%;
  opacity: 1;
  font-size: 22px;
  z-index: 12;
}
.news-slider .swiper-news .swiper-pagination {
  display: flex;
  position: absolute;
  top: 392px;
  right: 89.5%;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 100%;
  opacity: 1;
  font-size: 15px;
  color: #f9f9f9;
}

@media (max-width: 767px) {
  .news-slider .swiper-news {
    height: 350px;
    border-radius: 30px;
  }
  @keyframes fadeOut {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  .news-slider .swiper-news .swiper-wrapper {
    height: inherit;
  }
  .news-slider .swiper-news .swiper-wrapper .swiper-slide {
    height: 350px;
  }
  .news-slider .swiper-news .swiper-wrapper .swiper-slide a, .news-slider .swiper-news .swiper-wrapper .swiper-slide p {
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  .news-slider .swiper-news .swiper-wrapper .swiper-slide .img a {
    top: 260px;
    font-size: 16px;
  }
  .news-slider .swiper-news .swiper-wrapper .swiper-slide .img p {
    display: none;
  }
  .news-slider .swiper-news .swiper-wrapper .swiper-slide-active a, .news-slider .swiper-news .swiper-wrapper .swiper-slide-active p {
    opacity: 1;
  }
  .news-slider .swiper-news .swiper-news-button-next {
    display: none;
  }
  .news-slider .swiper-news .swiper-news-button-prev {
    display: none;
  }
  .news-slider .swiper-news .swiper-pagination {
    display: none;
  }
}
.section-live {
  margin-top: 70px;
}
.section-live .title-live-section {
  margin-bottom: 30px;
}
.section-live .title-live-section p {
  height: 100%;
  font-size: var(--font-size-x4);
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  align-items: end;
  justify-content: start;
}
.section-live .title-live-section p i {
  color: red;
  padding: 10px;
  font-size: 20px;
}
.section-live .title-live-section .icon-liv {
  display: flex;
  align-items: flex-start;
  justify-content: end;
}
.section-live .title-live-section .icon-liv i {
  color: red;
  font-size: 40px;
  margin-top: auto;
  margin-bottom: auto;
}
.section-live .container-no-live div {
  height: 600px;
  width: 100%;
  display: flex;
  align-items: center;
  border-radius: 20px;
  flex-direction: column;
  background-size: cover;
  justify-content: center;
  background-image: linear-gradient(90deg, rgba(44, 71, 89, 0.2) 0%, rgba(44, 71, 89, 0.2) 100%), url("https://imamhussain.org/filestorage/images/5f5df8b542ec4.jpg");
  opacity: 80%;
  background-position: center;
}
.section-live .container-no-live div svg {
  width: 150px;
  fill: rgb(255, 253, 253);
}
.section-live .container-no-live div p {
  font-size: var(--font-size-x1);
  color: #eeeeee;
}
.section-live #player1 {
  height: 600px;
  border-radius: 20px;
}
.section-live #player1 iframe {
  width: 100%;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .section-live {
    margin-top: 20px;
  }
  .section-live .title-live-section .icon-liv i {
    font-size: 40px;
  }
  .section-live .title-live-section p i {
    font-size: 15px;
  }
  .section-live .container-no-live div {
    height: 270px;
  }
  .section-live .container-no-live div svg {
    width: 100px;
    fill: rgb(255, 253, 253);
  }
  .section-live .container-no-live div p {
    font-size: var(--font-size-x1);
    color: #eeeeee;
  }
  .section-live #player1 {
    height: 30vh;
  }
}
.section_media {
  margin-top: 130px;
  padding: 40px 0;
  background-color: #EEEEEE;
  min-height: 605px;
}
.section_media .section-heading {
  margin-bottom: 40px;
}
.section_media .viduos {
  margin-top: 65px;
  margin-bottom: 45px;
  padding: 10px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 300px;
  grid-gap: 30px;
}
.section_media .viduos .video {
  cursor: pointer;
  margin: auto;
  height: 100%;
  width: 100%;
}
.section_media .viduos .video .plyri {
  width: 100%;
}
.section_media .viduos .video .plyri .btnu {
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.25);
  background-color: white;
  border-radius: 20px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
.section_media .viduos .video .plyri .btnu:hover {
  transform: scale(1.05);
}
.section_media .viduos .video .plyri .btnu img {
  width: 100%;
  max-width: 618px;
  height: 230px;
  border-radius: 15px 15px 0 0;
}
.section_media .viduos .video .plyri .btnu .title {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 120px;
  padding: 15px;
}
.section_media .viduos .video .plyri .btnu .title p {
  color: black;
  font-size: 14px;
  margin-top: 10px;
  padding: 0;
  font-weight: bold;
}
.section_media .viduos .video .plyri .btnu .title span {
  font-size: 15px;
  margin-top: 10px;
}
.section_media .viduos .video .plyri .btnu .title span i {
  padding: 0 0 0 5px !important;
  margin: 0;
}
.section_media .audio {
  width: 100%;
  height: 450PX;
  background-color: #ffffff;
  border-radius: 20px;
  display: grid;
  grid-template-columns: repeat(2, 4fr);
  grid-template-rows: repeat(1, 1fr);
  grid-gap: 20px;
  padding: 20px;
}
.section_media .audio .box_player {
  display: grid;
  grid-template-columns: repeat(1, 4fr);
  grid-template-rows: 85% 10%;
  grid-gap: 20px;
}
.section_media .audio .box_player .box_img {
  background-color: rgba(232, 137, 14, 0.81);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}
.section_media .audio .box_player .box_img span {
  background-color: #f1bf71;
  padding: 10px 15px;
  border-radius: 20px;
  font-size: 13px;
  color: #ffffff;
}
.section_media .audio .box_player .box_img p {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: bold;
  color: #ffffff;
}
.section_media .audio .box_player .box_img img {
  width: 150px;
  height: 150px;
  border-radius: inherit;
}
.section_media .audio .box_player .player {
  height: 100%;
  background-color: #00cf7d;
}
.section_media .audio .list_audio {
  overflow-y: scroll;
}
.section_media .audio .list_audio .saudio {
  background-color: #e5e5e5;
  display: flex;
  justify-content: space-between;
  height: -moz-fit-content;
  height: fit-content;
  width: 98%;
  color: #707070;
  border-radius: 50px;
  padding: 0 15px;
  border: rgba(204, 204, 204, 0.75) 1px solid;
  margin-bottom: 15px;
}
.section_media .audio .list_audio .saudio p {
  margin: auto 0;
  height: -moz-fit-content;
  height: fit-content;
}
.section_media .audio .list_audio .saudio span {
  font-size: 50px;
  height: -moz-fit-content;
  height: fit-content;
}
.section_media .audio .list_audio .saudio span i {
  height: -moz-fit-content;
  height: fit-content;
}
.section_media .more {
  width: -moz-fit-content;
  width: fit-content;
  height: 40px;
  margin: 10px auto;
  padding: 20px 0;
}
.section_media .more > a {
  font-size: var(--font-size-x1);
  background-color: white;
  border: 1px solid #C4C4C4;
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 30px;
  text-decoration: none;
  color: #979090;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: start;
  padding: 5px 15px;
}
.section_media .more > a:hover {
  color: #3a3a3a;
  border: 1px solid #454242;
}
.section_media .more > a span {
  text-align: center;
  min-width: 100px;
  display: inline-block;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
}
.section_media .more > a span i {
  font-size: var(--font-size-x1);
  margin-left: 5px;
  margin-right: 5px;
}

.play i {
  color: #009DAF !important;
}

@media screen and (max-width: 900px) {
  .section_media {
    margin-top: 130px;
    padding: 0 0 20px;
    background-color: #EEEEEE;
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
  .section_media .section-heading {
    margin-bottom: 20px;
  }
  .section_media .viduos {
    margin-top: 30px;
    margin-bottom: 0;
    padding: 10px 0;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: repeat(3, 1fr);
    grid-gap: 30px;
  }
  .section_media .viduos .video {
    cursor: pointer;
    margin: auto;
    height: 100%;
    width: 100%;
  }
  .section_media .viduos .video .plyri {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
  }
  .section_media .viduos .video .plyri .btnu {
    box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.25);
    background-color: white;
    border-radius: 20px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
  }
  .section_media .viduos .video .plyri .btnu:hover {
    transform: scale(1.05);
  }
  .section_media .viduos .video .plyri .btnu img {
    width: 100%;
    border-radius: 15px 15px 0 0;
  }
  .section_media .viduos .video .plyri .btnu .title {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
  .section_media .viduos .video .plyri .btnu .title p {
    color: black;
    font-size: 14px;
    margin-top: 10px;
    padding: 0;
    font-weight: bold;
  }
  .section_media .viduos .video .plyri .btnu .title span {
    font-size: 15px;
    margin-top: 10px;
  }
  .section_media .viduos .video .plyri .btnu .title span i {
    padding: 0 0 0 5px !important;
    margin: 0;
  }
  .section_media .audio {
    width: 100%;
    height: 450PX;
    background-color: #ffffff;
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(2, 4fr);
    grid-template-rows: repeat(1, 1fr);
    grid-gap: 20px;
    padding: 20px;
  }
  .section_media .audio .box_player {
    display: grid;
    grid-template-columns: repeat(1, 4fr);
    grid-template-rows: 85% 10%;
    grid-gap: 20px;
  }
  .section_media .audio .box_player .box_img {
    background-color: rgba(232, 137, 14, 0.81);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
  }
  .section_media .audio .box_player .box_img span {
    background-color: #f1bf71;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 13px;
    color: #ffffff;
  }
  .section_media .audio .box_player .box_img p {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: bold;
    color: #ffffff;
  }
  .section_media .audio .box_player .box_img img {
    width: 150px;
    height: 150px;
    border-radius: inherit;
  }
  .section_media .audio .box_player .player {
    height: 100%;
    background-color: #00cf7d;
  }
  .section_media .audio .list_audio {
    overflow-y: scroll;
  }
  .section_media .audio .list_audio .saudio {
    background-color: #e5e5e5;
    display: flex;
    justify-content: space-between;
    height: -moz-fit-content;
    height: fit-content;
    width: 98%;
    color: #707070;
    border-radius: 50px;
    padding: 0 15px;
    border: rgba(204, 204, 204, 0.75) 1px solid;
    margin-bottom: 15px;
  }
  .section_media .audio .list_audio .saudio p {
    margin: auto 0;
    height: -moz-fit-content;
    height: fit-content;
  }
  .section_media .audio .list_audio .saudio span {
    font-size: 50px;
    height: -moz-fit-content;
    height: fit-content;
  }
  .section_media .audio .list_audio .saudio span i {
    height: -moz-fit-content;
    height: fit-content;
  }
  .section_media .more {
    width: -moz-fit-content;
    width: fit-content;
    height: 40px;
    margin: 10px auto;
    padding: 20px 0;
  }
  .section_media .more > a {
    font-size: var(--font-size-x1);
    background-color: white;
    border: 1px solid #C4C4C4;
    height: -moz-fit-content;
    height: fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 30px;
    text-decoration: none;
    color: #979090;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: start;
    padding: 5px 15px;
  }
  .section_media .more > a:hover {
    color: #3a3a3a;
    border: 1px solid #454242;
  }
  .section_media .more > a span {
    text-align: center;
    min-width: 100px;
    display: inline-block;
    white-space: nowrap;
    width: -moz-fit-content;
    width: fit-content;
  }
  .section_media .more > a span i {
    font-size: var(--font-size-x1);
    margin-left: 5px;
    margin-right: 5px;
  }
  .play i {
    color: #009DAF !important;
  }
}
.publications_section {
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 180px;
  margin-top: 100px;
  width: 100%;
}
.publications_section .publications {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(4, 4fr);
  grid-template-rows: repeat(1, 4fr);
  grid-gap: 60px;
  background-color: #fff;
  color: #444;
  height: 350px;
  width: 100%;
}
.publications_section .publications .book {
  grid-column: 1/2;
  grid-row: 1/2;
  text-align: center;
  height: inherit;
  width: inherit;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.publications_section .publications .book .box-img-publications {
  border-radius: 20px;
}
.publications_section .publications .book .box-img-publications img {
  height: 290px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.publications_section .publications .book a {
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  width: 100%;
  padding: 10px;
  border-radius: 20px;
  margin-top: 20px;
  margin-bottom: 0;
  color: #eeeeee;
  background-color: rgba(251, 157, 18, 0.82);
}
.publications_section .publications .description {
  grid-column: 2/5;
  grid-row: 1/2;
  height: 100%;
  border-radius: 20px;
  background-color: #009DAF;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
.publications_section .publications .description .prev, .publications_section .publications .description .next {
  font-size: 22px;
  border: 0;
  background-color: #009DAF;
  border-radius: 20px;
  padding: 50px;
}
.publications_section .publications .description .contents {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #eeeeee;
  font-size: 20px;
}

@media (max-width: 767px) {
  .publications_section {
    margin-top: 50px;
    margin-bottom: 100px;
    height: 463px;
  }
  .publications_section .publications {
    margin-top: 20px;
    display: inline-block;
    background-color: #fff;
    color: #444;
    height: -moz-fit-content;
    height: fit-content;
  }
  .publications_section .publications .book {
    text-align: center;
    height: 60px;
  }
  .publications_section .publications .book .box-img-publications {
    top: 0;
    margin: auto;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    border-radius: 20px;
    border: 3px Silver solid;
  }
  .publications_section .publications .book .box-img-publications img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 144px;
    border-radius: 20px;
  }
  .publications_section .publications .book a {
    text-decoration: none;
    display: inline-block;
    width: 100%;
    padding: 10px;
    border-radius: 20px;
    margin-top: 20px;
    margin-bottom: 0;
    color: #eeeeee;
    background-color: rgba(251, 157, 18, 0.82);
    position: relative;
    top: 140%;
  }
  .publications_section .publications .description {
    height: 170px;
    border-radius: 20px;
    background-color: #009DAF;
  }
  .publications_section .publications .description .prev, .publications_section .publications .description .next {
    font-size: 22px;
    border: 0;
    background-color: #009DAF;
    border-radius: 20px;
    padding: 5px;
    position: relative;
    top: 20px;
    left: 40px;
    height: -moz-fit-content;
    height: fit-content;
  }
  .publications_section .publications .description .prev {
    left: -40px;
  }
  .publications_section .publications .description .contents {
    display: flex;
    align-items: end;
    justify-content: center;
    text-align: center;
    color: #eeeeee;
    font-size: 15px;
    margin-bottom: 10px;
  }
}
.section-projects .projects {
  height: 400px;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.section-projects .projects .colr_bg {
  background-color: rgba(0, 157, 175, 0.9);
  height: 100%;
}
.section-projects .projects .colr_bg div {
  height: 100%;
  display: flex;
  align-items: center;
}
.section-projects .projects .colr_bg div .layuot {
  width: 100%;
  height: 250px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.section-projects .projects .colr_bg div .layuot .content_project {
  color: #eeeeee;
  height: 100%;
  display: flex;
  width: 50%;
  justify-content: space-between;
  flex-direction: column;
}
.section-projects .projects .colr_bg div .layuot .content_project i {
  margin-bottom: 1rem;
}
.section-projects .projects .colr_bg div .layuot .content_project .title_projects {
  height: 55px;
  width: 100%;
  align-items: end;
}
.section-projects .projects .colr_bg div .layuot .content_project .title_projects a {
  display: inline-block;
  top: 27px;
  color: #eeeeee;
  right: 0px;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  text-align: right;
  padding-left: 5px;
  padding-bottom: 10px;
  border-bottom: 3px rgb(245, 149, 47) solid;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
}
.section-projects .projects .colr_bg div .layuot .content_project .disc {
  width: 100%;
  align-items: end;
}
.section-projects .projects .colr_bg div .layuot .content_project .date {
  height: 30px;
  width: 100%;
  padding: 0;
  margin: 0;
}
.section-projects .projects .colr_bg div .layuot .img_content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.section-projects .projects .colr_bg div .layuot .img_content .prev-project {
  border-radius: 100%;
  border: none;
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px;
  background-color: inherit;
}
.section-projects .projects .colr_bg div .layuot .img_content .prev-project i {
  margin: 0;
  font-size: 22px;
  color: #eeeeee;
}
.section-projects .projects .colr_bg div .layuot .img_content .box_img_project {
  position: relative;
  width: 400px;
  height: 250px;
  overflow: hidden;
  border-radius: 30px;
  border: 5px #eeeeee solid;
}
.section-projects .projects .colr_bg div .layuot .img_content .box_img_project img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
}
.section-projects .projects .colr_bg div .layuot .img_content .box_img_project img:hover {
  transform: scale(1.1);
  /* Apply opacity or box-shadow here */
  opacity: 0.9;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.section-projects .projects .colr_bg div .layuot .img_content .next-project {
  border-radius: 100%;
  border: none;
  padding: 20px;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  opacity: 1;
  font-size: 22px;
  color: #f9f9f9;
  z-index: 12;
  background-color: initial;
}
.section-projects .projects .colr_bg div .layuot .img_content .next-project i {
  margin: 0;
  font-size: 22px;
  color: #eeeeee;
}

@media (max-width: 767px) {
  .section-projects {
    margin-bottom: 150px;
  }
  .section-projects .projects {
    height: 350px;
  }
  .section-projects .projects .colr_bg div {
    height: 100%;
    display: flex;
    align-items: start;
  }
  .section-projects .projects .colr_bg div .layuot {
    width: 100%;
    height: 250px;
    display: inline-block;
  }
  .section-projects .projects .colr_bg div .layuot .content_project {
    color: #eeeeee;
    height: 100%;
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-direction: column;
  }
  .section-projects .projects .colr_bg div .layuot .content_project i {
    margin-bottom: 1rem;
  }
  .section-projects .projects .colr_bg div .layuot .content_project .title_projects {
    height: 55px;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .section-projects .projects .colr_bg div .layuot .content_project .title_projects a {
    display: inline-block;
    top: 27px;
    color: #eeeeee;
    right: 0px;
    width: -moz-fit-content;
    width: fit-content;
    height: 100%;
    text-align: right;
    padding-left: 5px;
    padding-bottom: 10px;
    border-bottom: 3px rgb(245, 149, 47) solid;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
  }
  .section-projects .projects .colr_bg div .layuot .content_project .disc {
    width: 100%;
    align-items: center;
    text-align: center;
    line-height: 2;
    font-size: 14px;
    max-height: 110px;
    overflow: hidden;
  }
  .section-projects .projects .colr_bg div .layuot .content_project .date {
    height: 40px;
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    font-size: 14px;
  }
  .section-projects .projects .colr_bg div .layuot .img_content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .section-projects .projects .colr_bg div .layuot .img_content .prev-project {
    border-radius: 100%;
    border: none;
    height: -moz-fit-content;
    height: fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 10px;
    margin-top: 35px;
    background-color: inherit;
  }
  .section-projects .projects .colr_bg div .layuot .img_content .prev-project i {
    margin: 0;
    font-size: 22px;
    color: #eeeeee;
  }
  .section-projects .projects .colr_bg div .layuot .img_content .box_img_project {
    position: relative;
    width: 400px;
    height: 180px;
    overflow: hidden;
    border-radius: 30px;
    border: 5px #eeeeee solid;
  }
  .section-projects .projects .colr_bg div .layuot .img_content .box_img_project img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
  }
  .section-projects .projects .colr_bg div .layuot .img_content .box_img_project img:hover {
    transform: scale(1.1);
    /* Apply opacity or box-shadow here */
    opacity: 0.9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }
  .section-projects .projects .colr_bg div .layuot .img_content .next-project {
    border-radius: 100%;
    border: none;
    padding: 10px;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    opacity: 1;
    font-size: 22px;
    color: #f9f9f9;
    z-index: 12;
    background-color: initial;
    margin-top: 35px;
  }
  .section-projects .projects .colr_bg div .layuot .img_content .next-project i {
    margin: 0;
    font-size: 22px;
    color: #eeeeee;
  }
}
.top-img-shadow {
  position: relative;
  display: inline-block;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 89vh;
  width: 100%;
}
.top-img-shadow > div {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: end;
  justify-content: center;
  margin: auto;
}
.top-img-shadow > div .hadeeth {
  margin-bottom: 50px;
}

.hadith-title {
  background-color: var(--main-bg-color);
  color: var(--main-white);
  border-radius: 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding: 6px 35px;
}
.hadith-title p {
  margin: 0;
  padding-bottom: 3px;
}

.hadeeth-imam {
  color: var(--warning-color);
  font-weight: bold;
}

@media only screen and (max-width: 600px) {
  .top-img-shadow {
    padding-top: 30vh;
    padding-bottom: 30px;
    margin-top: auto !important;
    margin-bottom: auto !important;
    height: 47vh;
    width: 100%;
  }
  .hadeeth {
    align-items: center;
  }
  .hadeeth img {
    width: 45px;
    height: 35px;
  }
  .hadith-title {
    font-size: 12px;
  }
  .hadeeth-content {
    font-size: 12px;
    width: 90% !important;
    margin-left: 5% !important;
    margin-right: 5% !important;
  }
  .hadeeth-imam {
    font-size: 10px;
  }
}
.section_seera {
  margin-top: 50px;
}
.section_seera .section_heading_seera {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.section_seera .section_heading_seera .title {
  height: 55px;
}
.section_seera .section_heading_seera .title P {
  color: rgb(0, 0, 0);
  right: 0px;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  text-align: right;
  padding: 0 0 0 14px;
  border-bottom: 3px rgb(245, 149, 47) solid;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
}
.section_seera .section_heading_seera .title P a {
  height: -moz-fit-content;
  height: fit-content;
  padding: 0;
  margin: 0;
}
.section_seera .section_heading_seera .dropdown-list_seera {
  width: 200px;
}
.section_seera .section_heading_seera .dropdown-list_seera .dropdown_section_seera {
  padding: 0;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  white-space: nowrap;
}
.section_seera .section_heading_seera .dropdown-list_seera .dropdown_section_seera:hover .dropdown-content_seera {
  display: block;
}
.section_seera .section_heading_seera .dropdown-list_seera .dropdown_section_seera:hover .dropbtn {
  background-color: #009DAF;
  color: #eeeeee;
}
.section_seera .section_heading_seera .dropdown-list_seera .dropdown_section_seera .dropbtn {
  font-size: var(--font-size-x1);
  min-width: 70px;
  background-color: white;
  border: 1px solid #C4C4C4;
  width: 200px;
  border-radius: 30px;
  text-decoration: none;
  color: #979090;
  transition: 0.3s;
  height: 70%;
  margin-top: auto;
  margin-bottom: auto;
  padding-top: 5px;
  padding-bottom: 5px;
}
.section_seera .section_heading_seera .dropdown-list_seera .dropdown_section_seera .dropbtn span {
  font-size: 15px;
}
.section_seera .section_heading_seera .dropdown-list_seera .dropdown_section_seera .dropbtn i {
  padding: 4px;
  font-size: 12px;
}
.section_seera .section_heading_seera .dropdown-list_seera .dropdown_section_seera .dropdown-content_seera {
  display: none;
  font-size: 13px;
  border-radius: 10px;
  position: absolute;
  background-color: #f9f9f9;
  width: 200px;
  height: inherit;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.section_seera .section_heading_seera .dropdown-list_seera .dropdown_section_seera .dropdown-content_seera .dropdown-item {
  border-radius: 10px;
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  white-space: nowrap;
}
.section_seera .section_heading_seera .dropdown-list_seera .dropdown_section_seera .dropdown-content_seera .dropdown-item span {
  font-size: 15px;
}
.section_seera .section_heading_seera .dropdown-list_seera .dropdown_section_seera .dropdown-content_seera .dropdown-item:hover {
  background-color: #ddd;
}
.section_seera .content_seera {
  height: -moz-fit-content;
  height: fit-content;
}
.section_seera .content_seera a i {
  margin-right: 2px;
}
.section_seera .content_seera .name-sera {
  height: -moz-fit-content;
  height: fit-content;
}
.section_seera .content_seera .name-sera P {
  cursor: pointer;
  font-style: normal;
  text-align: center;
  font-size: var(--font-size-x1);
  padding: 10px;
  transition: 0.3s;
  border-color: #68686f;
  border-style: solid;
  border-width: 1px;
  border-radius: 56px;
  color: #eeeeee;
  width: 350px;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto;
  background-color: #009DAF;
}
.section_seera .content_seera .text-content {
  height: 230px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  text-align: justify;
  justify-content: center;
}
.section_seera .content_seera .text-content > div {
  display: none;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 180px;
}
.section_seera .content_seera .text-content > div p {
  font-size: 20px;
  font-weight: 400;
  color: #646464;
  line-height: 40px;
}
.section_seera .content_seera .text-content .active {
  display: block;
}
.section_seera .content_seera .read_more {
  width: -moz-fit-content;
  width: fit-content;
  height: 40px;
  margin: auto;
}
.section_seera .content_seera .read_more a {
  font-size: var(--font-size-x1);
  background-color: white;
  border: 1px solid #C4C4C4;
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 30px;
  text-decoration: none;
  color: #979090;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: start;
  padding: 5px 15px;
}
.section_seera .content_seera .read_more a:hover {
  color: #3a3a3a;
  border: 1px solid #454242;
}
.section_seera .content_seera .read_more a span {
  text-align: center;
  min-width: 100px;
  display: inline-block;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
}
.section_seera .content_seera .read_more a span i {
  font-size: var(--font-size-x1);
  margin-left: 5px;
  margin-right: 5px;
}

@media (max-width: 767px) {
  .section_seera {
    display: inline-block;
    margin-top: 50px;
  }
  .section_seera .section_heading_seera {
    display: flex;
    margin-bottom: 15px;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
  }
  .section_seera .section_heading_seera .title {
    height: 55px;
    margin-bottom: 20px;
  }
  .section_seera .section_heading_seera .title P {
    color: rgb(0, 0, 0);
    right: 0px;
    width: -moz-fit-content;
    width: fit-content;
    height: 100%;
    text-align: right;
    padding: 0 0 0 14px;
    border-bottom: 3px rgb(209, 207, 205) solid;
    font-size: var(--font-size-x2);
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
  }
  .section_seera .section_heading_seera .title P a {
    height: -moz-fit-content;
    height: fit-content;
    padding: 0;
    margin: 0;
  }
  .section_seera .section_heading_seera .dropdown-list_seera .dropdown_section_seera {
    padding: 0;
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
    white-space: nowrap;
  }
  .section_seera .section_heading_seera .dropdown-list_seera .dropdown_section_seera:hover .dropdown-content_seera {
    display: block;
  }
  .section_seera .section_heading_seera .dropdown-list_seera .dropdown_section_seera:hover .dropbtn {
    background-color: #009DAF;
    color: #eeeeee;
  }
  .section_seera .section_heading_seera .dropdown-list_seera .dropdown_section_seera .dropbtn {
    font-size: var(--font-size-x1);
    min-width: 70px;
    background-color: white;
    border: 1px solid #C4C4C4;
    border-radius: 30px;
    text-decoration: none;
    color: #979090;
    transition: 0.3s;
    height: 70%;
    margin-top: auto;
    margin-bottom: auto;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .section_seera .section_heading_seera .dropdown-list_seera .dropdown_section_seera .dropbtn span {
    font-size: 15px;
  }
  .section_seera .section_heading_seera .dropdown-list_seera .dropdown_section_seera .dropbtn i {
    padding: 4px;
    font-size: 12px;
  }
  .section_seera .section_heading_seera .dropdown-list_seera .dropdown_section_seera .dropdown-content_seera {
    display: none;
    font-size: 13px;
    border-radius: 10px;
    position: absolute;
    background-color: #f9f9f9;
    width: 200px;
    height: inherit;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  .section_seera .section_heading_seera .dropdown-list_seera .dropdown_section_seera .dropdown-content_seera .dropdown-item {
    border-radius: 10px;
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    white-space: nowrap;
  }
  .section_seera .section_heading_seera .dropdown-list_seera .dropdown_section_seera .dropdown-content_seera .dropdown-item span {
    font-size: 15px;
  }
  .section_seera .section_heading_seera .dropdown-list_seera .dropdown_section_seera .dropdown-content_seera .dropdown-item:hover {
    background-color: #ddd;
  }
  .section_seera .content_seera {
    height: -moz-fit-content;
    height: fit-content;
  }
  .section_seera .content_seera a i {
    margin-right: 2px;
  }
  .section_seera .content_seera .name-sera {
    height: -moz-fit-content;
    height: fit-content;
  }
  .section_seera .content_seera .name-sera P {
    cursor: pointer;
    font-style: normal;
    text-align: center;
    font-size: 14px;
    transition: 0.3s;
    border-radius: 56px;
    color: #eeeeee;
    width: -moz-fit-content;
    width: fit-content;
    padding: 10px 30px;
    height: -moz-fit-content;
    height: fit-content;
    margin: auto;
    background-color: #009DAF;
  }
  .section_seera .content_seera .text-content .active {
    display: block;
  }
}
.section-events {
  margin-top: 100px;
  height: -moz-fit-content;
  height: fit-content;
}
.section-events .content-section-events {
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  grid-template-columns: repeat(4, 4fr);
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 10px;
}
.section-events .content-section-events .title_events {
  height: 360px;
  grid-column: 1/4;
  grid-row: 1/3;
  border-radius: 20px;
  position: relative;
  display: inline-block;
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
}
.section-events .content-section-events .title_events .background-rgb {
  margin-top: 0;
  height: inherit;
  background-color: rgba(232, 137, 14, 0.81);
  position: relative;
  border-radius: inherit;
}
.section-events .content-section-events .title_events .background-rgb div {
  display: flex;
}
.section-events .content-section-events .title_events .background-rgb div i {
  font-size: 140px;
  padding-right: 80px;
  margin: 10px;
  color: rgb(162, 96, 10);
}
.section-events .content-section-events .title_events .background-rgb div .title {
  color: #fdf8f8;
  font-size: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section-events .content-section-events .title_events .background-rgb div .title > :nth-child(2) {
  font-size: 20px;
}
.section-events .content-section-events .title_events .background-rgb .description_event {
  color: #fff7f7;
  height: 57px;
  font-size: 20px;
  width: 80%;
  margin: 30px auto;
}
.section-events .content-section-events .title_events .background-rgb .description_event p {
  height: 100%;
  width: 100%;
}
.section-events .content-section-events .title_events .background-rgb .prev-button-event {
  position: absolute;
  top: 50%;
  left: 93%;
  border: 0;
  background-color: rgba(0, 0, 0, 0);
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  padding: 0;
}
.section-events .content-section-events .title_events .background-rgb .prev-button-event i {
  font-size: 22px;
  color: #eeeeee;
}
.section-events .content-section-events .title_events .background-rgb .next-button-event {
  position: absolute;
  top: 50%;
  left: 3%;
  border: 0;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  padding: 0;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 20px;
  opacity: 1;
  font-size: 22px;
  color: #f9f9f9;
  z-index: 12;
  background-color: initial;
}
.section-events .content-section-events .title_events .background-rgb .next-button-event i {
  font-size: 22px;
  color: #eeeeee;
}
.section-events .content-section-events .box-img-events {
  grid-column: 4/5;
  grid-row: 1/2;
  position: relative;
  width: 100%;
  height: 175px;
  overflow: hidden;
  border-radius: 20px;
}
.section-events .content-section-events .box-img-events img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.section-events .content-section-events .time-place {
  grid-column: 4/5;
  grid-row: 2/3;
  gap: 0;
  width: 100%;
  height: 175px;
  display: flex;
  border-radius: 20px;
  flex-direction: column;
  justify-content: space-between;
  background-color: #009daf;
  padding: 15px;
}
.section-events .content-section-events .time-place .title {
  color: #68d5e1;
  margin-bottom: 15px;
}
.section-events .content-section-events .time-place .dy {
  padding-bottom: 10px;
  font-size: 15px;
  display: flex;
  height: -moz-fit-content;
  height: fit-content;
}
.section-events .content-section-events .time-place .dy i {
  height: -moz-fit-content;
  height: fit-content;
  margin-top: auto;
  margin-bottom: auto;
  color: #68d5e1;
}
.section-events .content-section-events .time-place .dy p {
  padding-right: 10px;
  margin: 0;
  font-size: 20px;
  color: #eeeeee;
}
.section-events .content-section-events .time-place .dy .daye {
  width: 100px;
  border-left: 2px rgba(25, 200, 220, 0.7) solid;
}
.section-events .content-section-events .time-place .date {
  padding-bottom: 10px;
  color: #eeeeee;
  font-size: 13px;
}
.section-events .content-section-events .time-place .date i {
  height: -moz-fit-content;
  height: fit-content;
  margin-left: 5px;
  margin-right: 3px;
  font-size: 10px;
}

@media (max-width: 767px) {
  .section-events {
    margin-top: 50px;
    height: -moz-fit-content;
    height: fit-content;
  }
  .section-events .content-section-events {
    height: -moz-fit-content;
    height: fit-content;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 0.5fr);
    grid-gap: 5px;
  }
  .section-events .content-section-events .title_events {
    height: 150px;
    grid-column: 1/5;
    grid-row: 1/3;
  }
  .section-events .content-section-events .title_events .background-rgb div i {
    font-size: 60px;
    padding-right: 20px;
    color: rgb(218, 175, 119);
  }
  .section-events .content-section-events .title_events .background-rgb div .title {
    font-size: 25px;
  }
  .section-events .content-section-events .title_events .background-rgb div .title > :nth-child(2) {
    font-size: 14px;
  }
  .section-events .content-section-events .title_events .background-rgb .description_event {
    font-size: 14px;
    margin: 10px auto;
  }
  .section-events .content-section-events .title_events .background-rgb .description_event p {
    font-size: 12px;
    max-height: 3.7em;
    overflow: hidden;
    line-height: 1.2em;
  }
  .section-events .content-section-events .title_events .background-rgb .prev-button-event {
    top: 40%;
  }
  .section-events .content-section-events .title_events .background-rgb .next-button-event {
    top: 40%;
  }
  .section-events .content-section-events .box-img-events {
    grid-column: 3/5;
    grid-row: 3/3;
    height: 110px;
    border-radius: 15px;
  }
  .section-events .content-section-events .time-place {
    grid-column: 1/3;
    grid-row: 3/4;
    height: 110px;
    border-radius: 15px;
  }
  .section-events .content-section-events .time-place .title {
    margin-bottom: 10px;
  }
  .section-events .content-section-events .time-place .title h2 {
    font-size: 14px;
  }
  .section-events .content-section-events .time-place .dy {
    font-size: 10px;
  }
  .section-events .content-section-events .time-place .dy p {
    padding-right: 5px;
    font-size: 12px;
  }
  .section-events .content-section-events .time-place .dy .daye {
    width: 50px;
  }
}
.section-service .services {
  height: 400px;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
}
.section-service .services .colr_bg {
  background-color: rgba(0, 157, 175, 0.9);
  height: 100%;
}
.section-service .services .colr_bg div {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-service .services .colr_bg div .layuot {
  width: 100%;
  height: 250px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  /* Add your CSS styles as needed */
}
.section-service .services .colr_bg div .layuot .content_service {
  color: #eeeeee;
  height: 100%;
  display: flex;
  max-width: 50%;
  justify-content: start;
  flex-direction: column;
}
.section-service .services .colr_bg div .layuot .content_service .title_services {
  height: 55px;
  width: 100%;
  align-items: end;
}
.section-service .services .colr_bg div .layuot .content_service .title_services a {
  display: inline-block;
  top: 27px;
  color: #eeeeee;
  right: 0px;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  text-align: right;
  border-color: rgb(245, 149, 47);
  border-width: 1px;
  padding-left: 5px;
  padding-bottom: 10px;
  border-style: solid;
  border-top-width: 0px;
  border-left-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 3px;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
}
.section-service .services .colr_bg div .layuot .content_service .disc {
  align-items: end;
}
.section-service .services .colr_bg div .layuot .forms {
  display: unset;
  height: 100%;
}
.section-service .services .colr_bg div .layuot .forms form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: end;
  height: 100%;
  /* Add styles for the circle */
  /* Add a simple scale-up animation */
}
.section-service .services .colr_bg div .layuot .forms form .confirmation {
  text-align: center;
  flex-direction: column;
}
.section-service .services .colr_bg div .layuot .forms form .confirmation .text-container {
  justify-content: center;
  height: -moz-fit-content;
  height: fit-content;
}
.section-service .services .colr_bg div .layuot .forms form .confirmation .text-container p {
  font-size: 24px;
  font-weight: bold;
  color: white; /* Adjust the color to your preference */
}
.section-service .services .colr_bg div .layuot .forms form .confirmation .icon-container {
  display: flex;
  justify-content: center;
  height: -moz-fit-content;
  height: fit-content;
}
.section-service .services .colr_bg div .layuot .forms form .confirmation .icon-container .circle {
  justify-content: center;
  width: 60px;
  height: 60px;
  border: white solid 2px;
  border-radius: 50%;
  padding: 10px;
  animation: scaleUp 1s ease-in-out;
}
.section-service .services .colr_bg div .layuot .forms form .confirmation .icon-container .circle i {
  font-size: 48px;
  color: white; /* Adjust the color to your preference */
}
@keyframes scaleUp {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.section-service .services .colr_bg div .layuot .forms form div {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: end;
  justify-content: center;
}
.section-service .services .colr_bg div .layuot .forms form div input {
  background-color: #eeeeee;
  border-radius: 50px;
  width: 300px;
  padding: 20px;
  height: 40px;
  text-align: right;
  line-height: 24px;
  border-width: 0px;
  outline-style: none;
  margin-right: 10px;
}
.section-service .services .colr_bg div .layuot .forms form .button_form {
  justify-content: flex-start;
  align-items: end;
}
.section-service .services .colr_bg div .layuot .forms form .button_form button {
  color: rgb(255, 255, 255);
  width: 123px;
  text-align: center;
  background-color: rgba(251, 157, 18, 0.82);
  cursor: pointer;
  font-style: normal;
  border-radius: 56px;
  border: 1px #8e8ea4 solid;
  padding: 10px 0;
}
.section-service .services .colr_bg div .layuot .forms .form_Missing {
  display: none;
}

@media (max-width: 767px) {
  .section-service .services {
    height: 410px;
  }
  .section-service .services .colr_bg div {
    align-items: start;
  }
  .section-service .services .colr_bg div .layuot {
    padding-top: 10px;
    width: 100%;
    height: 250px;
    display: inline-block;
  }
  .section-service .services .colr_bg div .layuot .content_service {
    color: #eeeeee;
    display: flex;
    height: -moz-fit-content;
    height: fit-content;
    justify-content: start;
    flex-direction: column;
  }
  .section-service .services .colr_bg div .layuot .content_service .title_services {
    display: flex;
    justify-content: center;
  }
  .section-service .services .colr_bg div .layuot .content_service .disc {
    text-align: center;
    height: 80px;
    line-height: 2;
    font-size: 15px;
  }
  .section-service .services .colr_bg div .layuot .forms {
    display: inline-block;
    height: 80%;
    width: 100%;
  }
  .section-service .services .colr_bg div .layuot .forms form {
    align-items: center;
  }
  .section-service .services .colr_bg div .layuot .forms form div {
    width: 100%;
    justify-content: center;
  }
  .section-service .services .colr_bg div .layuot .forms form div input {
    width: 100%;
    padding: 15px;
    height: 30px;
  }
  .section-service .services .colr_bg div .layuot .forms form .button_form {
    align-items: center;
  }
  .section-service .services .colr_bg div .layuot .forms form .button_form button {
    padding: 5px 0;
  }
}
header {
  height: 77px;
  background-color: black;
}

.navbar {
  box-shadow: 0px 4px 6px rgba(39, 39, 39, 0.41);
  background-color: #009DAF;
  font-size: var(--font-size-x1);
  position: fixed;
  z-index: 1000;
  width: 100%;
  top: 0;
}
.navbar .Services_bar_header {
  height: 32px;
  width: 100%;
  background-color: white;
}
.navbar .logo img {
  width: 80px;
  height: 45px;
  transition: all 0.3s ease-in-out;
}
.navbar .logo img:hover {
  transform: scale(0.9);
  /* Apply opacity or box-shadow here */
}
.navbar .logo2 {
  display: none;
}
.navbar .Flag {
  padding: 10px;
  display: none;
}
.navbar .my-content-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}
.navbar .my-content-header .dropdown {
  padding: 0;
  width: auto;
  height: auto;
  white-space: nowrap;
}
.navbar .my-content-header .dropdown:hover .dropdown-content {
  display: block;
}
.navbar .my-content-header .dropdown:hover .dropbtn {
  background-color: rgba(86, 123, 130, 0.49);
}
.navbar .my-content-header .dropdown:hover i {
  transition: transform 0.3s ease-in-out;
  transform: rotate(-180deg);
}
.navbar .my-content-header .dropdown .dropbtn {
  border-radius: 30px;
  font-size: var(--font-size-buttons);
  border: none;
  outline: none;
  color: white;
  padding: 8px 16px;
  background-color: inherit;
  margin: 0;
  display: inline-block;
}
.navbar .my-content-header .dropdown .dropbtn i {
  padding: 4px;
  font-size: 12px;
}
.navbar .my-content-header .dropdown .dropdown-content {
  font-size: 13px;
  border-radius: 10px;
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  height: inherit;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.navbar .my-content-header .dropdown .dropdown-content a {
  border-radius: 10px;
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  white-space: nowrap;
}
.navbar .my-content-header .dropdown .dropdown-content a:hover {
  color: #555;
}
.navbar .my-content-header .dropdown .dropdown-content a i {
  font-size: 10px;
  color: #009DAF;
  padding: 3px;
}
.navbar .my-content-header .no_dropdown {
  padding: 0;
  width: auto;
  height: auto;
  white-space: nowrap;
}
.navbar .my-content-header .no_dropdown:hover .no_dropbtn {
  background-color: rgba(86, 123, 130, 0.49);
}
.navbar .my-content-header .no_dropdown .no_dropbtn {
  text-decoration: none;
  border-radius: 30px;
  font-size: var(--font-size-buttons);
  border: none;
  color: white;
  padding: 10px 16px;
  background-color: inherit;
  margin: 0;
  display: inline-block;
}
.navbar .modal-button {
  display: none;
}
.navbar .modal-button .icon {
  text-decoration: none;
  color: black;
  font-size: 20px;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.navbar .modal-button .icon i {
  color: white;
}
.navbar #sidebar {
  display: none;
}

@media screen and (max-width: 900px) {
  header {
    height: 60px;
  }
  .navbar .modal-dropdown-content a {
    background-color: #ffffff;
  }
  .navbar .modal-dropdown {
    justify-content: space-between;
    display: flex;
    flex-direction: column; /* Added */
  }
  .navbar .modal-dropdown button {
    width: -moz-fit-content;
    width: fit-content;
  }
  .navbar .modal-dropdown .my-drpbtn {
    position: relative;
    display: flex;
    align-items: center;
  }
  .navbar .modal-dropdown .my-drpbtn i {
    color: #afa301;
  }
  .navbar .modal-dropdown .my-drpbtn .rotate {
    transition: transform 0.3s ease;
    transform: rotate(180deg);
  }
  .navbar .modal-dropdown .my-drpbtn:hover {
    background-color: #ddd;
  }
  .navbar .modal-dropdown .modal-dropdown-content div a:hover {
    background-color: #ddd;
  }
  .navbar .modal-dropdown:hover .modal-dropdown-content a {
    background-color: #ffffff;
  }
  .navbar .modal-dropdown .modal-dropbtn {
    width: 100%;
    padding-bottom: 15px;
    padding-top: 15px;
    padding-left: 15px;
    text-align: right;
    color: #000000;
    background-color: inherit;
    border: none;
  }
  .navbar .modal-dropdown .modal-dropdown-content {
    height: auto;
    overflow: hidden;
    display: flex;
    flex-direction: column; /* Added */
    justify-content: right;
  }
  .navbar .modal-dropdown .modal-dropdown-content.fade-in {
    animation: fadeIn 0.3s ease;
  }
  .navbar .modal-dropdown .modal-dropdown-content a {
    width: 100%;
    display: block;
    padding: 15px;
    text-decoration: none;
    color: #000000;
    border: none;
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .navbar .modal-dropdown .fa-angle-down { /* Added */
    margin-left: 10px;
    margin-bottom: 5px;
  }
  .navbar .no_dropdown {
    padding: 0;
    height: auto;
    white-space: nowrap;
  }
  .navbar .no_dropdown:hover .no_dropbtn {
    background-color: #ddd;
  }
  .navbar .no_dropdown .no_dropbtn {
    text-decoration: none;
    font-size: var(--font-size-buttons);
    border: none;
    color: black;
    padding: 10px 16px;
    background-color: inherit;
    margin: 0;
    display: inline-block;
  }
  .navbar nav {
    padding: 8px;
    background-color: #eee;
  }
  .navbar nav div {
    display: flex;
    justify-content: space-between;
  }
  .navbar nav div div {
    width: -moz-fit-content;
    width: fit-content;
  }
  .navbar #sidebar {
    display: block;
    position: fixed;
    top: 0;
    right: -100%; /* Initially hidden off-screen */
    bottom: 0;
    width: 100%;
    background-color: #ffffff;
    transition: right 0.3s ease-in-out;
    z-index: 9999;
    padding: 10px;
  }
  .navbar #sidebar button i {
    color: black;
  }
  .navbar #sidebar.active {
    right: 0; /* Slide in from the right when active */
  }
  .navbar #sidebar-content {
    color: #ffffff;
    margin: 20px;
  }
  .navbar #main-content {
    margin-left: 0;
    transition: margin-left 0.3s ease-in-out;
  }
  .navbar #main-content.active {
    margin-left: 300px; /* Adjust the width of the sidebar here */
  }
  .navbar .logo img {
    width: 50px;
    height: 30px;
  }
  .navbar .logo2 {
    display: block;
  }
  .navbar .logo2 img {
    width: 50px;
    height: 30px;
  }
  .navbar .Flag {
    padding: 10px;
    display: block;
  }
  .navbar .my-content-header {
    display: none;
  }
  .navbar .modal-button {
    display: block;
  }
}
.section-footer {
  background-color: rgba(0, 0, 0, 0.9);
  height: -moz-fit-content;
  height: fit-content;
}
.section-footer .footer {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(6, 4fr);
  grid-gap: 10px;
  height: 450px;
  padding: 40px 0 0 0;
}
.section-footer .footer .footer-links {
  grid-column: 1/6;
  grid-row: 1/6;
  display: grid;
  grid-template-columns: repeat(4, 4fr);
  grid-template-rows: repeat(1, 4fr);
  grid-gap: 10px;
}
.section-footer .footer .footer-links .links-column .title-link {
  display: inline-block;
  width: 100%;
  padding-bottom: 10px;
}
.section-footer .footer .footer-links .links-column .title-link a {
  font-size: var(--font-size-x2);
  color: wheat;
  text-decoration: none;
  font-style: normal;
  /*font-family: Poppins;*/
  font-weight: 700;
  line-height: 30px;
}
.section-footer .footer .footer-links .links-column .links {
  display: inline-block;
  width: 100%;
  padding-top: 5px;
}
.section-footer .footer .footer-links .links-column .links a {
  text-decoration: none;
  color: #949393;
  cursor: pointer;
  font-size: var(--font-size-x0);
  transition: all 0.1s ease-in-out;
  line-height: 21px;
}
.section-footer .footer .footer-links .links-column .links a:hover {
  color: white;
  font-weight: bold;
}
.section-footer .footer .footer-information {
  grid-column: 6/9;
  grid-row: 1/6;
  padding-right: 70px;
}
.section-footer .footer .footer-information .footer-icon {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.section-footer .footer .footer-information .footer-icon img {
  transition: all 0.3s ease-in-out;
  height: 90px;
}
.section-footer .footer .footer-information .footer-input-field {
  padding: 0.5rem;
}
.section-footer .footer .footer-information .footer-input-field .label-input {
  color: #f9f9f9;
  margin: 30px auto;
}
.section-footer .footer .footer-information .footer-input-field .label-input span {
  display: inline-block;
  width: 100%;
  font-size: 14px;
}
.section-footer .footer .footer-information .footer-input-field .label-input > :nth-child(2) {
  font-size: 12px;
  color: #716f6f;
}
.section-footer .footer .footer-information .footer-input-field form {
  margin: auto;
  direction: ltr;
  width: 100%;
  height: 45px;
  display: flex;
  padding: var(--dl-space-space-halfunit);
  align-items: center;
  padding-left: 21px;
  border-radius: 50px;
  flex-direction: row;
  justify-content: center;
  background-color: #202020;
}
.section-footer .footer .footer-information .footer-input-field form input {
  flex: 1;
  color: white;
  width: 50%;
  height: 24px;
  line-height: 24px;
  padding-left: var(--dl-space-space-oneandhalfunits);
  outline-style: none;
  background-color: rgba(217, 217, 217, 0);
  border: none;
}
.section-footer .footer .footer-information .footer-input-field form input:hover ~ form, .section-footer .footer .footer-information .footer-input-field form input:focus ~ form {
  background-color: #323232;
}
.section-footer .footer .footer-information .footer-input-field form button {
  background-color: transparent;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  border: none;
}
.section-footer .footer .footer-information .footer-input-field form button i {
  border-radius: 100%;
  color: #009DAF;
  font-size: 40px;
  margin: auto;
  background-color: #eeeeee;
}
.section-footer .footer .footer-information .footer-input-field form button i:hover {
  color: rgb(245, 149, 47);
}
.section-footer .footer .footer-end {
  grid-column: 1/9;
  grid-row: 6/7;
  height: -moz-fit-content;
  height: fit-content;
  border-top: 1px solid #ccc;
  padding-top: 10px;
  color: #7d7d7d;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
.section-footer .footer .footer-end > :nth-child(1) {
  width: 25%;
}
.section-footer .footer .footer-end > :nth-child(1) p {
  font-size: 12px;
  margin-top: 10px;
}
.section-footer .footer .footer-end > :nth-child(1) p a {
  text-decoration: none;
  color: #7d7d7d;
}
.section-footer .footer .footer-end > :nth-child(2) {
  width: 15%;
}
.section-footer .footer .footer-end > :nth-child(2) .footer-socials {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  margin-top: 5px;
}
.section-footer .footer .footer-end > :nth-child(2) .footer-socials div a {
  text-decoration: none;
  color: #7d7d7d;
  font-size: 20px;
}
.section-footer .footer .footer-end > :nth-child(2) .footer-socials div a i {
  transition: font-size 0.3s ease;
}
.section-footer .footer .footer-end > :nth-child(2) .footer-socials div a i:hover {
  color: #eeeeee;
  font-size: 25px;
}
.section-footer .footer .footer-end > :nth-child(3) {
  width: 25%;
}
.section-footer .footer .footer-end > :nth-child(3) p {
  margin-top: 10px;
  font-size: 12px;
  width: -moz-fit-content;
  width: fit-content;
  float: left;
  cursor: alias;
}

@media (max-width: 991px) {
  .section-footer .footer {
    height: 400px;
  }
  .section-footer .footer .footer-links .links-column .title-link {
    display: inline-block;
    width: 100%;
    padding-bottom: 10px;
  }
  .section-footer .footer .footer-links .links-column .title-link a {
    font-size: 13px;
  }
  .section-footer .footer .footer-links .links-column .links a {
    font-size: 10px;
  }
  .section-footer .footer .footer-information {
    grid-column: 6/9;
    grid-row: 1/6;
    padding-right: 0;
  }
  .section-footer .footer .footer-information .footer-icon {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  .section-footer .footer .footer-information .footer-icon img {
    height: 70px;
  }
  .section-footer .footer .footer-information .footer-input-field {
    padding: 0.5rem;
    margin-top: 20px;
  }
  .section-footer .footer .footer-information .footer-input-field .label-input {
    color: #f9f9f9;
    margin: 10px auto;
  }
  .section-footer .footer .footer-information .footer-input-field .label-input span {
    display: inline-block;
    width: 100%;
    font-size: 10px;
  }
  .section-footer .footer .footer-information .footer-input-field .label-input > :nth-child(2) {
    font-size: 10px;
    color: #716f6f;
  }
  .section-footer .footer .footer-information .footer-input-field form {
    margin: auto;
    direction: ltr;
    width: 100%;
    height: 35px;
    display: flex;
    padding: var(--dl-space-space-halfunit);
    align-items: center;
    padding-left: 21px;
    border-radius: 50px;
    flex-direction: row;
    justify-content: center;
    background-color: #202020;
  }
  .section-footer .footer .footer-information .footer-input-field form input {
    flex: 1;
    color: white;
    width: 50%;
    height: 24px;
    line-height: 24px;
    padding-left: var(--dl-space-space-oneandhalfunits);
    outline-style: none;
    background-color: rgba(217, 217, 217, 0);
    border: none;
  }
  .section-footer .footer .footer-information .footer-input-field form button {
    background-color: transparent;
    border-radius: 100%;
    width: 35px;
    height: 35px;
    border: none;
  }
  .section-footer .footer .footer-information .footer-input-field form button i {
    border-radius: 100%;
    color: #009DAF;
    font-size: 30px;
    margin: auto;
    background-color: #eeeeee;
  }
  .section-footer .footer .footer-end {
    grid-column: 1/9;
    grid-row: 6/7;
    height: -moz-fit-content;
    height: fit-content;
    border-top: 1px solid #ccc;
    padding-top: 10px;
    color: #7d7d7d;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
  }
  .section-footer .footer .footer-end > :nth-child(1) {
    width: 25%;
  }
  .section-footer .footer .footer-end > :nth-child(1) p {
    font-size: 10px;
    margin-top: 10px;
  }
  .section-footer .footer .footer-end > :nth-child(1) p a {
    text-decoration: none;
    color: #7d7d7d;
  }
  .section-footer .footer .footer-end > :nth-child(2) {
    width: 15%;
  }
  .section-footer .footer .footer-end > :nth-child(2) .footer-socials {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    margin-top: 5px;
  }
  .section-footer .footer .footer-end > :nth-child(2) .footer-socials div {
    width: -moz-fit-content;
    width: fit-content;
  }
  .section-footer .footer .footer-end > :nth-child(2) .footer-socials div a {
    text-decoration: none;
    color: #7d7d7d;
    font-size: 20px;
  }
  .section-footer .footer .footer-end > :nth-child(3) {
    width: 25%;
  }
  .section-footer .footer .footer-end > :nth-child(3) p {
    margin-top: 10px;
    font-size: 10px;
    width: -moz-fit-content;
    width: fit-content;
    float: left;
  }
}
@media (max-width: 767px) {
  .section-footer .footer {
    height: 250px;
  }
  .section-footer .footer .footer-links {
    display: none;
  }
  .section-footer .footer .footer-information {
    grid-column: 1/9;
    grid-row: 1/6;
    padding-right: 0;
    display: flex;
    justify-content: center;
  }
  .section-footer .footer .footer-information .footer-icon {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  .section-footer .footer .footer-information .footer-icon img {
    height: 60px;
  }
  .section-footer .footer .footer-information .footer-input-field {
    display: none;
  }
  .section-footer .footer .footer-end {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    padding-bottom: 15px;
  }
  .section-footer .footer .footer-end > :nth-child(1) {
    width: -moz-fit-content;
    width: fit-content;
  }
  .section-footer .footer .footer-end > :nth-child(1) p {
    font-size: 12px;
    margin-top: 10px;
  }
  .section-footer .footer .footer-end > :nth-child(1) p a {
    text-decoration: none;
    color: #7d7d7d;
  }
  .section-footer .footer .footer-end > :nth-child(2) {
    width: -moz-fit-content;
    width: fit-content;
  }
  .section-footer .footer .footer-end > :nth-child(2) .footer-socials {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    margin-top: 5px;
    width: -moz-fit-content;
    width: fit-content;
  }
  .section-footer .footer .footer-end > :nth-child(2) .footer-socials div {
    width: -moz-fit-content;
    width: fit-content;
    padding-left: 5px;
    padding-right: 5px;
  }
  .section-footer .footer .footer-end > :nth-child(2) .footer-socials div a {
    text-decoration: none;
    color: #7d7d7d;
    font-size: 20px;
  }
  .section-footer .footer .footer-end > :nth-child(3) {
    display: none;
  }
}
.mane_gallery {
  margin-bottom: 250px;
}
.mane_gallery > .title {
  display: flex;
}
.mane_gallery > .title i {
  color: #979090;
  padding: 12px;
  margin-top: auto;
  margin-bottom: auto;
  height: -moz-fit-content;
  height: fit-content;
}
.mane_gallery > .title p {
  font-size: 18px;
  color: #979090;
  width: -moz-fit-content;
  width: fit-content;
  padding: 13px;
  margin: 0;
  height: -moz-fit-content;
  height: fit-content;
}
.mane_gallery > .title p a {
  text-decoration: none;
  color: #707070;
}
.mane_gallery > .title p a:hover {
  color: #009DAF;
}
.mane_gallery .most_watched {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
.mane_gallery .most_watched .box-image {
  -o-object-fit: contain;
     object-fit: contain;
}
.mane_gallery .most_watched .box-image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 500px;
  border-radius: 25px;
}
.mane_gallery .most_watched .title_most_watched {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
}
.mane_gallery .most_watched .title_most_watched .text {
  color: #707070;
  margin-top: 10px;
  height: -moz-fit-content;
  height: fit-content;
}
.mane_gallery .most_watched .title_most_watched .text p {
  font-size: 18px;
  margin: 0 !important;
}
.mane_gallery .most_watched .title_most_watched .datetime {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mane_gallery .most_watched .title_most_watched .datetime .date {
  width: -moz-fit-content;
  width: fit-content;
}
.mane_gallery .most_watched .title_most_watched .datetime .date i {
  margin-left: 5px;
}
.mane_gallery .most_watched .title_most_watched .datetime .watched {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  margin-right: 15px;
}
.mane_gallery .most_watched .title_most_watched .datetime .watched i {
  margin-left: 5px;
}
.mane_gallery .saction-imgs {
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 70px;
}
.mane_gallery .saction-imgs > .heading_saction_imgs {
  display: flex;
  justify-content: space-between;
}
.mane_gallery .saction-imgs > .heading_saction_imgs > .title P {
  color: #707070;
  font-size: 18px;
  padding: 0;
}
.mane_gallery .saction-imgs > .heading_saction_imgs > .button_imgs {
  display: flex;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
}
.mane_gallery .saction-imgs > .heading_saction_imgs > .button_imgs a {
  text-decoration: none;
  color: #02a5a5;
}
.mane_gallery .saction-imgs > .heading_saction_imgs > .button_imgs a:hover {
  color: #00af9d;
}
.mane_gallery .saction-imgs .list-img {
  margin-top: 30px;
}
.mane_gallery .saction-imgs .list-img div div {
  width: 100%;
  height: 190px;
  -o-object-fit: contain;
     object-fit: contain;
  text-align: center;
}
.mane_gallery .saction-imgs .list-img div div img {
  width: 100%;
  max-width: 618px;
  height: 100%;
  border-radius: 20px;
  transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
}
.mane_gallery .saction-imgs .list-img div div img:hover {
  transform: scale(1.1);
  /* Apply opacity or box-shadow here */
  opacity: 0.9;
}

@media (max-width: 900px) {
  .mane_gallery .saction-imgs {
    height: -moz-fit-content;
    height: fit-content;
    margin-top: 100px;
  }
  .mane_gallery .saction-imgs P {
    color: #707070;
  }
  .mane_gallery .saction-imgs > :nth-child(1) a {
    text-decoration: none;
  }
  .mane_gallery .saction-imgs .list-img {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .mane_gallery .saction-imgs .list-img div {
    width: 100%;
    margin-bottom: 10px;
  }
  .mane_gallery .saction-imgs .list-img div div {
    width: 100%;
    height: 200px;
    -o-object-fit: contain;
       object-fit: contain;
    text-align: center;
  }
  .mane_gallery .saction-imgs .list-img div div img {
    width: 100%;
    max-width: 618px;
    height: 100%;
    border-radius: 30px;
  }
}
.title {
  display: flex;
}
.title i {
  color: #979090;
  padding: 12px;
  margin-top: auto;
  margin-bottom: auto;
  height: -moz-fit-content;
  height: fit-content;
}
.title p {
  font-size: 18px;
  color: #979090;
  width: -moz-fit-content;
  width: fit-content;
  padding: 13px;
  margin: 0;
  height: -moz-fit-content;
  height: fit-content;
}
.title p a {
  text-decoration: none;
  color: #707070;
}
.title p a:hover {
  color: #009DAF;
}

.swiper {
  width: 100%;
  height: 100%;
  margin-bottom: 30px;
}
.swiper .swiper-slide {
  text-align: center;
  background: #fff;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-gap: 15px;
}
.swiper .swiper-slide .box-img {
  -o-object-fit: contain;
     object-fit: contain;
  text-align: center;
  width: 100%;
}
.swiper .swiper-slide .box-img a {
  height: 100%;
}
.swiper .swiper-slide .box-img a img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 200px;
  border-radius: 20px;
}
.swiper .swiper-pagination-gallery {
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px auto;
}
.swiper .swiper-pagination-bullet {
  display: inline-block;
  margin: auto;
  bottom: 0;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  font-size: 22px;
  color: #000;
  opacity: 100;
  background: rgba(0, 0, 0, 0.2);
}
.swiper .swiper-pagination-bullet-active {
  color: #fff;
  background: #009DAF;
}

/* Mobile Styles */
@media screen and (max-width: 767px) {
  .title {
    flex-direction: column;
    align-items: center;
  }
  .title i {
    margin: 0;
  }
  .title p {
    font-size: 16px;
    padding: 10px;
    margin: 10px;
    text-align: center;
    width: 100%;
  }
  .swiper {
    margin-top: 20px;
    margin-bottom: 50px;
  }
  .swiper .swiper-slide .box-img {
    width: 100%;
    height: auto;
    padding: 10px;
  }
  .swiper .swiper-slide .box-img a img {
    border-radius: 15px;
  }
  .swiper .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 14px;
  }
}
/* iPad Styles */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .title i {
    padding: 8px;
  }
  .title p {
    font-size: 18px;
    padding: 10px;
  }
  .swiper {
    margin-top: 30px;
    margin-bottom: 100px;
  }
  .swiper .swiper-slide .box-img {
    width: 60%;
    height: auto;
  }
  .swiper .swiper-pagination-bullet {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 18px;
  }
}
.image_info .title {
  display: flex;
}
.image_info .title i {
  color: #979090;
  padding: 12px;
  margin-top: auto;
  margin-bottom: auto;
  height: -moz-fit-content;
  height: fit-content;
}
.image_info .title p {
  font-size: 18px;
  color: #979090;
  width: -moz-fit-content;
  width: fit-content;
  padding: 13px;
  margin: 0;
  height: -moz-fit-content;
  height: fit-content;
}
.image_info .title p a {
  text-decoration: none;
  color: #707070;
}
.image_info .title p a:hover {
  color: #009DAF;
}
.image_info .box_image_info {
  margin-bottom: 50px;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 20px;
  background-color: #ededed;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 150px 68px 50px auto;
  grid-gap: 20px;
  padding: 20px;
}
.image_info .box_image_info > div {
  border-radius: 20px;
}
.image_info .box_image_info .info {
  background-color: #ffffff;
  grid-column: 1/3;
  grid-row: 1/2;
}
.image_info .box_image_info .info .image_info {
  padding: 15px;
  display: flex;
  justify-content: space-between;
}
.image_info .box_image_info .info .image_info .photographer_info {
  display: flex;
}
.image_info .box_image_info .info .image_info .photographer_info i {
  font-size: 40px;
  color: #707070;
  height: -moz-fit-content;
  height: fit-content;
  padding-left: 10px;
}
.image_info .box_image_info .info .image_info .photographer_info div > :nth-child(1) {
  font-weight: bold;
}
.image_info .box_image_info .info .image_info .photographer_info div p {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 14px;
  margin: 0;
  padding: 0;
}
.image_info .box_image_info .info .image_info .date_info {
  height: -moz-fit-content;
  height: fit-content;
  margin: 0 10px;
  color: #454545;
}
.image_info .box_image_info .info .title_image {
  margin: 5px 20px;
  height: 50px;
  overflow: hidden;
}
.image_info .box_image_info .info .title_image p {
  margin: 0;
  height: inherit;
}
.image_info .box_image_info .downloads_views {
  grid-column: 1/3;
  grid-row: 2/3;
  background-color: #ffffff;
  border-radius: 20px;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  justify-content: center;
  font-size: 16px;
}
.image_info .box_image_info .downloads_views div {
  display: flex;
  padding: 10px 5px;
  width: 100%;
}
.image_info .box_image_info .downloads_views div div {
  width: -moz-fit-content;
  width: fit-content;
}
.image_info .box_image_info .downloads_views div i {
  font-size: 25px;
  color: #707070;
  padding: 10px;
}
.image_info .box_image_info .downloads_views > :nth-child(1) {
  border-left: rgba(112, 112, 112, 0.85) 2px solid;
  border-radius: 0;
}
.image_info .box_image_info .download_img {
  grid-column: 1/3;
  grid-row: 3/4;
}
.image_info .box_image_info .download_img .button-download a {
  width: 100%;
  background-color: #009DAF;
  color: #f9f9f9;
  border-radius: 20px;
  text-align: center;
  padding: 10px;
  text-decoration: none;
  font-size: 18px;
}
.image_info .box_image_info .download_img .button-download a i {
  padding: 5px 10px;
}
.image_info .box_image_info .tags {
  grid-column: 1/3;
  grid-row: 4/5;
}
.image_info .box_image_info .tags .tag {
  background-color: #ffffff;
  border-radius: 10px;
  display: inline-block;
  margin-left: 4px;
  margin-top: 4px;
}
.image_info .box_image_info .tags .tag p {
  font-size: 12px;
  margin: 10px;
}
.image_info .box_image_info .photo {
  background-color: rgba(186, 186, 186, 0.57);
  height: 500px;
  grid-column: 3/7;
  grid-row: 1/5;
}
.image_info .box_image_info .photo > img {
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: inherit;
  height: inherit;
  width: inherit;
}
.image_info .saction-imgs {
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 50px;
  margin-bottom: 100px;
}
.image_info .saction-imgs P {
  color: #707070;
  font-size: 20px;
}
.image_info .saction-imgs > :nth-child(1) a {
  text-decoration: none;
}
.image_info .list-img {
  margin-top: 20px;
}
.image_info .list-img div div {
  width: 100%;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  text-align: center;
}
.image_info .list-img div div img {
  width: 100%;
  max-width: 618px;
  height: 100%;
  border-radius: 30px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 900px) {
  .image_info .box_image_info {
    margin-bottom: 50px;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    border-radius: 20px;
    background-color: #ededed;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    grid-gap: 15px;
  }
  .image_info .box_image_info > div {
    border-radius: 20px;
  }
  .image_info .box_image_info .info {
    background-color: #ffffff;
    grid-column: 1/3;
    grid-row: 2/3;
  }
  .image_info .box_image_info .info .title_info {
    margin: 10px;
    display: block;
  }
  .image_info .box_image_info .info .title_info div > :nth-child(1) > :nth-child(1) {
    margin: 0;
    font-size: 20px;
    color: #707070;
    display: inline-block;
    width: -moz-fit-content;
    width: fit-content;
  }
  .image_info .box_image_info .info .title_info div > :nth-child(1) > :nth-child(2) {
    display: inline-block;
    margin: 0;
    font-size: 10px;
  }
  .image_info .box_image_info .info .title_info div > :nth-child(1) > :nth-child(2) p {
    margin: 5px 0;
  }
  .image_info .box_image_info .info .title_info div > :nth-child(2) {
    font-size: 12px;
  }
  .image_info .box_image_info .info .title_info div > :nth-child(2) .img-date {
    margin: 0;
  }
  .image_info .box_image_info .info .title_info div > :nth-child(2) .img-date i {
    margin: 0;
  }
  .image_info .box_image_info .info > :nth-child(2) {
    margin: 10px;
    font-size: 13px;
  }
  .image_info .box_image_info .download_img {
    grid-column: 3/5;
    grid-row: 2/3;
  }
  .image_info .box_image_info .download_img > div {
    margin: 0;
  }
  .image_info .box_image_info .download_img .downloads_views {
    background-color: #ffffff;
    border-radius: 20px;
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    font-size: 8px;
  }
  .image_info .box_image_info .download_img .downloads_views div i {
    font-size: 1px;
  }
  .image_info .box_image_info .download_img .downloads_views > :nth-child(1) {
    border-left: #707070 2px solid;
    border-radius: 0;
  }
  .image_info .box_image_info .download_img .button-download {
    margin-top: 10px;
  }
  .image_info .box_image_info .download_img .button-download a {
    background-color: #009DAF;
    color: #f9f9f9;
    border-radius: 10px;
  }
  .image_info .box_image_info .tags {
    grid-column: 1/5;
    grid-row: 1/3;
  }
  .image_info .box_image_info .tags .tag {
    background-color: #ffffff;
    border-radius: 10px;
    display: inline-block;
    margin-left: 4px;
    margin-top: 4px;
  }
  .image_info .box_image_info .tags .tag p {
    font-size: 12px;
    margin: 10px;
  }
  .image_info .box_image_info .photo {
    background-color: #a5891b;
    grid-column: 1/5;
    grid-row: 1/2;
    height: 300px;
  }
  .list-img {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .list-img div {
    width: 100%;
    margin-bottom: 10px;
  }
  .list-img div div {
    width: 100%;
    height: 200px;
    -o-object-fit: contain;
       object-fit: contain;
    text-align: center;
  }
  .list-img div div img {
    width: 100%;
    max-width: 618px;
    height: 100%;
    border-radius: 30px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.section-post {
  margin-bottom: 190px;
}
.section-post .post-title a {
  height: 80px;
  margin-top: 20px;
  text-decoration: none;
  color: #0c0c0c;
  font-size: 25px;
}
.section-post .post-title a:hover {
  color: #707070;
}
.section-post .post-image {
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: 70% 35%;
  grid-template-rows: auto 30px;
}
.section-post .post-image .box-image {
  width: 100%;
  height: inherit;
  -o-object-fit: contain;
     object-fit: contain;
}
.section-post .post-image .box-image img {
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 15px;
  width: 100%;
  height: 450px;
  border-radius: 10px;
}
.section-post .post-image .latest-news-list {
  padding: 0 15px;
}
.section-post .post-image .latest-news-list .title-latest-news {
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: start;
}
.section-post .post-image .latest-news-list .title-latest-news p {
  margin-top: auto;
  margin-bottom: auto;
  color: #878686;
  font-size: 20px;
  line-height: 48px;
}
.section-post .post-image .latest-news-list .title-latest-news p i {
  color: #878686;
}
.section-post .post-image .latest-news-list .list-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}
.section-post .post-image .latest-news-list .list-item .box-img {
  width: 30%;
  height: 90px;
  text-align: center;
}
.section-post .post-image .latest-news-list .list-item .box-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 90px;
  border-radius: 10px;
}
.section-post .post-image .latest-news-list .list-item .title-posts-list {
  width: 70%;
}
.section-post .post-image .latest-news-list .list-item .title-posts-list a {
  text-decoration: none;
}
.section-post .post-image .latest-news-list .list-item .title-posts-list a p {
  font-size: 12px;
  color: #707070;
  padding-right: 10px;
}
.section-post .post-image .latest-news-list .list-item .title-posts-list .date {
  font-size: 12px;
}
.section-post .post-image .metadata {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-post .post-image .metadata .post-date {
  display: flex;
  justify-content: space-between;
}
.section-post .post-image .metadata .post-date div {
  padding-left: 4px;
}
.section-post .post-image .metadata .post-date i {
  color: #a2a1a1;
}
.section-post .post-image .metadata .post-socials {
  display: flex;
  justify-content: space-between;
}
.section-post .post-image .metadata .post-socials span {
  color: #a2a1a1;
  font-size: 15px;
}
.section-post .post-image .metadata .post-socials div {
  margin-right: 13px;
}
.section-post .post-image .metadata .post-socials div a i {
  font-size: 20px;
  color: #009DAF;
}
.section-post .post-content {
  width: 80%;
}
.section-post .post-content p {
  font-size: 16px;
  line-height: 2.5;
  word-spacing: 5px;
}
.section-post .saction-imgs {
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 50px;
  margin-bottom: 100px;
}
.section-post .saction-imgs P {
  color: #707070;
  font-size: 18px;
}
.section-post .saction-imgs > :nth-child(1) a {
  text-decoration: none;
}
.section-post .saction-imgs .list-img {
  margin-top: 20px;
}
.section-post .saction-imgs .list-img > * {
  padding: calc(var(--bs-gutter-x) * 0.5);
}
.section-post .saction-imgs .list-img div div {
  width: 100%;
  height: 165px;
  -o-object-fit: contain;
     object-fit: contain;
  text-align: center;
}
.section-post .saction-imgs .list-img div div img {
  width: 100%;
  max-width: 618px;
  height: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}

/* iPad Styles */
@media (max-width: 999px) {
  .section-post .post-title a {
    margin-top: 10px;
    font-size: 20px;
  }
  .section-post .post-image .box-image img {
    height: 300px;
  }
  .section-post .post-image .latest-news-list .title-latest-news {
    margin-bottom: 5px;
  }
  .section-post .post-image .latest-news-list .title-latest-news p {
    font-size: 18px;
  }
  .section-post .post-image .latest-news-list .list-item {
    margin-bottom: 3px;
  }
  .section-post .post-image .latest-news-list .list-item .box-img {
    width: 30%;
    height: 60px;
    text-align: center;
  }
  .section-post .post-image .latest-news-list .list-item .box-img img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 60px;
    border-radius: 10px;
  }
  .section-post .post-image .latest-news-list .list-item .title-posts-list {
    height: -moz-fit-content;
    height: fit-content;
  }
  .section-post .post-image .latest-news-list .list-item .title-posts-list a p {
    font-size: 10px;
    padding: 0 10px 0 0;
    margin: 0;
  }
  .section-post .post-image .latest-news-list .list-item .title-posts-list .date {
    font-size: 9px;
  }
  .section-post .post-content {
    width: 100%;
  }
}
/* Mobile Styles */
@media (max-width: 767px) {
  .section-post .post-title a {
    font-size: 18px;
  }
  .section-post .post-image {
    margin-bottom: 10px;
    grid-template-columns: 100%;
  }
  .section-post .post-image .box-image img {
    height: 250px;
  }
  .section-post .post-image .latest-news-list {
    display: none;
  }
  .section-post .post-content {
    width: 100%;
  }
}
.main_posts {
  margin-bottom: 50px;
}
.main_posts .title_posts p {
  color: #000000;
  font-size: 20px;
  font-weight: bold !important;
  line-height: 48px;
  display: block;
}
.main_posts .title_posts i {
  color: #878686;
  padding-right: 10px;
}
.main_posts .post-active .box-img {
  width: 100%;
  height: 370px;
  -o-object-fit: contain;
     object-fit: contain;
  text-align: center;
}
.main_posts .post-active .box-img img {
  width: 100%;
  max-width: 618px;
  height: 100%;
  border-radius: 10px;
}
.main_posts .post-active .post-contint {
  gap: 5px;
  display: flex;
  flex-direction: column;
  line-height: 30px;
}
.main_posts .post-active .post-contint h3 {
  margin: auto 0;
}
.main_posts .post-active .post-contint .post-inputs {
  margin-bottom: 15px;
}
.main_posts .post-active .post-contint .post-inputs .link_btn {
  display: flex;
  justify-content: end;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
}
.main_posts .post-active .post-contint .post-inputs .link_btn a {
  text-decoration: none;
  color: #02a5a5;
}
.main_posts .post-active .post-contint .post-inputs .link_btn a i {
  padding-right: 10px;
}
.main_posts .post-active .post-contint .post-inputs .link_btn a:hover {
  color: #00af9d;
}
.main_posts .post-active .post-contint .title-news {
  margin-bottom: 30px;
}
.main_posts .post-active .post-contint .title-news a {
  text-decoration: none;
  color: #0c0c0c;
}
.main_posts .post-active .post-contint .title-news a span {
  font-size: 25px;
  font-weight: bold !important;
}
.main_posts .post-active .post-contint .title-news a:hover {
  color: #707070;
}
.main_posts .post-active .post-contint .txst-news {
  height: 135px;
  overflow: hidden;
  text-align: justify;
}
.main_posts .post-active .post-contint .post-date {
  color: #707070;
  margin: auto 0;
}
.main_posts .post-active .post-contint .post-date i {
  color: #a2a1a1;
}
.main_posts .post-list {
  margin-top: 20px;
}
.main_posts .post-list > * {
  padding: calc(var(--bs-gutter-x) * 0.5);
}
.main_posts .post-list div a {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-direction: column;
  text-decoration: none;
}
.main_posts .post-list div a div {
  width: 100%;
  height: 170px;
  -o-object-fit: contain;
     object-fit: contain;
  text-align: center;
}
.main_posts .post-list div a div img {
  width: 100%;
  height: inherit;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.main_posts .post-list div a .title {
  height: -moz-fit-content;
  height: fit-content;
  color: #0c0c0c;
  text-align: start;
  font-weight: bold;
  font-size: 15px;
}
.main_posts .post-list div a .title:hover {
  color: #707070;
}
.main_posts .post-list div a .date {
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  justify-content: start;
  flex-direction: row;
  color: #707070;
}
.main_posts .post-list div a .date i {
  margin: 0 !important;
  padding: 5px 0 5px 5px !important;
}

/*  Styles */
/* Mobile Styles */
.project-pag {
  margin-bottom: 150px;
  height: -moz-fit-content;
  height: fit-content;
}
.project-pag .title-project-pag {
  padding: 30px 0;
  font-size: 18px;
}
.project-pag .swiper-1 {
  float: right;
  width: 100%;
  display: flex;
  position: relative;
  height: 430px;
  margin-top: 0;
  margin-bottom: 0;
}
.project-pag .swiper-1 .swiper-wrapper {
  border-radius: 30px;
  height: inherit;
}
.project-pag .swiper-1 .swiper-wrapper .swiper-slide {
  height: 420px;
  border-radius: inherit;
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.project-pag .swiper-1 .swiper-wrapper .swiper-slide a {
  text-decoration: none;
  color: #0c0c0c;
}
.project-pag .swiper-1 .swiper-wrapper .swiper-slide a:hover {
  color: #707070;
}
.project-pag .swiper-1 .swiper-wrapper .swiper-slide div {
  border-radius: inherit;
  position: relative;
  display: inline-block;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
}
.project-pag .swiper-1 .swiper-wrapper .swiper-slide div p {
  color: #f9f9f9;
  position: absolute;
  top: 340px;
  right: 5%;
}
.project-pag .swiper-1 .swiper-project-button-next {
  display: flex;
  position: absolute;
  top: 350px;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 100%;
  opacity: 1;
  font-size: 22px;
  right: 94%;
  color: #f9f9f9;
  z-index: 12;
  background-color: initial;
}
.project-pag .swiper-1 .swiper-project-button-prev {
  display: flex;
  position: absolute;
  top: 350px;
  right: 87%;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 100%;
  opacity: 1;
  font-size: 22px;
  z-index: 12;
}
.project-pag .slider_projects {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 50px;
}
.project-pag .slider_projects .title-slider_projects {
  font-size: 25px;
  margin-top: 60px;
  margin-bottom: 20px;
}
.project-pag .slider_projects .title-slider_projects p {
  margin-right: 50px;
}
.project-pag .slider_projects .swiper-container {
  width: 80%;
}
.project-pag .slider_projects .swiper-container .swiper-2 {
  float: right;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  margin: 0;
}
.project-pag .slider_projects .swiper-container .swiper-2 .swiper-wrapper .swiper-slide {
  height: 250px;
  font-size: 18px;
}
.project-pag .slider_projects .swiper-container .swiper-2 .swiper-wrapper .swiper-slide a {
  text-decoration: none;
  color: #0c0c0c;
}
.project-pag .slider_projects .swiper-container .swiper-2 .swiper-wrapper .swiper-slide a:hover {
  color: #707070;
}
.project-pag .slider_projects .swiper-container .swiper-2 .swiper-wrapper .swiper-slide .box-img2 {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  -o-object-fit: contain;
     object-fit: contain;
  text-align: center;
}
.project-pag .slider_projects .swiper-container .swiper-2 .swiper-wrapper .swiper-slide .box-img2 img {
  width: inherit;
  max-width: 618px;
  height: 140px;
  border-radius: 10px;
}
.project-pag .slider_projects .swiper-container .swiper-2 .swiper-wrapper .swiper-slide p {
  margin-top: 15px;
  font-size: 12px;
}
.project-pag .slider_projects .swiper-container .swiper-2 .swiper-wrapper .swiper-slide .date {
  font-size: 14px;
}
.project-pag .slider_projects .button-next {
  display: flex;
  justify-content: center;
  align-items: center;
}
.project-pag .slider_projects .button-next .swiper-projects-button-next {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 100%;
  opacity: 1;
  font-size: 32px;
  color: #ffffff;
  z-index: 12;
}
.project-pag .slider_projects .button-next .swiper-projects-button-next i {
  color: #707070;
  background-color: white;
  border-radius: 100%;
}
.project-pag .slider_projects .button-prev {
  display: flex;
  justify-content: center;
  align-items: center;
}
.project-pag .slider_projects .button-prev .swiper-projects-button-prev {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 100%;
  opacity: 1;
  font-size: 32px;
  z-index: 12;
  color: #ffffff;
}
.project-pag .slider_projects .button-prev .swiper-projects-button-prev i {
  color: #707070;
  background-color: white;
  border-radius: 100%;
}
.project-pag .section-Preparing-projects {
  height: 350px;
  margin-top: 100px;
}
.project-pag .section-Preparing-projects div {
  background-color: rgba(0, 157, 175, 0.9);
  width: 100%;
  height: 100%;
}
.project-pag .section-Preparing-projects div div {
  background-color: rgba(0, 0, 0, 0);
}
.project-pag .section-Preparing-projects div div div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.project-pag .section-Preparing-projects div div div div {
  flex-direction: column;
  text-align: center;
}
.project-pag .section-Preparing-projects div div div div > :nth-child(1) {
  font-size: 60px;
  color: yellow;
}
.project-pag .section-Preparing-projects div div div div > :nth-child(2) {
  font-size: 25px;
  color: #f9f9f9;
}
.project-pag .section-Preparing-projects div div div div p {
  width: 100%;
  display: inline-block;
}
.project-pag .section-messages {
  margin-top: 100px;
}
.project-pag .section-messages .title-section-messages {
  text-align: center;
}
.project-pag .section-messages .title-section-messages .icon {
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 30px;
}
.project-pag .section-messages .title-section-messages .icon i {
  font-size: 140px;
  color: #009DAF;
}
.project-pag .section-messages .title-section-messages .text > :nth-child(1) {
  font-size: 25px;
}
.project-pag .section-messages .title-section-messages .text > :nth-child(2) {
  font-size: 18px;
}
.project-pag .section-messages .form form {
  display: grid;
  grid-template-columns: repeat(6, 4fr);
  grid-template-rows: repeat(2, 0.1fr);
  grid-gap: 10px;
}
.project-pag .section-messages .form form > :nth-child(1) {
  grid-column: 2/4;
  grid-row: 1/2;
}
.project-pag .section-messages .form form > :nth-child(2) {
  grid-column: 4/6;
  grid-row: 1/2;
}
.project-pag .section-messages .form form textarea {
  grid-column: 2/6;
  grid-row: 2/3;
  display: inline-block;
  max-height: 150px;
  min-height: 150px;
  width: 100%;
  height: 100px;
  margin-top: 20px;
  border-radius: 15px;
  padding: 10px;
  font-size: 15px;
}
.project-pag .section-messages .form .button-action {
  width: 100%;
  margin-top: 20px;
}
.project-pag .section-messages .form .button-action button {
  display: inline-block;
  background-color: orange;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 30px;
  color: #f9f9f9;
}

/* Mobile Styles */
@media screen and (max-width: 767px) {
  .project-pag {
    margin-bottom: 100px;
  }
  .project-pag .title-project-pag {
    font-size: 16px;
  }
  .project-pag .swiper-1 {
    height: 320px;
  }
  .project-pag .swiper-1 .swiper-wrapper .swiper-slide {
    height: 310px;
    font-size: 16px;
  }
  .project-pag .swiper-1 .swiper-wrapper .swiper-slide div p {
    top: 260px;
    right: 3%;
  }
  .project-pag .swiper-1 .swiper-project-button-next {
    top: 280px;
    right: 87%;
    font-size: 20px;
  }
  .project-pag .swiper-1 .swiper-project-button-prev {
    top: 280px;
    right: 83%;
    font-size: 20px;
  }
  .project-pag .slider_projects {
    margin-top: 30px;
  }
  .project-pag .slider_projects .title-slider_projects {
    font-size: 22px;
    margin-top: 40px;
  }
  .project-pag .slider_projects .title-slider_projects p {
    margin-right: 30px;
  }
  .project-pag .slider_projects .swiper-container {
    width: 100%;
  }
  .project-pag .slider_projects .swiper-container .swiper-2 {
    height: -moz-fit-content;
    height: fit-content;
  }
  .project-pag .slider_projects .swiper-container .swiper-2 .swiper-wrapper .swiper-slide {
    height: 210px;
    font-size: 16px;
  }
  .project-pag .slider_projects .swiper-container .swiper-2 .swiper-wrapper .swiper-slide .box-img2 img {
    height: 100px;
  }
  .project-pag .slider_projects .swiper-container .swiper-2 .swiper-wrapper .swiper-slide p {
    font-size: 10px;
  }
  .project-pag .slider_projects .swiper-container .swiper-2 .swiper-wrapper .swiper-slide .date {
    font-size: 12px;
  }
  .project-pag .slider_projects .button-next .swiper-projects-button-next {
    font-size: 28px;
  }
  .project-pag .slider_projects .button-prev .swiper-projects-button-prev {
    font-size: 28px;
  }
  .project-pag .section-Preparing-projects {
    height: 250px;
    margin-top: 70px;
  }
  .project-pag .section-Preparing-projects div div div > :nth-child(1) {
    font-size: 50px;
  }
  .project-pag .section-Preparing-projects div div div > :nth-child(2) {
    font-size: 20px;
  }
  .project-pag .section-Preparing-projects div div div p {
    width: 80%;
  }
  .project-pag .section-messages {
    margin-top: 70px;
  }
  .project-pag .section-messages .title-section-messages .icon i {
    font-size: 100px;
  }
  .project-pag .section-messages .title-section-messages .text > :nth-child(1) {
    font-size: 20px;
  }
  .project-pag .section-messages .title-section-messages .text > :nth-child(2) {
    font-size: 16px;
  }
  .project-pag .section-messages .form form {
    grid-template-columns: repeat(6, 3fr);
    grid-template-rows: repeat(3, 0.1fr);
    grid-gap: 5px;
  }
  .project-pag .section-messages .form form > :nth-child(1) {
    grid-column: 1/7;
    grid-row: 1/2;
  }
  .project-pag .section-messages .form form > :nth-child(2) {
    grid-column: 1/7;
    grid-row: 2/3;
  }
  .project-pag .section-messages .form form textarea {
    grid-column: 1/7;
    grid-row: 3/4;
    min-height: 100px;
    font-size: 13px;
  }
  .project-pag .section-messages .form .button-action button {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 12px;
  }
}
/* iPad Styles */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .project-pag {
    margin-bottom: 130px;
  }
  .project-pag .title-project-pag {
    font-size: 18px;
  }
  .project-pag .swiper-1 {
    height: 400px;
  }
  .project-pag .swiper-1 .swiper-wrapper .swiper-slide {
    height: 380px;
    font-size: 18px;
  }
  .project-pag .swiper-1 .swiper-wrapper .swiper-slide div p {
    top: 340px;
    right: 5%;
  }
  .project-pag .swiper-1 .swiper-project-button-next {
    top: 350px;
    right: 92%;
    font-size: 24px;
  }
  .project-pag .swiper-1 .swiper-project-button-prev {
    top: 350px;
    right: 88%;
    font-size: 24px;
  }
  .project-pag .slider_projects {
    margin-top: 50px;
  }
  .project-pag .slider_projects .title-slider_projects {
    font-size: 22px;
    margin-top: 60px;
    margin-bottom: 20px;
  }
  .project-pag .slider_projects .title-slider_projects p {
    margin-right: 50px;
  }
  .project-pag .slider_projects .swiper-container {
    width: 100%;
  }
  .project-pag .slider_projects .swiper-container .swiper-2 {
    height: -moz-fit-content;
    height: fit-content;
  }
  .project-pag .slider_projects .swiper-container .swiper-2 .swiper-wrapper .swiper-slide {
    height: 250px;
    font-size: 18px;
  }
  .project-pag .slider_projects .swiper-container .swiper-2 .swiper-wrapper .swiper-slide .box-img2 img {
    height: 140px;
  }
  .project-pag .slider_projects .swiper-container .swiper-2 .swiper-wrapper .swiper-slide p {
    font-size: 12px;
  }
  .project-pag .slider_projects .swiper-container .swiper-2 .swiper-wrapper .swiper-slide .date {
    font-size: 14px;
  }
  .project-pag .slider_projects .button-next .swiper-projects-button-next {
    font-size: 30px;
  }
  .project-pag .slider_projects .button-prev .swiper-projects-button-prev {
    font-size: 30px;
  }
  .project-pag .section-Preparing-projects {
    height: 300px;
    margin-top: 80px;
  }
  .project-pag .section-Preparing-projects div div div > :nth-child(1) {
    font-size: 60px;
  }
  .project-pag .section-Preparing-projects div div div > :nth-child(2) {
    font-size: 22px;
  }
  .project-pag .section-Preparing-projects div div div p {
    width: 70%;
  }
  .project-pag .section-messages {
    margin-top: 80px;
  }
  .project-pag .section-messages .title-section-messages .icon i {
    font-size: 120px;
  }
  .project-pag .section-messages .title-section-messages .text > :nth-child(1) {
    font-size: 22px;
  }
  .project-pag .section-messages .title-section-messages .text > :nth-child(2) {
    font-size: 16px;
  }
  .project-pag .section-messages .form form {
    grid-template-columns: repeat(6, 4fr);
    grid-template-rows: repeat(2, 0.1fr);
    grid-gap: 10px;
  }
  .project-pag .section-messages .form form > :nth-child(1) {
    grid-column: 2/4;
    grid-row: 1/2;
  }
  .project-pag .section-messages .form form > :nth-child(2) {
    grid-column: 4/6;
    grid-row: 1/2;
  }
  .project-pag .section-messages .form form textarea {
    grid-column: 2/6;
    grid-row: 2/3;
    font-size: 15px;
  }
  .project-pag .section-messages .form .button-action button {
    font-size: 18px;
  }
}
.live_page {
  margin-bottom: 100px;
  margin-top: 20px;
}
.live_page .title {
  display: flex;
}
.live_page .title i {
  color: #979090;
  padding: 12px;
  height: -moz-fit-content;
  height: fit-content;
}
.live_page .title p {
  font-size: 14px;
  color: #979090;
  width: -moz-fit-content;
  width: fit-content;
  padding: 13px;
  margin: 0;
}
.live_page .saction-live-prayer {
  margin-top: 50px;
}
.live_page .saction-live-prayer .buttons {
  margin-top: 10px;
  margin-bottom: 10px;
}
.live_page .saction-live-prayer .buttons .buttons-live {
  height: 40px;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  align-items: flex-start;
  justify-content: start;
}
.live_page .saction-live-prayer .buttons .buttons-live a, .live_page .saction-live-prayer .buttons .buttons-live button {
  font-size: var(--font-size-x1);
  min-width: 70px;
  background-color: white;
  border: 1px solid #C4C4C4;
  height: inherit;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 30px;
  text-decoration: none;
  color: #979090;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
}
.live_page .saction-live-prayer .buttons .buttons-live a span, .live_page .saction-live-prayer .buttons .buttons-live button span {
  margin: 0 10px;
  font-size: 14px;
  font-weight: unset;
}
.live_page .saction-live-prayer .content {
  height: 550px;
  display: grid;
  grid-template-columns: repeat(6, 4fr);
  grid-template-rows: repeat(1, 1fr);
  grid-gap: 15px;
}
.live_page .saction-live-prayer .content .live {
  height: inherit;
  grid-column: 1/5;
}
.live_page .saction-live-prayer .content .live .container-no-live {
  height: inherit;
  border-radius: 20px;
  background-size: cover;
  justify-content: center;
  background-image: linear-gradient(90deg, rgba(44, 71, 89, 0.2) 0%, rgba(44, 71, 89, 0.2) 100%), url("https://imamhussain.org/filestorage/images/5f5df8b542ec4.jpg");
  opacity: 50%;
  background-position: center;
}
.live_page .saction-live-prayer .content .live .container-no-live .container-live {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.live_page .saction-live-prayer .content .live .container-no-live .container-live p {
  font-size: var(--font-size-x4);
  color: #eeeeee;
}
.live_page .saction-live-prayer .content .live .container-live {
  height: inherit;
}
.live_page .saction-live-prayer .content .live .container-live iframe {
  height: 100%;
  width: 100%;
  border-radius: 20px;
}
.live_page .saction-live-prayer .content .prayer_time {
  grid-column: 5/7;
  background-color: #eeeeee;
  border-radius: 30px;
  height: 100%;
}
.live_page .saction-live-prayer .content .prayer_time .title-pray {
  background-color: #009DAF;
  text-align: center;
  border-radius: 30px 30px 0 0;
  border-bottom: #f9f9f9 solid 5px;
}
.live_page .saction-live-prayer .content .prayer_time .title-pray p {
  color: #f9f9f9;
  padding: 15px;
  font-size: 22px;
  margin: 0;
}
.live_page .saction-live-prayer .content .prayer_time .IndexPray {
  width: 80%;
  margin: auto;
}
.live_page .saction-live-prayer .content .prayer_time .IndexPray .PrayTimeLine {
  border-bottom: rgba(112, 112, 112, 0.68) solid 1px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 15px;
  font-size: 18px;
  color: #707070;
}
.live_page .alzyara {
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 80px;
}
.live_page .alzyara .title-alzyara {
  font-size: 25px;
  margin-top: 60px;
  margin-bottom: 20px;
}
.live_page .alzyara .alzyara-content {
  background-color: #eeeeee;
  height: 700px;
  width: 100%;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.live_page .alzyara .alzyara-content .title {
  padding-top: 10px;
}
.live_page .alzyara .alzyara-content .title p {
  width: 100%;
  text-align: center;
  font-size: 30px;
  color: #009DAF;
  padding: 20px;
}
.live_page .alzyara .alzyara-content .text-con {
  padding-left: 50px;
  padding-right: 50px;
  line-height: 2.5;
  word-spacing: 5px;
  font-size: 25px;
  height: -moz-fit-content;
  height: fit-content;
  -o-object-fit: cover;
     object-fit: cover;
}
.live_page .alzyara .alzyara-content .text-con p {
  text-align: center;
  margin-top: 10px;
  color: #3f3f3f;
}
.live_page .alzyara .alzyara-content .voice {
  background-color: #009DAF;
  text-align: center;
  border-radius: 0 0 30px 30px;
  border-bottom: #f9f9f9 solid 5px;
  height: 80px;
}
.live_page .saction-viduos {
  margin-top: 80px;
}
.live_page .saction-viduos .title-saction-viduos {
  font-size: 25px;
  margin-top: 60px;
  margin-bottom: 20px;
}
.live_page .saction-viduos .viduos-list div .box-img2 {
  width: 100%;
  height: 180px;
  -o-object-fit: contain;
     object-fit: contain;
  text-align: center;
}
.live_page .saction-viduos .viduos-list div .box-img2 img {
  width: 100%;
  max-width: 618px;
  height: 100%;
  border-radius: 10px;
}
.live_page .saction-viduos .viduos-list div p {
  margin-top: 20px;
  font-size: 14px;
  text-decoration: none;
  color: #0c0c0c;
}

/* Mobile Styles */
@media screen and (max-width: 767px) {
  .live_page {
    margin-bottom: 50px;
    margin-top: 20px;
  }
  .live_page .title {
    display: flex;
  }
  .live_page .title i {
    padding: 6px;
  }
  .live_page .title p {
    font-size: 12px;
    padding: 10px;
  }
  .live_page .saction-live-prayer {
    margin-top: 30px;
  }
  .live_page .saction-live-prayer .buttons {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .live_page .saction-live-prayer .buttons .buttons-live {
    height: 30px;
  }
  .live_page .saction-live-prayer .buttons .buttons-live a, .live_page .saction-live-prayer .buttons .buttons-live button {
    font-size: 12px;
  }
  .live_page .saction-live-prayer .content {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .live_page .saction-live-prayer .content .live .container-no-live .container-live p {
    font-size: 14px;
  }
  .live_page .saction-live-prayer .content .live .container-live {
    height: 200px;
  }
  .live_page .saction-live-prayer .content .live .container-live iframe {
    height: 200px;
  }
  .live_page .saction-live-prayer .content .prayer_time {
    height: auto;
  }
  .live_page .saction-live-prayer .content .prayer_time .title-pray p {
    font-size: 18px;
  }
  .live_page .saction-live-prayer .content .prayer_time .IndexPray .PrayTimeLine {
    font-size: 14px;
  }
  .live_page .alzyara {
    height: auto;
    margin-top: 40px;
  }
  .live_page .alzyara .title-alzyara {
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 10px;
  }
  .live_page .alzyara .alzyara-content {
    height: auto;
  }
  .live_page .alzyara .alzyara-content .title p {
    font-size: 24px;
    padding: 10px;
  }
  .live_page .alzyara .alzyara-content .text-con {
    font-size: 16px;
  }
  .live_page .alzyara .voice {
    height: 50px;
  }
  .live_page .saction-viduos {
    margin-top: 40px;
  }
  .live_page .saction-viduos .title-saction-viduos {
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 10px;
  }
  .live_page .saction-viduos .viduos-list div .box-img2 {
    height: 120px;
  }
  .live_page .saction-viduos .viduos-list div p {
    font-size: 12px;
  }
}
/* iPad Styles */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .live_page {
    margin-bottom: 100px;
    margin-top: 20px;
  }
  .live_page .title {
    display: flex;
  }
  .live_page .title i {
    padding: 12px;
  }
  .live_page .title p {
    font-size: 14px;
    padding: 13px;
  }
  .live_page .saction-live-prayer {
    margin-top: 50px;
  }
  .live_page .saction-live-prayer .buttons {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .live_page .saction-live-prayer .buttons .buttons-live {
    height: 40px;
  }
  .live_page .saction-live-prayer .buttons .buttons-live a, .live_page .saction-live-prayer .buttons .buttons-live button {
    font-size: 16px;
  }
  .live_page .saction-live-prayer .content {
    height: 550px;
    display: grid;
    grid-template-columns: repeat(6, 4fr);
    grid-template-rows: repeat(1, 1fr);
    grid-gap: 15px;
  }
  .live_page .saction-live-prayer .content .live {
    height: inherit;
    grid-column: 1/5;
  }
  .live_page .saction-live-prayer .content .live .container-no-live {
    height: inherit;
  }
  .live_page .saction-live-prayer .content .live .container-no-live .container-live {
    height: 100%;
  }
  .live_page .saction-live-prayer .content .live .container-no-live .container-live p {
    font-size: 48px;
  }
  .live_page .saction-live-prayer .content .live .container-live {
    height: inherit;
  }
  .live_page .saction-live-prayer .content .live .container-live iframe {
    height: 100%;
  }
  .live_page .saction-live-prayer .content .prayer_time {
    grid-column: 5/7;
    height: 100%;
  }
  .live_page .saction-live-prayer .content .prayer_time .title-pray p {
    font-size: 22px;
  }
  .live_page .saction-live-prayer .content .prayer_time .IndexPray {
    width: 100%;
  }
  .live_page .saction-live-prayer .content .prayer_time .IndexPray .PrayTimeLine {
    font-size: 18px;
  }
  .live_page .alzyara {
    height: -moz-fit-content;
    height: fit-content;
    margin-top: 80px;
  }
  .live_page .alzyara .title-alzyara {
    font-size: 25px;
    margin-top: 60px;
    margin-bottom: 20px;
  }
  .live_page .alzyara .alzyara-content {
    height: 700px;
  }
  .live_page .alzyara .alzyara-content .title p {
    font-size: 30px;
    padding: 20px;
  }
  .live_page .alzyara .alzyara-content .text-con {
    font-size: 25px;
  }
  .live_page .alzyara .alzyara-content .voice {
    height: 80px;
  }
  .live_page .saction-viduos {
    margin-top: 80px;
  }
  .live_page .saction-viduos .title-saction-viduos {
    font-size: 25px;
    margin-top: 60px;
    margin-bottom: 20px;
  }
  .live_page .saction-viduos .viduos-list div .box-img2 {
    height: 180px;
  }
  .live_page .saction-viduos .viduos-list div p {
    font-size: 14px;
  }
}
.transport {
  overflow: hidden;
  margin-bottom: 100px;
  margin-top: 20px;
}
.transport .title {
  display: flex;
}
.transport .title i {
  color: #979090;
  padding: 12px;
  height: -moz-fit-content;
  height: fit-content;
}
.transport .title p {
  font-size: 14px;
  color: #979090;
  width: -moz-fit-content;
  width: fit-content;
  padding: 13px;
  margin: 0;
}
.transport .swiper_transport {
  width: 100%;
  height: 485px;
}
.transport .swiper_transport .swiper-wrapper {
  border-radius: 30px;
  height: inherit;
}
.transport .swiper_transport .swiper-wrapper .swiper-slide {
  height: 470px;
  border-radius: inherit;
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.transport .swiper_transport .swiper-wrapper .swiper-slide a {
  text-decoration: none;
  color: #0c0c0c;
}
.transport .swiper_transport .swiper-wrapper .swiper-slide a:hover {
  color: #707070;
}
.transport .swiper_transport .swiper-wrapper .swiper-slide div {
  border-radius: inherit;
  position: relative;
  display: inline-block;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
}
.transport .swiper_transport .swiper-wrapper .swiper-slide div > :nth-child(1) {
  color: #f9f9f9;
  position: absolute;
  top: 380px;
  right: 15%;
  width: 70%;
  text-decoration: none;
}
.transport .swiper_transport .swiper-wrapper .swiper-slide div > :nth-child(2) {
  width: 180px;
  height: 30px;
  z-index: 12;
  position: absolute;
  top: 375px;
  right: 10px;
  color: #f9f9f9;
}
.transport .swiper_transport .swiper-wrapper .swiper-slide div > :nth-child(2) i {
  color: #009DAF;
}
.transport .swiper_transport .swiper-transport-button-next {
  display: flex;
  position: absolute;
  top: 390px;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 100%;
  opacity: 1;
  font-size: 22px;
  right: 94%;
  color: #f9f9f9;
  z-index: 12;
  background-color: initial;
}
.transport .swiper_transport .swiper-transport-button-prev {
  display: flex;
  position: absolute;
  top: 390px;
  right: 86%;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 100%;
  opacity: 1;
  font-size: 22px;
  z-index: 12;
}
.transport .swiper_transport .swiper-pagination {
  display: flex;
  position: absolute;
  top: 392px;
  right: 89.5%;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 100%;
  opacity: 1;
  font-size: 15px;
  color: #f9f9f9;
}
.transport .text_content {
  line-height: 1.5;
  word-spacing: 5px;
  font-size: 20px;
  height: -moz-fit-content;
  height: fit-content;
}
.transport .text_content p {
  margin-top: 10px;
  color: #3f3f3f;
}

/* Mobile Styles */
@media screen and (max-width: 767px) {
  .transport {
    margin-bottom: 50px;
    margin-top: 20px;
  }
  .transport .title {
    display: flex;
  }
  .transport .title i {
    padding: 6px;
  }
  .transport .title p {
    font-size: 12px;
    padding: 10px;
  }
  .transport .swiper_transport {
    height: 300px;
  }
  .transport .swiper_transport .swiper-wrapper .swiper-slide {
    height: 280px;
  }
  .transport .swiper_transport .swiper-wrapper .swiper-slide div > :nth-child(1) {
    top: 200px;
    right: 5%;
  }
  .transport .swiper_transport .swiper-wrapper .swiper-slide div > :nth-child(2) {
    top: 195px;
    right: 5px;
  }
  .transport .swiper_transport .swiper-transport-button-next {
    top: 210px;
    right: 85%;
  }
  .transport .swiper_transport .swiper-transport-button-prev {
    top: 210px;
    right: 77%;
  }
  .transport .swiper_transport .swiper-pagination {
    top: 212px;
    right: 82%;
  }
  .transport .text_content {
    font-size: 16px;
  }
}
/* iPad Styles */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .transport {
    margin-bottom: 100px;
    margin-top: 20px;
  }
  .transport .title {
    display: flex;
  }
  .transport .title i {
    padding: 12px;
  }
  .transport .title p {
    font-size: 14px;
    padding: 13px;
  }
  .transport .swiper_transport {
    height: 485px;
  }
  .transport .swiper_transport .swiper-wrapper .swiper-slide {
    height: 470px;
  }
  .transport .swiper_transport .swiper-wrapper .swiper-slide div > :nth-child(1) {
    top: 380px;
    right: 15%;
  }
  .transport .swiper_transport .swiper-wrapper .swiper-slide div > :nth-child(2) {
    top: 375px;
    right: 10px;
  }
  .transport .swiper_transport .swiper-transport-button-next {
    top: 390px;
    right: 94%;
  }
  .transport .swiper_transport .swiper-transport-button-prev {
    top: 390px;
    right: 86%;
  }
  .transport .swiper_transport .swiper-pagination {
    top: 392px;
    right: 89.5%;
  }
  .transport .text_content {
    font-size: 20px;
  }
}
.almodef {
  overflow: hidden;
  margin-bottom: 100px;
  margin-top: 20px;
}
.almodef .title {
  display: flex;
}
.almodef .title i {
  color: #979090;
  padding: 12px;
  height: -moz-fit-content;
  height: fit-content;
}
.almodef .title p {
  font-size: 14px;
  color: #979090;
  width: -moz-fit-content;
  width: fit-content;
  padding: 13px;
  margin: 0;
}
.almodef .swiper_almodef {
  width: 100%;
  height: 485px;
}
.almodef .swiper_almodef .swiper-wrapper {
  border-radius: 30px;
  height: inherit;
}
.almodef .swiper_almodef .swiper-wrapper .swiper-slide {
  height: 470px;
  border-radius: inherit;
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.almodef .swiper_almodef .swiper-wrapper .swiper-slide a {
  text-decoration: none;
  color: #0c0c0c;
}
.almodef .swiper_almodef .swiper-wrapper .swiper-slide a:hover {
  color: #707070;
}
.almodef .swiper_almodef .swiper-wrapper .swiper-slide div {
  border-radius: inherit;
  position: relative;
  display: inline-block;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}
.almodef .swiper_almodef .swiper-wrapper .swiper-slide div > :nth-child(1) {
  color: #f9f9f9;
  position: absolute;
  top: 380px;
  right: 15%;
  width: 70%;
  text-decoration: none;
}
.almodef .swiper_almodef .swiper-wrapper .swiper-slide div > :nth-child(2) {
  width: 180px;
  height: 30px;
  z-index: 12;
  position: absolute;
  top: 375px;
  right: 10px;
  color: #f9f9f9;
}
.almodef .swiper_almodef .swiper-wrapper .swiper-slide div > :nth-child(2) i {
  color: #009DAF;
}
.almodef .swiper_almodef .swiper-almodef-button-next {
  display: flex;
  position: absolute;
  top: 390px;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 100%;
  opacity: 1;
  font-size: 22px;
  right: 94%;
  color: #f9f9f9;
  z-index: 12;
  background-color: initial;
}
.almodef .swiper_almodef .swiper-almodef-button-prev {
  display: flex;
  position: absolute;
  top: 390px;
  right: 86%;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 100%;
  opacity: 1;
  font-size: 22px;
  z-index: 12;
}
.almodef .swiper_almodef .swiper-pagination {
  display: flex;
  position: absolute;
  top: 392px;
  right: 89.5%;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 100%;
  opacity: 1;
  font-size: 15px;
  color: #f9f9f9;
}
.almodef .text_content {
  word-spacing: 5px;
  font-size: 20px;
  height: -moz-fit-content;
  height: fit-content;
}
.almodef .text_content p {
  margin-top: 10px;
  color: #3f3f3f;
}

/* Mobile Styles */
@media screen and (max-width: 767px) {
  .almodef {
    overflow: hidden;
    margin-bottom: 70px;
    margin-top: 20px;
  }
  .almodef .title {
    display: flex;
  }
  .almodef .title i {
    color: #979090;
    padding: 10px;
  }
  .almodef .title p {
    font-size: 12px;
    color: #979090;
    padding: 10px;
    margin: 0;
  }
  .almodef .swiper_almodef {
    height: 300px;
  }
  .almodef .swiper_almodef .swiper-wrapper .swiper-slide {
    height: 290px;
    font-size: 14px;
  }
  .almodef .swiper_almodef .swiper-wrapper .swiper-slide div > :nth-child(1) {
    top: 210px;
    right: 8%;
    width: 80%;
    font-size: 12px;
  }
  .almodef .swiper_almodef .swiper-wrapper .swiper-slide div > :nth-child(2) {
    top: 205px;
    right: 5px;
    width: 150px;
    height: 25px;
    font-size: 12px;
  }
  .almodef .swiper_almodef .swiper-almodef-button-next {
    top: 220px;
    right: 88%;
    font-size: 20px;
  }
  .almodef .swiper_almodef .swiper-almodef-button-prev {
    top: 220px;
    right: 82%;
    font-size: 20px;
  }
  .almodef .swiper_almodef .swiper-pagination {
    top: 222px;
    right: 85.5%;
    font-size: 12px;
  }
  .almodef .text_content {
    font-size: 16px;
  }
}
/* iPad Styles */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .almodef {
    overflow: hidden;
    margin-bottom: 80px;
    margin-top: 40px;
  }
  .almodef .title {
    display: flex;
  }
  .almodef .title i {
    padding: 12px;
  }
  .almodef .title p {
    font-size: 14px;
    padding: 13px;
    margin: 0;
  }
  .almodef .swiper_almodef {
    height: 450px;
  }
  .almodef .swiper_almodef .swiper-wrapper .swiper-slide {
    height: 430px;
    font-size: 16px;
  }
  .almodef .swiper_almodef .swiper-wrapper .swiper-slide div > :nth-child(1) {
    top: 320px;
    right: 15%;
    width: 70%;
  }
  .almodef .swiper_almodef .swiper-wrapper .swiper-slide div > :nth-child(2) {
    top: 315px;
    right: 10px;
    width: 180px;
    height: 30px;
  }
  .almodef .swiper_almodef .swiper-almodef-button-next {
    top: 330px;
    right: 94%;
    font-size: 22px;
  }
  .almodef .swiper_almodef .swiper-almodef-button-prev {
    top: 330px;
    right: 86%;
    font-size: 22px;
  }
  .almodef .swiper_almodef .swiper-pagination {
    top: 332px;
    right: 89.5%;
    font-size: 15px;
  }
  .almodef .text_content {
    font-size: 18px;
  }
}
.form_coll_us {
  height: 60rem;
  width: 100%;
  background-color: #eeeeee;
}
.form_coll_us .img {
  height: 50%;
  width: 100%;
  position: relative;
  display: inline-block;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.form_coll_us .img .layuots {
  width: 100%;
  height: 200%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
.form_coll_us .img .layuots .message_email {
  width: 65rem;
  height: 30rem;
  background-color: #f9f9f9;
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
}
.form_coll_us .img .layuots .message_email .saction_loco {
  width: 30%;
  background-color: #009DAF;
  border-radius: 0 30px 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.form_coll_us .img .layuots .message_email .saction_loco div {
  height: -moz-fit-content;
  height: fit-content;
  width: 80%;
}
.form_coll_us .img .layuots .message_email .saction_loco div .logo {
  width: 160px;
  height: 140px;
  margin: auto;
}
.form_coll_us .img .layuots .message_email .saction_loco div .logo img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
.form_coll_us .img .layuots .message_email .saction_loco div .text {
  width: 100%;
}
.form_coll_us .img .layuots .message_email .saction_loco div .text div {
  width: 100%;
  margin-bottom: 25px;
  display: inline-block;
  text-align: center;
  font-size: 14px;
}
.form_coll_us .img .layuots .message_email .saction_loco div .text div > * {
  color: #eeeeee;
  width: 100%;
  display: inline-block;
}
.form_coll_us .img .layuots .message_email .saction_loco div .text div strong {
  font-size: 22px;
}
.form_coll_us .img .layuots .message_email .saction_loco div .text .tawasl {
  width: -moz-fit-content;
  width: fit-content;
}
.form_coll_us .img .layuots .message_email .saction_loco div .text .tawasl p {
  text-align: left;
  padding: 0;
  margin: 0;
  width: -moz-fit-content;
  width: fit-content;
}
.form_coll_us .img .layuots .message_email .saction_loco div .text .tawasl p i {
  padding-right: 5px;
  font-size: 14px;
  color: yellow;
}
.form_coll_us .img .layuots .message_email .forms {
  width: 70%;
  grid-column: 1/3;
  grid-row: 2/9;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.form_coll_us .img .layuots .message_email .forms form {
  width: 60%;
  margin: auto;
}
.form_coll_us .img .layuots .message_email .forms form .form-group {
  margin-top: 25px;
}
.form_coll_us .img .layuots .message_email .forms form .form-group input {
  border-radius: 100px;
  background-color: #eeeeee;
}
.form_coll_us .img .layuots .message_email .forms form .form-group textarea {
  min-height: 120px;
  max-height: 120px;
  border-radius: 20px;
  background-color: #eeeeee;
}
.form_coll_us .img .layuots .message_email .forms form button {
  margin-top: 25px;
  border: none;
  border-radius: 30px;
  padding: 5px;
  width: 100px;
  font-size: 18px;
  color: #f9f9f9;
  background-color: rgba(251, 157, 18, 0.82);
}

/* Mobile Styles */
@media screen and (max-width: 767px) {
  .form_coll_us {
    height: 100%;
  }
  .form_coll_us .img {
    height: 40%;
  }
  .form_coll_us .img .layuots {
    height: 100%;
  }
  .form_coll_us .img .layuots .message_email {
    width: 100%;
    height: auto;
    flex-direction: column;
  }
  .form_coll_us .img .layuots .message_email .saction_loco {
    width: 100%;
    border-radius: 0;
  }
  .form_coll_us .img .layuots .message_email .saction_loco div .logo {
    width: 100px;
    height: 90px;
    visibility: hidden;
  }
  .form_coll_us .img .layuots .message_email .saction_loco div .text div {
    font-size: 13px;
  }
  .form_coll_us .img .layuots .message_email .saction_loco div .text div strong {
    font-size: 18px;
  }
  .form_coll_us .img .layuots .message_email .saction_loco div .text .tawasl p i {
    font-size: 12px;
  }
  .form_coll_us .img .layuots .message_email .forms {
    width: 100%;
  }
  .form_coll_us .img .layuots .message_email .forms form {
    width: 100%;
  }
  .form_coll_us .img .layuots .message_email .forms form .form-group input,
  .form_coll_us .img .layuots .message_email .forms form .form-group textarea {
    width: 100%;
  }
  .form_coll_us .img .layuots .message_email .forms form button {
    width: 100%;
    font-size: 16px;
  }
}
/* iPad Styles */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .form_coll_us {
    height: 60rem;
  }
  .form_coll_us .img {
    height: 50%;
  }
  .form_coll_us .img .layuots {
    height: 200%;
  }
  .form_coll_us .img .layuots .message_email {
    width: 65rem;
    height: 30rem;
  }
  .form_coll_us .img .layuots .message_email .saction_loco div .logo {
    width: 160px;
    height: 140px;
  }
  .form_coll_us .img .layuots .message_email .saction_loco div .text div {
    font-size: 14px;
  }
  .form_coll_us .img .layuots .message_email .saction_loco div .text div strong {
    font-size: 22px;
  }
  .form_coll_us .img .layuots .message_email .saction_loco div .text .tawasl p i {
    font-size: 14px;
  }
  .form_coll_us .img .layuots .message_email .forms {
    width: 70%;
  }
  .form_coll_us .img .layuots .message_email .forms form {
    width: 60%;
  }
  .form_coll_us .img .layuots .message_email .forms form button {
    font-size: 18px;
  }
}
.page-single {
  margin-top: 77px;
  margin-bottom: 100px;
}
.page-single .title {
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 22px;
  line-height: 36px;
  font-weight: bold;
}
.page-single .content {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  display: block;
  text-align: justify;
}
.page-single img:hover {
  opacity: 0.8;
}
.page-single .group-name p {
  color: #555555;
  font-weight: bold;
  line-height: 48px;
  display: block;
}
.page-single .group-name i {
  color: #555555;
}
.page-single .image-only1 {
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: 70% 35%;
  grid-template-rows: auto 30px;
}
.page-single .image-only1 .box-img, .page-single .image-only1 .one-image {
  width: 100%;
  height: inherit;
  -o-object-fit: contain;
     object-fit: contain;
}
.page-single .image-only1 .box-img img, .page-single .image-only1 .one-image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 450px;
  border-radius: 10px;
}
.page-single .image-only1 .content-related {
  padding: 0 15px;
}
.page-single .image-only1 .content-related .hr-topic {
  border: none;
  border-top: 3px solid black;
}
.page-single .image-only1 .content-related .content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}
.page-single .image-only1 .content-related .content a {
  text-decoration: none;
  color: black;
}
.page-single .image-only1 .content-related .content a .row1 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}
.page-single .image-only1 .content-related .content a .row1 .img-of-row {
  width: 30%;
  height: 90px;
  text-align: center;
}
.page-single .image-only1 .content-related .content a .row1 .img-of-row img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 90px;
  border-radius: 10px;
}
.page-single .image-only1 .content-related .content a .row1 .content-of-row {
  width: 70%;
}
.page-single .image-only1 .content-related .content a .row1 .content-of-row .content-text {
  font-size: 12px;
  color: #707070;
  padding-right: 10px;
}
.page-single .image-only1 .content-related .content a .row1 .content-of-row .date {
  font-size: 12px;
  color: #a2a1a1;
}
.page-single .image-only2 {
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 30px;
  display: grid;
  grid-template-rows: auto 30px;
}
.page-single .image-only2 .box-img, .page-single .image-only2 .one-image {
  width: 100%;
  height: inherit;
  -o-object-fit: contain;
     object-fit: contain;
}
.page-single .image-only2 .box-img img, .page-single .image-only2 .one-image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 450px;
  border-radius: 10px;
}
.page-single .text-only {
  margin: 2px;
}
.page-single .text-image div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.page-single .text-image div img {
  width: 25%;
  border-radius: 20px;
  padding: 10px;
}
.page-single .text-image div p {
  margin-top: 10px;
  text-align: justify;
}
.page-single .swiper-imgs {
  width: 100%;
  height: 485px;
  border-radius: 40px;
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.page-single .swiper-imgs .swiper-wrapper {
  height: inherit;
}
.page-single .swiper-imgs .swiper-wrapper .swiper-slide {
  height: 485px;
  border-radius: inherit;
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-single .swiper-imgs .swiper-wrapper .swiper-slide a, .page-single .swiper-imgs .swiper-wrapper .swiper-slide p {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.page-single .swiper-imgs .swiper-wrapper .swiper-slide .img {
  height: 100%;
  width: 100%;
  border-radius: inherit;
  position: relative;
  display: inline-block;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 0;
}
.page-single .swiper-imgs .swiper-wrapper .swiper-slide .img a {
  color: #f9f9f9;
  position: absolute;
  top: 380px;
  right: 15%;
  width: 70%;
  text-decoration: none;
}
.page-single .swiper-imgs .swiper-wrapper .swiper-slide .img a:hover {
  color: #707070;
}
.page-single .swiper-imgs .swiper-wrapper .swiper-slide .img p {
  width: 180px;
  height: 30px;
  z-index: 12;
  position: absolute;
  top: 375px;
  right: 10px;
  color: #f9f9f9;
}
.page-single .swiper-imgs .swiper-wrapper .swiper-slide .img p i {
  color: #009DAF;
}
.page-single .swiper-imgs .swiper-wrapper .swiper-slide-active a, .page-single .swiper-imgs .swiper-wrapper .swiper-slide-active p {
  opacity: 1;
}
.page-single .swiper-imgs .swiper-news-button-next {
  display: flex;
  position: absolute;
  top: 390px;
  right: 94%;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 100%;
  opacity: 1;
  font-size: 22px;
  color: #f9f9f9;
  z-index: 12;
  background-color: initial;
}
.page-single .swiper-imgs .swiper-news-button-prev {
  display: flex;
  position: absolute;
  top: 390px;
  right: 86%;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 100%;
  opacity: 1;
  font-size: 22px;
  z-index: 12;
}
.page-single .swiper-imgs .swiper-pagination {
  display: flex;
  position: absolute;
  top: 392px;
  right: 89.5%;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 100%;
  opacity: 1;
  font-size: 15px;
  color: #f9f9f9;
}
.page-single .saction-imgs {
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 50px;
  margin-bottom: 100px;
}
.page-single .saction-imgs P {
  color: #707070;
  font-size: 18px;
}
.page-single .saction-imgs > :nth-child(1) a {
  text-decoration: none;
}
.page-single .saction-imgs .list-img {
  margin-top: 20px;
}
.page-single .saction-imgs .list-img > * {
  padding: calc(var(--bs-gutter-x) * 0.5);
}
.page-single .saction-imgs .list-img div div {
  width: 100%;
  height: 165px;
  -o-object-fit: contain;
     object-fit: contain;
  text-align: center;
}
.page-single .saction-imgs .list-img div div img {
  width: 100%;
  max-width: 618px;
  height: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-single .saction-imgs .button_imgs {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-single .saction-imgs .button_imgs a {
  text-decoration: none;
}
.page-single .saction-imgs .button_imgs i {
  transform: rotate(270deg);
  margin: 2px;
}

/* iPad Styles */
@media (max-width: 999px) {
  .page-single .title a {
    margin-top: 10px;
    font-size: 20px;
  }
  .page-single .image-only .box-image img {
    height: 300px;
  }
  .page-single .image-only .content-related .content {
    margin-bottom: 5px;
  }
  .page-single .image-only .content-related .content p {
    font-size: 18px;
  }
  .page-single .image-only .content-related .list-item {
    margin-bottom: 3px;
  }
  .page-single .image-only .content-related .list-item .box-img {
    width: 30%;
    height: 60px;
    text-align: center;
  }
  .page-single .image-only .content-related .list-item .box-img img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 60px;
    border-radius: 10px;
  }
  .page-single .image-only .content-related .list-item .content-of-row {
    height: -moz-fit-content;
    height: fit-content;
  }
  .page-single .image-only .content-related .list-item .content-of-row a p {
    font-size: 10px;
    padding: 0 10px 0 0;
    margin: 0;
  }
  .page-single .image-only .content-related .list-item .content-of-row .date {
    font-size: 9px;
  }
}
@media screen and (max-width: 768px) {
  .page-single .group-name p {
    font-size: 18px;
    line-height: 36px;
  }
  .page-single .image-only {
    margin-bottom: 10px;
    grid-template-columns: 100%;
  }
  .page-single .image-only .box-image img {
    height: 250px;
  }
  .page-single .image-only .content-related {
    display: none;
  }
  .page-single .text-only .content {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 28px;
  }
  .page-single .text-image .title {
    margin-top: 10px;
    font-size: 18px;
  }
  .page-single .text-image div {
    flex-direction: column;
  }
  .page-single .text-image div img {
    width: 100%;
  }
  .page-single .text-image div p {
    width: 100%;
  }
  .page-single .saction-imgs {
    margin-top: 30px;
    margin-bottom: 50px;
  }
  .page-single .saction-imgs p {
    font-size: 18px;
  }
  .page-single .swiper-imgs {
    height: 350px;
    border-radius: 30px;
  }
  @keyframes fadeOut {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  .page-single .swiper-imgs .swiper-wrapper {
    height: inherit;
  }
  .page-single .swiper-imgs .swiper-wrapper .swiper-slide {
    height: 350px;
  }
  .page-single .swiper-imgs .swiper-wrapper .swiper-slide a, .page-single .swiper-imgs .swiper-wrapper .swiper-slide p {
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  .page-single .swiper-imgs .swiper-wrapper .swiper-slide .img a {
    top: 260px;
    font-size: 16px;
  }
  .page-single .swiper-imgs .swiper-wrapper .swiper-slide .img p {
    display: none;
  }
  .page-single .swiper-imgs .swiper-wrapper .swiper-slide-active a, .page-single .swiper-imgs .swiper-wrapper .swiper-slide-active p {
    opacity: 1;
  }
  .page-single .swiper-imgs .swiper-news-button-next {
    display: none;
  }
  .page-single .swiper-imgs .swiper-news-button-prev {
    display: none;
  }
  .page-single .swiper-imgs .swiper-pagination {
    display: none;
  }
}
.text-viewer {
  margin-bottom: 100px;
  margin-top: 20px;
}
.text-viewer.read-mode .title i {
  color: #979090;
}
.text-viewer.read-mode .title p {
  color: #979090;
}
.text-viewer.read-mode .container-viewer .content-viewer {
  background-color: #EEDDBB;
}
.text-viewer.read-mode .container-viewer .content-viewer .header .title p {
  color: #8D6E42;
}
.text-viewer.read-mode .container-viewer .content-viewer .header .group-controller .change-font-size {
  background-color: #189D5D;
}
.text-viewer.read-mode .container-viewer .content-viewer .header .group-controller .change-font-size p {
  color: #ffffff;
}
.text-viewer.read-mode .container-viewer .content-viewer .header .group-controller .change-font-size button {
  background-color: #ffffff;
}
.text-viewer.read-mode .container-viewer .content-viewer .header .group-controller .change-font-size button:hover {
  background-color: #EBEBEB;
}
.text-viewer.read-mode .container-viewer .content-viewer .header .group-controller button {
  background-color: #EBEBEB;
}
.text-viewer.read-mode .container-viewer .content-viewer .header .group-controller button:hover {
  background-color: #BBBBBB;
}
.text-viewer.read-mode .container-viewer .content-viewer .header .group-controller button i {
  color: #777777;
}
.text-viewer.read-mode .container-viewer .content-viewer .header .group-controller .active-light {
  background-color: #977B53;
}
.text-viewer.read-mode .container-viewer .content-viewer .header .group-controller .active-light i {
  color: #ffffff;
}
.text-viewer.read-mode .container-viewer .content-viewer .header .group-controller .active-read {
  background-color: #ffffff;
}
.text-viewer.read-mode .container-viewer .content-viewer .header .group-controller .active-read i {
  color: #977B53;
}
.text-viewer.read-mode .container-viewer .content-viewer .text-content p {
  color: #3f3f3f;
}
.text-viewer .title {
  display: flex;
}
.text-viewer .title i {
  color: #979090;
  padding: 12px;
  height: -moz-fit-content;
  height: fit-content;
}
.text-viewer .title p {
  font-size: 14px;
  color: #979090;
  width: -moz-fit-content;
  width: fit-content;
  padding: 13px;
  margin: 0;
}
.text-viewer .container-viewer {
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 80px;
}
.text-viewer .container-viewer .title-alzyara {
  font-size: 24px;
  margin-top: 60px;
  margin-bottom: 20px;
}
.text-viewer .container-viewer .content-viewer {
  background-color: #ffffff;
  width: 100%;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 50px;
  padding-right: 50px;
}
.text-viewer .container-viewer .content-viewer .header {
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: space-between;
}
.text-viewer .container-viewer .content-viewer .header .title p {
  font-weight: bold;
  font-size: 24px;
  color: #1e1e1e;
  padding: 20px;
}
.text-viewer .container-viewer .content-viewer .header .group-controller {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}
.text-viewer .container-viewer .content-viewer .header .group-controller .change-font-size {
  border-radius: 50px;
  background-color: #EBEBEB;
  padding: 3px;
  gap: 5px;
  display: flex;
  align-items: center;
}
.text-viewer .container-viewer .content-viewer .header .group-controller .change-font-size p {
  font-size: 14px;
  color: #777777;
  margin: 0;
}
.text-viewer .container-viewer .content-viewer .header .group-controller .change-font-size button {
  background-color: #ffffff;
}
.text-viewer .container-viewer .content-viewer .header .group-controller .change-font-size button:hover {
  background-color: #EBEBEB;
}
.text-viewer .container-viewer .content-viewer .header .group-controller button {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  background-color: #EBEBEB;
  padding: 5px;
}
.text-viewer .container-viewer .content-viewer .header .group-controller button:hover {
  background-color: #BBBBBB;
}
.text-viewer .container-viewer .content-viewer .header .group-controller button i {
  font-size: 18px;
  color: #777777;
  margin: 6px;
}
.text-viewer .container-viewer .content-viewer .header .group-controller .active-light {
  background-color: #343434;
}
.text-viewer .container-viewer .content-viewer .header .group-controller .active-light i {
  color: #ffffff;
}
.text-viewer .container-viewer .content-viewer .text-content {
  line-height: 2.5;
  word-spacing: 5px;
  font-size: 18px;
  height: -moz-fit-content;
  height: fit-content;
  -o-object-fit: cover;
     object-fit: cover;
}
.text-viewer .container-viewer .content-viewer .text-content p {
  text-align: justify;
  margin-top: 10px;
  color: #3f3f3f;
}

@media (max-width: 768px) {
  .text-viewer .title {
    flex-direction: column;
    align-items: center;
  }
  .text-viewer .title i {
    padding: 0;
    margin-bottom: 10px;
  }
  .text-viewer .title p {
    padding: 0;
  }
  .text-viewer .container-viewer {
    margin-top: 40px;
  }
  .text-viewer .container-viewer .content-viewer {
    padding-left: 20px;
    padding-right: 20px;
  }
  .text-viewer .container-viewer .content-viewer .header {
    flex-direction: column;
  }
  .text-viewer .container-viewer .content-viewer .header .title {
    text-align: center;
  }
  .text-viewer .container-viewer .content-viewer .header .title p {
    padding: 10px 0;
  }
  .text-viewer .container-viewer .content-viewer .header .group-controller {
    flex-direction: row;
    gap: 5px;
  }
}
/* Mobile Styles */
/* iPad Styles */
.section-publication-main {
  background-color: #F0F0F0;
  padding-top: 50px;
  padding-bottom: 50px;
}
.section-publication-main .section-publication {
  padding-bottom: 50px;
  padding-top: 50px;
}
.section-publication-main .section-publication .path {
  width: 80%;
  margin: auto;
  color: #888888;
}
.section-publication-main .section-publication .path p {
  margin-right: 20px;
}
.section-publication-main .section-publication .container-fluid {
  width: 80%;
  margin: auto;
}
.section-publication-main .section-publication .content-publication-main {
  padding: 20px;
  border-radius: 20px;
  background-color: white;
  display: flex;
  flex-wrap: wrap;
  justify-content: right;
  align-items: flex-start;
  flex-direction: row;
}
.section-publication-main .section-publication .content-publication-main .publication-not-found {
  height: 4vh;
  font-size: 20px;
  font-weight: bold;
}
.section-publication-main .section-publication .card {
  padding: 3vh;
  margin: 2vh;
  width: auto;
  border-radius: 20px;
  border: none;
  transition: 0.3s;
}
.section-publication-main .section-publication .card:hover {
  background-color: #EEEEEE;
  transform: scale(1.1);
}
.section-publication-main .section-publication .card a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 20px;
}
.section-publication-main .section-publication .card a div {
  display: flex;
  justify-content: center;
}
.section-publication-main .section-publication .card a div img {
  height: 17vh;
  width: 13vh;
  border-radius: 20px;
  margin-bottom: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-publication-main .section-publication .card a div {
  display: flex;
  justify-content: center;
}
.section-publication-main .section-publication .card a div p {
  max-width: 15vh;
  text-align: center;
}

@media screen and (max-width: 900px) {
  .section-publication-main .section-publication .container-fluid {
    width: 90%;
  }
  .section-publication-main .section-publication .content-publication-main {
    padding: 10px;
  }
  .section-publication-main .section-publication .card {
    padding: 2vh;
    margin: 1vh;
  }
  .section-publication-main .section-publication .card a div img {
    height: 12vh;
    width: 10vh;
  }
  .section-publication-main .section-publication .card a div p {
    max-width: 10vh;
  }
}
@media screen and (max-width: 768px) {
  .section-publication-main .section-publication .path {
    width: 100%;
    padding: 0 20px;
  }
  .section-publication-main .section-publication .container-fluid {
    width: 100%;
    padding: 0 20px;
  }
  .section-publication-main .section-publication .content-publication-main {
    padding: 10px;
  }
  .section-publication-main .section-publication .card {
    padding: 1.5vh;
    margin: 1vh;
  }
  .section-publication-main .section-publication .card a div img {
    height: 8vh;
    width: 7vh;
  }
  .section-publication-main .section-publication .card a div p {
    max-width: 7vh;
    font-size: 16px;
  }
}
.section-publication-main .section-publication .content-publication-main {
  display: flex;
}
.section-publication-main .section-publication .content-publication-main .action-publication {
  padding-top: 50px;
  width: 35%;
}
.section-publication-main .section-publication .content-publication-main .action-publication div {
  display: flex;
  justify-content: center;
}
.section-publication-main .section-publication .content-publication-main .action-publication div img {
  height: 32vh;
  width: 25vh;
  border-radius: 20px;
  margin-bottom: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-publication-main .section-publication .content-publication-main .action-publication div {
  display: flex;
  justify-content: center;
}
.section-publication-main .section-publication .content-publication-main .action-publication div .custom-button {
  margin-top: 2vh;
  border-radius: 10px;
  width: 25vh;
  height: 5vh;
  background-color: #53D95D;
  color: white;
  font-weight: bold;
  border: none;
  /* Additional styling properties */
  /* Add your desired styles here */
  transition: 0.2s;
}
.section-publication-main .section-publication .content-publication-main .action-publication div .custom-button:hover {
  background-color: #53D95D;
  color: white;
  transform: scale(1.1);
}
.section-publication-main .section-publication .content-publication-main .content-publication {
  padding: 50px 50px 50px 0;
  width: 65%;
  height: -moz-max-content;
  height: max-content;
}
.section-publication-main .section-publication .content-publication-main .content-publication .title-publication {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
}
.section-publication-main .section-publication .content-publication-main .content-publication .text-publication {
  font-size: 14px;
  color: #555555;
  margin-bottom: 20px;
}
.section-publication-main .section-publication .content-publication-main .content-publication .publication p {
  font-size: 20px;
  color: #555555;
}
.section-publication-main .section-publication .content-publication-main .content-publication .publication p i {
  margin: 1vh;
  font-size: 18px;
}
@media screen and (max-width: 900px) {
  .section-publication-main .section-publication-main .section-publication .content {
    flex-direction: row;
  }
  .section-publication-main .section-publication-main .section-publication .content .action-publication {
    width: 100%;
  }
  .section-publication-main .section-publication-main .section-publication .content .action-publication div img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  .section-publication-main .section-publication-main .section-publication .content .action-publication div .custom-button {
    width: 100%;
  }
  .section-publication-main .section-publication-main .section-publication .content .content-publication {
    width: 100%;
    padding: 20px;
  }
  .section-publication-main .section-publication-main .section-publication .content .content-publication .title-publication {
    font-size: 24px;
  }
  .section-publication-main .section-publication-main .section-publication .content .content-publication .text-publication {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .section-publication-main .section-publication-main .section-publication .content .action-publication,
  .section-publication-main .section-publication-main .section-publication .content .content-publication {
    padding: 10px;
  }
  .section-publication-main .section-publication-main .section-publication .content .action-publication div .custom-button {
    margin-top: 1vh;
  }
  .section-publication-main .section-publication-main .section-publication .content .content-publication .title-publication {
    font-size: 20px;
  }
  .section-publication-main .section-publication-main .section-publication .content .content-publication .text-publication {
    font-size: 10px;
  }
  .section-publication-main .section-publication-main .section-publication .content .content-publication .publication p {
    font-size: 16px;
  }
  .section-publication-main .section-publication-main .section-publication .content .content-publication .publication p i {
    margin: 0.5vh;
    font-size: 14px;
  }
}

@media screen and (max-width: 900px) {
  .section-publication-main .section-publication .content-publication-main {
    flex-direction: row;
  }
  .section-publication-main .section-publication .content-publication-main .action-publication {
    width: 100%;
  }
  .section-publication-main .section-publication .content-publication-main .action-publication div img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  .section-publication-main .section-publication .content-publication-main .action-publication div .custom-button {
    width: 100%;
  }
  .section-publication-main .section-publication .content-publication-main .content-publication {
    width: 100%;
    padding: 20px;
  }
  .section-publication-main .section-publication .content-publication-main .content-publication .title-publication {
    font-size: 24px;
  }
  .section-publication-main .section-publication .content-publication-main .content-publication .text-publication {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .section-publication-main .section-publication .content-publication-main .action-publication,
  .section-publication-main .section-publication .content-publication-main .content-publication {
    padding: 10px;
  }
  .section-publication-main .section-publication .content-publication-main .action-publication div .custom-button {
    margin-top: 1vh;
  }
  .section-publication-main .section-publication .content-publication-main .content-publication .title-publication {
    font-size: 20px;
  }
  .section-publication-main .section-publication .content-publication-main .content-publication .text-publication {
    font-size: 10px;
  }
  .section-publication-main .section-publication .content-publication-main .content-publication .publication p {
    font-size: 16px;
  }
  .section-publication-main .section-publication .content-publication-main .content-publication .publication p i {
    margin: 0.5vh;
    font-size: 14px;
  }
}
.viduos .list-viduos {
  display: grid;
  grid-template-columns: repeat(4, 4fr);
  grid-template-rows: repeat(1, 1fr);
  grid-gap: 30px;
}
.viduos .list-viduos .video {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  cursor: pointer;
}
.viduos .list-viduos .video .plyri .btnu {
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.25);
  background-color: rgba(238, 238, 238, 0.45);
  border-radius: 20px;
  padding: 15px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.viduos .list-viduos .video .plyri .btnu:hover {
  transform: scale(1.1);
}
.viduos .list-viduos .video .plyri .btnu img {
  width: 100%;
  max-width: 618px;
  height: 168px;
  border-radius: 15px;
}
.viduos .list-viduos .video .plyri .btnu .title {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.viduos .list-viduos .video .plyri .btnu .title p {
  color: black;
  font-size: 14px;
  margin-top: 10px;
  padding: 0;
  font-weight: bold;
}
.viduos .list-viduos .video .plyri .btnu .title span {
  font-size: 15px;
  margin-top: 10px;
}
.viduos .list-viduos .video .plyri .btnu .title span i {
  padding: 0 0 0 5px !important;
  margin: 0;
}

.main_videos {
  margin-bottom: 250px;
  box-sizing: border-box;
}
.main_videos .title {
  display: flex;
}
.main_videos .title i {
  color: #979090;
  padding: 12px;
  margin-top: auto;
  margin-bottom: auto;
  height: -moz-fit-content;
  height: fit-content;
}
.main_videos .title p {
  font-size: 18px;
  color: #979090;
  width: -moz-fit-content;
  width: fit-content;
  padding: 13px;
  margin: 0;
  height: -moz-fit-content;
  height: fit-content;
}
.main_videos .title p a {
  text-decoration: none;
  color: #707070;
}
.main_videos .title p a:hover {
  color: #009DAF;
}
.main_videos .main_viduos {
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 50px;
}
.main_videos .main_viduos .video {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  cursor: pointer;
  display: flex;
  justify-content: right;
}
.main_videos .main_viduos .video .plyri .btnu img {
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.25);
  width: 400px;
  max-width: 618px;
  height: 225px;
  border-radius: 20px;
  transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
}
.main_videos .main_viduos .video .plyri .btnu img:hover {
  transform: scale(1.1);
  opacity: 0.9;
}
.main_videos .main_viduos .video .title {
  display: flex;
  justify-content: right;
  flex-direction: column;
  padding-right: 25px;
}
.main_videos .main_viduos .video .title p {
  font-size: 25px;
  margin-top: 10px;
  color: black;
  font-weight: bold;
}
.main_videos .saction-viduos {
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 40px;
}
.main_videos .saction-viduos .heading_viduos {
  display: flex;
  justify-content: space-between;
}
.main_videos .saction-viduos .heading_viduos .title P {
  color: #707070;
  font-size: 18px;
  padding: 0;
}
.main_videos .saction-viduos .heading_viduos .button_viduos {
  display: flex;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
}
.main_videos .saction-viduos .heading_viduos .button_viduos a {
  text-decoration: none;
  color: #02a5a5;
}
.main_videos .saction-viduos .heading_viduos .button_viduos a:hover {
  color: #00af9d;
}
.main_videos .saction-viduos .list-viduos {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 4fr);
  grid-template-rows: repeat(1, 1fr);
  grid-gap: 20px;
}
.main_videos .saction-viduos .list-viduos .video {
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.main_videos .saction-viduos .list-viduos .video .plyri .btnu {
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.25);
  background-color: rgba(238, 238, 238, 0.45);
  border-radius: 20px;
  padding: 15px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  width: 100%;
  height: 280px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.main_videos .saction-viduos .list-viduos .video .plyri .btnu:hover {
  transform: scale(1.1);
}
.main_videos .saction-viduos .list-viduos .video .plyri .btnu img {
  width: 100%;
  max-width: 618px;
  height: 168px;
  border-radius: 15px;
}
.main_videos .saction-viduos .list-viduos .video .plyri .btnu p {
  color: black;
  font-size: 14px;
  font-weight: bold;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0;
  margin: 0;
}
.main_videos .saction-viduos .list-viduos .video .plyri .btnu span {
  font-size: 15px;
  margin-top: 10px;
}
.main_videos .saction-viduos .list-viduos .video .plyri .btnu span i {
  padding: 0 0 0 5px !important;
  margin: 0;
}

:root {
  --main-white: #ffffff;
  --main-bg-color: #009DAF;
  --main-bg-color-light: #18C2D5;
  --main-bg-color-dark: #0a4b52;
  --main-bg-color-15: rgba(0, 157, 175, 0.15);
  --warning-color: #D2973B;
}

:root {
  /*--dl-color-gray-white: #FFFF;*/
  --main-color: blue;
  --font-size: var(--font-size-x1);
  --bg-color: #f5f5f5;
  --dl-color-gray-white: #ffffff;
  --dl-color-gray-black: #000000;
  --dl-color-gray-700: #a8a8a8;
  --dl-space-space-unit: 8px;
  --dl-space-space-oneandhalfunits: calc(var(--dl-space-space-unit) * 1.5);
  --dl-space-space-threeunits: calc(var(--dl-space-space-unit) * 3);
  --dl-space-space-fiveunits: calc(var(--dl-space-space-unit) * 5);
  --font-size-x0: 14px;
  --font-size-x1: 16px;
  --font-size-x2: 18px;
  --font-size-x3: 20px;
  --font-size-x4: 25px;
  --font-size-buttons: 14px;
}

:root {
  --dl-space-space-unit: 12px;
  --dl-space-space-halfunit: calc(var(--dl-space-space-unit) / 2);
  --dl-space-space-oneandhalfunits: calc(var(--dl-space-space-unit) * 1.5);
  --dl-space-space-twoandhalfunits: calc(var(--dl-space-space-unit) * 2.5);
  --dl-space-space-threeunits: calc(var(--dl-space-space-unit) * 3);
  --dl-space-space-fourunits: calc(var(--dl-space-space-unit) * 4);
  --dl-space-space-fiveunits: calc(var(--dl-space-space-unit) * 5);
  --dl-space-space-sixunits: calc(var(--dl-space-space-unit) * 6);
  --dl-radius-radius-radius8: 8px;
}

/*body {*/
/*    overflow-x: hidden;*/
/*}*/
.section-gallery {
  height: 500px;
  margin-top: 90px;
}
.section-gallery .gallery {
  display: grid;
  grid-template-columns: repeat(4, 4fr);
  grid-template-rows: repeat(2, 4fr);
  grid-gap: 20px;
  background-color: #fff;
  color: #444;
  height: 400px;
}
.section-gallery .gallery div {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
}
.section-gallery .gallery div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
}
.section-gallery .gallery div img:hover {
  transform: scale(1.1);
  /* Apply opacity or box-shadow here */
  opacity: 0.9;
}
.section-gallery .gallery div div {
  width: 100%;
  height: 100%;
  display: flex;
  background-color: #f1f1f1;
  align-items: center;
  justify-content: center;
}
.section-gallery .gallery div div span {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 16px;
  color: #555555;
}
.section-gallery .gallery > :nth-child(1) {
  grid-column: 1/2;
  grid-row: 1/2;
}
.section-gallery .gallery > :nth-child(2) {
  grid-column: 1/2;
  grid-row: 2/3;
}
.section-gallery .gallery > :nth-child(3) {
  grid-column: 2/3;
  grid-row: 1/3;
}
.section-gallery .gallery > :nth-child(4) {
  grid-column: 3/5;
  grid-row: 1/3;
}

@media (max-width: 900px) {
  .section-gallery {
    margin-top: 50px;
  }
  .section-gallery .gallery {
    height: 350px;
    grid-template-columns: repeat(3, 4fr);
    grid-template-rows: repeat(3, 4fr);
  }
  .section-gallery .gallery div {
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
  }
  .section-gallery .gallery div img {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .section-gallery .gallery > :nth-child(1) {
    grid-column: 1/2;
    grid-row: 3/4;
  }
  .section-gallery .gallery > :nth-child(2) {
    grid-column: 2/3;
    grid-row: 3/4;
  }
  .section-gallery .gallery > :nth-child(3) {
    grid-column: 3/4;
    grid-row: 3/4;
  }
  .section-gallery .gallery > :nth-child(4) {
    grid-column: 1/4;
    grid-row: 1/3;
  }
}
.news-slider {
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 50px;
}
.news-slider .swiper-news {
  width: 100%;
  height: 485px;
  border-radius: 40px;
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.news-slider .swiper-news .swiper-wrapper {
  height: inherit;
}
.news-slider .swiper-news .swiper-wrapper .swiper-slide {
  height: 485px;
  border-radius: inherit;
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.news-slider .swiper-news .swiper-wrapper .swiper-slide a, .news-slider .swiper-news .swiper-wrapper .swiper-slide p {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.news-slider .swiper-news .swiper-wrapper .swiper-slide .img {
  height: 100%;
  width: 100%;
  border-radius: inherit;
  position: relative;
  display: inline-block;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 0;
}
.news-slider .swiper-news .swiper-wrapper .swiper-slide .img > div {
  box-shadow: inset -8vh -63vh 1000px -40vh rgb(0, 0, 0);
}
.news-slider .swiper-news .swiper-wrapper .swiper-slide .img a {
  color: #f9f9f9;
  position: absolute;
  top: 380px;
  right: 15%;
  width: 70%;
  text-decoration: none;
}
.news-slider .swiper-news .swiper-wrapper .swiper-slide .img a:hover {
  color: #707070;
}
.news-slider .swiper-news .swiper-wrapper .swiper-slide .img p {
  width: 180px;
  height: 30px;
  z-index: 12;
  position: absolute;
  top: 375px;
  right: 10px;
  color: #f9f9f9;
}
.news-slider .swiper-news .swiper-wrapper .swiper-slide .img p i {
  color: #009DAF;
}
.news-slider .swiper-news .swiper-wrapper .swiper-slide-active a, .news-slider .swiper-news .swiper-wrapper .swiper-slide-active p {
  opacity: 1;
}
.news-slider .swiper-news .swiper-news-button-next {
  display: flex;
  position: absolute;
  top: 390px;
  right: 94%;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 100%;
  opacity: 1;
  font-size: 22px;
  color: #f9f9f9;
  z-index: 12;
  background-color: initial;
}
.news-slider .swiper-news .swiper-news-button-prev {
  display: flex;
  position: absolute;
  top: 390px;
  right: 86%;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 100%;
  opacity: 1;
  font-size: 22px;
  z-index: 12;
}
.news-slider .swiper-news .swiper-pagination {
  display: flex;
  position: absolute;
  top: 392px;
  right: 89.5%;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 100%;
  opacity: 1;
  font-size: 15px;
  color: #f9f9f9;
}

@media (max-width: 767px) {
  .news-slider .swiper-news {
    height: 350px;
    border-radius: 30px;
  }
  @keyframes fadeOut {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  .news-slider .swiper-news .swiper-wrapper {
    height: inherit;
  }
  .news-slider .swiper-news .swiper-wrapper .swiper-slide {
    height: 350px;
  }
  .news-slider .swiper-news .swiper-wrapper .swiper-slide a, .news-slider .swiper-news .swiper-wrapper .swiper-slide p {
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  .news-slider .swiper-news .swiper-wrapper .swiper-slide .img a {
    top: 260px;
    font-size: 16px;
  }
  .news-slider .swiper-news .swiper-wrapper .swiper-slide .img p {
    display: none;
  }
  .news-slider .swiper-news .swiper-wrapper .swiper-slide-active a, .news-slider .swiper-news .swiper-wrapper .swiper-slide-active p {
    opacity: 1;
  }
  .news-slider .swiper-news .swiper-news-button-next {
    display: none;
  }
  .news-slider .swiper-news .swiper-news-button-prev {
    display: none;
  }
  .news-slider .swiper-news .swiper-pagination {
    display: none;
  }
}
.section-live {
  margin-top: 70px;
}
.section-live .title-live-section {
  margin-bottom: 30px;
}
.section-live .title-live-section p {
  height: 100%;
  font-size: var(--font-size-x4);
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  align-items: end;
  justify-content: start;
}
.section-live .title-live-section p i {
  color: red;
  padding: 10px;
  font-size: 20px;
}
.section-live .title-live-section .icon-liv {
  display: flex;
  align-items: flex-start;
  justify-content: end;
}
.section-live .title-live-section .icon-liv i {
  color: red;
  font-size: 40px;
  margin-top: auto;
  margin-bottom: auto;
}
.section-live .container-no-live div {
  height: 600px;
  width: 100%;
  display: flex;
  align-items: center;
  border-radius: 20px;
  flex-direction: column;
  background-size: cover;
  justify-content: center;
  background-image: linear-gradient(90deg, rgba(44, 71, 89, 0.2) 0%, rgba(44, 71, 89, 0.2) 100%), url("https://imamhussain.org/filestorage/images/5f5df8b542ec4.jpg");
  opacity: 80%;
  background-position: center;
}
.section-live .container-no-live div svg {
  width: 150px;
  fill: rgb(255, 253, 253);
}
.section-live .container-no-live div p {
  font-size: var(--font-size-x1);
  color: #eeeeee;
}
.section-live #player1 {
  height: 600px;
  border-radius: 20px;
}
.section-live #player1 iframe {
  width: 100%;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .section-live {
    margin-top: 20px;
  }
  .section-live .title-live-section .icon-liv i {
    font-size: 40px;
  }
  .section-live .title-live-section p i {
    font-size: 15px;
  }
  .section-live .container-no-live div {
    height: 270px;
  }
  .section-live .container-no-live div svg {
    width: 100px;
    fill: rgb(255, 253, 253);
  }
  .section-live .container-no-live div p {
    font-size: var(--font-size-x1);
    color: #eeeeee;
  }
  .section-live #player1 {
    height: 30vh;
  }
}
.section_media {
  margin-top: 130px;
  padding: 40px 0;
  background-color: #EEEEEE;
  min-height: 605px;
}
.section_media .section-heading {
  margin-bottom: 40px;
}
.section_media .viduos {
  margin-top: 65px;
  margin-bottom: 45px;
  padding: 10px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 300px;
  grid-gap: 30px;
}
.section_media .viduos .video {
  cursor: pointer;
  margin: auto;
  height: 100%;
  width: 100%;
}
.section_media .viduos .video .plyri {
  width: 100%;
}
.section_media .viduos .video .plyri .btnu {
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.25);
  background-color: white;
  border-radius: 20px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
.section_media .viduos .video .plyri .btnu:hover {
  transform: scale(1.05);
}
.section_media .viduos .video .plyri .btnu img {
  width: 100%;
  max-width: 618px;
  height: 230px;
  border-radius: 15px 15px 0 0;
}
.section_media .viduos .video .plyri .btnu .title {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 120px;
  padding: 15px;
}
.section_media .viduos .video .plyri .btnu .title p {
  color: black;
  font-size: 14px;
  margin-top: 10px;
  padding: 0;
  font-weight: bold;
}
.section_media .viduos .video .plyri .btnu .title span {
  font-size: 15px;
  margin-top: 10px;
}
.section_media .viduos .video .plyri .btnu .title span i {
  padding: 0 0 0 5px !important;
  margin: 0;
}
.section_media .audio {
  width: 100%;
  height: 450PX;
  background-color: #ffffff;
  border-radius: 20px;
  display: grid;
  grid-template-columns: repeat(2, 4fr);
  grid-template-rows: repeat(1, 1fr);
  grid-gap: 20px;
  padding: 20px;
}
.section_media .audio .box_player {
  display: grid;
  grid-template-columns: repeat(1, 4fr);
  grid-template-rows: 85% 10%;
  grid-gap: 20px;
}
.section_media .audio .box_player .box_img {
  background-color: rgba(232, 137, 14, 0.81);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}
.section_media .audio .box_player .box_img span {
  background-color: #f1bf71;
  padding: 10px 15px;
  border-radius: 20px;
  font-size: 13px;
  color: #ffffff;
}
.section_media .audio .box_player .box_img p {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: bold;
  color: #ffffff;
}
.section_media .audio .box_player .box_img img {
  width: 150px;
  height: 150px;
  border-radius: inherit;
}
.section_media .audio .box_player .player {
  height: 100%;
  background-color: #00cf7d;
}
.section_media .audio .list_audio {
  overflow-y: scroll;
}
.section_media .audio .list_audio .saudio {
  background-color: #e5e5e5;
  display: flex;
  justify-content: space-between;
  height: -moz-fit-content;
  height: fit-content;
  width: 98%;
  color: #707070;
  border-radius: 50px;
  padding: 0 15px;
  border: rgba(204, 204, 204, 0.75) 1px solid;
  margin-bottom: 15px;
}
.section_media .audio .list_audio .saudio p {
  margin: auto 0;
  height: -moz-fit-content;
  height: fit-content;
}
.section_media .audio .list_audio .saudio span {
  font-size: 50px;
  height: -moz-fit-content;
  height: fit-content;
}
.section_media .audio .list_audio .saudio span i {
  height: -moz-fit-content;
  height: fit-content;
}
.section_media .more {
  width: -moz-fit-content;
  width: fit-content;
  height: 40px;
  margin: 10px auto;
  padding: 20px 0;
}
.section_media .more > a {
  font-size: var(--font-size-x1);
  background-color: white;
  border: 1px solid #C4C4C4;
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 30px;
  text-decoration: none;
  color: #979090;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: start;
  padding: 5px 15px;
}
.section_media .more > a:hover {
  color: #3a3a3a;
  border: 1px solid #454242;
}
.section_media .more > a span {
  text-align: center;
  min-width: 100px;
  display: inline-block;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
}
.section_media .more > a span i {
  font-size: var(--font-size-x1);
  margin-left: 5px;
  margin-right: 5px;
}

.play i {
  color: #009DAF !important;
}

@media screen and (max-width: 900px) {
  .section_media {
    margin-top: 130px;
    padding: 0 0 20px;
    background-color: #EEEEEE;
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
  .section_media .section-heading {
    margin-bottom: 20px;
  }
  .section_media .viduos {
    margin-top: 30px;
    margin-bottom: 0;
    padding: 10px 0;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: repeat(3, 1fr);
    grid-gap: 30px;
  }
  .section_media .viduos .video {
    cursor: pointer;
    margin: auto;
    height: 100%;
    width: 100%;
  }
  .section_media .viduos .video .plyri {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
  }
  .section_media .viduos .video .plyri .btnu {
    box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.25);
    background-color: white;
    border-radius: 20px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
  }
  .section_media .viduos .video .plyri .btnu:hover {
    transform: scale(1.05);
  }
  .section_media .viduos .video .plyri .btnu img {
    width: 100%;
    border-radius: 15px 15px 0 0;
  }
  .section_media .viduos .video .plyri .btnu .title {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
  .section_media .viduos .video .plyri .btnu .title p {
    color: black;
    font-size: 14px;
    margin-top: 10px;
    padding: 0;
    font-weight: bold;
  }
  .section_media .viduos .video .plyri .btnu .title span {
    font-size: 15px;
    margin-top: 10px;
  }
  .section_media .viduos .video .plyri .btnu .title span i {
    padding: 0 0 0 5px !important;
    margin: 0;
  }
  .section_media .audio {
    width: 100%;
    height: 450PX;
    background-color: #ffffff;
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(2, 4fr);
    grid-template-rows: repeat(1, 1fr);
    grid-gap: 20px;
    padding: 20px;
  }
  .section_media .audio .box_player {
    display: grid;
    grid-template-columns: repeat(1, 4fr);
    grid-template-rows: 85% 10%;
    grid-gap: 20px;
  }
  .section_media .audio .box_player .box_img {
    background-color: rgba(232, 137, 14, 0.81);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
  }
  .section_media .audio .box_player .box_img span {
    background-color: #f1bf71;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 13px;
    color: #ffffff;
  }
  .section_media .audio .box_player .box_img p {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: bold;
    color: #ffffff;
  }
  .section_media .audio .box_player .box_img img {
    width: 150px;
    height: 150px;
    border-radius: inherit;
  }
  .section_media .audio .box_player .player {
    height: 100%;
    background-color: #00cf7d;
  }
  .section_media .audio .list_audio {
    overflow-y: scroll;
  }
  .section_media .audio .list_audio .saudio {
    background-color: #e5e5e5;
    display: flex;
    justify-content: space-between;
    height: -moz-fit-content;
    height: fit-content;
    width: 98%;
    color: #707070;
    border-radius: 50px;
    padding: 0 15px;
    border: rgba(204, 204, 204, 0.75) 1px solid;
    margin-bottom: 15px;
  }
  .section_media .audio .list_audio .saudio p {
    margin: auto 0;
    height: -moz-fit-content;
    height: fit-content;
  }
  .section_media .audio .list_audio .saudio span {
    font-size: 50px;
    height: -moz-fit-content;
    height: fit-content;
  }
  .section_media .audio .list_audio .saudio span i {
    height: -moz-fit-content;
    height: fit-content;
  }
  .section_media .more {
    width: -moz-fit-content;
    width: fit-content;
    height: 40px;
    margin: 10px auto;
    padding: 20px 0;
  }
  .section_media .more > a {
    font-size: var(--font-size-x1);
    background-color: white;
    border: 1px solid #C4C4C4;
    height: -moz-fit-content;
    height: fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 30px;
    text-decoration: none;
    color: #979090;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: start;
    padding: 5px 15px;
  }
  .section_media .more > a:hover {
    color: #3a3a3a;
    border: 1px solid #454242;
  }
  .section_media .more > a span {
    text-align: center;
    min-width: 100px;
    display: inline-block;
    white-space: nowrap;
    width: -moz-fit-content;
    width: fit-content;
  }
  .section_media .more > a span i {
    font-size: var(--font-size-x1);
    margin-left: 5px;
    margin-right: 5px;
  }
  .play i {
    color: #009DAF !important;
  }
}
.publications_section {
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 180px;
  margin-top: 100px;
  width: 100%;
}
.publications_section .publications {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(4, 4fr);
  grid-template-rows: repeat(1, 4fr);
  grid-gap: 60px;
  background-color: #fff;
  color: #444;
  height: 350px;
  width: 100%;
}
.publications_section .publications .book {
  grid-column: 1/2;
  grid-row: 1/2;
  text-align: center;
  height: inherit;
  width: inherit;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.publications_section .publications .book .box-img-publications {
  border-radius: 20px;
}
.publications_section .publications .book .box-img-publications img {
  height: 290px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.publications_section .publications .book a {
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  width: 100%;
  padding: 10px;
  border-radius: 20px;
  margin-top: 20px;
  margin-bottom: 0;
  color: #eeeeee;
  background-color: rgba(251, 157, 18, 0.82);
}
.publications_section .publications .description {
  grid-column: 2/5;
  grid-row: 1/2;
  height: 100%;
  border-radius: 20px;
  background-color: #009DAF;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
.publications_section .publications .description .prev, .publications_section .publications .description .next {
  font-size: 22px;
  border: 0;
  background-color: #009DAF;
  border-radius: 20px;
  padding: 50px;
}
.publications_section .publications .description .contents {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #eeeeee;
  font-size: 20px;
}

@media (max-width: 767px) {
  .publications_section {
    margin-top: 50px;
    margin-bottom: 100px;
    height: 463px;
  }
  .publications_section .publications {
    margin-top: 20px;
    display: inline-block;
    background-color: #fff;
    color: #444;
    height: -moz-fit-content;
    height: fit-content;
  }
  .publications_section .publications .book {
    text-align: center;
    height: 60px;
  }
  .publications_section .publications .book .box-img-publications {
    top: 0;
    margin: auto;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    border-radius: 20px;
    border: 3px Silver solid;
  }
  .publications_section .publications .book .box-img-publications img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 144px;
    border-radius: 20px;
  }
  .publications_section .publications .book a {
    text-decoration: none;
    display: inline-block;
    width: 100%;
    padding: 10px;
    border-radius: 20px;
    margin-top: 20px;
    margin-bottom: 0;
    color: #eeeeee;
    background-color: rgba(251, 157, 18, 0.82);
    position: relative;
    top: 140%;
  }
  .publications_section .publications .description {
    height: 170px;
    border-radius: 20px;
    background-color: #009DAF;
  }
  .publications_section .publications .description .prev, .publications_section .publications .description .next {
    font-size: 22px;
    border: 0;
    background-color: #009DAF;
    border-radius: 20px;
    padding: 5px;
    position: relative;
    top: 20px;
    left: 40px;
    height: -moz-fit-content;
    height: fit-content;
  }
  .publications_section .publications .description .prev {
    left: -40px;
  }
  .publications_section .publications .description .contents {
    display: flex;
    align-items: end;
    justify-content: center;
    text-align: center;
    color: #eeeeee;
    font-size: 15px;
    margin-bottom: 10px;
  }
}
.section-projects .projects {
  height: 400px;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.section-projects .projects .colr_bg {
  background-color: rgba(0, 157, 175, 0.9);
  height: 100%;
}
.section-projects .projects .colr_bg div {
  height: 100%;
  display: flex;
  align-items: center;
}
.section-projects .projects .colr_bg div .layuot {
  width: 100%;
  height: 250px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.section-projects .projects .colr_bg div .layuot .content_project {
  color: #eeeeee;
  height: 100%;
  display: flex;
  width: 50%;
  justify-content: space-between;
  flex-direction: column;
}
.section-projects .projects .colr_bg div .layuot .content_project i {
  margin-bottom: 1rem;
}
.section-projects .projects .colr_bg div .layuot .content_project .title_projects {
  height: 55px;
  width: 100%;
  align-items: end;
}
.section-projects .projects .colr_bg div .layuot .content_project .title_projects a {
  display: inline-block;
  top: 27px;
  color: #eeeeee;
  right: 0px;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  text-align: right;
  padding-left: 5px;
  padding-bottom: 10px;
  border-bottom: 3px rgb(245, 149, 47) solid;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
}
.section-projects .projects .colr_bg div .layuot .content_project .disc {
  width: 100%;
  align-items: end;
}
.section-projects .projects .colr_bg div .layuot .content_project .date {
  height: 30px;
  width: 100%;
  padding: 0;
  margin: 0;
}
.section-projects .projects .colr_bg div .layuot .img_content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.section-projects .projects .colr_bg div .layuot .img_content .prev-project {
  border-radius: 100%;
  border: none;
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px;
  background-color: inherit;
}
.section-projects .projects .colr_bg div .layuot .img_content .prev-project i {
  margin: 0;
  font-size: 22px;
  color: #eeeeee;
}
.section-projects .projects .colr_bg div .layuot .img_content .box_img_project {
  position: relative;
  width: 400px;
  height: 250px;
  overflow: hidden;
  border-radius: 30px;
  border: 5px #eeeeee solid;
}
.section-projects .projects .colr_bg div .layuot .img_content .box_img_project img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
}
.section-projects .projects .colr_bg div .layuot .img_content .box_img_project img:hover {
  transform: scale(1.1);
  /* Apply opacity or box-shadow here */
  opacity: 0.9;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.section-projects .projects .colr_bg div .layuot .img_content .next-project {
  border-radius: 100%;
  border: none;
  padding: 20px;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  opacity: 1;
  font-size: 22px;
  color: #f9f9f9;
  z-index: 12;
  background-color: initial;
}
.section-projects .projects .colr_bg div .layuot .img_content .next-project i {
  margin: 0;
  font-size: 22px;
  color: #eeeeee;
}

@media (max-width: 767px) {
  .section-projects {
    margin-bottom: 150px;
  }
  .section-projects .projects {
    height: 350px;
  }
  .section-projects .projects .colr_bg div {
    height: 100%;
    display: flex;
    align-items: start;
  }
  .section-projects .projects .colr_bg div .layuot {
    width: 100%;
    height: 250px;
    display: inline-block;
  }
  .section-projects .projects .colr_bg div .layuot .content_project {
    color: #eeeeee;
    height: 100%;
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-direction: column;
  }
  .section-projects .projects .colr_bg div .layuot .content_project i {
    margin-bottom: 1rem;
  }
  .section-projects .projects .colr_bg div .layuot .content_project .title_projects {
    height: 55px;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .section-projects .projects .colr_bg div .layuot .content_project .title_projects a {
    display: inline-block;
    top: 27px;
    color: #eeeeee;
    right: 0px;
    width: -moz-fit-content;
    width: fit-content;
    height: 100%;
    text-align: right;
    padding-left: 5px;
    padding-bottom: 10px;
    border-bottom: 3px rgb(245, 149, 47) solid;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
  }
  .section-projects .projects .colr_bg div .layuot .content_project .disc {
    width: 100%;
    align-items: center;
    text-align: center;
    line-height: 2;
    font-size: 14px;
    max-height: 110px;
    overflow: hidden;
  }
  .section-projects .projects .colr_bg div .layuot .content_project .date {
    height: 40px;
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    font-size: 14px;
  }
  .section-projects .projects .colr_bg div .layuot .img_content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .section-projects .projects .colr_bg div .layuot .img_content .prev-project {
    border-radius: 100%;
    border: none;
    height: -moz-fit-content;
    height: fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 10px;
    margin-top: 35px;
    background-color: inherit;
  }
  .section-projects .projects .colr_bg div .layuot .img_content .prev-project i {
    margin: 0;
    font-size: 22px;
    color: #eeeeee;
  }
  .section-projects .projects .colr_bg div .layuot .img_content .box_img_project {
    position: relative;
    width: 400px;
    height: 180px;
    overflow: hidden;
    border-radius: 30px;
    border: 5px #eeeeee solid;
  }
  .section-projects .projects .colr_bg div .layuot .img_content .box_img_project img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
  }
  .section-projects .projects .colr_bg div .layuot .img_content .box_img_project img:hover {
    transform: scale(1.1);
    /* Apply opacity or box-shadow here */
    opacity: 0.9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }
  .section-projects .projects .colr_bg div .layuot .img_content .next-project {
    border-radius: 100%;
    border: none;
    padding: 10px;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    opacity: 1;
    font-size: 22px;
    color: #f9f9f9;
    z-index: 12;
    background-color: initial;
    margin-top: 35px;
  }
  .section-projects .projects .colr_bg div .layuot .img_content .next-project i {
    margin: 0;
    font-size: 22px;
    color: #eeeeee;
  }
}
.top-img-shadow {
  position: relative;
  display: inline-block;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 89vh;
  width: 100%;
}
.top-img-shadow > div {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: end;
  justify-content: center;
  margin: auto;
}
.top-img-shadow > div .hadeeth {
  margin-bottom: 50px;
}

.hadith-title {
  background-color: var(--main-bg-color);
  color: var(--main-white);
  border-radius: 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding: 6px 35px;
}
.hadith-title p {
  margin: 0;
  padding-bottom: 3px;
}

.hadeeth-imam {
  color: var(--warning-color);
  font-weight: bold;
}

@media only screen and (max-width: 600px) {
  .top-img-shadow {
    padding-top: 30vh;
    padding-bottom: 30px;
    margin-top: auto !important;
    margin-bottom: auto !important;
    height: 47vh;
    width: 100%;
  }
  .hadeeth {
    align-items: center;
  }
  .hadeeth img {
    width: 45px;
    height: 35px;
  }
  .hadith-title {
    font-size: 12px;
  }
  .hadeeth-content {
    font-size: 12px;
    width: 90% !important;
    margin-left: 5% !important;
    margin-right: 5% !important;
  }
  .hadeeth-imam {
    font-size: 10px;
  }
}
.section_seera {
  margin-top: 50px;
}
.section_seera .section_heading_seera {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.section_seera .section_heading_seera .title {
  height: 55px;
}
.section_seera .section_heading_seera .title P {
  color: rgb(0, 0, 0);
  right: 0px;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  text-align: right;
  padding: 0 0 0 14px;
  border-bottom: 3px rgb(245, 149, 47) solid;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
}
.section_seera .section_heading_seera .title P a {
  height: -moz-fit-content;
  height: fit-content;
  padding: 0;
  margin: 0;
}
.section_seera .section_heading_seera .dropdown-list_seera {
  width: 200px;
}
.section_seera .section_heading_seera .dropdown-list_seera .dropdown_section_seera {
  padding: 0;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  white-space: nowrap;
}
.section_seera .section_heading_seera .dropdown-list_seera .dropdown_section_seera:hover .dropdown-content_seera {
  display: block;
}
.section_seera .section_heading_seera .dropdown-list_seera .dropdown_section_seera:hover .dropbtn {
  background-color: #009DAF;
  color: #eeeeee;
}
.section_seera .section_heading_seera .dropdown-list_seera .dropdown_section_seera .dropbtn {
  font-size: var(--font-size-x1);
  min-width: 70px;
  background-color: white;
  border: 1px solid #C4C4C4;
  width: 200px;
  border-radius: 30px;
  text-decoration: none;
  color: #979090;
  transition: 0.3s;
  height: 70%;
  margin-top: auto;
  margin-bottom: auto;
  padding-top: 5px;
  padding-bottom: 5px;
}
.section_seera .section_heading_seera .dropdown-list_seera .dropdown_section_seera .dropbtn span {
  font-size: 15px;
}
.section_seera .section_heading_seera .dropdown-list_seera .dropdown_section_seera .dropbtn i {
  padding: 4px;
  font-size: 12px;
}
.section_seera .section_heading_seera .dropdown-list_seera .dropdown_section_seera .dropdown-content_seera {
  display: none;
  font-size: 13px;
  border-radius: 10px;
  position: absolute;
  background-color: #f9f9f9;
  width: 200px;
  height: inherit;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.section_seera .section_heading_seera .dropdown-list_seera .dropdown_section_seera .dropdown-content_seera .dropdown-item {
  border-radius: 10px;
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  white-space: nowrap;
}
.section_seera .section_heading_seera .dropdown-list_seera .dropdown_section_seera .dropdown-content_seera .dropdown-item span {
  font-size: 15px;
}
.section_seera .section_heading_seera .dropdown-list_seera .dropdown_section_seera .dropdown-content_seera .dropdown-item:hover {
  background-color: #ddd;
}
.section_seera .content_seera {
  height: -moz-fit-content;
  height: fit-content;
}
.section_seera .content_seera a i {
  margin-right: 2px;
}
.section_seera .content_seera .name-sera {
  height: -moz-fit-content;
  height: fit-content;
}
.section_seera .content_seera .name-sera P {
  cursor: pointer;
  font-style: normal;
  text-align: center;
  font-size: var(--font-size-x1);
  padding: 10px;
  transition: 0.3s;
  border-color: #68686f;
  border-style: solid;
  border-width: 1px;
  border-radius: 56px;
  color: #eeeeee;
  width: 350px;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto;
  background-color: #009DAF;
}
.section_seera .content_seera .text-content {
  height: 230px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  text-align: justify;
  justify-content: center;
}
.section_seera .content_seera .text-content > div {
  display: none;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 180px;
}
.section_seera .content_seera .text-content > div p {
  font-size: 20px;
  font-weight: 400;
  color: #646464;
  line-height: 40px;
}
.section_seera .content_seera .text-content .active {
  display: block;
}
.section_seera .content_seera .read_more {
  width: -moz-fit-content;
  width: fit-content;
  height: 40px;
  margin: auto;
}
.section_seera .content_seera .read_more a {
  font-size: var(--font-size-x1);
  background-color: white;
  border: 1px solid #C4C4C4;
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 30px;
  text-decoration: none;
  color: #979090;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: start;
  padding: 5px 15px;
}
.section_seera .content_seera .read_more a:hover {
  color: #3a3a3a;
  border: 1px solid #454242;
}
.section_seera .content_seera .read_more a span {
  text-align: center;
  min-width: 100px;
  display: inline-block;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
}
.section_seera .content_seera .read_more a span i {
  font-size: var(--font-size-x1);
  margin-left: 5px;
  margin-right: 5px;
}

@media (max-width: 767px) {
  .section_seera {
    display: inline-block;
    margin-top: 50px;
  }
  .section_seera .section_heading_seera {
    display: flex;
    margin-bottom: 15px;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
  }
  .section_seera .section_heading_seera .title {
    height: 55px;
    margin-bottom: 20px;
  }
  .section_seera .section_heading_seera .title P {
    color: rgb(0, 0, 0);
    right: 0px;
    width: -moz-fit-content;
    width: fit-content;
    height: 100%;
    text-align: right;
    padding: 0 0 0 14px;
    border-bottom: 3px rgb(209, 207, 205) solid;
    font-size: var(--font-size-x2);
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
  }
  .section_seera .section_heading_seera .title P a {
    height: -moz-fit-content;
    height: fit-content;
    padding: 0;
    margin: 0;
  }
  .section_seera .section_heading_seera .dropdown-list_seera .dropdown_section_seera {
    padding: 0;
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
    white-space: nowrap;
  }
  .section_seera .section_heading_seera .dropdown-list_seera .dropdown_section_seera:hover .dropdown-content_seera {
    display: block;
  }
  .section_seera .section_heading_seera .dropdown-list_seera .dropdown_section_seera:hover .dropbtn {
    background-color: #009DAF;
    color: #eeeeee;
  }
  .section_seera .section_heading_seera .dropdown-list_seera .dropdown_section_seera .dropbtn {
    font-size: var(--font-size-x1);
    min-width: 70px;
    background-color: white;
    border: 1px solid #C4C4C4;
    border-radius: 30px;
    text-decoration: none;
    color: #979090;
    transition: 0.3s;
    height: 70%;
    margin-top: auto;
    margin-bottom: auto;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .section_seera .section_heading_seera .dropdown-list_seera .dropdown_section_seera .dropbtn span {
    font-size: 15px;
  }
  .section_seera .section_heading_seera .dropdown-list_seera .dropdown_section_seera .dropbtn i {
    padding: 4px;
    font-size: 12px;
  }
  .section_seera .section_heading_seera .dropdown-list_seera .dropdown_section_seera .dropdown-content_seera {
    display: none;
    font-size: 13px;
    border-radius: 10px;
    position: absolute;
    background-color: #f9f9f9;
    width: 200px;
    height: inherit;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  .section_seera .section_heading_seera .dropdown-list_seera .dropdown_section_seera .dropdown-content_seera .dropdown-item {
    border-radius: 10px;
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    white-space: nowrap;
  }
  .section_seera .section_heading_seera .dropdown-list_seera .dropdown_section_seera .dropdown-content_seera .dropdown-item span {
    font-size: 15px;
  }
  .section_seera .section_heading_seera .dropdown-list_seera .dropdown_section_seera .dropdown-content_seera .dropdown-item:hover {
    background-color: #ddd;
  }
  .section_seera .content_seera {
    height: -moz-fit-content;
    height: fit-content;
  }
  .section_seera .content_seera a i {
    margin-right: 2px;
  }
  .section_seera .content_seera .name-sera {
    height: -moz-fit-content;
    height: fit-content;
  }
  .section_seera .content_seera .name-sera P {
    cursor: pointer;
    font-style: normal;
    text-align: center;
    font-size: 14px;
    transition: 0.3s;
    border-radius: 56px;
    color: #eeeeee;
    width: -moz-fit-content;
    width: fit-content;
    padding: 10px 30px;
    height: -moz-fit-content;
    height: fit-content;
    margin: auto;
    background-color: #009DAF;
  }
  .section_seera .content_seera .text-content .active {
    display: block;
  }
}
.section-events {
  margin-top: 100px;
  height: -moz-fit-content;
  height: fit-content;
}
.section-events .content-section-events {
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  grid-template-columns: repeat(4, 4fr);
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 10px;
}
.section-events .content-section-events .title_events {
  height: 360px;
  grid-column: 1/4;
  grid-row: 1/3;
  border-radius: 20px;
  position: relative;
  display: inline-block;
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
}
.section-events .content-section-events .title_events .background-rgb {
  margin-top: 0;
  height: inherit;
  background-color: rgba(232, 137, 14, 0.81);
  position: relative;
  border-radius: inherit;
}
.section-events .content-section-events .title_events .background-rgb div {
  display: flex;
}
.section-events .content-section-events .title_events .background-rgb div i {
  font-size: 140px;
  padding-right: 80px;
  margin: 10px;
  color: rgb(162, 96, 10);
}
.section-events .content-section-events .title_events .background-rgb div .title {
  color: #fdf8f8;
  font-size: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section-events .content-section-events .title_events .background-rgb div .title > :nth-child(2) {
  font-size: 20px;
}
.section-events .content-section-events .title_events .background-rgb .description_event {
  color: #fff7f7;
  height: 57px;
  font-size: 20px;
  width: 80%;
  margin: 30px auto;
}
.section-events .content-section-events .title_events .background-rgb .description_event p {
  height: 100%;
  width: 100%;
}
.section-events .content-section-events .title_events .background-rgb .prev-button-event {
  position: absolute;
  top: 50%;
  left: 93%;
  border: 0;
  background-color: rgba(0, 0, 0, 0);
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  padding: 0;
}
.section-events .content-section-events .title_events .background-rgb .prev-button-event i {
  font-size: 22px;
  color: #eeeeee;
}
.section-events .content-section-events .title_events .background-rgb .next-button-event {
  position: absolute;
  top: 50%;
  left: 3%;
  border: 0;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  padding: 0;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 20px;
  opacity: 1;
  font-size: 22px;
  color: #f9f9f9;
  z-index: 12;
  background-color: initial;
}
.section-events .content-section-events .title_events .background-rgb .next-button-event i {
  font-size: 22px;
  color: #eeeeee;
}
.section-events .content-section-events .box-img-events {
  grid-column: 4/5;
  grid-row: 1/2;
  position: relative;
  width: 100%;
  height: 175px;
  overflow: hidden;
  border-radius: 20px;
}
.section-events .content-section-events .box-img-events img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.section-events .content-section-events .time-place {
  grid-column: 4/5;
  grid-row: 2/3;
  gap: 0;
  width: 100%;
  height: 175px;
  display: flex;
  border-radius: 20px;
  flex-direction: column;
  justify-content: space-between;
  background-color: #009daf;
  padding: 15px;
}
.section-events .content-section-events .time-place .title {
  color: #68d5e1;
  margin-bottom: 15px;
}
.section-events .content-section-events .time-place .dy {
  padding-bottom: 10px;
  font-size: 15px;
  display: flex;
  height: -moz-fit-content;
  height: fit-content;
}
.section-events .content-section-events .time-place .dy i {
  height: -moz-fit-content;
  height: fit-content;
  margin-top: auto;
  margin-bottom: auto;
  color: #68d5e1;
}
.section-events .content-section-events .time-place .dy p {
  padding-right: 10px;
  margin: 0;
  font-size: 20px;
  color: #eeeeee;
}
.section-events .content-section-events .time-place .dy .daye {
  width: 100px;
  border-left: 2px rgba(25, 200, 220, 0.7) solid;
}
.section-events .content-section-events .time-place .date {
  padding-bottom: 10px;
  color: #eeeeee;
  font-size: 13px;
}
.section-events .content-section-events .time-place .date i {
  height: -moz-fit-content;
  height: fit-content;
  margin-left: 5px;
  margin-right: 3px;
  font-size: 10px;
}

@media (max-width: 767px) {
  .section-events {
    margin-top: 50px;
    height: -moz-fit-content;
    height: fit-content;
  }
  .section-events .content-section-events {
    height: -moz-fit-content;
    height: fit-content;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 0.5fr);
    grid-gap: 5px;
  }
  .section-events .content-section-events .title_events {
    height: 150px;
    grid-column: 1/5;
    grid-row: 1/3;
  }
  .section-events .content-section-events .title_events .background-rgb div i {
    font-size: 60px;
    padding-right: 20px;
    color: rgb(218, 175, 119);
  }
  .section-events .content-section-events .title_events .background-rgb div .title {
    font-size: 25px;
  }
  .section-events .content-section-events .title_events .background-rgb div .title > :nth-child(2) {
    font-size: 14px;
  }
  .section-events .content-section-events .title_events .background-rgb .description_event {
    font-size: 14px;
    margin: 10px auto;
  }
  .section-events .content-section-events .title_events .background-rgb .description_event p {
    font-size: 12px;
    max-height: 3.7em;
    overflow: hidden;
    line-height: 1.2em;
  }
  .section-events .content-section-events .title_events .background-rgb .prev-button-event {
    top: 40%;
  }
  .section-events .content-section-events .title_events .background-rgb .next-button-event {
    top: 40%;
  }
  .section-events .content-section-events .box-img-events {
    grid-column: 3/5;
    grid-row: 3/3;
    height: 110px;
    border-radius: 15px;
  }
  .section-events .content-section-events .time-place {
    grid-column: 1/3;
    grid-row: 3/4;
    height: 110px;
    border-radius: 15px;
  }
  .section-events .content-section-events .time-place .title {
    margin-bottom: 10px;
  }
  .section-events .content-section-events .time-place .title h2 {
    font-size: 14px;
  }
  .section-events .content-section-events .time-place .dy {
    font-size: 10px;
  }
  .section-events .content-section-events .time-place .dy p {
    padding-right: 5px;
    font-size: 12px;
  }
  .section-events .content-section-events .time-place .dy .daye {
    width: 50px;
  }
}
.section-service .services {
  height: 400px;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
}
.section-service .services .colr_bg {
  background-color: rgba(0, 157, 175, 0.9);
  height: 100%;
}
.section-service .services .colr_bg div {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-service .services .colr_bg div .layuot {
  width: 100%;
  height: 250px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  /* Add your CSS styles as needed */
}
.section-service .services .colr_bg div .layuot .content_service {
  color: #eeeeee;
  height: 100%;
  display: flex;
  max-width: 50%;
  justify-content: start;
  flex-direction: column;
}
.section-service .services .colr_bg div .layuot .content_service .title_services {
  height: 55px;
  width: 100%;
  align-items: end;
}
.section-service .services .colr_bg div .layuot .content_service .title_services a {
  display: inline-block;
  top: 27px;
  color: #eeeeee;
  right: 0px;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  text-align: right;
  border-color: rgb(245, 149, 47);
  border-width: 1px;
  padding-left: 5px;
  padding-bottom: 10px;
  border-style: solid;
  border-top-width: 0px;
  border-left-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 3px;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
}
.section-service .services .colr_bg div .layuot .content_service .disc {
  align-items: end;
}
.section-service .services .colr_bg div .layuot .forms {
  display: unset;
  height: 100%;
}
.section-service .services .colr_bg div .layuot .forms form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: end;
  height: 100%;
  /* Add styles for the circle */
  /* Add a simple scale-up animation */
}
.section-service .services .colr_bg div .layuot .forms form .confirmation {
  text-align: center;
  flex-direction: column;
}
.section-service .services .colr_bg div .layuot .forms form .confirmation .text-container {
  justify-content: center;
  height: -moz-fit-content;
  height: fit-content;
}
.section-service .services .colr_bg div .layuot .forms form .confirmation .text-container p {
  font-size: 24px;
  font-weight: bold;
  color: white; /* Adjust the color to your preference */
}
.section-service .services .colr_bg div .layuot .forms form .confirmation .icon-container {
  display: flex;
  justify-content: center;
  height: -moz-fit-content;
  height: fit-content;
}
.section-service .services .colr_bg div .layuot .forms form .confirmation .icon-container .circle {
  justify-content: center;
  width: 60px;
  height: 60px;
  border: white solid 2px;
  border-radius: 50%;
  padding: 10px;
  animation: scaleUp 1s ease-in-out;
}
.section-service .services .colr_bg div .layuot .forms form .confirmation .icon-container .circle i {
  font-size: 48px;
  color: white; /* Adjust the color to your preference */
}
@keyframes scaleUp {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.section-service .services .colr_bg div .layuot .forms form div {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: end;
  justify-content: center;
}
.section-service .services .colr_bg div .layuot .forms form div input {
  background-color: #eeeeee;
  border-radius: 50px;
  width: 300px;
  padding: 20px;
  height: 40px;
  text-align: right;
  line-height: 24px;
  border-width: 0px;
  outline-style: none;
  margin-right: 10px;
}
.section-service .services .colr_bg div .layuot .forms form .button_form {
  justify-content: flex-start;
  align-items: end;
}
.section-service .services .colr_bg div .layuot .forms form .button_form button {
  color: rgb(255, 255, 255);
  width: 123px;
  text-align: center;
  background-color: rgba(251, 157, 18, 0.82);
  cursor: pointer;
  font-style: normal;
  border-radius: 56px;
  border: 1px #8e8ea4 solid;
  padding: 10px 0;
}
.section-service .services .colr_bg div .layuot .forms .form_Missing {
  display: none;
}

@media (max-width: 767px) {
  .section-service .services {
    height: 410px;
  }
  .section-service .services .colr_bg div {
    align-items: start;
  }
  .section-service .services .colr_bg div .layuot {
    padding-top: 10px;
    width: 100%;
    height: 250px;
    display: inline-block;
  }
  .section-service .services .colr_bg div .layuot .content_service {
    color: #eeeeee;
    display: flex;
    height: -moz-fit-content;
    height: fit-content;
    justify-content: start;
    flex-direction: column;
  }
  .section-service .services .colr_bg div .layuot .content_service .title_services {
    display: flex;
    justify-content: center;
  }
  .section-service .services .colr_bg div .layuot .content_service .disc {
    text-align: center;
    height: 80px;
    line-height: 2;
    font-size: 15px;
  }
  .section-service .services .colr_bg div .layuot .forms {
    display: inline-block;
    height: 80%;
    width: 100%;
  }
  .section-service .services .colr_bg div .layuot .forms form {
    align-items: center;
  }
  .section-service .services .colr_bg div .layuot .forms form div {
    width: 100%;
    justify-content: center;
  }
  .section-service .services .colr_bg div .layuot .forms form div input {
    width: 100%;
    padding: 15px;
    height: 30px;
  }
  .section-service .services .colr_bg div .layuot .forms form .button_form {
    align-items: center;
  }
  .section-service .services .colr_bg div .layuot .forms form .button_form button {
    padding: 5px 0;
  }
}
.btnu {
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.video_container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: right;
  flex-direction: column;
  opacity: 1;
  transform: scale(0);
  transition: all 0.3s ease;
}
.video_container:not(.video_layout) {
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}
.video_container .close {
  font-size: 20px;
  cursor: pointer;
  padding: 10px;
  color: #2d3748;
  margin-left: 56%;
}
.video_container .close:hover {
  background-color: rgba(137, 137, 137, 0.65);
  color: #fff7f7;
}
.video_container .video_layout {
  width: 1000px;
  max-width: 1000px;
  height: -moz-fit-content;
  height: fit-content;
  box-shadow: 0 20px 20px #2d3748;
  background-color: #0a0a0a;
}

.show {
  opacity: 1;
  transform: scale(1);
  height: 100% !important;
}

@media (max-width: 767px) {
  .video_container {
    align-items: start;
  }
  .video_container .close {
    margin-left: 0;
  }
  .video_container .video_layout {
    width: 100%;
    max-width: 100%;
  }
}
body {
  font-family: "Cairo", sans-serif !important;
  font-weight: 400;
}

/*body::-webkit-scrollbar {
    width: 0.5em;
}

body::-webkit-scrollbar-track {
    background-color: var(--main-bg-color);
}

body::-webkit-scrollbar-thumb {
    background-color: var(--main-bg-color-dark);
    box-shadow: inset 0 0 6px var(--main-bg-color-15);
}*/
