p, h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

p {
  font-family: 'Lato', sans-serif;
}

.link {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
}

body {
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100vw;
  background-color: #4E44E4;
  margin: 0;
}

header {
  width: 100vw;
  height: 100px;
}

.header-title {
  font-family: 'K2D', sans-serif;
  font-size: 72px;
  color: #D6DAFF;
  letter-spacing: 0;
}

.section-content {
  height: 100%;
  width: 85%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 10px;
}

.logo {
  /* background-image: url("./assets/guarentee__logo.png"); */
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
}

main {
  width: 100vw;
  position: relative;
  background-color: white;
  /* height: calc(100vh - 200px); */
  /* min-height: 535px; */
}

svg {
  position: absolute;
  right: 5%;
}

.content-container {
  margin: 0;
  width: 45%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.main-container {
  margin-top: 100px;
}

.content {
  margin-bottom: 170px;
}

.title {
  font-family: 'K2D', sans-serif;
  font-size: 72px;
  color: #4E44E4;
  letter-spacing: 0;
  margin-bottom: 70px;
}

.text {
  font-family: 'K2D', sans-serif;
  font-size: 1.2rem;
  color: #4C4C4C;
  letter-spacing: 0;
  line-height: 2.5rem;
  margin-bottom: 50px;
}

.btn {
  /* transition: 0.3s ease background-color; */
  text-transform: capitalize;
  font-weight: 500;
  font-size: 1rem;
  align-items: baseline;
  background: #4E44E4;
  border-radius: 3px;
  border-width: 0;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  /* display: inline-flex; */
  font-size: inherit;
  font-style: normal;
  height: 2.2857142857142856em;
  line-height: 2.2857142857142856em;
  margin: 0;
  max-width: 100%;
  outline: none;
  padding: 0 8px;
  text-align: center;
  text-decoration: none;
  transition: background 0.1s ease-out,box-shadow 0.15s cubic-bezier(0.47,0.03,0.49,1.38);
  transition-duration: 0.1s,0.15s;
  vertical-align: middle;
  white-space: nowrap;
  width: auto;
}
/* .main-action */

.illustration-container {
  width: 100%;
  height: 50vw;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
}

.illustration {
  background-image: url('./assets/illustration.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  top: -50px;
  width: 100%;
  max-width: 590px;
}

footer.section-content {
  width: 85%;
  height: 100px;
  min-height: 100px;
}

.footer-text {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: #FFFFFF;
  letter-spacing: 0;
  text-align: center;
  line-height: 19px;
}


@media (max-width: 860px) {
  main .section-content {
    flex-direction: column-reverse;
  }
  .content-container {
    width: 100%;
  }
  .illustration-container {
    width: 70%;
  }
  .illustration {
    top: -20px;
  }
  .header-title, .title {
    font-size: 48px;
  }
}