/*
* 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: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  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;
  margin-top: 19px;
  margin-left: 165px;
  width: 221px;
  height: 41.544px;
}

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

#rotation {
  margin-top: 19px;
  margin-left: 0px;
  width: 45.544px;
  height: 41.544px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

#emailSocial {
  margin-top: 28px;
  margin-left: 165px;
  margin-right: 165px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

header #socialIcons {
  margin-left: 48px;
}

header #linkedin {
  width: 24px;
  height: 24px;
  margin-left: 10px;
  margin-top: 5px;
}

#linkedin:hover {
  cursor: pointer;
}

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

/* End of styles for the header */

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

/* Styles for the main section */
main {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  margin-top: 40px;
  margin-left: 165px;
  margin-right: 165px;
  margin-bottom: 0px;
  width: 75%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

#stealthMode {
  color: #fff;
  font-family: Darker Grotesque;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

#stealthModeActivated {
  opacity: 0;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #15ee52;
}

#companyDescription {
  color: #fff;
  font-family: Darker Grotesque;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 109.836%; /* 43.934px */
}

#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 */

#cypherLogoBlack {
  width: 500px;
  height: 500px;
  margin-right: -55px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

#worldMap {
  max-width: 1000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 5%;
  width: 45vw;
}

#worldMapAndCypherBlkLogo {
  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#phoneNumber {
  margin-left: 25px;
}
footer {
  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;
}
