/* ======= IMPORTS ======= */
/* ======= COLORS ======= */
/* ======= HEADER ======= */
@import url("https://fonts.googleapis.com/css2?family=Aref+Ruqaa&family=Gentium+Plus:ital@0;1&display=swap");
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0.5rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.header .logo {
  height: 5rem;
}

.header .logo:hover {
  height: 5rem;
}

.header .logo i {
  padding: 0 0.5rem;
}

.header .navbar ul {
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.header .navbar ul li {
  margin: 0 1.5rem;
}

.header .navbar ul li a {
  font-size: 2rem;
  color: #233e6f;
  font-weight: bold;
  text-decoration: none;
}

.header .navbar ul li a:hover {
  filter: brightness(125%);
  font-size: 2.25rem;
}

.header .fa-bars {
  color: #41200d;
  cursor: pointer;
  font-size: 3rem;
  display: none;
}

/* ======= HOME SECTION ======= */
.home {
  min-height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  text-align: center;
  padding: 0 1rem;
  position: relative;
  overflow: hidden !important;
}

.home .banner {
  color: #41200d;
  font-size: 5rem;
  text-shadow: 0 0.3rem 0.5rem rgba(65, 32, 13, 0.75);
}

.home .slogan {
  color: #41200d;
  font-size: 2.5rem;
  font-weight: 400;
}

.home .wave {
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  height: 11rem;
  width: 100%;
  background: url("../img/wave.png");
  background-size: 100rem 11rem;
  background-repeat: repeat-x;
  animation: waves 10s linear infinite;
}

.home .wave2 {
  animation-direction: reverse;
  opacity: 0.2;
}

.home .wave3 {
  animation-duration: 4s;
  opacity: 0.5;
}

.home .fa-ankh {
  position: absolute;
  font-size: 30rem;
  opacity: 0.15;
  color: #41200d;
}

.home .ankh1 {
  top: 10%;
  left: 1rem;
}

.home .ankh2 {
  bottom: 23%;
  right: 1rem;
}

/* ======= ABOUT SECTION ======= */
.about {
  min-height: 60vh;
  width: 100vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.heading {
  margin: 2rem;
  padding-top: 6rem;
  display: inline-block;
  font-size: 5rem;
  color: #41200d;
  position: relative;
  letter-spacing: 0.2rem;
}

.heading::before,
.heading::after {
  content: "";
  position: absolute;
  height: 2.5rem;
  width: 2.5rem;
  border-top: 0.4rem solid #41200d;
  border-left: 0.4rem solid #41200d;
}

.heading::before {
  top: 5.8rem;
  left: -2rem;
}

.heading::after {
  bottom: -0.5rem;
  right: -2rem;
  transform: rotate(180deg);
}

.about .row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 4rem;
}

.about .row .content {
  text-align: left;
}

.about .row .content h3 {
  font-size: 3rem;
  color: #41200d;
}

.about .row .content p {
  font-size: 2rem;
  color: #41200d;
  padding: 1rem 0;
}

.about .row .image {
  width: 20vw;
}

.about .row .image img {
  width: 12vw;
}

.btn {
  outline: none;
  border: none;
  border-radius: 5rem;
  background: #41200d;
  color: #fff;
  cursor: pointer;
  height: 3.5rem;
  width: 17rem;
  font-size: 1.7rem;
  box-shadow: 0 0.2rem 0.5rem rgba(65, 32, 13, 0.75);
}

.btn:hover {
  letter-spacing: 0.1rem;
  opacity: 0.8;
}

.btn i {
  margin-left: 0.7rem;
}

/* TOOLTIP */
.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: -60px;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

/* ======= TJTFORMATION SECTION ======= */
.tjt {
  min-height: 100vh;
  width: 100vw;
  text-align: center;
  position: relative;
}

.tjt .row {
  margin-top: 2rem 0;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tjt .row .image {
  width: 30vw;
}

.tjt .row .image img {
  width: 10vw;
}

.tjt .row .content {
  text-align: center;
  padding: 0 3rem;
}

.tjt .row .content h3 {
  margin-top: 5rem;
  font-size: 3rem;
  color: #41200d;
}

.tjt .row .content p {
  font-size: 2rem;
  color: #41200d;
  padding: 1rem 0;
}

.tjt::before,
.tjt::after {
  content: "";
  position: absolute;
  z-index: -1;
  opacity: 0.2;
  border-radius: 50%;
}

.tjt::before {
  height: 50rem;
  width: 50rem;
  background: #9b805a;
  bottom: -10rem;
  left: -10rem;
}

.tjt::after {
  height: 60rem;
  width: 60rem;
  background: #9b805a;
  top: -10rem;
  right: -10rem;
}

.pyramid {
  position: absolute;
}

.pyramid::before,
.pyramid::after {
  content: "";
  width: 0;
  height: 0;
  border: 150px solid;
  position: absolute;
  z-index: -1;
  opacity: 0.5;
  left: 30rem;
  top: 25rem;
}

.pyramid::before {
  border-color: transparent transparent #9b805a transparent;
  transform: scaleY(2) skewY(-40deg) rotate(45deg);
}

.pyramid::after {
  border-color: transparent transparent #e0c7a4 transparent;
  transform: scaleY(2) skewY(40deg) rotate(-45deg);
}

/* ======= CONTACT SECTION ======= */
.contact {
  min-height: 40vh;
  width: 100vw;
  text-align: center;
}

.contact .row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .row .image img {
  height: 26vh;
  width: 13vw;
}

.contact .row .form-container {
  width: 50%;
  text-align: center;
  padding: 0 5rem;
}

.contact .row .form-container p {
  width: 100%;
  font-size: 2.5rem;
  color: #41200d;
  padding: 1rem 0;
}

.contact .row .form-container div a {
  color: #233e6f;
  text-decoration: none;
  font-size: 2.5rem;
  font-weight: bold;
}

.contact .row .form-container div a:hover {
  font-size: 3rem;
}

/* ======= FOOTER ======= */
.footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.5rem;
  margin-top: 1rem;
  background-color: #9b805a;
}

.footer h1 {
  color: #233e6f;
  letter-spacing: 0.1rem;
  font-weight: bold;
}

/* ======= ANIMATIONS ======= */
@keyframes waves {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 100rem;
  }
}

/* ======= MEDIA QUERIES ======= */
@media (max-width: 768px) {
  html {
    font-size: 50%;
  }
  .header {
    padding: 1rem 0rem;
  }
  .header .fa-bars {
    display: block;
  }
  .header .navbar {
    position: fixed;
    top: -120%;
    left: 0;
    height: auto;
    width: 100%;
    background-color: #41200d;
    z-index: 1000;
    border-top: 0.1rem solid rgba(65, 32, 13, 0.75);
  }
  .header .navbar ul {
    height: 100%;
    width: 100%;
    flex-flow: column;
  }
  .header .navbar ul li {
    margin: 1rem 0;
  }
  .header .navbar ul li a {
    color: #fff;
    font-size: 2.4rem;
  }
  .header .nav-toggle {
    top: 5.8rem;
  }
  .home .banner {
    font-size: 4rem;
  }
  .home .slogan {
    font-size: 1.7rem;
  }
  .about .row {
    flex-flow: column-reverse;
    padding: 0 2rem;
  }
  .about .row .image img {
    width: 30vw;
  }
  .tjt .row {
    flex-flow: column-reverse;
  }
  .tjt .row:nth-child(even) {
    flex-flow: column;
  }
  .tjt .row .image img {
    width: 30vw;
  }
  .tjt .row .content {
    padding: 0;
  }
  .contact .row {
    flex-flow: column;
  }
  .contact .row .image img {
    width: 30vw;
    height: auto;
  }
  .contact .row .form-container {
    width: 100%;
    padding: 0 1.5rem;
  }
  .traduction .row,
  .civilisation .row {
    flex-direction: column;
  }
  .traduction .row img {
    display: none;
  }
  .civilisation .row img {
    width: 40%;
  }
  .tjt .row .content iframe {
    width: 50%;
    height: 50%;
  }
}

@media (max-width: 550px) {
  .footer {
    flex-flow: column;
    padding: 1rem 0rem;
  }
  .footer h1 {
    text-align: center;
  }
  .footer .icons {
    padding: 1rem 0;
  }
}

.buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  margin-bottom: 15px;
}

.caps {
  color: #233e6f !important;
  font-variant: small-caps;
}

figcaption {
  color: #233e6f;
  font-size: small;
}

/* ======= TRADUCTION SECTION ======= */
.traduction {
  min-height: 70vh;
  width: 100vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.traduction .row {
  margin-top: 2rem 0;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.traduction .row .image {
  width: 30vw;
}

.traduction .row .image1 img {
  width: 15vw;
}

.traduction .row .image2 img {
  width: 10vw;
}

.traduction .row .content {
  text-align: center;
  padding: 0 3rem;
}

.traduction .row .content h3 {
  margin-top: 5rem;
  font-size: 3rem;
  color: #41200d;
}

.traduction .row .content p {
  font-size: 2rem;
  color: #41200d;
  padding: 1rem 0;
}

.traduction a {
  text-decoration: none;
  color: #6b2737;
}

.traduction span {
  color: #6b2737;
}

.traduction a:hover {
  font-size: 110%;
}

/* ======= CIVILISATION SECTION ======= */
.civilisation {
  min-height: 20vh;
  width: 100vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.civilisation .row {
  margin-top: 2rem 0;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.civilisation .row .image {
  width: 30vw;
}

.civilisation .row .image img {
  width: 10vw;
}

.civilisation .row .content {
  text-align: center;
  padding: 0 3rem;
}

.civilisation .row .content h3 {
  margin-top: 5rem;
  font-size: 3rem;
  color: #41200d;
}

.civilisation .row .content p {
  font-size: 2rem;
  color: #41200d;
  padding: 1rem 0;
}

/* ======= CleanAcordionMain ======= */
#cleanAccordionMain {
  max-width: 90vw;
  min-height: 80vh;
  margin: 0 auto;
  padding: 0;
  margin-top: 100px;
}

/* ======= CleanAcordionMain > dl ======= */
#cleanAccordionMain dl.accordion {
  overflow: hidden;
}

#cleanAccordionMain dl.accordion:hover * {
  cursor: default;
}

#cleanAccordionMain dl.accordion:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/* ======= CleanAcordionMain > dl > dt ======= */
#cleanAccordionMain dl.accordion dt {
  padding: 0;
  margin: 0;
  background-color: transparent;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}

#cleanAccordionMain dl.accordion dt.accordionLastDt {
  margin-bottom: none;
}

#cleanAccordionMain dl.accordion dt a {
  color: #fff;
  text-decoration: none;
  display: block;
  font-weight: bold;
  padding: 0 10px;
}

#cleanAccordionMain dl.accordion dt a:hover,
#cleanAccordionMain dl.accordion dt a:hover * {
  cursor: pointer;
}

#cleanAccordionMain dl.accordion dt a:focus {
  outline: none;
}

#cleanAccordionMain dl.accordion dt i {
  margin: 5px;
  float: left;
  padding: 0px 4px;
  font-style: normal;
  margin-right: 15px;
}

#cleanAccordionMain dl.accordion dt h4 {
  font-size: 2rem;
  display: inline-block;
}

/* ======= Tab 1 ======= */
#cleanAccordionMain dl.accordion dt.tab_1 a {
  background-color: #9b805a;
}

/* ======= Tab 2 ======= */
#cleanAccordionMain dl.accordion dt.tab_2 a {
  background-color: #233e6f;
}

/* ======= Tab 3 ======= */
#cleanAccordionMain dl.accordion dt.tab_3 a {
  background-color: #e0a458;
}

/* ======= CleanAcordionMain > dl > dd ======= */
#cleanAccordionMain dl.accordion dd {
  margin-bottom: 20px;
}

#cleanAccordionMain dl.accordion dd ul {
  font-size: 2rem;
}

#cleanAccordionMain dl.accordion dd li {
  margin-bottom: 10px;
}

#cleanAccordionMain dl.accordion dd.accordionLastDd {
  position: relative;
  border-bottom: 0;
}

#cleanAccordionMain dl.accordion dd p {
  font-size: 2rem;
}

#cleanAccordionMain dl.accordion dd p a {
  color: #233e6f;
  text-decoration: none;
  cursor: pointer;
}

#cleanAccordionMain dl.accordion dd p a:hover {
  font-size: 110%;
}

#cleanAccordionMain dl.accordion dd p a i {
  margin-left: 15px;
}

#cleanAccordionMain dl.accordion dd p a:hover {
  text-decoration: underline;
  cursor: pointer;
}

#cleanAccordionMain dl.accordion dd p a:hover i {
  text-decoration: none;
  cursor: pointer;
}

/* ======= Accordion Small ======= */
.content {
  width: 100%;
  margin: 0 auto;
}

.cat {
  width: 100%;
}

.content ul li {
  list-style: none;
}

.content ul li div a,
.website p a {
  color: #233e6f;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer !important;
}

.content ul li div a:hover,
.website p a:hover {
  color: #233e6f;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer !important;
  font-size: 110%;
}

.item {
  line-height: 5px;
  margin-bottom: 10px;
}

.item a {
  color: black;
  text-decoration: none;
  font-weight: 700;
}

ol li {
  list-style-type: decimal !important;
}

.accordionSm h4 {
  color: #41200d;
}

.accordionSm h5 {
  font-size: larger;
  color: #41200d;
  padding: auto;
  margin: auto;
  text-decoration: underline;
}

strong {
  color: #9b805a;
}

.website {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.website embed {
  height: 33%;
  width: 33%;
}

.website p {
  text-align: center;
}

.thematiques li {
  list-style-type: "- " !important;
}

/* ======= GENTIUM FONT ======= */
/* ======= GENERAL ======= */
html {
  font-size: 62.5%;
}

body {
  box-sizing: border-box;
  font-family: "Gentium Plus", Arial, Verdana, Helvetica, sans-serif;
  margin: 0;
  overflow-x: hidden;
  padding: 0;
  text-decoration: none;
  transition: all 0.2s linear;
  background-attachment: fixed;
  background-image: url("../img/mainBg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  scroll-behavior: smooth;
}
/*# sourceMappingURL=style.css.map */