
/* @import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap'); */
/********** Template CSS **********/
:root {
    --primary: #41b090;
    --light: #F0FBFC;
    --dark: #181d38;
    --white-m1: #eee;
    --bs-gradient: linear-gradient( 180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0) );
    --white-m2: #fff;

    --main-green: #79dd09;
    --main-green-rgb-015: rgba(121, 221, 9, 0.1);
    --main-yellow: #bdbb49;
    --main-yellow-rgb-015: rgba(189, 187, 73, 0.1);
    --main-red: #bd150b;
    --main-red-rgb-015: rgba(189, 21, 11, 0.1);
    --main-blue: #0076bd;
    --main-blue-rgb-015: rgba(0, 118, 189, 0.1);

    --red: #AA3939;
      --brand_orange: #D49A6A;
      --menu_item_orange: #FFD1AA;
      --dark_mint: #0D4D4D;
      --darkest_mint: #373739;
}


video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.imgCo {
    width: 100%;
    height: 1000px;
    object-fit: cover;
}

/* Initial height of the iframe */
#event-iframe {
    transition: height 0.3s ease;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}

.navbar-nav {
    font-weight: bold;
    flex-grow: 1;
    background-color: var(--dark);
    /* border-radius: 5px; */
    color: var(--white-m1);
    display: flex;
    justify-content: space-between;
}

.navbar-dash {
    justify-content: flex-start;
}

.nav-logo {
    display: flex;
    justify-content: flex-start;
}


.scroll-line {
    position: fixed;
    /* top: 0;
    left: 0; */
    width: 100%;
    height: 3px; /* Adjust height as needed */
    background-color: var(--primary); /* Initial blue color */
    transform-origin: right center; /* Set transform origin to right */
    transform: scaleX(0); /* Initially scale to 0 (invisible) */
    transition: transform 0.3s ease; /* Smooth transition for transform */
    z-index: 1000; /* Ensure it stays above other content */
}

.ifram-event {
    height: 90px;
    width: 100%;
}

/*** Navbar ***/

.navbar-title {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.3s ease; /* Smooth transition for background color */
}


/* .navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
} */

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF !important;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary) !important;
    border-radius: 5px;
}


.navbar-title {
  background-color: var(--dark);
}


@media (max-width: 991.98px) {

    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: white;
    font-weight: 600;
    font-style: bold;
    background-color: #0000;
    border-radius: 5px;
    width: 90px;
    /* text-align: center; */
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}


@media (max-width: 992px) {

    .section-dropdown {

    top: 3px !important;
    right: 20px !important;
  }

  .section-dropdown:before {
      top: -3px !important;
      right: 20px !important;
    }
    .section-dropdown:after {

      top: -7px !important;
      right: 20px !important;
    }
}


@media (max-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.section-dropdown {
    position: relative;
}

.titles-dropdown {
    display: none;
    position: absolute;
    top: 0;
    left: 100%; /* To show on the right side */
    background-color: var(--white-m2);
    border: 1px solid #ccc;
    z-index: 1000;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 200px;
}

.titles-dropdown li {
    padding: 0;
}

.titles-dropdown li a {
    display: block;
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    font-size: 14px; /* Adjust the font size as needed */
    font-weight: normal; /* Ensure the text is not bold */
}


.titles-dropdown li a:hover, .titles-dropdown li a:focus {
    color: var(--dark);
    text-decoration: none;
    background-color: #e7e8e9;
    font-weight: bold; /* Ensure the text is not bold */
}

.section-dropdown:hover .titles-dropdown {
    display: block;
}

/* Media Query for Mobile Devices */
@media (max-width: 1000.98px) {

    .titles-dropdown {
        left: 0; /* Align to the left of the parent element */
        top: 100%; /* Display below the parent element */
        min-width: 100%; /* Make sure it takes full width */
    }

    .titles-dropdown li a {
        padding: .5rem 1rem; /* Adjust padding for better touch experience */
        font-size: 16px; /* Slightly increase font size for readability */
    }
}


/*** Header carousel ***/
@media (max-width: 768px) {


    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item video {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: url(../assets2/images/rent_venue_bg4.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    background: var(--light);
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Categories & Courses ***/

.text-justify-courses {
  word-wrap: break-word; /* Breaks long words if necessary */
  overflow-wrap: break-word; /* Ensures the text breaks in older browsers */
}
.category img,
.course-item img {
    transition: .5s;
}

.category a:hover img,
.course-item:hover img {
    transform: scale(1.1);
}

.category a:hover .img-modal,
.course-item:hover .img-modal {
    transform: scale(1.0);
}

/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }

    .imgCo {
        width: 100%;
        height: 600px;
        object-fit: cover;
    }


}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }

    .imgCo {
        width: 100%;
        height: 600px;
        object-fit: cover;
    }
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: right; /* Change text alignment to right */
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.btnDash-green {
    background-color: green;
    border-color: green;
    color: white;
    border-radius: 20px;
    font-size: 12px;
  }

  .btnDash-red {
    background-color: red;
    border-color: red;
    color: white;
    border-radius: 20px;
    font-size: 12px;
}

.search-box {
    margin-right: 30px;
    padding: 10px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}


.search-box button,
.search-box input {
    border-radius: 10%;
}

  .search-result h2, p, div {
    margin: 0;
    padding: 0;
  }

  .search-result h2 {
    font-weight: bold;
  }

  .search-result div.more {
    display: none;
    margin: 10px 0 0 0;
    padding: 10px;
    background-color: var(--white-m1);
    position: relative;

    &.visible {
      display: block;
    }

    .search-result li {
      list-style: none;
      line-height: 1.4em;
      font-size: 90%;
    }

    .search-result .close {
      position: absolute;
      top: 5px;
      right: 10px;
      color: rgb(192, 199, 212);
      cursor: pointer;
    }
  }

  .search-result {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    padding: 15px;
    display: flex;
    position: relative;
    margin-bottom: 10px;


    &.new-job {
      border-left: 5px solid rgb(253, 137, 37);

      .badge {
        position: absolute;
        top: 15px;
        right: 15px;
        padding: 5px 10px;
        border-radius: 15px;
        border: 2px solid rgb(253, 137, 37);
        background-color: rgba(253, 137, 37, 0.2);
        color: rgb(253, 137, 37);
      }
    }

    h2 {
      color: var(--primary)
    }

    a {
      text-decoration: none;
      color: var(--primary)
    }

    .icon {
      margin: 0 15px 0 0;
    }

    .reviews {
      color: rgb(253, 137, 37);
    }

    .actions {
      color: rgb(192, 199, 212);
      margin-top: 10px;
      font-size: 90%;
    }

    span {
      margin-right: 10px;
    }

    div > div p {
      color: rgb(192, 199, 212);
      margin-top: 10px;
    }

    .company, .stars, .reviews {
      font-size: 110%;
      margin-right: 0 !important;
      margin-top: 5px !important;
    }

    .stars {
      position: relative;
      display: inline-block;
      height: 16px;
      width: 86px;
      background: url(https://www.indeed.com/cmp/_s/s/40b77a6/5stars_lg.png) 0px 33px;
      background-size: 85px 32px;
    }

    .stars-inner {
      display: inline-block;
      height: 16px;
      width: 86px;
      background: url(https://www.indeed.com/cmp/_s/s/40b77a6/5stars_lg.png) 0 17px;
      background-size: 85px 32px;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');


.sec-center {
    padding: 25px 0px;
    position: relative;
    max-width: 100%;
    text-align: center;
    z-index: 200;
  }
[type="checkbox"]:checked,
[type="checkbox"]:not(:checked){
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}



.dropdown:checked + label,
.dropdown:not(:checked) + label{
    display: block;
    padding: 25px 0px;
    clear: both;
    font-weight: 600;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    font-size: 14px; /* Adjust the font size as needed */
    font-weight: normal; /* Ensure the text is not bold */
    border-radius: 4px;
    width: 220px;
}



.section-dropdown {
    width: 220px !important;
  position: absolute;
  padding: 5px;
  background-color: var(--primary);
  top: 70px;
  left: 0;
  width: 100%;
  border-radius: 4px;
  display: block;
  box-shadow: 0 14px 35px 0 rgba(9,9,12,0.4);
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 200ms linear;
}
.dark-light:checked ~ .sec-center .section-dropdown {
  background-color: var(--white-m2);
  box-shadow: 0 14px 35px 0 rgba(9,9,12,0.15);
}
.dropdown:checked ~ .section-dropdown{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.section-dropdown:before {
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  content: '';
  display: block;
  z-index: 1;
}
.section-dropdown:after {
  position: absolute;
  top: -7px;
  left: 30px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--primary);
  content: '';
  display: block;
  z-index: 2;
  transition: all 200ms linear;
}
.dark-light:checked ~ .sec-center .section-dropdown:after {
  border-bottom: 8px solid var(--white-m2);
}

.containerDrop a {
  position: relative;
  color: var(--white-m2);
  transition: all 200ms linear;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 15px;
  border-radius: 2px;
  padding: 5px 0;
  padding-left: 20px;
  padding-right: 15px;
  margin: 2px 0;
  text-align: left;
  text-decoration: none;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  justify-content: space-between;
    -ms-flex-pack: distribute;
}
.dark-light:checked ~ .sec-center .section-dropdown a {
  color: #102770;
}
.containerDrop a:hover {
  color: #102770;
  background-color: var(--white-m2);
}
.dark-light:checked ~ .sec-center .section-dropdown a:hover {
  color: var(--primary);
  background-color: #102770;
}
.containerDrop a .uil {
  font-size: 22px;
}
.dropdown-sub:checked + label,
.dropdown-sub:not(:checked) + label{
  position: relative;
  color: var(--white-m2);
  transition: all 200ms linear;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 15px;
  border-radius: 2px;
  padding: 5px 0;
  padding-left: 20px;
  padding-right: 15px;
  text-align: left;
  text-decoration: none;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  justify-content: space-between;
    -ms-flex-pack: distribute;
    cursor: pointer;
}
.dropdown-sub:checked + label .uil,
.dropdown-sub:not(:checked) + label .uil{
  font-size: 15px;
}
.dropdown-sub:not(:checked) + label .uil {
  transition: transform 200ms linear;
}
.dropdown-sub:checked + label .uil {
  transform: rotate(135deg);
  transition: transform 200ms linear;
}
.dropdown-sub:checked + label:hover,
.dropdown-sub:not(:checked) + label:hover{
  color: #102770;
  background-color: var(--white-m2);
}
.dark-light:checked ~ .sec-center .section-dropdown .for-dropdown-sub{
  color: #102770;
}
.dark-light:checked ~ .sec-center .section-dropdown .for-dropdown-sub:hover{
  color: var(--primary);
  background-color: #102770;
}

.section-dropdown-sub {
  position: relative;
  display: block;
  width: 100%;
  pointer-events: none;
  opacity: 0;
  max-height: 0;
  padding-left: 10px;
  padding-right: 3px;
  overflow: hidden;
  transition: all 200ms linear;
}
.dropdown-sub:checked ~ .section-dropdown-sub{
  pointer-events: auto;
  opacity: 1;
  max-height: 999px;
}
.section-dropdown-sub a {
  font-size: 14px;
}
.section-dropdown-sub a .uil {
  font-size: 20px;
}



/* event-section-welcome */

.event-section .main-banner {
    background-color: #3daf95;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
  }


  .event-section .main-banner .next-show {
    position: absolute;
    top: -165px;
    left: 50%;
    transform: translateX(-50%);
    animation: move-up-down 3s infinite;
  }
  .event-section .main-banner .next-show {
    color: var(--white-m2);
    font-size: 18px;
  }

  .event-section .main-banner .next-show i {
    font-size: 12px;;
  }

  .event-section .main-banner .next-show span {
    display: block;
    font-size: 14px;
    font-weight: 300;
  }

  .event-section .main-banner .counter-content {
    background-color: #3daf95;
  }

  .event-shown {
    padding-left: 20rem !important;
    padding-right: 20rem !important;
  }

  /* Responsive adjustments */
@media (max-width: 900px) {
  .event-shown {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
}




@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

.container-last-news * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif
}


.container-last-news {
    display: flex;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Adds space between cards */

}

.container-last-news p {
    margin: 0px
}

.container-last-news .card {
    width: 380px; /* Fixed width of cards */
    height: 520px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background: var(--white-m2);
    transition: all 0.5s ease;
    cursor: pointer;
    user-select: none;
    z-index: 10;
    overflow: hidden;
    border-radius: 5px;
}

.container-last-news .card .backgroundEffect {
    bottom: 0;
    height: 0px;
    width: 100%
}

.container-last-news .card:hover {
    color: var(--white-m2);
    transform: scale(1.025);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 5px 10px
}

.container-last-news .card:hover .backgroundEffect {
    bottom: 0;
    height: 320px;
    width: 100%;
    position: absolute;
    z-index: -1;
    background: var(--primary);
    animation: popBackground 0.3s ease-in
}

@keyframes popBackground {
    0% {
        height: 20px;
        border-top-left-radius: 50%;
        border-top-right-radius: 50%
    }

    50% {
        height: 80px;
        border-top-left-radius: 75%;
        border-top-right-radius: 75%
    }

    75% {
        height: 160px;
        border-top-left-radius: 85%;
        border-top-right-radius: 85%
    }

    100% {
        height: 320px;
        border-top-left-radius: 100%;
        border-top-right-radius: 100%
    }
}

.container-last-news .card .pic {
    position: relative
}

.container-last-news .card .pic img {
    width: 100%;
    height: 280px;
    object-fit: cover
}

.container-last-news .card .date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 70px;
    background-color: var(--primary);
    color: white;
    position: absolute;
    bottom: 0px;
    transition: all ease
}

.container-last-news .card .date .day {
    font-size: 14px;
    font-weight: 600
}

.container-last-news .card .date .month,
.container-last-news .card .date .year {
    font-size: 10px
}

.container-last-news .card .text-muted {
    font-size: 12px
}

.container-last-news .card:hover .text-muted {
    color: var(--white-m2) !important
}

.container-last-news .card .content {
    padding: 0 20px
}

.container-last-news .card .content .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    background-color: var(--primary);
    border-radius: 25px;
    font-size: 12px;
    border: none
}


/* Add this CSS to your stylesheet */


.container-last-news a.card-link {
    text-decoration: none;
    color: inherit; /* Ensures the text color inside the card remains unchanged */
    display: block;
}

.container-last-news a.card-link:hover .card {
    /* Add any hover effects for the card here */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Example hover effect */
}


.container-last-news .card:hover .content .btn {
    background: var(--white-m2);
    color: var(--primary);
    box-shadow: #0000001a 0px 3px 5px
}

.container-last-news .card .content .btn .fas {
    font-size: 10px;
    padding-left: 5px
}

.container-last-news .card .content .foot .admin {
    color: var(--primary);
    font-size: 12px
}

.container-last-news .card:hover .content .foot .admin {
    color: var(--white-m2)
}

.container-last-news .card .content .foot .icon {
    font-size: 12px
}

/* Container styling */
.container-xxl.py-5.category .container {
    direction: rtl;
}

/* Section titles */
.container-xxl .section-title {
    font-size: 1.2rem;
}

.container-xxl h1 {
    font-size: 1.8rem;
}



/* Card title */
.container-xxl .card .content .h-1 {
    font-size: 0.8rem;
}

/* Card content */
.container-xxl .card .content .text-muted {
    font-size: 0.8rem;
}

/* Button text */
.container-xxl .card .btn-primary {
    font-size: 0.8rem;
}

/* Admin text */
.container-xxl .card .admin {
    font-size: 0.8rem;
}

/* Responsive adjustments */
@media (min-width: 576px) {
    .container-xxl .section-title {
        font-size: 1.4rem;
    }

    .container-xxl h1 {
        font-size: 2.5rem;
    }

    .container-xxl .card .content .h-1 {
        font-size: 1.25rem;
    }

    .container-xxl .card .content .text-muted {
        font-size: 1.2rem;
    }

    .container-xxl .card .btn-primary,
    .container-xxl .card .admin {
        font-size: 1.1rem;
    }
}

@media (min-width: 768px) {
    .container-xxl .section-title {
        font-size: 1.5rem;
    }

    .container-xxl h1 {
        font-size: 2.9rem;
    }

    .container-xxl .card .content .h-1 {
        font-size: 1.4rem;
    }

    .container-xxl .card .content .text-muted {
        font-size: 1.2rem;
    }

    .container-xxl .card .btn-primary,
    .container-xxl .card .admin {
        font-size: 1.1rem;
    }
}

@media (min-width: 992px) {
    .container-xxl .section-title {
        font-size: 1.7rem;
    }

    .container-xxl h1 {
        font-size: 3.4rem;
    }

    .container-xxl .card .content .h-1 {
        font-size: 2.65rem;
    }

    .container-xxl .card .content .text-muted {
        font-size: 1.2rem;
    }

    .container-xxl .card .btn-primary,
    .container-xxl .card .admin {
        font-size: 1.2rem;
    }
}

@media (min-width: 1200px) {
    .container-xxl .section-title {
        font-size: 1.8rem;
    }

    .container-xxl h1 {
        font-size: 3.8rem;
    }

    .container-xxl .card .content .h-1 {
        font-size: 1.8rem;
    }

    .container-xxl .card .content .text-muted {
        font-size: 1.2rem;
    }

    .container-xxl .card .btn-primary,
    .container-xxl .card .admin {
        font-size: 1.2rem;
    }
}

@media (min-width: 1400px) {
    .container-xxl .section-title {
        font-size: 2.0rem;
    }

    .container-xxl h1 {
        font-size: 4.5rem;
    }

    .container-xxl .card .content .h-1 {
        font-size: 1.9rem;
    }

    .container-xxl .card .content .text-muted {
        font-size: 1.2rem;
    }

    .container-xxl .card .btn-primary,
    .container-xxl .card .admin {
        font-size: 1.3rem;
    }
}


.pdf-container-chart {
    justify-items: center;
    justify-items: center;
    width: 100%;
    height: 900px;
}


/* About us */
.breadcrumb {
    flex-direction: row-reverse;
}
.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    padding: 0 0.5rem;
    color: white;
}

.feature-section .center-line {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 20px 0; /* Adjust the margin as needed */
}
.feature-section .line {
    width: 100px; /* Adjust the width of the line */
    border-bottom: 3px solid #41b090; /* Adjust the color and thickness of the line */
}
.feature-section:hover .line {
    transition: 0.5s;
    width: 100px; /* Adjust the width of the line */
    border-bottom: 3px solid #181d38; /* Adjust the color and thickness of the line */
}

.feature-section * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }
  .feature-section .row {
    display: flex;
    flex-wrap: wrap;
  }
  .feature-section .row h1 {
    width: 100%;
    text-align: center;
    font-size: 3.75em;
    margin: 0.6em 0;
    font-weight: 600;
    color: #070024;
  }
  .feature-section .column {
    padding: 1em;
    margin-bottom: 7px;
  }
  .feature-section .card {
    padding: 3.1em 1.25em;
    text-align: center;
    background: linear-gradient(0deg, #41b090 10px, transparent 10px);
    background-repeat: no-repeat;
    background-position: 0 0.62em;
    box-shadow: 0 0 2.5em rgba(0, 0, 0, 0.15);
    border-radius: 0.5em;
    transition: 0.5s;
    cursor: pointer;
    height: 100%;
  }

  .feature-section .card:hover {
    transition: 0.5s ease; /* Transition effect */
    background: linear-gradient(0deg, #181d38 10px, transparent 10px);
  }

  .feature-section .card .icon {
    font-size: 2.5em;
    height: 2em;
    width: 2em;
    margin: auto;
    background-color: #41b090;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
  }
  .feature-section .card:hover .icon {
    transition: background-color 0.5s ease; /* Transition effect */
    background-color: #181d38;
  }
  .feature-section .icon:before {
    position: absolute;
    content: "";
    height: 1.5em;
    width: 1.5em;
    /* border: 0.12em solid #41b090; */
    border-radius: 50%;
    transition: 0.5s;
  }
  .feature-section .card h3 {
    font-size: 1.3em;
    margin: 1em 0 1.4em 0;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #070024;
  }
  .feature-section .card p {
    line-height: 2em;
    color: #625a71;
    flex: 1; /* This allows the paragraph to take up remaining space */
    font-weight: 400;
    line-height: 25px;
  }
  .feature-section .card:hover {
    background-position: 0;
  }

  @media screen and (min-width: 768px) {
    .feature-section section {
      padding: 1em 7em;
    }

  }
  @media screen and (min-width: 992px) {
    .feature-section section {
      padding: 1em;
    }
    .feature-section .card {
      padding: 5em 2em;
    }
    .feature-section .column {
      flex: 0 0 33.33%;
      max-width: 33.33%;
      padding: 0 1em;
    }
  }


  .A3lam {
    font-family: "Baloo 2", cursive;
    font-size: 16px;
    color: #ffffff;
    text-rendering: optimizeLegibility;
    font-weight: initial;
  }

  .A3lam .dark {
        background: #110f16;
      }

      .A3lam .light {
        background: #f3f5f7;
      }


      .A3lam a,
      .A3lam a:hover {
        text-decoration: none;
        transition: color 0.3s ease-in-out;
      }

      .A3lam #pageHeaderTitle {
        margin: 2rem 0;
        text-transform: uppercase;
        text-align: center;
        font-size: 2.5rem;
      }

      .A3lam .postcard {
        display: flex;
        flex-wrap: wrap;
        box-shadow: 0 4px 21px -12px rgba(0, 0, 0, 0.66);
        border-radius: 10px;
        margin: 0 0 2rem 0;
        overflow: hidden;
        position: relative;
        color: #ffffff;
        background-color: #18151f;
      }

      .A3lam .postcard.light {
        background-color: #e1e5ea;
      }

      .A3lam .postcard .t-dark {
        color: #18151f;
      }

      .A3lam .postcard a {
        color: inherit;
      }

      .A3lam .postcard h1,
      .A3lam .postcard .h1 {
        margin-bottom: 0.5rem;
        font-weight: 500;
        line-height: 1.2;
      }

      .A3lam .postcard .small {
        font-size: 80%;
      }

      .A3lam .postcard .postcard__title {
        font-size: 1.75rem;
      }

      .A3lam .postcard .postcard__img {
        max-height: 180px;
        width: 100%;
        object-fit: cover;
        position: relative;
      }

      .A3lam .postcard .postcard__img_link {
        display: contents;
      }

      .A3lam .postcard .postcard__bar {
        width: 50px;
        height: 10px;
        margin: 10px 0;
        border-radius: 5px;
        background-color: #424242;
        transition: width 0.2s ease;
      }

      .A3lam .postcard .postcard__text {
        padding: 1.5rem;
        position: relative;
        display: flex;
        flex-direction: column;
      }

      .A3lam .postcard .postcard__preview-txt {
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: justify;
        height: 100%;
      }

      .A3lam .postcard .postcard__tagbox {
        display: flex;
        flex-flow: row wrap;
        font-size: 14px;
        margin: 20px 0 0 0;
        padding: 0;
        justify-content: center;
      }

      .A3lam .postcard .postcard__tagbox .tag__item {
        display: inline-block;
        background: rgba(83, 83, 83, 0.4);
        border-radius: 3px;
        padding: 2.5px 10px;
        margin: 0 5px 5px 0;
        cursor: default;
        user-select: none;
        transition: background-color 0.3s;
      }

      .A3lam .postcard .postcard__tagbox .tag__item:hover {
        background: rgba(83, 83, 83, 0.8);
      }

      .A3lam .postcard:before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-image: linear-gradient(-70deg, #424242, transparent 50%);
        opacity: 1;
        border-radius: 10px;
      }

      .A3lam .postcard:hover .postcard__bar {
        width: 100px;
      }

      @media screen and (min-width: 769px) {
        .A3lam .postcard {
          flex-wrap: inherit;
        }

        .A3lam .postcard .postcard__title {
          font-size: 2rem;
        }

        .A3lam .postcard .postcard__tagbox {
          justify-content: start;
        }

        .A3lam .postcard .postcard__img {
          max-width: 300px;
          max-height: 100%;
          transition: transform 0.3s ease;
        }

        .A3lam .postcard .postcard__text {
          padding: 3rem;
          width: 100%;
        }

        .A3lam .postcard .media.postcard__text:before {
          content: "";
          position: absolute;
          display: block;
          background: #18151f;
          top: -20%;
          height: 130%;
          width: 55px;
        }

        .A3lam .postcard:hover .postcard__img {
          transform: scale(1.1);
        }

        .A3lam .postcard:nth-child(2n + 1) {
          flex-direction: row;
        }

        .A3lam .postcard:nth-child(2n + 0) {
          flex-direction: row-reverse;
        }

        .A3lam .postcard:nth-child(2n + 1) .postcard__text::before {
          left: -12px !important;
          transform: rotate(4deg);
        }

        .A3lam .postcard:nth-child(2n + 0) .postcard__text::before {
          right: -12px !important;
          transform: rotate(-4deg);
        }
      }

      @media screen and (min-width: 1024px) {
        .A3lam .postcard .postcard__text {
          padding: 2rem 3.5rem;
        }

        .A3lam .postcard .postcard__text:before {
          content: "";
          position: absolute;
          display: block;
          top: -20%;
          height: 130%;
          width: 55px;
        }

        .A3lam .postcard.dark .postcard__text:before {
          background: #18151f;
        }

        .A3lam .postcard.light .postcard__text:before {
          background: #e1e5ea;
        }
      }

      /* COLORS */
      .A3lam .postcard .postcard__tagbox .green.play:hover {
        background: var(--main-green);
        color: black;
      }

      .A3lam .green .postcard__title:hover {
        color: var(--main-green);
      }

      .A3lam .green .postcard__bar {
        background-color: var(--main-green);
      }

      .A3lam .green::before {
        background-image: linear-gradient(-30deg, var(--main-green-rgb-015), transparent 50%);
      }

      .A3lam .green:nth-child(2n)::before {
        background-image: linear-gradient(30deg, var(--main-green-rgb-015), transparent 50%);
      }

      .A3lam .postcard .postcard__tagbox .blue.play:hover {
        background: var(--main-blue);
      }

      .A3lam .blue .postcard__title:hover {
        color: var(--main-blue);
      }

      .A3lam .blue .postcard__bar {
        background-color: var(--main-blue);
      }

      .A3lam .blue::before {
        background-image: linear-gradient(-30deg, var(--main-blue-rgb-015), transparent 50%);
      }

      .A3lam .blue:nth-child(2n)::before {
        background-image: linear-gradient(30deg, var(--main-blue-rgb-015), transparent 50%);
      }

      .A3lam .postcard .postcard__tagbox .red.play:hover {
        background: var(--main-red);
      }

      .A3lam .red .postcard__title:hover {
        color: var(--main-red);
      }

      .A3lam .red .postcard__bar {
        background-color: var(--main-red);
      }

      .A3lam .red::before {
        background-image: linear-gradient(-30deg, var(--main-red-rgb-015), transparent 50%);
      }

      .A3lam .red:nth-child(2n)::before {
        background-image: linear-gradient(30deg, var(--main-red-rgb-015), transparent 50%);
      }

      .A3lam .postcard .postcard__tagbox .yellow.play:hover {
        background: var(--main-yellow);
        color: black;
      }

      .A3lam .yellow .postcard__title:hover {
        color: var(--main-yellow);
      }

      .A3lam .yellow .postcard__bar {
        background-color: var(--main-yellow);
      }

      .A3lam .yellow::before {
        background-image: linear-gradient(-30deg, var(--main-yellow-rgb-015), transparent 50%);
      }

      .A3lam .yellow:nth-child(2n)::before {
        background-image: linear-gradient(30deg, var(--main-yellow-rgb-015), transparent 50%);
      }

      @media screen and (min-width: 769px) {
        .A3lam .green::before {
          background-image: linear-gradient(-80deg, var(--main-green-rgb-015), transparent 50%);
        }

        .A3lam .green:nth-child(2n)::before {
          background-image: linear-gradient(80deg, var(--main-green-rgb-015), transparent 50%);
        }

        .A3lam .blue::before {
          background-image: linear-gradient(-80deg, var(--main-blue-rgb-015), transparent 50%);
        }

        .A3lam .blue:nth-child(2n)::before {
          background-image: linear-gradient(80deg, var(--main-blue-rgb-015), transparent 50%);
        }

        .A3lam .red::before {
          background-image: linear-gradient(-80deg, var(--main-red-rgb-015), transparent 50%);
        }

        .A3lam .red:nth-child(2n)::before {
          background-image: linear-gradient(80deg, var(--main-red-rgb-015), transparent 50%);
        }

        .A3lam .yellow::before {
          background-image: linear-gradient(-80deg, var(--main-yellow-rgb-015), transparent 50%);
        }

        .A3lam .yellow:nth-child(2n)::before {
          background-image: linear-gradient(80deg, var(--main-yellow-rgb-015), transparent 50%);
        }
      }




      /* section shaykh Kamel Eddine j3ayyat */
      .A3lamTunis_M {
        font: 400 1em/1.33 "Times New Roman";
          background-color: #f2efef;
          padding-bottom: 3em;
      }

      .A3lamTunis_M .zitouna {
        background: url(../img/zitouna-mosque-1.jpg) center 30%;
        box-shadow: inset 0 0 5em 1em #000;
        height: 100vh;
        background-size: cover;
        width: 50%;
        position: fixed;
        top: 80px;
        left: 0;
        bottom: 0;
        height: auto;
      }
      ul li {
        margin-right: 20px; /* Adjust the value to control the amount of space */
    }

      .A3lamTunis_M .profile {
          background: url(../img/chaykh_j3ayyat.webp) center 30%;
          box-shadow: inset 0 0 5em 1em #000;
          height: 100vh;
          background-size: cover;
          width: 50%;
          position: fixed;
          top: 80px;
          left: 0;
          bottom: 0;
          height: auto;
        }

        .A3lamTunis_M .profile_taher_ben_aachour {
          background: url(../img/chaykh_ben_achour.jpeg) center 30%;
          box-shadow: inset 0 0 5em 1em #000;
          height: 100vh;
          background-size: cover;
          width: 50%;
          position: fixed;
          top: 80px;
          left: 0;
          bottom: 0;
          height: auto;
        }


        .A3lamTunis_M .profile_Mazzari {
          background: url(../img/Zaouia_of_Imam_Mezri_1.jpeg) center 30%;
          box-shadow: inset 0 0 5em 1em #000;
          height: 100vh;
          background-size: cover;
          width: 50%;
          position: fixed;
          top: 80px;
          left: 0;
          bottom: 0;
          height: auto;
        }

        .A3lamTunis_M .profile_sohnoun {
          background: url(../img/imem-sohnoun-2.jpg) center 30%;
          box-shadow: inset 0 0 5em 1em #000;
          height: 100vh;
          background-size: cover;
          width: 50%;
          position: fixed;
          top: 80px;
          left: 0;
          bottom: 0;
          height: auto;
        }

        .A3lamTunis_M .profile_IbnAbiZayd {
          background: url(../img/imam-ibn-abi-zayd-2.png) center 30%;
          box-shadow: inset 0 0 5em 1em #000;
          height: 100vh;
          background-size: cover;
          width: 50%;
          position: fixed;
          top: 80px;
          left: 0;
          bottom: 0;
          height: auto;
        }

        .A3lamTunis_M hr {
          overflow: visible;
          padding: 0;
          border: none;
          border-top: medium double var(--dark);
          color: var(--dark);
          text-align: center;
        }

        .A3lamTunis_M hr:after {
          content: "";
          display: inline-block;
          position: relative;
          top: -0.7em;
          width: 1.5em;
          height: 1.5em;
          background-image: url(../img/MouridLogo.png);
          background-size: contain;
          background-repeat: no-repeat;
          padding: 0 0.25em;
          background-color: #f2efef;
      }

        .A3lamTunis_M article {
          color: var(--dark);
          margin-left: 50%;
          position: relative;
          max-width: 66em;
        }

        .A3lamTunis_M article p {
          text-align: justify;
        }
        @media (max-width: 768px) {

          .A3lamTunis_M .zitouna {
            width: 100%;
            opacity: 0.08;
          }

          .A3lamTunis_M article {
            margin-left: 0%;
          }

          .A3lamTunis_M .profile {
            width: 100%;
            opacity: 0.08;
        }

          .A3lamTunis_M .profile_taher_ben_aachour {
            width: 100%;
            opacity: 0.08;
          }

          .A3lamTunis_M .profile_Mazzari {
            width: 100%;
            opacity: 0.08;
          }

          .A3lamTunis_M .profile_sohnoun {
            width: 100%;
            opacity: 0.08;
          }

          .A3lamTunis_M .profile_IbnAbiZayd {
            width: 100%;
            opacity: 0.08;
          }
        }


        .A3lamTunis_M header {
          text-align: center;
          padding: 0 2em;
        }

        .A3lamTunis_M h1 {
          text-transform: uppercase;
          font-weight: 400;
        }

        .A3lamTunis_M .headline-1,
        .A3lamTunis_M .headline-2 {
          line-height: 1;
        }

        .A3lamTunis_M .headline-1 {
          font-size: 6vw;
        }

        .A3lamTunis_M .headline-2 {
          font-size: 5vw;
        }

        .A3lamTunis_M .subheading {
          color: var(--primary);
          font-size: 1.5625em;
          max-width: 25em;
          margin: 0 auto;
          text-align: center;
          padding-bottom: 1.5em;
        }

        .A3lamTunis_M section {
          column-width: 14em;
          column-gap: 1.33em;
          padding: 0 3em;
        }

        .A3lamTunis_M img {
          max-width: 100%;
          margin-bottom: 1.33em;
          vertical-align: middle;
        }

        .A3lamTunis_M blockquote {
          color: #fff;
          border-left: 0.5em solid #ccc;
          font-size: 2em;
          padding: 0.5em;
          line-height: 1.5;
          margin-left: 0;
          margin-right: 0;
          position: absolute;
          right: 100%;
          top: 50vh;
          width: 70%;
          background: #191919;
        }

        .A3lamTunis_M blockquote::before,
        .A3lamTunis_M blockquote::after {
          color: #ccc;
          font-size: 1.25em;
          line-height: 0;
        }

        .A3lamTunis_M blockquote::before {
          content: open-quote;
        }

        .A3lamTunis_M blockquote::after {
          content: close-quote;
        }


      /* Join-us */

      .public-inscrit .contact-area {
        background-attachment: fixed;
        background-size: cover;
        background-position: center;
        background:#eee;
        border-radius: 3%;
    }

    @media only screen and (max-width:768px) {
        .public-inscrit .contact {
            margin-bottom: 60px;
        }
    }

    .public-inscrit .contact input {
        background: #fff;
        border: 1px solid #fff;
        border-radius: 3px;
        -webkit-box-shadow: none;
        box-shadow: none;
        color: #232434;
        font-size: 16px;
        height: 60px;
        padding: 10px;
        width: 100%;
        font-family: 'poppins', sans-serif;
        padding-left: 30px;
        -webkit-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
    }

    .public-inscrit .contact select {
        background: #fff;
        border: 1px solid #fff;
        border-radius: 3px;
        -webkit-box-shadow: none;
        box-shadow: none;
        color: #232434;
        font-size: 16px;
        height: 60px;
        padding: 10px;
        width: 100%;
        font-family: 'poppins', sans-serif;
        padding-left: 30px;
        -webkit-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
    }

    .public-inscrit .contact textarea {
        background: #fff;
        border: 1px solid #fff;
        border-radius: 3px;
        -webkit-box-shadow: none;
        box-shadow: none;
        color: #232434;
        font-size: 16px;
        padding: 10px;
        width: 100%;
        font-family: 'poppins', sans-serif;
        padding-left: 30px;
        -webkit-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
    }

    .public-inscrit .contact input:focus {
        background: #fff;
        border: 1px solid #fff;
        color: #232434;
        -webkit-box-shadow: none;
        box-shadow: none;
        outline: 0 none;
    }

    .public-inscrit .contact select:focus {
        background: #fff;
        border: 1px solid #fff;
        color: #232434;
        -webkit-box-shadow: none;
        box-shadow: none;
        outline: 0 none;
    }

    .public-inscrit .contact textarea:focus {
        background: #fff;
        border: 1px solid #fff;
        color: #232434;
        -webkit-box-shadow: none;
        box-shadow: none;
        outline: 0 none;
    }

    .public-inscrit .form-control::placeholder {
        color: #232434;
        opacity: 1;
    }

    .public-inscrit .btn-contact-bg {
        border-radius: 10px;
        color: #fff;
        outline: medium none !important;
        padding: 15px 27px;
        text-transform: capitalize;
        -webkit-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
        background: #41b090;
        font-family: 'poppins', sans-serif;
        cursor: pointer;
        width: 100%;
    }

    .public-inscrit .btn-contact-bg:hover,
    .public-inscrit .btn-contact-bg:focus {
        background: #3daf95;
        color: #fff;
    }


    *{
      padding:0;
      margin:0;
    }

    /*	general	*/

    section{
        padding: 50px 0;
    }

    /*	gallery */

    .gallery-title{
        font-size: 36px;
        color: #3F6184;
        text-align: center;
        font-weight: 500;
        margin-bottom: 70px;
    }
    .filter-button{
        font-size: 18px;
        border: 2px solid #3F6184;
      padding:5px 10px;
        text-align: center;
        color: #3F6184;
        margin-bottom: 30px;
      background:transparent;
    }
    .filter-button:hover,
    .filter-button:focus,
    .filter-button.active{
        color: #ffffff;
        background-color:#3F6184;
      outline:none;
    }
    .gallery_product{
        margin: 0px;
      padding:0;
      position:relative;
    }
    .gallery_product .img-info{
      position: absolute;
        background: rgba(0,0,0,0.5);
        left: 0;
        right: 0;
        bottom: 0;
        padding: 20px;
      overflow:hidden;
      color:#fff;
      top:0;
      display:none;
         -webkit-transition: 2s;
        transition: 2s;
    }

    .gallery_product:hover .img-info{
      display:block;
       -webkit-transition: 2s;
        transition: 2s;
    }

    /*	end gallery */


    /* event banner start */

    @media (min-width: 768px) {
      .rotating-text, .rotating-text-date, .rotating-text-location {
          display: inline-block;
          white-space: nowrap; /* Prevent text from breaking into multiple lines */
          animation: continuousSlide 15s linear infinite;
      }

      /* Continuous slide animation */
      @keyframes continuousSlide {
          0% {
              transform: translateX(100%); /* Start off-screen to the right */
          }
          100% {
              transform: translateX(-100%); /* End off-screen to the left */
          }
      }
  }

  /* Ensure the link is on top */
  .main-banner a {
    position: relative;
    pointer-events: auto;
    z-index: 10; /* Increase z-index to ensure it's on top */
  }



  @import url('https://fonts.googleapis.com/css?family=Exo:400,700');



.circles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.148);
    animation: animate 25s linear infinite;
    bottom: -150px;

}

.circles li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.circles li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6){
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7){
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}



@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}

    /* event banner end */

    .islamic-border {
      border: 20px solid;
      border-image-source: url(../img/islamic-border.png);
      border-image-slice: 50; /* Adjust this value based on your image */
      border-image-repeat: round;
  }


.islamic-background {
  position: relative;
  z-index: 1; /* Ensure the content is above the background */
}

.islamic-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(../img/islamic-background.jpg);
  background-size: cover; /* Adjust to 'contain' if needed */
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1; /* Adjust opacity for faintness */
  z-index: -1; /* Ensure the background is behind the content */
  pointer-events: none; /* Prevent background from capturing any mouse events */
}


.iframe_video-courses {
  width: 50%;
  height: 400px;
}

@media (max-width: 768px) {

  .iframe_video-courses {
    width: 70%;
    height: 200px;
  }

}

.close-form {
  cursor: pointer;
}
.close-form:hover {
  cursor: pointer;
  color: red;
}


.accordion input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}
.accordion-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
    margin:0 auto;
}
.accordion {
    border-radius: 8px;
    width: 100%;
    color: white;
    overflow: hidden;
    margin-bottom: 16px;
}
.accordion:last-child{
    margin-bottom: 0;
}
.accordion-label {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 16px;
    background: #23775f;
    font-weight: bold;
    cursor: pointer;
    font-size: 20px;
}
.accordion-label:hover {
    background: var(--primary);
}
.accordion-label::after {
    content: "\276F";
    width: 16px;
    height: 16px;
    text-align: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.accordion-content {
    max-height: 0;
    padding: 0 16px;
    color: var(--primary);
    background: white;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.accordion-content p{
    margin: 0;
    color: #000;
    font-size: 18px;
}
input:checked + .accordion-label {
    background: var(--primary);
}
input:checked + .accordion-label::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
input:checked ~ .accordion-content {
    max-height: 100%;
    padding: 16px;
}

.title-courses {
    --s: 0.1em;   /* the thickness of the line */
    --c: #2c4bff; /* the color */

    color: #0000;
    padding-bottom: var(--s);
    background:
      linear-gradient(90deg,var(--c) 50%,#000 0) calc(100% - var(--_p,0%))/200% 100%,
      linear-gradient(var(--c) 0 0) 0% 100%/var(--_p,0%) var(--s) no-repeat;
    -webkit-background-clip: text,padding-box;
            background-clip: text,padding-box;
    transition: 0.5s;
  }
  .title-courses:hover {--_p: 100%}


  .div-title-courses {
    height: 100vh;
    margin: 0;
    display: grid;
    place-content: center;
  }
  .title-courses {
    font-family: system-ui, sans-serif;
    font-size: 5rem;
    cursor: pointer;
  }


  .courses-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem; /* Adjust size */
    font-weight: bold; /* Bold text */
    font-family: 'Georgia', serif; /* Match font style */
    color: #2d6b66; /* Adjust color to match */
}

.courses-title::before,
.courses-title::after {
    content: "";
    flex: 1;
    border-bottom: 2px solid #2d6b66; /* Line color */
    margin: 0 1rem; /* Space between line and text */
}

.cursor-pointer {
    cursor: pointer;
}
