@import url(https://fonts.googleapis.com/css2?family=Poppins&display=swap);
@charset "UTF-8";
.white {
  color: white !important;
}

.black {
  color: #24252D !important;
}

.blue {
  color: #00C0F3 !important;
}

.red {
  color: #c50052 !important;
}

.bg-blue {
  background-color: #00C0F3 !important;
}

.bg-blue-light {
  background-color: aliceblue !important;
}

.bg-black {
  background-color: #24252D !important;
}

.bg-white-transparent {
  background-color: rgba(255, 255, 255, 0.8392156863) !important;
}

.margin-top {
  margin-top: 50px;
}

.margin-top-2 {
  margin-top: 100px;
}

.margin-top-3 {
  margin-top: 150px;
}

.margin-top-4 {
  margin-top: 200px;
}

.margin-top-5 {
  margin-top: 250px;
}

.margin-n-top {
  margin-top: -350px;
}

.margin-bottom {
  margin-bottom: 50px;
}

.margin-bottom-1 {
  margin-bottom: 100px;
}

.margin-bottom-2 {
  margin-bottom: 150px;
}

.margin-bottom-3 {
  margin-bottom: 200px;
}

.margin-bottom-4 {
  margin-bottom: 250px;
}

.margin-left {
  margin-left: 75px;
}

.margin-left-2 {
  margin-left: 125px;
}

.margin-left-3 {
  margin-left: 150px;
}

.margin-right {
  margin-right: 75px;
}

.margin-right-2 {
  margin-right: 125px;
}

.margin-right-3 {
  margin-right: 150px;
}

.arrow-right {
  margin-bottom: -0.6em;
  margin-right: 170px;
}

.arrow-left {
  margin-bottom: -0.6em;
  margin-left: 170px;
}

.text-up {
  transition: 0.3s all ease-in-out;
}

.text-up:hover {
  margin-top: 1.375rem !important;
}

.text-down {
  transition: 0.3s all ease-in-out;
}

.text-down:hover {
  transform: scale(1.1) !important;
}

.z-index-front {
  z-index: 1500 !important;
}

h1, .h1 {
  font-size: 4rem;
  font-weight: 600;
  line-height: 75px;
}

h2, .h2 {
  font-size: 4rem;
  font-weight: 600;
  line-height: 72px;
}

h3, .h3 {
  font-size: 3rem;
  font-weight: 400;
  line-height: 58px;
  color: #24252D;
}

h4, .h4 {
  font-size: 2.375rem;
  font-weight: 400;
  line-height: 42px;
  color: #24252D;
}

h5, .h5 {
  font-size: 1.875rem;
  font-weight: 400;
  color: #24252D;
}

h6, .h6 {
  font-size: 1.75rem;
  font-weight: 400;
  color: #24252D;
}

p {
  margin-top: 0;
  font-size: 1.125rem;
  line-height: 24px;
  margin-bottom: -0.5rem;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: #00C0F3;
}

.lead {
  font-size: 1.375rem;
  line-height: 32px;
  font-weight: 400 !important;
}

.lead-small {
  font-size: 1.125rem;
  line-height: 30px;
  font-weight: 400 !important;
}

.lead-2 {
  font-size: 1.95rem;
  line-height: 38px;
  letter-spacing: -0.5px;
  font-weight: 300 !important;
}

.p-small {
  font-size: 16px !important;
}

.p-small-2 {
  font-size: 12px !important;
}

.line {
  display: inline-block;
  border-bottom: 1px solid #00C0F3;
  padding-bottom: 1px;
}

.underline {
  display: inline-block;
  border-bottom: 2px solid #00C0F3;
  padding-bottom: 0.6rem;
}

.fw-600 {
  font-weight: 600 !important;
}

.h1-header {
  font-size: 100px !important;
  line-height: 110px;
}

.text-underline {
  text-decoration-line: underline;
  text-underline-offset: 8px;
}

ul {
  margin-top: 1rem;
}

ul li {
  margin-bottom: 1rem;
  font-size: 1.375rem;
  line-height: 32px;
  font-weight: 400 !important;
}

.ul-rond {
  list-style: none;
}

.ul-square {
  list-style: none;
}

.ul-none-decoration {
  list-style: none;
}

.ul-rond li::before {
  content: "•";
  color: #00C0F3;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.ul-square li::before {
  content: "·";
  color: #00C0F3;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

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

*:focus,
*:active {
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

.wrapper {
  display: inline-flex;
}

.wrapper .icon {
  position: relative;
  background-color: #ffffff;
  border-radius: 50%;
  padding: 15px;
  margin: 10px;
  width: 50px;
  height: 50px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper i {
  font-size: 21px;
  margin: 15px;
}

.wrapper .tooltip {
  position: absolute;
  top: 0;
  font-size: 14px;
  background-color: #ffffff;
  color: #ffffff;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background-color: #ffffff;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .facebook:hover,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip::before {
  background-color: #3b5999;
  color: #ffffff;
}

.wrapper .twitter:hover,
.wrapper .twitter:hover .tooltip,
.wrapper .twitter:hover .tooltip::before {
  background-color: #46c1f6;
  color: #ffffff;
}

.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
  background-color: #e1306c;
  color: #ffffff;
}

.text-project {
  margin-bottom: 25px;
  position: relative;
  margin-top: 40px;
}

.project-div {
  margin-left: 25px;
}

.text-shadow {
  text-shadow: 2px 2px rgba(29, 29, 29, 0.25);
}

.project-text-header {
  margin-top: 3rem;
}

.header-p {
  padding: 2rem;
}

.navbar {
  position: -webkit-sticky;
  position: fixed;
  top: 0;
  z-index: 2000;
}

#nav-logo {
  width: 180px;
}

.navbar-2 {
  position: -webkit-sticky;
  position: fixed;
  width: 3%;
  right: 25px;
  z-index: 15000;
  top: 0;
}

#menu {
  background: #ffffff;
  height: 100%;
  right: 0;
  opacity: 0;
  overflow: hidden;
  position: fixed;
  text-align: right;
  top: 0;
  transition: all 0.7s ease-in-out;
  visibility: hidden;
  width: 30%;
  z-index: 1100;
}
#menu.open {
  opacity: 1;
  visibility: visible;
  box-shadow: -2px 10px 10px rgba(0, 0, 0, 0.168627451);
}
#menu.open li:nth-child(1) {
  animation-delay: 0.1s;
}
#menu.open li:nth-child(2) {
  animation-delay: 0.2s;
}
#menu.open li:nth-child(3) {
  animation-delay: 0.3s;
}
#menu.open li:nth-child(4) {
  animation-delay: 0.4s;
}
#menu.open li:nth-child(5) {
  animation-delay: 0.5s;
}
#menu.open li:nth-child(6) {
  animation-delay: 0.6s;
}
#menu.open li:nth-child(7) {
  animation-delay: 0.7s;
}
#menu.open li:nth-child(8) {
  animation-delay: 0.8s;
}
#menu.open li:nth-child(9) {
  animation-delay: 0.9s;
}
#menu.open li:nth-child(10) {
  animation-delay: 1s;
}
#menu.open li {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInUp;
}
#menu ul:hover a {
  opacity: 0.5;
}
#menu ul a {
  -webkit-transform: translateZ(0);
  transition: opacity 0.3s ease-in-out;
}
#menu ul a:hover {
  opacity: 1;
}
#menu .main-nav {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  padding-right: 35px;
}
#menu .main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#menu .main-nav a {
  color: #24252D;
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  padding: 0rem;
  text-decoration: none;
  text-transform: uppercase;
}
#menu .main-nav a:first {
  padding-top: 0;
}

.toggle-menu {
  background-color: transparent !important;
  border: none;
  cursor: pointer;
  display: inline-block;
  height: 50px;
  outline: none;
  padding: 0;
  pointer-events: initial;
  position: sticky;
  vertical-align: middle;
  width: 50px;
  z-index: 1110;
}
.toggle-menu span {
  background-color: #00C0F3;
  content: "";
  display: block;
  height: 3px;
  left: calc(50% - 30px);
  position: absolute;
  top: calc(50% - 1px);
  transform-origin: 50% 50%;
  transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out, transform 0.2s linear;
  width: 30px;
  z-index: 1500;
}
.toggle-menu span:before, .toggle-menu span:after {
  background-color: #00C0F3;
  content: "";
  display: block;
  height: 3px;
  position: absolute;
  transform-origin: 50% 50%;
  transition: background-color 0.2s ease-in-out, top 0.2s 0.2s ease-out, transform 0.2s linear;
  width: 34px;
}
.toggle-menu span:before {
  top: 7px;
}
.toggle-menu span:after {
  top: -7px;
}
.toggle-menu.active span {
  background-color: transparent;
  transition: background 0.2s ease-out;
}
.toggle-menu.active span:before, .toggle-menu.active span:after {
  transition: top 0.2s ease-out, transform 0.2s 0.2s ease-out;
}
.toggle-menu.active span:before {
  top: 0;
  transform: rotate3d(0, 0, 1, -45deg);
}
.toggle-menu.active span:after {
  top: 0;
  transform: rotate3d(0, 0, 1, 45deg);
}

.box {
  width: 250px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.box .title {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  height: 50px;
  z-index: 1000;
}
.box .title .block {
  width: 0%;
  height: inherit;
  background: aliceblue;
  position: absolute;
  animation: mainBlock 2s cubic-bezier(0.74, 0.06, 0.4, 0.92) forwards;
  display: flex;
}
.box .title h1 {
  font-family: "Poppins";
  color: #24252D;
  font-size: 42px;
  animation: mainFadeIn 2s forwards;
  animation-delay: 1.6s;
  opacity: 0;
  display: flex;
  align-items: baseline;
  position: relative;
}
.box .title h1 span {
  width: 0px;
  height: 0px;
  border-radius: 50%;
  background: grey;
  animation: popIn 0.8s cubic-bezier(0.74, 0.06, 0.4, 0.92) forwards;
  animation-delay: 2s;
  margin-left: 5px;
  margin-top: -10px;
  position: absolute;
  bottom: 13px;
  right: -12px;
}
.box .role {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  height: 30px;
  margin-top: -10px;
}
.box .role .block {
  width: 0%;
  height: inherit;
  background: #00C0F3;
  position: absolute;
  animation: secBlock 2s cubic-bezier(0.74, 0.06, 0.4, 0.92) forwards;
  animation-delay: 2s;
  display: flex;
}
.box .role p {
  animation: secFadeIn 2s forwards;
  animation-delay: 3.2s;
  opacity: 0;
  font-weight: 400;
  font-family: "Poppins";
  color: #00C0F3;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 5px;
}

@keyframes mainBlock {
  0% {
    width: 0%;
    left: 0;
  }
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0;
    left: 100%;
  }
}
@keyframes secBlock {
  0% {
    width: 0%;
    left: 0;
  }
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0;
    left: 100%;
  }
}
@keyframes mainFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes popIn {
  0% {
    width: 0px;
    height: 0px;
    background: #e9d856;
    border: 0px solid #ddd;
    opacity: 0;
  }
  50% {
    width: 10px;
    height: 10px;
    background: #e9d856;
    opacity: 1;
    bottom: 45px;
  }
  65% {
    width: 7px;
    height: 7px;
    bottom: 0px;
    width: 15px;
  }
  80% {
    width: 10px;
    height: 10px;
    bottom: 20px;
  }
  100% {
    width: 7px;
    height: 7px;
    background: #e9d856;
    border: 0px solid #222;
    bottom: 13px;
  }
}
@keyframes secFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes top {
  0% {
    opacity: 0;
    bottom: -80px;
  }
  100% {
    opacity: 1;
    bottom: 0px;
  }
}
@keyframes icon {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1.3) rotate(-2deg);
  }
  100% {
    opacity: 1;
    bottom: 0px;
  }
}
@keyframes showTopText {
  0% {
    transform: translate3d(0, 100%, 0);
  }
  40%, 60% {
    transform: translate3d(0, 50%, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes showBottomText {
  0% {
    transform: translate3d(0, -100%, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.img-journal {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  height: 400px !important;
  border-collapse: collapse;
  z-index: -1;
  position: relative;
  width: 100%;
  box-shadow: 0 20px 20px -30px #000 !important;
}

#contentArticle p {
  font-size: 1.125rem;
  line-height: 30px;
  font-weight: 400;
}

#contentArticle img {
  border-radius: 15px;
  opacity: 1;
  max-height: 500px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -o-object-fit: cover;
  object-fit: cover;
  border-collapse: collapse;
  z-index: -1;
  position: relative;
  width: 100%;
}

#contentArticle a {
  color: #00C0F3;
  position: relative;
  padding-bottom: 2px;
  text-decoration: underline !important;
  text-underline-offset: 0.3em;
  text-decoration-thickness: 1px;
}

#contentArticle a:hover {
  text-decoration-color: #00C0F3 !important;
}

#contentArticle h2 {
  font-size: 64px;
  font-weight: 700;
  color: #24252D;
  line-height: 30px;
  margin: 2rem !important;
}

#contentArticle h3 {
  font-size: 38px;
  font-weight: 700;
  color: #24252D;
  line-height: 35px;
  margin: 2rem !important;
}

#contentArticle h4 {
  font-size: 30px;
  font-weight: 700;
  color: #24252D;
  line-height: 50px;
  margin: 2rem !important;
}

#contentArticle h5 {
  font-size: 26px;
  font-weight: 700;
  color: #24252D;
  line-height: 30px;
  margin: 2rem !important;
}

#contentArticle h6 {
  font-size: 20px;
  font-weight: 700;
  color: #24252D;
  line-height: 25px;
  margin: 2rem !important;
}

#contentArticle .span-category {
  font-size: 20px;
}

#contentArticle .span-category :hover {
  color: #24252D;
}

#contentArticle .span-date {
  font-size: 15px;
  margin-left: 75px;
}

#contentArticle i {
  font-size: 38px;
  margin: 0;
}

#contentArticle .image {
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  flex: 0 0 auto;
  margin-top: 1.5rem !important;
}

#contentArticle li {
  font-size: 1rem;
  margin-left: 2rem;
}

#contentArticle table {
  width: 100%;
}

#contentArticle tbody, tr, td, th {
  border-color: inherit;
  border-style: solid;
  border-width: 2px;
}

.journal-menu li {
  cursor: pointer;
  display: inline-block;
  margin: 20px;
  font-weight: 600;
  font-size: 20px;
  transition: ease-in-out 0.1s;
}

.journal-active {
  border-bottom: 2px solid #00C0F3;
}

.journal-item {
  color: #fff;
  width: 30%;
  overflow: hidden;
  display: block;
  margin: 1%;
  margin-top: 100px;
  transition: all 0.2s ease-in-out;
}

.journal-item div {
  cursor: pointer;
}

.journal-item img {
  box-shadow: 0 70px 63px -60px #000;
}

.journal-item:hover {
  transform: scale(1.05) translateZ(0);
  cursor: pointer;
}

.journal-item:nth-child(odd) {
  margin-top: 100px;
}

.journal-menu li i {
  font-size: 0.7em;
  margin: 4px;
  color: #00C0F3;
  vertical-align: top;
}

.ajax-loading {
  text-align: center;
  display: none;
}

.ajax-loading img {
  width: 50px;
}

.morebtn {
  border: none;
  font-size: x-large;
  color: #00C0F3;
  background-color: #fff;
  text-decoration: underline;
}

.more {
  margin-top: 50px;
  text-align: center;
}

.header-title {
  margin-top: 90px;
}

.div-img {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#about {
  background-color: #00C0F3;
}

.img-carousel {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 70px 63px -60px #000;
  height: 450px;
  width: 100%;
  border-collapse: collapse;
  z-index: -1;
  position: relative;
}

.img-project {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  height: 500px;
  width: 100%;
  border-collapse: collapse;
  z-index: -1;
  position: relative;
  width: 100%;
  box-shadow: 0 70px 63px -60px #000;
}

.img-home {
  background-repeat: no-repeat;
  background-position: center;
}

.img-team {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 345px;
  border-collapse: collapse;
  z-index: 1000;
  position: relative;
  border-radius: 10px;
}

.img-team-small {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  width: 75%;
  height: 200px;
  border-collapse: collapse;
  z-index: 1000;
  position: relative;
  border-radius: 10px;
}

.img-radius {
  border-radius: 10px;
  transition: all 0.2s ease;
  opacity: 1;
}

.radius {
  border-radius: 10px;
}

.b-shadow {
  box-shadow: 0px 1px 22px 4px rgba(0, 0, 0, 0.07);
}

.cta {
  position: relative;
  margin: auto;
  padding: 16px 22px;
  transition: all 0.2s ease;
}

.cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 28px;
  background: rgba(0, 192, 243, 0.6196078431);
  width: 56px;
  height: 56px;
  transition: all 0.3s ease;
}

.cta span {
  position: relative;
  font-size: 16px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  vertical-align: middle;
}

.cta svg {
  position: relative;
  top: 0;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #111;
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.cta:hover:before {
  width: 100%;
  background: rgba(0, 192, 243, 0.6196078431);
}

a.cta:hover {
  color: white;
}

a i {
  z-index: 1;
  position: inherit;
}

.cta:hover svg {
  transform: translateX(0);
}

.cta:active {
  transform: scale(0.96);
}

:root {
  --background-dark: #2d3548;
  --text-light: rgba(255,255,255,0.6);
  --text-lighter: rgba(255,255,255,0.9);
  --spacing-s: 8px;
  --spacing-m: 16px;
  --spacing-l: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 64px;
  --width-container: 1200px;
}

.team-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border-radius: 10px;
}

.card-team-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
  z-index: 1000;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15));
  border-radius: 10px;
}

.card-project-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
  z-index: 1000;
  border-radius: 10px;
}

.card-team-text {
  text-align: left;
  position: absolute;
  bottom: 25px;
  left: 10px;
}

.team-card-small {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border-radius: 10px;
}

.card-team-img-overlay-small {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
  z-index: 1000;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  height: 200px;
  width: 75%;
  border-radius: 10px;
}

.card-team-text-small {
  text-align: left;
  position: absolute;
  bottom: 15px;
  left: 10px;
}

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

.illustration-editor {
  margin-top: -2rem;
  margin-right: -10rem;
  display: grid;
  grid-template-rows: 24px auto;
  justify-items: center;
  position: relative;
}

.code {
  position: absolute;
  width: 350px;
  height: 210px;
  background: #1D1E22;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.5);
  border-radius: 6px;
  z-index: 5;
}
.code header {
  display: grid;
  grid-template-columns: 36px auto 36px;
  align-items: center;
}
.code header svg {
  margin: 10px;
}
.code header .h6 {
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 1.57px;
  color: #C5C8D4;
  margin: 0;
}
.code-html {
  left: -200px;
  top: 40px;
}
.code-css {
  left: -75px;
  top: 270px;
  height: 250px;
}
.code-js {
  left: -225px;
  top: 550px;
}
.code .code-content {
  margin: 0 20px 10px;
  color: white;
}
.code .code-content .c-r {
  color: #A88038;
}
.code .code-content .c-o {
  color: #DE7300;
}
.code .code-content .c-y {
  color: #E1CA72;
}
.code .code-content .c-g {
  color: #74B087;
}
.code .code-content .c-p {
  color: #9F8198;
}
.code .code-content .c-b {
  color: #7A99AD;
}
.code .code-content .c-c {
  color: #666666;
}
.code-css .code-content code .line-1 {
  width: 0%;
  margin: 0;
  border-right: 0.15em solid transparent;
  overflow: hidden;
  display: inline-block;
  white-space: nowrap;
}
.code-css .code-content code .line-2 {
  width: 0%;
  margin: 0;
  border-right: 0.15em solid transparent;
  overflow: hidden;
  display: inline-block;
  white-space: nowrap;
}
.code-css .code-content code .line-3 {
  width: 0%;
  margin: 0;
  border-right: 0.15em solid transparent;
  overflow: hidden;
  display: inline-block;
  white-space: nowrap;
}
.code-css .code-content code .line-4 {
  width: 0%;
  margin: 0;
  border-right: 0.15em solid transparent;
  overflow: hidden;
  display: inline-block;
  white-space: nowrap;
}
.code-css .code-content code .line-5 {
  width: 0%;
  margin: 0;
  border-right: 0.15em solid transparent;
  overflow: hidden;
  display: inline-block;
  white-space: nowrap;
}
.code-css .code-content code .line-1 {
  animation: typing-1 3s 0s steps(30, end) forwards, cursor 1s linear 0s 3;
}
.code-css .code-content code .line-2 {
  animation: typing-2 3s 3s steps(30, end) forwards, cursor 1s linear 3s 3;
}
.code-css .code-content code .line-3 {
  animation: typing-3 3s 6s steps(30, end) forwards, cursor 1s linear 6s 3;
}
.code-css .code-content code .line-4 {
  animation: typing-4 3s 9s steps(30, end) forwards, cursor 1s linear 9s 3;
}
.code-css .code-content code .line-1, .code-css .code-content code .line-3, .code-css .code-content code .line-4 {
  animation-duration: 1s;
  animation-timing-function: steps(10, end);
}
.code-css .code-content code .line-5 {
  border-color: transparent;
  animation: typing-5 3s 12s steps(30, end) forwards, cursor-persist 1s linear 12s infinite;
}
.code-css .code-content code .line-2 {
  margin-left: 2rem;
}
.code-css .code-content code .line-3, .code-css .code-content code .line-4, .code-css .code-content code .line-5 {
  margin-left: 4rem;
}

@keyframes typing-1 {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}
@keyframes typing-2 {
  from {
    width: 0;
  }
  to {
    width: 220px;
  }
}
@keyframes typing-3 {
  from {
    width: 0;
  }
  to {
    width: 70px;
  }
}
@keyframes typing-4 {
  from {
    width: 0;
  }
  to {
    width: 75px;
  }
}
@keyframes typing-5 {
  from {
    width: 0;
  }
  to {
    width: 141px;
  }
}
@keyframes cursor {
  from, to, 20%, 80% {
    border-color: transparent;
  }
  25%, 75% {
    border-color: white;
  }
}
@keyframes cursor-persist {
  from, 45% {
    border-color: transparent;
  }
  50%, to {
    border-color: white;
  }
}
/*//////////////////////////////////////////////////////////////////
[ Contact ]*/
/*---------------------------------------------*/
input {
  outline: none;
  border: none;
}

input[type=number] {
  -moz-appearance: textfield;
  appearance: none;
  -webkit-appearance: none;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

textarea {
  outline: none;
  border: none;
}

textarea:focus, input:focus {
  border-color: transparent !important;
}

input:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus:-moz-placeholder {
  color: transparent;
}

input:focus::-moz-placeholder {
  color: transparent;
}

input:focus:-ms-input-placeholder {
  color: transparent;
}

textarea:focus::-webkit-input-placeholder {
  color: transparent;
}

textarea:focus:-moz-placeholder {
  color: transparent;
}

textarea:focus::-moz-placeholder {
  color: transparent;
}

textarea:focus:-ms-input-placeholder {
  color: transparent;
}

input::-webkit-input-placeholder {
  color: #cccccc;
}

input:-moz-placeholder {
  color: #cccccc;
}

input::-moz-placeholder {
  color: #cccccc;
}

input:-ms-input-placeholder {
  color: #cccccc;
}

textarea::-webkit-input-placeholder {
  color: #cccccc;
}

textarea:-moz-placeholder {
  color: #cccccc;
}

textarea::-moz-placeholder {
  color: #cccccc;
}

textarea:-ms-input-placeholder {
  color: #cccccc;
}

/*---------------------------------------------*/
button {
  outline: none !important;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

iframe {
  border: none !important;
}

.container-contact100 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: transparent;
  position: relative;
  z-index: 1;
}

.contact100-map {
  position: absolute;
  z-index: -2;
  width: calc(100% - 640px);
  height: 100%;
  top: 0;
  left: 0;
}

.wrap-contact100 {
  background: #fff;
  border-radius: 2px;
  position: relative;
}

.show-wrap-contact100 {
  visibility: visible;
  opacity: 1;
}

/*==================================================================
[ Form ]*/
.contact100-form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 68px;
}

.contact100-form-title {
  display: block;
  width: 100%;
  font-size: 39px;
  color: #333333;
  line-height: 1.2;
  text-align: left;
  padding-bottom: 64px;
}

/*------------------------------------------------------------------
[ Input ]*/
.wrap-input100 {
  width: 100%;
  position: relative;
  border-bottom: 2px solid #dbdbdb;
  margin-bottom: 45px;
}

.label-input100 {
  font-size: 18px;
  color: #00C0F3;
  font-weight: 600;
  line-height: 1.2;
  padding-left: 2px;
}

.input100 {
  display: block;
  width: 100%;
  background: transparent;
  font-size: 22px;
  color: #555555;
  line-height: 1.2;
  padding: 0 2px;
}

.focus-input100 {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.focus-input100::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  transition: all 0.4s;
  background: #00C0F3;
  background: linear-gradient(45deg, #1a7ff3, #00C0F3);
}

/*---------------------------------------------*/
input.input100 {
  height: 50px;
}

textarea.input100 {
  min-height: 140px;
  padding-top: 13px;
  padding-bottom: 13px;
}

.input100:focus + .focus-input100::before {
  width: 100%;
}

.has-val.input100 + .focus-input100::before {
  width: 100%;
}

/*------------------------------------------------------------------
[ Button ]*/
.container-contact100-form-btn {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.wrap-contact100-form-btn {
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 25px;
  overflow: hidden;
}

.contact100-form-bgbtn {
  position: absolute;
  z-index: -1;
  width: 300%;
  height: 100%;
  background: #df2351;
  background: linear-gradient(-135deg, #1a7ff3, #00C0F3, #1a7ff3, #00C0F3);
  top: 0;
  left: -100%;
  transition: all 0.4s;
}

.contact100-form-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  min-width: 244px;
  height: 50px;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  line-height: 1.2;
}

.wrap-contact100-form-btn:hover .contact100-form-bgbtn {
  left: 0;
}

/*------------------------------------------------------------------
[ Responsive ]*/
/*------------------------------------------------------------------
[ Alert validate ]*/
.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c80000;
  border-radius: 2px;
  padding: 4px 30px 4px 10px;
  bottom: calc((100% - 25px) / 2);
  transform: translateY(50%);
  right: 2px;
  pointer-events: none;
  color: #c80000;
  font-size: 14px;
  line-height: 1.4;
  text-align: left;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f06a";
  font-family: "icomoon" !important;
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 18px;
  bottom: calc((100% - 25px) / 2);
  transform: translateY(50%);
  right: 8px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}
.true-validate::after {
  content: "\f00c";
  font-family: "icomoon";
  font-size: 22px;
  color: #00ad5f;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: calc((100% - 25px) / 2);
  transform: translateY(50%);
  right: 5px;
}

/*==================================================================
[ Contact more ]*/
.contact100-more {
  font-size: 16px;
  color: #fff;
  position: fixed;
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 212px;
  height: 50px;
  border-radius: 25px;
  background-color: #39b54a;
  padding: 0 20px;
  top: 50%;
  left: calc((100% - 640px) / 2);
  transform: translate(-50%, -50%);
}

.contact100-more i {
  font-size: 20px;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .wrap-contact100 {
    width: 100%;
  }
  .contact100-map {
    display: none;
  }
  .contact100-more {
    position: absolute;
    background-color: transparent;
    color: #39b54a;
    bottom: 0px;
    top: auto;
    left: 50%;
    z-index: 10;
  }
}
.m-block {
  margin-top: 450px;
}

.clients-img {
  width: 180px;
  height: 75px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}

.project-title {
  font-size: 10rem !important;
  font-weight: 600 !important;
  line-height: 155px !important;
}

.project-content img {
  width: 100%;
  border-radius: 15px;
}

.project-content p {
  line-height: 32px;
  font-weight: 400;
  font-size: 1.375rem;
}

.grayscale div img {
  filter: grayscale(100%);
  transition: 0.3s ease-in-out;
}

.grayscale div:hover img {
  filter: grayscale(0);
}

@media (max-width: 600px) {
  .episode__content {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .episode__content .story {
    font-size: 15px;
  }
}
@media (max-width: 700px) {
  .tabs {
    transform: scale(0.6);
  }
}
@media (min-width: 1200px) and (max-width: 1600px) {
  #menu .main-nav a {
    font-size: 2rem;
    padding: 0.5rem;
  }
}
@media (min-width: 300px) and (max-width: 576px) {
  .figure-mobile {
    display: block !important;
  }
  .figure-desktop {
    display: none !important;
  }
  h1, .h1 {
    font-size: 2.1rem;
    line-height: 40px;
  }
  h2, .h2 {
    font-size: 2rem;
    line-height: 40px;
  }
  h3, .h3 {
    font-size: 1.8rem;
    line-height: 30px;
  }
  h4, .h4 {
    font-size: 1.6rem;
    line-height: 32px;
  }
  h6, .h6 {
    font-size: 1.1rem;
  }
  .ol, ul {
    padding-left: 0.4rem;
  }
  .p-small {
    font-size: 12px !important;
    line-height: 16px;
  }
  .margin-top-5 {
    margin-top: 50px;
  }
  .margin-top-4 {
    margin-top: 50px;
  }
  .margin-top-3 {
    margin-top: 50px;
  }
  .margin-top-2 {
    margin-top: 25px;
  }
  .margin-top {
    margin-top: 0px;
  }
  .img-header {
    height: 0px;
  }
  .lead, ul li {
    font-size: 1rem;
    line-height: 25px;
  }
  .ico {
    display: none;
  }
  .desktop {
    display: none;
  }
  .mobil {
    display: block !important;
  }
  .navbar {
    position: -webkit-relative;
    position: relative;
  }
  .navbar-2 {
    right: 35px;
    top: 5px;
  }
  .lead-small {
    font-size: 1rem;
    line-height: 26px;
  }
  .header-p {
    padding: 0rem;
  }
  #nav-logo {
    width: 108px !important;
    height: 30px !important;
  }
  #menu {
    width: 100%;
  }
  #menu .main-nav a {
    font-size: 1.2rem;
    padding: 0.1rem 0.1rem;
  }
  .toggle-menu span {
    height: 2px;
  }
  .toggle-menu span::before, .toggle-menu span::after {
    height: 2px;
  }
  .btn-black {
    padding-left: 20px !important;
    padding-right: 20px !important;
    font-size: 14px !important;
    height: 42px !important;
  }
  .img-header {
    height: 0 !important;
  }
  .clients-img {
    width: 60px;
    height: 35px;
  }
  .tab {
    font-size: 0.8rem !important;
    margin: 5px;
    height: auto !important;
    width: auto !important;
  }
  .ul-none-decoration li {
    float: left;
  }
  .img-diapo {
    display: none;
  }
  .coder {
    display: none;
  }
  .panels {
    margin-top: 25px;
  }
  .panel {
    height: 355px !important;
  }
  .cta {
    padding: 10px 22px;
  }
  .cta::before {
    width: 36px;
    height: 36px;
  }
  .cta span {
    font-size: 12px;
  }
  #carousel-menu {
    display: none;
  }
  #carousel-menu-small {
    display: block !important;
  }
  .img-diapo-project {
    height: 200px !important;
  }
  .tabc {
    width: auto !important;
  }
  .container-centre {
    margin: 0rem !important;
    margin-top: 0px !important;
  }
  .episode {
    grid-template-columns: 1fr !important;
    margin-bottom: 0px !important;
  }
  .episode__number {
    display: none;
    height: 0;
  }
  .technologies {
    font-size: 0.8rem !important;
  }
  .accordion-button {
    padding: 0rem !important;
  }
  .menu li {
    margin: 7px !important;
    font-size: 12px !important;
  }
  .item {
    padding: 0rem !important;
    margin-top: 25px !important;
  }
  .img-project {
    height: 200px;
  }
  .project-content p {
    font-size: 1rem;
  }
  .img-carousel {
    height: 250px;
  }
  .img-team {
    height: 180px;
  }
  .card-team-text {
    bottom: 10px;
  }
  .card-team-text p {
    font-size: 0.7rem;
  }
  .journal h3, .journal .h3 {
    font-size: 1.8rem !important;
  }
  .img-journal {
    height: 150px !important;
  }
  .text-project {
    margin-top: 5px;
  }
  .project-text-header {
    margin-top: 0px;
  }
  .text-project {
    display: none;
  }
  .project-div {
    margin-left: 5px !important;
  }
  #map {
    height: 400px !important;
  }
  .list-group-horizontal {
    flex-direction: column !important;
  }
  .list-group-horizontal span {
    font-size: 12px !important;
  }
  .list-group-horizontal li {
    margin-bottom: 0rem !important;
    line-height: 10px !important;
  }
  .block-job li {
    font-size: 10px !important;
    line-height: 15px !important;
  }
  .block-job .btn {
    font-size: 12px !important;
    padding-left: 20px;
    padding-right: 20px;
    height: 35px;
  }
  .block-job span {
    font-size: 12px !important;
  }
  .block-job p {
    font-size: 10px !important;
  }
  footer {
    margin-top: 50px !important;
  }
  .custom-file-upload {
    font-size: 9px;
  }
  .label-cv {
    font-size: 9px;
  }
  .img-team-small {
    height: 80px !important;
    width: 100%;
  }
  .card-team-img-overlay-small {
    height: 80px !important;
    width: 100%;
  }
  .team-quote {
    font-size: 14px;
  }
  .img-other {
    height: auto !important;
  }
  #contentArticle p {
    font-size: 1rem;
    line-height: 25px;
  }
  #contentArticle li {
    font-size: 0.8rem;
  }
  #contentArticle h1 {
    font-size: 1.6rem;
    line-height: 35px;
  }
  #contentArticle h2 {
    font-size: 1.6rem;
    line-height: 35px;
    margin: 1rem !important;
  }
  #contentArticle h3 {
    font-size: 1.4rem;
    line-height: 25px;
    margin: 1rem !important;
  }
  #contentArticle h4 {
    font-size: 1.4rem;
    line-height: 35px;
    margin: 1rem !important;
  }
  #contentArticle h5 {
    font-size: 1.2rem;
    line-height: 25px;
    margin: 1rem !important;
  }
  #contentArticle h6 {
    font-size: 1rem;
    line-height: 25px;
    margin: 1rem !important;
  }
  .back-arrow {
    display: none;
  }
  #contentArticle .span-category {
    font-size: 14px;
  }
  #contentArticle .span-date {
    font-size: 12px;
    margin-left: 15px !important;
  }
  #other .img-other {
    height: 150px !important;
  }
  #other {
    margin-top: 70px;
  }
  #other h2 {
    font-size: 1.6rem !important;
    line-height: 25px !important;
  }
  #other p {
    font-size: 1rem !important;
    line-height: 25px !important;
  }
  #other h3 {
    font-size: 24px !important;
  }
}
@media (min-width: 577px) and (max-width: 960px) {
  h1, .h1 {
    font-size: 3.4rem;
    line-height: 64px;
  }
  h2, .h2 {
    font-size: 3.1rem;
    line-height: 58px;
  }
  h3, .h3 {
    font-size: 2.8rem;
    line-height: 50px;
  }
  h4, .h4 {
    font-size: 2.1rem;
    line-height: 40px;
  }
  h6, .h6 {
    font-size: 1.1rem;
  }
  .item {
    padding: 0rem !important;
    margin-top: 35px !important;
  }
  .menu li {
    margin: 7px !important;
    font-size: 16px !important;
  }
  #menu {
    width: 100%;
  }
  #menu .main-nav a {
    font-size: 2rem;
    padding: 0.5rem;
  }
  .tab {
    font-size: 1.2rem !important;
    margin: 10px;
    height: auto !important;
    width: auto !important;
  }
  .ul-none-decoration li {
    float: left;
  }
  .img-diapo {
    display: none;
  }
  .coder {
    display: none;
  }
  .panels {
    margin-top: 35px;
  }
  .clients-img {
    width: 100px;
    height: 50px;
  }
  .container-centre {
    margin: 0rem !important;
    margin-top: 0px !important;
  }
  .episode {
    grid-template-columns: 1fr !important;
    margin-bottom: 0px !important;
  }
  .episode__number {
    display: none;
    height: 0;
  }
  #map {
    height: 400px !important;
  }
  .img-project {
    height: 300px !important;
  }
  .img-header {
    display: none;
  }
}
@media (min-width: 961px) and (max-width: 1140px) {
  .item {
    padding: 0rem !important;
    margin-top: 35px !important;
  }
  .menu li {
    margin: 7px !important;
    font-size: 16px !important;
  }
  #menu {
    width: 100%;
  }
  #menu .main-nav a {
    font-size: 2rem;
    padding: 0.5rem;
  }
  .tab {
    font-size: 1.2rem !important;
    margin: 10px;
    height: auto !important;
    width: auto !important;
  }
  .tabc {
    margin: 10px;
    height: auto !important;
    width: auto !important;
  }
  .ul-none-decoration li {
    float: left;
  }
  .coder {
    display: none;
  }
  .panels {
    margin-top: 35px;
  }
  .clients-img {
    width: 100px;
    height: 50px;
  }
  .container-centre {
    margin: 0rem !important;
    margin-top: 0px !important;
  }
  .episode {
    grid-template-columns: 1fr !important;
    margin-bottom: 0px !important;
  }
  .episode__number {
    display: none;
    height: 0;
  }
  #map {
    height: 400px !important;
  }
  .episode__content {
    padding: 2.5rem !important;
  }
  .panel {
    height: 300px;
  }
  .code-html {
    left: -250px !important;
  }
  .code-css {
    left: -100px !important;
  }
  .code-js {
    left: -255px !important;
  }
  .img-project {
    height: 400px !important;
  }
  .img-header {
    display: none;
  }
}
@media (min-width: 1141px) and (max-width: 1399px) {
  .code-html {
    left: -250px !important;
  }
  .code-css {
    left: -200px !important;
  }
  .code-js {
    left: -255px !important;
  }
  .episode__number_img {
    border-radius: 10px;
    height: 100% !important;
  }
}
@media (min-width: 1141px) and (max-width: 1200px) {
  .img-header {
    display: none;
  }
}
@media (min-width: 1000px) and (max-width: 1400px) {
  .project-text-header {
    font-size: 3.2rem !important;
    margin-top: 3rem !important;
  }
}
@media (min-width: 1400px) and (max-width: 1600px) {
  .episode__number_img {
    height: 100% !important;
  }
}
* {
  font-family: "Poppins", sans-serif;
}

html {
  max-width: 100%;
}

body {
  width: 100%;
  overflow-x: hidden;
}

main {
  padding-top: 0;
}

section {
  margin-top: 200px;
}

footer {
  margin-top: 150px;
  margin-bottom: 38px;
}

.img-header {
  height: 80vh;
}

.btn-radius-primary {
  background-color: white;
  padding: 6px 46px 6px 46px;
  color: #1a1a1a;
  border-radius: 25px;
  font-weight: bold;
  font-size: 20px;
  border: 1px solid gray;
  z-index: 99;
  box-shadow: 1px 1px 4px 0px grey;
  cursor: pointer;
}

.btn-radius-primary-small {
  background-color: white;
  padding: 6px 16px 6px 16px;
  color: #1a1a1a;
  border-radius: 25px;
  font-weight: bold;
  font-size: 20px;
  border: 1px solid gray;
  z-index: 99;
  box-shadow: 1px 1px 4px 0px grey;
  cursor: pointer;
}

.btn-radius-primary:hover {
  background-color: #00C0F3;
  border: 1px solid transparent;
}
.btn-radius-primary:hover .button {
  color: white;
}

.btn-radius-primary-small:hover {
  background-color: #00C0F3;
  border: 1px solid transparent;
}
.btn-radius-primary-small:hover .button {
  color: white;
}

.button {
  text-decoration: none;
  color: #24252D;
  font-size: 18px;
}

.mobil {
  display: none;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  border-radius: 9999px;
  background-color: #aaaaaa;
}

/* Set button(top and bottom of the scrollbar) */
body::-webkit-scrollbar-button {
  display: none;
}

/* Firefox scrollbar styling */
body,
* {
  scrollbar-width: thin;
  scrollbar-color: #aaaaaa transparent;
}

body::-moz-scrollbar,
*::-moz-scrollbar {
  background-color: rgba(247, 245, 245, 0.733);
  width: 11px;
}

body::-moz-scrollbar-track,
*::-moz-scrollbar-track {
  background-color: rgb(114, 113, 113);
}

body::-moz-scrollbar-thumb,
*::-moz-scrollbar-thumb {
  background-color: #cecece;
  border-radius: 999999px;
  border: 4px solid #cecece;
}

body::-moz-scrollbar-button,
*::-moz-scrollbar-button {
  display: none;
}

::-moz-selection {
  background: #00C0F3;
  color: #fff;
}

::selection {
  background: #00C0F3;
  color: #fff;
}

.container-centre {
  margin: 6.5rem;
  margin-top: 100px;
}

.episode {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  margin-bottom: 150px;
}

.episode__number {
  font-weight: 600;
  position: sticky;
  top: 0px;
  padding: 3.5rem;
  bottom: 150px;
  height: 600px;
  transition: all 0.2s ease-in;
}

.episode__number_img {
  border-radius: 10px;
  height: 100%;
}

.episode__content {
  border-top: 2px solid #fff;
  display: grid;
  padding: 1rem;
  grid-gap: 10px;
}

.episode__content .title {
  font-weight: 600;
}

.episode__content .story {
  line-height: 26px;
}

#preloader.done {
  opacity: 0;
  visibility: hidden;
}

#preloader {
  height: 100%;
  width: 100%;
  background: white;
  visibility: visible;
  position: fixed;
  z-index: 10000;
  transition: margin-right 2s;
}

.loading {
  position: relative;
  top: 50%;
  left: 50%;
  width: 4rem;
  height: 4rem;
  transform-style: preserve-3d;
  perspective: 800px;
}
.loading .arc {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border-bottom: 3px solid #00C0F3;
}
.loading .arc:nth-child(1) {
  animation: rotate1 1.15s linear infinite;
}
.loading .arc:nth-child(2) {
  animation: rotate2 1.15s linear infinite;
}
.loading .arc:nth-child(3) {
  animation: rotate3 1.15s linear infinite;
}
.loading .arc:nth-child(1) {
  animation-delay: -0.8s;
}
.loading .arc:nth-child(2) {
  animation-delay: -0.4s;
}
.loading .arc:nth-child(3) {
  animation-delay: 0s;
}

@keyframes rotate1 {
  from {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(0);
  }
  to {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(1turn);
  }
}
@keyframes rotate2 {
  from {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(0);
  }
  to {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(1turn);
  }
}
@keyframes rotate3 {
  from {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(0);
  }
  to {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(1turn);
  }
}
.container-f {
  height: 590px;
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  touch-action: pan-y;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: grab;
}

.item-f {
  width: 64vw;
  height: 27vw;
  padding-left: 85px;
  opacity: 0;
  transition: opacity 2s;
}
.item-f > div:first-child {
  width: 100%;
  box-shadow: 0 70px 63px -60px #000;
  height: 100%;
  border-radius: 10px;
  background-size: cover;
}
.item-f > div:last-child {
  margin: 35px 20px 28px 20px;
}
.item-f.show {
  opacity: 1;
}

.journal h3 {
  font-size: 54px;
}

.article_link :hover h4 {
  color: #00c0f3 !important;
}
.article_link :hover p {
  color: #24252D !important;
}
.article_link :hover span {
  color: #24252D !important;
}
.article_link :hover img {
  transform: scale(1.05) translateZ(0);
}

.article h4 {
  font-size: 64px;
  font-weight: 700;
  color: #24252D;
}

.article .active {
  border-bottom: 2px solid #00c0f3;
  font-size: 26px;
}

.article a {
  color: #24252D;
  position: relative;
  padding-bottom: 2px;
  text-decoration: underline !important;
  text-underline-offset: 0.3em;
  text-decoration-thickness: 1px;
}

.article a:hover {
  text-decoration-color: #00C0F3 !important;
}

.article .img-author {
  height: 150px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  width: 125px;
  border-collapse: collapse;
  z-index: 1000;
  position: relative;
}

.img-diapo {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  border-collapse: collapse;
  position: relative;
  transition: all 0.2s ease-in-out;
}

.img-diapo-project {
  width: 100%;
  height: 420px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  border-collapse: collapse;
  position: relative;
  transition: all 0.2s ease-in-out;
}

.img-other {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  border-collapse: collapse;
  position: relative;
  box-shadow: 0 20px 20px -30px #000;
  transition: all 0.2s ease-in-out;
}

.img-other:hover {
  transform: scale(1.05) translateZ(0);
  cursor: pointer;
}

#other h3 {
  font-size: 34px;
}

#other a {
  color: #24252D;
  position: relative;
  padding-bottom: 2px;
  text-decoration: none !important;
}

#other a:hover {
  color: #00C0F3;
}

.breadcrumb {
  position: relative;
  z-index: 1;
  border-top: 1px solid #24252D;
  margin-top: 8px;
}

#expertise h3 {
  font-size: 64px;
}

#expertise .blockquote {
  padding: 1rem;
  border-left: 4px solid #2e2e2e;
  line-height: 1.2em;
  margin-left: 20px;
}

.method .wrapper {
  display: inline-flex;
}

.method .num {
  font-size: 25px;
  text-align: end !important;
  margin-left: 3rem;
  font-weight: 700;
}

.method .wrapper .icon {
  position: relative;
  background-color: #a3d5ff;
  border-radius: 50%;
  padding: 15px;
  margin: 10px;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.method .wrapper i {
  font-size: 32px;
  margin: 10px;
  color: #24252D;
}

.method .ul {
  padding-left: 2rem;
  list-style: square;
  text-align: left !important;
}

.method .ul li {
  margin-bottom: 0.8rem;
  font-size: 16px;
}

.method .border-dashed {
  border-left: dashed #00C0F3;
}

.method h6 {
  font-size: 28px;
  margin-bottom: 0rem;
}

.request-loader {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 150px;
  width: 150px;
  border-radius: 100%;
  background: #ffffff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
}
.request-loader span {
  position: relative;
  font-size: 72px;
  top: 5px;
  left: -5px;
}
.request-loader::after {
  opacity: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -8px;
  left: -8px;
  right: 0;
  bottom: 0;
  content: "";
  height: 100%;
  width: 100%;
  border: 8px solid rgba(0, 0, 0, 0.2);
  border-radius: 100%;
  animation-name: ripple;
  animation-duration: 3s;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  z-index: -1;
}
.request-loader::before {
  opacity: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -8px;
  left: -8px;
  right: 0;
  bottom: 0;
  content: "";
  height: 100%;
  width: 100%;
  border: 8px solid rgba(0, 0, 0, 0.2);
  border-radius: 100%;
  animation-name: ripple;
  animation-duration: 3s;
  animation-delay: 0.5s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  z-index: -1;
}

@keyframes ripple {
  from {
    opacity: 1;
    transform: scale3d(0.75, 0.75, 1);
  }
  to {
    opacity: 0;
    transform: scale3d(1.5, 1.5, 1);
  }
}
.card-body {
  padding: 50px;
  display: flex;
  flex-flow: wrap;
  font-family: "Ubuntu", sans-serif;
}
.card-body * {
  box-sizing: border-box;
}

.card-container {
  flex: 300px;
  margin: 30px;
}
.card-container .card-metho {
  font-weight: bold;
  position: relative;
  width: 100%;
}
.card-container .card-metho a {
  padding: 30px;
  width: 100%;
  height: 400px;
  border: 2px solid black;
  background: white;
  text-decoration: none;
  border-radius: 25px;
  color: black;
  display: block;
  transition: 0.25s ease;
}
.card-container .card-metho a:hover {
  transform: translate(-30px, -30px);
  border-color: #5bc0eb;
}
.card-container .card-metho a:hover .card--display {
  display: none;
}
.card-container .card-metho a:hover .card--hover {
  display: block;
}
.card-container .card-metho a .card--display h2 {
  margin: 60px 0 0;
}
.card-container .card-metho a .card--hover {
  display: none;
}
.card-container .card-metho a .card--hover h2 {
  margin: 20px 0;
}
.card-container .card-metho a .card--hover p {
  font-weight: normal;
  line-height: 1.5;
}
.card-container .card-metho a .card--hover p.link {
  margin: 20px 0 0;
  font-weight: bold;
  color: #5bc0eb;
}
.card-container .card-metho .card--border {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: 2px dashed black;
  border-radius: 25px;
  z-index: -1;
}
.card-container .card-metho.card--dark a {
  color: white;
  background-color: #24252D;
  border-color: #24252D;
}
.card-container .card-metho.card--dark a .card--hover .link {
  color: #5bc0eb;
}

.text-big {
  font-size: 30px;
}

.text-huge {
  font-size: 40px;
}

.text-small {
  font-size: 18px;
}

.text-tiny {
  font-size: 10px;
}

.technologies {
  box-shadow: 0px 2px 20px 4px rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  padding: 5px 20px 5px 20px;
  margin: 5px 5px 5px 5px;
  font-size: 1rem;
  font-weight: 500;
  color: #00C0F3;
  height: auto;
  display: inline-block;
}

.screenshot {
  max-width: 399px;
  margin: 15px;
  border-radius: 15px;
  box-shadow: 7px 7px 2px 1px rgba(29, 29, 29, 0.2);
}

.notselectable {
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.screenshot:hover {
  box-shadow: 2px 2px 2px 1px rgba(102, 102, 102, 0.2);
}

.screenshots {
  margin-top: 15px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.grande {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
}

.grande img {
  border: 4px white solid;
  border-radius: 5px;
  width: 95%;
}

.grande .divScreenshot {
  color: white;
  font-size: calc(12px + 1.25vw);
}

.petite,
.grande {
  cursor: pointer;
}

.next {
  background: none;
  border: none;
  font-size: 50px;
  color: rgb(255, 255, 255);
  padding: 20px;
}

.divScreenshot {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 20px;
}

.btn-radius {
  border-radius: 30px !important;
}

.btn {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: -0.015em;
  color: #24252D;
  border: 1px solid;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-radius: 6px;
  height: 50px;
  transition: background-color 0.1s, border ease-in-out, transform 0.1s, box-shadow 5ms, border-color 0.25s;
  border-color: #dfdfe0;
  background: #fff;
  padding-left: 30px;
  padding-right: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn:hover {
  border-color: #00C0F3;
  background: #00C0F3;
  color: #fff !important;
}

.btn span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-black {
  color: #fff !important;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: -0.015em;
  color: #24252D;
  border: 1px solid;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-radius: 6px;
  height: 50px;
  transition: background-color 0.1s, border ease-in-out, transform 0.1s, box-shadow 5ms, border-color 0.25s;
  border-color: #24252D;
  background: #24252D;
  padding-left: 30px;
  padding-right: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-black:hover {
  border-color: #dfdfe0;
  background: #fff;
  color: #24252D !important;
}

.btn-black span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-white {
  color: #24252D !important;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: -0.015em;
  color: #24252D;
  border: 1px solid;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-radius: 6px;
  height: 50px;
  transition: background-color 0.1s, border ease-in-out, transform 0.1s, box-shadow 5ms, border-color 0.25s;
  border-color: #24252D;
  background: #fff;
  padding-left: 30px;
  padding-right: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-white:hover {
  border-color: #24252D;
  background: #24252D;
  color: #fff !important;
}

.btn-white span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-round {
  color: #fff !important;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: -0.015em;
  color: #24252D;
  border: 1px solid;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-radius: 30px;
  height: 50px;
  transition: background-color 0.1s, border ease-in-out, transform 0.1s, box-shadow 5ms, border-color 0.25s;
  border-color: #24252D;
  background: #24252D;
  padding-left: 15px;
  padding-right: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-round:hover {
  border-color: #00C0F3;
  background: #00C0F3;
  color: #fff !important;
}

.btn-round span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ico {
  margin: 0 auto;
  text-align: center;
  width: 54px;
  height: 54px;
  top: 50%;
  transform: translateY(-50%);
}
.ico .circle {
  background: #00C0F3;
  border-radius: 50%;
  display: inline-block;
  height: 54px;
  width: 54px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  transform-origin: 0%;
}
.ico .circle.circle-top {
  height: 18px;
  width: 22.5px;
  animation: blob-1-anim 3s cubic-bezier(0.77, 0, 0.175, 1) infinite;
  z-index: 0;
  top: 0;
}
.ico .circle.circle-bottom {
  height: 18px;
  width: 22.5px;
  animation: blob-2-anim 3s cubic-bezier(0.77, 0, 0.175, 1) infinite;
  z-index: 9;
  bottom: 0px;
}
.ico .st-arrow {
  fill: #ffffff;
  animation: scrolly 3s cubic-bezier(0.77, 0, 0.175, 1) forwards infinite;
  perspective: 9000px;
  transform: translateZ(0);
  transform-origin: bottom;
}

.svg {
  z-index: 9;
  position: relative;
}

@keyframes blob-1-anim {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  14% {
    transform: translateX(-50%) translateY(-8px);
  }
  24% {
    transform: translateX(-50%) translateY(0);
  }
  100% {
    transform: translateX(-50%) translateY(0);
  }
}
@keyframes blob-2-anim {
  0% {
    transform: scale(1) translate(-50%, 10px);
  }
  30% {
    transform: scale(1) translate(-50%, 10px);
  }
  70% {
    transform: scale(1) translate(-50%, 10px);
  }
  95% {
    transform: scale(1) translate(-50%, 26px);
  }
  100% {
    transform: scale(1) translate(-50%, 10px);
  }
}
@keyframes scrolly {
  0% {
    transform: translate3d(0, -150%, 0) rotateX(90deg) scale(0.5) skewX(3deg);
  }
  30% {
    transform: translate3d(0, 0, 0) rotateX(0deg) scale(1) skewX(0deg);
  }
  70% {
    transform: translate3d(0, 0, 0) rotateX(0deg) scale(1) skewX(0deg);
  }
  95% {
    transform: translate3d(0, 50%, 0) rotateX(-90deg) scale(0.5) skewX(-3deg);
  }
  100% {
    transform: translate3d(0, 50%, 0) rotateX(-90deg) scale(0.5) skewX(-3deg);
  }
}
.accordion-item {
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgb(0, 0, 0);
  border-bottom: 1px solid rgb(0, 0, 0);
  border-right: 1px solid rgba(0, 0, 0, 0);
  border-left: 1px solid rgba(0, 0, 0, 0);
}

.accordion-item:first-of-type {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.accordion-item:first-of-type {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.accordion-button {
  background-color: rgba(255, 255, 255, 0) !important;
  padding: 2rem 1.25rem !important;
}

.accordion-button:focus {
  z-index: 0 !important;
  border-color: rgba(0, 0, 0, 0) !important;
  outline: 0 !important;
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0) !important;
}

.accordion-button:not(.collapsed) {
  color: #00C0F3;
  background-color: #e7f1ff;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0) !important;
}

:root {
  --primary-color: $blue;
  --secondary-color: #e6eef9;
}

.tabs {
  display: flex;
  position: relative;
  background-color: #ebf1fc;
  padding: 0.4rem;
  border-radius: 99px;
}
.tabs * {
  z-index: 2;
}

input[type=radio] {
  display: none;
}

.tab {
  display: flex;
  align-items: left;
  justify-content: left;
  height: 34px;
  width: 200px;
  font-size: 1.25rem;
  font-weight: 500;
  border-radius: 99px;
  cursor: pointer;
  transition: color 0.15s ease-in;
}

input[type=radio]:checked + label {
  color: #00C0F3 !important;
  text-decoration-line: underline;
  text-underline-offset: 6px;
}

/* colors */
/* tab setting */
/* breakpoints */
/* selectors relative to radio inputs */
#carousel-menu-small {
  display: none;
}

.tabc {
  display: flex;
  align-items: left;
  justify-content: left;
  width: 200px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 99px;
  cursor: pointer;
  transition: color 0.15s ease-in;
  margin-top: 0.8rem;
  line-height: normal;
  z-index: 1200;
}

.panels {
  width: 100%;
  overflow: hidden;
  padding: 10px;
}

.panel {
  border-radius: 10px;
  display: none;
  animation: fadein 0.8s;
  height: 550px;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.radio {
  display: none;
}

.menu li {
  cursor: pointer;
  display: inline-block;
  margin: 20px;
  font-weight: 700;
  font-size: 20px;
  transition: ease-in-out 0.1s;
}

ul li.active {
  border-bottom: 2px solid #00c0f3;
}

.item {
  color: #fff;
  width: 100%;
  display: block;
  margin: 1%;
  margin-top: 50px;
  transition: all 0.2s ease-in-out;
  padding: 2rem;
}

.item div {
  cursor: pointer;
}

.item img {
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 450px;
}

.figure-mobile {
  display: none;
}

.figure-desktop {
  display: block;
}

.item:hover {
  transform: scale(1.02) translateZ(0);
  cursor: pointer;
}

.item .div-img:hover {
  box-shadow: 0 70px 63px -60px #000;
}

.menu li i {
  font-size: 0.7em;
  margin: 4px;
  color: #00c0f3;
  vertical-align: top;
}

.form {
  display: none;
}

#map {
  height: 95vh;
}

#map-canvas-0 {
  border-radius: 15px;
}

.carousel-inner {
  border-radius: 10px;
}

.container-team {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
}

.border {
  height: 369px;
  width: 290px;
  background: transparent;
  border-radius: 10px;
  transition: border 1s;
  position: relative;
}

.border:hover {
  border: 1px solid #fff;
}

.card-tt {
  height: 279px;
  width: 200px;
  margin: 20px;
  background: #808080;
  border-radius: 10px;
  transition: background 0.8s;
  overflow: hidden;
  box-shadow: 0 70px 63px -60px #000;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.card-tts {
  height: 250px;
  width: 200px;
  margin: 20px;
  background: #808080;
  border-radius: 10px;
  transition: background 0.8s;
  overflow: hidden;
  box-shadow: 0 70px 63px -60px #000;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.card-tts p {
  line-height: 30px;
  font-weight: 400;
  font-size: 1rem;
}

.accordion-item-job {
  border: solid 1px #24252D;
  border-radius: 10px;
  cursor: pointer;
  margin-bottom: 10px;
}

.accordion-item-job :hover h6 {
  color: #00c0f3;
}

.list-group-item {
  border: 0 !important;
  font-size: 1.125rem !important;
}

.accordion-button {
  padding: 0.8rem 2rem !important;
}

.block-job li {
  font-size: 1rem;
  line-height: 32px;
  font-weight: 400 !important;
  margin-bottom: 0rem !important;
}

.block-job li::marker {
  color: #00c0f3;
}

.align-right-job {
  right: 0;
}

input[type=file] {
  display: none;
}

.hidden {
  display: none;
}

.red {
  color: #ff008f !important;
}

.green {
  color: #1bd900 !important;
}

.custom-file-upload {
  border: 1px solid #dbdbdb;
  display: inline-block;
  padding: 10px 12px;
  cursor: pointer;
  width: 100%;
  border-radius: 10px;
  color: #24252d;
  text-align: center;
  font-weight: 600;
}

.fs-16 {
  font-size: 16px !important;
}

.fs-14 {
  font-size: 14px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.smaller {
  color: #cccccc !important;
  font-size: 14px;
}

.form-check-input:checked {
  background-color: #2ecbf5;
  border-color: #00c0f3;
}

.form-select {
  border: 0px solid #ffffff;
  border-bottom: 2px solid #cccccc;
  border-radius: 0px !important;
  color: #00c0f3;
  font-weight: 500;
}

.form-select:focus {
  outline: 0 !important;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0) !important;
}

.ul-jobs-desc li {
  font-size: 1.125rem !important;
  margin-bottom: 0px !important;
}

.ul-jobs-desc li::marker {
  color: #00c0f3 !important;
}

#customer_cards {
  margin-top: 5rem;
  margin-bottom: 20rem;
  display: grid;
  place-items: center;
  grid-template-columns: repeat(4, 1fr);
}

#customer_cards h2 {
  font-size: 1.5rem;
  font-family: var(--font-title);
  color: white;
  line-height: 1.1;
}

#customer_cards p {
  font-family: var(--font-text);
  font-size: 12px;
  line-height: 1.5;
  color: white;
}

#customer_cards .flow > * + * {
  margin-top: var(--flow-space, 1em);
}

/* CARD COMPONENT */
#customer_cards .card {
  display: grid;
  place-items: center;
  width: 80vw;
  max-width: 16.875rem;
  margin: 1rem;
  height: 24.125rem;
  overflow: hidden;
  border-radius: 0.625rem;
  box-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.25);
}

#customer_cards .card > * {
  grid-column: 1/2;
  grid-row: 1/2;
}

#customer_cards .card__background {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
  height: 100%;
}

#customer_cards .card__content {
  --flow-space: 0.9375rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: flex-end;
  height: 55%;
  padding: 5% 1.25rem 1.875rem;
  background: rgb(2, 0, 36);
  background: linear-gradient(180deg, rgba(2, 0, 36, 0.9388130252) 0%, rgba(1, 85, 119, 0.8995973389) 80%, rgba(1, 123, 156, 0.7735469188) 100%);
}

#customer_cards .card__content--container {
  --flow-space: 1.25rem;
}

#customer_cards .card__title {
  position: relative;
  width: fit-content;
  width: -moz-fit-content;
  /* Prefijo necesario para Firefox  */
}

#customer_cards .card__title::after {
  content: "";
  position: absolute;
  height: 0.3125rem;
  width: calc(100% + 1.25rem);
  bottom: -0.75rem;
  left: -1.25rem;
  background-color: var(--brand-color);
}

#customer_cards .card__button {
  padding: 0.75em 1.6em;
  width: fit-content;
  width: -moz-fit-content;
  /* Prefijo necesario para Firefox  */
  font-variant: small-caps;
  font-weight: bold;
  border-radius: 0.45em;
  border: none;
  background-color: var(--brand-color);
  font-family: var(--font-title);
  font-size: 1.125rem;
  color: var(--black);
}

#customer_cards .card__button:focus {
  outline: 2px solid black;
  outline-offset: -5px;
}

@media (min-width: 800px) and (max-width: 1200px) {
  #customer_cards {
    grid-template-columns: repeat(2, 1fr);
    height: 100%;
  }
}
@media (min-width: 200px) and (max-width: 799px) {
  #customer_cards .flow > * + * {
    margin-top: 0px !important;
  }
  #customer_cards {
    grid-template-columns: repeat(1, 1fr);
    height: 100%;
  }
  #customer_cards .card {
    max-width: 16.875rem;
    height: 22.125rem;
  }
  #customer_cards h2 {
    font-size: 1rem;
  }
  #customer_cards p {
    font-size: 12px !important;
  }
  #customer_cards {
    margin-bottom: 10rem;
  }
}
@media (any-hover: hover) and (any-pointer: fine) {
  #customer_cards .card__content {
    transform: translateY(62%);
    transition: transform 500ms ease-out;
    transition-delay: 500ms;
  }
  #customer_cards .card__title::after {
    opacity: 0;
    transform: scaleX(0);
    transition: opacity 1000ms ease-in, transform 500ms ease-out;
    transition-delay: 500ms;
    transform-origin: right;
  }
  #customer_cards .card__background {
    transition: transform 500ms ease-in;
  }
  #customer_cards .card__content--container > :not(.card__title),
  #customer_cards .card__button {
    opacity: 0;
    transition: transform 500ms ease-out, opacity 500ms ease-out;
  }
  #customer_cards .card:hover,
  #customer_cards .card:focus-within {
    transform: scale(1.05);
    transition: transform 500ms ease-in;
  }
  #customer_cards .card:hover .card__content,
  #customer_cards .card:focus-within .card__content {
    transform: translateY(0);
    transition: transform 500ms ease-in;
  }
  #customer_cards .card:focus-within .card__content {
    transition-duration: 0ms;
  }
  #customer_cards .card:hover .card__background,
  #customer_cards .card:focus-within .card__background {
    transform: scale(1.3);
  }
  #customer_cards .card:hover .card__content--container > :not(.card__title),
  #customer_cards .card:hover .card__button,
  #customer_cards .card:focus-within .card__content--container > :not(.card__title),
  #customer_cards .card:focus-within .card__button {
    opacity: 1;
    transition: opacity 500ms ease-in;
    transition-delay: 1000ms;
  }
  #customer_cards .card:hover .card__title::after,
  #customer_cards .card:focus-within .card__title::after {
    opacity: 1;
    transform: scaleX(1);
    transform-origin: left;
    transition: opacity 500ms ease-in, transform 500ms ease-in;
    transition-delay: 500ms;
  }
}
.egg:hover {
  animation: shake 1.2s infinite;
}

@keyframes shake {
  35% {
    transform: rotate(8deg);
  }
  40% {
    transform: rotate(-8deg);
  }
  45% {
    transform: rotate(8deg);
  }
  50% {
    transform: rotate(-8deg);
  }
}
.break {
  transform: scale(0) !important;
}
