body,
html {
  padding: 0;
  margin: 0;
  font-family: Lato, Arial, sans-serif;
}

a {
  text-decoration: none;
  color: #0b1f33;
}

.design-color {
  color: #0d4cd3;
}

h3 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
}

.content-1 {
  background: linear-gradient(86deg, #e3e3ff 0%, #ffffff 100%);
  padding: 20px;
}
.content-1 #main-data {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}
.content-1 #main-data #data h1 {
  font-weight: 700;
}
.content-1 #main-data #data p {
  line-height: 22px;
}
.content-1 #main-data img {
  height: 200px;
  width: auto;
}

.main-component,
.components .component {
  background-color: white;
  margin: 20px;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 1px 4px #e3ecff, 0 6px 16px rgba(230, 235, 245, 0.8);
  justify-items: left;
  align-items: center;
}

.main-component {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
}
.main-component h4 {
  text-align: center;
  font-size: 20px;
}

.components {
  display: flex;
  flex-direction: row;
  height: 105px;
}
.components .component {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  min-width: 190px;
  max-width: 190px;
  margin: 10px;
  overflow: hidden;
}
.components .component:hover {
  animation: box-animation 0.5s ease-in-out forwards;
}
.components .component i {
  color: #1d5deb;
  font-size: 50px;
  width: auto;
  padding: 20px;
  padding-bottom: 0;
  padding-top: 0;
}
.components .component h6 {
  font-size: 16px;
  margin: 0;
}

.content-2 {
  background-color: #fafcff;
  padding: 20px;
}
.content-2 .components {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  height: 400px;
}
.content-2 .component {
  display: grid;
  grid-template-columns: 1fr;
  height: auto;
  overflow: hidden;
  min-width: 300px;
  max-width: 300px;
}
.content-2 .component h6 {
  padding: 20px;
}
.content-2 .component p {
  font-size: 16px;
  line-height: 24px;
}
.content-2 img {
  width: 300px;
  border-radius: 20px;
}

.content-3 {
  background-color: #fafcff;
  color: #0b1f33;
  font-weight: 700;
  overflow: hidden;
  justify-items: center;
}
.content-3 img {
  width: 64px;
  height: auto;
  padding-right: 10px;
  border-radius: 20px;
}
.content-3 .plugin-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.content-3 .plugin-wrapper button {
  border-radius: 20px;
  display: none;
  height: 40px;
  width: 40px;
}

.content-4 {
  justify-items: center;
  padding: 30px;
}
.content-4 .setup-container {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr 1fr;
}
.content-4 .card {
  display: grid;
  background-color: white;
  box-shadow: 0 1px 4px #e3ecff, 0 6px 16px rgba(230, 235, 245, 0.8);
  padding: 15px;
  border-radius: 14px;
}
.content-4 .card i {
  color: #0d4cd3;
  font-size: 20px;
  padding: 5px;
}

.content-5 {
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-5 .wrapper {
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
.content-5 .wrapper .data-wrapper p {
  font-size: 16px;
  line-height: 24px;
}
.content-5 .wrapper img {
  width: 300px;
  height: auto;
}

@keyframes box-animation {
  from {
    box-shadow: 0 1px 4px #e3ecff, 0 6px 16px rgba(230, 235, 245, 0.8);
  }
  to {
    box-shadow: 0 1px 5px #e3ecff, 0 6px 18px rgba(209, 224, 253, 0.8);
  }
}
#header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}
#header img {
  width: 45px;
  height: auto;
}
#header #burder-button {
  background: none;
  border: none;
  outline: 0;
  font-size: 32px;
  color: #0d4cd3;
  display: none;
}
#header #tabs {
  display: flex;
  justify-content: space-between;
  width: 45%;
}
#header #tabs a {
  color: #0d4cd3;
  font-family: Lato, Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

#burder-menu {
  display: none;
  position: fixed;
  z-index: 100;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3137254902);
}
#burder-menu .burder-wrapper {
  background-color: white;
  height: 100%;
  width: 40%;
}
#burder-menu .burder-wrapper #burder-exit {
  justify-self: right;
  padding: 20px;
  background: none;
  border: none;
  outline: 0;
  font-size: 32px;
  color: #0d4cd3;
}
#burder-menu .burder-wrapper #elements {
  display: flex;
  flex-direction: column;
}
#burder-menu .burder-wrapper #elements a {
  color: #0d4cd3;
  padding: 30px;
}/*# sourceMappingURL=header.css.map */