* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.reveal {
  position: relative;
  opacity: 0;
}
.reveal.active {
  opacity: 1;
}
.active.fade-bottom {
  animation: fade-bottom 1s ease-in;
}
.active.fade-left {
  animation: fade-left 1s ease-in;
}
.active.fade-right {
  animation: fade-right 1s ease-in;
}
@keyframes fade-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-left {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-right {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
body {
  font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}
a {
  color: #fff !important;
  text-decoration: none;
}
.mb-6 {
  margin-bottom: 100px;
}
.text-blue {
  color: rgba(0, 212, 255, 1);
}
.navbar {
  background: rgb(2, 0, 36);
  background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 32%, rgba(0, 212, 255, 1) 100%);
}
.navbar-brand {
  font-size: 1.7rem;
}
.navbar-nav {
  font-size: 1.2rem;
}
.navbar-nav .nav-link:hover {
  color: rgb(65, 9, 121) !important;
}
.navbar-toggler-icon {
  color: rgb(65, 9, 121);
}
.section-1 {
  padding: 140px 0px 0px !important;
}
.section-1, .section-2, .section-3 {
  background: rgb(2, 0, 36);
  background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 32%, rgba(0, 212, 255, 1) 100%);
  color: #fff;
  padding: 160px 0px 0px;
}
.section-2, .section-3 {
  height: auto;
  padding: 160px 0px;
}
.section-3 {
  padding-top: 0px;
}
.section-1 h1, .section-2 h2, .section-3 h2 {
  font-size: 3rem;
}
.section-1 p, .section-2 p, .card p {
  font-size: 1.2rem;
}
.card {
  border-radius: 10px;
  padding: 45px 25px;
  background-color: #1611b3;
  color: #fff;
  border: none;
}
.card:hover {
  background-color: rgba(15, 127, 215, 0.5);
}
.card h2, footer h2 {
  font-size: 2rem;
}
footer h2 {
  text-transform: uppercase;
}
.contact-info {
  color: #fff;
  font-size: 18px;
}
.contact-info:hover {
  color: #fff;
}
.contact-icon {
  color: #fff;
  font-size: 18px;
}
.btn {
  padding: 40px;
  background-color: rgba(0, 212, 255, 1);
  border: none;
  color: rgb(65, 9, 121);
}
.btn:hover {
  background-color: #fff;
  color: #423175;
}
.contact-form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.form-group {
  width: 50%;
}
input[type=text], input[type=email], input[type=tel], textarea.form-control {
  background-color: transparent;
  color: #fff;
}
::placeholder {
  color: #fff !important;
}
textarea.form-control {
  height: 100px;
}
.capbox {
  background-color: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 32%, rgba(0, 212, 255, 1) 100%);
  border-width: 0px 12px 0px 0px;
  display: inline-block;
  *display: inline;
  zoom: 1; /* FOR IE7-8 */
}
.capbox-inner {
  font-size: 16px;
  color: #fff;
  background-color: transparent;
  margin: 5px auto 0px auto;
  padding: 3px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
#CaptchaDiv {
  font: bold 17px verdana, arial, sans-serif;
  font-style: italic;
  color: #fff;
  background-color: transparent;
  padding: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid #fff;
}
#CaptchaInput {
  margin: 1px 0px 1px 0px;
  width: 174px;
  height: 28px;
  border-radius: 4px;
}
footer {
  background-color: #423175;
  background: rgb(2, 0, 36);
  background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 32%, rgba(0, 212, 255, 1) 100%);
}
footer h6 {
  color: #fff;
  font-size: 1.2rem;
}
footer .copyright {
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 26px;
  letter-spacing: 1.3px;
  padding-top: 12px;
}
footer .icon {
  color: #fff;
  padding-bottom: 12px;
}
.footer-info:hover {
  color: rgba(0, 212, 255, 1) !important;
}
.thankyou {
  height: 100vh;
  padding: 200px 0px 0px !important;
}