.body {
  margin: 0;
  width: 100%;
  height: 100%;
  background-color: '#EDEDED';
  overflow: hidden;
}

ul {
  padding: 0;
}

.main {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
}

.cloud-img {
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
  display: block;
  min-width: 300px;
}

.cloud-side-menu {
  position: absolute;
  top: 20px;
  left: 0;
}

.cloud-logo {
  width: 105px;
  margin-top: 10px;
  margin-bottom: 50px;
  margin-left: 50px
}

.cloud-nav {
  height: 535px;
  overflow: hidden;
  transition: all .5s ease-out
}

.cloud-nav.open .cloud-nav-list{
  width: 100%;
  opacity: 1;
}

.cloud-nav.close .cloud-nav-list{
  width: 0;
  opacity: 0;
}

.cloud-nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .2s;
  margin-top: 10px;
  margin-left: 10px;
}

.cloud-nav-list-item {
  width: 110px;
  padding-left: 9px;
  border-bottom: 1px solid #102E4D;
  cursor: pointer;
  list-style: none;
}

.cloud-nav-list-item-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cloud-nav-list-item-logo {
  height: 24px;
}

.cloud-nav-list-item-logo-name {
  height: 30px;
}

.cloud-nav-list-item-name-img {
  width: 40px;
}

.cloud-nav-icon-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #E5F400;
  height: 45px;
  width: 100%;
  cursor: pointer;
}

.cloud-nav.open {
  width: 210px;
}

.cloud-nav.close {
  width: 45px;
}

.cloud-nav.open .cloud-nav-icon-container::after {
  position: absolute;
  right: 0;
  top: 50%;
  content: ' ';
  justify-self: flex-end;
  background-color: #102E4D;
  width: 18px;
  height: 3px;
  margin-right: 15px;
  border-radius: 5px;
}

.open .cloud-nav-icon { 
  display: none;
}
.close .cloud-nav-icon {
  position: relative;
  height: 18px;
  width: 18px;
}
.cloud-nav-icon::before {
  content: ' ';
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 5px;
  background-color: #102E4D;
}
.cloud-nav-icon::after { 
  content: ' ';
  position: absolute;
  top:0;
  left: calc(50% - 1px);
  background-color: #102E4D;
  width: 3px;
  height: 100%;
  border-radius: 5px;
}

.footer {
  position: absolute;
  bottom: 20px;
  text-align: center;
  cursor: pointer;
}

.footer-text {
  font-size: 8px;
  letter-spacing: 1px;
  color: #102E4D;
  opacity: .8;
  font-family: 'Playfair Display';
  text-transform: uppercase;
  line-height: 10px;
  word-spacing: 2px;
  text-decoration: underline;
}

.logo-shakers {
  width: 129px;
  margin-top: 10px;
}

@media(max-width: 1066px) {
  /* .cloud-nav-icon-container {
    background-color: #102E4D;
  }
  .cloud-nav-icon::before {
    background-color: #E5F400;
  }
  .cloud-nav-icon::after { 
    background-color: #E5F400;
  }
  .cloud-nav.open .cloud-nav-icon-container::after {
    background-color: #E5F400;
  } */

}

@media(max-width: 800px) {
  .cloud-nav-icon-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    width: 100%;
    cursor: pointer;
  }

  .cloud-logo {
    width: 89px;
    margin-top: 0px;
    margin-bottom: 29px;
    margin-left: 25px;
  }

  .cloud-nav-icon-container {
    height: 40px;
  }

  .cloud-nav.open {
    width: 180px;
    background: rgba(255, 255, 255, .8);
  }

  .cloud-nav.close {
    width: 40px;
  }

  .cloud-nav-list-item {
    width: 103px;
    padding-left: 7px;
  }

  .cloud-nav-list-item-logo-name {
    height: 28px;
  }

  .cloud-nav-list-item-logo {
    height: 22px;
    width: 22px;
  }

 
}

@media(min-width: 800px) {
  .background-img.mobile {
    display: none;
  }

  .cloud-logo {
    width: 105px;
    padding-top: 12px;
  }

  .footer{
    bottom: 30px;
  }

  .footer-text {
    font-size: 9px;
  }

  .logo-shakers {
    width: 145px;
    margin-top: 15px;
  }
}