*:focus{
  outline: none;
}
header {
  min-height: 82vh;
  width: 100%;
  background-color: darkblue;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
}

header[dictionary] {
  background-image: url("../img/hero.png");
}

header[index] {
  background-image: url("../img/hero2.png");
}

header .hero__topbar {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  padding: 2rem 4rem;
  justify-content: space-between;
  align-items: center;
}

header .hero__topbar .forbeslogo {
  max-width: 7rem;
}

header .hero__topbar .supporttext {
  color: white;
  font-size: 1rem;
  text-transform: uppercase;
}

header .hero__topbar .supporttext a{
  color: inherit;
  text-decoration: none;
}

header .hero__topbar .supporttext a:hover{
  text-decoration: underline;
}

header .hero__topbar .socialbar {
  color: white;
  display: flex;
  align-items: center;
}

.fs-2rem{
  font-size: 2rem;
}

header .hero__topbar .socialbar .fa-facebook{
  color: #fff;
}

header .hero__topbar .socialbar .instalogo {
  font-size: 1.5rem;
  margin-left: 1rem;
  background-color: white;
  color: black;
  width: 33px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}

.ml-1rem{
  margin-left: 1rem;
}

header .hero__topbar .socialbar img{
  width: 33px;
  height: auto;
}

header .hero__topbar .socialbar a{
  color: black;
}

header .hero__title {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 1400px;
  width: 100%;
  margin-top: 0rem;
}

header .hero__title .title__logos {
  width: 100%;
  padding: 0 50px;
  display: flex;
  justify-content: left;
  align-items: center;
  position: relative;
  margin-bottom: 2rem;
}
header .hero__title .title__logos .atlassian {
  max-height: 2rem;
}
header .hero__title .title__logos .shivaforce {
  max-height: 4rem;
  margin-left: 2rem;
}
header .hero__title .title__text {
  font-size: 4rem;
  color: white;
  text-shadow: 0px 0px 10px black;
  text-transform: uppercase;
  font-weight: 700;
  width: 100%;
  text-align: left;
  letter-spacing: 0.3rem;
  margin-bottom: 2rem;
  padding-left: 2.25rem;
}
header[index] .hero__title .title__sub {
  display: none;
}
header .hero__title .title__sub {
  width: 100%;
  max-width: 480px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  margin-left: 4rem;
}
header .hero__title .title__sub span[text] {
  color: var(--red);
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 1rem;
  width: 40%;
  text-shadow: 0px 0px 10px black;
  text-align: center;
}

header .hero__title .title__sub span[hr] {
  width: 30%;
  border-top: 2px solid var(--red);
  height: 2px;
}

/************************Mouse Animation***********************/
.mouse {
  margin: 50px auto;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
}
.mouse-icon {
  width: 25px;
  height: 45px;
  border: 2px solid var(--red);
  border-radius: 15px;
  position: relative;
  text-align: center;
}
.mouse-wheel {
  height: 6px;
  margin: 2px auto 0;
  display: block;
  width: 3px;
  background-color: var(--red);
  border-radius: 50%;
  -webkit-animation: 1.6s ease infinite wheel-up-down;
  -moz-animation: 1.6s ease infinite wheel-up-down;
  animation: 1.6s ease infinite wheel-up-down;
}
@-webkit-keyframes wheel-up-down {
  0% {
    margin-top: 2px;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    margin-top: 20px;
    opacity: 0;
  }
}
@-moz-keyframes wheel-up-down {
  0% {
    margin-top: 2px;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    margin-top: 20px;
    opacity: 0;
  }
}
@keyframes wheel-up-down {
  0% {
    margin-top: 2px;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    margin-top: 20px;
    opacity: 0;
  }
}

@media screen and (max-width: 1220px) {
  header .hero__title {
    left: unset;
  }
}

@media screen and (max-width: 756px) {
  header .hero__title .title__logos .atlassian {
    max-height: 1.5rem;
  }
  header .hero__title .title__logos .shivaforce {
    max-height: 3rem;
  }
}

@media screen and (max-width: 600px) {
  header .hero__title .title__text {
    font-size: 2rem;
  }
  header .hero__topbar {
    padding: 2rem 1rem;
  }
  header .hero__topbar .forbeslogo {
    max-width: 5rem;
  }
  header .hero__topbar .supporttext {
    font-size: 0.7rem;
  }
}

@media screen and (max-width: 576px) {
  header .hero__title .title__logos {
    padding: 0 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  header .hero__title .title__logos > img {
    margin-bottom: 1rem;
    margin-left: 0;
  }
  header .hero__title .title__text {
    font-size: 2.5rem;
    text-align: center;
    padding: 0 1rem;
    order: 0;
  }
  header .hero__title .title__logos {
    padding: 0 1rem;
    flex-wrap: wrap;
    order: 1;
  }
  header .hero__title .title__logos .shivaforce {
    margin-left: 1rem;
  }
  .hero__title {
    margin-bottom: 17rem;
  }
  header .hero__topbar .socialbar .instalogo {
    width: 24px;
    height: 24px;
    font-size: 1rem;
  }
  header .hero__topbar .socialbar {
    font-size: 1.5rem;
  }
  header .hero__topbar .forbeslogo {
    max-width: 4rem;
  }
  header .hero__title .title__sub{
    justify-content: center;
    order: 2;
    max-width: unset;
    margin: 0;
  }
  header .hero__title .title__sub span[hr]{
    display: none;
  }
  header .hero__title .title__sub span[text]{
    width: unset;
  }
}
