* {
  margin: 0;
}

body {
  margin: 0;
}

.afro-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.afro-pre-header {
  background-color: #0A2C23;
}

.afro-pre-header .afro-pre-header-container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 13px 20px;
}

.afro-pre-header .afro-pre-header-container .afro-pre-header-links,
.afro-pre-header .afro-pre-header-container .afro-pre-header-rs {
  display: flex;
}

.afro-pre-header .afro-pre-header-container .afro-pre-header-links {
  justify-content: start;
}

.afro-pre-header .afro-pre-header-container .afro-pre-header-links .afro-pre-header-link {
  font-family: Helvetica Neue;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  padding: 0 14px;
  border-left: 2px solid white;
}

.afro-pre-header .afro-pre-header-container .afro-pre-header-links .afro-pre-header-link:first-child {
  border-left: none;
  padding-left: 0;
}

.afro-pre-header .afro-pre-header-container .afro-pre-header-rs {
  justify-content: end;
}

.afro-pre-header .afro-pre-header-container .afro-pre-header-rs .icons {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.afro-pre-header .afro-pre-header-container .afro-pre-header-rs .icons a {
  all: unset;
  cursor: pointer;
}

.afro-pre-header .afro-pre-header-container .afro-pre-header-rs .icons a i {
  display: flex;
  font-size: 16px;
  color: white;
  transition: transform 0.2s ease;
}

.afro-pre-header .afro-pre-header-container .afro-pre-header-rs .icons a i:hover {
  transform: scale(1.2);
  transition: transform 0.2s ease;
  color: #A0C688;
}

@media (max-width: 768px) {
  .afro-pre-header .afro-pre-header-container {
    flex-direction: column-reverse;
    align-items: center;
    gap: 12px;
  }

  .afro-pre-header .afro-pre-header-container .afro-pre-header-links,
  .afro-pre-header .afro-pre-header-container .afro-pre-header-rs {
    justify-content: center;
  }

  .afro-pre-header .afro-pre-header-container .afro-pre-header-links .afro-pre-header-link {
    padding: 0 8px;
    font-size: 10px;
  }
}

#afro-header {
  position: sticky;
  top: 0;
  z-index: 5;
}

#afro-header .afro-navbar {
  z-index: 5;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 0;
}

#afro-header .afro-navbar .nav-contianer {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 20px;
}

#afro-header .afro-navbar .nav-contianer .nav-seperator {
  flex: 1;
  display: flex;
}

#afro-header .afro-navbar .nav-contianer .nav-seperator.center {
  flex: 3;
  justify-content: center;
}

#afro-header .afro-navbar .nav-contianer .nav-seperator.center .menu.js-top-menu.position-static.hidden-sm-down {
  min-width: 100%;
  display: flex;
  justify-content: center;
}

#afro-header .afro-navbar .nav-contianer .nav-seperator:last-of-type {
  justify-content: end;
}

#afro-header .afro-navbar .nav-contianer .nav-seperator:has(#menu-button) {
  display: none;
  align-self: center;
  color: #0A2C23;
}

#afro-header .afro-navbar .nav-contianer .logo {
  width: 233.57px;
  transform: translateY(1px) translateX(1px);
}

#afro-header .afro-navbar .nav-contianer ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
  width: 100%;
  flex-wrap: wrap;
  margin: 0;
  padding: 0 20px;
  gap: 3px;
}

#afro-header .afro-navbar .nav-contianer ul li {
  list-style: none;
  color: #062024;
  display: flex !important;
  align-items: center;
  gap: 5px;
  font-family: Helvetica Neue;
  font-weight: 400;
  font-style: Regular;
  /*font-size: 16px;*/
  font-size: 13px;
  text-transform: capitalize;
  position: relative;
  padding: 0 3px; 
}

#afro-header .afro-navbar .nav-contianer ul li:hover {
  color: #A0C688;
}

#afro-header .afro-navbar .nav-contianer ul li:hover svg {
  transform: rotate(-180deg);
  transition: transform 0.3s ease-in-out;
}

#afro-header .afro-navbar .nav-contianer ul li a {
  all: unset;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
  color: #062024;
}

#afro-header .afro-navbar .nav-contianer ul li a svg {
  height: 8px;
  transition: transform 0.3s ease-in-out;
  margin-top: 3px;
}

#afro-header .afro-navbar .nav-contianer ul li a.active {
  color: #A0C688;
}

#afro-header .afro-navbar .nav-contianer .dropdown-menu {
  display: none;
  position: absolute;
  justify-content: center;
  background-color: white;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 10;
  left: 0;
  top: 200%;
  padding: 8px 22px;
  gap: 40px;
}

#afro-header .afro-navbar .nav-contianer .dropdown-menu .dropdown-container {
  display: flex;
  width: 100%;
  max-width: 1237px;
}

#afro-header .afro-navbar .nav-contianer .dropdown-menu .dropdown-container .dropdown-links {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-right: 55px;
}

#afro-header .afro-navbar .nav-contianer .dropdown-menu .dropdown-container .dropdown-links span {
  font-size: 20px;
  color: #A0C688;
  font-weight: 500;
}

#afro-header .afro-navbar .nav-contianer .dropdown-menu .dropdown-container .dropdown-links ul {
  flex-direction: column;
  align-items: start;
  width: auto;
  gap: 20px;
}

#afro-header .afro-navbar .nav-contianer .dropdown-menu .dropdown-container .dropdown-links ul li {
  font-size: 16px;
  color: #A0C688;
}

#afro-header .afro-navbar .nav-contianer .dropdown-menu .dropdown-container .dropdown-links ul li:hover {
  color: #A0C688;
  text-decoration: underline;
  cursor: pointer;
}

#afro-header .afro-navbar .nav-contianer .dropdown-menu .dropdown-container .dropdown-links ul li a {
  all: unset;
}

#afro-header .afro-navbar .nav-contianer .dropdown-menu .dropdown-container .dropdown-links ul li.active {
  color: #194F40;
  text-decoration: underline;
  font-weight: 500;
}

#afro-header .afro-navbar .nav-contianer .dropdown-menu .dropdown-container .dropdown-images {
  display: flex;
  overflow-x: scroll;
  scrollbar-width: none;
  gap: 40px;
}

#afro-header .afro-navbar .nav-contianer .dropdown-menu .dropdown-container .dropdown-images .dropdown-image-frame {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #A0C688;
}

#afro-header .afro-navbar .nav-contianer .dropdown-menu .dropdown-container .dropdown-images .dropdown-image-frame .img-container {
  width: 161px;
  height: 169px;
  border-radius: 10px;
  overflow: hidden;
}

#afro-header .afro-navbar .nav-contianer .dropdown-menu .dropdown-container .dropdown-images .dropdown-image-frame .img-container img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.2s ease;
}

#afro-header .afro-navbar .nav-contianer .dropdown-menu .dropdown-container .dropdown-images .dropdown-image-frame .img-container img:hover {
  transform: scale(1.1);
}

#afro-header .afro-navbar .nav-contianer .dropdown-menu .dropdown-back-btn {
  display: none;
}

#afro-header .afro-navbar .nav-contianer .dropdown-menu.show {
  display: flex;
}

#afro-header .afro-navbar .nav-contianer .dropdown-menu .collection-grid {
  display: flex;
  width: 100%;
  gap: 6px;
  max-width: 1236px;
  flex-wrap: wrap;
}

#afro-header .afro-navbar .nav-contianer .dropdown-menu .collection-grid a .collection-item {
  position: relative;
  height: 264px;
  width: 227px;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  background-color: #000;
  border-radius: 8px;
}

#afro-header .afro-navbar .nav-contianer .dropdown-menu .collection-grid a .collection-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s ease;
}

#afro-header .afro-navbar .nav-contianer .dropdown-menu .collection-grid a .collection-item .collection-title {
  position: absolute;
  bottom: 6.5rem;
  left: 0;
  top: 15%;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 1.5rem;
  font-family: bagel fat one;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

#afro-header .afro-navbar .nav-contianer .dropdown-menu .collection-grid a .collection-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

#afro-header .afro-navbar .nav-contianer .dropdown-menu .collection-grid a .collection-item:hover img {
  transform: scale(1.5);
  transition-duration: 1s;
  opacity: 60%;
}

#afro-header .afro-navbar .nav-contianer .dropdown-menu.mega-dropdown .mega-dropdown-content {
  display: flex;
  width: 100%;
  gap: 100px;
}

#afro-header .afro-navbar .nav-contianer .dropdown-menu.mega-dropdown .mega-dropdown-content .left-navigation {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#afro-header .afro-navbar .nav-contianer .dropdown-menu.mega-dropdown .mega-dropdown-content .left-navigation a {
  font-family: Poppins;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: 0%;
  color: #0A2C23;
  transition: all 0.3s ease;
}

#afro-header .afro-navbar .nav-contianer .dropdown-menu.mega-dropdown .mega-dropdown-content .left-navigation a:hover {
  scale: 1.03;
}

#afro-header .afro-navbar .nav-contianer .dropdown-menu.mega-dropdown .mega-dropdown-content .content-columns {
  display: flex;
  gap: 100px;
}

#afro-header .afro-navbar .nav-contianer .dropdown-menu.mega-dropdown .mega-dropdown-content .content-columns .menu-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#afro-header .afro-navbar .nav-contianer .dropdown-menu.mega-dropdown .mega-dropdown-content .content-columns .menu-column__title {
  font-family: Poppins;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: 0%;
  color: #0A2C23;
}

#afro-header .afro-navbar .nav-contianer .dropdown-menu.mega-dropdown .mega-dropdown-content .content-columns .menu-column ul {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
  padding: 0;
}

#afro-header .afro-navbar .nav-contianer .dropdown-menu.mega-dropdown .mega-dropdown-content .content-columns .menu-column ul li a {
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  /*font-size: 16px;*/
  font-size: 13px;
  leading-trim: NONE;
  line-height: 32px;
  letter-spacing: 0px;
  color: #0A2C23;
  transition: all 0.3s ease;
}

#afro-header .afro-navbar .nav-contianer .dropdown-menu.mega-dropdown .mega-dropdown-content .content-columns .menu-column ul li a:hover {
  color: #A0C688;
  text-decoration: underline;
  scale: 1.03;
}

#afro-header .afro-navbar .nav-contianer .collections-link {
  position: relative;
}

#afro-header .afro-navbar .nav-contianer .collections-link:hover+.dropdown-menu,
#afro-header .afro-navbar .nav-contianer .collections-link+.dropdown-menu:hover,
#afro-header .afro-navbar .nav-contianer .collections-link+.dropdown-menu.show {
  display: flex;
}

#afro-header .afro-navbar .nav-contianer .icons {
  display: flex;
  gap: 4px;
  align-items: center;
}

#afro-header .afro-navbar .nav-contianer .icons .dropdown-selector {
  position: relative;
  display: inline-block;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

#afro-header .afro-navbar .nav-contianer .icons .dropdown-selector__toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 6px 2px;
  border-radius: 4px;
  font-size: 14px;
  font-family: Helvetica Neue;
  text-transform: uppercase;
  gap: 5px;
}

#afro-header .afro-navbar .nav-contianer .icons .dropdown-selector__arrow {
  transition: transform 0.2s ease;
  height: 18px;
  width: auto;
}

#afro-header .afro-navbar .nav-contianer .icons .dropdown-selector__menu {
  position: absolute;
  top: 90%;
  left: -20px;
  right: 0;
  margin-top: 4px;
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 10px;
  display: none;
  z-index: 10;
  min-width: 120px;
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
}

#afro-header .afro-navbar .nav-contianer .icons .dropdown-selector__menu .dropdown-selector__item {
  margin: 0;
  padding: 5px 0;
}

#afro-header .afro-navbar .nav-contianer .icons .dropdown-selector__menu .dropdown-selector__item a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: #333;
  transition: background-color 0.2s;
}

#afro-header .afro-navbar .nav-contianer .icons .dropdown-selector__menu .dropdown-selector__item a:hover {
  background-color: #f5f5f5;
}

#afro-header .afro-navbar .nav-contianer .icons .dropdown-selector__menu .dropdown-selector__item a.active {
  font-weight: 500;
  color: #194F40;
}

@media (min-width: 768px) {
  #afro-header .afro-navbar .nav-contianer .icons .dropdown-selector:hover .dropdown-selector__menu {
    display: block;
  }

  #afro-header .afro-navbar .nav-contianer .icons .dropdown-selector:hover .dropdown-selector__arrow {
    transform: rotate(180deg);
  }
}

#afro-header .afro-navbar .nav-contianer .icons .dropdown-selector.active .dropdown-selector__menu {
  display: block;
}

#afro-header .afro-navbar .nav-contianer .icons .dropdown-selector.active .dropdown-selector__arrow {
  transform: rotate(180deg);
}

#afro-header .afro-navbar .nav-contianer .icons .search {
  position: relative;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  /* Full-screen overlay (initially hidden) */
}

#afro-header .afro-navbar .nav-contianer .icons .search .search-icon {
  cursor: pointer;
  background-color: #EAEBEF;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

#afro-header .afro-navbar .nav-contianer .icons .search .search-form {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: #113f36;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 212px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

#afro-header .afro-navbar .nav-contianer .icons .search .search-form.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

#afro-header .afro-navbar .nav-contianer .icons .search .search-form .close {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

#afro-header .afro-navbar .nav-contianer .icons .search .search-form .search-form-input-container {
  width: min(900px, 85%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 16px;
}

#afro-header .afro-navbar .nav-contianer .icons .search .search-form .search-form-input-container input {
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  font-size: 28px;
  color: white;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  padding: 20px 0;
}

#afro-header .afro-navbar .nav-contianer .icons .search .search-form .search-form-input-container input:focus {
  box-shadow: none;
}

#afro-header .afro-navbar .nav-contianer .icons .search .search-form .search-form-input-container input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.45);
}

#afro-header .afro-navbar .nav-contianer .icons .search .search-form .search-form-input-container input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

#afro-header .afro-navbar .nav-contianer .icons .search .search-form .search-form-input-container button {
  background: #297560;
  border: none;
  border-radius: 6px;
  color: white;
  padding: 16px 30px;
  cursor: pointer;
  align-self: end;
  max-width: 157px;
}

#afro-header .afro-navbar .nav-contianer .icons .nav-btn {
  font-family: Poppins;
  font-weight: 400;
  font-size: 12px;
  color: white;
  border: 1px solid transparent;
  padding: 8px 18px;
  background-color: #297560;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: lowercase;
}
#afro-header .afro-navbar .nav-contianer .icons .nav-btn::first-letter{
  text-transform: uppercase;
}

#afro-header .afro-navbar .nav-contianer .icons .nav-btn:hover {
  background-color: transparent;
  color: #297560;
  border: 1px solid #297560;
}

.afro-embed iframe {
  width: 100%;
  aspect-ratio: 2;
}

.afro-media-modal__body img {
  width: 100%;
  aspect-ratio: 2;
  object-fit: cover;
}

@media (max-width: 1000px) {
  #afro-header .afro-navbar {
    padding: 8px 0px;
  }

  #afro-header .afro-navbar .nav-contianer {
    padding: 0px 20px;
  }

  #afro-header .afro-navbar .nav-contianer .logo {
    width: 130px;
    max-width: none;
  }

  #afro-header .afro-navbar .nav-contianer .icons {
    gap: 8px;
  }

  #afro-header .afro-navbar .nav-contianer .icons a {
    width: 14px;
    height: 14px;
  }

  #afro-header .afro-navbar .nav-contianer .nav-seperator:has(#menu-button) {
    display: block;
    z-index: 16;
  }

  #afro-header .afro-navbar .nav-contianer .nav-seperator.center {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #0A2C23;
    overflow-y: auto;
    z-index: 15;
    padding-top: 60px;
    transform: translateX(0);
    transition: transform 0.4s ease-in-out;
  }

  #afro-header .afro-navbar .nav-contianer .nav-seperator.center.active {
    transform: translateX(0);
    display: flex;
  }

  #afro-header .afro-navbar .nav-contianer .nav-seperator.center.has-active-dropdown {
    visibility: hidden;
  }

  #afro-header .afro-navbar .nav-contianer #menu-button {
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  #afro-header .afro-navbar .nav-contianer #menu-button::before,
  #afro-header .afro-navbar .nav-contianer #menu-button::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #0A2C23;
    transition: all 0.3s ease;
  }

  #afro-header .afro-navbar .nav-contianer #menu-button::before {
    transform: translateY(-6px);
  }

  #afro-header .afro-navbar .nav-contianer #menu-button::after {
    transform: translateY(6px);
  }

  #afro-header .afro-navbar .nav-contianer:has(.nav-seperator.center.active) #menu-button {
    transform: rotate(180deg);
  }

  #afro-header .afro-navbar .nav-contianer:has(.nav-seperator.center.active) #menu-button::before {
    transform: rotate(45deg);
    background-color: white;
  }

  #afro-header .afro-navbar .nav-contianer:has(.nav-seperator.center.active) #menu-button::after {
    transform: rotate(-45deg);
    background-color: white;
  }

  #afro-header .afro-navbar .nav-contianer ul {
    width: 100%;
    flex-direction: column;
    padding: 30px 0;
    gap: 20px;
    align-items: center;
    justify-content: start;
  }

  #afro-header .afro-navbar .nav-contianer ul li {
    font-size: 16px;
    color: white;
    width: 80%;
    justify-content: center;
    position: relative;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  #afro-header .afro-navbar .nav-contianer ul li a .arrow-down {
    position: relative;
    transition: transform 0.3s ease;
  }

  #afro-header .afro-navbar .nav-contianer ul li a.active .arrow-down {
    transform: rotate(-180deg);
  }

  #afro-header .afro-navbar .nav-contianer .dropdown-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(4, 36, 54, 0.9529411765);
    box-shadow: none;
    padding: 0;
    z-index: 25;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
  }

  #afro-header .afro-navbar .nav-contianer .dropdown-menu.show {
    display: flex;
    transform: translateX(0);
    padding: 0;
    background-color: #0A2C23;
  }

  #afro-header .afro-navbar .nav-contianer .dropdown-menu .dropdown-back-btn {
    display: flex;
    align-items: center;
    justify-content: end;
    color: white;
    font-size: 16px;
    padding: 15px 20px;
    cursor: pointer;
    width: 85%;
    position: sticky;
    top: 0;
    z-index: 2;
  }

  #afro-header .afro-navbar .nav-contianer .dropdown-menu .dropdown-back-btn::before {
    content: "";
    width: 10px;
    height: 10px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    margin-right: 10px;
  }

  #afro-header .afro-navbar .nav-contianer .dropdown-menu .dropdown-back-btn:active {
    background-color: rgba(255, 255, 255, 0.1);
  }

  #afro-header .afro-navbar .nav-contianer .dropdown-menu .dropdown-container {
    flex-direction: column;
    width: 100%;
    padding: 20px;
    height: auto;
  }

  #afro-header .afro-navbar .nav-contianer .dropdown-menu .dropdown-container .dropdown-links {
    padding: 10px 0;
    margin-bottom: 20px;
    width: 100%;
  }

  #afro-header .afro-navbar .nav-contianer .dropdown-menu .dropdown-container .dropdown-links span {
    color: white;
    font-size: 20px;
    text-align: left;
    margin-bottom: 15px;
    display: block;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 8px;
  }

  #afro-header .afro-navbar .nav-contianer .dropdown-menu .dropdown-container .dropdown-links ul {
    width: 100%;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  #afro-header .afro-navbar .nav-contianer .dropdown-menu .dropdown-container .dropdown-links ul li {
    border: none;
    padding: 10px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    width: auto;
    justify-content: flex-start;
    border-radius: 6px;
    transition: all 0.2s ease;
    background-color: rgba(255, 255, 255, 0.05);
  }

  #afro-header .afro-navbar .nav-contianer .dropdown-menu .dropdown-container .dropdown-links ul li:hover {
    background-color: rgba(66, 168, 195, 0.2);
    transform: translateY(-2px);
  }

  #afro-header .afro-navbar .nav-contianer .dropdown-menu .dropdown-container .dropdown-links ul li.active {
    color: #194F40;
    background-color: rgba(66, 168, 195, 0.15);
    font-weight: 500;
    text-decoration: none;
    position: relative;
  }

  #afro-header .afro-navbar .nav-contianer .dropdown-menu .dropdown-container .dropdown-links ul li.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #194F40;
  }

  #afro-header .afro-navbar .nav-contianer .dropdown-menu .dropdown-container .dropdown-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    width: 100%;
    padding: 5px 0 15px 0;
    overflow-x: visible;
  }

  #afro-header .afro-navbar .nav-contianer .dropdown-menu .dropdown-container .dropdown-images .dropdown-image-frame {
    min-width: auto;
    margin-right: 0;
    transition: transform 0.3s ease;
  }

  #afro-header .afro-navbar .nav-contianer .dropdown-menu .dropdown-container .dropdown-images .dropdown-image-frame:active {
    transform: scale(0.95);
  }

  #afro-header .afro-navbar .nav-contianer .dropdown-menu .dropdown-container .dropdown-images .dropdown-image-frame p {
    color: white;
    font-size: 14px;
    margin-top: 10px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  #afro-header .afro-navbar .nav-contianer .dropdown-menu .dropdown-container .dropdown-images .dropdown-image-frame .img-container {
    width: 100%;
    height: 160px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  #afro-header .afro-navbar .nav-contianer .dropdown-menu .dropdown-container .dropdown-images .dropdown-image-frame .img-container img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  #afro-header .afro-navbar .nav-contianer .dropdown-menu.show .dropdown-back-btn,
  #afro-header .afro-navbar .nav-contianer .dropdown-menu.show .dropdown-links span,
  #afro-header .afro-navbar .nav-contianer .dropdown-menu.show .dropdown-links ul li,
  #afro-header .afro-navbar .nav-contianer .dropdown-menu.show .dropdown-image-frame {
    animation: fadeInRight 0.5s ease forwards;
    opacity: 0;
  }

  #afro-header .afro-navbar .nav-contianer .dropdown-menu.show .dropdown-back-btn {
    animation-delay: 0.1s;
  }

  #afro-header .afro-navbar .nav-contianer .dropdown-menu.show .dropdown-links span {
    animation-delay: 0.2s;
  }

  #afro-header .afro-navbar .nav-contianer .dropdown-menu.show .dropdown-links ul li:nth-child(1) {
    animation-delay: 0.25s;
  }

  #afro-header .afro-navbar .nav-contianer .dropdown-menu.show .dropdown-links ul li:nth-child(2) {
    animation-delay: 0.3s;
  }

  #afro-header .afro-navbar .nav-contianer .dropdown-menu.show .dropdown-links ul li:nth-child(3) {
    animation-delay: 0.35s;
  }

  #afro-header .afro-navbar .nav-contianer .dropdown-menu.show .dropdown-links ul li:nth-child(4) {
    animation-delay: 0.4s;
  }

  #afro-header .afro-navbar .nav-contianer .dropdown-menu.show .dropdown-links ul li:nth-child(5) {
    animation-delay: 0.45s;
  }

  #afro-header .afro-navbar .nav-contianer .dropdown-menu.show .dropdown-links ul li:nth-child(6) {
    animation-delay: 0.5s;
  }

  #afro-header .afro-navbar .nav-contianer .dropdown-menu.show .dropdown-links ul li:nth-child(7) {
    animation-delay: 0.55s;
  }

  #afro-header .afro-navbar .nav-contianer .dropdown-menu.show .dropdown-links ul li:nth-child(8) {
    animation-delay: 0.6s;
  }

  #afro-header .afro-navbar .nav-contianer .dropdown-menu.show .dropdown-image-frame:nth-child(1) {
    animation-delay: 0.55s;
  }

  #afro-header .afro-navbar .nav-contianer .dropdown-menu.show .dropdown-image-frame:nth-child(2) {
    animation-delay: 0.6s;
  }

  #afro-header .afro-navbar .nav-contianer .dropdown-menu.show .dropdown-image-frame:nth-child(3) {
    animation-delay: 0.65s;
  }

  #afro-header .afro-navbar .nav-contianer .dropdown-menu.show .dropdown-image-frame:nth-child(4) {
    animation-delay: 0.7s;
  }

  #afro-header .afro-navbar .nav-contianer .dropdown-menu.show .dropdown-image-frame:nth-child(5) {
    animation-delay: 0.75s;
  }

  #afro-header .afro-navbar .nav-contianer .dropdown-menu.show .dropdown-image-frame:nth-child(6) {
    animation-delay: 0.8s;
  }

  #afro-header .afro-navbar .nav-contianer .dropdown-menu.show .dropdown-image-frame:nth-child(7) {
    animation-delay: 0.85s;
  }

  #afro-header .afro-navbar .nav-contianer .dropdown-menu.show .dropdown-image-frame:nth-child(8) {
    animation-delay: 0.9s;
  }

  #afro-header .afro-navbar .hidden-sm-down {
    display: flex !important;
  }
}

@media (max-width: 1200px) {
  #afro-header .afro-navbar .nav-contianer ul {
    width: 100%;
    gap: 4px;
  }
}

@media (max-width: 1000px) {
  #afro-header .afro-navbar .nav-contianer .nav-seperator {
    justify-content: center;
  }

  .afro-navbar .nav-contianer .icons a img,
  .afro-navbar .nav-contianer .icons a i {
    width: 15px;
    height: 15px;
  }

  #afro-header .afro-navbar .nav-contianer ul {
    text-align: center;
  }

  #afro-header .afro-navbar .nav-contianer ul li {
    width: 100%;
  }

  #afro-header .afro-navbar .nav-contianer ul li a {
    color: white;
    font-size: 14px;
  }

  .afro-navbar .nav-contianer .icons {
    gap: 12px;
  }

  #afro-header .afro-navbar .nav-contianer .icons #search_widget form {
    width: 0;
  }

  #afro-header .afro-navbar .nav-contianer .icons #search_widget {
    margin: 0;
  }

  #afro-header .afro-navbar .nav-contianer .dropdown-menu .collection-grid {
    flex-wrap: wrap;
    justify-content: center;
  }

  #afro-header .afro-navbar .nav-contianer .dropdown-menu.mega-dropdown .mega-dropdown-content {
    overflow-y: scroll;
    flex-direction: column;
  }

  #afro-header .afro-navbar .nav-contianer .dropdown-menu.mega-dropdown .mega-dropdown-content .content-columns {
    flex-direction: column;
  }

  #afro-header .afro-navbar .nav-contianer .dropdown-menu.mega-dropdown .mega-dropdown-content .left-navigation {
    display: none;
  }

  #afro-header .afro-navbar .nav-contianer .dropdown-menu.mega-dropdown .mega-dropdown-content .left-navigation a {
    color: white;
  }

  #afro-header .afro-navbar .nav-contianer .dropdown-menu.mega-dropdown .mega-dropdown-content .content-columns .menu-column ul li a {
    color: white;
    white-space: normal;
    font-size: 14px;
  }

  #afro-header .afro-navbar .nav-contianer .dropdown-menu.mega-dropdown .mega-dropdown-content .content-columns .menu-column__title {
    color: white;
  }

  #afro-header .afro-navbar .nav-contianer .dropdown-menu.mega-dropdown .mega-dropdown-content {
    overflow-x: scroll;
  }

  .nav-seperator.center.has-active-dropdown .dropdown-menu {
    visibility: visible !important;
    opacity: 1;
    pointer-events: auto;
  }

  #afro-header .afro-navbar .nav-contianer .icons .nav-btn {
    display: none;
  }

  #afro-header .afro-navbar .nav-contianer .icons .search .search-icon {
    padding: 5px;
  }

  #afro-header .afro-navbar .nav-contianer .icons .search .search-icon svg {
    width: 12px;
  }

  #afro-header .afro-navbar .nav-contianer .icons .dropdown-selector__toggle {
    font-size: 10px;
  }

  #afro-header .afro-navbar .nav-contianer .icons .dropdown-selector__menu {
    min-width: auto;
    width: -moz-fit-content;
    width: fit-content;
  }

  #afro-header .afro-navbar .nav-contianer .icons .dropdown-selector__menu .dropdown-selector__item a {
    width: -moz-fit-content;
    width: fit-content;
  }

  #afro-header .afro-navbar .nav-contianer .icons .dropdown-selector__menu .dropdown-selector__item {
    width: -moz-fit-content;
    width: fit-content;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

body.dropdown-active {
  overflow: hidden;
}

body.search-overlay-open {
  overflow: hidden;
}

.afro-slider .afro-swiper {
  position: relative;
  height: 821px;
}

.afro-slider .afro-swiper .swiper-wrapper .swiper-slide .content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.afro-slider .afro-swiper .swiper-wrapper .swiper-slide .content .title {
  font-family: Helvetica Neue;
  font-weight: 500;
  font-size: 68px;
  text-align: center;
  color: #fff;
  max-width: 980px;
}

.afro-slider .afro-swiper .afro-slider-buttons {
  position: absolute;
  left: 50%;
  bottom: 20%;
  transform: translate(-50%, -50%);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1270px;
  pointer-events: none;

}

.afro-slider .afro-swiper .swiper-pagination .swiper-pagination-bullet {
  background: white;
  border: 2px solid white;
  width: 34px;
  border-radius: 11px;
  transition: all 0.3s ease;
}

.afro-slider .afro-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: transparent;
  border: 2px solid white;
  width: 100px;
  border-radius: 11px;
  transition: all 0.3s ease;
}

.afro-slider .afro-slider-button-prev,
.afro-slider .afro-slider-button-next {
  pointer-events: auto;
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2196078431);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
  z-index: 10;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.afro-slider .afro-slider-button-prev:hover,
.afro-slider .afro-slider-button-next:hover {
  background-color: rgba(255, 255, 255, 0.2196078431);
}

.afro-slider .afro-slider-button-prev {
  left: 36px;
}

.afro-slider .afro-slider-button-next {
  right: 36px;
}

@media (max-width: 768px) {
  .afro-slider .afro-swiper {
    height: 500px;
  }

  .afro-slider .afro-swiper .swiper-wrapper .swiper-slide .content .title {
    font-size: 32px;
    padding: 0 10px;
  }

  .afro-slider .afro-swiper .afro-slider-buttons {
    display: none;
  }
}

.afro-about-us {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 120px 20px;
}

.afro-about-us .afro-about-us-container {
  background-color: #194F40;
  width: 100%;
  max-width: 940px;
  padding: 70px 130px;
  display: flex;
  flex-direction: column;
}

.afro-about-us .afro-about-us-container h3 {
  font-family: Poppins;
  font-weight: 400;
  font-size: 22px;
  text-transform: uppercase;
  color: #A0C688;
  text-align: center;
  max-width: 940px;
  margin: 0 auto 40px auto;
}

.afro-about-us .afro-about-us-container h2 {
  font-family: Helvetica Neue;
  font-weight: 500;
  font-style: Medium;
  font-size : 32px;
  text-align: center;
  color: #fff;
  max-width: 940px;
  margin: 0 auto 30px auto;
}

.afro-about-us .afro-about-us-container p,
.afro-about-us .afro-about-us-container .field--type-text-long {
  font-family: Helvetica Neue;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 27px;
  color: #fff;
  width: 100%;
  text-align: justify;
  text-justify: inter-word;   /* better spacing */
  line-height: 1.6;
  hyphens: auto;   
  max-width: 940px;
  margin: 0 ;
}
.field--name-field-afro-about-link{
  margin-top: 40px;
}

.afro-about-us .afro-about-us-container a {
  background-color: #297560;
  color: white;
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  padding: 16px 30px;
  align-self: center;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  display: flex;
  width: fit-content;
  margin: 0 auto;
}

.afro-about-us .afro-about-us-container a:hover {
  background-color: transparent;
  border: 1px solid #297560;
}

@media (max-width: 768px) {
  .afro-about-us {
    padding: 30px 10px;
  }

  .afro-about-us .afro-about-us-container {
    padding: 40px 20px;
  }

  .afro-about-us .afro-about-us-container h3 {
    font-size: 18px;
    max-width: 100%;
  }

  .afro-about-us .afro-about-us-container h2 {
    font-size: 32px;
    max-width: 100%;
  }

  .afro-about-us .afro-about-us-container p {
    font-size: 16px;
    max-width: 100%;
  }
}

.afro-events {
  background-color: #FAFBFB;
  padding: 120px 0;
}

.afro-events .afro-events-container {
  display: flex;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  gap: 23px;
}

.afro-events .afro-events-container .left-frame,
.afro-events .afro-events-container .right-frame {
  flex: 1;
  width: 50%;
}
.afro-events .afro-events-container .left-frame {
  max-width: 552px;
}

.afro-events .afro-events-container .left-frame h2,
.afro-events .afro-events-container .right-frame h2 {
  font-family: Helvetica Neue;
  font-weight: 500;
  font-style: Medium;
  font-size : 32px;
  color: #333333;
  margin-bottom: 30px;
}

.afro-events .afro-events-container .left-frame .afro-events-left-swiper .swiper-wrapper {
  width: 100%;
}

.afro-events .afro-events-container .left-frame .afro-events-left-swiper .swiper-wrapper .afro-event-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 11px 12px;
  background-color: #fff;
  border: 1px solid #E6E6E6;
  box-sizing: border-box;
}

.afro-events .afro-events-container .left-frame .afro-events-left-swiper .swiper-wrapper .afro-event-card .event-likes {
  display: none;
  font-family: Poppins;
  font-weight: 500;
  font-style: Medium;
  font-size: 18.62px;
  color: rgba(6, 32, 36, 0.6);
  margin-bottom: 7px;
  max-width: 528px;
}

.afro-events .afro-events-container .left-frame .afro-events-left-swiper .swiper-wrapper .afro-event-card .event-name {
  font-family: Helvetica Neue;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  color: #073A41;
  margin-bottom: 3px;
  max-width: 528px;
  text-decoration: none;
}

.afro-events .afro-events-container .left-frame .afro-events-left-swiper .swiper-wrapper .afro-event-card a:hover img {
  transform: scale(1.03);
}

.afro-events .afro-events-container .left-frame .afro-events-left-swiper .swiper-wrapper .afro-event-card .event-img {
  max-height: 254px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  margin-bottom: 0px;
  transition: all 0.3s;
}

.afro-events .afro-events-container .left-frame .afro-events-left-swiper .swiper-wrapper .afro-event-card .event-description {
  font-family: Helvetica Neue;
  font-weight: 400;
  font-size: 14px;
  color: #384D50;
  line-height: 21px;
  margin-bottom: 22px;
}

.afro-events .afro-events-container .left-frame .afro-events-left-swiper .swiper-wrapper .afro-event-card .event-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.afro-events .afro-events-container .left-frame .afro-events-left-swiper .swiper-wrapper .afro-event-card .event-info .date,
.afro-events .afro-events-container .left-frame .afro-events-left-swiper .swiper-wrapper .afro-event-card .event-info .location {
  font-family: Poppins;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  color: #2B3233;
}

.afro-events .afro-events-container .left-frame .afro-events-left-swiper section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  gap: 10px;
}

.afro-events .afro-events-container .left-frame .afro-events-left-swiper section .buttons {
  display: flex;
  gap: 9px;
}

.afro-events .afro-events-container .left-frame .afro-events-left-swiper section .buttons .afro-slider-event-next,
.afro-events .afro-events-container .left-frame .afro-events-left-swiper section .buttons .afro-slider-event-prev {
  background-color: #EBEBEB;
  padding: 11px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.afro-events .afro-events-container .left-frame .afro-events-left-swiper section .buttons .afro-slider-event-next:hover ,
.afro-events .afro-events-container .left-frame .afro-events-left-swiper section .buttons .afro-slider-event-prev:hover{
  background-color: transparent;
  border: 1px solid rgb(41, 117, 96);
}

.afro-events .afro-events-container .left-frame .afro-events-left-swiper section a {
  font-family: Helvetica Neue;
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  color: #073A41;
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 9px;
}
.afro-events .afro-events-container .left-frame .afro-events-left-swiper section a:hover {
  text-decoration: underline;
}

.afro-events .afro-events-container .right-frame .afro-acts-right-swiper .swiper-wrapper {
  width: 100%;
}

.afro-events .afro-events-container .right-frame .afro-acts-right-swiper .swiper-wrapper .afro-acts-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  background-color: #fff;
  box-sizing: border-box;
  /* max-height: 488px;
  overflow-y: auto; */
}

.afro-events .afro-events-container .right-frame .afro-acts-right-swiper .swiper-wrapper .afro-acts-card .afro-act-wide-card {
  display: flex;
  padding: 4px;
  gap: 8px;
  padding-right: 10px;
  border: 1px solid #E6E6E6;
  box-sizing: border-box;
}

.afro-events .afro-events-container .right-frame .afro-acts-right-swiper .swiper-wrapper .afro-acts-card .afro-act-wide-card .img-container {
  width: 25%;
}

.afro-events .afro-events-container .right-frame .afro-acts-right-swiper .swiper-wrapper .afro-acts-card .afro-act-wide-card .img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.afro-events .afro-events-container .right-frame .afro-acts-right-swiper .swiper-wrapper .afro-acts-card .afro-act-wide-card .content {
  width: 73%;
}

.afro-events .afro-events-container .right-frame .afro-acts-right-swiper .swiper-wrapper .afro-acts-card .afro-act-wide-card .content .likes-and-date {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.afro-events .afro-events-container .right-frame .afro-acts-right-swiper .swiper-wrapper .afro-acts-card .afro-act-wide-card .content .likes-and-date .like {
  display: flex;
  display: none;
  align-items: center;
  gap: 5px;
  font-family: Poppins;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  color: rgba(6, 32, 36, 0.6);
}

.afro-events .afro-events-container .right-frame .afro-acts-right-swiper .swiper-wrapper .afro-acts-card .afro-act-wide-card .content .likes-and-date .date {
  color: #2B3233;
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
}

.afro-events .afro-events-container .right-frame .afro-acts-right-swiper .swiper-wrapper .afro-acts-card .afro-act-wide-card .content .titles {
  margin-bottom: 8px;
}

.afro-events .afro-events-container .right-frame .afro-acts-right-swiper .swiper-wrapper .afro-acts-card .afro-act-wide-card .content .titles .title {
  font-family: Helvetica Neue;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  color: #073A41;
}

.afro-events .afro-events-container .right-frame .afro-acts-right-swiper .swiper-wrapper .afro-acts-card .afro-act-wide-card .content .titles .title a {
  color: #073A41;
  text-decoration: none;
  display: block;        /* or inline-block */
  width: 100%;           /* fill the container */
  white-space: nowrap;   /* stay on one line */
  overflow: hidden;      /* hide overflow */
  text-overflow: ellipsis;
}

.afro-events .afro-events-container .right-frame .afro-acts-right-swiper .swiper-wrapper .afro-acts-card .afro-act-wide-card .content .titles .description {
  font-family: Helvetica Neue;
  font-weight: 400;
  font-style: Regular;
  font-size: 12px;
  color: #384D50;
  text-overflow: ellipsis;
}

.afro-events .afro-events-container .right-frame .afro-acts-right-swiper .swiper-wrapper .afro-acts-card .afro-act-wide-card .content .additional-infos {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.afro-events .afro-events-container .right-frame .afro-acts-right-swiper .swiper-wrapper .afro-acts-card .afro-act-wide-card .content .additional-infos .source {
  font-family: Poppins;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  color: #2B3233;
}

.afro-events .afro-events-container .right-frame .afro-acts-right-swiper .swiper-wrapper .afro-acts-card .afro-act-wide-card .content .additional-infos .social {
  display: flex;
  gap: 15px;
  color: #103F5E;
  font-family: Poppins;
  font-weight: 500;
  font-style: Medium;
  font-size: 11.94px;
}

.afro-events .afro-events-container .right-frame .afro-acts-right-swiper .swiper-wrapper .afro-acts-card .afro-act-wide-card .content .additional-infos .social a {
  color: #103F5E;
}

.afro-events .afro-events-container .right-frame .afro-acts-right-swiper .swiper-wrapper .afro-acts-card .afro-act-wide-card .content .additional-infos .social span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.afro-events .afro-events-container .right-frame .afro-acts-right-swiper section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  gap: 10px;
}

.afro-events .afro-events-container .right-frame .afro-acts-right-swiper section .buttons {
  display: flex;
  gap: 9px;
}

.afro-events .afro-events-container .right-frame .afro-acts-right-swiper section .buttons .afro-slider-act-next,
.afro-events .afro-events-container .right-frame .afro-acts-right-swiper section .buttons .afro-slider-act-prev {
  background-color: #EBEBEB;
  padding: 11px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.afro-events .afro-events-container .right-frame .afro-acts-right-swiper section .buttons .afro-slider-act-next:hover,
.afro-events .afro-events-container .right-frame .afro-acts-right-swiper section .buttons .afro-slider-act-prev:hover {
  background-color: transparent;
  border: 1px solid rgb(41, 117, 96);
}


.afro-events .afro-events-container .right-frame .afro-acts-right-swiper section a {
  font-family: Helvetica Neue;
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  color: #073A41;
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 9px;
}
.afro-events .afro-events-container .right-frame .afro-acts-right-swiper section a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .afro-events {
    padding: 30px 0;
  }

  .afro-events .afro-events-container {
    flex-direction: column;
    padding: 0 10px;
  }

  .afro-events .afro-events-container .left-frame,
  .afro-events .afro-events-container .right-frame {
    width: 100%;
  }

  .afro-events .afro-events-container .left-frame h2,
  .afro-events .afro-events-container .right-frame h2 {
    font-size: 32px;
    text-align: center;
  }

  .afro-events .afro-events-container .left-frame {
    margin-bottom: 40px;
  }
  .afro-events .afro-events-container .right-frame .afro-acts-right-swiper .swiper-wrapper .afro-acts-card .afro-act-wide-card {
    flex-direction: column;
  }
  .afro-events .afro-events-container .right-frame .afro-acts-right-swiper .swiper-wrapper .afro-acts-card .afro-act-wide-card .img-container,
  .afro-events .afro-events-container .right-frame .afro-acts-right-swiper .swiper-wrapper .afro-acts-card .afro-act-wide-card .content {
    width: 100%;
    padding: 3px;
  }
}

.afro-map-box {
  padding: 120px 0;
  background-color: #194F40;
}

.afro-map-box .afro-map-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  /* Country styling */
  /* Info panel */
}

.afro-map-box .afro-map-container .subtitle {
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 22px;
  text-transform: uppercase;
  color: #A0C688;
}

.afro-map-box .afro-map-container section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}

.afro-map-box .afro-map-container section .titles h2 {
  font-family: Helvetica Neue;
  font-weight: 500;
  font-style: Medium;
  font-size : 32px;
  color: white;
}

.afro-map-box .afro-map-container section .titles p {
  font-family: Helvetica Neue;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: white;
}

.afro-map-box .afro-map-container section button {
  padding: 16px 30px;
  color: white;
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  background-color: #297560;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.afro-map-box .afro-map-container section button:hover {
  background-color: transparent;
  border: 1px solid #297560;
}

.afro-map-box .afro-map-container .map-box-frame {
  display: flex;
  height: 100vh;
}

.afro-map-box .afro-map-container .map-wrapper {
  flex: 1;
  padding: 20px;
}

.afro-map-box .afro-map-container .map-wrapper svg {
  width: 100%;
  height: 100%;
}

.afro-map-box .afro-map-container .country {
  fill: #dedede;
  stroke: #134e4a;
  stroke-width: 1;
  cursor: pointer;
  transition: fill 0.2s ease;
}

.afro-map-box .afro-map-container .country:hover {
  fill: #22c55e;
}

.afro-map-box .afro-map-container .country.active {
  fill: #16a34a;
}

.afro-map-box .afro-map-container .country-infos {
  width: 320px;
  height: -moz-fit-content;
  height: fit-content;
  padding: 24px;
  background: #1E5F50;
  color: #ffffff;
  align-self: center;
}

.afro-map-box .afro-map-container .country-infos span {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.afro-map-box .afro-map-container .country-infos span img {
  width: 68px;
  height: 49px;
  border-radius: 5px;
}

.afro-map-box .afro-map-container .country-infos .name {
  font-family: Helvetica Neue;
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  color: white;
  margin-bottom: 10px;
}

.afro-map-box .afro-map-container .country-infos .post {
  font-family: Helvetica Neue;
  font-weight: 400;
  font-style: Regular;
  font-size: 12px;
}

.afro-map-box .afro-map-container .country-infos .buttons {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.afro-map-box .afro-map-container .country-infos .buttons .navigation {
  display: flex;
  gap: 9px;
}

.afro-map-box .afro-map-container .country-infos .buttons .navigation .next,
.afro-map-box .afro-map-container .country-infos .buttons .navigation .prev {
  background-color: #FFFFFF;
  padding: 11px;
  cursor: pointer;
  margin-bottom: 0;
}

.afro-map-box .afro-map-container .country-infos .buttons a {
  text-decoration: none;
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 10px;
  padding: 8px 16px;
  background-color: #297560;
  color: white;
  display: flex;
  align-items: center;
  margin-top: 30px;
}

.afro-map-box .afro-map-container .country-infos h2 {
  margin-top: 0;
}

.afro-map-box .btn-primary {
  background: #297560;
  color: #fff;
  font-family: Poppins;
  font-weight: 400;
  padding: 16px 30px;
  text-decoration: none;
  transition: all 0.3s;
}

.afro-map-box .btn-primary:hover {
  color: #297560;
  background: #fff;
}

@media (max-width: 768px) {
  .afro-map-box {
    padding: 30px 0;
  }

  .afro-map-box .afro-map-container .subtitle {
    font-size: 18px;
  }

  .afro-map-box .afro-map-container section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
  }

  .afro-map-box .afro-map-container section .titles h2 {
    font-size: 32px;
  }

  .afro-map-box .afro-map-container section .titles p {
    font-size: 16px;
  }

  .afro-map-box .afro-map-container section button {
    padding: 12px 24px;
    font-size: 16px;
  }

  .afro-map-box .afro-map-container .map-box-frame {
    flex-direction: column;
    height: auto;
  }

  .afro-map-box .afro-map-container .map-wrapper {
    padding: 10px;
  }

  .afro-map-box .afro-map-container .country-infos {
    width: 100%;
    padding: 16px;
    align-self: center;
  }

  .afro-map-box .afro-map-container .country-infos .name {
    font-size: 20px;
  }

  .afro-map-box .afro-map-container .country-infos .buttons {
    flex-direction: column;
    gap: 10px;
  }

  .afro-map-box .afro-map-container .country-infos .buttons .navigation {
    justify-content: center;
  }

  .afro-map-box .afro-map-container .country-infos .buttons a {
    justify-content: center;
    margin-top: 20px;
  }
}

.afro-connaissance {
  padding: 120px 0;
}

.afro-connaissance .afro-connaissance-container {
  max-width: 1210px;
  padding: 0 20px;
  margin: 0 auto;
  gap: 23px;
}

.afro-connaissance .afro-connaissance-container .titles {
  display: flex;
  width: 100%;
  margin-bottom: 60px;
  gap: 15px;
}

.afro-connaissance .afro-connaissance-container .titles .left {
  flex: 3;
}

.afro-connaissance .afro-connaissance-container .titles .left .subtitle {
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 22px;
  leading-trim: CAP_HEIGHT;
  line-height: 21px;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #3A9E50;
  margin-bottom: 40px;
}

.afro-connaissance .afro-connaissance-container .titles .left .title {
  font-family: Helvetica Neue;
  font-weight: 500;
  font-style: Medium;
  font-size : 32px;
  leading-trim: CAP_HEIGHT;
  line-height: 54px;
  letter-spacing: 0%;
  color: #333333;
  margin-bottom: 20px;
}

.afro-connaissance .afro-connaissance-container .titles .left .description {
  font-family: Helvetica Neue;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: #384D50;
}

.afro-connaissance .afro-connaissance-container .titles .right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: end;
}

.afro-connaissance .afro-connaissance-container .titles .right a {
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 30px;
  letter-spacing: 0px;
  color: #FFFFFF;
  background-color: #297560;
  padding: 16px 30px;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.afro-connaissance .afro-connaissance-container .titles .right a:hover {
  background-color: transparent;
  border: 1px solid #297560;
  color: #297560;
}

.afro-connaissance .afro-connaissance-container .afro-connaissance-slider .afro-connaissance-wrapper {
  margin-bottom: 30px;
}

.afro-connaissance .afro-connaissance-container .afro-connaissance-slider .afro-connaissance-wrapper .swiper-slide {
  width: auto;
}

.afro-connaissance .afro-connaissance-container .afro-connaissance-slider .afro-connaissance-wrapper .swiper-slide .afro-connaissance-card {
  width: 386px;
  overflow: hidden;
}

.afro-connaissance .afro-connaissance-container .afro-connaissance-slider .afro-connaissance-wrapper .swiper-slide .afro-connaissance-card .img-container {
  position: relative;
  width: 100%;
  height: 250px;
  margin-bottom: 20px;
}

.afro-connaissance .afro-connaissance-container .afro-connaissance-slider .afro-connaissance-wrapper .swiper-slide .afro-connaissance-card .img-container img {
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.afro-connaissance .afro-connaissance-container .afro-connaissance-slider .afro-connaissance-wrapper .swiper-slide .afro-connaissance-card .img-container .type {
  position: absolute;
  top: 23px;
  left: 23px;
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 10.40px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #fff;
  background-color: #3A9E50;
  padding: 6px 16px;
}

.afro-connaissance .afro-connaissance-container .afro-connaissance-slider .afro-connaissance-wrapper .swiper-slide .afro-connaissance-card .content .title {
  font-family: Helvetica Neue;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  color: #073A41;
  margin-bottom: 10px;
}

.afro-connaissance .afro-connaissance-container .afro-connaissance-slider .afro-connaissance-wrapper .swiper-slide .afro-connaissance-card .content .description {
  font-family: Helvetica Neue;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: #2B3233;
  margin-bottom: 20px;
}

.afro-connaissance .afro-connaissance-container .afro-connaissance-slider .afro-connaissance-wrapper .swiper-slide .afro-connaissance-card .content .link {
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  text-align: right;
  text-decoration: underline;
  text-decoration-style: solid;
  color: #3A9E50;
  transition: all 0.3s ease;
}

.afro-connaissance .afro-connaissance-container .afro-connaissance-slider .afro-connaissance-wrapper .swiper-slide .afro-connaissance-card .content .link:hover {
  text-decoration: none;
  color: #297560;
}

.afro-connaissance .afro-connaissance-container .afro-connaissance-slider .navigation {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.afro-connaissance .afro-connaissance-container .afro-connaissance-slider .navigation .afro-connaissance-swiper-scrollbar {
  flex: 1;
  height: 4px;
  background-color: #EBEBEB;
  border-radius: 1px;
}

.afro-connaissance .afro-connaissance-container .afro-connaissance-slider .navigation .afro-connaissance-swiper-scrollbar .swiper-scrollbar-drag {
  background-color: #297560;
  border-radius: 1px;
}

.afro-connaissance .afro-connaissance-container .afro-connaissance-slider .navigation .buttons {
  display: flex;
  gap: 9px;
}

.afro-connaissance .afro-connaissance-container .afro-connaissance-slider .navigation .buttons .afro-slider-connaiss-next,
.afro-connaissance .afro-connaissance-container .afro-connaissance-slider .navigation .buttons .afro-slider-connaiss-prev {
  background-color: #EBEBEB;
  padding: 11px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.afro-connaissance .afro-connaissance-container .afro-connaissance-slider .navigation .buttons .afro-slider-connaiss-next:hover,
.afro-connaissance .afro-connaissance-container .afro-connaissance-slider .navigation .buttons .afro-slider-connaiss-prev:hover {
  background-color: transparent;
  border: 1px solid rgb(41, 117, 96);
}

@media (max-width: 768px) {
  .afro-connaissance {
    padding: 30px 0;
  }

  .afro-connaissance .afro-connaissance-container {
    padding: 0 10px;
  }

  .afro-connaissance .afro-connaissance-container .titles {
    flex-direction: column;
    margin-bottom: 40px;
  }

  .afro-connaissance .afro-connaissance-container .titles .left {
    flex: none;
    margin-bottom: 20px;
  }

  .afro-connaissance .afro-connaissance-container .titles .left .title {
    font-size: 32px;
    line-height: 40px;
  }

  .afro-connaissance .afro-connaissance-container .titles .left .description {
    font-size: 16px;
  }

  .afro-connaissance .afro-connaissance-container .titles .right {
    justify-content: center;
  }

  .afro-connaissance .afro-connaissance-container .titles .right a {
    width: 100%;
    text-align: center;
  }

  .afro-connaissance .afro-connaissance-container .afro-connaissance-slider .afro-connaissance-wrapper {
    margin-bottom: 20px;
  }

  .afro-connaissance .afro-connaissance-container .afro-connaissance-slider .afro-connaissance-wrapper .swiper-slide .afro-connaissance-card {
    width: 300px;
  }

  .afro-connaissance .afro-connaissance-container .afro-connaissance-slider .afro-connaissance-wrapper .swiper-slide .afro-connaissance-card .img-container {
    height: 200px;
  }

  .afro-connaissance .afro-connaissance-container .afro-connaissance-slider .afro-connaissance-wrapper .swiper-slide .afro-connaissance-card .content .title {
    font-size: 18px;
  }

  .afro-connaissance .afro-connaissance-container .afro-connaissance-slider .afro-connaissance-wrapper .swiper-slide .afro-connaissance-card .content .description {
    font-size: 16px;
  }

  .afro-connaissance .afro-connaissance-container .afro-connaissance-slider .navigation {
    gap: 20px;
  }
}

.afro-promo-container {
  width: 100%;
  display: flex;
}

.afro-promo-container .video-container {
  flex: 1;
}

.afro-promo-container .video-container .video-thumb {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
  cursor: pointer;
}

.afro-promo-container .video-container .video-thumb img,
.afro-promo-container .video-container .video-thumb video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.afro-promo-container .video-container .video-thumb video {
  display: none;
}

.afro-promo-container .video-container .video-thumb .play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.afro-promo-container .video-container .video-thumb .play:hover {
  transform: scale(1.05);
}

.afro-promo-container .video-container .video-thumb.is-playing img,
.afro-promo-container .video-container .video-thumb.is-playing .play {
  display: none;
}

.afro-promo-container .video-container .video-thumb.is-playing video {
  display: block;
  z-index: 1;
}

.afro-promo-container .content {
  background-color: #194F40;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 75px 50px;
}

.afro-promo-container .content .subtitle {
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 22px;
  text-transform: uppercase;
  color: #A0C688;
  margin-bottom: 40px;
}

.afro-promo-container .content .title {
  font-family: Helvetica Neue;
  font-weight: 500;
  font-style: Medium;
  font-size : 32px;
  leading-trim: CAP_HEIGHT;
  line-height: 56px;
  letter-spacing: 0%;
  color: #fff;
  margin: 0 0 26px 0;
}

.afro-promo-container .content .description,
.afro-promo-container .content p {
  font-family: Helvetica Neue;
  font-weight: 400;
  font-style: Regular;
  color: #fff;
  margin: 0 0 40px 0;
}

.afro-promo-container .content .button {
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  color: #fff;
  background-color: #297560;
  padding: 16px 30px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  width: -moz-fit-content;
  width: fit-content;
  margin-block: inherit;
}

p:empty {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
}

.afro-promo-container .content .button:hover {
  background-color: transparent;
  border: 1px solid #297560;
}

@media (max-width: 768px) {
  .afro-promo-container {
    flex-direction: column;
  }

  .afro-promo-container .video-container .video-thumb {
    height: 300px;
  }

  .afro-promo-container .content {
    padding: 30px 20px;
  }

  .afro-promo-container .content .subtitle {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .afro-promo-container .content .title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 20px;
  }

  .afro-promo-container .content .description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .afro-promo-container .content .button {
    text-align: center;
  }
}

.afro-projects {
  padding: 120px 0;
}

.afro-projects .afro-projects-container {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  gap: 23px;
}

.afro-projects .afro-projects-container .titles {
  display: flex;
  width: 100%;
  margin-bottom: 60px;
  gap: 15px;
}

.afro-projects .afro-projects-container .titles .left {
  flex: 3;
}

.afro-projects .afro-projects-container .titles .left .subtitle {
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 22px;
  leading-trim: CAP_HEIGHT;
  line-height: 21px;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #3A9E50;
  margin-bottom: 40px;
}

.afro-projects .afro-projects-container .titles .left .title {
  font-family: Helvetica Neue;
  font-weight: 500;
  font-style: Medium;
  font-size : 32px;
  leading-trim: CAP_HEIGHT;
  line-height: 56px;
  letter-spacing: 0%;
  color: #333333;
  margin-bottom: 20px;
}

.afro-projects .afro-projects-container .titles .left .description {
  font-family: Helvetica Neue;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: #384D50;
}

.afro-projects .afro-projects-container .titles .right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: end;
}

.afro-projects .afro-projects-container .titles .right a {
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 30px;
  letter-spacing: 0px;
  color: #FFFFFF;
  background-color: #297560;
  padding: 16px 30px;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.afro-projects .afro-projects-container .titles .right a:hover {
  background-color: transparent;
  border: 1px solid #297560;
  color: #297560;
}

.afro-projects .afro-projects-container .afro-projects-slider .afro-projects-wrapper {
  margin-bottom: 30px;
}

.afro-projects .afro-projects-container .afro-projects-slider .afro-projects-wrapper .swiper-slide {
  width: auto;
}

.afro-projects .afro-projects-container .afro-projects-slider .afro-projects-wrapper .swiper-slide .afro-projects-card {
  width: 386px;
  overflow: hidden;
}

.afro-projects .afro-projects-container .afro-projects-slider .afro-projects-wrapper .swiper-slide .afro-projects-card .img-container {
  position: relative;
  width: 100%;
  height: 250px;
  margin-bottom: 20px;
}

.afro-projects .afro-projects-container .afro-projects-slider .afro-projects-wrapper .swiper-slide .afro-projects-card .img-container .type {
  position: absolute;
  top: 23px;
  left: 23px;
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 10.40px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #fff;
  background-color: #3A9E50;
  padding: 6px 16px;
}

.afro-projects .afro-projects-container .afro-projects-slider .afro-projects-wrapper .swiper-slide .afro-projects-card .content .title {
  font-family: Helvetica Neue;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  color: #073A41;
  margin-bottom: 10px;
}

.afro-projects .afro-projects-container .afro-projects-slider .afro-projects-wrapper .swiper-slide .afro-projects-card .content .description {
  font-family: Helvetica Neue;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: #2B3233;
  margin-bottom: 20px;
}

.afro-projects .afro-projects-container .afro-projects-slider .afro-projects-wrapper .swiper-slide .afro-projects-card .content .link {
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  text-align: right;
  text-decoration: underline;
  text-decoration-style: solid;
  color: #3A9E50;
  transition: all 0.3s ease;
}

.afro-projects .afro-projects-container .afro-projects-slider .afro-projects-wrapper .swiper-slide .afro-projects-card .content .link:hover {
  text-decoration: none;
  color: #297560;
}

.afro-projects .afro-projects-container .afro-projects-slider .navigation {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.afro-projects .afro-projects-container .afro-projects-slider .navigation .afro-projects-swiper-scrollbar {
  flex: 1;
  height: 4px;
  background-color: #EBEBEB;
  border-radius: 1px;
}

.afro-projects .afro-projects-container .afro-projects-slider .navigation .afro-projects-swiper-scrollbar .swiper-scrollbar-drag {
  background-color: #297560;
  border-radius: 1px;
}

.afro-projects .afro-projects-container .afro-projects-slider .navigation .buttons {
  display: flex;
  gap: 9px;
}

.afro-projects .afro-projects-container .afro-projects-slider .navigation .buttons .afro-slider-proj-next,
.afro-projects .afro-projects-container .afro-projects-slider .navigation .buttons .afro-slider-proj-prev {
  background-color: #EBEBEB;
  padding: 11px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.afro-projects .afro-projects-container .afro-projects-slider .navigation .buttons .afro-slider-proj-next:hover,
.afro-projects .afro-projects-container .afro-projects-slider .navigation .buttons .afro-slider-proj-prev:hover {
  background-color: transparent;
  border: 1px solid rgb(41, 117, 96);
}

@media (max-width: 768px) {
  .afro-projects {
    padding: 30px 0;
  }

  .afro-projects .afro-projects-container {
    padding: 0 10px;
  }

  .afro-projects .afro-projects-container .titles {
    flex-direction: column;
    margin-bottom: 40px;
  }

  .afro-projects .afro-projects-container .titles .left {
    flex: none;
    margin-bottom: 20px;
  }

  .afro-projects .afro-projects-container .titles .left .title {
    font-size: 32px;
    line-height: 40px;
  }

  .afro-projects .afro-projects-container .titles .left .description {
    font-size: 16px;
  }

  .afro-projects .afro-projects-container .titles .right {
    justify-content: center;
  }

  .afro-projects .afro-projects-container .titles .right a {
    width: 100%;
    text-align: center;
  }

  .afro-projects .afro-projects-container .afro-projects-slider .afro-projects-wrapper {
    margin-bottom: 20px;
  }

  .afro-projects .afro-projects-container .afro-projects-slider .afro-projects-wrapper .swiper-slide .afro-projects-card {
    width: 300px;
  }

  .afro-projects .afro-projects-container .afro-projects-slider .afro-projects-wrapper .swiper-slide .afro-projects-card .img-container {
    height: 200px;
  }

  .afro-projects .afro-projects-container .afro-projects-slider .afro-projects-wrapper .swiper-slide .afro-projects-card .content .title {
    font-size: 18px;
  }

  .afro-projects .afro-projects-container .afro-projects-slider .afro-projects-wrapper .swiper-slide .afro-projects-card .content .description {
    font-size: 16px;
  }

  .afro-projects .afro-projects-container .afro-projects-slider .navigation {
    gap: 20px;
  }
}

.afro-partenaires {
  background-color: #FAFBFB;
  padding: 100px 0;
}

.afro-partenaires .afro-partenaires-container {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

.afro-partenaires .afro-partenaires-container .title {
  font-family: Helvetica Neue;
  font-weight: 500;
  font-style: Medium;
  font-size: 22px;
  color: #073A41;
  margin-bottom: 77px;
  text-transform: uppercase;
}

.afro-partenaires .afro-partenaires-container .marquee-swiper {
  width: 100%;
  overflow: hidden;
}

.afro-partenaires .afro-partenaires-container .marquee-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.afro-partenaires .afro-partenaires-container .marquee-swiper .swiper-slide {
  width: auto;
  display: flex;
  align-items: center;
}

.afro-partenaires .afro-partenaires-container .marquee-swiper img {
  height: 70px;
  margin: 0 50px;
  width: auto;
}

@media (max-width: 768px) {
  .afro-partenaires {
    padding: 30px 0;
  }
  .afro-partenaires .afro-partenaires-container .title {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

.page-wrapper > footer {
  font-family: "DM Sans", sans-serif;
  background-color: #194F40;
  padding: 120px 0 100px;
}

footer .foot-container {
display: flex;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
    gap: 32px;
}
footer .foot-container > * {
  min-width: 0;
}
footer .foot-container .links-container {
  max-width: 225px;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 29px;
}

footer .foot-container .links-container ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  margin: 0;
}

footer .foot-container .links-container ul li {
  color: #F7F8FA;
  font-family: Helvetica Neue;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

footer .foot-container .links-container ul li a {
  display: flex;
  color: #F7F8FA;
  font-family: Helvetica Neue;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
}
footer .foot-container .links-container ul li a:hover {
  color: #fff;
  scale: 1.02;
}

footer .foot-container .links-container ul li:hover {
  color: #fff;
  /* transform: scale(1.02); */
}

footer .foot-container .links-container .title {
  font-family: Helvetica Neue;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 17.04px;
  letter-spacing: 0.95px;
  text-transform: uppercase;
  white-space: nowrap;
}

footer .foot-container .links-container.contact-info {
  justify-content: end;
  gap: 6px;
}

footer .foot-container .links-container.contact-info .title {
  font-weight: 500;
  font-style: Medium;
  font-size: 12px;
  text-transform: uppercase;
}

footer .foot-container .links-container.contact-info ul {
  gap: 6px;
}

footer .foot-container .links-container.contact-info ul li {
  font-family: Helvetica Neue;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
}

footer .foot-container .block-webform {
  max-width: 252px;
  width: 100%;
}

footer .foot-container .block-block-content {
  display: flex;
  color: #fff;
  gap: 25px;
  align-items: end;
}

footer .foot-container .block-block-content div {
  white-space: nowrap;
}

footer .foot-container .menu--social-links {
  display: none;
}

footer .foot-container .form-item,
footer .foot-container .form-actions,
footer .foot-container .field-actions {
  margin-block: inherit;
}

footer .foot-container .cloned-social {
  display: block;
}

footer .foot-container .cloned-social .icons {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
}

footer .foot-container .cloned-social .icons a i {
  display: flex;
  font-size: 16px;
  color: white;
  transition: transform 0.2s ease;
}

footer .foot-container .cloned-social .icons a i:hover {
  transform: scale(1.2);
  transition: transform 0.2s ease;
  color: #A0C688;
}

footer .foot-container .newsletter {
  flex: 1;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

footer .foot-container .newsletter p,
footer .foot-container .block-webform h2 {
  font-family: Helvetica Neue;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  color: white;
  margin-bottom: 17px;
}

footer .foot-container .newsletter input,
footer .foot-container .block-webform input[type="email"] {
  background-color: transparent;
  border: white 1px solid;
  padding: 13px;
  margin-bottom: 7px;
  color: white;
}

footer .foot-container .newsletter input::-moz-placeholder,
footer .foot-container .block-webform input[type="email"]::-moz-placeholder {
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

footer .foot-container .newsletter input::placeholder,
footer .foot-container .block-webform input[type="email"]::placeholder {
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

footer .foot-container .newsletter button,
footer .foot-container .block-webform input[type="submit"] {
  font-family: Poppins;
  background-color: white;
  padding: 10px 14px;
  border: 1px solid transparent;
  color: #194F40;
  transition: all 0.2s ease;
  margin-block: inherit;
  margin-inline: inherit;
  margin-bottom: 30px;
  width: 100%;
}

footer .foot-container .newsletter button:hover,
footer .foot-container .block-webform input[type="submit"]:hover {
  background-color: transparent;
  color: white;
  border: 1px solid white;
  transition: transform 0.2s ease;
  cursor: pointer;
}

footer .foot-container .newsletter .icons {
  display: flex;
  align-items: end;
  justify-content: end;
  gap: 20px;
  width: 100%;
  height: 100%;
}

footer .foot-container .newsletter .icons a {
  all: unset;
  cursor: pointer;
}

footer .foot-container .newsletter .icons a i {
  display: flex;
  font-size: 16px;
  color: white;
  transition: transform 0.2s ease;
}

footer .foot-container .newsletter .icons a i:hover {
  transform: scale(1.2);
  transition: transform 0.2s ease;
  color: #A0C688;
}

@media (max-width: 1360px) {
  #afro-header .afro-navbar .nav-contianer ul li {
    font-size: 14px;
    padding: 0;
  }
}

@media (max-width: 1024px) {
  footer {
    padding: 0;
  }

  footer .foot-container {
    padding: 102px 40px 90px;
    flex-direction: column;
    gap: 40px;
    box-sizing: border-box;
  }

  footer .foot-container .logo {
    display: flex;
    width: 180px;
  }

  footer .foot-container .newsletter .logo {
    display: none;
  }

  footer .foot-container .newsletter {
    max-width: 500px;
  }
  footer .foot-container .block-webform {
    max-width: none;
  }
  footer .foot-container .newsletter input, footer .foot-container .block-webform input[type="email"]{
    width: 100%;
  }
}

@media (max-width: 768px) {
  footer .foot-container {
    flex-direction: column;
    padding: 50px 20px;
    gap: 25px;
  }

  footer .foot-container .links-container {
    gap: 10px;
  }

  footer .foot-container .links-container ul {
    gap: 5px;
  }

  footer .foot-container .logo {
    display: block;
    width: 160px;
  }

  footer .foot-container .newsletter .logo {
    display: none;
  }

  footer .foot-container .newsletter {
    gap: 10px;
  }

  footer .foot-container .newsletter .icons {
    justify-content: center;
  }
}

.bottom-footer {
  background-color: #194F40;
  margin-top: -2px;
}

.bottom-footer .bottom-foot-container {
  display: flex;
  padding: 18px 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px #fff solid;
  justify-content: space-between;
  align-items: center;
}

.bottom-footer .bottom-foot-container p {
  font-size: 13px;
  margin: 0;
  color: #F7F8FA;
}

.bottom-footer .bottom-foot-container .menu--footer-bottom ul {
  display: flex;
  list-style: none;
  gap: 4px;
  flex-wrap: wrap;
}

.bottom-footer .bottom-foot-container .menu--footer-bottom ul li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fff;
}

.bottom-footer .bottom-foot-container .menu--footer-bottom ul li:after {
  content: ".";
  color: #fff;
  position: relative;
  top: -4px;
}

.bottom-footer .bottom-foot-container .menu--footer-bottom ul li a {
  font-family: Helvetica Neue;
  font-size: 13px;
  color: #F7F8FA;
  text-decoration: none;
}

.bottom-footer .bottom-foot-container .foot-seperator {
  flex: 1;
  display: flex;
  font-family: Helvetica Neue;
  font-weight: 400;
  font-style: Regular;
  font-size: 13.26px;
  color: #F7F8FA;
}

.bottom-footer .bottom-foot-container .foot-seperator.center {
  justify-content: center;
}

.bottom-footer .bottom-foot-container .foot-seperator:last-of-type {
  justify-content: end;
}

@media (max-width: 1024px) {
  .bottom-footer .bottom-foot-container .foot-seperator .payment {
    width: 200px;
  }
}

@media (max-width: 768px) {
  .bottom-footer .bottom-foot-container {
    padding: 15px;
    flex-direction: column;
    gap: 10px;
  }

  .bottom-footer .bottom-foot-container .foot-seperator p {
    text-align: center;
    width: 100%;
  }

  .bottom-footer .bottom-foot-container .foot-seperator.center {
    display: none;
  }

  .bottom-footer .bottom-foot-container .foot-seperator.center .copyright {
    font-size: 12px;
  }
}

.afro-breadcrumbs-container {
  position: relative;
  overflow: hidden;
}

.afro-breadcrumbs-container .bg-image {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 150%;
  object-fit: cover;
  transform: translateY(-50%);
  z-index: -1;
  will-change: transform;
}


.afro-breadcrumbs-container .content {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  padding: 140px 20px 57px;
  margin: 0 auto;
}

.afro-breadcrumbs-container .content .title {
  font-family: Helvetica Neue;
  font-weight: 500;
  font-style: Medium;
  font-size: 50px;
  color: #fff;
  text-align: center;
  margin-bottom: 113px;
}

.afro-breadcrumbs-container .content ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
  padding: 0;
}

.afro-breadcrumbs-container .content ol li {
  font-family: Roboto Flex;
  font-weight: 400;
  font-style: Regular;
  font-size: 24px;
  color: #fff;
  transition: all 0.3s ease;
}

.afro-breadcrumbs-container .content ol a {
  text-decoration: none;
  color: #fff;
}

.afro-breadcrumbs-container .content ol a:hover {
  text-decoration: underline;
}

.afro-breadcrumbs-container .content ol .seperator-slash {
  color: white;
  font-size: 24px;
}

@media (max-width: 768px) {
  .afro-breadcrumbs-container .content {
    padding: 80px 15px 40px;
  }

  .afro-breadcrumbs-container .bg-image {
    height: 100%;
    top: 0;
    transform: none !important;
  }

  .afro-breadcrumbs-container .content .title {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .afro-breadcrumbs-container .content ol li,
  .afro-breadcrumbs-container .content ol a {
    font-size: 11px;
  }

  .afro-breadcrumbs-container .content ol .seperator-slash {
    font-size: 16px;
  }
}

#afro-filters-container {
  display: flex;
  justify-content: space-between;
}

#afro-filters-container .filters {
  display: flex;
  align-items: center;
  gap: 10.78px;
  flex-wrap: wrap;
}

#afro-filters-container .filters .filter {
  font-family: Roboto Flex;
  font-weight: 400;
  font-style: Regular;
  font-size: 16.17px;
  text-transform: capitalize;
  color: #297560;
  background-color: rgba(41, 117, 96, 0.1019607843);
  border: 2px solid transparent;
  padding: 9px 27px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

#afro-filters-container .filters .filter:hover {
  background-color: transparent;
  border: 2px solid rgba(41, 117, 96, 0.1019607843);
}

#afro-filters-container .filters .filter.active {
  background-color: #297560;
  color: white;
}

#afro-filters-container .link-calendar {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Roboto Flex;
  font-weight: 400;
  font-style: Regular;
  font-size: 16.17px;
  text-transform: capitalize;
  border: 1px solid transparent;
  padding: 9px 27px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  background-color: #297560;
  color: white;
  margin-left: auto;
  margin-right: 8px;
  transition: all 0.3s ease;
}
#afro-filters-container .link-calendar:hover {
  background-color: transparent;
  border: 1px solid #297560;
  color: #297560;
}

#afro-filters-container .search-container {
  position: relative;
  width: 100%;
  max-width: 365.5px;
  overflow: hidden;
}

#afro-filters-container .search-container input {
  width: 100%;
  height: 52px;
  padding: 0 52px 0 20px;
  border: none;
  border-radius: 6px;
  background-color: #f3f3f3;
  font-size: 16px;
  color: #333;
}

#afro-filters-container .search-container input::-moz-placeholder {
  color: #bdbdbd;
  font-size: 16px;
}

#afro-filters-container .search-container input::placeholder {
  color: #bdbdbd;
  font-size: 16px;
}

#afro-filters-container .search-container input:focus {
  outline: none;
}

#afro-filters-container .search-container svg {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  cursor: pointer;
}

#afro-filters-container .select {
  position: relative;
  min-width: 200px;
  max-width: 212px;
  cursor: pointer;
}

#afro-filters-container .select__trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(41, 117, 96, 0.1019607843);
  padding: 14px 20px;
  gap: 10px;
}

#afro-filters-container .select__label {
  color: #297560;
  font-family: "Roboto Flex";
  font-weight: 400;
  font-size: 18px;
  text-transform: capitalize;
}

#afro-filters-container .select__options {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  list-style: none;
  margin: 0;
  padding: 6px 0;
  background-color: #ffffff;
  border: 1px solid rgba(41, 117, 96, 0.2);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  z-index: 10;
}

#afro-filters-container .select__option {
  padding: 10px 20px;
  font-family: "Roboto Flex";
  font-size: 16px;
  font-weight: 400;
  color: #297560;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

#afro-filters-container .select__option:hover {
  background-color: rgba(41, 117, 96, 0.1019607843);
}

#afro-filters-container .select__option.is-selected {
  background-color: rgba(41, 117, 96, 0.2);
  font-weight: 500;
}

#afro-filters-container .select.is-open .select__options {
  display: block;
}

@media (max-width: 768px) {
  #afro-filters-container {
    flex-direction: column;
    gap: 20px;
  }

  #afro-filters-container .filters {
    justify-content: center;
  }

  #afro-filters-container .filters .filter {
    font-size: 14px;
    padding: 8px 20px;
  }

  #afro-filters-container .search-container {
    max-width: 100%;
  }

  #afro-filters-container .search-container input {
    height: 40px;
    font-size: 14px;
  }

  #afro-filters-container .search-container input::-moz-placeholder {
    font-size: 14px;
  }

  #afro-filters-container .search-container input::placeholder {
    font-size: 14px;
  }
}

#afro-pagination .page-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 19px;
  padding: 0;
  list-style: none;
}

#afro-pagination .page-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F0F0F0;
  color: #297560;
  width: 40px;
  height: 40px;
  text-decoration: none;
  font-family: Roboto Flex;
  font-weight: 400;
  font-style: Regular;
  font-size: 16.9px;
  text-transform: capitalize;
  cursor: pointer;
  transition: all 0.3s ease;
}

#afro-pagination .page-list li a:hover,
#afro-pagination .page-list li a.current {
  background-color: #297560;
  color: #F0F0F0;
}

#afro-pagination .page-list li a.previous,
#afro-pagination .page-list li a.next {
  background-color: #E0EAE4;
}

#afro-pagination .page-list li a.previous:hover,
#afro-pagination .page-list li a.next:hover {
  color: #297560;
}

#afro-pagination .page-list li a.more {
  background-color: transparent;
}

#afro-pagination .page-list li a.more:hover {
  color: #297560;
}

.has-sidebar {
  display: flex;
}

.no-sidebar {
  display: block;
}

@media (max-width: 768px) {
  .has-sidebar {
    flex: none;
  }

  #afro-pagination .page-list {
    gap: 10px;
  }

  #afro-pagination .page-list li a {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}

#afro-projets-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 20px;
}

#afro-projets-page #afro-projets-page {
  padding-top: 0;
}

#afro-projets-page .title {
  font-family: Helvetica Neue;
  font-weight: 500;
  font-style: Medium;
  font-size : 32px;
  color: #03140F;
  margin-bottom: 27px;
}

#afro-projets-page .paragraph {
  font-family: Roboto Flex;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 53px;
  color: #384D50;
}

#afro-projets-page .afro-appel-projets-container {
  margin: 45px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 27px;
}

#afro-projets-page .afro-appel-projets-container .appel-projet-card {
  width: calc((100% - 31px) / 2);
  border: 1px solid #EAEBEF;
  margin-bottom: 18px;
}

.no-sidebar #afro-projets-page .afro-appel-projets-container .appel-projet-card {
  width: calc((100% - 2 * 27px) / 3);
  border: none;
}

#afro-projets-page .afro-appel-projets-container .appel-projet-card img {
  width: 100%;
  height: 226.93px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 18.15px;
}

#afro-projets-page .afro-appel-projets-container .appel-projet-card .content {
  padding: 0 11px;
}

#afro-projets-page .afro-appel-projets-container .appel-projet-card .content span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  gap: 10px;
}

#afro-projets-page .afro-appel-projets-container .appel-projet-card .content span .category {
  font-family: Roboto Flex;
  font-weight: 400;
  font-style: Regular;
  font-size: 10.89px;
  text-transform: uppercase;
  color: #3A9E50;
  padding: 7px 11px;
  background-color: rgba(58, 158, 80, 0.1019607843);
  text-align: center;
  margin: 0;
}

#afro-projets-page .afro-appel-projets-container .appel-projet-card .content span .date {
  color: #384D50;
  font-family: Open Sans;
  font-weight: 400;
  font-style: Regular;
  font-size: 12px;
  margin: 0;
}

#afro-projets-page .afro-appel-projets-container .appel-projet-card .content .title {
  font-family: Helvetica Neue;
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  color: #03140F;
  margin-bottom: 12.7px;
}

#afro-projets-page .afro-appel-projets-container .appel-projet-card .content .description {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 23.35px;
  color: #384D50;
  margin-bottom: 22px;
}

#afro-projets-page .afro-appel-projets-container .appel-projet-card .content .link {
  display: flex;
  justify-content: end;
  font-family: Roboto Flex;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
  text-decoration: underline;
  text-decoration-style: solid;
  color: #3A9E50;
  margin-bottom: 21px;
}

#afro-projets-page .afro-appel-projets-container .appel-projet-card .content .link:focus {
  outline: none;
  box-shadow: none;

}

#afro-projets-page .afro-appel-projets-container .appel-projet-card .content .link:hover {
  border: none;
}

#afro-projets-page .afro-projets-en-cours-container {
  margin: 27px 0 49.4px;
}

#afro-projets-page .afro-projets-en-cours-container .projet-en-cours-card {
  display: flex;
  gap: 27px;
  margin-bottom: 49.4px;
  text-decoration: none;
}


#afro-projets-page .afro-projets-en-cours-container .projet-en-cours-card a {
  display: flex;
  justify-content: end;
  font-family: Roboto Flex;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
  text-decoration: underline;
  text-decoration-style: solid;
  color: #3A9E50;
  margin-top: 10px;
  margin-bottom: 21px;
}

#afro-projets-page .afro-projets-en-cours-container .projet-en-cours-card a:focus {
  outline: none;
  box-shadow: none;

}

#afro-projets-page .afro-projets-en-cours-container .projet-en-cours-card a:hover {
  text-decoration: none;
}

#afro-projets-page .afro-projets-en-cours-container .projet-en-cours-card img {
  width: 288px;
  /*height: 174px;
  -o-object-fit: cover;
  object-fit: cover;*/
  transition: all 0.3s;
}

#afro-projets-page .afro-projets-en-cours-container .projet-en-cours-card .content .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

#afro-projets-page .afro-projets-en-cours-container .projet-en-cours-card .content .info .date {
  font-family: Roboto Flex;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  text-transform: capitalize;
  color: #194F40;
  /* margin-bottom: 13px; */
}

#afro-projets-page .afro-projets-en-cours-container .projet-en-cours-card .content .info .state {
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 8.96px;
  text-transform: uppercase;
  color: #3A9E50;
  background-color: rgba(58, 158, 80, 0.1019607843);
  padding: 6px 9px;
}

#afro-projets-page .afro-projets-en-cours-container .projet-en-cours-card .content .title {
  font-family: Helvetica Neue;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  margin-bottom: 6px;
  margin-top: 0;
  transition: all 0.3s;
}

#afro-projets-page .afro-projets-en-cours-container .projet-en-cours-card .content .description {
  font-family: Roboto Flex;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 22.40px;
  letter-spacing: 0.1px;
  color: rgba(56, 77, 80, 0.8);
  margin: 0;
}

#afro-projets-page .afro-projets-en-cours-container .projet-en-cours-card:hover img {
  transform: scale(1.03);
}

#afro-projets-page .afro-projets-en-cours-container .projet-en-cours-card:hover .content .title {
  color: #297560;
}


#afro-projets-page .afro-projets-liste-container {
  margin: 27px 0 49.4px;
}

#afro-projets-page .afro-projets-liste-container .buttons-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 27px;
}

#afro-projets-page .afro-projets-liste-container .buttons-container p {
  font-family: Inter;
  font-weight: 600;
  font-style: Semi Bold;
  font-size: 28px;
  color: #194F40;
}

#afro-projets-page .afro-projets-liste-container .buttons-container .buttons {
  display: flex;
  gap: 9px;
}

#afro-projets-page .afro-projets-liste-container .buttons-container .buttons .afro-projets-liste-next,
#afro-projets-page .afro-projets-liste-container .buttons-container .buttons .afro-projets-liste-prev {
  background-color: #EBEBEB;
  padding: 11px;
  cursor: pointer;
}

#afro-projets-page .afro-projets-liste-container .afro-projets-swiper {
  max-height: 947px;
}

#afro-projets-page .afro-projets-liste-container .afro-projets-swiper .projet-en-cours-card {
  display: flex;
  gap: 27px;
  max-height: 200px;
}

#afro-projets-page .afro-projets-liste-container .afro-projets-swiper .projet-en-cours-card img {
  width: 288px;
  height: 174px;
  -o-object-fit: cover;
  object-fit: cover;
}

#afro-projets-page .afro-projets-liste-container .afro-projets-swiper .projet-en-cours-card .content .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#afro-projets-page .afro-projets-liste-container .afro-projets-swiper .projet-en-cours-card .content .info .date {
  font-family: Roboto Flex;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  text-transform: capitalize;
  color: #194F40;
  margin-bottom: 13px;
}

#afro-projets-page .afro-projets-liste-container .afro-projets-swiper .projet-en-cours-card .content .info .state {
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 8.96px;
  text-transform: uppercase;
  color: #3A9E50;
  background-color: rgba(58, 158, 80, 0.1019607843);
  padding: 6px 9px;
}

#afro-projets-page .afro-projets-liste-container .afro-projets-swiper .projet-en-cours-card .content .title {
  font-family: Helvetica Neue;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 6px;
}

#afro-projets-page .afro-projets-liste-container .afro-projets-swiper .projet-en-cours-card .content .description {
  font-family: Roboto Flex;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 22.40px;
  letter-spacing: 0.1px;
  color: rgba(56, 77, 80, 0.8);
}

#afro-projets-page .afro-formation-atelier-container {
  margin: 45px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 27px;
}

#afro-projets-page .afro-formation-atelier-container .appel-formation-atelier-card {
  width: 380px;
  border: 1px solid #EAEBEF;
  margin-bottom: 18px;
}

#afro-projets-page .afro-formation-atelier-container .appel-formation-atelier-card .img-container {
  position: relative;
}

#afro-projets-page .afro-formation-atelier-container .appel-formation-atelier-card .img-container img {
  width: 100%;
  height: 226.93px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 18.15px;
}

#afro-projets-page .afro-formation-atelier-container .appel-formation-atelier-card .img-container .title {
  font-family: Helvetica Neue;
  font-weight: 500;
  font-style: Medium;
  font-size: 12px;
  line-height: 18.49px;
  color: #0A2C23;
  background-color: white;
  position: absolute;
  bottom: 0;
  margin: 0;
  max-width: 252px;
  padding: 10px;
}

#afro-projets-page .afro-formation-atelier-container .appel-formation-atelier-card .content {
  padding: 0 11px;
}

#afro-projets-page .afro-formation-atelier-container .appel-formation-atelier-card .content span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  gap: 10px;
}

#afro-projets-page .afro-formation-atelier-container .appel-formation-atelier-card .content span .category {
  font-family: Roboto Flex;
  font-weight: 400;
  font-style: Regular;
  font-size: 10.89px;
  text-transform: uppercase;
  color: #3A9E50;
  padding: 7px 11px;
  background-color: rgba(58, 158, 80, 0.1019607843);
  text-align: center;
}

#afro-projets-page .afro-formation-atelier-container .appel-formation-atelier-card .content span .date {
  color: #384D50;
  font-family: Open Sans;
  font-weight: 400;
  font-style: Regular;
  font-size: 12px;
}

#afro-projets-page .afro-formation-atelier-container .appel-formation-atelier-card .content .description {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 10px;
  line-height: 13.87px;
  color: rgba(56, 77, 80, 0.8);
  margin-bottom: 22px;
}

#afro-projets-page .afro-formation-atelier-container .appel-formation-atelier-card .content .link {
  display: flex;
  width: 100%;
  justify-content: end;
  font-family: Roboto Flex;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
  text-decoration: underline;
  text-decoration-style: solid;
  color: #3A9E50;
  margin-bottom: 21px;
}

#afro-projets-page form {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

#afro-projets-page form .field-container{
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 573px;
}
.formations-container .form-item {
  width: 100%;
  max-width: 427px;
}
.formations-container .form-item input {
  width: 100%;
  min-height: 73px;
}

#afro-projets-page form .field-container label {
  font-family: Roboto Flex;
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  color: #03140F;
  margin-bottom: 11px;
}

#afro-projets-page form .field-container input,
#afro-projets-page form .field-container select,
.form-element--type-select {
  background-color: #F7F7F7;
  border: 0.54px solid #E3E3E3;
  padding: 24px;
  transition: all 0.3s ease;
}

#afro-projets-page form .field-container input::-moz-placeholder,
#afro-projets-page form .field-container select::-moz-placeholder {
  font-family: Roboto Flex;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  color: #384D50;
}

#afro-projets-page form .field-container input::placeholder,
#afro-projets-page form .field-container select::placeholder {
  font-family: Roboto Flex;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  color: #384D50;
}

#afro-projets-page form .field-container input:focus,
#afro-projets-page form .field-container select:focus {
  outline: #979797 1px solid;
}

#afro-projets-page form .field-container .select-wrapper {
  position: relative;
  width: 100%;
}

#afro-projets-page form .field-container select, .form-element--type-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  position: relative;
  z-index: 1;
}

#afro-projets-page form .field-container .select-wrapper::after {
  content: "";
  position: absolute;
  inset-block: 0;
  right: 30px;
  margin: auto 0;
  width: 15px;
  height: 9px;
  background: url("data:image/svg+xml,%3Csvg width='15' height='9' viewBox='0 0 15 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.7578 0.809397L7.28352 7.28369L0.809223 0.809397' stroke='%232A2F3B' stroke-width='1.61857' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
  pointer-events: none;
  z-index: 2;
}

#afro-projets-page form .buttons-container {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin: 20px 0;
}

#afro-projets-page form .buttons-container button,
#afro-projets-page form .buttons-container input[type="submit"],
#afro-formations-pages .formations-container .form-container form input[type="submit"] {
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  text-transform: capitalize;
  color: white;
  background-color: #297560;
  padding: 25px;
  max-width: 317px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 0;
}

#afro-projets-page form .buttons-container button:hover,
#afro-formations-pages .formations-container .form-container form input[type="submit"]:hover {
  background-color: transparent;
  color: #297560;
  border: #297560 1px solid;
}

#afro-projets-page .event-detail {
  display: flex;
  gap: 54px;
}

#afro-projets-page .event-detail h2 {
  font-family: Helvetica Neue;
  font-weight: 500;
  font-size : 32px;
  color: #03140F;
  margin-bottom: 27px;
  margin-top: 0;
  line-height: 1.1;
}

#afro-projets-page .event-detail h2 span {
  font-family: Helvetica Neue;
  font-weight: 500;
}

#afro-projets-page .event-detail p {
  font-family: Roboto Flex;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 53px;
  color: #384D50;
}

#afro-projets-page .event-detail h3 {
  font-family: Helvetica Neue;
  font-weight: 500;
  font-style: Medium;
  font-size: 28.76px;
  color: #194F40;
  margin-bottom: 18px;
  margin-top: 0;
}

#afro-projets-page .event-detail .documents{
  list-style: none;
  margin: 0;
}

#afro-projets-page .event-detail h4 {
  font-family: Roboto Flex;
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  color: #297560;
  margin-bottom: 4px;
}

#afro-projets-page .event-detail .left-wrapper {
  flex: 2.2;
}

#afro-projets-page .event-detail .left-wrapper img {
  width: 100%;
  max-height: 600px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 26px;
}

#afro-projets-page .event-detail .left-wrapper ol {
  font-family: Roboto Flex;
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  color: #297560;
}

#afro-projets-page .event-detail .left-wrapper ol li {
  margin-bottom: 18px;
}

#afro-projets-page .event-detail .left-wrapper ul li {
  font-family: Roboto Flex;
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 28px;
  color: #384D50;
  margin-bottom: 2px;
}

#afro-projets-page .event-detail .right-wrapper {
  flex: 1;
}

#afro-projets-page .event-detail .right-wrapper a[target="_blank"] {
  display: flex;
  justify-content: left;
  font-size: 10px;
  font-family: Roboto Flex;
  font-weight: 400;
  text-decoration: none;
  padding: 9px 15px;
  border: 1px solid #297560;
  background: #297560;
  color: #fff;
  transition: all 0.3s;
  text-align: left;
  gap: 3px;
}

#afro-projets-page .event-detail .right-wrapper a[target="_blank"]:before {
  content: "";
  display: block;
  min-width: 12.5px;
  height: 12.5px;
  background: url(../images/download.svg) center no-repeat;
}

#afro-projets-page .event-detail .right-wrapper a[target="_blank"]:hover {
  color: #297560;
  background: #fff;
}

#afro-projets-page .event-detail .right-wrapper a[target="_blank"]:hover:before {
  background: url(../images/download-hover.svg) center no-repeat;
}

#afro-projets-page .event-detail .right-wrapper .event-infos {
  display: flex;
  flex-direction: column;
  background-color: #F7F7F7;
  padding: 36px 22px;
  gap: 35px;
  margin-bottom: 45px;
}

#afro-projets-page .event-detail .right-wrapper .event-infos p {
  font-family: Roboto Flex;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  color: #384D50;
  margin-bottom: 0;
  margin-top: 0;
  line-height: 1.1;
}

#afro-projets-page .event-detail .right-wrapper .event-infos p b {
  color: #03140F;
}

#afro-projets-page .event-detail .right-wrapper a {
  display: flex;
  justify-content: center;
  font-family: Roboto Flex;
  font-weight: 500;
  font-style: Medium;
  font-size: 19.78px;
  text-decoration: underline;
  color: #3A9E50;
  cursor: pointer;
  text-align: center;
  margin-bottom: 26px;
}

#afro-projets-page .event-detail .right-wrapper button {
  width: 100%;
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 19.78px;
  color: #FFFFFF;
  padding: 26px 45px;
  background-color: #297560;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: 54px;
}

#afro-projets-page .event-detail .right-wrapper button:hover {
  background-color: transparent;
  border: 1px solid #297560;
  color: #297560;
}

#afro-projets-page .event-detail .right-wrapper img {
  width: 100%;
  max-height: 214px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 18px;
}

#afro-projets-page .afro-video-container {
  margin: 45px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 27px;
}

#afro-projets-page .afro-video-container .video-card {
  width: 380px;
  border: 1px solid #EAEBEF;
}

#afro-projets-page .afro-video-container .video-card .video-container {
  width: 100%;
  height: 226px;
  margin-bottom: 18px;
}

#afro-projets-page .afro-video-container .video-card .video-container .video-thumb {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
  cursor: pointer;
}

#afro-projets-page .afro-video-container .video-card .video-container .video-thumb img,
#afro-projets-page .afro-video-container .video-card .video-container .video-thumb video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

#afro-projets-page .afro-video-container .video-card .video-container .video-thumb video {
  display: none;
}

#afro-projets-page .afro-video-container .video-card .video-container .video-thumb .play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

#afro-projets-page .afro-video-container .video-card .video-container .video-thumb .play:hover {
  transform: scale(1.05);
}

#afro-projets-page .afro-video-container .video-card .video-container .video-thumb.is-playing img,
#afro-projets-page .afro-video-container .video-card .video-container .video-thumb.is-playing .play {
  /* display: none; */
}

#afro-projets-page .afro-video-container .video-card .video-container .video-thumb.is-playing video {
  display: block;
  z-index: 1;
}

#afro-projets-page .afro-video-container .video-card .content {
  padding: 0 11px;
}

#afro-projets-page .afro-video-container .video-card .content span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  gap: 10px;
}

#afro-projets-page .afro-video-container .video-card .content span .category {
  font-family: Roboto Flex;
  font-weight: 400;
  font-style: Regular;
  font-size: 10.89px;
  text-transform: uppercase;
  color: #3A9E50;
  padding: 7px 11px;
  background-color: rgba(58, 158, 80, 0.1019607843);
  text-align: center;
}

#afro-projets-page .afro-video-container .video-card .content span .date {
  color: #384D50;
  font-family: Open Sans;
  font-weight: 400;
  font-style: Regular;
  font-size: 12px;
}

#afro-projets-page .afro-video-container .video-card .content .title {
  font-family: Helvetica Neue;
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  color: #03140F;
  margin-bottom: 12.7px;
}

#afro-projets-page .afro-video-container .video-card .content .description {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 23.35px;
  color: #384D50;
  margin-bottom: 22px;
}

#afro-projets-page .afro-video-container .video-card .content .link {
  display: flex;
  width: 100%;
  justify-content: end;
  font-family: Roboto Flex;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
  text-decoration: underline;
  text-decoration-style: solid;
  color: #3A9E50;
  margin-bottom: 21px;
}

.no-sidebar #afro-projets-page .afro-video-container .video-card {
  box-sizing: border-box;
  width: calc((100% - 2 * 27px) / 3);
}

@media (max-width: 1060px) {
  .no-sidebar #afro-projets-page .afro-video-container .video-card {
    box-sizing: border-box;
    width: calc((100% - 27px) / 2);
  }
}

@media (max-width: 768px) {
  .no-sidebar #afro-projets-page .afro-video-container .video-card {
    box-sizing: border-box;
    width: 100%;
  }

  .no-sidebar #afro-projets-page .afro-appel-projets-container .appel-projet-card {
    width: 100%;
  }

  #afro-projets-page {
    padding: 60px 15px;
  }

  #afro-projets-page .title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  #afro-projets-page .paragraph {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #afro-projets-page .afro-appel-projets-container {
    margin: 30px 0;
    gap: 20px;
  }

  #afro-projets-page .afro-appel-projets-container .appel-projet-card {
    width: 100%;
    margin-bottom: 15px;
  }

  #afro-projets-page .afro-appel-projets-container .appel-projet-card img {
    height: 200px;
    margin-bottom: 15px;
  }

  #afro-projets-page .afro-appel-projets-container .appel-projet-card .content {
    padding: 0 10px;
  }

  #afro-projets-page .afro-appel-projets-container .appel-projet-card .content span {
    margin-bottom: 15px;
  }

  #afro-projets-page .afro-appel-projets-container .appel-projet-card .content span .category {
    font-size: 10px;
    padding: 5px 8px;
  }

  #afro-projets-page .afro-appel-projets-container .appel-projet-card .content span .date {
    font-size: 11px;
  }

  #afro-projets-page .afro-appel-projets-container .appel-projet-card .content .title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  #afro-projets-page .afro-appel-projets-container .appel-projet-card .content .description {
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 15px;
  }

  #afro-projets-page .afro-appel-projets-container .appel-projet-card .content .link {
    font-size: 13px;
    margin-bottom: 15px;
  }

  #afro-projets-page .afro-projets-en-cours-container {
    margin: 20px 0 30px;
  }

  #afro-projets-page .afro-projets-en-cours-container .projet-en-cours-card {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
  }

  #afro-projets-page .afro-projets-en-cours-container .projet-en-cours-card img {
    width: 100%;
    height: auto;
  }

  #afro-projets-page .afro-projets-en-cours-container .projet-en-cours-card .content .info .date {
    font-size: 14px;
    margin-bottom: 10px;
  }

  #afro-projets-page .afro-projets-en-cours-container .projet-en-cours-card .content .info .state {
    font-size: 8px;
    padding: 4px 6px;
  }

  #afro-projets-page .afro-projets-en-cours-container .projet-en-cours-card .content .title {
    font-size: 18px;
    margin-bottom: 5px;
  }

  #afro-projets-page .afro-projets-en-cours-container .projet-en-cours-card .content .description {
    font-size: 14px;
    line-height: 20px;
  }

  #afro-projets-page .afro-projets-liste-container {
    margin: 20px 0 30px;
  }

  #afro-projets-page .afro-projets-liste-container .afro-projets-swiper {
    max-width: none;
  }

  #afro-projets-page .afro-projets-liste-container .afro-projets-swiper .projet-en-cours-card {
    flex-direction: column;
    gap: 15px;
    border: 1px solid;
    max-height: none;
  }

  #afro-projets-page .afro-projets-liste-container .afro-projets-swiper .projet-en-cours-card img {
    width: 100%;
    height: 100px;
  }

  #afro-projets-page .afro-projets-liste-container .afro-projets-swiper .projet-en-cours-card .content .info .date {
    font-size: 14px;
    margin-bottom: 10px;
  }

  #afro-projets-page .afro-projets-liste-container .afro-projets-swiper .projet-en-cours-card .content .info .state {
    font-size: 8px;
    padding: 4px 6px;
  }

  #afro-projets-page .afro-projets-liste-container .afro-projets-swiper .projet-en-cours-card .content .title {
    font-size: 18px;
    margin-bottom: 5px;
  }

  #afro-projets-page .afro-projets-liste-container .afro-projets-swiper .projet-en-cours-card .content .description {
    font-size: 14px;
    line-height: 20px;
  }

  #afro-projets-page .afro-formation-atelier-container {
    margin: 20px 0 30px;
  }

  #afro-projets-page .afro-formation-atelier-container .projet-formation-atelier-card {
    width: 100%;
    border: 1px solid #EAEBEF;
    margin-bottom: 15px;
  }

  #afro-projets-page .afro-formation-atelier-container .projet-formation-atelier-card .img-container img {
    height: 200px;
    margin-bottom: 15px;
  }

  #afro-projets-page .afro-formation-atelier-container .projet-formation-atelier-card .img-container .title {
    font-size: 14px;
    padding: 8px;
    max-width: none;
  }

  #afro-projets-page .afro-formation-atelier-container .projet-formation-atelier-card .content {
    padding: 0 10px;
  }

  #afro-projets-page .afro-formation-atelier-container .projet-formation-atelier-card .content span {
    margin-bottom: 15px;
  }

  #afro-projets-page .afro-formation-atelier-container .projet-formation-atelier-card .content span .category {
    font-size: 10px;
    padding: 5px 8px;
  }

  #afro-projets-page .afro-formation-atelier-container .projet-formation-atelier-card .content span .date {
    font-size: 11px;
  }

  #afro-projets-page .afro-formation-atelier-container .projet-formation-atelier-card .content .description {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 15px;
  }

  #afro-projets-page .afro-formation-atelier-container .projet-formation-atelier-card .content .link {
    font-size: 14px;
    margin-bottom: 15px;
  }

  #afro-projets-page form {
    gap: 20px;
  }

  #afro-projets-page form .field-container {
    max-width: 100%;
  }

  #afro-projets-page form .field-container label {
    font-size: 16px;
    margin-bottom: 8px;
  }

  #afro-projets-page form .field-container input,
  #afro-projets-page form .field-container select {
    padding: 16px;
  }

  #afro-projets-page form .field-container input::-moz-placeholder,
  #afro-projets-page form .field-container select::-moz-placeholder {
    font-size: 14px;
  }

  #afro-projets-page form .field-container input::placeholder,
  #afro-projets-page form .field-container select::placeholder {
    font-size: 14px;
  }

  #afro-projets-page .form-step .buttons-container {
    justify-content: center;
    flex-direction: column;
    gap: 20px;
  }

  #afro-projets-page form .buttons-container button,
  #afro-formations-pages .formations-container .form-container form input[type="submit"] {
    font-size: 16px;
    padding: 16px;
    max-width: 100%;
  }

  #afro-projets-page .event-detail {
    flex-direction: column-reverse;
    gap: 30px;
  }

  #afro-projets-page .event-detail h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  #afro-projets-page .event-detail p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #afro-projets-page .event-detail h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  #afro-projets-page .event-detail h4 {
    font-size: 16px;
    margin-bottom: 5px;
  }

  #afro-projets-page .event-detail .left-wrapper {
    flex: none;
  }

  #afro-projets-page .event-detail .left-wrapper img {
    margin-bottom: 20px;
  }

  #afro-projets-page .event-detail .left-wrapper ol li {
    margin-bottom: 15px;
  }

  #afro-projets-page .event-detail .left-wrapper ul li {
    margin-bottom: 5px;
  }

  #afro-projets-page .event-detail .right-wrapper {
    flex: none;
  }

  #afro-projets-page .event-detail .right-wrapper .event-infos {
    padding: 20px;
    gap: 20px;
    margin-bottom: 30px;
  }

  #afro-projets-page .event-detail .right-wrapper .event-infos p {
    font-size: 16px;
  }

  #afro-projets-page .event-detail .right-wrapper a {
    font-size: 16px;
    margin-bottom: 20px;
  }

  #afro-projets-page .event-detail .right-wrapper button {
    font-size: 16px;
    padding: 16px 40px;
    margin-bottom: 30px;
  }

  #afro-projets-page .event-detail .right-wrapper img {
    margin-bottom: 15px;
  }
}

#calendar {
  max-width: 1200px;
  margin: 45px auto;
  padding: 34px;
  background-color: #F7F7F7;
  border: 1px solid #D9D9D9;
  border-radius: 17px;
}

#calendar .fc-daygrid-day-frame,
#calendar .fc-daygrid-day-events,
#calendar .fc-daygrid-event-harness,
#calendar .fc-daygrid-body {
  overflow: visible !important;
}
#calendar .fc-daygrid-event-harness:hover {
  z-index: 1000 !important;
}
#calendar .fc-daygrid-event-harness:hover .fc-event {
  z-index: 1001 !important;
}
#calendar .fc-scrollgrid,
#calendar .fc-scrollgrid-section-body,
#calendar .fc-daygrid-body,
#calendar .fc-scroller,
#calendar .fc-scroller-liquid-absolute {
  overflow: visible !important;
}

#calendar .fc-event {
  position: relative;
  cursor: pointer;
  z-index: 10;
}

#calendar .fc-event .fc-event-title-container {
  padding: 15px;
}

#calendar .fc-event .fc-event-title-container .fc-event-title {
  font-family: Inter;
  font-weight: 500;
  font-size: 17.96px;
  line-height: 1.2;
}

#calendar .fc-event:hover .event-hover-card a {
  display: flex;
  text-decoration: none;
}

#calendar .fc-view-harness {
  background-color: white;
}

#calendar .fc-toolbar-title {
  font-family: Inter;
  font-weight: 600;
  font-style: Semi Bold;
  font-size: 34.11px;
  color: #1D1D1D;
  text-transform: capitalize;
  white-space: nowrap;
}

#calendar .fc-button-group>.fc-button {
  background-color: transparent;
  border: none;
  color: #C5C5C5;
}

#calendar .event-hover-card a {
  display: none;
  position: absolute;
  top: 50%;
  left: 20%;
  min-width: 352px;
  gap: 15px;
  padding: 15px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 9999;
}

#calendar .event-hover-card a img {
  width: 71px;
  height: 71px;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

#calendar .event-hover-card a .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 80%;
}

#calendar .event-hover-card a .card-body h4 {
  font-family: Inter;
  font-weight: 500;
  font-size: 18.37px;
  color: #03140F;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#calendar .event-hover-card a .card-body .date-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#calendar .event-hover-card a .card-body .date-category .category {
  font-family: Poppins;
  font-weight: 400;
  font-size: 7.64px;
  text-transform: uppercase;
  color: #3A9E50;
  background-color: rgba(58, 158, 80, 0.1);
  padding: 5px 7px;
  border-radius: 4px;
}

#calendar .event-hover-card a .card-body .date-category p {
  font-family: "Open Sans";
  font-weight: 400;
  font-size: 9.19px;
  color: #384D50;
  margin: 0;
}

#calendar .event-top-right .event-hover-card a {
  left: auto;
  right: 0;
  top: 50%;
}

#calendar .event-bottom-right .event-hover-card a {
  left: auto;
  right: 0;
  bottom: 50%;
  top: auto;
}

#calendar .event-bottom-left .event-hover-card a {
  left: 0;
  bottom: 50%;
  top: auto;
}

#calendar .fc .fc-col-header-cell-cushion {
  color: #9B9B9B;
  font-family: Inter;
  font-size: 16px;
}

#calendar .fc .fc-daygrid-day-number {
  color: #000;
}

#calendar table {
  margin-block: inherit;
}

@media (max-width: 768px) {
  #afro-projets-page #calendar {
    margin: 20px auto;
    padding: 15px;
  }

  #afro-projets-page #calendar .fc-toolbar-title {
    font-size: 14px;
  }

  #afro-projets-page #calendar .fc-event-title {
    font-size: 14px;
  }

  #calendar .fc-scrollgrid .rowgroup {
    font-size: 12px;
  }

  #afro-projets-page #calendar .event-hover-card {
    min-width: 250px;
    padding: 10px;
    display: none;
  }

  #afro-projets-page #calendar .event-hover-card img {
    width: 50px;
    height: 50px;
  }

  #afro-projets-page #calendar .event-hover-card .card-body h4 {
    font-size: 14px;
  }

  #afro-projets-page #calendar .event-hover-card .date-category .category {
    font-size: 6px;
    padding: 3px 5px;
  }

  #afro-projets-page #calendar .event-hover-card .date-category p {
    font-size: 8px;
  }
}

.afro-faq-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 45px 0 0;
}

.afro-faq-item {
  border: 1px solid transparent;
  background-color: #FAFAFA;
}

.afro-faq-item span {
  font-family: Roboto Flex;
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 64.67px;
  text-align: center;
  color: #03140F;
}

.afro-faq-item.is-open .afro-faq-icon {
  transform: rotate(180deg);
}

.afro-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 26px;
  cursor: pointer;
  text-align: left;
}

.afro-faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.25s ease, padding 0.3s ease;
}

.afro-faq-item.is-open > .afro-faq-answer {
  max-height: fit-content; /* large enough to fit content */
  opacity: 1;
  padding: 0 26px 26px;
}


.afro-faq-answer p {
  font-family: Roboto Flex;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 28px;
  vertical-align: middle;
  color: #384D50;
}

.afro-faq-icon {
  transition: transform 0.2s ease;
}

@media (max-width: 768px) {
  .afro-faq-container {
    margin: 30px 0 0;
    gap: 8px;
  }

  .afro-faq-container .afro-faq-item span {
    font-size: 16px;
    line-height: normal;
  }

  .afro-faq-container .afro-faq-item span svg {
    width: 12px;
    font-size: 12px;
  }

  .afro-faq-container .afro-faq-question {
    padding: 20px;
  }

  .afro-faq-container .afro-faq-answer {
    padding: 0 20px 20px;
  }

  .afro-faq-container .afro-faq-answer p {
    font-size: 16px;
    line-height: 24px;
  }
}

#afro-form-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 20px;
}

#afro-form-page h2 {
  font-family: Helvetica Neue;
  font-weight: 500;
  font-style: Medium;
  font-size : 32px;
  text-align: center;
  color: #03140F;
  margin-bottom: 16px;
}

#afro-form-page p {
  font-family: Roboto Flex;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  text-align: center;
  margin-bottom: 91px;
}

#afro-form-page form {
  display: flex;
  flex-direction: column;
  width: 54%;
  justify-self: center;
}

#afro-form-page form label {
  font-family: Roboto Flex;
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  color: #03140F;
  margin-bottom: 15px;
}

#afro-form-page form input,
#afro-form-page form textarea,
#afro-form-page form textarea {
  background-color: #F7F7F7;
  border: 0.6px solid #E3E3E3;
  padding: 27px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  font-family: Roboto Flex;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: #384D50;
}

#afro-form-page form input::-moz-placeholder,
#afro-form-page form textarea::-moz-placeholder,
#afro-form-page form textarea::-moz-placeholder {
  font-family: Roboto Flex;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: #384D50;
}

#afro-form-page form input::placeholder,
#afro-form-page form textarea::placeholder,
#afro-form-page form textarea::placeholder {
  font-family: Roboto Flex;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: #384D50;
}

#afro-form-page form input:focus,
#afro-form-page form textarea:focus,
#afro-form-page form textarea:focus {
  outline: #979797 1px solid;
}

#afro-form-page form a {
  font-family: Roboto Flex;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 14px;
  text-decoration: underline;
  text-decoration-style: solid;
  color: #297560;
  transition: all 0.3s ease;
  margin-bottom: 50px;
  align-self: end;
}

#afro-form-page form button {
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 22px;
  text-transform: capitalize;
  color: white;
  background-color: #297560;
  width: 100%;
  padding: 28px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: 91px;
}

#afro-form-page form button:hover {
  background-color: transparent;
  color: #297560;
  border: #297560 1px solid;
}

#afro-form-page form .select {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
  cursor: pointer;
}

#afro-form-page form .select__trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #F7F7F7;
  padding: 27px;
  gap: 10px;
}

#afro-form-page form .select__label {
  color: #384D50;
  font-family: "Roboto Flex";
  font-weight: 400;
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 0;
}

#afro-form-page form .select__options {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  list-style: none;
  margin: 0;
  padding: 6px 0;
  background-color: #ffffff;
  border: 1px solid rgba(41, 117, 96, 0.2);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  z-index: 10;
}

#afro-form-page form .select__option {
  padding: 10px 20px;
  font-family: "Roboto Flex";
  font-size: 16px;
  font-weight: 400;
  color: #297560;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

#afro-form-page form .select__option:hover {
  background-color: rgba(41, 117, 96, 0.1019607843);
}

#afro-form-page form .select__option.is-selected {
  background-color: rgba(41, 117, 96, 0.2);
  font-weight: 500;
}

#afro-form-page form .select.is-open .select__options {
  display: block;
}

#afro-form-page form span {
  font-family: Helvetica Neue;
  font-weight: 500;
  font-size: 24px;
  line-height: 40px;
  text-align: center;
  color: #03140F;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  #afro-form-page {
    padding: 60px 15px;
  }

  #afro-form-page h2 {
    font-size: 32px;
    margin-bottom: 10px;
  }

  #afro-form-page p {
    font-size: 16px;
    margin-bottom: 50px;
  }

  #afro-form-page form {
    width: 100%;
  }

  #afro-form-page form label {
    font-size: 16px;
    margin-bottom: 10px;
  }

  #afro-form-page form input,
  #afro-form-page form textarea {
    padding: 16px;
    margin-bottom: 20px;
    font-size: 16px;
  }

  #afro-form-page form input::-moz-placeholder,
  #afro-form-page form textarea::-moz-placeholder {
    font-size: 16px;
  }

  #afro-form-page form input::placeholder,
  #afro-form-page form textarea::placeholder {
    font-size: 16px;
  }

  #afro-form-page form a {
    font-size: 12px;
    margin-bottom: 30px;
  }

  #afro-form-page form button {
    font-size: 18px;
    padding: 16px;
    margin-bottom: 50px;
  }

  #afro-form-page form .select {
    margin-bottom: 20px;
  }

  #afro-form-page form .select__trigger {
    padding: 16px;
  }

  #afro-form-page form .select__label {
    font-size: 16px;
  }

  #afro-form-page form .select__option {
    font-size: 14px;
    padding: 8px 16px;
  }

  #afro-form-page form span {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 20px;
  }
}

#afro-formations-pages {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 20px;
}

#afro-formations-pages .title {
  font-family: Helvetica Neue;
  font-weight: 500;
  font-style: Medium;
  font-size : 32px;
  color: #03140F;
  margin-bottom: 27px;
}

#afro-formations-pages .paragraph {
  font-family: Roboto Flex;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 53px;
  color: #384D50;
}

#afro-formations-pages .formations-container {
  display: flex;
  gap: 36px;
}

#afro-formations-pages .formations-container .formations-filters {
  flex: 1;
  background-color: #F7F7F7;
  padding: 27px 18px;
}

#afro-formations-pages .formations-container .formations-filters .filter-group {
  border-bottom: 1px solid #e5e5e5;
}

#afro-formations-pages .formations-container .formations-filters .filter-header {
  width: 100%;
  background: none;
  border: 0;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  color: #03140F;
  text-transform: capitalize;
}

#afro-formations-pages .formations-container .formations-filters .filter-header .filter-arrow {
  width: 10px;
  height: 10px;
  transition: transform 0.3s ease;
  display: flex;
}

#afro-formations-pages .formations-container .formations-filters .filter-header[aria-expanded=true] .filter-arrow {
  transform: rotate(-180deg);
}

#afro-formations-pages .formations-container .formations-filters .filter-content {
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.25s ease;
  opacity: 1;
}

#afro-formations-pages .formations-container .formations-filters .filter-content[hidden] {
  display: block;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}

#afro-formations-pages .formations-container .formations-filters label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: Roboto Flex;
  font-weight: 400;
  font-style: Regular;
  font-size: 12px;
  color: #384D50;
  margin-bottom: 10px;
}

#afro-formations-pages .formations-container .formations-filters label input[type=checkbox] {
  accent-color: #297560;
}

#afro-formations-pages .formations-container .formations-list {
  flex: 4.55;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

#afro-formations-pages .formations-container .formations-list .formation-card {
  width: 296px;
  border: 1px solid #EAEBEF;
  margin-bottom: 18px;
  height: -moz-fit-content;
  height: fit-content;
}

#afro-formations-pages .formations-container .formations-list .formation-card .img-container {
  position: relative;
}

#afro-formations-pages .formations-container .formations-list .formation-card .img-container img {
  width: 100%;
  height: 140px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 18.15px;
}

#afro-formations-pages .formations-container .formations-list .formation-card .img-container .title {
  font-family: Helvetica Neue;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 16px;
  color: #0A2C23;
  background-color: white;
  position: absolute;
  bottom: 0;
  margin: 0;
  max-width: 202px;
  padding: 10px;
}

#afro-formations-pages .formations-container .formations-list .formation-card .img-container .tag {
  position: absolute;
  right: 0;
  top: 17px;
  font-family: Roboto Flex;
  font-weight: 400;
  font-style: Regular;
  font-size: 7.19px;
  text-transform: uppercase;
  color: #fff;
  padding: 5px 13px;
  background-color: #297560;
}

#afro-formations-pages .formations-container .formations-list .formation-card .content {
  padding: 0 11px;
}

#afro-formations-pages .formations-container .formations-list .formation-card .content span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  gap: 10px;
}

#afro-formations-pages .formations-container .formations-list .formation-card .content span .category {
  font-family: Roboto Flex;
  font-weight: 400;
  font-style: Regular;
  font-size: 7.19px;
  text-transform: uppercase;
  color: #3A9E50;
  padding: 4.7px 7.18px;
  background-color: rgba(58, 158, 80, 0.1019607843);
  text-align: center;
}

#afro-formations-pages .formations-container .formations-list .formation-card .content span .date {
  color: #194F40;
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 8px;
}

#afro-formations-pages .formations-container .formations-list .formation-card .content .description {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 12px;
  line-height: 13.87px;
  color: rgba(56, 77, 80, 0.8);
  margin-bottom: 22px;
}

#afro-formations-pages .formations-container .formations-list .formation-card .content .link {
  display: flex;
  width: 100%;
  justify-content: end;
  font-family: Roboto Flex;
  font-weight: 500;
  font-style: Medium;
  font-size: 12px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
  text-decoration: underline;
  text-decoration-style: solid;
  color: #3A9E50;
  margin-bottom: 21px;
}

#afro-formations-pages .formations-container .formation-card-details {
  flex: 1;
}

#afro-formations-pages .formations-container .formation-card-details img {
  width: 100%;
  max-height: 162px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 18px;
}

#afro-formations-pages .formations-container .formation-card-details .title {
  font-family: Helvetica Neue;
  font-weight: 500;
  font-style: Medium;
  font-size: 22px;
  margin-bottom: 10px;
  color: #0A2C23;
}

#afro-formations-pages .formations-container .formation-card-details span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  gap: 10px;
}

#afro-formations-pages .formations-container .formation-card-details span .category {
  font-family: Roboto Flex;
  font-weight: 400;
  font-style: Regular;
  font-size: 10px;
  text-transform: uppercase;
  color: #3A9E50;
  padding: 4.7px 7.18px;
  background-color: rgba(58, 158, 80, 0.1019607843);
  text-align: center;
}

#afro-formations-pages .formations-container .formation-card-details span .date {
  color: #194F40;
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 8px;
}

#afro-formations-pages .formations-container .formation-card-details .location {
  font-family: Inter;
  font-weight: 500;
  font-style: Medium;
  font-size: 8px;
  color: #384D50;
  margin-bottom: 8px;
}

#afro-formations-pages .formations-container .formation-card-details .description {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 12px;
  line-height: 20px;
  color: #384D50;
}

#afro-formations-pages .formations-container .form-container {
  flex: 3;
}

#afro-formations-pages .formations-container .form-container form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  gap: 19px;
}

#afro-formations-pages .formations-container .form-container form .input-container {
  width: 422px;
  display: flex;
  flex-direction: column;
}

#afro-formations-pages .formations-container .form-container form label {
  font-family: Roboto Flex;
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  color: #03140F;
  margin-bottom: 7px;
}

#afro-formations-pages .formations-container .form-container form input,
#afro-formations-pages .formations-container .form-container form textarea,
#afro-formations-pages .formations-container .form-container form textarea {
  background-color: #F7F7F7;
  border: 0.6px solid #E3E3E3;
  padding: 17px;
  transition: all 0.3s ease;
  font-family: Roboto Flex;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: #384D50;
}

#afro-formations-pages .formations-container .form-container form input::-moz-placeholder,
#afro-formations-pages .formations-container .form-container form textarea::-moz-placeholder,
#afro-formations-pages .formations-container .form-container form textarea::-moz-placeholder {
  font-family: Roboto Flex;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: #384D50;
}

#afro-formations-pages .formations-container .form-container form input::placeholder,
#afro-formations-pages .formations-container .form-container form textarea::placeholder,
#afro-formations-pages .formations-container .form-container form textarea::placeholder {
  font-family: Roboto Flex;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: #384D50;
}

#afro-formations-pages .formations-container .form-container form input:focus,
#afro-formations-pages .formations-container .form-container form textarea:focus,
#afro-formations-pages .formations-container .form-container form textarea:focus {
  outline: #979797 1px solid;
}

#afro-formations-pages .formations-container .form-container form a {
  font-family: Roboto Flex;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 14px;
  text-decoration: underline;
  text-decoration-style: solid;
  color: #297560;
  transition: all 0.3s ease;
  margin-bottom: 50px;
  align-self: end;
}

#afro-formations-pages .formations-container .form-container form .button-container {
  width: 100%;
  display: flex;
  justify-content: end;
  margin-top: 20px;
}

#afro-formations-pages .formations-container .form-container form button {
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 12px;
  text-transform: capitalize;
  color: white;
  background-color: #297560;
  padding: 18px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: 91px;
}

#afro-formations-pages .formations-container .form-container form button:hover {
  background-color: transparent;
  color: #297560;
  border: #297560 1px solid;
}

#afro-formations-pages .formations-container .form-container form .select {
  position: relative;
  width: 100%;
  cursor: pointer;
}

#afro-formations-pages .formations-container .form-container form .select__trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #F7F7F7;
  padding: 17px;
  gap: 10px;
}

#afro-formations-pages .formations-container .form-container form .select__label {
  color: #384D50;
  font-family: "Roboto Flex";
  font-weight: 400;
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 0;
}

#afro-formations-pages .formations-container .form-container form .select__options {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  list-style: none;
  margin: 0;
  padding: 6px 0;
  background-color: #ffffff;
  border: 1px solid rgba(41, 117, 96, 0.2);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  z-index: 10;
}

#afro-formations-pages .formations-container .form-container form .select__option {
  padding: 10px 20px;
  font-family: "Roboto Flex";
  font-size: 16px;
  font-weight: 400;
  color: #297560;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

#afro-formations-pages .formations-container .form-container form .select__option:hover {
  background-color: rgba(41, 117, 96, 0.1019607843);
}

#afro-formations-pages .formations-container .form-container form .select__option.is-selected {
  background-color: rgba(41, 117, 96, 0.2);
  font-weight: 500;
}

#afro-formations-pages .formations-container .form-container form .select.is-open .select__options {
  display: block;
}

#afro-formations-pages .formations-container .form-container form span {
  font-family: Helvetica Neue;
  font-weight: 500;
  font-size: 24px;
  line-height: 40px;
  text-align: center;
  color: #03140F;
  margin-bottom: 30px;
}

#afro-formations-pages .afro-partenaires-container {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

#afro-formations-pages .afro-partenaires-container .afro-partenaires-card {
  width: 286px;
}

#afro-formations-pages .afro-partenaires-container .afro-partenaires-card .image-container {
  background-color: #F7F7F7;
  width: 286px;
  height: 233px;
  margin-bottom: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#afro-formations-pages .afro-partenaires-container .afro-partenaires-card .image-container img {
  max-width: 150px;
  max-height: 150px;
  -o-object-fit: cover;
  object-fit: cover;
}

#afro-formations-pages .afro-partenaires-container .afro-partenaires-card .name {
  font-family: Helvetica Neue;
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  color: #03140F;
  margin-bottom: 9px;
}

#afro-formations-pages .afro-partenaires-container .afro-partenaires-card .description {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 12px;
  color: #384D50;
  margin-bottom: 18px;
}

#afro-formations-pages .afro-partenaires-container .afro-partenaires-card .link {
  font-family: Roboto Flex;
  font-weight: 500;
  font-style: Medium;
  font-size: 12.57px;
  text-transform: capitalize;
  text-decoration: underline;
  text-decoration-style: solid;
  color: #3A9E50;
  cursor: pointer;
  display: inline-block;
  text-align: end;
  width: 100%;
}

@media (max-width: 768px) {
  #afro-formations-pages {
    padding: 60px 15px;
  }

  #afro-formations-pages .title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  #afro-formations-pages .paragraph {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #afro-formations-pages .formations-container {
    flex-direction: column;
    gap: 20px;
  }

  #afro-formations-pages .formations-container .formations-filters {
    padding: 20px 15px;
  }

  #afro-formations-pages .formations-container .formations-filters .filter-header {
    font-size: 14px;
    padding: 0.5rem 0;
  }

  #afro-formations-pages .formations-container .formations-filters label {
    font-size: 12px;
    margin-bottom: 8px;
  }

  #afro-formations-pages .formations-container .formations-list {
    flex: none;
  }

  #afro-formations-pages .formations-container .formations-list .formation-card {
    width: 100%;
    margin-bottom: 15px;
  }

  #afro-formations-pages .formations-container .formations-list .formation-card .img-container img {
    height: 150px;
  }

  #afro-formations-pages .formations-container .formations-list .formation-card .img-container .title {
    font-size: 14px;
    padding: 8px;
    max-width: none;
  }

  #afro-formations-pages .formations-container .formations-list .formation-card .img-container .tag {
    font-size: 6px;
    padding: 4px 10px;
  }

  #afro-formations-pages .formations-container .formations-list .formation-card .content {
    padding: 0 10px;
  }

  #afro-formations-pages .formations-container .formations-list .formation-card .content span {
    margin-bottom: 10px;
  }

  #afro-formations-pages .formations-container .formations-list .formation-card .content span .category {
    font-size: 8px;
    padding: 3px 6px;
  }

  #afro-formations-pages .formations-container .formations-list .formation-card .content span .date {
    font-size: 10px;
  }

  #afro-formations-pages .formations-container .formations-list .formation-card .content .description {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 15px;
  }

  #afro-formations-pages .formations-container .formations-list .formation-card .content .link {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .page-wrapper > footer {
    padding: 20px 0 20px;
  }
}

a, .link {
  color: #000;
}

.afrodv-calendrier-evenements #afro-projets-page {
  padding: 0 20px 0 20px !important;
}

#afro-form-page .input-container .form-item label {
  font-family: Roboto Flex;
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  color: #03140F;
  margin-bottom: 11px;
}
#afro-form-page .input-container .form-item .form-element {
      background-color: #F7F7F7;
    border: 0.54px solid #E3E3E3;
    padding: 24px;
    transition: all 0.3s ease;
}

#afro-form-page .button-container .form-actions .button{
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  text-transform: capitalize;
  color: white;
  background-color: #297560;
  padding: 25px;
  max-width: 317px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

#afro-form-page .button-container .form-actions .button:hover {
  background-color: transparent;
  color: #297560;
  border: #297560 1px solid;
}

/* Forum Styles */
#block-afro-content .action-links .button {
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  color: white;
  background-color: #297560;
  padding: 12px 24px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

#block-afro-content .action-links .button:hover {
  background-color: transparent;
  color: #297560;
  border: 1px solid #297560;
}

#block-afro-content table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

#block-afro-content table th,
#block-afro-content table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

#block-afro-content table th {
  background-color: #f8f8f8;
  font-weight: 600;
  color: #297560;
}
#block-afro-content table th.is-active a{
  color: #297560;
}
#block-afro-content table th.is-active span{
  color: #297560;
}
#block-afro-content table th.is-active a::before {
    border-bottom: 0.1875rem solid #297560;
}

#block-afro-content table td a {
  color: #297560;
  text-decoration: none;
}

#block-afro-content table td a:hover {
  text-decoration: underline;
}

#block-afro-content .username {
  color: #297560;
  font-weight: 500;
}

/* Node and Comment Styles */
#block-afro-content .node__meta .node__submitted {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

#block-afro-content .node__meta .node__submitted .username {
  color: #297560;
  text-decoration: none;
}

#block-afro-content .node__meta .node__submitted .username:hover {
  text-decoration: underline;
}

#block-afro-content .node__content {
  margin-top: 20px;
}

#block-afro-content .field__label {
  font-weight: 600;
  color: #297560;
  margin-bottom: 5px;
}

#block-afro-content .comment {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
  background-color: #f9f9f9;
}

#block-afro-content .comment__meta {
  margin-bottom: 10px;
}

#block-afro-content .comment__submitted {
  font-size: 14px;
  color: #666;
}

#block-afro-content .comment__submitted .username {
  color: #297560;
  text-decoration: none;
}

#block-afro-content .comment__submitted .username:hover {
  text-decoration: underline;
}

#block-afro-content .comment__submitted a {
  color: #297560;
  text-decoration: none;
  font-size: 12px;
}

#block-afro-content .comment__submitted a:hover {
  text-decoration: underline;
}

#block-afro-content .comment .content h3 {
  margin: 0 0 10px 0;
  font-size: 18px;
  color: #297560;
}

#block-afro-content .comment .content h3 a {
  color: #297560;
  text-decoration: none;
}

#block-afro-content .comment .content h3 a:hover {
  text-decoration: underline;
}

#block-afro-content .comment-form__title {
  font-size: 24px;
  color: #297560;
  margin-bottom: 20px;
}

#block-afro-content .comment-form .form-element-label {
  font-weight: 600;
  color: #297560;
  margin-bottom: 5px;
}

#block-afro-content .comment-form input[type="text"],
#block-afro-content .comment-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
}

#block-afro-content .comment-form textarea {
  resize: vertical;
  min-height: 100px;
}

#block-afro-content .comment-form .form-actions .button {
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  text-transform: capitalize;
  color: white;
  background-color: #297560;
  padding: 12px 24px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-right: 10px;
}

#block-afro-content .comment-form .form-actions .button:hover {
  background-color: transparent;
  color: #297560;
  border: 1px solid #297560;
}

#block-afro-content .comment-form .form-actions .button--primary {
  background-color: #297560;
}

#block-afro-content .comment-form .form-actions .button--primary:hover {
  background-color: transparent;
  color: #297560;
  border: 1px solid #297560;
}

#block-afro-content .node__links .links li a {
  color: #297560;
  text-decoration: none;
}

#block-afro-content .node__links .links li a:hover {
  text-decoration: underline;
}

/* Node Form Styles */
#block-afro-content .node-forum-form .form-item__label {
  font-weight: 600;
  color: #297560;
  margin-bottom: 5px;
}

#block-afro-content .node-forum-form input[type="text"],
#block-afro-content .node-forum-form select,
#block-afro-content .node-forum-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
}

#block-afro-content .node-forum-form textarea {
  resize: vertical;
  min-height: 100px;
}

#block-afro-content .node-forum-form .form-actions .button {
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  text-transform: capitalize;
  color: white;
  background-color: #297560;
  padding: 12px 24px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-right: 10px;
}

#block-afro-content .node-forum-form .form-actions .button:hover {
  background-color: transparent;
  color: #297560;
  border: 1px solid #297560;
}

#block-afro-content .node-forum-form .form-actions .button--primary {
  background-color: #297560;
}

#block-afro-content .node-forum-form .form-actions .button--primary:hover {
  background-color: transparent;
  color: #297560;
  border: 1px solid #297560;
}

#block-afro-content .node-forum-form .entity-meta__header .form-item__label {
  color: #297560;
  font-weight: 600;
}

#block-afro-content .node-forum-form .layout-region--main,
#block-afro-content .node-forum-form .layout-region--secondary,
#block-afro-content .node-forum-form .layout-region--footer {
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #f9f9f9;
}

#block-afro-content .node-forum-form .field-edit-link {
  font-size: 12px;
  color: #666;
}

#block-afro-content .node-forum-form .field-edit-link button {
  color: #297560;
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
}

#block-afro-content .node-forum-form .field-edit-link button:hover {
  color: #0A2C23;
}

/* Login Page Styles ======================================================*/
.tabs__tab.is-active.js-active-tab a{
  color: #297560;
}
.tabs__tab .tabs__link:hover{
  color: #297560;
  background-color: #29755f46;
}
.tabs__tab.is-active.js-active-tab a::before {
    border-bottom: 0.1875rem solid #297560;
}
#block-afro-content .user-login-form .form-item {
  width: 48%;
}
#block-afro-content .user-login-form .form-item__label {
  font-family: Roboto Flex;
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 15px;
}

#block-afro-content .user-login-form input[type="text"],
#block-afro-content .user-login-form input[type="password"] {
  padding: 27px;
  border: 1px solid #E3E3E3;
  font-family: inherit;
  font-size: 14px;
  background-color: #F7F7F7;
  width: 100%;
  font-family: Roboto Flex;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: #384D50;
}
#block-afro-content .user-login-form .form-actions:has(.button) {
  width: 100%;
  justify-content: end;
}
#block-afro-content .user-login-form .form-actions .button {
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  text-transform: capitalize;
  color: white;
  background-color: #297560;
  padding: 28px 100px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

#block-afro-content .user-login-form .form-actions .button:hover {
  background-color: transparent;
  color: #297560;
  border: 1px solid #297560;
}

@media (max-width: 768px) {
  #block-afro-content .user-login-form .form-item__label {
    font-size: 14px;
    margin-bottom: 3px;
  }

  #block-afro-content .user-login-form input[type="text"],
  #block-afro-content .user-login-form input[type="password"] {
    padding: 8px;
    font-size: 12px;
  }

  #block-afro-content .user-login-form .form-actions .button {
    font-size: 14px;
    padding: 10px 20px;
  }
  #block-afro-content .user-login-form .form-item {
    width: auto;
  }
}

/* ===============================
   REGISTER FORM GRID
================================ */

#block-afro-content .user-register-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: min-content;
  column-gap: 40px;
  row-gap: 40px;
  padding: 30px;
}

/* Kill all Drupal width forcing */
#block-afro-content .user-register-form .form-wrapper,
#block-afro-content .user-register-form .form-item {
  width: auto;
  margin: 0;
}

/* ===============================
   EMAIL + USERNAME ROW
================================ */

#edit-account {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* ===============================
   EXPLICIT GRID PLACEMENT
================================ */

#edit-field-nom-et-prenom-wrapper {
  grid-column: 1;
  grid-row: 2;
}

#edit-field-genre-wrapper {
  grid-column: 2;
  grid-row: 2;
}

#edit-field-pays-wrapper {
  grid-column: 1;
  grid-row: 3;
}

#edit-field-ndeg-de-telephone-wrapper {
  grid-column: 2;
  grid-row: 3;
}

#edit-actions {
  grid-column: 2;
  grid-row: 4;
  display: flex;
  justify-content: flex-end;
}

/* ===============================
   LABELS
================================ */

#block-afro-content .user-register-form .form-item__label {
  display: block;
  font-family: Roboto Flex;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 14px;
}

/* ===============================
   INPUTS
================================ */

#block-afro-content .user-register-form input[type="text"],
#block-afro-content .user-register-form input[type="email"],
#block-afro-content .user-register-form select {
  width: 100%;
  padding: 26px 24px;
  background: #F7F7F7;
  border: 1px solid #E3E3E3;
  font-family: Roboto Flex;
  font-size: 18px;
  color: #384D50;
}

/* Fix select height */
#block-afro-content .user-register-form select {
  height: 76px;
}

/* ===============================
   DESCRIPTIONS
================================ */

#block-afro-content .user-register-form .form-item__description {
  margin-top: 8px;
  font-family: Roboto Flex;
  font-size: 14px;
  color: #939393;
  max-width: 95%;
}

/* ===============================
   BUTTON
================================ */

#block-afro-content .user-register-form .form-actions .button {
  padding: 28px 100px;
  font-family: Poppins;
  font-size: 16px;
  background: #297560;
  color: white;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.3s;
  font-family: Roboto Flex;
  font-weight: 400;
  font-style: Regular;
  font-size: 22px;

}

#block-afro-content .user-register-form .form-actions .button:hover {
  background: transparent;
  color: #297560;
  border-color: #297560;
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 768px) {
  #block-afro-content .user-register-form {
    padding: 0;
    display: block;
  }

  #edit-account {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #edit-field-nom-et-prenom-wrapper,
  #edit-field-genre-wrapper,
  #edit-field-pays-wrapper,
  #edit-field-ndeg-de-telephone-wrapper,
  #edit-actions {
    grid-column: 1;
    grid-row: auto;
  }

  #edit-actions {
    justify-content: stretch;
  }

  #edit-actions .button {
    width: 100%;
    padding: 18px;
  }

  #block-afro-content .user-register-form input,
  #block-afro-content .user-register-form select {
    font-size: 14px;
    padding: 10px;
  }
  #block-afro-content .user-register-form .form-actions .button{
    margin: 20px 0;
    padding: 20px;
  }
}

/* Password Reset Page Styles */
#block-afro-content .user-pass {
  padding: 0 30px;
  display: block;
}
#block-afro-content .user-pass .form-item__label {
  font-family: Roboto Flex;
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 15px;
}

#block-afro-content .user-pass input[type="text"] {
  padding: 27px;
  border: 1px solid #E3E3E3;
  font-family: inherit;
  font-size: 14px;
  background-color: #F7F7F7;
  width: 100%;
  font-family: Roboto Flex;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: #384D50;
}

#block-afro-content .user-pass .form-actions .button {
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  text-transform: capitalize;
  color: white;
  background-color: #297560;
  padding: 28px 100px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

#block-afro-content .user-pass .form-actions .button:hover {
  background-color: transparent;
  color: #297560;
  border: 1px solid #297560;
}

@media (max-width: 768px) {
  #block-afro-content .user-pass {
    padding: 0px;
    display: block;
  }
  #block-afro-content .user-pass .form-item__label {
    font-size: 14px;
    margin-bottom: 3px;
  }

  #block-afro-content .user-pass input[type="text"] {
    padding: 8px;
    font-size: 12px;
  }

  #block-afro-content .user-pass .form-actions .button {
    font-size: 14px;
    padding: 10px 20px;
  }
}

/* Search Page Styles */
#block-afro-content h2 {
  font-family: Helvetica Neue;
  font-weight: 500;
  font-style: Medium;
  font-size: 32px;
  color: #03140F;
}
#block-afro-content .search-form {
  display: block;
}
#block-afro-content .search-form .form-wrapper {
  display: flex;
  gap: 27px;
  align-items: flex-end;
  margin-bottom: 50px;
}
#block-afro-content .search-form .form-wrapper .form-item {
  width: -webkit-fill-available;
  margin: 0;
}
#block-afro-content .search-form .form-item__label {
  font-family: Roboto Flex;
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 15px;
  color: #03140F;
}
#block-afro-content .search-form input[type="submit"] {
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  text-transform: capitalize;
  color: white;
  background-color: #297560;
  padding: 33px 107px;
  max-width: 317px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 0;
}
#block-afro-content .search-form input[type="submit"]:hover {
  background-color: transparent;
  color: #297560;
  border: #297560 1px solid;
}
#block-afro-content .search-form input[type="search"] {
  padding: 41px 32px;
  border: 1px solid #E3E3E3;
  border-radius: 0;
  font-family: inherit;
  font-size: 14px;
  background-color: #F7F7F7;
  width: 100%;
  font-family: Roboto Flex;
  font-weight: 400;
  font-style: Regular;
  font-size: 19px;
  color: #03140F;
}

#block-afro-content .search-form .form-actions .button {
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  text-transform: capitalize;
  color: white;
  background-color: #297560;
  padding: 28px 100px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 0;
  height: 50%;
  align-self: end;
}

#block-afro-content .search-form .form-actions .button:hover {
  background-color: transparent;
  color: #297560;
  border: 1px solid #297560;
}
#block-afro-content .item-list ol {
  margin: 0;
}
#block-afro-content .item-list ol li {
  margin: 0;
}
#afro-projets-page .afro-left-wrapper #block-afro-content .item-list ol li .search-result__title a{
  font-family: Helvetica Neue;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  text-transform: capitalize;
  color: #03140F;
  text-decoration: none;
  transition: all 0.3s ease;
}
#afro-projets-page .afro-left-wrapper #block-afro-content .item-list ol li .search-result__title a:hover{
  text-decoration: underline;
}
#block-afro-content .item-list ol li .search-result__snippet-info .search-result__snippet {
  font-family: Roboto Flex;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
}
@media (max-width: 768px) {
  #block-afro-content .search-form .form-item__label {
    font-size: 12px;
    margin-bottom: 5px;
  }

  #block-afro-content .search-form input[type="search"] {
    padding: 12px 16px;
    font-size: 14px;
  }
  #block-afro-content .search-form input[type="submit"]{
    padding: 17px;
    font-size: 12px;
  }
  #block-afro-content .search-form .form-actions .button {
    font-size: 12px;
    padding: 12px 20px;
  }

  #block-afro-content .search-form .form-wrapper {
    gap: 15px;
  }
}

/* Hide the "Last" button if you don’t want it */
#block-afro-content .pager__item--last {
  display: none;
}

/* Base button */
#block-afro-content .pager__link {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F0F0F0;
    color: #297560;
    width: 40px;
    height: 40px;
    text-decoration: none;
    font-family: Roboto Flex;
    font-weight: 400;
    font-style: Regular;
    font-size: 16.9px;
    text-transform: capitalize;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

/* Hover */
#block-afro-content .pager__link:hover {
  background-color: #E3ECE8;
}

/* Active page */
#block-afro-content .pager__item--active .pager__link,
#block-afro-content .pager__link.is-active {
    background-color: #297560;
    color: #F0F0F0;
}

/* Number buttons */
#block-afro-content .pager__item--number .pager__link {
  font-weight: 500;
}

/* Previous & Next buttons */
#block-afro-content .pager__item--action .pager__link {
  background-color: #E9F1ED;
  color: #2A6F5B;
  width: auto;
}

/* Optional: subtle border on hover */
#block-afro-content .pager__link:hover {
  border-color: #2A6F5B;
}



.form-step{
  display: none;
}
.form-step.is-active{
  display: block;
}
.error-flag{
  border-color: red !important;
}
#afro-insription-steps-page .field-container>label{
  display: none !important;
}


/* =================================== inscription steps (4) ========================================== */
#afro-insription-steps-page {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0px;
  padding-top:0 !important;
  padding-bottom:0 !important;
}
#afro-insription-steps-page .title {
  font-family: Helvetica Neue;
  font-weight: 500;
  font-style: Medium;
  font-size : 32px;
  color: #03140F;
  margin-bottom: 27px;
}
#afro-insription-steps-page .paragraph {
  font-family: Roboto Flex;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 53px;
  color: #384D50;
}
#afro-insription-steps-page .form-step-inside,
#afro-insription-steps-page .hotels-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
#afro-insription-steps-page .form-step-inside .field-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 563px;
}
#afro-insription-steps-page .form-step-inside .field-container label {
  font-family: Roboto Flex;
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  color: #03140F;
  margin-bottom: 11px;
}
#afro-insription-steps-page .form-step-inside .field-container input, #afro-insription-steps-page .form-step-inside .field-container select, #afro-insription-steps-page .form-step-inside .field-container textarea {
  background-color: #F7F7F7;
  border: 0.54px solid #E3E3E3;
  padding: 24px;
  transition: all 0.3s ease;
  width: 100%;
}
#afro-insription-steps-page .form-step-inside .field-container input[type="checkbox"]{
  width: auto;
  height: 100%;
  margin: 0;
  transform: translateY(-12px) !important;
}
#afro-insription-steps-page .form-step-inside .field-container input::-moz-placeholder, #afro-insription-steps-page .form-step-inside .field-container select::-moz-placeholder, #afro-insription-steps-page .form-step-inside .field-container textarea::-moz-placeholder {
  font-family: Roboto Flex;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  color: #384D50;
}
#afro-insription-steps-page .form-step-inside .field-container input::placeholder, #afro-insription-steps-page .form-step-inside .field-container select::placeholder, #afro-insription-steps-page .form-step-inside .field-container textarea::placeholder {
  font-family: Roboto Flex;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  color: #384D50;
}
#afro-insription-steps-page .form-step-inside .field-container input:focus, #afro-insription-steps-page .form-step-inside .field-container select:focus, #afro-insription-steps-page .form-step-inside .field-container textarea:focus {
  outline: #979797 1px solid;
}
#afro-insription-steps-page .form-step-inside .field-container .select-wrapper {
  position: relative;
  width: 100%;
}
#afro-insription-steps-page .form-step-inside .field-container .select-wrapper select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  position: relative;
  z-index: 1;
}
#afro-insription-steps-page .form-step-inside .field-container .select-wrapper::after {
  background: none;
}
#afro-insription-steps-page .form-step-inside .field-container.text-area {
  width: 100%;
  max-width: none;
}
#afro-insription-steps-page .form-step-inside .field-container.form-switch {
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
#afro-insription-steps-page .form-step-inside .field-container.form-switch .form-type--boolean {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
#afro-insription-steps-page .form-step-inside .field-container.form-switch .form-check-input {
  padding: 0;
  width: 66px;
  height: 37px;
  cursor: pointer;
  /* OFF state */
  background-color: #e0e0e0;
  border-color: #e0e0e0;
  /* ON state */
}
#afro-insription-steps-page .form-step-inside .field-container.form-switch .form-check-input:checked {
  background-color: #297560;
  border-color: #297560;
}
#afro-insription-steps-page .form-step-inside .field-container.form-switch label {
  margin: 0;
}
#afro-insription-steps-page .form-step-inside .buttons-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  gap: 20px;
}
#afro-insription-steps-page .form-step-inside .buttons-container button {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  text-transform: capitalize;
  color: white;
  background-color: #297560;
  padding: 28px 100px;
  max-width: 317px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}
#afro-insription-steps-page .form-step-inside .buttons-container button:hover {
  background-color: transparent;
  color: #297560;
  border: #297560 1px solid;
}
#afro-insription-steps-page .form-step-inside .buttons-container .back-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background-color: #E7F3F0;
  color: #297560;
  justify-self: start;
  border: 1px solid #297560;
  transition: all 0.3s ease;
}
#afro-insription-steps-page .afro-inscription-event-card {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}
#afro-insription-steps-page .afro-inscription-event-card img {
  flex: 1.13;
  height: 100%;
  max-height: 200px;
}
#afro-insription-steps-page .afro-inscription-event-card .content {
  flex: 3;
}
#afro-insription-steps-page .afro-inscription-event-card .content span {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#afro-insription-steps-page .afro-inscription-event-card .content span .title {
  font-size: 24px;
  margin-bottom: 10px;
}
#afro-insription-steps-page .afro-inscription-event-card .content span .date {
  font-family: Roboto Flex;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  text-transform: capitalize;
  color: #194F40;
}
#afro-insription-steps-page .afro-inscription-event-card .content .location {
  font-family: Roboto Flex;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: rgba(56, 77, 80, 0.8);
  display: flex;
  align-items: center;
  gap: 2.5px;
  margin-bottom: 18px;
}
#afro-insription-steps-page .afro-inscription-event-card .content .location i {
  color: #297560;
}
#afro-insription-steps-page .afro-inscription-event-card .content .contact {
  font-family: Helvetica Neue;
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  text-transform: capitalize;
  color: #03140F;
  margin-bottom: 14px;
}
#afro-insription-steps-page .afro-inscription-event-card .content .contacts-wrapper {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
#afro-insription-steps-page .afro-inscription-event-card .content .contacts-wrapper .contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 347px;
  font-family: Roboto Flex;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  color: #384D50;
}
#afro-insription-steps-page .afro-inscription-event-card .content .contacts-wrapper .contact-info p {
  margin: 0;
}
.contact-info p {
  margin: 0;
}
#afro-insription-steps-page .afro-inscription-event-card .content .contacts-wrapper .contact-info b {
  color: #03140F;
}
#afro-insription-steps-page .stepper {
  position: relative;
  width: 100%;
  margin-bottom: 40px;
}
#afro-insription-steps-page .stepper__bar {
  height: 8px;
  background: #CFD6DC;
  border-radius: 5px;
}
#afro-insription-steps-page .stepper__progress {
  height: 100%;
  width: var(--progress, 0%);
  background: #297560;
  transition: width 0.35s ease;
  border-radius: 5px;
}
#afro-insription-steps-page .stepper__steps {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}
#afro-insription-steps-page .step {
  color: #CFD6DC;
  font-family: Roboto Flex;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 14px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}
#afro-insription-steps-page .step:first-child {
  text-align: left;
}
#afro-insription-steps-page .step:last-child {
  text-align: right;
}
#afro-insription-steps-page .step.is-active, #afro-insription-steps-page .step.is-complete {
  color: #297560;
}
#afro-insription-steps-page .step.is-active::before, #afro-insription-steps-page .step.is-complete::before {
  background: #297560;
}
#afro-insription-steps-page .hotel-card {
  display: flex;
  padding: 23px;
  gap: 40px;
  border: 1px solid #E3E3E3;
  width: 100%;
}
#afro-insription-steps-page .hotel-card .img-container {
  width: 190px;
  height: auto;
  overflow: hidden;
}
#afro-insription-steps-page .hotel-card .img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#afro-insription-steps-page .hotel-card .content {
  width: 80%;
}
#afro-insription-steps-page .hotel-card .content .title-and-star {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
#afro-insription-steps-page .hotel-card .content .title-and-star .title {
  font-family: Roboto;
  font-weight: 600;
  font-style: SemiBold;
  font-size : 32px;
  color: #1F2226;
}
#afro-insription-steps-page .hotel-card .content .title-and-star .star {
  font-family: Plus Jakarta Sans;
  font-weight: 700;
  font-style: Bold;
  font-size: 32px;
  color: #333333;
  height: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}
#afro-insription-steps-page .hotel-card .content .title-and-star .star svg {
  height: 100%;
}
#afro-insription-steps-page .hotel-card .content .location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #384D50;
  font-family: Inter;
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  margin-bottom: 34px;
}
#afro-insription-steps-page .hotel-card .content .pricing-and-action {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
#afro-insription-steps-page .hotel-card .content .pricing-and-action p {
  font-family: Roboto Flex;
  font-weight: 400;
  font-style: SemiBold;
  font-size: 42.55px;
  color: #384D50;
  margin: 0;
}
#afro-insription-steps-page .hotel-card .content .pricing-and-action p b {
  color: #359177;
  font-weight: 700;
}
#afro-insription-steps-page .hotel-card .content .pricing-and-action .custom-checkbox {
  display: inline-flex;
  cursor: pointer;
  /* unchecked state */
}
#afro-insription-steps-page .hotel-card .content .pricing-and-action .custom-checkbox input {
  display: none;
}
#afro-insription-steps-page .hotel-card .content .pricing-and-action .custom-checkbox .checkmark {
  width: 64px;
  height: 64px;
  background-color: #3fa98b;
  border-radius: 8px;
  position: relative;
  transition: background-color 0.25s ease;
}
#afro-insription-steps-page .hotel-card .content .pricing-and-action .custom-checkbox .checkmark::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 14px;
  width: 16px;
  height: 30px;
  border: solid #fff;
  border-width: 0 6px 6px 0;
  transform: rotate(45deg);
}
#afro-insription-steps-page .hotel-card .content .pricing-and-action .custom-checkbox input:not(:checked) + .checkmark {
  background-color: white;
  border: 7px solid #C3C3C3;
}
#afro-insription-steps-page .hotel-card .content .pricing-and-action .custom-checkbox input:not(:checked) + .checkmark::after {
  display: none;
}

#block-afro-content .block-field-blocknodepagefield-breadcrumb-bg,
.afrodv-partenaires .afro-right-wrapper,
.afrodv-foire-aux-questions #afro-filters-container .select__trigger,
.afrodv-foire-aux-questions #block-afro-content .field__label{
  display: none !important;
}

@media (max-width: 768px) {
  #afro-insription-steps-page {
    padding: 60px 15px;
  }
  #afro-insription-steps-page .title {
    font-size: 32px;
    margin-bottom: 16px;
  }
  #afro-insription-steps-page .paragraph {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 32px;
  }
  #afro-insription-steps-page .form-step-inside {
    gap: 24px;
  }
  #afro-insription-steps-page .form-step-inside .field-container {
    max-width: 100%;
  }
  #afro-insription-steps-page .form-step-inside .field-container label {
    font-size: 16px;
    margin-bottom: 8px;
  }
  #afro-insription-steps-page .form-step-inside .field-container input, #afro-insription-steps-page .form-step-inside .field-container select, #afro-insription-steps-page .form-step-inside .field-container textarea {
    padding: 16px;
    font-size: 16px;
  }
  #afro-insription-steps-page .form-step-inside .field-container.text-area {
    max-width: 100%;
  }
  #afro-insription-steps-page .form-step-inside .buttons-container {
    justify-content: center;
    flex-direction: column;
  }
  #afro-insription-steps-page .form-step-inside .buttons-container button {
    padding: 20px 60px;
    font-size: 18px;
    max-width: 100%;
    width: auto;
  }
  #afro-insription-steps-page .afro-inscription-event-card {
    flex-direction: column;
    gap: 16px;
  }
  #afro-insription-steps-page .afro-inscription-event-card img {
    flex: 1;
    max-height: 150px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #afro-insription-steps-page .afro-inscription-event-card .content {
    flex: 1;
  }
  #afro-insription-steps-page .afro-inscription-event-card .content span {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  #afro-insription-steps-page .afro-inscription-event-card .content span .title {
    font-size: 18px;
    margin-bottom: 8px;
  }
  #afro-insription-steps-page .afro-inscription-event-card .content span .date {
    font-size: 14px;
  }
  #afro-insription-steps-page .afro-inscription-event-card .content .location {
    font-size: 14px;
    margin-bottom: 12px;
  }
  #afro-insription-steps-page .afro-inscription-event-card .content .contact {
    font-size: 16px;
    margin-bottom: 10px;
  }
  #afro-insription-steps-page .afro-inscription-event-card .content .contacts-wrapper {
    gap: 12px;
    flex-direction: column;
  }
  #afro-insription-steps-page .afro-inscription-event-card .content .contacts-wrapper .contact-info {
    width: 100%;
    font-size: 13px;
    margin: 0;
  }
  #afro-insription-steps-page .afro-inscription-event-card .content .contacts-wrapper .contact-info p {
    margin-bottom: 0;
  }
  #afro-insription-steps-page .hotel-card {
    flex-direction: column;
    padding: 16px;
    gap: 20px;
  }
  #afro-insription-steps-page .hotel-card .img-container {
    width: 100%;
    height: auto;
    max-height: 150px;
  }
  #afro-insription-steps-page .hotel-card .img-container img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #afro-insription-steps-page .hotel-card .content {
    width: 100%;
  }
  #afro-insription-steps-page .hotel-card .content .title-and-star {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
  }
  #afro-insription-steps-page .hotel-card .content .title-and-star .title {
    font-size: 28px;
  }
  #afro-insription-steps-page .hotel-card .content .title-and-star .star {
    font-size: 24px;
  }
  #afro-insription-steps-page .hotel-card .content .location {
    font-size: 18px;
    margin-bottom: 20px;
  }
  #afro-insription-steps-page .hotel-card .content .pricing-and-action {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  #afro-insription-steps-page .hotel-card .content .pricing-and-action p {
    font-size: 32px;
  }
  #afro-insription-steps-page .hotel-card .content .pricing-and-action .custom-checkbox .checkmark {
    width: 40px;
    height: 40px;
  }
  #afro-insription-steps-page .hotel-card .content .pricing-and-action .custom-checkbox .checkmark::after {
    left: 15px;
    top: 10px;
    width: 12px;
    height: 24px;
    border-width: 0 4px 4px 0;
  }
  #afro-insription-steps-page .stepper {
    margin-bottom: 30px;
  }
  #afro-insription-steps-page .stepper__steps {
    margin-top: 0.5rem;
  }
  #afro-insription-steps-page .step {
    font-size: 12px;
    white-space: normal;
    word-break: break-word;
  }
  #afro-insription-steps-page .step:first-child {
    text-align: left;
  }
  #afro-insription-steps-page .step:last-child {
    text-align: right;
  }
}
@media (max-width: 480px) {
  #afro-insription-steps-page {
    padding: 40px 12px;
  }
  #afro-insription-steps-page .title {
    font-size: 24px;
    margin-bottom: 12px;
  }
  #afro-insription-steps-page .paragraph {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 24px;
  }
  #afro-insription-steps-page .form-step-inside {
    gap: 16px;
  }
  #afro-insription-steps-page .form-step-inside .field-container label {
    font-size: 14px;
    margin-bottom: 6px;
  }
  #afro-insription-steps-page .form-step-inside .field-container input, #afro-insription-steps-page .form-step-inside .field-container select, #afro-insription-steps-page .form-step-inside .field-container textarea {
    padding: 12px;
    font-size: 14px;
  }
  #afro-insription-steps-page .form-step-inside .buttons-container {
    flex-direction: column;
  }
  #afro-insription-steps-page .form-step-inside .buttons-container button {
    padding: 16px 40px;
    font-size: 16px;
  }
  #afro-insription-steps-page .afro-inscription-event-card {
    gap: 12px;
  }
  #afro-insription-steps-page .afro-inscription-event-card img {
    max-height: 120px;
  }
  #afro-insription-steps-page .afro-inscription-event-card .content span .title {
    font-size: 16px;
    margin-bottom: 6px;
  }
  #afro-insription-steps-page .afro-inscription-event-card .content span .date {
    font-size: 12px;
  }
  #afro-insription-steps-page .afro-inscription-event-card .content .location {
    font-size: 12px;
    margin-bottom: 8px;
  }
  #afro-insription-steps-page .afro-inscription-event-card .content .contact {
    font-size: 14px;
    margin-bottom: 8px;
  }
  #afro-insription-steps-page .afro-inscription-event-card .content .contacts-wrapper .contact-info {
    font-size: 12px;
    gap: 4px;
  }
  #afro-insription-steps-page .hotel-card {
    padding: 12px;
    gap: 16px;
  }
  #afro-insription-steps-page .hotel-card .img-container {
    max-height: 120px;
  }
  #afro-insription-steps-page .hotel-card .content .title-and-star {
    margin-bottom: 6px;
  }
  #afro-insription-steps-page .hotel-card .content .title-and-star .title {
    font-size: 24px;
  }
  #afro-insription-steps-page .hotel-card .content .title-and-star .star {
    font-size: 20px;
  }
  #afro-insription-steps-page .hotel-card .content .location {
    font-size: 16px;
    margin-bottom: 16px;
  }
  #afro-insription-steps-page .hotel-card .content .pricing-and-action {
    gap: 10px;
  }
  #afro-insription-steps-page .hotel-card .content .pricing-and-action p {
    font-size: 28px;
  }
  #afro-insription-steps-page .hotel-card .content .pricing-and-action .custom-checkbox .checkmark {
    width: 40px;
    height: 40px;
  }
  #afro-insription-steps-page .hotel-card .content .pricing-and-action .custom-checkbox .checkmark::after {
    left: 12px;
    top: 8px;
    width: 10px;
    height: 20px;
    border-width: 0 3px 3px 0;
  }
  #afro-insription-steps-page .stepper {
    margin-bottom: 20px;
  }
  #afro-insription-steps-page .step {
    font-size: 10px;
  }
}