body {
  background-color: #f0f0f0;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  color: #3F3A34;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: none;
}

button {
  cursor: pointer;
}

.default-paragraph {
  font-size: 18px;
}

.default-title {
  font-weight: normal;
  margin-bottom: 40px;
}

.default-section {
  padding-left: 35px;
  padding-right: 35px;
}

.default-title.h2 {
  font-size: 26px;
}

.content-container {
  width: 100%;
  max-width: 1280px;
  margin: auto;
}

.top-banner {
  background-image: url(images/top-banner-800.jpg);
  background-repeat: no-repeat;
  position: relative;
  background-position: center center;
  background-size: cover;
}

.top-banner::after{
  background-color: rgba(0, 0, 0, 0.30);
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  top: 0;
}

.top-banner::before{
  background-color: #ffd26f66;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
}

.top-banner .inner-header {
  background: linear-gradient(162deg, #00000000 0%, #00000000 72%, #f0f0f0 72%, #f0f0f0 100%);
  position: relative;
  z-index: 1;
  text-align: center;
}

.top-banner .logo {
  z-index: 1;
  position: relative;
  margin-top: 50px;
  margin-bottom: 96px;
  width: 75%;
}

.top-banner .car {
  width: 80%;
}

.initial-presentation {
  padding-top: 50px;
  padding-bottom: 50px;
}

.initial-presentation h1 {
  font-size: 30px;
}

.features-buttons {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 40px;
  gap: 10px;
  max-width: 700px;
}

.features-buttons .feature-button {
  padding: 10px;
  background: linear-gradient(225deg, #FFD26F 0%, #FFD26F 50%, #FFFFFF 50%, #FFFFFF 100%);
  border-radius: 20px;
  box-shadow: -2px 2px 2px #00000040;
  transition: 0.15s;
}

.features-buttons .feature-button:active {
  box-shadow: none;
}

.motivation {
  padding-top: 180px;
  padding-bottom: 180px;
  color: white;

  background: linear-gradient(162deg, #00000000 0%, #00000000 15%, #04890166 15%, #04890166 85%, #00000000 85%, #00000000 100%);
}

.construction {
  padding-top: 40px;
  padding-bottom: 80px;
  text-align: center;
}

.construction p, .construction h2 {
  text-align: left;
}

.construction img {
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  margin: 17px auto;
}

.features {
  display: flex;
  flex-direction: column;
  background-color: #FFD26F66;
}

.features .feature-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 24px;
}

.features .feature-card.highlighted {
  color: white;
  background-color: #FFCB57;
  box-shadow: 0 4px 4px #00000040;
}

.final-result {
  margin: 40px 0;
  text-align: center;
}

.final-result h2 {
  text-align: left;
}

.final-result img {
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  margin-bottom: 12px;
  vertical-align: text-top;
}

footer {
  background-color: #3F3A34;
  color: white;
  padding: 35px;
}

footer .members {
  padding: 20px 0 55px;
  border-bottom: solid 1px white;
}

footer .members > h3 {
  margin-bottom: 20px;
  display: block;
  font-weight: normal;
  font-size: 24px;

}

footer .members > ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

footer .members > ul li {
  font-weight: bold;
}

footer .members .no-bold {
  font-weight: normal;
  display: block;
}

footer ul {
  list-style: none;
}

footer .copy {
  padding: 55px 0 20px;
  vertical-align: middle;
  font-size: 24px;
  text-align: center;
}

footer .copy > svg {
  width: calc(80% - 90px);
  max-width: 305px;
  display: inline;
  vertical-align: middle;
}




@media (max-width: 400px) {
  .features-buttons {
    flex-wrap: wrap;
  }
}

@media (min-width: 500px) {
  footer .members .no-bold {
    font-weight: normal;
    display: inline;
  }
}

@media (min-width: 700px) {
  .top-banner .inner-header .content-container {
    display: flex;
    justify-content: space-evenly;
    padding: 50px 0;
    align-items: center;
  }

  .top-banner .logo {
    z-index: 1;
    position: relative;
    margin-top: 0;
    margin-bottom: 0;
    width: 30%;
    max-width: 400px;
  }
  
  .top-banner .car {
    max-width: 400px;
    width: 40%;
    height: 100%;
    margin-bottom: -20px;
  }

  .initial-presentation-and-features-buttons .content-container {
    display: grid;
    grid-template-columns: 1fr 300px;
    align-items: center;
  }

  .initial-presentation {
    max-width: 870px;
  }

  .features-buttons {
    display: grid;
    justify-content: center;
    grid-template-areas: "a b"
                         "c d";
    margin: 40px 0;
    gap: 24px;
    max-width: 100%;
  }

  .features-buttons .feature-button {
    padding: 20px;
    
    border-radius: 20px;
    box-shadow: -2px 2px 2px #00000040;
    transition: 0.15s;
  }

  .motivation {
    background: #04890166;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

@media (min-width: 1024px) {
  .initial-presentation-and-features-buttons .content-container {
    grid-template-columns: 724px 1fr;
  }

  .features-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    grid-template-areas: "a b"
                         "c d";
    margin: 40px 0;
    padding: 0 10px;
    max-width: 100%;
  }

  .features .content-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  footer {
    padding: 50px;
  }

  footer .content-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  footer .members {
    border-bottom: 0;
    border-right: solid 1px white;
  }
}