* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

body {
  text-align: center !important;
  overflow-x: hidden;
  overflow-y: auto;
}

/*--====== Modal ======--*/
.modal {
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100% !important;
  overflow-x: hidden;
  overflow-y: auto;
  pointer-events: none;
  opacity: 0;
  /* visibility: hidden; */
  transition: opacity 0.4s ease, visibility 0.3s ease;
}

/* when Modal has open class */
.modal.open {
  pointer-events: all;
  opacity: 1;
  visibility: visible;
}

.modal_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.5rem;
  min-height: calc(100% - 3rem);
}

@media (max-width: 575.98px) {
  .modal_wrapper {
    margin: 0.5rem;
    min-height: calc(100% - 1rem);
  }
}
.modal_content {
  position: relative;
  text-align: center;
  overflow: hidden;
  transform: scale(0);
  transition: transform 0.5s ease;
  background: white;
  border-radius: 20px;
  width: 43%;
}
@media screen and (max-width: 850px) {
  .modal_content {
    width: 85%;
    text-align: center !important;
    margin: auto !important;
  }
}

/* when Modal is open then modal-content will... */
.modal.open .modal_content {
  transform: scale(1);
}

.modal_body {
  margin: 2rem 0 3rem;
}

.modal_body p {
  font-size: 1.2rem;
  line-height: 1.6;
  letter-spacing: 0.8px;
}

.close_btn {
  font-size: 1.2rem;
  margin-bottom: 10px;
  transition: all 300ms ease;
}

header video {
  position: fixed !important;
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
  top: 0;
  left: 0;
  bottom: 0 !important;
}
header .menu1 {
  display: grid;
  grid-template-columns: 70px auto 64px;
  align-items: center;
  z-index: 10;
  margin-bottom: 10px;
}
@media screen and (max-width: 750px) {
  header .menu1 {
    margin-bottom: -25px !important;
  }
}
@media screen and (max-width: 576px) {
  header .menu1 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas: "lo lg" "ti ti";
  }
}
@media screen and (max-width: 576px) {
  header .logo {
    grid-area: lo;
    text-align: left;
    margin-left: 10px;
    margin: 0;
    width: 70px;
  }
}
header .logo img {
  width: 50px;
  height: 50px;
  margin-top: 10px;
  object-fit: cover;
}
@media screen and (max-width: 576px) {
  header .titre_principal {
    grid-area: ti;
  }
}
header .titre_principal h1 {
  text-align: left;
  font-size: clamp(30px, 2.7vw, 49px);
  font-weight: bold;
  color: #eee;
  letter-spacing: 7px;
  animation: Ptitre ease 5s;
  text-transform: uppercase;
  user-select: none;
}
@media screen and (max-width: 780px) {
  header .titre_principal h1 {
    font-size: 1rem;
  }
}
@media screen and (max-width: 576px) {
  header .titre_principal h1 {
    font-size: calc(1rem + 1.5vw);
    padding-top: 0;
    text-align: center;
    letter-spacing: 2px;
    grid-area: ti;
  }
}
@keyframes Ptitre {
  0% {
    opacity: 0;
    transform: translateX(490px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
header .langue {
  text-align: left;
  z-index: 10;
  user-select: none;
}
@media screen and (max-width: 576px) {
  header .langue {
    grid-area: lg;
    text-align: right;
    margin-right: 10px;
  }
}
header .langue-container {
  display: none;
  position: absolute;
  right: 2%;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  color: #eee;
  justify-content: center;
  align-items: center;
  background: rgb(100, 100, 100);
}
header .langue-container a {
  text-decoration: none;
  padding: 10px;
  color: #eee;
  font-weight: bold;
}
header .langue-container a:hover {
  background-color: #671877;
  color: #eee;
}
header .langue:hover .langue-container {
  display: grid;
  text-align: left;
}
@media screen and (min-width: 576px) {
  header .langue:hover .langue-container {
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 768px) {
  header .langue:hover .langue-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 992px) {
  header .langue:hover .langue-container {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
header .btn-langue {
  cursor: pointer;
}
header img {
  margin-right: 5px;
}

.navbar {
  background: transparent;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 3;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
  background: #fff;
}

.menu {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: -5px;
}

.nav_btn {
  line-height: 2vh !important;
  background-color: transparent;
  border: 1px solid white;
  color: white;
  border-radius: 20px;
  padding: 10px 30px;
  text-align: center !important;
  text-decoration: none;
  font-size: 1.2rem;
  margin: 0 0.6vw;
  cursor: pointer;
  min-width: 11vw;
  white-space: nowrap;
}

.nav_btn:hover {
  transform: translateY(-3px);
  transition: all 0.4s ease-out;
}

.nav_btn:active {
  transform: translateY(3px);
  transition: all 0.4s ease-out;
}

.btn1:hover {
  background: #0078D0;
  transition: all 0.4s ease-out;
}

.btn2:hover {
  background-color: #FFB114;
  transition: all 0.4s ease-out;
}

.btn3:hover {
  background-color: #303030;
  transition: all 0.4s ease-out;
}

.btn4:hover {
  background-color: #00a651;
  transition: all 0.4s ease-out;
}

.btn5:hover {
  background-color: #F0282D;
  transition: all 0.4s ease-out;
}

@media screen and (max-width: 780px) {
  .navbar {
    padding: 0 2rem;
  }
  .navbar .menu {
    flex-direction: column;
    width: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    top: -400px;
    opacity: 0;
    padding: 0;
    transition: all 0.4s ease-out;
  }
  .navbar .menu.active {
    background: #1c1d1d;
    top: 60px;
    opacity: 1;
    width: 100%;
    text-align: center;
    padding: 0;
  }
  .navbar .menu > a {
    line-height: 40px;
    width: 100%;
  }
  .navbar .nav_btn {
    border: 0;
    border-bottom: 1px solid white;
    border-radius: 0px;
    width: 100%;
    padding: 15px 0;
    margin: 0;
  }
  .menu-toggle .bar {
    display: block;
    cursor: pointer;
  }
  .menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}
.modal_content {
  margin-top: 10vh;
}

.news {
  height: 70vh;
  display: grid;
  grid-template-columns: 30% 70%;
  margin: 0 auto;
}
@media screen and (max-width: 850px) {
  .news {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.news .continent {
  background: url(../img/interface/news.webp) center/cover;
}
@media screen and (max-width: 850px) {
  .news .continent {
    display: none;
  }
}
.news .icone_anime {
  margin-top: 25px;
}
.news .container {
  display: grid;
  flex-direction: column;
  user-select: none;
}
@media screen and (max-width: 850px) {
  .news .container {
    width: 100%;
    padding: 0px;
    overflow-x: auto;
  }
  .news .container h2.flexfont {
    font-size: 16px !important;
  }
}
.news h2 {
  font-family: Allura, cursive;
  font-size: 2.5rem;
  font-weight: 100;
  color: rgb(166, 114, 69);
  text-align: center;
  margin-top: 2vh;
}
.news .container-p {
  overflow-y: auto;
  height: 53vh;
}
.news .container-p p {
  color: black;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-align: justify;
  padding: 3px 12px;
}
.news .btn {
  border-radius: 10px;
  border: none;
  background-color: #0078D0;
  color: white;
  padding: 5px 20px;
}
.news .btn:hover {
  transform: translateY(-3px);
}
.news .btn:active {
  transform: translateY(3px);
}

.download {
  display: grid;
  grid-template-columns: 30% 70%;
  margin: 0 auto;
}
@media screen and (max-width: 850px) {
  .download {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.download h2 {
  font-family: Allura, cursive;
  font-size: 2.5rem;
  font-weight: 100;
  color: rgb(166, 114, 69);
  margin: 20px 0 0 0;
}
.download .continent {
  background: url(../img/interface/download.webp) center/cover;
}
@media screen and (max-width: 850px) {
  .download .continent {
    display: none;
  }
}
.download .icone_anime {
  margin-top: 25px;
}
.download .dls {
  background: white;
  color: black;
  width: 85%;
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  position: relative;
}
.download .dls .dl {
  display: grid;
  grid-template-columns: 10% 90%;
  border-bottom: 1px dashed black;
  padding: 20px 0;
  margin: 0 10px;
}
.download .dls .dl img {
  object-fit: cover;
  width: 80%;
  align-self: center;
}
.download .dls .dl .dl-text {
  text-align: left;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 0 10px;
  height: 100%;
}
.download .btn {
  border-radius: 10px;
  border: none;
  background-color: #FFB114;
  color: white;
  padding: 5px 20px;
  margin: 30px auto;
}
.download .btn:hover {
  transform: translateY(-3px);
}
.download .btn:active {
  transform: translateY(3px);
}

.donate {
  display: grid;
  grid-template-columns: 30% 70%;
  margin: 0 auto;
}
@media screen and (max-width: 850px) {
  .donate {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.donate .continent {
  background: url(../img/interface/donation.webp) center/cover;
}
@media screen and (max-width: 850px) {
  .donate .continent {
    display: none;
  }
}
.donate .icone_anime {
  margin-top: 25px;
}
.donate .form-infos {
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 20px 10px;
  user-select: none;
}
.donate .form-infos-container {
  text-align: justify;
}
@media screen and (max-width: 850px) {
  .donate .form-infos-container {
    width: 100%;
    padding: 20px;
  }
}
.donate .form-infos h2 {
  font-family: Allura, cursive;
  font-size: 2.5rem;
  font-weight: 100;
  color: rgb(166, 114, 69);
}
.donate .form-infos h3 {
  font-size: 2rem;
  font-weight: 500;
  color: black;
  margin: 15px 0;
}
.donate .form-infos img {
  height: 300px;
}
.donate .form-infos p {
  color: black;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 15px 0;
}
.donate .btn {
  border-radius: 10px;
  border: none;
  background-color: #303030;
  color: white;
  padding: 5px 20px;
}
.donate .btn:hover {
  transform: translateY(-3px);
}
.donate .btn:active {
  transform: translateY(3px);
}
.donate .bouton-don {
  width: 100%;
  text-align: center;
}
.donate .bouton-don button.btn-warning {
  font-style: italic;
  padding: 10px;
  border-radius: 50px;
  margin: auto;
  background: rgb(4, 222, 232);
  color: #fff;
  font-size: 24px;
  margin-bottom: 10px;
  border: 1px solid transparent;
  transition: all ease 500ms;
}
.donate .bouton-don button.btn-warning:hover {
  background: #fff;
  color: rgb(4, 222, 232);
  border: 1px solid rgb(4, 222, 232);
}
.donate .bmc-button {
  padding-left: 0 !important;
}

.modal_content {
  overflow: auto !important;
}
@media screen and (min-width: 951px) {
  .modal_content {
    min-width: 500px !important;
  }
}
@media screen and (max-width: 950px) {
  .modal_content {
    width: 70%;
  }
}
@media screen and (max-width: 500px) {
  .modal_content {
    width: 100%;
  }
}

.contact {
  display: grid;
  grid-template-columns: 30% 70%;
  margin: 0 auto;
  overflow-x: hidden;
}
@media screen and (max-width: 850px) {
  .contact {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.contact .continent {
  background: url(../img/interface/contact.webp) center/cover;
}
@media screen and (max-width: 850px) {
  .contact .continent {
    display: none;
  }
}
.contact .icone_anime {
  margin-top: 25px;
}
.contact .form-infos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 95%;
  margin: auto;
  overflow-x: hidden;
}
@media screen and (max-width: 1040px) {
  .contact .form-infos {
    width: 100%;
  }
}
.contact h2 {
  font-family: Allura, cursive;
  font-size: 2.5rem;
  font-weight: 100;
  color: rgb(166, 114, 69);
  margin: 5px 0;
}
.contact .form-infos-container {
  width: 100% !important;
  padding: 0 10px;
  margin: 0;
  overflow-x: hidden !important;
}
.contact .form-infos-container .form-inputs {
  width: 100% !important;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
  overflow-x: hidden !important;
}
.contact .form-infos-container .form-inputs .error-msg {
  display: none;
  color: red;
  width: 100% !important;
  text-align: left;
  padding-left: 10px;
}
.contact .form-infos-container .form-inputs .r-msg {
  margin-left: auto;
}
.contact .form-infos-container .form-inputs .oneline {
  width: 100% !important;
  margin: 10px 0;
  display: flex;
  align-items: flex-start;
  background: none;
}
.contact .form-infos-container .form-inputs .oneline .nom-container,
.contact .form-infos-container .form-inputs .oneline .mail-container {
  width: 50% !important;
}
@media screen and (max-width: 850px) {
  .contact .form-infos-container .form-inputs .oneline {
    overflow-x: hidden !important;
    width: 100% !important;
  }
}
@media screen and (max-width: 668px) {
  .contact .form-infos-container .form-inputs .oneline {
    width: 100% !important;
    flex-direction: column;
    border-bottom: none;
    padding: 0;
    margin-bottom: 0;
  }
  .contact .form-infos-container .form-inputs .oneline div {
    width: 100% !important;
    overflow-x: hidden !important;
  }
  .contact .form-infos-container .form-inputs .oneline .nom-container,
  .contact .form-infos-container .form-inputs .oneline .mail-container {
    width: 100% !important;
  }
  .contact .form-infos-container .form-inputs .oneline input, .contact .form-infos-container .form-inputs .oneline select, .contact .form-infos-container .form-inputs .oneline textarea {
    width: 100%;
    border-bottom: 1px solid grey;
    padding: 10px;
    margin-bottom: 10px;
  }
  .contact .form-infos-container .form-inputs .oneline .captcha {
    border-bottom: 1px solid grey;
    padding: 5px;
    height: 40px;
    margin-bottom: 10px;
  }
}
.contact .form-infos-container .form-inputs .oneline div:first-child {
  margin-right: 10px !important;
}
.contact .form-infos-container .form-inputs .oneline input {
  border-bottom: 1px solid grey;
}
.contact .form-infos-container .form-inputs .oneline input,
.contact .form-infos-container .form-inputs .oneline select {
  width: 100% !important;
}
@media screen and (max-width: 668px) {
  .contact .form-infos-container .form-inputs .oneline input,
  .contact .form-infos-container .form-inputs .oneline select {
    width: 100% !important;
  }
}
.contact .form-infos-container .form-inputs .oneline input[id=sujet] {
  width: 100%;
}
@media screen and (max-width: 850px) {
  .contact .form-infos-container .form-inputs .oneline input[id=sujet] {
    width: 100%;
  }
}
.contact .form-infos-container .form-inputs .oneline.only {
  display: block;
  width: 100%;
}
.contact .form-infos-container .form-inputs input,
.contact .form-infos-container .form-inputs select,
.contact .form-infos-container .form-inputs textarea {
  background: none;
  outline: none;
  border: none;
  resize: none;
  font-size: 20px;
  padding: 10px 0px !important;
}
.contact .form-infos-container .form-inputs textarea#msg {
  width: 100% !important;
  border-bottom: 1px solid grey;
  padding: 10px 0px;
  margin: 0;
  margin-bottom: 10px;
  background: none;
}
@media screen and (max-width: 850px) {
  .contact .form-infos-container .form-inputs textarea#msg {
    width: 100%;
    border-bottom: 1px solid grey;
  }
}
.contact .form-infos-container .form-inputs ::placeholder,
.contact .form-infos-container .form-inputs select {
  color: rgb(155, 155, 155);
  font-size: 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.contact .form-infos-container .form-inputs input:focus,
.contact .form-infos-container .form-inputs select:focus,
.contact .form-infos-container .form-inputs textarea#msg:focus {
  background: rgb(100, 113, 126);
  color: #fff;
}
.contact .form-infos-container .pays-verif {
  width: 100%;
  overflow-x: hidden;
  text-align: center;
}
@media screen and (min-width: 669px) {
  .contact .form-infos-container .pays-verif {
    display: flex;
  }
  .contact .form-infos-container .pays-verif .captcha {
    width: 70% !important;
    object-fit: cover;
  }
  .contact .form-infos-container .pays-verif .verif-container {
    width: 28% !important;
  }
}
.contact .form-infos-container .pays-verif .pays-container {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  overflow-x: hidden;
  border-bottom: 1px solid grey;
}
.contact .form-infos-container .pays-verif .pays-container select {
  width: 100%;
}
.contact .form-infos-container .pays-verif .captcha-container {
  display: flex !important;
  align-items: flex-end;
  width: 100%;
  overflow-x: hidden;
  border-bottom: 1px solid grey;
}
.contact .form-infos-container .pays-verif .captcha-container .captcha {
  display: block;
  width: 60% !important;
  height: 45px;
  margin-bottom: 0;
  margin-top: 5px;
}
.contact .form-infos-container .pays-verif .captcha-container .verif-container {
  width: 40%;
}
.contact .form-infos-container .loading {
  position: absolute;
  z-index: 99;
  width: 25px;
  height: 25px;
  border-top: 4px solid blue;
  border-bottom: 4px solid #ccc;
  border-left: 4px solid #ccc;
  border-right: 4px solid #ccc;
  border-radius: 50%;
  top: 15%;
  left: 40%;
  animation: animloading 1s linear infinite;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
}
.contact .form-infos-container .result {
  visibility: hidden;
  border: none;
  margin: 0 auto 5px auto;
}
.contact .form-infos-container .gbtn {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 20px 0 0px 0;
}
.contact .form-infos-container .btn {
  border-radius: 10px;
  border: none;
  background-color: #00a651;
  color: white;
  padding: 5px 20px;
  font-size: 1.2rem;
  margin: 0 30px;
  transition: all 300ms ease;
}
.contact .form-infos-container .btn:hover {
  transform: translateY(-3px);
}
.contact .form-infos-container .btn:active {
  transform: translateY(3px);
}
.contact p {
  color: rgb(155, 155, 155);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

@keyframes animloading {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.modal_content {
  margin-top: 10vh;
}

.propos {
  display: grid;
  grid-template-columns: 30% 70%;
  height: 72vh;
}
@media screen and (max-width: 850px) {
  .propos {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.propos .continent {
  background: url(../img/interface/propos.webp) center/cover;
}
@media screen and (max-width: 850px) {
  .propos .continent {
    display: none;
  }
}
.propos .icone_anime {
  margin-top: 25px;
}
.propos .container {
  display: grid;
  flex-direction: column;
  align-items: center;
  user-select: none;
}
@media screen and (max-width: 850px) {
  .propos .container {
    width: 100%;
    padding: 20px !important;
  }
}
.propos h2 {
  font-family: Allura, cursive;
  font-size: 2.5rem;
  font-weight: 100;
  color: rgb(166, 114, 69);
  text-align: center;
}
.propos .container h3 {
  font-size: 2rem;
  font-weight: 500;
  color: black;
  margin: 15px 0;
}
.propos .container img {
  height: 20vh;
  margin: 0 auto;
}
.propos .container p {
  color: black;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 1.2vh 0;
}
.propos .btn {
  border-radius: 10px;
  border: none;
  background-color: #F0282D;
  color: white;
  padding: 5px 20px;
  margin: 10px 0;
}
.propos .btn:hover {
  transform: translateY(-3px);
}
.propos .btn:active {
  transform: translateY(3px);
}
.propos .close_btn {
  margin-bottom: 20px;
}

.carousel {
  position: relative;
  min-height: 80vh;
  min-width: 600px;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 16px;
  margin: 0 auto;
  padding: 0;
  color: #eee;
}
@media all and (max-width: 668px) {
  .carousel {
    position: inherit;
    min-height: 80vh !important;
    min-width: 100px;
    width: 100% !important;
    font-size: 14px;
    margin: 0 auto;
  }
}
.carousel .swiper {
  /* width: 300px;*/
  width: 100%;
  height: 100%;
  padding: 3% 50px;
}
.carousel .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 300px;
}
.carousel .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
}
.carousel .swiper-button-prev,
.carousel .swiper-button-next {
  color: #eee;
}
.carousel .swiper-pagination-bullet {
  background-color: #eee;
}
.carousel .slide1 {
  text-align: justify;
  align-content: center;
  background: transparent;
}
.carousel .slide2 {
  text-align: left;
}
.carousel .slide2 li {
  color: #eee;
  font-size: 2.1vh;
  font-weight: bold;
  line-height: 300%;
  margin: 0 auto;
}
.carousel .slide3, .carousel .slide4, .carousel .slide5, .carousel .slide6, .carousel .slide78, .carousel .slide8 {
  margin-top: -2vh;
}
@media all and (min-width: 768) and (max-width: 914px) {
  .carousel .slide3, .carousel .slide4, .carousel .slide5, .carousel .slide6, .carousel .slide78, .carousel .slide8 {
    margin-top: 37vh !important;
  }
}
@media all and (max-width: 668px) {
  .carousel .slide3, .carousel .slide4, .carousel .slide5, .carousel .slide6, .carousel .slide78, .carousel .slide8 {
    margin-top: 10vh !important;
  }
}
.carousel .stitre {
  display: flex;
  justify-content: center;
  color: rgb(0, 0, 0);
  font-weight: bold;
}
.carousel .stitre3 {
  position: absolute;
  top: 80%;
  left: 5px;
  width: 50%;
}
.carousel .stitre4 {
  position: absolute;
  top: 15%;
  left: 45%;
  width: 50%;
}
.carousel .stitre5 {
  position: absolute;
  top: 8%;
  left: 15px;
  width: 50%;
}
.carousel .stitre8 {
  color: red;
}
.carousel .stitre81 {
  position: absolute;
  top: 75%;
  left: 15px;
  width: 50%;
}
.carousel .stitre82 {
  position: absolute;
  top: 25%;
  right: -15px;
  width: 50%;
}
.carousel h3 {
  font-weight: bold;
  text-align: center;
  padding: 5px;
  letter-spacing: 3px;
}
.carousel h3 .C {
  display: inline-block;
  animation: spinY 12s infinite ease-out;
}
.carousel h3 .O {
  display: inline-block;
  animation: spinX 8s infinite ease-out;
}
.carousel h3 .W {
  display: inline-block;
  animation: spinY 10s infinite ease-out;
}
@keyframes spinY {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}
@keyframes spinX {
  from {
    transform: rotateX(0deg);
  }
  to {
    transform: rotateX(360deg);
  }
}
.carousel h4 {
  text-align: justify;
  padding: 10px;
  letter-spacing: 1px;
  line-height: 4vh;
  text-indent: 3em;
}
.carousel ul {
  display: flex;
  flex-direction: column;
  line-height: 7vh;
  align-items: center;
}

footer {
  padding: 5px;
  font-size: calc(0.4rem + 0.6vw);
  color: #eee;
  width: 100%;
  height: auto;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}
footer .footer-container {
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  footer .footer-container {
    display: block;
    font-size: 3vw;
  }
}
footer a {
  user-select: none;
}

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