@import url("https://fonts.googleapis.com/css2?family=Poppins&family=Source+Sans+Pro&display=swap");
body {
  margin: 0;
  padding: 0;
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 10%;
  padding-right: 10%;
  -webkit-animation: fadeIn 1s ease-in both;
          animation: fadeIn 1s ease-in both;
  opacity: 0;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20%, 0);
            transform: translate3d(0, -20%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20%, 0);
            transform: translate3d(0, -20%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

header div {
  margin: 0;
  padding: 0;
}

header div .logo {
  position: absolute;
  border: none;
}

@media (max-width: 768px) {
  header div .logo {
    left: 0;
  }
}

header div .logoText1 {
  font-family: "Poppins", sans-serif;
  color: #FFC04A;
  position: absolute;
  top: 26%;
  left: 12%;
  font-size: 2.5em;
  font-weight: 500;
}

header div .logoText2 {
  font-family: "Poppins", sans-serif;
  color: #FF6347;
  position: absolute;
  top: 52%;
  left: 12.6%;
  font-size: 1.5em;
  font-weight: 500;
}

header nav {
  margin-top: 2.5%;
}

@media (max-width: 768px) {
  header nav {
    margin-left: 10%;
  }
}

header nav a {
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  padding: 15px;
  font-size: 1.4em;
}

header nav a a:last-child {
  padding-right: 10px;
}

@media (max-width: 768px) {
  header nav a {
    font-size: 18px;
    padding: 5px;
  }
}

.navItem1 {
  background: #ffc04a;
  background-color: #00071C;
  background-image: -webkit-gradient(linear, left top, right top, from(#ffc04a), color-stop(25%, #ff9949));
  background-image: linear-gradient(90deg, #ffc04a 0%, #ff9949 25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}

.navItem1:hover {
  background: #757882;
  background-color: #757882;
  background-image: #757882;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}

.navItem2 {
  background: #ffc04a;
  background-color: #00071C;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(25%, #ff9949), color-stop(50%, #ff8848));
  background-image: linear-gradient(90deg, #ff9949 25%, #ff8848 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}

.navItem2:hover {
  background: #757882;
  background-color: #757882;
  background-image: #757882;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}

.navItem3 {
  background: #ffc04a;
  background-color: #00071C;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #ff8848), color-stop(75%, #ff7b48));
  background-image: linear-gradient(90deg, #ff8848 50%, #ff7b48 75%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}

.navItem3:hover {
  background: #757882;
  background-color: #757882;
  background-image: #757882;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}

.navItem4:hover {
  background: #757882;
  background-color: #757882;
  background-image: #757882;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}

hr {
  height: .25rem;
  width: 20%;
  margin: 0;
  background: #757882;
  border: none;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

@media (max-width: 768px) {
  hr {
    visibility: hidden;
  }
}

.navItem2:hover ~ hr {
  margin-left: 23%;
}

.navItem3:hover ~ hr {
  margin-left: 49%;
}

.navItem4:hover ~ hr {
  margin-left: 77%;
}

.active {
  background: #fff;
  background-color: #fff;
  background-image: #fff;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}

main {
  height: 130vh;
  background-color: #00071C;
  margin-top: -310px;
  padding-bottom: 10%;
}

@media (max-width: 768px) {
  main {
    margin-top: -310px;
    height: 190vh;
  }
}

main .banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  top: 20%;
  left: 10%;
  width: 50%;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  color: #757882;
  opacity: 0;
  -webkit-animation: fadeUp 2s ease-in both;
          animation: fadeUp 2s ease-in both;
  padding-bottom: 20%;
}

@media (max-width: 768px) {
  main .banner {
    top: 30%;
    left: 5%;
    font-size: .5em;
    width: 90%;
  }
}

@-webkit-keyframes fadeUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
            transform: translate3d(0, 20%, 0);
  }
  to {
    opacity: 0.5;
    -webkit-transform: translate3d(1, 10%, 0);
            transform: translate3d(1, 10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
            transform: translate3d(0, 20%, 0);
  }
  to {
    opacity: 0.5;
    -webkit-transform: translate3d(1, 10%, 0);
            transform: translate3d(1, 10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

main .banner h1 {
  color: #757882;
  font-size: 3em;
}

@media (max-width: 768px) {
  main .banner h1 {
    font-size: 30px;
  }
}

main .banner h2 {
  font-size: 2em;
}

main .banner p {
  padding: 0;
  margin: 0;
  font-size: 1.5em;
  line-height: 2.5em;
}

@media (max-width: 768px) {
  main .banner p {
    font-size: 2em;
  }
}

main .banner .firstSpan {
  background: #ffc04a;
  background-color: #00071C;
  background-image: -webkit-gradient(linear, left top, right top, from(#ffc04a), color-stop(25%, #ff9949), color-stop(50%, #ff8848), color-stop(75%, #ff7b48), to(tomato));
  background-image: linear-gradient(90deg, #ffc04a 0%, #ff9949 25%, #ff8848 50%, #ff7b48 75%, tomato 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}

main .banner .secondSpan {
  background: #ffc04a;
  background-color: #ffc04a;
  background-image: #ffc04a;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}

main .banner a {
  text-decoration: none;
  background: #ffc04a;
  background-color: #00071C;
  background-image: -webkit-gradient(linear, left top, right top, from(#ffc04a), color-stop(25%, #ff9949), color-stop(50%, #ff8848), color-stop(75%, #ff7b48), to(tomato));
  background-image: linear-gradient(90deg, #ffc04a 0%, #ff9949 25%, #ff8848 50%, #ff7b48 75%, tomato 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}

main .banner a:hover {
  background: #fff;
  background-color: #fff;
  background-image: #fff;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}

main .banner .form {
  position: absolute;
  width: 50%;
  top: 40%;
  left: 80%;
  color: #fff;
}

@media (max-width: 768px) {
  main .banner .form {
    top: 105%;
    left: 0%;
    width: 90%;
  }
}

main .banner .form .form-control {
  width: 100%;
  font-size: medium;
  font-family: "Poppins", sans-serif;
  text-align: left;
  padding-left: 5%;
}

main .banner .form button {
  padding: 1em;
}

footer {
  display: -ms-grid;
  display: grid;
  font-family: "Poppins", sans-serif;
  height: 25vh;
  background-color: #00071C;
  color: #757882;
  bottom: 0;
  overflow-x: hidden;
  font-size: 1.5em;
  border-top: 2px solid #757882;
}

@media (max-width: 768px) {
  footer {
    height: 30vh;
  }
}

footer a {
  margin-left: 50%;
  margin-top: 1%;
  scroll-behavior: smooth;
}

footer p {
  padding-left: 10%;
}

@media (max-width: 768px) {
  footer p {
    padding: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
/*# sourceMappingURL=contact.css.map */