html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: #00bceb;
  overflow: hidden;
}

@font-face {
  font-family: "Cisco-Sans, Fallback, sans-serif";
  font-weight: 800;
  src: url(https://d1ellpzeh3keto.cloudfront.net/CiscoSans-Heavy.ttf);
}

@font-face {
  font-family: "Cisco-Sans, Fallback, sans-serif";
  font-weight: 300;
  src: url(https://d1ellpzeh3keto.cloudfront.net/CiscoSans.ttf);
}

p,
a,
button {
  font-family: "Cisco-Sans, Fallback, sans-serif";
  font-weight: 300;
}

h1,
h2,
h3,
h4 {
  font-family: "Cisco-Sans, Fallback, sans-serif";
  font-weight: 800;
}

a,
h2 {
  text-decoration: none;
  color: #00bceb;
}

a:hover,
h2:hover {
  color: #0a4475;
}

.word-cloud {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.word-cloud #container {
  width: 75%;
  height: 600px;
  position: relative;
  z-index: 2;
}

@media (max-width: 996px) {
  .word-cloud #container {
    width: 100%;
    height: auto;
  }
}

.word-cloud img.cloud-big {
  position: absolute;
  width: 70%;
  z-index: 0;
}

@media (max-width: 600px) {
  .word-cloud img.cloud-big {
    width: 100%;
  }
}

.anychart-credits-text {
  display: none;
}

#logo {
  position: absolute;
  width: 100%;
  z-index: 10;
}

#logo img.logo {
  width: 160px;
  margin: 0 20px;
}

@media (max-width: 996px) {
  #logo img.logo {
    width: 125px;
    margin: 0 5px;
  }
}

.partner-head {
  width: 100%;
  background: white;
  padding: 20px 10px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.partner-head .msg {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.partner-head .msg .social {
  width: 50px;
  display: inline-block;
  margin: 0 10px;
}

@media (max-width: 996px) {
  .partner-head .msg .social {
    width: 40px;
    margin: 0 5px;
    display: block;
  }
}

.partner-head .msg p {
  font-size: 24px;
  margin: 0;
}

@media (max-width: 996px) {
  .partner-head .msg p {
    font-size: 18px;
    display: block;
  }
}

#clockdiv {
  font-family: sans-serif;
  color: #fff;
  display: inline-block;
  font-weight: 100;
  text-align: center;
  font-size: 30px;
  background: #0a4475;
  border-radius: 5px;
  padding: 0 20px;
}

@media (max-width: 996px) {
  #clockdiv {
    font-size: 24px;
    padding: 0 10px;
  }
}

#clockdiv > div {
  display: inline-block;
  padding: 0 5px;
}

#clockdiv div > span {
  display: inline-block;
  font-weight: 800;
}

.smalltext {
  font-size: 12px;
  color: #00bceb;
  padding: 0;
  margin: 0;
}

@media (max-width: 996px) {
  .smalltext {
    font-size: 12px;
  }
}

#clouds {
  position: fixed;
  padding: 100px 0;
  z-index: 0;
  width: 100%;
}

/*Time to finalise the cloud shape*/
.cloud {
  width: 200px;
  height: 100px;
  background-image: url("/assets/cloud03.png");
  border-radius: 200px;
  -moz-border-radius: 200px;
  -webkit-border-radius: 200px;
  position: relative;
}

/*Time to finalise the cloud shape*/
.cloud-2 {
  width: 200px;
  height: 110px;
  background-image: url("/assets/cloud04.png");
  border-radius: 200px;
  -moz-border-radius: 200px;
  -webkit-border-radius: 200px;
  position: relative;
}

/*Time to finalise the cloud shape*/
.cloud-3 {
  width: 500px;
  height: 204px;
  background-image: url("/assets/cloud05.png");
  border-radius: 200px;
  -moz-border-radius: 200px;
  -webkit-border-radius: 200px;
  position: relative;
}

/*Time to finalise the cloud shape*/
.cloud-4 {
  width: 1000px;
  height: 510px;
  background-image: url("/assets/cloud06.png");
  border-radius: 200px;
  -moz-border-radius: 200px;
  -webkit-border-radius: 200px;
  position: relative;
}

.cloud:after {
  width: 200px;
  height: 120px;
  top: -55px;
  left: auto;
  right: 15px;
}

/*Time to animate*/
.x1 {
  -webkit-transform: scale(0.3);
  transform: scale(0.9);
  opacity: 0.5;
  /*opacity proportional to the size*/
  bottom: -200px;
  right: -800px;
  -webkit-animation: moveclouds 120s linear infinite;
  -moz-animation: moveclouds 120s linear infinite;
  -o-animation: moveclouds 120s linear infinite;
}

/*variable speed, opacity, and position of clouds for realistic effect*/
.x2 {
  right: -600px;
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 0.5;
  /*opacity proportional to the size*/
  /*Speed will also be proportional to the size and opacity*/
  /*More the speed. Less the time in 's' = seconds*/
  -webkit-animation: moveclouds 105s linear infinite;
  -moz-animation: moveclouds 105s linear infinite;
  -o-animation: moveclouds 155s linear infinite;
}

.x3 {
  left: -850px;
  bottom: -200px;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  opacity: 0.6;
  /*opacity proportional to the size*/
  -webkit-animation: moveclouds 100s linear infinite;
  -moz-animation: moveclouds 100s linear infinite;
  -o-animation: moveclouds 100s linear infinite;
}

.x4 {
  left: -1000px;
  top: -250px;
  -webkit-transform: scale(0.75);
  transform: scale(0.75);
  opacity: 0.5;
  /*opacity proportional to the size*/
  -webkit-animation: moveclouds 60s linear infinite;
  -moz-animation: moveclouds 60s linear infinite;
  -o-animation: moveclouds 60s linear infinite;
}

.x5 {
  left: -150px;
  top: -150px;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0.6;
  /*opacity proportional to the size*/
  -webkit-animation: moveclouds 40s linear infinite;
  -moz-animation: moveclouds 40s linear infinite;
  -o-animation: moveclouds 40s linear infinite;
}

.x6 {
  left: -550px;
  top: -150px;
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 0.5;
  /*opacity proportional to the size*/
  -webkit-animation: moveclouds 200s linear infinite;
  -moz-animation: moveclouds 200s linear infinite;
  -o-animation: moveclouds 200s linear infinite;
}

.x7 {
  right: -850px;
  top: -350px;
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 0.5;
  /*opacity proportional to the size*/
  -webkit-animation: moveclouds 200s linear infinite;
  -moz-animation: moveclouds 200s linear infinite;
  -o-animation: moveclouds 200s linear infinite;
}

.x8 {
  left: -100px;
  top: -250px;
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 0.5;
  /*opacity proportional to the size*/
  -webkit-animation: moveclouds 300s linear infinite;
  -moz-animation: moveclouds 300s linear infinite;
  -o-animation: moveclouds 300s linear infinite;
}

@-webkit-keyframes moveclouds {
  0% {
    margin-left: 1000px;
  }
  100% {
    margin-left: -1000px;
  }
}
/*# sourceMappingURL=main.css.map */