/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

html,
body {
  margin: 0;
  height: 100%;
  background-color: rgb(15, 18, 25);
  overflow: auto;
  overflow-x: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-blend-mode: screen;
}

/* Styles for the header */
header {
  position: static;
  top: 0;
  left: 0;
  padding: 0;
  margin-top: 10px;
  width: 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;
  z-index: 100;
}

#cypherLogo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 221px;
  height: 41.544px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

#cypherBlkText {
  margin-left: 15px;
  height: 25px;
}

#rotation {
  width: 35.544px;
  height: 31.544px;
}

#emailSocial {
  display: none;
}

/* End of styles for the header */

/* ---------------------------- */

/* Styles for the main section */
main {
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 20px;
  margin-left: 20px;
}

#stealthMode {
  max-width: 240px;
  height: 100px;
  color: #fff;
  text-align: center;
  font-family: Darker Grotesque;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

#stealthModeActivated {
  opacity: 0;
  color: #15ee52;
  text-align: center;
  font-family: Darker Grotesque;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

#companyDescription {
  color: #fff;
  text-align: center;
  font-family: Darker Grotesque;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 109.836%; /* 21.967px */
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  margin-top: -30px;
}

#locations {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 5px;
}

#locations #textLocations {
  color: rgba(255, 255, 255, 0.7);
  font-family: Darker Grotesque;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 109.836%; /* 26.361px */
  margin-left: 8px;
}

/* End of styles for the main section */

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: auto;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 100;
}

footer #emailSocial {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

footer #socialIcons {
  margin-bottom: 48px;
}

footer #linkedin {
  width: 24px;
  height: 24px;
  margin-top: 24px;
}

#linkedin:hover {
  cursor: pointer;
}

a {
  font-family: Darker Grotesque;
  text-decoration: none;
  color: #fff;
}

#worldMap {
  width: 95%;
}

#worldMapAndCypherBlkLogo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
}

#cypherLogoBlack {
  display: none;
}

/* Fade In and Fade Out Keyframes */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* Stealth Mode Animations */
.show {
  -webkit-animation: fadeIn 1s forwards;
  animation: fadeIn 1s forwards;
}

.hide {
  -webkit-animation: fadeOut 1s forwards;
  animation: fadeOut 1s forwards;
}

/* Rotation Animation */
@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.rotate {
  -webkit-animation: rotate 3s linear infinite;
  animation: rotate 3s linear infinite;
}
