@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400&display=swap');
body {
    font-family: "Lato", sans-serif;
    margin: 0;
    background-color: #F7F7F7;
    overflow-x: hidden;
    width: 100%;
}
.header {
    background-color: #00353e;
    height: 256px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.text-center {
    text-align: center;
    margin: 4px auto;
}
.header-emoji {
    font-size: 48px;
    margin: 0 auto;
    text-align: center;
    color: #aecc53;
}
.header-title {
    color: #FFFFFF;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    margin: auto;
}
.header-description {
    color: #CFCFCF;
    margin: 4px auto;
    text-align: center;
    max-width: 384px;
}
.home-title {
    color: #FFFFFF;
    font-size: 96px;
    font-weight: bold;
    text-align: center;
    margin: auto;
}
.wrapper {
    margin-right: auto;
    margin-left: auto;
    max-width: 800px;
    padding-right: 10px;
    padding-left: 10px;
    margin-top: 32px;
}
.card {
    margin-bottom: 24px;
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.18);
}
.menu {
    max-width: 800px;
    display: flex;
    justify-content: space-evenly;
    padding-top: 12px;
    padding-bottom: 12px;
    margin: -25px auto 0 auto;
    background-color: #FFFFFF;
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.18);
}
.Select-control {
    width: 256px;
    height: 48px;
}
.Select--single > .Select-control .Select-value, .Select-placeholder {
    line-height: 48px;
}
.Select--multi .Select-value-label {
    line-height: 32px;
}
.menu-title {
    margin-bottom: 6px;
    font-weight: bold;
    color: #079A82;
}
.slider {
    margin-bottom: 24px;
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.18);
}
.rc-slider-mark-text:last-child{
transform: translateX(50%) !important ;
right: 0% !important;
left: auto !important;
}
.home-jumbotron {
  background: #008768;
  background-size:  400% 400%;
  animation: gradient 40s ease infinite;
  height: 50vh;
  justify-content: center;
  align-items: center;
  display: flex;
}
.home-jumbotron-sm {
  background: #008768;
  background-size:  400% 400%;
  animation: gradient 40s ease infinite;
  height: 25vh;
  justify-content: center;
  align-items: center;
  display: flex;
}
.underline {
  --angle: 0deg;
  width: 600px;
  height: 75px;
  background-color: transparent;
  border-bottom: 8px solid;
  border-image: conic-gradient(from var(--angle), #e52713, #ffce00, #aecc53, #008768) 1;
  position: absolute;
  animation: 40s rotate linear infinite;
}
.jumbotron {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    background-color: transparent;
    border-radius: .3rem;
    z-index: 2;
}
@keyframes rotate {
  to {
    --angle: 360deg;
  }
}
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
.placeholder-image {
  background-color: #eee;
  width: 350px;
  height: 350px;
}