:root {
  --secondary: #f5bb47;
  --primary: rgba(90, 157, 153, 1);
  
}

body {
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  font-size: 18px;
}

@media (min-width: 1270px){
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1252px;
  }
}

.logo {
  width: 300px;
  max-width: 100%;
  height: auto;
}

#hero {
  background: var(--primary) url('images/bg.jpg') no-repeat center center / cover;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: #fff;
}

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

.bg-grey {
  background-color: #fffeef;
}

.txt-grey {
  color: #626262;
}

.txt-lightgrey {
  color: #c5c5c5;
}

.hero-form {
  display: flex;
  gap: 15px;
  flex-direction: column;
}

.form-control-lg {
  font-size: 1rem;
  height: calc(1.5em + 1.75rem + 2px);
}

.btn-group-lg > .btn, .btn-lg {
  font-size: 1rem;
  padding: 0.875rem 1.75rem;
}

h1 {
  font-size: 50px;
  font-weight: 400;
}

h2 {
  font-size: 36px;
  font-weight: 400;
}

h3 {
  font-size: 24px;
  font-weight: 400;
}

.hero-form-disclaimers {
  font-size: 12px;
}

/* .btn {
  border-radius: 10px;
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  transition: 0.2s ease-out all;
} */

.btn-primary {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.btn-primary:hover {
  color: #fff;
  background-color: #f5a747;
  border-color: #f5a747;
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #f5a747;
  border-color: #f5a747;
}

footer {
  background-color: #343a3f;
}

.card {
  border-radius: 1rem;
  box-shadow: 0px 0px 1.5rem rgba(0,0,0,0.3);
}

.card-img, .card-img-top {
  border-top-left-radius: calc(1rem - 1px);
  border-top-right-radius: calc(1rem - 1px);
}

.card-img-bottom {
  border-bottom-left-radius: calc(1rem - 1px);
  border-bottom-right-radius: calc(1rem - 1px);
}

.card-img-left {
  border-top-left-radius: calc(1rem - 1px);
  border-top-right-radius: 0;
  border-bottom-left-radius: calc(1rem - 1px);
  border-bottom-right-radius: 0;
}

.card-img-right {
  border-top-right-radius: calc(1rem - 1px);
  border-bottom-right-radius: calc(1rem - 1px);
}

.feature {
  padding: 1rem 1.25rem;
  background-color: var(--primary);
  border-radius: 1rem;
  color: #fff;
  display: flex;
  gap: 1.25rem;
  box-shadow: 0px 0px 1.5rem rgba(0,0,0,0.3);
  margin: 0 auto 1.75rem auto;
  align-items: center;
  max-width: 570px;
}

a .card .card-title {
  color: #000;
}

.btn-card-subscribe {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.feature-icon img {
  width: 54px;
}

.f1 {
  
  background-color: rgba(90, 157, 153, 0.65);
}

.f2 {
  background-color: rgba(90, 157, 153, 0.75);
}

.f3 {
  background-color: rgba(90, 157, 153, 0.85);
}

.footer-nav {
  list-style-type: none;
  padding: 0;
  display: flex;
  gap: 20px 40px;
}

footer, footer a, footer a:hover {
  color: #fff;
}

footer .logo {
  width: 281px;
}

.hero-form-disclaimers a {
  color: #fff;
  text-decoration: underline;
}

@media(max-width: 767px) {
  h1 {
    font-size: 35px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 22px;
  }

  .feature {
    font-size: 16px;
  }

  #hero {
    background: var(--primary) url('images/bg-md.png') no-repeat center bottom / contain;
    padding-bottom: 400px !important;
  }

  .logo {
    width: 220px;
  }
}

@media(max-width: 450px) {
  #hero {
    background: var(--primary) url('images/bg-sm.png') no-repeat center bottom / contain;
    padding-bottom: 400px !important;
  }
}