/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

button {
  border-style: none !important;
  border-width: 0 !important;
}

html {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
  height: 100%;
}

body {
  background-color: #f8f8f8;
  height: 100%;
}

#particles-js {
  width: 100%;
  height: 100%;
}

.animated-gradient {
  background: linear-gradient(333deg, #E91E63, #673AB7, #3F51B5, #009688);
  background-size: 400% 400%;
  -webkit-animation: revolution-background-animation 16s ease infinite;
          animation: revolution-background-animation 16s ease infinite;
}

@-webkit-keyframes revolution-background-animation {
  0% {
    background-position: 2% 0%;
  }
  50% {
    background-position: 99% 100%;
  }
  100% {
    background-position: 2% 0%;
  }
}

@keyframes revolution-background-animation {
  0% {
    background-position: 2% 0%;
  }
  50% {
    background-position: 99% 100%;
  }
  100% {
    background-position: 2% 0%;
  }
}

.animated-gradient .section-full-page {
  position: absolute;
  top: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100vh;
}

.animated-gradient .content-container {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.animated-gradient .content-container .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.animated-gradient .content-container .content .logo {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  width: 600px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

@media (max-width: 768px) {
  .animated-gradient .content-container .content .logo {
    width: 80vw;
  }
}

.animated-gradient .content-container .content .logo:hover {
  width: 700px;
}

@media (max-width: 768px) {
  .animated-gradient .content-container .content .logo:hover {
    width: 90vw;
  }
}

.animated-gradient .content-container .content .logo svg {
  -webkit-filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.animated-gradient .content-container .content .description {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.animated-gradient .content-container .content .description p {
  width: 700px;
  padding: 100px 0px;
  text-align: center;
  color: #f8f8f8;
  line-height: 1.6;
  letter-spacing: 1px;
  font-weight: 300;
}

@media (max-width: 768px) {
  .animated-gradient .content-container .content .description p {
    font-weight: 400;
    width: 80vw;
  }
}

.animated-gradient .scroll {
  position: absolute;
  bottom: 80px;
  width: 50px;
  color: #f8f8f8;
}

.animated-gradient .scroll a {
  color: rgba(255, 255, 255, 0.3);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.animated-gradient .scroll a:hover {
  color: #f8f8f8;
}

.section {
  max-width: 1024px;
  margin: auto;
  padding: 150px 0px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0px;
  }
}

.section h1 {
  text-transform: uppercase;
  letter-spacing: 6px;
  font-weight: 300;
  font-size: 48px;
  padding-bottom: 80px;
  text-align: center;
}

@media (max-width: 768px) {
  .section h1 {
    font-size: 36px;
  }
}

.cards {
  display: -ms-grid;
  display: grid;
  gap: 120px;
}

@media (max-width: 768px) {
  .cards {
    gap: 80px;
  }
}

.cards li {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 300px 1fr;
      grid-template-columns: 300px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 100px;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.011), 0 6.7px 5.3px rgba(0, 0, 0, 0.016), 0 12.5px 10px rgba(0, 0, 0, 0.02), 0 22.3px 17.9px rgba(0, 0, 0, 0.024), 0 41.8px 33.4px rgba(0, 0, 0, 0.029), 0 100px 80px rgba(0, 0, 0, 0.04);
          box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.011), 0 6.7px 5.3px rgba(0, 0, 0, 0.016), 0 12.5px 10px rgba(0, 0, 0, 0.02), 0 22.3px 17.9px rgba(0, 0, 0, 0.024), 0 41.8px 33.4px rgba(0, 0, 0, 0.029), 0 100px 80px rgba(0, 0, 0, 0.04);
  margin: 0px 20px;
}

@media (max-width: 768px) {
  .cards li {
    display: block;
    padding: 30px;
    gap: 80px;
  }
}

.cards li .icon img {
  width: 250px;
}

@media (max-width: 768px) {
  .cards li .icon img {
    display: block;
    margin: auto;
    padding-bottom: 30px;
    width: 175px;
  }
}

.cards li h3 {
  text-transform: uppercase;
  letter-spacing: 6px;
  font-weight: 300;
  font-size: 36px;
  padding-bottom: 30px;
}

@media (max-width: 768px) {
  .cards li h3 {
    text-align: center;
    font-size: 22px;
  }
}

.cards li p {
  line-height: 1.6;
  letter-spacing: 0.5px;
  font-weight: 300;
}

@media (max-width: 768px) {
  .cards li p {
    line-height: 1.4;
    letter-spacing: 0.2px;
  }
}

.contact {
  width: 100%;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact .content {
  width: 1024px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  padding: 150px 0px;
}

@media (max-width: 768px) {
  .contact .content {
    padding: 80px 0px;
  }
}

.contact .content h3 {
  text-transform: uppercase;
  letter-spacing: 6px;
  font-weight: 300;
  font-size: 36px;
  padding-bottom: 30px;
  text-align: center;
  color: #f8f8f8;
}

@media (max-width: 768px) {
  .contact .content h3 {
    font-size: 22px;
  }
}

.contact .content p {
  line-height: 1.6;
  letter-spacing: 0.5px;
  font-weight: 300;
  color: #f8f8f8;
}

@media (max-width: 768px) {
  .contact .content p {
    line-height: 1.4;
    letter-spacing: 0.2px;
  }
}

.contact-card {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 767px) {
  .contact-card {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.contact-card li {
  text-align: center;
  padding: 2rem;
}

.contact-card li .icon {
  width: 80px;
  margin: auto;
  color: #f8f8f8;
}
/*# sourceMappingURL=main.css.map */