@charset "UTF-8";
/*
 * Theme Name: INSIM
 * Template: twentytwentyfour
 * Author: Massinissa Derriche
 * Description: Un theme pour l'école de formation INSIM Boumerdes.
 * Version: 0.1.0
 */
/* Global styles */
:root {
  --accent-primary-rgb: 18, 75, 126;
  --accent-secondary-rgb: 233, 79, 31;
  --accent-tertiary-rgb: 45, 168, 224;
  --accent-primary: rgb(var(--accent-primary-rgb));
  --accent-secondary: rgb(var(--accent-secondary-rgb));
  --accent-tertiary: rgb(var(--accent-tertiary-rgb));
  --accent-primary-clear: rgba(var(--accent-primary-rgb), .3);
  --accent-secondary-clear: rgba(var(--accent-secondary-rgb), .3);
  --accent-tertiary-clear: rgba(var(--accent-tertiary-rgb), .3);
  --header-height: 100px;
  --search-panel-height: 200px;
  --content-width: 1440px;
  --content-padding: 50px;
  --gallery-gap: 0.6rem;
  --gallery-multiplier: 3;
}

::selection {
  color: white;
  background-color: var(--accent-secondary);
}

/* Elements */
h1, h2, h3, h4, h5, h6 {
  font-family: sans-serif;
}

button {
  cursor: pointer;
}

footer {
  margin: 0;
}

/* Special */
.block-content {
  max-width: var(--content-width);
  padding-inline: var(--content-padding);
  margin: 0 auto !important;
}

.hidden {
  display: none !important;
}

.link-simple {
  text-decoration: none;
}

/* Plugins */
.safe-svg-inside {
  display: block !important;
}

.header .header__panel .header__wrapper {
  /* height: var(--header-height); */
  box-sizing: border-box;
}
.header .header__panel .header__wrapper .header__content {
  position: relative;
}
.header .header__panel .header__wrapper .header__content .header__left .logo-title {
  display: none;
  border-left: 3px solid var(--accent-secondary);
}
.header .header__panel .header__wrapper .header__content .header__middle {
  display: none;
}
.header .header__panel .header__wrapper .header__content .header__right .header__right-button {
  display: block;
  border: none;
  cursor: pointer;
  background-color: unset;
}
.header .header__panel .header__wrapper .header__content .header__right .header__right-button svg {
  fill: var(--accent-primary);
}
.header .header__panel .header__wrapper .header__content .header__right .header__right-menu {
  display: block;
}
.header .header__panel .header__wrapper .header__mobile-menu-wrapper {
  position: relative;
}
.header .header__panel .header__wrapper .header__mobile-menu-wrapper .header__mobile-menu-overlay {
  position: absolute;
  inset-inline: 0;
  top: 0;
  background-color: black;
  height: 100vh;
  display: none;
  opacity: 0;
  transition: opacity 1s, display 2s allow-discrete;
}
.header .header__panel .header__wrapper .header__mobile-menu-wrapper .header__mobile-menu {
  position: absolute;
  inset-inline: 0;
  top: 0;
  overflow: clip;
  height: 0;
  transition: height 0.6s;
}
.header .header__panel .header__wrapper .header__mobile-menu-wrapper .header__mobile-menu .header__mobile-menu-content {
  position: relative;
  height: 22rem;
}
.header .header__panel .header__wrapper .header__mobile-menu-wrapper .header__mobile-menu .header__mobile-menu-content .header__mobile-menu-content-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
}
.header .header__panel .header__wrapper .header__mobile-menu-wrapper.open .header__mobile-menu-overlay {
  opacity: 0.6;
  display: block;
}
@starting-style {
  .header .header__panel .header__wrapper .header__mobile-menu-wrapper.open .header__mobile-menu-overlay {
    opacity: 0;
  }
}
.header .header__panel .header__wrapper .header__mobile-menu-wrapper.open .header__mobile-menu {
  height: 22rem;
}

@media (min-width: 57em) {
  .header .header__panel .header__wrapper .header__content .header__middle {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
  }
  .header .header__panel .header__wrapper .header__content .header__right .header__right-button {
    background-color: var(--accent-secondary);
    transition: background-color 0.2s;
  }
  .header .header__panel .header__wrapper .header__content .header__right .header__right-button:hover {
    background-color: var(--accent-primary) !important;
  }
  .header .header__panel .header__wrapper .header__content .header__right .header__right-button svg {
    fill: white;
  }
  .header .header__panel .header__wrapper .header__content .header__right .header__right-search {
    display: block;
  }
  .header .header__panel .header__wrapper .header__content .header__right .header__right-menu {
    display: none;
  }
  .header .header__panel .header__mobile-menu-wrapper {
    display: none;
  }
}
@media (min-width: 70em) {
  .header .header__panel .header__wrapper .header__content .header__left .logo-title {
    display: block;
  }
}
footer .footer__map-wrapper {
  overflow: hidden;
}
footer .footer__map-wrapper iframe {
  display: block;
  height: 300px;
  opacity: 0;
  transition: opacity 1s;
}
footer .footer__map-wrapper iframe.loaded {
  opacity: 1;
}
footer .footer__top .footer__top-content .footer__left .footer__description {
  text-align: justify;
}
footer .footer__top .footer__top-content .footer__right .footer__contact .footer__contact-details svg {
  display: block;
  fill: white;
}
footer .footer__top .footer__top-content .footer__right .footer__socials .footer__right-socials a {
  display: flex;
  flex-flow: row-reverse nowrap;
}
footer .footer__bottom .footer__bottom-content .footer__bottom-links a {
  background-color: unset;
  font-weight: normal;
  padding: 0;
}
footer .footer__bottom .footer__bottom-content .footer__bottom-links a:hover {
  text-decoration: underline;
}
@media (min-width: 50rem) {
  footer .footer__top .footer__top-content {
    flex-flow: row nowrap;
  }
  footer .footer__bottom .footer__bottom-content {
    flex-flow: row nowrap;
  }
  footer .footer__bottom .footer__bottom-content p {
    /* text-align: start; */
  }
}

.header-search {
  position: fixed;
  inset: 0;
  z-index: 1;
  display: none;
  transition: display 1s allow-discrete;
}
.header-search .header-search__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: black;
  opacity: 0;
  transition: opacity 1s;
}
.header-search .header-search__panel {
  height: 0;
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1;
  transition: height 0.6s;
}
.header-search .header-search__panel .header-search__content {
  position: relative;
  width: 100%;
  height: var(--search-panel-height);
  background-color: var(--accent-primary);
}
.header-search .header-search__panel .header-search__input-wrapper {
  position: absolute;
  width: calc(100% - var(--wp--preset--spacing--40) * 2);
  max-width: var(--content-width);
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  gap: 1rem;
}
.header-search .header-search__panel .header-search__input-wrapper .header-search__input {
  max-width: 100%;
}
.header-search .header-search__panel .header-search__input-wrapper .header-search__input > div {
  gap: 1rem;
}
.header-search .header-search__panel .header-search__input-wrapper .header-search__input input {
  color: white;
  background-color: unset;
  border: none;
  border-radius: 0;
  border-bottom: solid 2px var(--accent-tertiary);
  outline: none;
}
.header-search .header-search__panel .header-search__input-wrapper .header-search__input input::placeholder {
  color: var(--accent-tertiary);
}
.header-search .header-search__panel .header-search__input-wrapper .header-search__input input::-webkit-search-cancel-button {
  /* Hide the clear icon */
  display: none;
}
.header-search .header-search__panel .header-search__input-wrapper .header-search__input button {
  background-color: unset;
  border-radius: 0;
  border: solid 2px var(--accent-tertiary);
  margin: 0;
}
.header-search .header-search__panel .header-search__input-wrapper .header-search__input svg {
  fill: var(--accent-tertiary);
}
.header-search .header-search__panel .header-search__input-wrapper .header-search__input-close {
  background-color: unset;
  border: solid 2px var(--accent-tertiary);
  padding: 0 1rem;
  display: none;
}
@media (min-width: 40rem) {
  .header-search .header-search__panel .header-search__input-wrapper .header-search__input-close {
    display: block;
  }
}
.header-search .header-search__panel .header-search__input-wrapper .header-search__input-close svg {
  fill: var(--accent-tertiary);
}
.header-search.open {
  display: block;
}
.header-search.open .header-search__overlay {
  opacity: 0.5;
}
.header-search.open .header-search__panel {
  height: var(--search-panel-height);
}
@starting-style {
  .header-search.open .header-search__overlay {
    opacity: 0;
  }
  .header-search.open .header-search__panel {
    height: 0;
  }
}

.page-front {
  /* Hero */
  /* Learn More */
  /* Why Us */
  /* Stats */
  /* News */
}
.page-front .hero {
  height: 40rem;
  overflow: hidden;
  position: relative;
}
.page-front .hero .hero__overlay {
  position: absolute;
  inset: 0;
  justify-content: space-evenly;
}
.page-front .hero .hero__overlay .hero__brand {
  /*position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);*/
}
.page-front .hero .hero__overlay .hero__content {
  max-width: 40rem;
}
.page-front .learn-more {
  flex-flow: column nowrap;
}
.page-front .learn-more .learn-more__entry {
  text-decoration: none;
  flex-grow: 1;
  flex-basis: 0;
  display: flex;
  flex-flow: row nowrap;
}
.page-front .learn-more .learn-more__entry > div {
  flex-grow: 1;
}
.page-front .learn-more .learn-more__entry > div .learn-more__button {
  white-space: nowrap;
}
@media (min-width: 62em) {
  .page-front .learn-more {
    flex-flow: row nowrap;
  }
}
.page-front .why-us {
  position: relative;
  transition: background-color 1s;
}
.page-front .why-us .why-us__content .why-us__left {
  display: none;
}
.page-front .why-us .why-us__content .why-us__left .why-us__headings {
  --d: .6s;
  position: sticky;
  top: 30%;
  width: 300px;
}
.page-front .why-us .why-us__content .why-us__left .why-us__headings .why-us__heading {
  opacity: 0;
  translate: -10%;
  padding: 1rem 2rem;
  width: 100%;
  position: relative;
}
.page-front .why-us .why-us__content .why-us__left .why-us__headings .why-us__heading-a {
  transition: opacity var(--d) 0.1s, translate var(--d) 0.1s;
}
.page-front .why-us .why-us__content .why-us__left .why-us__headings .why-us__heading-b {
  transition: opacity var(--d) 0.2s, translate var(--d) 0.2s;
}
.page-front .why-us .why-us__content .why-us__left .why-us__headings .why-us__heading-c {
  transition: opacity var(--d) 0.3s, translate var(--d) 0.3s;
}
.page-front .why-us .why-us__content .why-us__left .why-us__headings .why-us__heading h3 {
  color: white;
  transition: color var(--d);
}
.page-front .why-us .why-us__content .why-us__left .why-us__headings .why-us__heading:before {
  content: "";
  position: absolute;
  inset: 0;
  right: 100%;
  border-bottom: solid 2px var(--accent-secondary);
  transition: right 0.4s;
}
.page-front .why-us .why-us__content .why-us__left .why-us__headings.section-active-a .why-us__heading-a h3, .page-front .why-us .why-us__content .why-us__left .why-us__headings.section-active-b .why-us__heading-b h3, .page-front .why-us .why-us__content .why-us__left .why-us__headings.section-active-c .why-us__heading-c h3 {
  color: var(--accent-secondary);
}
.page-front .why-us .why-us__content .why-us__left .why-us__headings.section-active-a .why-us__heading-a:before, .page-front .why-us .why-us__content .why-us__left .why-us__headings.section-active-b .why-us__heading-b:before, .page-front .why-us .why-us__content .why-us__left .why-us__headings.section-active-c .why-us__heading-c:before {
  right: 0;
}
.page-front .why-us .why-us__content .why-us__left .why-us__headings h3 {
  display: inline-block;
  position: relative;
}
.page-front .why-us .why-us__content .why-us__right section {
  position: relative;
  overflow: clip;
}
.page-front .why-us .why-us__content .why-us__right section .why-us__description {
  width: 80%;
  border: solid 2px var(--accent-primary);
  color: white;
  z-index: 1;
  opacity: 0;
  translate: -50% 30%;
  transition: opacity 1s 0.2s, translate 1s 0.2s;
  position: absolute;
  left: 50%;
  bottom: 0;
}
.page-front .why-us .why-us__content .why-us__right section .why-us__image {
  opacity: 0;
  translate: 0 50%;
  transition: opacity 0.8s 0.6s, translate 0.8s 0.6s;
}
.page-front .why-us .why-us__content .why-us__right section .why-us__image img {
  width: 100%;
}
.page-front .why-us.is-observable {
  background-color: var(--accent-primary);
}
.page-front .why-us.is-observable .why-us__content .why-us__left .why-us__headings .why-us__heading {
  opacity: 1;
  translate: 0%;
}
.page-front .why-us.is-observable .why-us__content .why-us__right section .why-us__description {
  opacity: 1;
  translate: -50% 0%;
}
.page-front .why-us.is-observable .why-us__content .why-us__right section .why-us__image {
  opacity: 1;
  translate: 0 0%;
}
@media (min-width: 60em) {
  .page-front .why-us .why-us__content {
    max-width: var(--content-width);
    padding-inline: var(--content-padding);
    margin: 0 auto !important;
  }
  .page-front .why-us .why-us__content .why-us__left {
    display: block;
  }
  .page-front .why-us .why-us__content .why-us__right section .why-us__description {
    translate: 0 30%;
    width: 500px;
    left: 0;
  }
  .page-front .why-us .why-us__content .why-us__right section .why-us__image img {
    width: 800px;
  }
  .page-front .why-us.is-observable .why-us__content .why-us__right section .why-us__description {
    translate: 0 0%;
  }
}
.page-front .stats {
  white-space: nowrap;
  z-index: 0;
}
@media (min-width: 50rem) {
  .page-front .stats .stats__values {
    flex-flow: row nowrap;
    justify-content: center;
  }
}
.page-front .stats .stats__values .stats__value {
  position: relative;
}
.page-front .stats .stats__values .stats__value-placeholder {
  visibility: hidden;
}
.page-front .stats .stats__values .stats__value-label {
  position: absolute;
  inset: 0;
}
.page-front .news h2 {
  opacity: 0;
  transform: translateY(20%);
  transition: opacity 1s 0.2s, transform 1s 0.2s;
}
.page-front .news .news__articles ul {
  display: flex;
  flex-flow: row nowrap;
  gap: 2rem;
}
.page-front .news .news__articles ul li {
  flex-grow: 1;
  flex-basis: 100px;
  margin: 0;
}
.page-front .news .news__articles ul li.post:nth-child(1) {
  --stagger: 0.4s;
}
.page-front .news .news__articles ul li.post:nth-child(2) {
  --stagger: 0.6s;
  display: none;
}
@media (min-width: 40rem) {
  .page-front .news .news__articles ul li.post:nth-child(2) {
    display: block;
  }
}
.page-front .news .news__articles ul li.post:nth-child(3) {
  --stagger: 0.8s;
  display: none;
}
@media (min-width: 55rem) {
  .page-front .news .news__articles ul li.post:nth-child(3) {
    display: block;
  }
}
.page-front .news .news__articles ul li .news__card {
  text-decoration: none;
  opacity: 0;
  transform: translateY(20%);
  transition: opacity 1s var(--stagger), transform 1s var(--stagger);
}
.page-front .news .news__articles ul li .news__card .news__card-content {
  transition: transform 0.4s;
}
.page-front .news .news__articles ul li .news__card .news__card-content .news__card-illustration {
  width: 100%;
}
.page-front .news .news__articles ul li .news__card .news__card-content .news__card-illustration .news__card-illustration-fallback {
  display: none;
  padding-bottom: 100%;
  position: relative;
}
.page-front .news .news__articles ul li .news__card .news__card-content .news__card-illustration .news__card-illustration-fallback:first-child {
  display: block;
}
.page-front .news .news__articles ul li .news__card .news__card-content .news__card-illustration .news__card-illustration-excerpt {
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
.page-front .news .news__articles ul li .news__card .news__card-content .news__card-illustration .news__card-illustration-quotes {
  position: absolute;
  fill: black;
}
.page-front .news .news__articles ul li .news__card .news__card-content .news__card-illustration .news__card-illustration-quotes.opening {
  top: 1rem;
  left: 1rem;
}
.page-front .news .news__articles ul li .news__card .news__card-content .news__card-illustration .news__card-illustration-quotes.closing {
  transform: rotate(180deg);
  bottom: 1rem;
  right: 1rem;
}
.page-front .news .news__articles ul li .news__card .news__card-content .news__card-bottom svg {
  fill: black;
}
.page-front .news .news__articles ul li .news__card:hover .news__card-content {
  background-color: var(--accent-secondary);
  transform: translateY(-5%);
  color: white;
}
.page-front .news .news__articles ul li .news__card:hover .news__card-content time,
.page-front .news .news__articles ul li .news__card:hover .news__card-content h3 {
  color: white;
}
.page-front .news .news__articles ul li .news__card:hover .news__card-content .news__card-bottom {
  border-top-color: white !important;
}
.page-front .news .news__articles ul li .news__card:hover .news__card-content .news__card-bottom svg {
  fill: white;
}
.page-front .news .news__articles ul li .news__card:hover .news__card-content .news__card-illustration-quotes {
  fill: white;
}
.page-front .news .is-observable h2 {
  opacity: 1 !important;
  transform: translateY(0%) !important;
}
.page-front .news .is-observable .news__card {
  opacity: 1 !important;
  transform: translateY(0%) !important;
}

.page-news .all-news__posts {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}
.page-news .all-news__posts li {
  margin: 0;
}
.page-news .news-post__content {
  max-width: 900px;
  padding-inline: var(--content-padding);
  margin: 0 auto !important;
}

.news-post-page .news-post__feature-image img {
  height: 20rem;
  object-fit: contain;
}
.news-post-page .news-post__content {
  width: 60rem;
  margin-inline: auto;
}

.page-course-type .main-content .course-list {
  margin-top: 2rem;
}
.page-course-type .main-content .course-list ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-course-type .main-content .course-list ul li {
  margin: 0;
}
.page-course-type .main-content .course-list ul li .course-card {
  text-decoration: none;
  height: 100%;
  box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.1333333333);
}
.page-course-type .main-content .course-list ul li .course-card .course-card-content {
  height: 100%;
}
.page-course-type .main-content .course-list ul li .course-card .course-card-content svg {
  fill: black;
}

.page-course-scaffold .side-list-container {
  display: none;
}
.page-course-scaffold .side-list-container .side-list {
  width: 100%;
}
.page-course-scaffold .side-list-container .side-list h4 {
  color: white;
  font-weight: bold;
  margin-block: 3rem 1rem;
  padding-inline-start: 2rem;
}
.page-course-scaffold .side-list-container .side-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-course-scaffold .side-list-container .side-list ul li a {
  display: block;
  color: white;
  text-decoration: none;
  padding-block: 0.3rem;
  padding-inline: 3rem 1rem;
}
.page-course-scaffold .side-list-container .side-list ul li a:hover {
  background-color: var(--accent-tertiary);
}
.page-course-scaffold .side-list-container .side-list ul li.current a {
  background-color: white;
  color: var(--accent-primary);
}
.page-course-scaffold .main-content .image-wrapper figure img {
  object-fit: cover;
}
.page-course-scaffold .main-content h3 {
  margin-top: 3rem;
}

@media (min-width: 65rem) {
  .page-course-scaffold .side-list-container {
    display: block;
  }
  .page-course-scaffold .course-dropdown-select {
    display: none;
  }
}
@media (min-width: 75rem) {
  .page-course-scaffold .main-content .image-wrapper {
    width: 35rem;
    float: inline-end;
  }
  .page-course-scaffold .main-content .image-wrapper figure img {
    aspect-ratio: 1;
  }
}
.page-category-archive h1 {
  margin-bottom: 3rem;
}
.page-category-archive .courses ul {
  gap: 3rem;
}
.page-category-archive .courses ul li .course figure {
  flex-shrink: 0;
}
.page-category-archive .courses ul li .course .course__read-more {
  margin-top: 12px;
  padding: 12px 16px;
}
@media (min-width: 50rem) {
  .page-category-archive .courses ul li .course {
    flex-flow: row-reverse nowrap;
  }
  .page-category-archive .courses ul li:nth-child(even) .course {
    flex-flow: row nowrap;
  }
}

.page-contact .wpcf7 label {
  display: block;
  font-weight: bold;
}
.page-contact .wpcf7 label .wpcf7-form-control-wrap {
  display: block;
}
.page-contact .wpcf7 label .wpcf7-form-control-wrap textarea,
.page-contact .wpcf7 label .wpcf7-form-control-wrap input[type=text],
.page-contact .wpcf7 label .wpcf7-form-control-wrap input[type=email] {
  width: 100%;
  padding: 0.7rem;
  font-size: 1rem;
}
.page-contact .wpcf7 input[type=submit] {
  cursor: pointer;
  background-color: var(--accent-secondary);
  color: white;
  padding: 0.7rem;
  border: none;
  font-size: var(--wp--preset--font-size-medium);
}

.page-enterprise .partners {
  height: 130px;
}
.page-enterprise .partners figure img {
  object-fit: contain !important;
  height: 100%;
  width: fit-content;
}
.page-enterprise .questions .question figure {
  flex-basis: 50%;
}
.page-enterprise .questions .question figure img {
  height: 15rem;
  object-fit: cover;
}
.page-enterprise .questions .question div {
  flex-basis: 50%;
}
.page-enterprise .references .card .content .column-brands .brands-wrapper {
  height: 35rem;
}
.page-enterprise .references .card .content .column-brands .brands-wrapper .brands-stack {
  height: 100%;
  flex-wrap: nowrap;
  overflow: hidden;
}
.page-enterprise .references .card .content .column-brands .brands-wrapper .brands-stack.first {
  padding-bottom: 1rem;
}
.page-enterprise .references .card .content .column-brands .brands-wrapper .brands-stack.second {
  padding-top: 1rem;
}
.page-enterprise .references .card .content .column-brands .brands-wrapper .brands-stack figure {
  background-color: rgba(18, 18, 28, 0.0588235294);
  padding: 1rem;
  border-radius: 16px;
  height: 7rem;
}
.page-enterprise .references .card .content .column-brands .brands-wrapper .brands-stack figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page-enterprise .clients .grid {
  background-color: white;
  padding: 3rem;
  border-radius: 1rem;
  gap: 5rem;
}
.page-enterprise .clients .grid figure img {
  width: 10rem;
  height: 10rem;
  object-fit: contain;
}

.page-about .map-wrapper {
  --marker-size: 30px;
}
@media (min-width: 40rem) {
  .page-about .map-wrapper {
    --marker-size: 55px;
  }
}
@media (min-width: 70rem) {
  .page-about .map-wrapper {
    --marker-size: 90px;
  }
}
.page-about .map-wrapper .map-content {
  position: relative;
}
.page-about .map-wrapper .map-content .pins-container {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
}
.page-about .map-wrapper .map-content .pins-container figure {
  display: block;
  width: fit-content;
  position: absolute;
  translate: -50% -100%;
}
.page-about .map-wrapper .map-content .pins-container figure img {
  width: 0px;
  transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.page-about .map-wrapper .map-content .pins-container figure.boumerdes {
  left: 52.4%;
  top: 32.2%;
}
.page-about .map-wrapper .map-content .pins-container figure.boumerdes img {
  transition-delay: 1.5s;
}
.page-about .map-wrapper .map-content .pins-container figure.alger {
  left: 48.1%;
  top: 33%;
}
.page-about .map-wrapper .map-content .pins-container figure.alger img {
  transition-delay: 1.3s;
}
.page-about .map-wrapper .map-content .pins-container figure.oran {
  left: 10.8%;
  top: 67.5%;
}
.page-about .map-wrapper .map-content .pins-container figure.oran img {
  transition-delay: 0.2s;
}
.page-about .map-wrapper .map-content .pins-container figure.blida {
  left: 43.2%;
  top: 44.2%;
}
.page-about .map-wrapper .map-content .pins-container figure.blida img {
  transition-delay: 1.1s;
}
.page-about .map-wrapper .map-content .pins-container figure.bouira {
  left: 57.2%;
  top: 44%;
}
.page-about .map-wrapper .map-content .pins-container figure.bouira img {
  transition-delay: 0.9s;
}
.page-about .map-wrapper .map-content .pins-container figure.tiziouzou {
  left: 59%;
  top: 32.5%;
}
.page-about .map-wrapper .map-content .pins-container figure.tiziouzou img {
  transition-delay: 1s;
}
.page-about .map-wrapper .map-content .pins-container figure.bejaia {
  left: 67.5%;
  top: 32.2%;
}
.page-about .map-wrapper .map-content .pins-container figure.bejaia img {
  transition-delay: 0.8s;
}
.page-about .map-wrapper .map-content .pins-container figure.annaba {
  left: 92%;
  top: 28%;
}
.page-about .map-wrapper .map-content .pins-container figure.annaba img {
  transition-delay: 0.3s;
}
.page-about .map-wrapper .map-content .pins-container figure.constantine {
  left: 80.1%;
  top: 40.2%;
}
.page-about .map-wrapper .map-content .pins-container figure.constantine img {
  transition-delay: 0.5s;
}
.page-about .map-wrapper.is-observable .map-content .pins-container figure.boumerdes img {
  width: calc(var(--marker-size) * 1.5);
}
.page-about .map-wrapper.is-observable .map-content .pins-container figure.alger img {
  width: calc(var(--marker-size) * 0.9);
}
.page-about .map-wrapper.is-observable .map-content .pins-container figure.oran img {
  width: calc(var(--marker-size) * 0.9);
}
.page-about .map-wrapper.is-observable .map-content .pins-container figure.blida img {
  width: calc(var(--marker-size) * 0.5);
}
.page-about .map-wrapper.is-observable .map-content .pins-container figure.bouira img {
  width: calc(var(--marker-size) * 0.4);
}
.page-about .map-wrapper.is-observable .map-content .pins-container figure.tiziouzou img {
  width: calc(var(--marker-size) * 0.8);
}
.page-about .map-wrapper.is-observable .map-content .pins-container figure.bejaia img {
  width: var(--marker-size);
}
.page-about .map-wrapper.is-observable .map-content .pins-container figure.annaba img {
  width: var(--marker-size);
}
.page-about .map-wrapper.is-observable .map-content .pins-container figure.constantine img {
  width: var(--marker-size);
}

/* Page style (move to own file) */
.content {
  position: relative;
}

.training__cover-link {
  text-decoration: none;
}

.training__cover > span {
  transition: opacity 0.5s;
}

.training__cover:hover > span {
  opacity: 0.6 !important;
}

.training__cover > img {
  transition: filter 0.5s, transform 0.5s;
}

.training__cover:hover > img {
  filter: blur(6px);
  transform: scale(1.3);
}

.training__type-top {
  position: relative;
  opacity: 0;
  transition: opacity 0.5s;
}

.training__cover:hover .training__type-top {
  opacity: 1;
  transition: opacity 1s;
}

.training__type-top-content {
  position: absolute;
  left: 3rem;
  right: 3rem;
  top: 50%;
  transform: translateY(200%);
  transition: transform 0.5s;
}

.training__cover:hover .training__type-top-content {
  transform: translateY(-50%);
}

.training h2 {
  opacity: 0;
  transform: translateY(20%);
  transition: opacity 1s 0.2s, transform 1s 0.2s;
}

.training .is-observable h2 {
  opacity: 1;
  transform: translateY(0%);
}

.training__staggered {
  opacity: 0;
  transform: translateY(20%);
}

.training__staggered:first-child {
  transition: opacity 1s 0.4s, transform 1s 0.4s;
}

.training__staggered:nth-child(2) {
  transition: opacity 1s 0.6s, transform 1s 0.6s;
}

.training__staggered:nth-child(3) {
  transition: opacity 1s 0.8s, transform 1s 0.8s;
}

.is-observable .training__staggered {
  opacity: 1;
  transform: translateY(0%);
}

/* Gallery */
.gallery__row {
  gap: var(--gallery-gap);
  height: 300px;
  width: 100%;
  overflow-x: hidden;
}
.gallery__row figure {
  overflow: hidden;
}
.gallery__row figure img {
  transition: scale 0.4s;
}
.gallery__row figure:hover img {
  scale: 1.1;
}

.gallery__row figure {
  height: 100%;
  object-fit: cover;
  flex-grow: 1;
  flex-shrink: 0;
}

.gallery__row img {
  height: 100%;
  width: auto;
  object-fit: cover;
}

/* Back to Top */
.back-to-top {
  background-color: var(--accent-secondary);
  margin: 0;
  padding: 1rem;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  position: fixed;
  right: 1rem;
  bottom: 2rem;
  scale: 1;
  transition: scale 0.2s;
  z-index: 99999;
}

.top.is-observable + .content > .back-to-top {
  scale: 0;
}

/* Breadcrumb */
/* L'Ecole */
.about__school-picture {
  flex-shrink: 0;
}

.about__ceo h2 {
  opacity: 0;
  translate: 0 10%;
  transition: opacity 1s, translate 1s;
}

.about__ceo.is-observable h2 {
  opacity: 1;
  translate: 0 0%;
}

.about__ceo-left {
  opacity: 0;
  translate: 0 10%;
  transition: opacity 1s 0.3s, translate 1s 0.3s;
}

.is-observable .about__ceo-left {
  opacity: 1;
  translate: 0 0%;
}

.about__ceo-right {
  opacity: 0;
  translate: 10% 0;
  transition: opacity 1s 0.6s, translate 1s 0.6s;
}

.is-observable .about__ceo-right {
  opacity: 1;
  translate: 0% 0;
}

/* Search results */

/*# sourceMappingURL=style.css.map */
