@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes slide {
  0% {
    transform: translate3d(0, 0, 0);
  }
  25% {
    transform: translate3d(-20%, 0, 0);
  }
  50% {
    transform: translate3d(-40%, 0, 0);
  }
  75% {
    transform: translate3d(-60%, 0, 0);
  }
  100% {
    transform: translate3d(-80%, 0, 0);
  }
}
:root {
  --speed: 2s;
}

header {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  color: #3D5A80;
  font-family: "Red Hat Display", sans-serif;
  padding-bottom: 20px;
}

.navbar {
  width: 80%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  align-items: center;
  font-family: inherit;
  padding-top: 20px;
}
@media screen and (min-width: 1024px) {
  .navbar {
    width: 100%;
  }
}
.navbar--dropdown {
  position: relative;
}
.navbar--dropdown .navbar__menu-icon {
  position: absolute;
  right: 0;
  top: 26px;
}
.navbar--dropdown div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  align-items: end;
  z-index: 1;
  border: #3D5A80 solid 3px;
  border-radius: 20px;
  padding: 20px;
  position: absolute;
  right: 0;
  top: 110px;
  background-color: white;
  transition: all 0.3s ease-in-out;
}
@media (prefers-color-scheme: dark) {
  .navbar--dropdown div {
    background-color: #293241;
    border: #98C1D9 solid 3px;
  }
}
.navbar--dropdown .navbar__link--responsive {
  display: block;
  text-align: right;
  color: #3D5A80;
  font-size: 1.4em;
}
@media (prefers-color-scheme: dark) {
  .navbar--dropdown .navbar__link--responsive {
    color: #E0FBFC;
  }
}
@media screen and (min-width: 1024px) {
  .navbar div {
    width: 70%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding-right: 100px;
  }
}
@media screen and (min-width: 1600px) {
  .navbar div {
    width: 60%;
    padding-right: 200px;
  }
}
.navbar__logo {
  width: 158px;
  height: 130px;
}
@media screen and (min-width: 1024px) {
  .navbar__logo {
    padding-left: 100px;
    width: 79px;
    height: 65px;
  }
}
@media screen and (min-width: 1600px) {
  .navbar__logo {
    padding-left: 200px;
  }
}
.navbar__logo .cls-1 {
  fill: #3D5A80;
  stroke-width: 0;
}
@media (prefers-color-scheme: dark) {
  .navbar__logo .cls-1 {
    fill: #E0FBFC;
  }
}
.navbar .active {
  border-bottom: solid 3px #EE6C4D;
}
.navbar__menu-icon {
  font-size: 2em;
}
@media screen and (min-width: 1024px) {
  .navbar__menu-icon {
    display: none;
    transition: all 0.3s ease-in-out;
  }
}
.navbar__link {
  width: fit-content;
  text-decoration: none;
  font-family: inherit;
  color: #3D5A80;
  text-transform: uppercase;
}
@media (prefers-color-scheme: dark) {
  .navbar__link {
    color: #E0FBFC;
  }
}
.navbar__link:visited {
  color: #3D5A80;
}
@media (prefers-color-scheme: dark) {
  .navbar__link:visited {
    color: #E0FBFC;
  }
}
.navbar__link:active {
  color: #EE6C4D;
}
.navbar__link--responsive {
  display: none;
}
@media screen and (min-width: 1024px) {
  .navbar__link--responsive {
    display: block;
  }
}
.navbar__link--responsive:hover {
  border-bottom: solid 3px #EE6C4D;
  color: #3D5A80;
}
@media (prefers-color-scheme: dark) {
  .navbar__link--responsive:hover {
    color: #E0FBFC;
  }
}
.navbar__link__menu-icon {
  float: right;
  display: block;
}

footer {
  background-color: #3D5A80;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  color: white;
  text-align: center;
  margin-top: 20px;
}
@media (prefers-color-scheme: dark) {
  footer {
    background-color: #98C1D9;
    color: #293241;
  }
}
@media screen and (min-width: 1024px) {
  footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px 100px;
    text-align: left;
  }
}
@media screen and (min-width: 1600px) {
  footer {
    padding: 50px 200px;
  }
}
footer .footer-presentation {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
footer .footer-presentation__disclaimer {
  text-decoration: none;
  color: white;
}
@media (prefers-color-scheme: dark) {
  footer .footer-presentation__disclaimer {
    color: #293241;
  }
}
footer .footer-presentation__disclaimer:hover {
  color: #EE6C4D;
}
footer .footer-presentation__disclaimer:visited {
  color: white;
}
@media (prefers-color-scheme: dark) {
  footer .footer-presentation__disclaimer:visited {
    color: #293241;
  }
}
footer .footer-presentation__disclaimer:visited:hover {
  color: #EE6C4D;
}
footer .footer-presentation__disclaimer:active {
  color: #EE6C4D;
}
footer .footer-presentation p {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  footer .footer-presentation {
    width: 60%;
    padding-right: 20px;
  }
}
@media screen and (min-width: 1600px) {
  footer .footer-presentation {
    width: 40%;
  }
}
@media screen and (min-width: 1024px) {
  footer .contact--pc {
    align-items: flex-start;
  }
}
footer .social {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  justify-content: center;
}

.presentation .services {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  justify-items: center;
  align-items: start;
}
@media screen and (min-width: 1600px) {
  .presentation .services {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.presentation .services div {
  width: 20%;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}
.presentation .services strong {
  font-weight: bold;
}

.services-icons {
  position: relative;
  height: 173px;
}
.services-icons svg {
  position: absolute;
  z-index: 0;
}
.services-icons svg circle {
  fill: #98C1D9;
}
@media (prefers-color-scheme: dark) {
  .services-icons svg circle {
    fill: #E0FBFC;
  }
}
.services-icons img {
  position: absolute;
  z-index: 1;
}
.services-icons__website-img {
  top: 32px;
}
.services-icons__maintenance-img {
  top: 29px;
}
.services-icons__webdesign-img {
  top: 37px;
}
.services-icons__volume-img {
  top: 33px;
}

.style-changer {
  position: fixed;
  top: 40%;
  left: -245px;
  z-index: 2;
  width: 320px;
  height: fit-content;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row-reverse;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1600px) {
  .style-changer {
    display: none;
  }
}
.style-changer--dropdown {
  left: 10px;
}
.style-changer__menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  align-items: flex-start;
  padding: 20px;
  border-radius: 20px 0 20px 20px;
  background-color: #E0FBFC;
  box-shadow: 10px 10px #98C1D9;
}
.style-changer__title {
  font-family: "Red Hat Display", sans-serif;
  font-size: 0.9em;
  padding-bottom: 15px;
}
.style-changer__subtitle {
  font-size: 0.9em;
  padding-bottom: 10px;
}
.style-changer__image {
  border-radius: 0 20px 20px 0;
  background-color: #E0FBFC;
  box-shadow: 10px 10px #98C1D9;
  z-index: 3;
  padding: 10px;
}
.style-changer__image img {
  transform: rotate(90deg);
  -webkit-animation: spin 4s linear infinite;
  -moz-animation: spin 4s linear infinite;
  animation: spin 4s linear infinite;
}
.style-changer__list {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  padding-left: 0;
}
.style-changer__list div {
  width: 30px;
  height: 30px;
  z-index: 3;
}
.style-changer__list .default-color div {
  background-color: #98C1D9;
  box-shadow: #E0FBFC 3px 3px;
  border-radius: 5px;
}
.style-changer__list .nature-blue div {
  background-color: #709CA7;
  box-shadow: #B8CBD0 3px 3px;
  border-radius: 5px;
}
.style-changer__list .pink-pastel-blue div {
  background-color: #DB6A8F;
  box-shadow: #E8AABE 3px 3px;
  border-radius: 5px;
}
.style-changer__list .orange-yellow-blue div {
  background-color: #D46F4D;
  box-shadow: #FFBF66 3px 3px;
  border-radius: 5px;
}
.style-changer__list .violet div {
  background-color: #9F8DC3;
  box-shadow: #BE9CC7 3px 3px;
  border-radius: 5px;
}
.style-changer__list .green-nature div {
  background-color: #1B9476;
  box-shadow: #8BD59E 3px 3px;
  border-radius: 5px;
}
.style-changer__list .red-vintage div {
  background-color: #D7572B;
  box-shadow: #FB8E2C 3px 3px;
  border-radius: 5px;
}
.style-changer__list .blue div {
  background-color: #0594D0;
  box-shadow: #04BBFF 3px 3px;
  border-radius: 5px;
}
.style-changer__list .blue-yellow div {
  background-color: #2599FB;
  box-shadow: #AAD9F9 3px 3px;
  border-radius: 5px;
}
.style-changer__list .yellow div {
  background-color: #FFEB69;
  box-shadow: #F5DF4D 3px 3px;
  border-radius: 5px;
}

.app_homepage .presentation .homepage {
  border-radius: 20px;
  background-color: #3D5A80;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  color: white;
  height: fit-content;
  text-align: center;
  margin-top: 50px;
  /*      &__hero {
          position: absolute;
          top: 100px;
          right: 0;
          width: 100%;
          z-index: -1;
          opacity: 25%;
        }*/
}
@media (prefers-color-scheme: dark) {
  .app_homepage .presentation .homepage {
    background-color: #98C1D9;
    color: #293241;
  }
}
@media screen and (min-width: 1024px) {
  .app_homepage .presentation .homepage {
    width: 800px;
    height: fit-content;
    box-shadow: 10px 10px #98C1D9;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px 50px 20px 50px;
  }
}
@media screen and (min-width: 1024px) and (prefers-color-scheme: dark) {
  .app_homepage .presentation .homepage {
    box-shadow: 10px 10px #3D5A80;
  }
}
@media screen and (min-width: 1600px) {
  .app_homepage .presentation .homepage {
    width: 900px;
    padding: 50px 100px;
  }
}
.app_homepage .presentation .homepage__image {
  fill: white;
  padding-top: 30px;
}
@media (prefers-color-scheme: dark) {
  .app_homepage .presentation .homepage__image {
    fill: #293241;
  }
}
.app_homepage .presentation .homepage__image--238x216 {
  width: 238px;
  height: 196px;
}
.app_homepage .presentation .homepage h1 {
  font-size: 1.6em;
}
@media screen and (min-width: 1024px) {
  .app_homepage .presentation .homepage h1 {
    font-size: 2.2em;
  }
}
.app_homepage .presentation .homepage > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .app_homepage .presentation .homepage > div {
    padding-left: 50px;
  }
}
@media screen and (min-width: 1600px) {
  .app_homepage .presentation .homepage > div {
    padding-left: 100px;
  }
}
.app_homepage .presentation .homepage > div p {
  padding: 20px;
}
.app_homepage .presentation .homepage > div > div {
  width: 400px;
  padding: 50px 0;
  overflow: hidden;
}
.app_homepage .presentation .homepage__list {
  padding-left: 0;
  list-style: none;
  width: 2000px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  --els: 4;
  animation: slide calc(var(--els) * var(--speed)) infinite;
}
.app_homepage .presentation .homepage__list li {
  width: 400px;
}

.app_about_me .presentation > div {
  flex-direction: column-reverse;
}
@media screen and (min-width: 1024px) {
  .app_about_me .presentation > div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.app_about_me .presentation aside {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .app_about_me .presentation aside {
    width: 50%;
    padding-right: 5%;
  }
}
@media screen and (min-width: 1600px) {
  .app_about_me .presentation aside {
    width: 75%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.app_about_me .presentation__image {
  width: fit-content;
  padding-right: 8%;
}
.app_about_me .presentation__image img {
  border-radius: 20px;
}
@media screen and (min-width: 1024px) {
  .app_about_me .presentation__image img {
    box-shadow: 10px 10px #D9D9D9;
  }
}
.app_about_me .presentation__skills {
  width: 100%;
  height: fit-content;
  background-color: #98C1D9;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 20px;
  margin: 20px 0;
}
@media (prefers-color-scheme: dark) {
  .app_about_me .presentation__skills {
    background-color: #E0FBFC;
    color: #293241;
  }
}
@media screen and (min-width: 1024px) {
  .app_about_me .presentation__skills {
    width: 50%;
    box-shadow: 10px 10px #E0FBFC;
  }
}
@media screen and (min-width: 1024px) and (prefers-color-scheme: dark) {
  .app_about_me .presentation__skills {
    box-shadow: 10px 10px #98C1D9;
  }
}
@media screen and (min-width: 1600px) {
  .app_about_me .presentation__skills {
    width: 35%;
  }
}
.app_about_me .presentation__skills--space {
  justify-content: space-between;
}
.app_about_me .presentation__skills h2 {
  padding-bottom: 0;
}
.app_about_me .presentation__skills p, .app_about_me .presentation__skills ul {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  text-align: center;
  width: 80%;
  padding: 0;
  list-style: none;
}
.app_about_me .presentation__skills p {
  font-weight: bold;
  padding-top: 20px;
}

.app_services .presentation .services-column {
  width: 80%;
}
@media screen and (min-width: 1600px) {
  .app_services .presentation .services-column {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.app_services .presentation .services-column__performance {
  height: fit-content;
  background-color: #98C1D9;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin: 20px 0;
  text-align: center;
}
@media (prefers-color-scheme: dark) {
  .app_services .presentation .services-column__performance {
    background-color: #E0FBFC;
    color: #293241;
  }
}
@media screen and (min-width: 1024px) {
  .app_services .presentation .services-column__performance {
    box-shadow: 10px 10px #E0FBFC;
    width: 60%;
  }
}
@media screen and (min-width: 1024px) and (prefers-color-scheme: dark) {
  .app_services .presentation .services-column__performance {
    box-shadow: 10px 10px #98C1D9;
  }
}
@media screen and (min-width: 1600px) {
  .app_services .presentation .services-column__performance {
    width: 25%;
  }
}
.app_services .presentation .services-column__performance span {
  display: block;
  padding-top: 20px;
}
.app_services .presentation .services-column__performance ul {
  padding: 0;
  width: 80%;
}
.app_services .presentation .services-column__performance ul li {
  width: 100%;
  border-bottom: #3D5A80 solid 1px;
  list-style: none;
}

.app_realisation .presentation__projets {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.app_realisation .presentation__projet {
  width: 30%;
  overflow: hidden;
  border-radius: 20px;
  background-color: #98C1D9;
  border: solid 0 #98C1D9;
}
.app_realisation .presentation__projet a {
  text-decoration: none;
  height: fit-content;
  color: #293241;
}
.app_realisation .presentation__projet a:hover {
  color: #EE6C4D;
}
.app_realisation .presentation__projet a:visited {
  color: #293241;
}
.app_realisation .presentation__projet a:active {
  color: #293241;
}
.app_realisation .presentation__projet img {
  height: 500px;
}
.app_realisation .presentation__projet div {
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.app_realisation .presentation__projet h3 {
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .app_contact .presentation > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .app_contact .presentation > div .form {
    grid-column: 2/3;
    grid-row: 1/3;
    align-self: start;
    justify-self: end;
  }
  .app_contact .presentation > div > div {
    width: 95%;
  }
}
.app_contact .presentation__malt {
  border: #FF5D59 solid 2px;
  border-radius: 20px;
  padding-bottom: 20px;
}
.app_contact .presentation__malt img {
  padding: 20px 0 0 20px;
}
.app_contact .presentation__malt p {
  padding: 0 20px;
}
.app_contact .presentation__malt a {
  color: #FF5D59;
  text-decoration: none;
}
.app_contact .presentation__malt a:visited {
  color: #FF5D59;
}
.app_contact .presentation__malt a:visited:hover {
  color: #3D5A80;
}
.app_contact .presentation__malt a:active {
  color: #3D5A80;
}
.app_contact .presentation__malt a:hover {
  color: #3D5A80;
}
.app_contact #contact {
  width: 100%;
  padding: 10px 0;
}
.app_contact #contact div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.app_contact #contact div input, .app_contact #contact div textarea {
  width: 80%;
  border-radius: 10px;
  border: none;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  margin: 10px 0;
  padding: 10px;
}

@media screen and (min-width: 1024px) {
  .app_disclaimer .presentation div {
    align-items: flex-start;
  }
}
.app_disclaimer .presentation div p {
  text-align: justify;
  width: 100%;
}
.app_disclaimer .presentation div a {
  color: #3D5A80;
  text-decoration: none;
}
@media (prefers-color-scheme: dark) {
  .app_disclaimer .presentation div a {
    color: #E0FBFC;
  }
}
.app_disclaimer .presentation div a:hover {
  color: #EE6C4D;
}
.app_disclaimer .presentation div a:visited {
  color: #3D5A80;
}
@media (prefers-color-scheme: dark) {
  .app_disclaimer .presentation div a:visited {
    color: #E0FBFC;
  }
}
.app_disclaimer .presentation div a:visited:hover {
  color: #EE6C4D;
}
.app_disclaimer .presentation div a:active {
  color: #EE6C4D;
}

.user .table {
  margin-bottom: 20px;
}
.user a {
  text-decoration: none;
}

#user {
  width: 100%;
  padding: 10px 0;
}
#user div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
#user div input, #user div textarea {
  width: 80%;
  border-radius: 10px;
  border: none;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  margin: 10px 0;
  padding: 10px;
}

#Capa_1 {
  fill: black;
  width: 30px;
  height: 30px;
}

#Capa_2 {
  fill: black;
  width: 25px;
  height: 25px;
}

.news .article {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  align-items: center;
}
.news .article div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  justify-content: center;
  width: 25%;
  height: fit-content;
  background-color: #98C1D9;
  border-radius: 20px;
  box-shadow: 10px 10px #E0FBFC;
  padding: 20px;
  margin: 30px 20px;
}
.news .article div h3 {
  text-align: center;
}
.news .article div p {
  text-align: justify;
}

.outils h1 {
  width: 100%;
  background-color: #98C1D9;
  text-align: center;
  border-radius: 20px 20px 0 0;
}
.outils div {
  width: 100%;
  background-color: #E0FBFC;
  display: table;
  border-radius: 0 0 20px 20px;
}
.outils .content-outils {
  width: 80%;
  display: table-cell;
}
.outils .content-outils div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.outils .content-outils p {
  width: 80%;
}
.outils .menu-outils {
  width: 20%;
  background-color: #98C1D9;
  display: table-cell;
  vertical-align: top;
  border-radius: 0 0 0 20px;
  text-align: center;
}
.outils .menu-outils > ul {
  width: 100%;
  justify-content: space-between;
  padding: 10px 0 10px 0;
}
.outils .menu-outils > ul > li {
  width: 100%;
}
.outils .menu-outils button {
  font-family: "DM Sans", sans-serif;
  background-color: transparent;
  border: none;
}
.outils .menu-outils button:hover {
  color: #EE6C4D;
}
.outils .menu-outils button span {
  font-family: inherit;
}
.outils .menu-outils__languages .dropdown-icon, .outils .menu-outils__framework .dropdown-icon, .outils .menu-outils__cms .dropdown-icon, .outils .menu-outils__logiciels .dropdown-icon {
  fill: black;
  width: 20px;
  height: 10px;
  transition: all 0.3s ease-in-out;
}
.outils .menu-outils__languages .submenu, .outils .menu-outils__framework .submenu, .outils .menu-outils__cms .submenu, .outils .menu-outils__logiciels .submenu {
  display: none;
  transition: all 0.3s ease-in-out;
}
.outils .menu-outils__languages--dropdown .dropdown-icon, .outils .menu-outils__framework--dropdown .dropdown-icon, .outils .menu-outils__cms--dropdown .dropdown-icon, .outils .menu-outils__logiciels--dropdown .dropdown-icon {
  rotate: 180deg;
  transition: all 0.3s ease-in-out;
}
.outils .menu-outils__languages--dropdown .submenu, .outils .menu-outils__framework--dropdown .submenu, .outils .menu-outils__cms--dropdown .submenu, .outils .menu-outils__logiciels--dropdown .submenu {
  display: block;
  transition: all 0.3s ease-in-out;
}
.outils .menu-outils__link {
  width: fit-content;
  text-decoration: none;
  font-family: inherit;
  color: #293241;
  text-transform: uppercase;
}
@media (prefers-color-scheme: dark) {
  .outils .menu-outils__link {
    color: #E0FBFC;
  }
}
.outils .menu-outils__link:visited {
  color: #293241;
}
@media (prefers-color-scheme: dark) {
  .outils .menu-outils__link:visited {
    color: #E0FBFC;
  }
}
.outils .menu-outils__link:active {
  color: #EE6C4D;
}
.outils .menu-outils__link:hover {
  color: #EE6C4D;
}

.CTA {
  display: block;
  width: fit-content;
  height: fit-content;
  font-family: "Red Hat Display", sans-serif;
  font-size: 0.9em;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  padding: 12px;
  border: none;
  transition: all 0.3s ease-in-out;
}
.CTA:hover {
  opacity: 80%;
}
.CTA--shadow {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.CTA--blue {
  background-color: #98C1D9;
  color: white;
}
@media (prefers-color-scheme: dark) {
  .CTA--blue {
    background-color: #3D5A80;
    color: white;
  }
}
.CTA--orange {
  background-color: #EE6C4D;
  color: white;
}
.CTA--round {
  border-radius: 12px;
}

.blurred-line {
  margin-top: 5px;
  width: 100%;
  height: 2px;
  background-color: #3D5A80;
  filter: blur(1.5px);
}
@media (prefers-color-scheme: dark) {
  .blurred-line {
    background-color: #E0FBFC;
  }
}

.tooltip {
  position: relative;
  display: inline-block;
}
.tooltip__text {
  display: none;
  width: 120px;
  background-color: #98C1D9;
  color: black;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
}
.tooltip:hover .tooltip__text {
  display: block;
}

*, html {
  font-family: "DM Sans", sans-serif;
  font-size: 36px;
}
@media screen and (min-width: 1024px) {
  *, html {
    font-size: 24px;
  }
}

body {
  line-height: 1.2;
}
@media (prefers-color-scheme: dark) {
  body {
    background-color: #293241;
  }
}

h1, h2, h3 {
  font-weight: 500;
}

h1, h2 {
  font-family: "Red Hat Display", sans-serif;
  text-transform: uppercase;
  padding: 30px 0;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.4em;
}

h3 {
  font-size: 1.2em;
  padding: 10px 0;
}

p {
  padding: 20px 0;
}

.presentation {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 20px 0;
  color: #293241;
}
@media (prefers-color-scheme: dark) {
  .presentation {
    color: white;
  }
}
@media screen and (min-width: 1024px) {
  .presentation {
    padding: 50px 100px;
  }
}
@media screen and (min-width: 1600px) {
  .presentation {
    padding: 50px 200px;
  }
}
.presentation > div {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .presentation > div {
    width: 100%;
  }
}
.presentation__content {
  width: 100%;
}
.presentation__content p {
  text-align: justify;
}

.contact {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.contact .contact__details {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  align-items: center;
  width: fit-content;
}
.contact .contact__details p {
  padding-left: 10px;
}

.icon--light {
  display: block;
}
@media (prefers-color-scheme: dark) {
  .icon--light {
    display: none;
  }
}
.icon--dark {
  display: none;
}
@media (prefers-color-scheme: dark) {
  .icon--dark {
    display: block;
  }
}
.icon--50 {
  width: 50px;
  height: 50px;
}
.icon--40 {
  width: 40px;
  height: 40px;
  margin: 5px;
}
.icon--79x65 {
  width: 79px;
  height: 65px;
}

.menu-cote {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.form {
  width: 100%;
}
.form form {
  width: 100%;
  border-radius: 20px;
  background-color: #E0FBFC;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 20px;
}
@media (prefers-color-scheme: dark) {
  .form form {
    background-color: #98C1D9;
  }
}

.table {
  width: 100%;
  padding: 10px;
  border-radius: 20px;
  background-color: #E0FBFC;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
@media (prefers-color-scheme: dark) {
  .table {
    background-color: #98C1D9;
  }
}
.table tbody, .table thead, .table tfoot {
  width: 95%;
}
.table tr {
  width: 100%;
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr 2fr 4fr 2fr 2fr;
}
.table th, .table td {
  text-align: center;
}
.table .no-records {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  color: #EE6C4D;
}
.table__icon {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.table--user tr {
  grid-template-columns: 1fr 2fr 4fr 2fr;
}

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