.container {
  width: 1170px;
  margin: 0 auto;
}
#main-section {
  position: relative;
  display: flex;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 3vw), 50% 100%, 0 calc(100% - 3vw), 0 0);
  min-height: 600px;
  padding: 100px 0;
}
#main-section .section-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #6845aa;
  background: -webkit-linear-gradient(90deg, #d7c5fb 25%, #12c4a8 80%);
  background: linear-gradient(90deg, #d7c5fb 25%, #12c4a8 80%);
  opacity: 0.85;
}
#main-section .container {
  z-index: 2;
  position: relative;
}
#main-section h1 {
  text-align: center;
  width: 100%;
  font-size: 55px;
  margin-bottom: 15px;
}
#main-section .section-desc {
  text-align: center;
}
#main-section .section-buttons {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 25px;
}
#main-section .section-buttons .section-btn:nth-child(2) {
  color: #23314c;
  margin-left: 20px;
  border: 2px solid #1eae98;
  background-image: -webkit-linear-gradient(to right, #6845aa 50%, #1eae9800);
  background-image: linear-gradient(to right, #6845aa 50%, #1eae9800);
  background-color: transparent;
  transition: 1s;
}
#main-section .section-buttons .section-btn:nth-child(2):hover {
  color: #fff;
  border-color: #6845aa;
  background-position: 0% 50%;
}
#description-section {
  padding: 50px 0;
}
#description-section .container {
  display: flex;
  align-items: center;
}
#description-section .section-img {
  width: 30%;
}
#description-section .section-desc {
  width: 70%;
  padding-left: 30px;
}
#features-section {
  padding: 100px 0;
}
#features-section .feature-items {
  margin: -10px;
  display: flex;
}
#features-section .feature-item {
  width: 33.33%;
  padding: 10px;
}
#features-section .item-content {
  background: #24183a;
  padding: 15px;
  height: 100%;
  color: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#features-section img {
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
}
#saved-section {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #24183a;
  padding: 100px 0;
  color: #fff;
  text-align: center;
}
#saved-section .section-money {
  font-size: 60px;
  font-weight: 700;
}
#content-section .section-content {
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.25);
  background: #fff;
  margin-top: 50px;
  padding: 20px;
}
@media (max-width: 1200px) {
  .container {
    width: 750px;
  }
  #masthead.cryout #access {
    display: none;
  }
  .cryout #nav-toggle {
    display: block;
  }
  #main-section h1 {
    font-size: 47px;
  }
}
@media (max-width: 768px) {
  .container {
    width: 360px;
  }
  #main-section h1 {
    font-size: 38px;
  }
  #description-section .container {
    flex-wrap: wrap;
  }
  #description-section .section-img {
    width: 100%;
    height: 170px;
    object-fit: contain;
  }
  #description-section .section-desc {
    width: 100%;
    padding: 0;
    margin-top: 15px;
  }
  #features-section {
    padding: 0;
  }
  #features-section .feature-items {
    flex-wrap: wrap;
  }
  #features-section .feature-item {
    width: 100%;
  }
  #saved-section {
    margin-top: 50px;
  }
  #saved-section .section-money {
    font-size: 50px;
  }
  #content-section {
    margin-top: -20px;
    margin-bottom: -20px;
    position: relative;
    z-index: 1;
  }
  #content-section .section-content {
    margin: 0;
  }
}
@media (max-width: 375px) {
  .container {
    width: 95%;
  }
}
