.tab-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.tab-wrap .tab {
  float: left;
  width: 18%;
}
.tab-wrap .tab .tablinks {
  display: block;
  background-color: inherit;
  color: var(--color-secondary);
  padding: 13px 20px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-size: 15px;
  position: relative;
}
.tab-wrap .tab .tablinks.active {
  position: relative;
  background-color: var(--color-secondary--light);
}
.tab-wrap .tab .tablinks.active:before {
  content: "";
  position: absolute;
  left: -2px;
  top: 0;
  height: 100%;
  border-left: 2px solid var(--color-secondary);
  z-index: 1;
}
.tab-wrap .tab .tablinks:after {
  content: "";
  position: absolute;
  left: -2px;
  top: 0;
  height: 100%;
  border-left: 2px solid #dfdfdf;
}
.tab-wrap .tab .tablinks:focus {
  outline: none !important;
}
.tab-wrap .tab .tablinks:hover {
  background-color: var(--color-secondary--light);
}
.tab-wrap .tabcontent {
  float: left;
  padding: 0px 30px;
  width: 70%;
  border-left: none;
}
.tab-wrap .tabcontent span,
.tab-wrap .tabcontent a {
  color: var(--color-secondary);
}
.tab-wrap .tabcontent p {
  font-size: 16px;
}
.tab-wrap .tab-list {
  padding-left: 20px;
  margin-top: 15px;
}
.tab-wrap .tab-list li {
  padding-bottom: 1rem;
}

@media only screen and (max-width: 768px) {
  .tab-wrap {
    flex-direction: column;
  }
  .tab-wrap .tab {
    float: left;
    width: 100%;
    margin-bottom: 25px;
  }
  .tab-wrap .tabcontent {
    padding: 0;
    width: 100%;
  }
}
#navbar {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  width: 100%;
  z-index: 100;
  transition: top 0.3s;
}
#navbar .container {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}
#navbar .navbar-brand {
  font-size: 16px;
}
#navbar .navbar-brand a {
  color: var(--color-font--light);
}
#navbar .navbar-brand a span {
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 18px;
}
#navbar .navbar-toggle {
  display: none;
}
#navbar .navbar-toggle .container-button {
  display: inline-block;
  cursor: pointer;
}
#navbar .navbar-toggle .bar1,
#navbar .navbar-toggle .bar2,
#navbar .navbar-toggle .bar3 {
  width: 35px;
  height: 4px;
  margin: 6px 0;
  transition: 0.4s;
  background: -webkit-linear-gradient(135deg, #2dc882, #47aa86, #e38c8f);
}
#navbar .navbar-toggle .change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-7px, 5px);
  transform: rotate(-45deg) translate(-7px, 5px);
}
#navbar .navbar-toggle .change .bar2 {
  opacity: 0;
}
#navbar .navbar-toggle .change .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  transform: rotate(45deg) translate(-8px, -8px);
}
#navbar.navbar--show {
  background: -webkit-linear-gradient(
    135deg,
    var(--color-nav--transparent-dark) 0%,
    var(--color-nav--transparent) 100%
  );
  z-index: 20 !important;
  box-shadow: 0 10px 30px -10px var(--color-shadow);
}
#navbar #nav .navbar-items {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
#navbar #nav .navbar-items .navbar-link {
  padding: 0.5rem 1rem;
  font-size: 15px;
}
#navbar #nav .navbar-items .navbar-link a {
  color: var(--color-font--light);
  letter-spacing: 1.5px;
  text-transform: capitalize;
}
#navbar #nav .navbar-items .navbar-link a:hover {
  color: var(--color-secondary);
}
#navbar #nav .navbar-items .app-toggle {
  margin-top: 1rem;
}

@media only screen and (max-width: 768px) {
  #navbar .navbar-toggle {
    display: flex;
    justify-content: flex-end;
    padding: 2rem;
    position: absolute;
    right: 0;
    cursor: pointer;
  }
  #navbar .navbar-brand {
    margin: 0 2rem;
  }
  #navbar #nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
  }
  #navbar #nav .navbar-items {
    display: none;
    flex-direction: column;
    align-items: center !important;
  }
  #navbar #nav .navbar-items.navbar-show--toggle {
    display: flex;
    background: var(--color-background--dark);
    padding: 5rem 0 3rem;
    margin: 0;
  }
  .navbar-items-right {
    margin-left: 0;
  }
}
@media only screen and (min-width: 768px) {
  #navbar {
    justify-content: space-evenly;
  }
  .app-toggle {
    margin-top: 0;
    margin-left: 2rem;
  }
}
#preloader {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-background);
}
#preloader .cup {
  position: absolute;
  z-index: 10;
  width: 85px;
  height: 80px;
  background: -webkit-linear-gradient(180deg, #ffffff, #e0e0e0);
  border: 3px solid #fffafd;
  border-radius: 10% 10% 50% 50%;
}
#preloader .cup .handle {
  position: absolute;
  height: 25px;
  width: 20px;
  background: transparent;
  border-radius: 50% 30%;
  left: 90%;
  top: 5%;
  z-index: -1;
  border: 11px solid #fffafd;
}
#preloader .cup .coffee {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  width: 75px;
  height: 10px;
  border-radius: 50%;
  border: 5px solid #fffafd;
  background: rgba(0, 0, 0, 0.6784313725);
}
#preloader .cup .left-shadow {
  left: -32px;
  top: -135px;
  border-right: 20px solid rgba(54, 52, 52, 0.0901960784);
  animation: shadow 3s linear 0.2s infinite;
  opacity: 0;
}
#preloader .cup .left-shadow.shadow {
  position: absolute;
  height: 46px;
  width: 50px;
  border-radius: 50%;
  z-index: 1;
}
#preloader .cup .left-shadow.shadow:after {
  content: "";
  position: absolute;
  height: 40px;
  width: 50px;
  border-radius: 50%;
}
#preloader .cup .left-shadow:after {
  top: 35px;
  left: 30px;
  border-left: 20px solid rgba(54, 52, 52, 0.0901960784);
}
#preloader .cup .right-shadow {
  left: 7px;
  top: -80px;
  border-right: 20px solid rgba(54, 52, 52, 0.0901960784);
  animation: shadow-2 2s linear 0.4s infinite;
  opacity: 0;
}
#preloader .cup .right-shadow.shadow {
  position: absolute;
  height: 46px;
  width: 50px;
  border-radius: 50%;
  z-index: 1;
}
#preloader .cup .right-shadow.shadow:after {
  content: "";
  position: absolute;
  height: 40px;
  width: 50px;
  border-radius: 50%;
}

.animate--navbar {
  position: relative;
  -webkit-animation: 1s toBottom;
  -webkit-animation-delay: 0s;
  -webkit-animation-fill-mode: forwards;
  animation: 1s toBottom;
  animation-delay: 0s;
  animation-fill-mode: forwards;
  visibility: hidden;
}

.animate--navbar:nth-child(2) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.animate--navbar:nth-child(3) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.animate--navbar:nth-child(4) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.animate--navbar:nth-child(5) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.animate--navbar:nth-child(6) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.animate--general {
  -webkit-animation: 1s fadeInUp;
  -webkit-animation-delay: 1.4s;
  -webkit-animation-fill-mode: forwards;
  animation: 1s fadeInUp;
  animation-delay: 1.4s;
  animation-fill-mode: forwards;
  visibility: hidden;
}

.animate--general:nth-child(2) {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

@media screen and (max-width: 768px) {
  .animate--general {
    -webkit-animation: 1s fadeInUp;
    -webkit-animation-delay: 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation: 1s fadeInUp;
    animation-delay: 0.3s;
    animation-fill-mode: forwards;
    visibility: hidden;
  }
  .animate--general:nth-child(2) {
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
  }
}
.container-text h2 span.typed-text {
  font-weight: normal;
  color: var(--color-secondary);
}

.container-text h2 span.cursor {
  display: inline-block;
  background-color: #ccc;
  margin-left: 0.1rem;
  width: 3px;
  animation: blink 1s infinite;
}

.container-text h2 span.cursor.typing {
  animation: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
}

a {
  color: #ff6b6b;
}

a:hover {
  color: #ff9a9a;
  text-decoration: none;
}

.example-header {
  background: #3d4351;
  color: #fff;
  font-weight: 300;
  padding: 3em 1em;
  text-align: center;
}

.example-header h1 {
  color: #fff;
  font-weight: 300;
  margin-bottom: 20px;
}

.example-header p {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
}

.container-fluid .row {
  padding: 0 0 4em 0;
}

.container-fluid .row:nth-child(even) {
  background: #f1f4f5;
}

.example-title {
  text-align: center;
  margin-bottom: 60px;
  padding: 3em 0;
  border-bottom: 1px solid #e4eaec;
}

.example-title p {
  margin: 0 auto;
  font-size: 16px;
  max-width: 400px;
}

/*================================== TIMELINE ==================================*/
/*-- GENERAL STYLES ------------------------------*/
.timeline {
  line-height: 1.4em;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.timeline h1,
.timeline h2,
.timeline h3,
.timeline h4,
.timeline h5,
.timeline h6 {
  line-height: inherit;
}

/*----- TIMELINE ITEM -----*/
.timeline-item {
  padding-left: 40px;
  position: relative;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

/*----- TIMELINE INFO -----*/
.timeline-info {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  margin: 0 0 0.5em 0;
  text-transform: uppercase;
  white-space: nowrap;
}

/*----- TIMELINE MARKER -----*/
.timeline-marker {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15px;
}

.timeline-marker:before {
  background: #ff6b6b;
  border: 3px solid transparent;
  border-radius: 100%;
  content: "";
  display: block;
  height: 15px;
  position: absolute;
  top: 4px;
  left: 0;
  width: 15px;
  transition: backround 0.3s ease-in-out, border 0.3s ease-in-out;
}

.timeline-marker:after {
  content: "";
  width: 3px;
  background: #ccd5db;
  display: block;
  position: absolute;
  top: 25px;
  bottom: 0;
  left: 9px;
}

.timeline-item:last-child .timeline-marker:after {
  content: none;
}

.timeline-item:not(.period):hover .timeline-marker:before {
  background: transparent;
  border: 3px solid #ff6b6b;
}

/*----- TIMELINE CONTENT -----*/
.timeline-content {
  padding-bottom: 40px;
}

.timeline-content p:last-child {
  margin-bottom: 0;
}

/*----- TIMELINE PERIOD -----*/
.period {
  padding: 0;
}

.period .timeline-info {
  display: none;
}

.period .timeline-marker:before {
  background: transparent;
  content: "";
  width: 20px;
  height: auto;
  border: none;
  border-radius: 0;
  top: 0;
  bottom: 30px;
  position: absolute;
  border-top: 3px solid #ccd5db;
  border-bottom: 3px solid #ccd5db;
}

.period .timeline-marker:after {
  content: "";
  height: 32px;
  top: auto;
}

.period .timeline-content {
  padding: 40px 0 70px;
}

.period .timeline-title {
  margin: 0;
}

/*---------------------------------------------- MOD: TIMELINE CENTERED ----------------------------------------------*/
@media (min-width: 992px) {
  .timeline-centered,
  .timeline-centered .timeline-item,
  .timeline-centered .timeline-info,
  .timeline-centered .timeline-marker,
  .timeline-centered .timeline-content {
    display: block;
    margin: 0;
    padding: 0;
  }
  .timeline-centered .timeline-item {
    padding-bottom: 40px;
    overflow: hidden;
  }
  .timeline-centered .timeline-marker {
    position: absolute;
    left: 50%;
    margin-left: -7.5px;
  }
  .timeline-centered .timeline-info,
  .timeline-centered .timeline-content {
    width: 45%;
  }
  .timeline-centered > .timeline-item:nth-child(odd) .timeline-info {
    float: left;
    text-align: right;
    padding-right: 30px;
  }
  .timeline-centered > .timeline-item:nth-child(odd) .timeline-content {
    float: right;
    text-align: left;
    padding-left: 30px;
  }
  .timeline-centered > .timeline-item:nth-child(even) .timeline-info {
    float: right;
    text-align: left;
    padding-left: 30px;
  }
  .timeline-centered > .timeline-item:nth-child(even) .timeline-content {
    float: left;
    text-align: right;
    padding-right: 30px;
  }
  .timeline-centered > .timeline-item.period .timeline-content {
    float: none;
    padding: 0;
    width: 100%;
    text-align: center;
  }
  .timeline-centered .timeline-item.period {
    padding: 50px 0 90px;
  }
  .timeline-centered .period .timeline-marker:after {
    height: 30px;
    bottom: 0;
    top: auto;
  }
  .timeline-centered .period .timeline-title {
    left: auto;
  }
}
::-webkit-scrollbar {
  width: 12px;
  background-color: #e3d6d8;
}

::-webkit-scrollbar-thumb {
  background-color: #3d4351;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #3d4351;
  border: 1px solid #3d4351;
}
::-webkit-scrollbar-thumb:active {
  background-color: #3d4351;
  border: 1px solid #3d4351;
}

canvas {
  filter: blur(1px);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.arrow {
  position: absolute;
  bottom: 15%;
  left: 47%;
  transform: translate(-50%, -50%);
}

.arrow a {
  display: block;
  padding: 1rem;
}

.arrow a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  border-left: 3px solid var(--color-font--dark);
  border-bottom: 3px solid var(--color-font--dark);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb05 1.5s infinite;
  animation: sdb05 1.5s infinite;
  box-sizing: border-box;
}

@media only screen and (min-width: 1024px) {
  .arrow {
    bottom: 10%;
  }
}
.btn {
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-light);
  border-radius: 1rem;
  color: var(--color-gray-medium);
  padding: 0.5rem;
  text-transform: lowercase;
  margin-top: 1rem;
  cursor: pointer;
}

.btn-primary {
  background-color: transparent !important;
  border: 1px solid;
  border-color: var(--color-secondary) !important;
  color: var(--color-secondary) !important;
  border-radius: 5px;
  text-align: center;
  font-size: 1rem;
  letter-spacing: 0.3px;
  padding: 0.5rem !important;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--color-secondary--light) !important;
}

.btn--block {
  display: block;
  width: 100%;
}

.app-contact--button {
  padding: 1rem 2rem !important;
}

.app-contact--button a {
  text-decoration: none;
  font-size: 1.1rem !important;
  color: var(--color-secondary) !important;
}

.button-container {
  display: flex;
  flex-flow: wrap;
  height: 100%;
  justify-content: center;
}

.glass-btn {
  width: 90px;
  height: 90px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 1em;
  cursor: pointer;
  transition: all 0.3s;
}

.glass-btn:hover {
  background-color: #f5f5f5;
  transform: translateY(-5px);
  transition: all 0.3s;
}

.glass-btn.blue-btn {
  -webkit-box-shadow: 0px 20px 20px -17px rgba(0, 111, 255, 0.53);
  -moz-box-shadow: 0px 20px 20px -17px rgba(0, 111, 255, 0.53);
  box-shadow: 0px 20px 20px -17px rgba(0, 111, 255, 0.53);
}

.glass-btn.blue-btn:hover {
  -webkit-box-shadow: 0px 20px 35px -16px rgba(0, 111, 255, 0.65);
  -moz-box-shadow: 0px 20px 35px -16px rgba(0, 111, 255, 0.65);
  box-shadow: 0px 20px 35px -16px rgba(0, 111, 255, 0.65);
}

.glass-btn.red-btn {
  -webkit-box-shadow: 0px 20px 20px -17px rgba(255, 16, 39, 0.5);
  -moz-box-shadow: 0px 20px 20px -17px rgba(255, 16, 39, 0.5);
  box-shadow: 0px 20px 20px -17px rgba(255, 16, 39, 0.5);
}

.glass-btn.red-btn:hover {
  -webkit-box-shadow: 0px 20px 35px -16px rgba(255, 16, 39, 0.57);
  -moz-box-shadow: 0px 20px 35px -16px rgba(255, 16, 39, 0.57);
  box-shadow: 0px 20px 35px -16px rgba(255, 16, 39, 0.57);
}

.glass-btn.yellow-btn {
  -webkit-box-shadow: 0px 20px 20px -17px rgb(241, 191, 34);
  -moz-box-shadow: 0px 20px 20px -17px rgb(241, 191, 34);
  box-shadow: 0px 20px 20px -17px rgb(241, 191, 34);
}

.glass-btn.yellow-btn:hover {
  -webkit-box-shadow: 0px 20px 35px -16px rgb(230, 163, 41);
  -moz-box-shadow: 0px 20px 35px -16px rgb(230, 163, 41);
  box-shadow: 0px 20px 35px -16px rgb(230, 163, 41);
}

.glass-btn.orange-btn {
  -webkit-box-shadow: 0px 20px 20px -17px rgb(244, 149, 104);
  -moz-box-shadow: 0px 20px 20px -17px rgb(244, 149, 104);
  box-shadow: 0px 20px 20px -17px rgb(244, 149, 104);
}

.glass-btn.orange-btn:hover {
  -webkit-box-shadow: 0px 20px 35px -16px rgb(228, 74, 27);
  -moz-box-shadow: 0px 20px 35px -16px rgb(228, 74, 27);
  box-shadow: 0px 20px 35px -16px rgb(228, 74, 27);
}

.glass-btn.purple-btn {
  -webkit-box-shadow: 0px 20px 20px -17px rgb(153, 93, 242);
  -moz-box-shadow: 0px 20px 20px -17px rgb(153, 93, 242);
  box-shadow: 0px 20px 20px -17px rgb(153, 93, 242);
}

.glass-btn.purple-btn:hover {
  -webkit-box-shadow: 0px 20px 35px -16px rgb(85, 58, 125);
  -moz-box-shadow: 0px 20px 35px -16px rgb(85, 58, 125);
  box-shadow: 0px 20px 35px -16px rgb(85, 58, 125);
}

.glass-btn.green-btn {
  -webkit-box-shadow: 0px 20px 20px -17px rgba(164, 198, 58, 0.69);
  -moz-box-shadow: 0px 20px 20px -17px rgba(164, 198, 58, 0.69);
  box-shadow: 0px 20px 20px -17px rgba(164, 198, 58, 0.69);
}

.glass-btn.green-btn:hover {
  -webkit-box-shadow: 0px 20px 35px -16px rgb(164, 198, 58);
  -moz-box-shadow: 0px 20px 35px -16px rgb(164, 198, 58);
  box-shadow: 0px 20px 35px -16px rgb(164, 198, 58);
}

.glass-btn.black-btn {
  -webkit-box-shadow: 0px 20px 20px -17px rgba(22, 22, 20, 0.59);
  -moz-box-shadow: 0px 20px 20px -17px rgba(22, 22, 20, 0.59);
  box-shadow: 0px 20px 20px -17px rgba(22, 22, 20, 0.59);
}

.glass-btn.black-btn:hover {
  -webkit-box-shadow: 0px 20px 35px -16px rgb(22, 22, 20);
  -moz-box-shadow: 0px 20px 35px -16px rgb(22, 22, 20);
  box-shadow: 0px 20px 35px -16px rgb(22, 22, 20);
}

.wrapper {
  display: flex;
  align-items: center;
  transition: all 0.4s ease-out;
}

.social-link--linkedin {
  color: #2d76b0;
  margin: 0 1rem;
}

.social-link--github,
.social-link--codepen {
  color: #333333;
}

.social-link--instagram {
  color: #9a2970;
  margin-right: 1rem;
}

.social-link .social-svg {
  width: 2.5rem;
  height: 2.5rem;
}

.social-link .social-svg .social-group__icon {
  fill: var(--color-font--dark);
  transition: all 0.2s;
}

.social-link .social-svg .social-group__inner-circle {
  fill: transparent;
  transition: all 0.2s;
}

.social-link .social-svg .social-group__outline {
  stroke: var(--color-font--dark);
  transform-origin: 50% 50%;
  transition: all 0.2s;
}

.social-link .social-svg:hover .social-group__icon,
.social-link .social-svg:active .social-group__icon,
.social-link .social-svg:focus .social-group__icon {
  fill: #fffbfa;
  transition: all 0.45s;
}

.social-link .social-svg:hover .social-group__inner-circle,
.social-link .social-svg:active .social-group__inner-circle,
.social-link .social-svg:focus .social-group__inner-circle {
  fill: currentColor;
  transition: all 0.45s;
}

.social-link .social-svg:hover .social-group__inner-circle--instagram,
.social-link .social-svg:active .social-group__inner-circle--instagram,
.social-link .social-svg:focus .social-group__inner-circle--instagram {
  fill: url(#simpleInsta) !important;
}

.social-link .social-svg:hover .social-group__outline,
.social-link .social-svg:active .social-group__outline,
.social-link .social-svg:focus .social-group__outline {
  stroke: currentColor;
  transform: scale(1.1);
  transition: all 0.45s;
}

:root {
  --color-white: #ffffff;
}

.light {
  --color-shadow: rgb(2 12 27 / 10%);
  --color-shadow--card: inset 0 1px 0 0 rgb(255 255 255 / 5%);
  --color-nav--transparent: #fef6f6fa;
  --color-nav--transparent-dark: #fcd3d3f5;
  --color-font: #4b4b4b;
  --color-font--dark: #3d4351;
  --color-background--light: #fbfafa;
  --color-background--dark: #fcd3d3;
  --color-background: -webkit-linear-gradient(
    270deg,
    var(--color-background--dark),
    var(--color-background--light) 90%
  );
  --color-background--section: var(--color-background--light);
  --color-secondary: #c8023f;
  --color-secondary--light: #f8535330;
  --color-secondary--dark: rgb(145, 64, 81);
  --color-card: #ffffff;
  --color-footer: #fcd3d3;
}

.dark {
  --color-shadow: rgb(2 12 27 / 10%);
  --color-shadow--card: inset 0 1px 0 0 rgb(255 255 255 / 5%);
  --color-nav--transparent: #344864f1;
  --color-nav--transparent-dark: #253449f1;
  --color-font: rgb(148 163 184/1);
  --color-font--light: #e1e1e6;
  --color-font--dark: #e2e9ff;
  --color-background: linear-gradient(
    187deg,
    #0f172a 35%,
    #423788 100%,
    #6246a8,
    #5474d4
  );
  --color-background--light: #253449;
  --color-background--dark: #0f172a;
  --color-background--section: var(--color-background--dark);
  --color-secondary: rgb(229 133 154/ 1);
  --color-secondary--light: rgb(229 133 154/ 0.1);
  --color-secondary--dark: rgb(197, 82, 107);
  --color-card: rgb(30 41 59/1);
  --color-footer: #0a192f;
}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes bounce-1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes draw {
  from {
    stroke-dashoffset: 1000;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes fadeInUp {
  0% {
    transform: translate(0px, 100px);
    opacity: 0;
  }
  100% {
    transform: translate(0px, 0);
    opacity: 1;
    visibility: visible;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes animation-line {
  0% {
    left: 80px;
  }
  100% {
    left: 0;
  }
}
@keyframes animation-arrow {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes toBottom {
  from {
    top: -100px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
    visibility: visible;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1 !important;
    transform: none;
    visibility: visible;
  }
}
@keyframes shadow {
  0% {
    transform: translate(10px, 155%);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    transform: translate(10px, 0%);
    opacity: 0;
  }
}
@keyframes shadow-2 {
  0% {
    transform: translate(0, 155%);
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@-webkit-keyframes sdb05 {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
@keyframes sdb05 {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
@keyframes blink {
  0% {
    background-color: #ccc;
  }
  49% {
    background-color: #ccc;
  }
  50% {
    background-color: transparent;
  }
  99% {
    background-color: transparent;
  }
  100% {
    background-color: #ccc;
  }
}
#first-landing {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  vertical-align: bottom;
  background: var(--color-background);
}
#first-landing .container {
  z-index: 10;
}
#first-landing .animation-svg {
  -webkit-animation: 1s fadeIn;
  -webkit-animation-delay: 1s;
  -webkit-animation-fill-mode: forwards;
  animation: 1s fadeIn;
  animation-delay: 1s;
  animation-fill-mode: forwards;
  visibility: hidden;
}
#first-landing .divisor {
  position: absolute;
  bottom: -1px;
  z-index: 0;
}
#first-landing .divisor path {
  fill: var(--color-background--section) !important;
}
#first-landing .dotted-circle {
  position: absolute;
  top: 115px;
  right: 130px;
  opacity: 0.3;
  animation: rotation 38s linear infinite;
}
#first-landing .dotted-circle circle {
  stroke: var(--color-font--dark);
}
#first-landing .line {
  position: absolute;
  top: 15%;
  right: 25%;
}
#first-landing .item-to {
  opacity: 0.2;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  transform-origin: bottom;
}
#first-landing .bounce-1 {
  animation-name: bounce-1;
  animation-timing-function: ease;
}
#first-landing .draw-in {
  stroke: var(--color-font--dark);
  stroke-dasharray: 1000;
  stroke-dashoffset: 10;
  animation: draw 15s ease-in-out alternate infinite;
}
#first-landing .geo-arrow {
  fill: none;
  stroke: var(--color-font--dark);
  stroke-width: 2;
  stroke-miterlimit: 10;
}
#first-landing .general .text-title {
  font-size: clamp(30px, 8vw, 50px);
  font-weight: 600;
  margin: 0;
}
#first-landing .general .app-text--general {
  font-size: clamp(20px, 6vw, 50px);
  color: var(--color-font--light);
  font-weight: 600;
}
#first-landing .general .app-text--description {
  color: var(--color-font--light);
}
#first-landing .general .numbers-wrapper {
  padding-left: 90px;
  display: flex;
  align-items: center;
}
#first-landing .general .numbers-wrapper .icon {
  display: inline-block;
  font-size: 60px;
  font-family: "Ubuntu";
  letter-spacing: 20px;
  background: linear-gradient(-40deg, #dbe8cd 0, var(--color-secondary) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: float 5s ease-in-out infinite;
}
#first-landing .general .numbers-wrapper .icon:nth-child(2) {
  animation-delay: 1s;
}
#first-landing .general .numbers-wrapper .icon:nth-child(3) {
  animation-delay: 2s;
}

@media only screen and (max-width: 768px) {
  .general {
    padding: 0 2rem;
  }
}
html,
body {
  font-family: "Effra", "Calibre", "Roboto", "Arial", "Helvetica", sans-serif;
  color: var(--color-font);
  -webkit-font-smoothing: antialiased;
  line-height: 1.3;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: rgb(0, 8, 28);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 1rem 0;
  color: var(--color-font--dark);
}

p {
  color: var(--color-font);
  font-size: clamp(16px, 1vw, 21px);
  line-height: 1.5;
  letter-spacing: 0.02rem;
}

a {
  display: inline-block;
  text-decoration: none;
  text-decoration-skip-ink: auto;
  color: inherit;
  position: relative;
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
a:hover {
  color: var(--color-secondary--dark);
}

img {
  aspect-ratio: attr(width) / attr(height);
}

:target {
  scroll-margin-top: 1rem;
}

:focus {
  outline: 2px dashed var(--color-secondary) !important;
  outline-offset: 3px !important;
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
  box-shadow: none !important;
}

.app-link {
  color: var(--color-secondary);
  font-weight: 600;
}
.app-link:hover {
  text-decoration: underline;
}

.social-media {
  width: 40px;
  position: fixed;
  bottom: 0px;
  left: 40px;
  right: auto;
  z-index: 10;
  color: #a8b2d1;
  -webkit-animation: 1s fadeInUp;
  -webkit-animation-delay: 2s;
  -webkit-animation-fill-mode: forwards;
  animation: 1s fadeInUp;
  animation-delay: 2s;
  visibility: hidden;
  animation-fill-mode: forwards;
}
.social-media > ul {
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  margin: 0px;
  padding: 0px;
  list-style: none;
}
.social-media > ul::after {
  content: "";
  display: block;
  width: 1px;
  height: 90px;
  margin: 20px auto 0;
  background: var(--color-font--dark);
  opacity: 0.5;
}
.social-media > ul li a {
  padding: 10px;
  color: var(--color-font--dark);
  opacity: 0.5;
}
.social-media > ul li a > svg {
  width: 20px;
  height: 20px;
}
.social-media > ul li a > svg.feather {
  fill: none;
}
.social-media > ul li a:hover {
  transform: translateY(-3px);
  color: var(--color-secondary);
}

.app-section {
  background: var(--color-background--section);
  border-top: 0;
  padding: 7rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-section .hideContent {
  overflow: hidden;
  height: 0;
}
.app-section .showContent {
  line-height: 1em;
  height: auto;
}
.app-section .section-title {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 800;
  letter-spacing: 0.02rem;
  color: var(--color-font--dark);
}
.app-section .img-div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-section .img-div > .img-fluid {
  margin-top: 2rem;
  padding: 5px;
  background-clip: content-box;
}
.app-section .img-div::after {
  content: "";
  position: absolute;
  top: 0;
  left: 60px;
  border-top: 9px solid var(--color-secondary);
  border-left: 9px solid var(--color-secondary);
  height: 18rem;
  width: 18rem;
}
.app-section .container-grid--tech {
  display: grid;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  margin-top: 2rem;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.app-section .container-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(301px, 1fr));
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  margin-top: 2rem;
}
.app-section .verified-color {
  filter: invert(39%) sepia(95%) saturate(729%) hue-rotate(156deg)
    brightness(105%) contrast(101%);
}

.card {
  border-radius: 0.5rem;
  background-color: var(--color-card);
  box-shadow: var(--color-shadow--card);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.card .card-image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  filter: contrast(90%);
  overflow: hidden;
  position: relative;
  width: 100%;
}
.card .card-image:hover {
  filter: contrast(100%);
}
.card .card-image::before {
  content: "";
  display: block;
  padding-top: 48.2%;
}
.card .card-title {
  letter-spacing: 0.5px;
  margin: 0;
}
.card .card-subtitle {
  margin: 0;
  padding: 0;
  font-size: 0.9rem !important;
}
.card .card-text {
  flex: 1 1 auto;
  margin-bottom: 1.25rem;
}
.card .card-content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 1.3rem;
}
.card .card-content .card-content--title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card .card-content .card-content--title .app-icon a {
  color: #e6a6a6;
}
.card .card-content .card-content--title .app-icon--github {
  width: 1.3rem;
  cursor: pointer;
}
.card .card-content .card-content--title .app-icon--github:hover .path {
  color: --color-secondary;
  box-shadow: 0 0 18px -10px --color-secondary;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  animation: dash 10s linear forwards;
}
.card .card-content .card-content--title .app-icon--open {
  width: 1.4rem;
  margin-left: 1rem;
  cursor: pointer;
}
.card .card-content .card-content--title .app-icon--open:hover .path {
  color: --color-secondary;
  box-shadow: 0 0 18px -10px --color-secondary;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  animation: dash 10s linear forwards;
}

.text-small {
  color: var(--color-secondary);
  font-weight: 600;
  font-size: inherit;
  letter-spacing: 0.02rem;
}

.app-contact {
  padding: 0 2rem;
  height: 60vh;
  text-align: center;
  display: flex;
  align-items: center;
  background: var(--color-background--section);
}

.app-contact--flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-contact p {
  line-height: 1.6;
  letter-spacing: 0.3px;
}

.app-contact--button {
  margin-top: 2rem;
}

footer {
  background: var(--color-background--section);
  padding: 1vh 0;
  text-align: center;
  position: relative;
  font-weight: 300;
}

footer p {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.98rem;
  color: var(--color-font--dark);
  margin: 0;
  height: 50px;
}

/* checkbox */
.switch {
  position: relative;
  display: inline-block;
  width: 55px;
  height: 22px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 35px;
  width: 35px;
  left: 0px;
  bottom: 4px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: 0 0px 15px rgba(32, 32, 32, 0.2392156863);
  background: var(--color-white) url("../images/icons/sun.png");
  background-repeat: no-repeat;
  background-position: center;
}

input:checked + .slider {
  background-color: var(--color-secondary);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--color-secondary);
}

input:checked + .slider:before {
  -webkit-transform: translateX(24px);
  -ms-transform: translateX(24px);
  transform: translateX(24px);
  background: white url("../images/icons/moon.png");
  background-repeat: no-repeat;
  background-position: center;
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* --------------------- DETALHES -----------------------*/
.app-details {
  min-height: 80vh;
  border-top: 0;
  padding: 6rem 3rem;
}

@media only screen and (max-width: 768px) {
  .app-section {
    padding: 5rem 2rem;
  }
  .app-section .img-div::after {
    top: 10px;
    left: -10px;
  }
}
@media only screen and (min-width: 1024px) {
  .app-details {
    padding: 6rem 10rem;
  }
  .app-contact {
    padding: 10rem 24rem;
    height: auto;
  }
  .cards {
    width: 30%;
  }
  .card-image::before {
    padding-top: 48.9%;
  }
  .img-fluid {
    filter: drop-shadow(0 1.6rem 1.6rem rgba(51, 51, 51, 0.25));
    width: 70%;
    margin-top: 0;
  }
  .app-text--description {
    max-width: 500px;
  }
  .container-grid--tech {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}
.scroll {
  opacity: 0;
  transition: all 1s ease-out;
  transform: translate3d(0, 2rem, 0);
}

.scrolled-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

[class*="scroll-group"] .scroll:nth-child(1) {
  transition-delay: 0.2s;
}

[class*="scroll-group"] .scroll:nth-child(2) {
  transition-delay: 0.4s;
}

[class*="scroll-group"] .scroll:nth-child(3) {
  transition-delay: 0.6s;
}

[class*="scroll-group"] .scroll:nth-child(4) {
  transition-delay: 0.8s;
}

[class*="scroll-group"] .scroll:nth-child(5) {
  transition-delay: 1s;
}

[class*="scroll-group"] .scroll:nth-child(6) {
  transition-delay: 1.2s;
}

[class*="scroll-group"] .scroll:nth-child(7) {
  transition-delay: 1.4s;
}

[class*="scroll-group"] .scroll:nth-child(8) {
  transition-delay: 1.6s;
}

[class*="scroll-group"] .scroll:nth-child(9) {
  transition-delay: 1.8s;
}

[class*="scroll-group"] .scroll:nth-child(10) {
  transition-delay: 2s;
}

[class*="scroll-group"] .scroll:nth-child(11) {
  transition-delay: 2.2s;
}

[class*="scroll-group"] .scroll:nth-child(12) {
  transition-delay: 2.4s;
}

[class*="scroll-group"] .scroll:nth-child(13) {
  transition-delay: 2.6s;
}

[class*="scroll-group"] .scroll:nth-child(14) {
  transition-delay: 2.8s;
}

[class*="scroll-group"] .scroll:nth-child(15) {
  transition-delay: 3s;
}

[class*="scroll-group"] .scroll:nth-child(16) {
  transition-delay: 3.2s;
}

[class*="scroll-group"] .scroll:nth-child(17) {
  transition-delay: 3.4s;
}

[class*="scroll-group"] .scroll:nth-child(18) {
  transition-delay: 3.6s;
}

[class*="scroll-group"] .scroll:nth-child(19) {
  transition-delay: 3.8s;
}

[class*="scroll-group"] .scroll:nth-child(20) {
  transition-delay: 4s;
}

[class*="scroll-group"] .scroll:nth-child(21) {
  transition-delay: 4.2s;
}

.app-icon a {
  margin-left: 8px;
  color: #555;
  text-decoration: none;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}
.app-icon a:hover {
  color: #ff69b4;
}

/*# sourceMappingURL=main.css.map */
