:root {
  --primary-color: #FFAB91FF;
  --accent-color: #FFE291FF;
  --border-radius: 16px;
}

body, html {
  margin: 0;
  background-color: #f7edea;
  font-family: 'Poppins', sans-serif;
  font-size: 1.125rem;
  color: #232323;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Varela Round', sans-serif;
}

h1 {
  font-size: 5rem;
}

a {
  color: #232323;
}

.navbar {
  background: white;
  width: 100%;
  position: fixed;
  top: 0;
}

.logo, .logo-mobile {
  height: 40px;
  margin-right: 15px;
}

.navbar > div {
  padding: 10px 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-item {
  text-decoration: none;
  font-size: 0.875rem;
}

.nav-item::after {
  content: '';
  display: block;
  height: 3px;
  border-radius: 16px;
  background-color: #232323;
  width: 60%;
  opacity: 0;
  transition: 0.2s;
  margin: 0 auto;
}

.nav-item:hover::after {
  width: 100%;
  opacity: 1;
  transition: 0.2s;
}

.container {
  padding: 110px;
}

.section.white {
  background-color: white;
}

.section.primary {
  background-color: var(--primary-color);
}

.primary-text {
  color: var(--primary-color);
}

.bigger-text {
  font-size: 1.56rem;
}


.smaller-text {
  font-size: 1rem;
}

.feature-heading {
  font-size: 2.625rem;
  font-family: "Varela Round", sans-serif;
  font-weight: normal;
  margin-top: 0;
  margin-bottom: 0;
}

.button {
  border-radius: var(--border-radius);
  text-align: center;
  padding: 6px 15px;
  font-size: 0.875rem;
  text-decoration: none;
}

.button-large {
  font-size: 1.2rem;
  padding: 12px 30px;
  line-height: 58px;
}

.button-primary {
  background-color: var(--primary-color);
}

.button-outline {
  border: 1px solid rgba(35, 35, 35, 0.12);
  color: var(--primary-color);
}

.divider {
  height: 3px;
  width: 100%;
}

.divider.primary {
  background-color: var(--primary-color);
}

.tracking-img {
  width: 100%;
  margin-top: 200px;
}

.feature-card {
  margin-top: 110px;
}

.feature-card > div {
  padding: 30px;
}

.feature-card p {
  margin-bottom: 0;
}

.feature-card > div:nth-of-type(1) {
  border-radius: 16px 16px 0 0;
  background-color: var(--primary-color);
}

.accent.feature-card > div:nth-of-type(1) {
  background-color: var(--accent-color) !important;
}

.feature-card > div:nth-of-type(2) {
  border-radius: 0 0 16px 16px;
  background-color: white;
  display: flex;
  justify-content: start;
  gap: 30px;
}

.feature-card > div:nth-of-type(2) > div:nth-of-type(1) {
  flex: 50;
}

.feature-card > div:nth-of-type(2) > div:nth-of-type(2) {
  flex: 50;
}

.feature-point {
  display: flex;
  align-items: center;
  gap: 10px;
}

#why-to-use img {
  height: 180px;
}

#contact img {
  margin-right: 10px;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #D49480;
  padding: 10px 110px;
}

footer .socials img {
  height: 100%;
  vertical-align: middle;
}

footer .socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

footer .socials a {
  display: block;
}

.showcases {
  width: 100%;
}

.showcases > div {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.showcases img {
  width: 100%;
}

.showcases > div > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.showcases > div > div > div {
  margin-bottom: 40px;
}

.showcases img {
  border-radius: 16px !important;
}

.logo {
  display: block;
}

.logo-mobile {
  display: none;
}

@media screen and (max-width: 1110px) {
  h1 {
    font-size: 3rem;
  }

  .feature-heading {
    font-size: 2rem;
  }

  .logo {
    display: none;
  }

  .logo-mobile {
    display: block;
  }

  .container {
    padding: 20px;
    text-align: center;
  }

  .navbar {
    background: white;
    width: 100%;
    position: fixed;
    top: 0;
  }

  .navbar .logo {
    height: 40px;
    margin-right: 15px;
  }

  .navbar > div {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-item {
    text-decoration: none;
    font-size: 0.875rem;
    display: none;
  }

  #features {
    padding-top: 80px;
  }

  #features > div {
    flex-direction: column;
    gap: 0 !important;
  }

  #features .feature-card {
    margin-top: 20px;
  }

  .feature-point {
    text-align: start;
  }

  .feature-card > div:nth-of-type(2) {
    flex-direction: column;
    gap: 0;
  }

  #why-to-use img {
    height: 100px;
  }

  #why-to-use > div:nth-of-type(1), #why-to-use > div:nth-of-type(2) {
    flex-direction: column;
    gap: 40px;
  }

  #why-to-use > div:nth-of-type(2) {
    margin-top: 40px !important;
  }

  footer {
    flex-direction: column;
    text-align: center;
    padding-left: 60px;
    padding-right: 60px;
  }

  .showcases > div {
    flex-direction: column;
  }

  .tracking-img {
    display: none;
  }

  #features .feature-card.first {
    margin-top: 80px !important;
  }
}
