#hero {
  width: 100%;
  /*background: url("../../assets/img/hero-bg.jpg");*/
  position: relative;
  /*background: url("../../assets/img/fire.jpg");*/
  padding: 120px 0 0 0;
  /*background: url("../../assets/img/banner2.jpg") repeat scroll center center / cover;*/
  background-color: #FBAB7E;
  background-image: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%);
}

#hero h1 {
  margin: 0 0 20px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: rgba(255,255,255,0.83);
}

#hero h1 span.main {
  color: #fff;
  border-bottom: 4px solid #1acc8d;
}

#hero h1 span.cold {
  color: #97b2c6;
  /*border-bottom: 4px solid #1acc8d;*/
}

#hero h2 {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  font-size: 24px;
}

.btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: #1acc8d;
  margin-left: 10px;
}

#hero .btn-get-started:hover {
  background: #17b57d;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  #hero {
    padding-top: 80px;
  }
}

@media (max-width: 991px) {
  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }
}

@media (max-width: 991px) {
  #hero .hero-img {
    text-align: center;
  }
}

@media (max-width: 991px) {
  #hero .hero-img img {
    max-width: 50%;
  }
}

@media (max-width: 991px) {
  #hero h1 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 10px;
  }
}

@media (max-width: 991px) {
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

.hero-waves {
  display: block;
  margin-top: 60px;
  width: 100%;
  height: 60px;
  z-index: 5;
  position: relative;
}

.wave1 use {
  -webkit-animation: move-forever1 10s linear infinite;
  animation: move-forever1 10s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave2 use {
  -webkit-animation: move-forever2 8s linear infinite;
  animation: move-forever2 8s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave3 use {
  -webkit-animation: move-forever3 6s linear infinite;
  animation: move-forever3 6s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

.nav-bg-color {
  /*background: #2a2ea4 !important;*/
  -webkit-transition: background-color 0.5s ease-in-out;
  -moz-transition: background-color 0.5s ease-in-out;
  -ms-transition: background-color 0.5s ease-in-out;
  transition: background-color 0.5s ease-in-out;
  /*background: url("../../assets/img/menu.jpg");*/
  background-image: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%);
  background-color: #FBAB7E;
}

.nav-bg-transparent {
  background: rgba(255,255,255,0) !important;
  -webkit-transition: background-color 0.5s ease-in-out;
  -moz-transition: background-color 0.5s ease-in-out;
  -ms-transition: background-color 0.5s ease-in-out;
  transition: background-color 0.5s ease-in-out;
}

.custom-color {
  color: #f8bc00 !important;
}

.bg-test {
  /*background: linear-gradient(135deg, #f8faff, #fef7fd);*/
  /*background-color: rgb(251,243,222);*/
  /*background: linear-gradient(135deg, #fffbe6, #ffd1b7);*/
  background-image: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%);
}

.rounded-more {
  border-radius: 1rem !important;
}

.navbar.top-nav-collapse {
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  /*background-color: rgba(87,80,73,0.98);*/
  /*border-bottom: 1px solid #41414b;*/
  /*background-color: rgba(44,38,38,0.75);*/
  box-shadow: 0 2px 6px 0 rgb(0 0 0 / 10%);
  background-image: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%);
  background-color: #FBAB7E;
}

.navbar {
  transition: all 0.3s;
  padding-top: 1.5rem;
  /*font-size: 0.875rem;*/
  /*line-height: 0.875rem;*/
}

.clean-pricing-item {
  /*background-color: #fff;*/
  /*box-shadow: 0px 2px 10px rgba(0,0,0,.075);*/
  border-top: 2px solid var(--bs-yellow) !important;
  /*padding: 30px;*/
  /*overflow: hidden;*/
  /*position: relative;*/
}

