html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1.5;
  letter-spacing: 4px;
  font-family: "Montserrat", sans-serif;
  color: #333;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  background: none;
  border: none;
}

a {
  text-decoration: none;
}

.navbar {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  padding: 0 85px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 10;
  background-color: #fff;
  transition: top 0.2s ease-in-out;
  height: 100px;
  display: flex;
  justify-content: center;
}

.navbar__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
}

.navbar--hide {
  top: -100px;
}

.navbar__logo {
  width: 160px;
  cursor: pointer;
}

.navbar__links {
  list-style: none;
  display: flex;
}

.navbar__link-wrapper {
  margin: 0 35px;
}

.navbar__link {
  font-size: 1rem;
  cursor: pointer;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  transition: border-bottom 0.2s ease-in-out;
  color: #642ec3;
  padding: 10px 0;
  border-bottom: 2px none #a4e8cc;
}

.navbar__link:hover {
  border-bottom: 2px solid #a4e8cc;
}

.button {
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 20px;
  background-color: #642ec3;
  color: #a4e8cc;
  cursor: pointer;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
}

.button:hover {
  opacity: 80%;
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 72vh;
  position: relative;
  padding: 0 50px;
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(100, 46, 195, 1) 11%,
    rgba(142, 209, 251, 1) 73%,
    rgba(255, 255, 255, 1) 97%
  );
}

.header__content {
  width: 100%;
  max-width: 1200px;
}

.main-title {
  font-size: 2.3rem;
  font-weight: 600;
  color: #fff;
  transform: scale(0.94);
  animation: scale 3s forwards cubic-bezier(0.5, 1, 0.89, 1);
  margin-bottom: 40px;
}
@keyframes scale {
  100% {
    transform: scale(1);
  }
}

.integrations {
  padding: 85px 0;
}

.carousel {
  overflow: hidden;
  width: 100%;
  margin: auto;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}

.carousel__track {
  display: flex;
  animation: 30s slide infinite linear;
}

.carousel__item {
  display: inline-block;
  width: 100%;
  max-width: 100px;
  margin: 0 100px;
}

.integration-platform-logo {
  height: 100px;
  max-height: 62px;
}

.main-title span {
  display: inline-block;
  opacity: 0;
  filter: blur(4px);
}

.main-title span:nth-child(1) {
  animation: fade-in 0.8s 0.1s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.main-title span:nth-child(2) {
  animation: fade-in 0.8s 0.2s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.main-title span:nth-child(3) {
  animation: fade-in 0.8s 0.3s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.main-title span:nth-child(4) {
  animation: fade-in 0.8s 0.4s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.main-title span:nth-child(5) {
  animation: fade-in 0.8s 0.5s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.main-title span:nth-child(6) {
  animation: fade-in 0.8s 0.6s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.main-title span:nth-child(7) {
  animation: fade-in 0.8s 0.7s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.main-title span:nth-child(8) {
  animation: fade-in 0.8s 0.8s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.main-title span:nth-child(9) {
  animation: fade-in 0.8s 0.9s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.main-title span:nth-child(10) {
  animation: fade-in 0.8s 1s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.main-title span:nth-child(11) {
  animation: fade-in 0.8s 1.1s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.main-title span:nth-child(12) {
  animation: fade-in 0.8s 1.2s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.main-title span:nth-child(13) {
  animation: fade-in 0.8s 1.3s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.main-title span:nth-child(14) {
  animation: fade-in 0.8s 1.4s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.main-title span:nth-child(15) {
  animation: fade-in 0.8s 1.5s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.main-title span:nth-child(16) {
  animation: fade-in 0.8s 1.6s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.main-title span:nth-child(17) {
  animation: fade-in 0.8s 1.7s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.main-title span:nth-child(18) {
  animation: fade-in 0.8s 1.8s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.animated-button {
  animation: fade-in 1.9s normal cubic-bezier(0.11, 0, 0.5, 0);
  background: none;
  border: 2px solid #fff;
  color: #fff;
}

.animated-button:hover {
  opacity: 60%;
}

.section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 70px 50px;
}

.section__title {
  border-bottom: 2px solid #a4e8cc;
  color: #642ec3;
  font-size: 1.7rem;
  font-weight: 600;
  display: block;
  margin-bottom: 50px;
}

.section__text {
  color: #642ec3;
  line-height: 1.9;
  font-weight: 500;
  width: 100%;
  max-width: 1400px;
}

@keyframes fade-in {
  0% {
    opacity: 0;
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

@media (max-width: 1200px) {
  .navbar__logo {
    display: none;
  }

  .header {
    padding: 100px 50px;
  }

  .navbar__link,
  .button {
    font-size: 1.3rem;
  }

  .header {
    min-height: 60vh;
  }

  .main-title {
    font-size: 3.3rem;
  }

  .section__title {
    font-size: 2.3rem;
  }

  .section__text {
    font-size: 1.3rem;
  }
}
