html {
  padding: 0;
  margin: 0;
}

body {
  padding: 0;
  margin: 0;
  color: #5d5d5d;
  font-size: 14px;
  font-weight: 300;
  font-family: "TASA Orbiter", sans-serif;
  background-color: #EEF7FF;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 14px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
  background-color: #C7A86D;
  border: 2px solid #fff;
  border-radius: 5px;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Noto Serif", serif;
  color: #195485;
}

p {
  font-family: "TASA Orbiter", sans-serif;
  font-size: 20px;
}

input,
select,
textarea {
  color: #5d5d5d;
  border: 1px solid #5d5d5d;
  background: #fff;
  width: 100%;
  height: 40px;
  padding: 10px 20px;
  transition: all 0.6s;
  font-weight: 300;
  font-size: 14px;
  line-height: initial;
  margin-bottom: 10px;
}

input:focus,
select:focus,
textarea:focus {
  border: 2px solid #C7A86D;
}

textarea {
  height: 200px;
  margin-top: 20px;
}

label {
  margin: 0;
  margin-top: 10px;
}

*:focus {
  outline: none !important;
  box-shadow: none !important;
}

a,
a:hover {
  text-decoration: none;
}

header {
  position: fixed;
  width: 100%;
  z-index: 9999;
  top: 0;
  padding-bottom: 20px;
  padding-top: 30px;
}

header.stick {
  background: linear-gradient(to bottom, rgba(249, 248, 245, 1) 70%, rgba(249, 248, 245, 0.31) 92%, rgba(249, 248, 245, 0) 100%);
  padding-top: 0px;
}

header img {
  max-width: 300px;
  transition: all 0.6s;
}

header.stick img {
  padding-top: 5px;
}

header.stick img {
  max-width: 180px;
}

@media only screen and (max-width: 980px) {
  header img {
    max-width: 180px;
  }
}

.navbar .navbar-nav {
  background: transparent;
  border-radius: 30px;
  box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.1);
  min-height: 48px;
  flex-direction: row;
}

.navbar-nav .nav-item {
  padding: 5px 0px 5px 0px;
  position: relative;
  z-index: 3;
}

.navbar-nav .nav-item .nav-link {
  font-size: 16px;
  font-weight: 300;
  color: #163A58;
  text-align: center;
  transition: all 0.6s;
  padding: 8px 20px;
  font-family: "Noto Serif", serif;
}

.navbar-nav .nav-item .nav-link:hover {
  transition: all 0.6s;
  color: #C7A86D;
}

.navbar-nav .nav-item.contact-us {
  padding: 4px;
}

.navbar-nav .nav-item .contact-us-link {
  background: #C7A86D;
  padding: 8px 11px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 25px;
  color: #fff;
}

.navbar-nav .nav-item .contact-us-link:hover {
  transition: all 0.6s;
  color: #fff;
}

.custom-menu {
  display: flex;
  justify-content: flex-end;
}

@media only screen and (max-width: 980px) {
  .navbar {
    display: none;
    flex-direction: column !important;
    position: absolute;
    z-index: 9999;
    background: #fff;
    width: 300px;
    top: 60px;
    right: -15px;
    border-radius: 16px 0 0 16px;
    border: 0;
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.16);
    padding: 20px
  }

  .navbar .navbar-nav {
    flex-direction: column;
    background: transparent;
    border-radius: 30px;
    box-shadow: none;
    width: 100%;
  }
}

.open-menu {
  width: 40px;
  height: 40px;
  display: none;
  border: 0;
  background: transparent;
  position: relative;
  z-index: 9999;
}


@media only screen and (max-width: 980px) {
  .open-menu {
    display: flex
  }
}

.slick-list {
  padding: 20px 0;
}

.slick-dots {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  max-width: 300px;
  position: relative;
  margin: 0 auto;
}

.slick-dots li {
  list-style: none;
  margin-right: 10px;
  width: 20px;
}

.slick-dots li:last-child {
  margin-right: 0px;
}

.slick-dots li button {
  color: transparent;
  content: "";
  border: 0;
  background-color: #C7A86D;
  border-radius: 15px;
  width: 20px;
  height: 10px;
}

.slick-dots li.slick-active button {
  background-color: #184A74;
}

/* Back to top */
.back-to-top {
  display: none;
  background: #cecece;
  width: 50px;
  height: 50px;
  position: fixed;
  z-index: 999;
  bottom: 30px;
  right: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.5;
  transition: all 0.6s;
  -webkit-animation: slide-in-fwd-bottom 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-in-fwd-bottom 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.back-to-top:hover {
  opacity: 1;
}

.back-to-top img {
  width: 22px;
  margin-top: -3px;
}

.inner-home {
  background-color: #F9F8F5;
  background-image: url('./img/bghome.png');
  background-repeat: no-repeat;
  background-position: top 80px right;
  background-size: 100%;
  min-height: 1400px;
  -webkit-animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  margin-bottom: -3px;
}

.principal-container .text-home h1 {
  font-size: 44px;
  margin-top: 200px;
}

.principal-container .text-home p {
  font-size: 18px;
  color: #333333;
  line-height: 22px;
  margin-bottom: 30px;
}

.principal-container .text-home a {
  margin-bottom: 100px;
  background: #C7A86D;
  border: 0;
  padding: 10px 20px;
  color: #333333;
  transition: all 0.6s;
}

.principal-container .text-home a:hover {
  color: #fff;
}

.principal-container .box-numbers {
  width: 100%;
  background: #184A74;
  border-radius: 0 16px 0 16px;
  padding: 28px;
  margin: 5px;
}

.principal-container .box-numbers h2 {
  color: #fff;
  font-size: 34px;
}

.principal-container .box-numbers h4 {
  color: #FBDFAA;
  font-size: 20px;
  font-weight: 400 !important;
  font-family: "TASA Orbiter", sans-serif;
}

@media only screen and (max-width: 780px) {
  .inner-home {
    background-position: bottom 180px right;
    background-size: 145%;
    min-height: 2100px;
  }
}

.investments-container {
  background: #EEF7FF;
  margin-top: -3px;
  position: relative;
}

.investments-container h3 {
  font-size: 34px;
  color: #195282;
  text-align: center;
  margin-top: -200px;
}

@media only screen and (max-width: 780px) {
  .investments-container {
    margin-top: -120px;
  }
}

.investments-container p {
  text-align: center;
  font-family: "TASA Orbiter", sans-serif;
  font-size: 16px;
  font-weight: 100;
}

.investments-container .carousel-investments {
  margin-top: -100px;
}

.investments-container .investments-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 5px;
}

.investments-container .investments-item img {
  width: 100%;
  border-radius: 16px;
}

.investments-container .investments-item h2 {
  font-size: 26px;
  text-align: left;
  margin-top: 30px;
}

.investments-container .investments-item h4 {
  font-size: 20px;
  text-align: left;
  color: #184A74;
}

.investments-container .investments-item p {
  font-size: 14px;
  text-align: left;
}


.portfolio-container {
  background: #EEF7FF;
  margin-top: -3px;
  position: relative;
  background-image: url('./img/portfolio-detail.svg');
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 339px;
  padding-bottom: 300px;
}

.portfolio-container h3 {
  font-size: 34px;
  color: #195282;
  text-align: center;
  margin-top: 100px;
}

.portfolio-container p {
  text-align: center;
  font-family: "TASA Orbiter", sans-serif;
  font-size: 16px;
  font-weight: 100;
}

.portfolio-container .portfolio-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 5px;
}

.portfolio-container .portfolio-item img {
  width: 100%;
  height: 140px;
}

.portfolio-container .portfolio-item h2 {
  font-size: 26px;
  text-align: left;
  margin-top: 30px;
}

.portfolio-container .portfolio-item h4 {
  font-size: 20px;
  text-align: left;
  color: #C7A86D;
}

.portfolio-container .portfolio-item p {
  font-size: 14px;
  text-align: left;
}


.why-evermont-container {
  background: linear-gradient(to right, rgba(1, 4, 6, 1) 50%, rgba(24, 74, 116, 1) 50%);
  position: relative;
  padding: 0;
  margin: 0;
}

.why-evermont-container .bg-why {
  width: 50%;
  position: absolute;
  top: 0;
  z-index: 1000;
  background-color: #010406;
  background-image: url('./img/bg-why-evermont.svg');
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 100%;
  min-height: 700px;
}

.why-evermont-container .bg-why-2 {
  width: 100%;
  position: absolute;
  bottom: -30px;
  z-index: 3000;
  background-image: url('./img/bg-why-evermont-2.svg');
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 100%;
  min-height: 265px;
}

.why-evermont-container .why-evermont-left {
  margin: 0;
  padding: 0;
  min-height: 700px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.why-evermont-container .why-evermont-left .area-title {
  padding: 50px 50px 0px 50px;
  max-width: 480px;
}

.why-evermont-container .why-evermont-left h1 {
  color: #C7A86D;
  font-size: 40px;
  position: relative;
  z-index: 4000;
}

.why-evermont-container .why-evermont-left p {
  color: #ffffff;
  font-size: 18px;
  position: relative;
  z-index: 3000;
}

.why-evermont-container .why-evermont-right {
  background: #184A74;
  margin: 0;
  padding: 50px 50px 0px 50px;
  min-height: 700px;
  position: relative;
  z-index: 1000;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}

.why-evermont-container .why-evermont-right .why-evermont-right-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  margin-bottom: 40px;
}

.why-evermont-container .why-evermont-right .why-evermont-right-item:last-child {
  margin-bottom: 0px;
}

.why-evermont-container .why-evermont-right .why-evermont-right-item-content {
  padding-left: 20px;
}

.why-evermont-container .why-evermont-right .why-evermont-right-item-content h3 {
  font-size: 28px;
  color: #ffffff;
  font-weight: 300;
}

.why-evermont-container .why-evermont-right .why-evermont-right-item-content p {
  font-size: 14px;
  line-height: 18px;
  color: #ffffff;
}

@media only screen and (max-width: 780px) {
  .why-evermont-container {
    background: transparent;
  }

  .why-evermont-container .bg-why {
    width: 100%;
  }

  .why-evermont-container .why-evermont-right {
    min-height: 1000px;
  }

  .why-evermont-container .bg-why-2 {
    bottom: -2px;
    background-size: 230%;
    min-height: 265px;
  }
}

.chief-container {
  background: #C7A86D;
  min-height: 400px;
  padding: 50px;
}

.chief-container h1 {
  color: #ffffff;
  font-size: 40px;
}

.chief-container h3 {
  color: #FFEABF;
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: 300;
}

.chief-container p {
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 30px;
}

.chief-container .card {
  background: #DBC394;
  border-radius: 16px;
  padding: 20px;
}

.chief-container .card h4 {
  font-size: 24px;
  font-weight: 300;
}

.chief-container .card ul {
  padding: 0;
  margin: 0;
}

.chief-container .card li {
  list-style: none;
}

.contact-us-container {
  padding: 80px 20px;
  background: #F9F8F5;
}

.contact-us-container img {
  width: 100%;
  max-width: 350px;
  margin-bottom: 30px;
}

.contact-us-container h1 {
  font-weight: 300;
}

.contact-us-container p {
  font-size: 14px;
  color: #000000;
}

.contact-us-container .card {
  background: #F2F2F2;
  padding: 20px;
  border: 0;
  border-radius: 0;
  max-width: 380px;
  margin-top: 40px;
}

.contact-us-container .card img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  margin-bottom: 0px;
}

.contact-us-container a {
  color: #333333;
  font-size: 16px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
  transition: all 0.6s;
}

.contact-us-container a:hover {
  color: #C7A86D;
}

.contact-us-container .whatsapp {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  color: #438F32;
  border: 1px solid #438F32;
  border-radius: 16px;
  transition: all 0.6s;
  margin-top: 10px;
}

.contact-us-container .whatsapp svg {
  fill: #438F32;
  margin-right: 5px;
}


.contact-us-container .whatsapp:hover {
  color: #fff;
  background: #438F32;
}

.contact-us-container .whatsapp:hover svg {
  fill: #fff;
}

.about-us-container {
  background: #fff;
  padding: 80px 0 40px 0;
}

.copyright {
  font-family: "Noto Serif", serif;
  color: #000;
  font-size: 16px;
  padding: 40px 0 40px 0;
  background: #F9F8F5;
}

.politica-privacidade {
  position: fixed;
  z-index: 1040;
  bottom: 0;
  left: 0;
  width: 100%;
  display: none;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  padding: 15px 50px;
  background: #fff;
  color: #184A74;
  -webkit-box-shadow: inset 0 0 5px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 0 5px 2px rgba(0, 0, 0, 0.1);
}

.politica-privacidade p {
  color: #184A74;
  margin-bottom: 0;
  font-size: 14px;
}

.politica-privacidade p strong {
  font-weight: 500;
}

.politica-privacidade .regras-btn {
  max-width: 130px;
  margin-left: 30px;
  border-radius: 25px;
  border: 1px solid #184A74;
  background: #184A74;
  padding: 5px 20px;
  cursor: pointer;
  transition: all 0.6s;
  color: #fff !important;
}

.politica-privacidade .regras-btn:hover {
  background: #184A74;
  text-decoration: none;
}

.politica-privacidade a {
  color: #fff;
  text-decoration: none;
}

@media only screen and (max-width: 990px) {}

/* Animações */

.show-left,
.show-right,
.show-fade,
.show-top,
.show-bottom,
.show-to-center,
.show-to-center-delay {
  opacity: 0;
}

.fade-in {
  -webkit-animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation slide-in-left
 * ----------------------------------------
 */

.slide-in-left {
  -webkit-animation: slide-in-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-in-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation slide-in-right
 * ----------------------------------------
 */

.slide-in-right {
  -webkit-animation: slide-in-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-in-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
    transform: translateX(1000px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
    transform: translateX(1000px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation blink-1
 * ----------------------------------------
 */

.blink-1 {
  -webkit-animation: blink-1 1s infinite both;
  animation: blink-1 1s infinite both;
}

@-webkit-keyframes blink-1 {

  0%,
  50%,
  100% {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

@keyframes blink-1 {

  0%,
  50%,
  100% {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

/**
 * ----------------------------------------
 * animation heartbeat
 * ----------------------------------------
 */

.heartbeat {
  -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
  animation: heartbeat 1.5s ease-in-out infinite both;
}

@-webkit-keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  10% {
    -webkit-transform: scale(0.91);
    transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  17% {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  33% {
    -webkit-transform: scale(0.87);
    transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  45% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  10% {
    -webkit-transform: scale(0.91);
    transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  17% {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  33% {
    -webkit-transform: scale(0.87);
    transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  45% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

/**
 * ----------------------------------------
 * animation slide-in-fwd-bottom
 * ----------------------------------------
 */

.slide-in-fwd-bottom {
  -webkit-animation: slide-in-fwd-bottom 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-in-fwd-bottom 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes slide-in-fwd-bottom {
  0% {
    -webkit-transform: translateZ(-1400px) translateY(800px);
    transform: translateZ(-1400px) translateY(800px);
  }

  100% {
    -webkit-transform: translateZ(0) translateY(0);
    transform: translateZ(0) translateY(0);
  }
}

@keyframes slide-in-fwd-bottom {
  0% {
    -webkit-transform: translateZ(-1400px) translateY(800px);
    transform: translateZ(-1400px) translateY(800px);
  }

  100% {
    -webkit-transform: translateZ(0) translateY(0);
    transform: translateZ(0) translateY(0);
  }
}

/**
 * ----------------------------------------
 * animation rotate-center
 * ----------------------------------------
 */

.rotate-center {
  -webkit-animation: rotate-center 0.6s linear infinite both;
  animation: rotate-center 0.6s linear infinite both;
}

@-webkit-keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/**
 * ----------------------------------------
 * animation slide-in-top
 * ----------------------------------------
 */

.slide-in-top {
  -webkit-animation: slide-in-top 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-in-top 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation slide-in-fwd-center
 * ----------------------------------------
 */

.slide-in-fwd-center {
  -webkit-animation: slide-in-fwd-center 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-in-fwd-center 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.slide-in-fwd-center-delay {
  -webkit-animation: slide-in-fwd-center 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
  animation: slide-in-fwd-center 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}

@-webkit-keyframes slide-in-fwd-center {
  0% {
    -webkit-transform: translateZ(-1400px);
    transform: translateZ(-1400px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

@keyframes slide-in-fwd-center {
  0% {
    -webkit-transform: translateZ(-1400px);
    transform: translateZ(-1400px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation slide-in-bottom
 * ----------------------------------------
 */

.slide-in-bottom {
  -webkit-animation: slide-in-bottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-in-bottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}