@import url("https://fonts.googleapis.com/css2?family=Lobster&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  background-color: #000000;
}

a {
  text-decoration: none;
}

.container-fluid {
  margin: auto;
  padding: 0;
  max-width: 1920px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

section {
  padding: 60px 0;
}

.section-heading h2 {
  font-size: 2.5rem;
  text-transform: capitalize;
  text-align: center;
  color: #ee7614;
  font-weight: 700;
  padding: 2.5rem 0 1rem 0;
}

::selection {
  color: #000000;
  background: #fff;
}

.btn {
  outline: none;
}

.btn:focus {
  outline: none;
  box-shadow: none;
}

.bd-grid {
  width: 100%;
  max-width: 1500px;
  display: grid;
  margin-left: 2rem;
  margin-right: 2rem;
}

/*------------------------------------------ HEADER -----------------------------*/
.header-section {
  padding: 0;
}

.header {
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 1rem;
  z-index: 100000;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_toggle {
  font-size: 2.5rem;
  cursor: pointer;
  color: #ee7614;
}

/*----------------------- NAV ------------------*/
@media screen and (max-width: 768px) {
  .nav {
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    left: -100%;
    background-color: #181818;
    width: 80%;
    height: 100vh;
    padding: 2rem 0;
    z-index: 1000;
    transition: .5s;
    overflow-y: auto;
  }
}

.nav_content {
  display: flex;
  flex-direction: column;
}

.nav_perfil {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 3rem;
}

.nav_img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin-bottom: .5rem;
}

.nav_img img {
  width: 90px;
}

.nav_name {
  display: block;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 20px;
  color: #ee7614;
}

.nav_item {
  margin-bottom: 2rem;
}

.nav_link {
  font-weight: 600;
  color: #ee7614;
}

.nav_link:hover {
  color: #eb0033;
}

/*Show menu*/
.show {
  left: 0;
}

/*Active link*/
.active {
  color: #fff;
}

/*------------ Dropdown ----------------*/
.dropdown_link {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown_icon {
  font-size: 1.3rem;
  transition: .5s;
}

.dropdown_menu {
  margin: 1rem 0 0 1rem;
  display: none;
  background-color: #181818;
}

.dropdown_item {
  margin: 1rem 0;
}

.dropdown:hover > .dropdown_menu {
  display: block;
}

.dropdown:hover .dropdown_icon {
  transform: rotate(180deg);
}

/* ===== MEDIA QUERIES=====*/
@media screen and (min-width: 576px) {
  .nav {
    width: 288px;
  }
}

@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }
  .header_logo,
  .header_toggle {
    display: none;
  }
  .nav {
    width: 100%;
  }
  .nav_content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .nav_perfil {
    flex-direction: row;
    text-align: initial;
    margin-bottom: 0;
  }
  .nav_img {
    width: 120px;
    height: 120px;
    margin-right: 0.2rem;
    margin-bottom: 0;
  }
  .nav_img img {
    width: 100px;
  }
  .nav_name {
    color: #ee7614;
  }
  .nav_list {
    display: flex;
    align-items: center;
  }
  .nav_item {
    margin: 0 1.5rem;
    padding: 1.4rem 0;
  }
  .nav_link {
    color: #ee7614;
  }
  .nav_link:hover {
    color: #eb0033;
  }
  /*Active link new color*/
  .active {
    color: #ee7614;
  }
  .dropdown {
    position: relative;
  }
  .dropdown_menu {
    position: fixed;
    margin: 0;
    top: calc(var(--header-height) + 1rem);
    padding: .5rem 1.5rem;
    box-shadow: 0 0 10px #ffffff57;
    border-radius: .5rem;
  }
  .dropdown_item {
    margin: .5rem 0;
  }
}

@media screen and (min-width: 1024px) {
  .bd-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

/*-------------Header slider---------------*/
.head_slider {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  font-size: 14px;
  color: #000000;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.swiper-container {
  width: 100%;
  padding: 80px 0;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 200px;
  height: 300px;
  border-radius: 5px;
  -webkit-box-reflect: below 10px liner-gradient(transparent, transparent, #000000);
}

.swiper-slide img {
  display: block;
  border-radius: 5px;
  width: 100%;
  height: 300px;
}

/*-------------------------------Cards-----------------------------*/
.section-title {
  transform: skewY(5deg);
  width: 100%;
  text-align: center;
  margin-bottom: 60px;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

.student {
  background-color: #181818;
  padding: 60px 0;
  transform: skewY(-5deg);
  border-top: 2px solid #ee7614;
  border-bottom: 2px solid #ee7614;
}

.student-item {
  width: calc((100% / 4) - 30px);
  margin: 0 15px 30px;
  position: relative;
  border-radius: 20px;
  transition: box-shadow 0.5s ease;
  transform: skewY(5deg);
  background-color: #000000;
  display: none;
}

.student-item:hover {
  box-shadow: 0 0 10px #ffffff57;
}

.student-item img {
  width: calc(100% - 60px);
  position: relative;
  z-index: 1;
  transition: transform 0.5s ease;
  border-radius: 20px;
}

.student-item:hover img {
  transform: translateX(60px);
}

.student-item h3 {
  position: absolute;
  background-color: #ee7614;
  color: #000;
  border-radius: 30px;
  padding: 10px 20px;
  right: 0;
  bottom: 15px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: capitalize;
  z-index: 2;
  transition: right 0.5s ease;
  margin-left: 75px;
}

.student-item h3:hover {
  background-color: #eb0033;
  color: #fff;
  box-shadow: 0 0 10px #ffffff57;
}

.student-item:hover h3 {
  right: 15px;
}

.student-item .social-links {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 100%;
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.5s ease;
}

.student-item:hover .social-links {
  transform: translateX(0%);
  opacity: 1;
}

.student-item .social-links a {
  display: block;
  height: 35px;
  width: 35px;
  line-height: 35px;
  font-size: 16px;
  color: #ee7614;
  border: 2px solid #eb0033;
  border-radius: 50%;
  margin: 3px 0;
  text-align: center;
  transition: all 0.5s ease;
}

.student-item .social-links a:hover {
  color: #eb0033;
  border-color: #ee7614;
}

/*responsive*/
@media (max-width: 991px) {
  .student-item {
    width: calc(50% - 30px);
  }
}

@media (max-width: 575px) {
  .student-item {
    width: calc(100% - 30px);
  }
}

.noContent {
  color: none;
  pointer-events: none;
  background-color: transparent !important;
}

/*----------------industry-connect---- ---wall-of-fame------------------*/
.wall-img img {
  border-radius: 1rem;
}

/*----------------------------scrollbar-----------------------------*/
/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px 0 0 10px #ffffff57;
  border-radius: 10px;
  animation: scrolls 5s linear infin;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: linear-gradient(to top, #ee7614, #eb0033);
  border-radius: 10px;
  animation: scrolls 5s linear infinite;
}

@keyframes scrolls {
  0% {
    filter: hue-rotate(0deg);
  }
  50% {
    filter: hue-rotate(360deg);
  }
  100% {
    filter: hue-rotate(0deg);
  }
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to top, #eb0033, #ee7614);
}

/*----------------------------------footer------------------------------------------*/
.footer-section {
  padding: 0;
}

.footer {
  margin: 80px 0 0 0;
  background-color: #181818;
  bottom: 0;
}

.footer-wave-svg {
  background-color: transparent;
  display: block;
  height: 30px;
  position: relative;
  top: -1px;
  width: 100%;
}

.footer-wave-path {
  fill: #000000;
}

.footer-content {
  margin-left: auto;
  margin-right: auto;
  max-width: 1230px;
  padding: 40px 15px 450px;
  position: relative;
}

.footer-content-column {
  box-sizing: border-box;
  float: left;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
  color: #ee7614;
}

.footer-content-column ul li a {
  color: #ee7614;
  text-decoration: none;
}

.footer-logo-link {
  display: inline-block;
}

.footer-menu {
  margin-top: 30px;
}

.footer-menu-name {
  color: #ee7614;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .1em;
  line-height: 18px;
  margin-bottom: 0;
  margin-top: 0;
  text-transform: uppercase;
}

.footer-menu-list {
  list-style: none;
  margin-bottom: 0;
  margin-top: 10px;
  padding-left: 0;
}

.footer-menu-list li {
  margin-top: 5px;
}

.footer-call-to-action-description {
  color: #ee7614;
  margin-top: 10px;
  margin-bottom: 20px;
}

.footer-call-to-action-button:hover {
  background-color: #eb0033;
  color: #000000;
}

.button:last-of-type {
  margin-right: 0;
}

.footer-call-to-action-button {
  background-color: #ee7614;
  border-radius: 21px;
  color: #181818;
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  line-height: 18px;
  padding: 12px 30px;
  margin: 0 10px 10px 0;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color .2s;
  cursor: pointer;
  position: relative;
}

.footer-call-to-action {
  margin-top: 30px;
}

.footer-call-to-action-title {
  color: #ee7614;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .1em;
  line-height: 18px;
  margin-bottom: 0;
  margin-top: 0;
  text-transform: uppercase;
}

.footer-call-to-action-link-wrapper {
  margin-bottom: 0;
  margin-top: 10px;
  color: #ee7614;
  text-decoration: none;
}

.footer-call-to-action-link-wrapper a {
  color: #ee7614;
  text-decoration: none;
}

.footer-social-links {
  bottom: 0;
  height: 54px;
  position: absolute;
  right: 0;
  width: 236px;
}

.footer-social-amoeba-svg {
  height: 54px;
  left: 0;
  display: block;
  position: absolute;
  top: 0;
  width: 236px;
}

.footer-social-amoeba-path {
  fill: #000;
}

.footer-social-link.linkedin {
  height: 26px;
  left: 12px;
  top: 20px;
  width: 24px;
}

.footer-social-link {
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  transform: rotate(0deg);
  transition: all .3s ease-in-out;
}

.footer-social-link:hover {
  transform: rotate(45deg);
}

.footer-social-icon-svg {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.8rem;
}

.footer-social-icon-path {
  fill: #ee7614;
  transition: fill .3s;
}

.footer-social-link.twitter {
  height: 28px;
  left: 70px;
  top: 12px;
  width: 28px;
}

.footer-social-link.youtube {
  height: 24px;
  left: 132px;
  top: 20px;
  width: 24px;
}

.footer-social-link.github {
  height: 30px;
  left: 186px;
  top: 15px;
  width: 22px;
}

.footer-copyright {
  background-color: #000000;
  color: #ee7614;
  padding: 15px 30px;
  text-align: center;
}

.footer-copyright-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 1500px;
}

.footer-copyright-text {
  color: #ee7614;
  font-size: .8rem;
  font-weight: 600;
  line-height: 18px;
  margin-bottom: 0;
  margin-top: 0;
}

.footer-copyright-link a {
  color: #eb0033;
  text-decoration: none;
}

/* Media Query For different screens */
@media (min-width: 320px) and (max-width: 479px) {
  /* smartphones, portrait iPhone, portrait 480x320 phones (Android) */
  .footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 1050px;
    position: relative;
  }
}

@media (min-width: 480px) and (max-width: 599px) {
  /* smartphones, Android phones, landscape iPhone */
  .footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 1050px;
    position: relative;
  }
}

@media (min-width: 600px) and (max-width: 800px) {
  /* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */
  .footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 1050px;
    position: relative;
  }
}

@media (min-width: 801px) {
  /* tablet, landscape iPad, lo-res laptops ands desktops */
}

@media (min-width: 1025px) {
  /* big landscape tablets, laptops, and desktops */
}

@media (min-width: 1281px) {
  /* hi-res laptops and desktops */
}

@media (min-width: 760px) {
  .footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 450px;
    position: relative;
  }
  .footer-wave-svg {
    height: 50px;
  }
  .footer-content-column {
    width: 24.99%;
  }
}

/*----------------------------------------login---------------------------------------*/
.login-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background: url(../image/76YM.gif) center center no-repeat;
  background-size: cover;
}

.login-box {
  background: rgba(0, 0, 0, 0.3);
  filter: brightness(100%);
  width: 350px;
  max-width: 80%;
  max-height: 100%;
  border: 2px solid #ee7614;
  color: #ee7614;
  border-radius: 30px;
}

.login-btn-box a {
  color: #ee7614;
}

.login-img {
  width: 60px;
  margin: auto;
}

.login-head {
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.login-btn {
  font-size: 1rem;
  cursor: pointer;
  width: 80%;
  border: 1px solid #ee7614;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 30px;
}

.login-btn-box i {
  padding: 0 10px 0 0;
  font-size: 1rem;
}

.login-btn:hover {
  background: rgba(0, 0, 0, 0.5);
}

.login-flip-box {
  width: 90%;
  border: 2px solid #ee7614;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.3);
}

.login-flip-box .submit {
  width: 50%;
}

.triangle {
  width: 0;
  height: 0;
  border-left: 1rem solid transparent;
  border-right: 1rem solid transparent;
  border-bottom: 1.3rem solid #ee7614;
  transform: translateY(-1.3rem);
}

.login-flip-box input {
  width: 90%;
  outline: none;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #ee7614 !important;
  color: #ee7614 !important;
  padding: .5rem .5rem .5rem .5rem !important;
}

.login-flip-box input:focus {
  color: #eb0033 !important;
  border: 1px solid #eb0033 !important;
}

.login-flip-box input::placeholder {
  color: #ee7614 !important;
  padding: 20px;
}

/*---------------------------------------social------------------------------------------*/
.card-group {
  border: 1px solid #ee7614;
  background: none;
}

/*-------------------------------preloader--------------------------------*/
.preloader {
  position: fixed;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 100000;
  background: #181818;
}

.preloader h1 {
  position: absolute;
  font-weight: 600;
  font-size: 1.3rem;
  color: #fff;
  left: 50%;
  top: 58%;
  margin-left: -25px;
}

.load {
  position: absolute;
  top: 50%;
  margin-left: -50px;
  left: 50%;
  animation: speeder .4s linear infinite;
}

.load > span {
  height: 5px;
  width: 35px;
  background: #fff;
  position: absolute;
  top: -19px;
  left: 60px;
  border-radius: 2px 10px 1px 0;
}

.base span {
  position: absolute;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-right: 100px solid #fff;
  border-bottom: 6px solid transparent;
}

.base span:before {
  content: "";
  height: 22px;
  width: 22px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  right: -110px;
  top: -16px;
}

.base span:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 0 solid transparent;
  border-right: 55px solid #fff;
  border-bottom: 16px solid transparent;
  top: -16px;
  right: -98px;
}

.face {
  position: absolute;
  height: 12px;
  width: 20px;
  background: #fff;
  border-radius: 20px 20px 0 0;
  transform: rotate(-40deg);
  right: -125px;
  top: -15px;
}

.face:after {
  content: "";
  height: 12px;
  width: 12px;
  background: #fff;
  right: 4px;
  top: 7px;
  position: absolute;
  transform: rotate(40deg);
  transform-origin: 50% 50%;
  border-radius: 0 0 0 2px;
}

.load > span > span:nth-child(1),
.load > span > span:nth-child(2),
.load > span > span:nth-child(3),
.load > span > span:nth-child(4) {
  width: 30px;
  height: 1px;
  background: #fff;
  position: absolute;
  animation: fazer1 .2s linear infinite;
}

.load > span > span:nth-child(2) {
  top: 3px;
  animation: fazer2 .4s linear infinite;
}

.load > span > span:nth-child(3) {
  top: 1px;
  animation: fazer3 .4s linear infinite;
  animation-delay: -1s;
}

.load > span > span:nth-child(4) {
  top: 4px;
  animation: fazer4 1s linear infinite;
  animation-delay: -1s;
}

@keyframes fazer1 {
  0% {
    left: 0;
  }
  100% {
    left: -80px;
    opacity: 0;
  }
}

@keyframes fazer2 {
  0% {
    left: 0;
  }
  100% {
    left: -100px;
    opacity: 0;
  }
}

@keyframes fazer3 {
  0% {
    left: 0;
  }
  100% {
    left: -50px;
    opacity: 0;
  }
}

@keyframes fazer4 {
  0% {
    left: 0;
  }
  100% {
    left: -150px;
    opacity: 0;
  }
}

@keyframes speeder {
  0% {
    transform: translate(2px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -3px) rotate(-1deg);
  }
  20% {
    transform: translate(-2px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 3px) rotate(-1deg);
  }
  60% {
    transform: translate(-1px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-2px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(2px, 1px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}

.longLine {
  position: absolute;
  width: 100%;
  height: 100%;
}

.longLine span {
  position: absolute;
  height: 2px;
  width: 20%;
  background: #fff;
}

.longLine span:nth-child(1) {
  top: 20%;
  animation: lf .6s linear infinite;
  animation-delay: -5s;
}

.longLine span:nth-child(2) {
  top: 40%;
  animation: lf2 .8s linear infinite;
  animation-delay: -1s;
}

.longLine span:nth-child(3) {
  top: 60%;
  animation: lf3 .6s linear infinite;
}

.longLine span:nth-child(4) {
  top: 80%;
  animation: lf4 .5s linear infinite;
  animation-delay: -3s;
}

@keyframes lf {
  0% {
    left: 200%;
  }
  100% {
    left: -200%;
    opacity: 0;
  }
}

@keyframes lf2 {
  0% {
    left: 200%;
  }
  100% {
    left: -200%;
    opacity: 0;
  }
}

@keyframes lf3 {
  0% {
    left: 200%;
  }
  100% {
    left: -100%;
    opacity: 0;
  }
}

@keyframes lf4 {
  0% {
    left: 200%;
  }
  100% {
    left: -100%;
    opacity: 0;
  }
}

/*----------------button-------------------*/
.loadButton {
  transform: skewY(5deg);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

.bubbly-button {
  font-size: 1em;
  padding: .6em 2em;
  font-weight: 600;
  background-color: #ee7614;
  color: #000000 !important;
  border-radius: 15px 0 15px 0;
  position: relative;
  border: none;
  cursor: pointer;
  transition: transform ease-in 0.1s, box-shadow ease-in 0.25s;
  appearance: none;
}

.bubbly-button:focus {
  outline: 0;
}

.bubbly-button:before, .bubbly-button:after {
  position: absolute;
  content: '';
  display: block;
  width: 140%;
  height: 100%;
  left: -20%;
  z-index: -1000;
  transition: all ease-in-out 0.5s;
  background-repeat: no-repeat;
}

.bubbly-button:before {
  display: none;
  top: -75%;
  background-image: radial-gradient(circle, #ee7614 20%, transparent 20%), radial-gradient(circle, transparent 20%, #ee7614 20%, transparent 30%), radial-gradient(circle, #ee7614 20%, transparent 20%), radial-gradient(circle, #ee7614 20%, transparent 20%), radial-gradient(circle, transparent 10%, #ee7614 15%, transparent 20%), radial-gradient(circle, #ee7614 20%, transparent 20%), radial-gradient(circle, #ee7614 20%, transparent 20%), radial-gradient(circle, #ee7614 20%, transparent 20%), radial-gradient(circle, #ee7614 20%, transparent 20%);
  background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%, 10% 10%, 18% 18%;
}

.bubbly-button:after {
  display: none;
  bottom: -75%;
  background-image: radial-gradient(circle, #ee7614 20%, transparent 20%), radial-gradient(circle, #ee7614 20%, transparent 20%), radial-gradient(circle, transparent 10%, #ee7614 15%, transparent 20%), radial-gradient(circle, #ee7614 20%, transparent 20%), radial-gradient(circle, #ee7614 20%, transparent 20%), radial-gradient(circle, #ee7614 20%, transparent 20%), radial-gradient(circle, #ee7614 20%, transparent 20%);
  background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 10% 10%, 20% 20%;
}

.bubbly-button:active {
  transform: scale(0.9);
  background-color: #d96a10;
  box-shadow: 0 0 10px #eb003381;
}

.bubbly-button.animate:before {
  display: block;
  animation: topBubbles ease-in-out 0.75s forwards;
}

.bubbly-button.animate:after {
  display: block;
  animation: bottomBubbles ease-in-out 0.75s forwards;
}

@keyframes topBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
  }
  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
  }
  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

@keyframes bottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
  }
  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
  }
  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
/*# sourceMappingURL=main.css.map */