body {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  background-color: #000000;
  color: #ffffff;
  }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Poppins", sans-serif; }

a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  color: #ffb100;
  }
  a, a:hover {
    text-decoration: none !important; }

.content {
  padding: 3rem 0;
  z-index: 99;
  width: fit-content;
  margin: 0 auto;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  }

h2 {
  font-size: 3.5rem;
  font-weight: 700; }

h3 {
  font-size: 2rem;
  font-weight: 700; }

.form-control {
  padding-left: 25px;
  padding-right: 25px;
  border-radius: 20px;
  border: 1px solid #ffffff;
  background: transparent;
  color: #FFFFFF;
  }
  .form-control:active, .form-control:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #000; }

.btn, .form-control {
  height: 55px;
  }

form.border-right {
  padding-right: 6rem !important; }
  @media (max-width: 991.98px) {
    form.border-right {
      padding-right: 0 !important;
      border-right: none !important; } }

label.error {
  font-size: 12px;
  color: red; }

#message {
  resize: vertical;
  padding-block: 15px;
  }

#form-message-warning, #form-message-success {
  display: none; }

#form-message-warning {
  color: #B90B0B; }

#form-message-success {
  color: #55A44E;
  font-size: 18px;
  font-weight: bold; }

.submitting {
  float: left;
  width: 100%;
  padding: 10px 0;
  display: none;
  font-weight: bold;
  font-size: 12px;
  color: #000; }

.dot {
    position: absolute;
    width: 60%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: #141656;
    z-index: 0;
    filter: blur(25px);
    top: -20%;
    left: -20%;
}

html, body {
    overflow-x: hidden;
}

.page {
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 100vh; /* ensures page fills viewport */
}

.dot2 {
    top: unset;
    left: unset;
    background: #4b002a;
    bottom: -20%;
    right: -20%;
}

.btn{
  border-radius: 30px!important;
  background: #FFFFFF;
  color: #000000;
  font-weight: 500;
  padding-top: 6px !important;
  border: none;
}

.btn:hover{
  color: #FFFFFF;
  background: #000000;
}

.content .container{
  position: relative;
  padding: 7rem 0;
}

.content .container::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff30;
    filter: blur(10px);
}

.header {
    text-align: center;
    position: relative;
    z-index: 99;
    width: 100%;
    padding: 15px 30px;
}

.header .logo {
    max-width: 300px;
    margin: 0 auto;
}

img {
    width: 100%;
}

.footer{
  position: relative;
  z-index: 99;
  padding: 2rem 0;
}

.footer .email {
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.social a {
  display: inline-block;
  width: 60px;
  position: relative;
  filter: invert(1);
}

.page-bg {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

::-webkit-scrollbar {
    display: none;
}

.form-control::placeholder{
  color: #FFFFFF;
}