  :root {
            --akon-blue: #633670;
            --akon-dark: #333;
            --akon-light: #f8f9fa;
        }
        
         *, *::before, *::after {
      padding: 0;
      margin: 0;
      box-sizing: border-box;
      font-family: 'Work Sans', sans-serif;
    }

    body {
      font-size: 16px;
      font-weight: 400;
      line-height: 30px;
    }

    .top-bar {
      background-color: #264571;
      padding: 8px 15px;
    }

    .logo-title {
      display: flex;
      align-items: center;
      gap: 2px;
    }

    .logo-title span {
      color: #fff;
       font-size: 18px;
      font-weight: bold;
    }

    .logo-title img {
      height: 80px;
      margin-right: 10px;
    }

    /* Flash Info */
.custom-announcement-bar {
  background: #0076FF;
  font-family: Arial, sans-serif;
  padding: 5px 0;
  overflow: hidden;
  position: relative;
}

.announcement-wrapper {
  display: flex;
  align-items: center;
  overflow: hidden;
}

.announcement-title {
  background: #fff;
  height: 40px;
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
  padding: 0 20px;
  display: flex;
  align-items: center;
}

.announcement-title h2 {
  color: #633670;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.announcement-marquee {
  overflow: hidden;
  position: relative;
  flex: 1;
}

.announcement-track {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: scroll-left 20s linear infinite;
}

.announcement-marquee:hover .announcement-track {
  animation-play-state: paused;
}

.announcement-item {
  display: inline-flex;
  align-items: center;
  padding: 0 50px;
  color: white;
  font-weight: bold;
  font-size: 14px;
  white-space: nowrap;
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #fff;
  color: red;
  font-size: 14px;
  margin-right: 8px;
}

.no-info {
  font-style: italic;
}

/* Animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}




    /* NAVBAR */

    .custom-navbar {
      background-color: #264571;
    /*   position: sticky;
      top: 0;
      z-index: 999;  */
    }
    .custom-navbar a {
      color: white;
      padding: 10px 15px;
      text-decoration: none;
      display: block;
      font-size: 0.875rem;
      font-weight: 500;
      user-select: none;
    }
    .custom-navbar a:hover,
    .custom-navbar a:focus {
      color: #0056b3;
      outline: none;
    }
    .custom-navbar .dropdown {
      position: relative;
    }
    .custom-navbar .dropdown > a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
    }
    .custom-navbar .arrow-down {
      margin-left: 0.25rem;
      display: flex;
      align-items: center;
    }
    .custom-navbar .dropdown-content {
      position: absolute;
      background-color: #444;
      display: none;
      min-width: 160px;
      z-index: 1000;
      border-radius: 0.25rem;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
      top: 100%;
      left: 0;
      margin-top: 0.25rem;
    }
    .custom-navbar .dropdown-content a {
      color: white;
      padding: 10px;
      font-weight: 400;
      font-size: 0.875rem;
      white-space: nowrap;
      transition: background-color 0.2s ease;
      border-radius: 0.25rem;
    }
    .custom-navbar .dropdown-content a:hover,
    .custom-navbar .dropdown-content a:focus {
      background-color: #0056b3;
      outline: none;
    }
    .custom-navbar .dropdown:hover .dropdown-content,
    .custom-navbar .dropdown:focus-within .dropdown-content {
      display: block;
    }
    .navbar-toggler {
      background-color: white;
      border: none;
      padding: 0.5rem 0.75rem;
      cursor: pointer;
      font-size: 1.25rem;
      color: #264571;
      border-radius: 0.25rem;
      user-select: none;
    }
    .navbar-toggler:focus {
      outline: none;
      box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.5);
    }
    @media (max-width: 991px) {
      .custom-navbar .nav-links {
        display: none;
        flex-direction: column;
        background-color: #343a40;
        width: 100%;
        border-radius: 0.25rem;
        margin-top: 0.5rem;
      }
      .custom-navbar .nav-links.show {
        display: flex;
      }
      .custom-navbar .nav-links a {
        padding: 10px 20px;
        border-bottom: 1px solid rgba(255 255 255 / 0.1);
      }
      .custom-navbar .dropdown-content {
        position: static;
        background-color: transparent;
        box-shadow: none;
        margin: 0;
        min-width: auto;
        border-radius: 0;
      }
      .custom-navbar .dropdown-content a {
        padding-left: 30px;
        background-color: transparent;
        border-radius: 0;
      }
      .custom-navbar .dropdown:hover .dropdown-content {
        display: none;
      }
      .custom-navbar .dropdown > a::after {
        content: "▼";
        float: right;
        margin-left: 0.5rem;
        font-size: 0.75rem;
        color: white;
      }
      .custom-navbar .dropdown[aria-expanded="true"] > a::after {
        content: "▲";
      }
    }

        /* Section Styles */
        .news-section {
            padding: 10px 0;
            background-color: var(--akon-light);
        }
        
        .news-container {
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }
        
        /* Title Styles */
        .section-title {
            position: relative;
            margin-bottom: 30px;
            /* padding-bottom: 10px; */
            border-bottom: 2px solid var(--akon-blue);
        }
        
        .section-title h2 {
            display: inline-block;
            background-color: var(--akon-blue);
            color: #fff;
            clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
            padding: 8px 20px 8px 15px;
            margin: 0;
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        /* News Card Styles */
        .news-card {
            position: relative;
            height: 250px;
            margin: 0 10px;
            border-radius: 6px;
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        
        .news-card:hover {
            transform: translateY(-5px);
        }
        
        .news-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: transform 0.3s ease;
        }
        
        .news-card:hover .news-image {
            transform: scale(1.05);
        }
        
        .news-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
        }
        
        .news-category {
            display: inline-block;
            background-color: var(--akon-blue);
            color: #fff;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 3px;
            margin-bottom: 10px;
            text-transform: uppercase;
        }
        
        .news-title {
            color: #fff;
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .news-title a {
            color: inherit;
            text-decoration: none;
        }
        
        .news-meta {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.8rem;
        }
        
        .news-meta i {
            margin-right: 5px;
        }
        
        .news-meta a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            margin-right: 15px;
        }
        
        /* Slick Slider Customization */
        .news-slider .slick-prev,
        .news-slider .slick-next {
            width: 40px;
            height: 40px;
            z-index: 1;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .news-slider .slick-prev:hover,
        .news-slider .slick-next:hover {
            background: var(--akon-blue);
        }
        
        .news-slider .slick-prev {
            left: -20px;
        }
        
        .news-slider .slick-next {
            right: -20px;
        }
        
        .news-slider .slick-prev:before,
        .news-slider .slick-next:before {
            color: var(--akon-blue);
            font-size: 20px;
        }
        
        .news-slider .slick-prev:hover:before,
        .news-slider .slick-next:hover:before {
            color: white;
        }
        
        .news-slider .slick-dots {
            bottom: -30px;
        }
        
        .news-slider .slick-dots li button:before {
            font-size: 12px;
            color: var(--akon-blue);
        }
        
        .news-slider .slick-dots li.slick-active button:before {
            color: var(--akon-blue);
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .news-card {
                height: 220px;
                margin: 0 5px;
            }
            
            .section-title h2 {
                font-size: 1.3rem;
                padding: 6px 15px 6px 10px;
            }
            
            .news-title {
                font-size: 1rem;
            }
            
            .news-slider .slick-prev {
                left: -10px;
            }
            
            .news-slider .slick-next {
                right: -10px;
            }
        }

          main {
     max-width: 100%;
     position: relative;
     overflow: hidden;
     height: 100%;
     background: fff;
   }
 .carousel-slide {
     position: relative;
     width: 100%;
     height: 504px;
     display: none;
   }
   .carousel-slide.active {
     display: block;
   }
   .carousel-slide img {
     width: 100%;
     height: 400px;
     object-fit: cover;
     display: block;
   }
   .overlay {
     position: absolute;
     inset: 0;
     background-color: rgba(0, 0, 0, 0.6);
     z-index: 1;
       max-width: 600px;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
   }
   .carousel-content {
     position: absolute;
     top: 2rem;
     left: 1.5rem;
     max-width: 18rem;
     color: white;
     font-family: Arial, sans-serif;
     z-index: 2;
   }
   .carousel-content h2 {
     font-weight: 700;
     font-size: 1.25rem;
     line-height: 1.2;
     margin-bottom: 0;
   }
   @media (min-width: 640px) {
     .carousel-content h2 {
       font-size: 1.5rem;
       max-width: 24rem;
     }
     .carousel-content {
       max-width: 24rem;
     }
   }
   /* Container for p and button below prev arrow */
   .carousel-bottom-content {
     position: absolute;
     bottom: 3.25rem; /* moved up from 0.5rem to 1.25rem */
     left: 3.5rem; /* slightly right of prev arrow (which is at 0.5rem) */
     max-width: 18rem;
     color: white;
     font-family: Arial, sans-serif;
     z-index: 3;
   }
   @media (min-width: 640px) {
     .carousel-bottom-content {
       max-width: 24rem;
     }
   }
   .carousel-bottom-content p {
     font-size: 0.75rem;
     margin: 0 0 0.25rem 0;
   }
   @media (min-width: 640px) {
     .carousel-bottom-content p {
       font-size: 0.875rem;
     }

   }
     @media (max-width: 768px) {
      .overlay {
       width: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
   }
   }
   .btn-readmore {
     background-color: #005745;
     color: white;
     font-size: 0.75rem;
     padding: 0.25rem 0.75rem;
     border-radius: 9999px;
     font-weight: 600;
     display: inline-flex;
     align-items: center;
     gap: 0.25rem;
     border: none;
     cursor: pointer;
   }
   @media (min-width: 640px) {
     .btn-readmore {
       font-size: 0.875rem;
     }
   }
   .btn-readmore i {
     font-size: 0.75rem;
   }

.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background-color: #00b3a7;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  color: white;
}

.slick-prev {
  left: 15px;
}
.slick-next {
  right: 15px;
}

.slick-prev:before,
.slick-next:before {
  font-size: 24px;
  color: white;
}

/* Dots visibles */
.slick-dots {
    position: absolute;
    bottom: 0.5rem;
    left: 80%;
    transform: translate(-500px, -50px);
    display: flex
;
    gap: 0.5rem;
    z-index: 3;
}

 @media (max-width: 768px) {
    .slick-dots {
  
     left: 10%;
   
}
   }

.slick-dots li {
  width: 20px;
  height: 5px;
  background-color: #eee;
  transition: background 0.3s;
  border-radius: 4px;
}

.slick-dots li.slick-active {
  background-color: #00b3a7;
}

.slick-dots li button {
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

 .image-box {
      border: 1px solid #dee2e6;
      border-radius: 5px;
      background-color: #fff;
      padding: 20px;
      text-align: center;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      height: 100%;
    }
    .image-box img {
      max-height: 70px;
      margin-bottom: 10px;
    }
    .btn-akon {
      background-color: #003366;
      color: white;
      border: none;
      padding: 10px;
      width: 100%;
      font-size: 14px;
      font-weight: 500;
    }
    .btn-akon:hover {
      background-color: #00509e;
    }
    .stats-box {
      background-color: white;
      border: 2px solid #198754;
      padding: 15px;
      text-align: center;
      font-weight: bold;
      border-radius: 5px;
      height: 100%;
    }
    .stats-box span {
      font-size: 24px;
      display: block;
      color: #000;
    }
    .stats-box small {
      font-size: 14px;
      color: #333;
    }

     #content.home {
    padding-top: 30px;
    padding-bottom: 30px;
}

#content {
    padding-top: 60px;
    padding-bottom: 60px;
}
.mg-posts-sec {
    margin: 0px 0 30px 0;
    background-color: transparent;
    position: relative;
    padding: 0;
}
.mg-sec-title {
    /* border-color:; */
 position: relative;
            margin-bottom: 30px;
            /* padding-bottom: 10px; */
            border-bottom: 2px solid  #633670;
           
        }
        
        .mg-sec-title h4 {
            display: inline-block;
            background-color: #633670;
            color: #fff;
            clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
            padding: 8px 20px 8px 15px;
            margin: 0;
            font-weight: 700;
            font-size: 1.5rem;
        }
        .widget_featured_post .widget_featured_post_inner {
    display: grid;
    grid-gap: 1.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.widget_featured_post .mg-blog-post.lg {
    height: 504px;
}
@media (max-width: 767.98px) {
    .widget_featured_post .widget_featured_post_inner {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

.mg-blog-post.lg {
    position: relative;
    height: 475px;
    overflow: hidden;
    margin-left: 0;
    margin-right: 1px;
    background-color: #000;
}
.mg-blog-post {
    margin-left: 1px;
}
.back-img {
    background-color: #333;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    position: relative;
    background-size: cover;
    overflow: hidden;
}
.link-div {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

a {
    color: #633670;
}
a {
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
}
.mg-blog-post .bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, .7) 100%);
    padding: 40px 5.050505050505% 20px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
    display: block;
}
.post-form {
    color: #fff;
    background: #633670;
}

.post-form {
    border-radius: 4px;
    border-width: 2px;
    line-height: 20px;
    padding: 6px;
    position: absolute;
    top: -20px;
}
.post-form i {
    font-size: 22px;
    line-height: 26px;
}
.mg-blog-category {
    margin: 0px;
    width: auto;
}
a.newsup-categories.category-color-1 {
    background: #633670;
}

.mg-blog-category a {
    color: #fff;
    background: #633670;
}
.mg-blog-category a {
    display: inline-block;
    font-size: 10px;
    padding: 4px 6px;
    line-height: 10px;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    border-radius: 3px;
    margin-right: 5px;
}
.mg-blog-post .bottom h4, .mg-blog-post .bottom h4 a {
    color: #fff;
}

@media (max-width: 1200px) {
    .mg-blog-post .bottom h4 {
        overflow: hidden;
    }
}
.mg-blog-post .bottom h4 {
    float: left;
    font-size: 32px;
    font-weight: 700;
    line-height: 120%;
    -webkit-text-shadow: 1px 1px 1px rgba(0,0,0,.3);
    -moz-text-shadow: 1px 1px 1px rgba(0,0,0,.3);
    -ms-text-shadow: 1px 1px 1px rgba(0,0,0,.3);
    -o-text-shadow: 1px 1px 1px rgba(0,0,0,.3);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .3);
    width: 100%;
    margin-bottom: 0;
    display: block;
    display: -webkit-box;
    max-height: 100%;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mg-blog-meta {
    color: #333;
}

.mg-blog-meta {
    padding: 0;
    margin-bottom: 8px;
    min-height: 18px;
}
.mg-blog-post.lg .mg-blog-meta i, .mg-blog-post.lg .mg-blog-meta a, .mg-blog-post.lg .mg-blog-meta span {
    color: #fff;
}

.mg-blog-date {
    color: #333;
}
.mg-blog-date {
    padding: 0;
    font-size: 12px;
    margin-right: 14px;
    font-weight: 500;
    text-transform: uppercase;
}
.mg-blog-post.lg .mg-blog-meta i, .mg-blog-post.lg .mg-blog-meta a, .mg-blog-post.lg .mg-blog-meta span {
    color: #fff;
}

.mg-blog-meta i {
    color: #333;
}
.mg-blog-meta i {
    padding-right: 4px;
}
.mg-blog-post.lg .mg-blog-meta i, .mg-blog-post.lg .mg-blog-meta a, .mg-blog-post.lg .mg-blog-meta span {
    color: #fff;
}

.mg-blog-meta a {
    color: #333;
}
.mg-blog-meta a {
    display: inline;
    font-weight: 500;
    font-size: 12px;
    padding: 0;
    line-height: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.mg-blog-post.lg .mg-blog-meta i, .mg-blog-post.lg .mg-blog-meta a, .mg-blog-post.lg .mg-blog-meta span {
    color: #fff;
}

.mg-blog-meta .auth {
    margin-right: 14px;
}
.mg-blog-meta a {
    color: #333;
}
.mg-blog-meta a {
    display: inline;
    font-weight: 500;
    font-size: 12px;
    padding: 0;
    line-height: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.mg-blog-post.lg .mg-blog-meta i, .mg-blog-post.lg .mg-blog-meta a, .mg-blog-post.lg .mg-blog-meta span {
    color: #fff;
}

.mg-blog-meta i {
    color: #333;
}
.mg-blog-meta i {
    padding-right: 4px;
}
.mg-posts-sec-inner .small-list-post {
    display: grid
;
    gap: 20px;
}
.mg-posts-sec-inner .small-list-post .small-post {
    list-style: none;
    padding: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    gap: 20px;
}

.small-post {
    list-style: none;
    padding: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    gap: 20px;
}
.small-post {
    display: flex
;
}
.small-post .img-small-post {
    width: 88px;
    height: 88px;
    display: flex
;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.mg-posts-sec-inner .img-small-post {
    height: 88px;
    width: 88px;
}
.small-post img, .small-post .img-small-post a {
    height: 100% !important;
    object-fit: cover;
}
.mg-posts-sec-inner .small-list-post img {
    height: 100%;
    object-fit: cover;
}

.small-post img, .small-post .img-small-post a {
    height: 100% !important;
    object-fit: cover;
}
.mg-posts-sec-inner img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    border-style: none;
}
.small-post .small-post-content {
    flex: 1;
}
.mg-posts-sec-inner .small-list-post .mg-blog-category {
    margin: 10px 0 5px 0;
}

.small-list-post h5.title, .small-list-post h5.title a {
    color: #212121;
}

.small-list-post h5.title, .title_small_post, .small-post .title {
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-custom {
  background-color: #00866f;
  color: white;
  width: 100%;
  min-height: 5rem; /* Ajusté pour correspondre à la hauteur de info-box */
  font-size: 0.9rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: normal;
  border: none;
  border-radius: 0;
  text-decoration: none;
  transition: background-color 0.3s ease;
 
  word-wrap: break-word;
}

.btn-custom:hover {
  background-color: #1e375b;
  color: #fff;
}



/* Pour assurer la même hauteur sur tous les écrans */
@media (max-width: 992px) {
  .btn-custom {
    min-height: 4rem;
  }
}

.info-box {
  border: 1px solid #00796B;
  border-radius: 0.375rem;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1rem;
  background-color: #f8f9fa;
}

.info-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  min-width: 4.5rem;
}

.info-text {
  color: #00796B;
  font-weight: 700;
  font-size: 1.125rem; /* 18px */
  line-height: 1.25rem;
  margin: 0;
  font-family: 'Arial', sans-serif;
}

.info-subtext {
  color: #00796B;
  font-size: 0.75rem;
  line-height: 1rem;
  margin-top: 0.25rem;
  font-weight: 400;
  font-family: 'Arial', sans-serif;
}



ol, ul { list-style: none; }
ul, li { float:left; display:inline; }


html::-webkit-scrollbar { width:4px; }
html::-webkit-scrollbar-track { background:#264571; }
html::-webkit-scrollbar-thumb { background-color: #FFF; border:1px solid #264571; }
html { scrollbar-color:#FFF #264571; scrollbar-width:thin; }


*::-moz-selection { background:rgba(0, 0, 0, 0.2); }
*::selection { background:rgba(0, 0, 0, 0.2); }

a { color:#193750; text-decoration:none;  }
a:hover { color:#00866F; text-decoration:none; }


.footer-wrap { float:left; width:100%; position:relative; color:#FFF; background-color:#193750; overflow:hidden; }
	
	.footer-wrap a { color:#BAC3CB; }
	.footer-wrap a:hover { color:#FFF; text-decoration:underline; }

	.footer { float:left; width:100%; padding:50px 60px; position:relative; }
		.footer-title { float:left; width:100%; padding:34px 0 31px 0; position:relative; font-size:17px; color:#FFF; letter-spacing:1px; }
			.footer-title::after { content:""; position:absolute; left:0; bottom:12px; width:30px; height:2px; background-color:#00866F; }
		
		.footer-contact , .footer-right { float:left; width:50%; padding:0 40px; position:relative; z-index:4; }
		.footer-right { float:right; }
			.footer-contact section { float:left; width:100%; font-size:15px; color:#BAC3CB; line-height:30px; }
			
			.footer-social { float:left; margin-top:50px; position:relative; }
				.footer-social li { padding-right:15px; }
				.footer-social li:last-child { padding-right:0; }
					.footer-social li a { float:left; border:1px solid rgb(255 255 255 / 4%); border-radius:50%; transition:all 0.25s; }
					.footer-social li a:hover { border-color:#FFF; }
						.footer-social li a img { float:left; width:50px; margin:-1px; }
		
		.footer-links { float:left; width:100%; padding-bottom:20px; position:relative; z-index:4; }
			.footer-links ul { width:100%; display:flex; flex-flow:row wrap; }
				.footer-links li { width:50%; }
					.footer-links li a { float:left; width:100%; padding:5px 0; font-size:15px; }
		
@media only screen and (max-width: 1023px) {
    .sub-hero {
        padding-top: 0px;
    }
}

@media only screen and (max-width: 1023px) {
    .wrap {
        float: left;
        width: 100%;
        padding: 0px 30px;
    }
}

@media only screen and (max-width: 1280px) {
    .wrap {
        width: 980px;
    }
}

@media only screen and (max-width: 1440px) {
    .wrap {
        width: 1200px;
    }
}

.wrap {
    width: 1320px;
    min-height: 10px;
    position: relative;
    margin: 0px auto;
}

.sub-hero {
    float: left;
    width: 100%;
    padding-top: 70px;
    position: relative;
    z-index: 100;
    background-size: cover;
    color: rgb(255, 255, 255);
    background-position: center center;
}

@media only screen and (max-width: 1023px) {
    .sub-hero-title {
        font-size: 30px;
        line-height: 30px;
        letter-spacing: 1px;
        padding: 25px 0px;
    }
}

.sub-hero-title {
    float: left;
    width: 100%;
    position: relative;
    font-weight: 400;
    font-size: 40px;
    line-height: 40px;
    letter-spacing: 1px;
    padding: 50px 0px 40px;
}

@media only screen and (max-width: 1023px) {
    .breadcrumb {
        width: 100%;
        font-size: 11px;
        line-height: 20px;
        margin: -14px 0px 39px;
    }
}

@media only screen and (max-width: 1280px) {
    .breadcrumb, .right-block {
        width: calc(100% - 310px);
    }
}

.breadcrumb {
    float: right;
    width: calc(100% - 340px);
    position: relative;
    letter-spacing: 1px;
    line-height: 50px;
}

.breadcrumb a {
    color: rgb(255, 255, 255);
}

.breadcrumb a, .breadcrumb i, .breadcrumb strong {
    float: left;
}

@media only screen and (max-width: 1023px) {
    .breadcrumb i {
        padding: 0px 10px;
    }
}

.breadcrumb i {
    float: left;
    opacity: 0.5;
    padding: 0px 15px;
}

.breadcrumb a, .breadcrumb i, .breadcrumb strong {
    float: left;
}

.w100 {
    float: left;
    width: 100% !important;
}

@media only screen and (max-width: 1023px) {
    .sidebar-icon {
        float: left;
        width: 100%;
        height: 50px;
        margin-top: -25px;
        font-weight: 600;
        color: rgb(255, 255, 255);
        letter-spacing: 1px;
        line-height: 50px;
        cursor: pointer;
        position: relative;
        z-index: 900;
        display: block;
        text-align: center;
        background: url(../images/icon-menu.png) 20px center / 20px no-repeat rgb(68, 101, 129);
        border-radius: 25px;
    }

	
    .sidebar-icon::after {
        content: "";
        position: absolute;
        top: 0px;
        bottom: 0px;
        right: 16px;
        width: 14px;
        background: url(../images/arrow-white-down.png) center center / 14px no-repeat;
        transition: 0.25s;
    }
}

.nav-icon, .sidebar-icon {
    display: none;
}

@media only screen and (max-width: 1023px) {
    .sidebar-wrap {
        width: 100%;
        margin-top: 20px;
        margin-bottom: 20px;
        display: none;
    }
}

.sidebar-wrap {
    float: left;
    width: 280px;
    margin-top: -50px;
    position: relative;
    z-index: 1110;
}

@media only screen and (max-width: 1023px) {
    .sidebar {
        box-shadow: none;
    }
}

.sidebar {
    float: left;
    width: 100%;
    padding-bottom: 10px;
    position: relative;
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.07) 0px 7px 20px;
    border-radius: 4px;
    overflow: hidden;
	z-index:1000
}

@media only screen and (max-width: 1023px) {
    .sidebar-title {
        display: none;
    }
}

@media only screen and (max-width: 1280px) {
    .sidebar-title, .sidebar ul {
        width: 100%;
        padding: 0px 20px;
    }
}

.sidebar-title {
    float: left;
    width: 100%;
    margin-bottom: 10px;
    position: relative;
    background-color: #264571;
    padding: 0px 30px;
}
.sidebar-title strong {
    float: left;
    width: 100%;
    position: relative;
    font-weight: 400;
    line-height: 50px;
    color: rgb(255, 255, 255);
    letter-spacing: 2px;
}

@media only screen and (max-width: 1023px) {
    .sidebar ul {
        padding: 0px;
        border-top: 1px solid rgb(242, 242, 242);
        border-bottom: 1px solid rgb(242, 242, 242);
    }
}

@media only screen and (max-width: 1280px) {
    .sidebar-title, .sidebar ul {
        width: 100%;
        padding: 0px 20px;
    }
}

.sidebar ul {
    width: 100%;
    padding: 0px 30px;
}

@media only screen and (max-width: 1023px) {
    .sidebar ul li {
        padding: 0px 15px;
    }
}

.sidebar ul li {
    width: 100%;
    position: relative;
    border-bottom: 1px solid rgb(242, 242, 242);
}

.sidebar li a {
    float: left;
    width: 100%;
    position: relative;
    font-weight: 600;
    padding: 15px 0px;
}

@media only screen and (max-width: 1023px) {
    .right-block {
        width: 100%;
    }
}

@media only screen and (max-width: 1280px) {
    .breadcrumb, .right-block {
        width: calc(100% - 310px);
    }
}

.right-block {
    float: right;
    width: calc(100% - 340px);
    position: relative;
}

@media only screen and (max-width: 1280px) {
    .page-title {
        padding-bottom: 9px;
        margin-top: 30px;
    }
}

.page-title {
    float: left;
    width: 100%;
    margin-top: 60px;
    position: relative;
    font-weight: 600;
    color: rgb(25, 55, 80);
    z-index: 30;
    padding: 21px 0px 19px;
}

@media only screen and (max-width: 1280px) {
    .page-about {
        font-size: 15px;
        line-height: 25px;
        margin: -8px 0px 23px;
    }
}

.page-about {
    float: left;
    width: 100%;
    position: relative;
    font-size: 17px;
    line-height: 30px;
    z-index: 40;
    margin: -11px 0px 31px;
}

.page-photo {
   float: left;
    width: 100%;
    padding-bottom: 40px;
}

.page-photo img {
    float: left;
    width: 100%;
    border-radius: 8px;
}
.page-about b, .page-about strong {
    color: #264571;
}



.page-title { float:left; width:100%; padding:21px 0 19px 0; margin-top:60px; position:relative; font-weight:600; color:#193750; z-index:30; }
.page-title-slim { margin-top:20px !important; }
	.page-title::before { content:""; position:absolute; top:0; left:0; width:40px; height:2px; background-color:#00866F; }
	.page-title section { float:left; width:100%; margin:3px 0 7px 0; font-size:17px; color:#44657F; letter-spacing:1px; text-transform:uppercase; }
	.page-title strong { float:left; width:100%; font-weight:600; font-size:40px; letter-spacing:-1px; line-height:50px; }

.text-white { color:#FFF !important; }
	
.page-about { float:left; width:100%; margin:-11px 0 31px 0; position:relative; font-size:17px; line-height:30px; z-index:40; }
	.page-about a { font-weight:600; }
	.page-about a:hover { text-decoration:underline; }
	.page-about b , .page-about strong { color:#193750; }

.page-title-white , .page-title-white section , .page-about-white , .page-about-white a { color:#FFF; }


.sub-hero { float:left; width:100%; padding-top:70px; position:relative; z-index:100; background-size:cover; background-position:center; color:#FFF; }

	.sub-hero-title { float:left; width:100%; padding:50px 0 40px 0; position:relative; font-weight:400; font-size:40px; line-height:40px; letter-spacing:1px; }

.breadcrumb { float:right; width:calc(100% - 340px); position:relative; letter-spacing:1px; line-height:50px; }
	.breadcrumb a , .breadcrumb i , .breadcrumb strong { float:left; }
	.breadcrumb a { color:#FFF; }
	.breadcrumb a:hover { text-decoration:underline; opacity:1; }
	.breadcrumb i { float:left; padding:0 15px; opacity:0.5; }
	.breadcrumb strong { font-weight:600; }

.sidebar-wrap { float:left; width:280px; margin-top:-50px; position:relative; z-index:1110; }
	
	.sidebar { float:left; width:100%; padding-bottom:10px; position:relative; background-color:#FFF; box-shadow:0 7px 20px rgb(0 0 0 / 7%); border-radius:4px; overflow:hidden; }
	
	.sidebar-title { float:left; width:100%; padding:0 30px; margin-bottom:10px; position:relative; background-color:#264571; }
		.sidebar-title strong { float:left; width:100%; position:relative; font-weight:400; line-height:50px; color:#FFF; letter-spacing:2px; }
	
	.sidebar ul { width:100%; padding:0 30px; }
		.sidebar ul li { width:100%; position:relative; border-bottom:1px solid #F2F2F2; }
		.sidebar ul li:last-child { border-bottom:0; }
			
			.sidebar > ul > li.sidebar-multi > i { position:absolute; top:11px; right:-5px; width:30px; height:30px; border:5px solid transparent; cursor:pointer; z-index:100; }
			.sidebar > ul > li.sidebar-multi > i::before { content:""; position:absolute; top:9px; right:5px; width:10px; height:2px; background-color:#CCC; border-radius:2px; }
			.sidebar > ul > li.sidebar-multi > i::after { content:""; position:absolute; top:5px; right:9px; height:10px; width:2px; background-color:#CCC; transition:all 0.3s; border-radius:2px; }
					.sidebar > ul > li.opened > i::before { background-color:#999; }
					.sidebar > ul > li.opened > i::after { opacity:0; }
			
			.sidebar li a { float:left; width:100%; padding:15px 0; position:relative; font-weight:600; }
				.sidebar > ul > li > ul { display:none; padding:0; margin:-5px 0 15px 0; border:0 !important; }
					.sidebar > ul > li > ul li { padding-left:15px; padding-right:0; border:0 !important; }
						.sidebar > ul > li > ul li::after { display:none; }
						.sidebar > ul > li > ul li a { padding:5px 0; font-size:12px; }
						.sidebar > ul > li > ul li a.active { color:#00866F; }
						
			.sidebar ul li.active > a { color:#00866F; }
			
			.sidebar ul li.active ul { display:block; }

.right-block { float:right; width:calc(100% - 340px); position:relative; }  



@media only screen and (max-width:1440px) {

.wrap { width:1200px; }

}


@media only screen and (max-width:1280px) {

.wrap { width:980px; }

.page-title { padding-bottom:9px; margin-top:30px; }
	.page-title section { margin:-2px 0 7px 0; }
	.page-title strong { margin:-1px 0 6px 0; font-size:30px; line-height:40px; }
	
.page-about { margin:-8px 0 23px 0; font-size:15px; line-height:25px; }



.breadcrumb , .right-block { width:calc(100% - 310px); }
.sidebar-title , .sidebar ul { width:100%; padding:0 20px; }


}


@media only screen and (max-width:1023px) {

.wrap { float:left; width:100%; padding:0 30px; }


.sub-hero { padding-top:0; }
.sub-hero-title { padding:25px 0; font-size:30px; line-height:30px; letter-spacing:1px; }
.breadcrumb { width:100%; margin:-14px 0 39px 0; font-size:11px; line-height:20px; }
.breadcrumb i { padding:0 10px; }

.sidebar-icon {
	float:left;
	width:100%;
	height:50px;
	margin-top:-25px;
	font-weight:600;
	color:#FFF;
	letter-spacing:1px;
	line-height:50px;
	cursor:pointer;
	position:relative;
	background:#264571 url(http://miad.org.tr/images/icon-menu.png) no-repeat 20px center / 20px;
	z-index:900;
	display:block;
	text-align:center;
	border-radius:25px;
	}
	
.sidebar-icon-close { background-color:#122738 !important; }
	.sidebar-icon::after { content:""; position:absolute; top:0; bottom:0; right:16px; width:14px; background:url(http://miad.org.tr/images/arrow-white-down.png) no-repeat center / 14px auto; transition:all 0.25s; }
	.sidebar-icon-close::after { transform:rotate(180deg); }

.sidebar-wrap { width:100%; margin-top:20px; margin-bottom:20px; display:none; }
	.sidebar-title { display:none; }
	.sidebar { box-shadow:none; }
		.sidebar ul { padding:0; border-top:1px solid #F2F2F2; border-bottom:1px solid #F2F2F2; }
			.sidebar ul li { padding:0 15px; }

.right-block { width:100%; }


}





@media only screen and (max-width:767px) {

.wrap { padding:0 20px; }

.footer { padding:0 20px 10px 20px; }
.footer-contact section , .footer-links li a { font-size:13px; }

}


@media only screen and (max-width:540px) {

.slider-hero-title strong { font-size:20px; line-height:25px; }

.footer-social li { padding-right:10px; }
	.footer-social li a img { width:40px; }


}
@media only screen and (max-width: 1023px) {
    .sub-hero {
        padding-top: 0px;
    }
}

.sub-hero {
    float: left;
    width: 100%;
    padding-top: 70px;
    position: relative;
    z-index: 100;
    background-size: cover;
    color: rgb(255, 255, 255);
    background-position: center center;
}

.sidebar {
  transition: top 0.2s ease;
  z-index: 10;
}
.sidebar-wrap {
  position: relative;
}