/*Fonts*/
h1,
h2,
h3,
h4,
h5 {
  font-family: "Bebas Neue", sans-serif;
}

h1 {
  font-style: normal;
  font-size: 3.5rem;
  color: #14152e;
  /* max-width: 350px; */
}

h2 {
  font-style: normal;
  font-size: 2.5rem;
}

h3 {
  font-style: normal;
  font-size: 24px;
}

h4 {
  font-style: normal;
  font-size: 22px;
}

h5 {
  font-style: normal;
  font-size: 20px;
}

p,
a {
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-size: 16px;
}

.mh-400 {
  max-height: 400px;
}

main {
  padding-top: 4.5rem;
}
.navbar-brand .img-fluid {
  max-height: 60px;
}
.flex-1 {
  flex: 1;
}
.header-img {
  background-image: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.9) 5%,
      rgba(255, 255, 255, 0.6) 41%,
      rgba(255, 255, 255, 0.2) 57%
    ),
    url("img/header.jpg");
  background-size: cover;
  background-position-y: center;
  background-position-x: center;
  height: 32rem;
}

@media (max-width: 575.98px) {
  h1 {
    font-size: 2.5rem;
  }
  .header-img {
    background-image: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.9) 5%,
        rgba(255, 255, 255, 0.6) 100%
      ),
      url("img/header.jpg");
  }
}

.btn-primary {
  color: rgb(255, 255, 255);
  background-color: #d02c2e;
  border: none;
  border-radius: unset;

  font-weight: 500;
  font-size: 18px;
  padding-left: 2rem;
  padding-right: 2rem;
}

.btn-primary:active,
.btn-primary:focus,
.btn-primary:disabled {
  color: rgb(255, 255, 255);
  background-color: rgb(154, 16, 6);
}

.btn-primary:hover {
  color: rgb(255, 255, 255);
  background-color: rgb(219, 72, 59);
}

.bg-off-white {
  background: #f6f6f6;
}

.bg-dark-blue {
  background: #14152e;
  background: linear-gradient(
    180deg,
    rgba(20, 21, 46, 1) 0%,
    rgba(30, 30, 65, 1) 100%
  );
  color: #fff;
}

.red-icon {
  color: #fff;
}

.red-icon .fa-circle {
  color: #d02c2e;
}

footer a {
  color: #fff;
}

footer h4 {
  border-bottom: 4px solid rgb(205, 45, 63);
  margin: 0 auto;
}

/*Payment */
.baseline {
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  top: 3.125rem;
  background-color: #cfd7df;
  transition: background-color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.embed label {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 8px;
  color: #cfd7df;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transform-origin: 0 50%;
  cursor: text;
  pointer-events: none;
  transition-property: color, transform;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.canada-payment .cc {
  height: 3.125rem;
  padding: 1.5em 0.75rem 0 0.75rem;
}

.canada-payment .cc.focused + label,
.canada-payment .cc:not(.empty) + label {
  transform: translateY(-5px);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 12px;
  color: #777;
  background: transparent;
}

.cc::-webkit-input-placeholder {
  color: transparent;
}

.cc::-moz-placeholder {
  color: transparent;
}

.cc:-ms-input-placeholder {
  color: transparent;
}

.cc::-ms-input-placeholder {
  color: transparent;
}

.cc.focused::-webkit-input-placeholder,
.cc:not(.empty)::-webkit-input-placeholder {
  color: #cfd7df;
}

.cc.focused::-moz-placeholder,
.cc::not(.empty)::-moz-placeholder {
  color: #cfd7df;
}

.cc.focused:-ms-input-placeholder,
.cc:not(.empty):-ms-input-placeholder {
  color: #cfd7df;
}

.canada-payment .form-control {
  border: none;
}

.canada-payment .form-control:focus {
  box-shadow: none;
}

.canada-payment .form-control:invalid,
.canada-payment .form-control:-moz-ui-invalid,
.canada-payment .form-control:valid,
.canada-payment .form-control:-moz-ui-valid {
  box-shadow: none;
}

.canada-payment .form-control:invalid ~ .baseline,
.canada-payment .form-control:-moz-ui-invalid ~ .baseline,
.cc.StripeElement.invalid ~ .baseline {
  background-color: red;
}

.canada-payment .form-control:valid ~ .baseline,
.canada-payment .form-control:-moz-ui-valid ~ .baseline,
.cc.StripeElement.StripeElement--complete ~ .baseline {
  background-color: #24b47e;
}

.stripe-embed .cc::-webkit-input-placeholder {
  color: transparent;
  transition: color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.stripe-embed .cc::-moz-placeholder {
  color: transparent;
  transition: color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.stripe-embed .cc:-ms-input-placeholder {
  color: transparent;
  transition: color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.stripe-embed .cc.StripeElement {
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: opacity;
}

.stripe-embed .cc.focused,
.stripe-embed .cc:not(.empty) {
  opacity: 1;
}

.stripe-embed .cc.focused::-webkit-input-placeholder,
.stripe-embed .cc:not(.empty)::-webkit-input-placeholder {
  color: #cfd7df;
}

.stripe-embed .cc.focused::-moz-placeholder,
.stripe-embed .cc:not(.empty)::-moz-placeholder {
  color: #cfd7df;
}

.stripe-embed .cc.focused:-ms-input-placeholder,
.stripe-embed .cc:not(.empty):-ms-input-placeholder {
  color: #cfd7df;
}

.stripe-embed .cc.focused + label {
  color: #24b47e;
}

.stripe-embed .cc.invalid + label {
  color: #ffa27b;
}

.stripe-embed .cc.focused + label + .baseline {
  background-color: #24b47e;
}

.stripe-embed .cc.focused.invalid + label + .baseline {
  background-color: #e25950;
}

/*form */
.form-label-group {
  position: relative;
  margin-bottom: 1rem;
}

.form-label-group input,
.form-label-group label,
.form-label-group select {
  height: 3.125rem;
  padding: 0.75rem;
}

.form-label-group label {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  margin-bottom: 0;
  /* Override default `<label>` margin */
  line-height: 1.5;
  color: #495057;
  pointer-events: none;
  cursor: text;
  /* Match the input under the label */
  border: 1px solid transparent;
  border-radius: 0.25rem;
  transition: all 0.1s ease-in-out;
}

.stripe-embed .form-label-group label {
  background: #fff;
}

.form-label-group input::-webkit-input-placeholder {
  color: transparent;
}

.form-label-group input::-moz-placeholder {
  color: transparent;
}

.form-label-group input:-ms-input-placeholder {
  color: transparent;
}

.form-label-group input::-ms-input-placeholder {
  color: transparent;
}

.form-label-group input::placeholder {
  color: transparent;
}

.form-label-group input:not(:-moz-placeholder-shown) {
  padding-top: 1.25rem;
  padding-bottom: 0.25rem;
}

.form-label-group input:not(:-ms-input-placeholder) {
  padding-top: 1.25rem;
  padding-bottom: 0.25rem;
}

.form-label-group input:not(:placeholder-shown) {
  padding-top: 1.25rem;
  padding-bottom: 0.25rem;
}

.form-label-group input:not(:-moz-placeholder-shown) ~ label {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 12px;
  color: #777;
}

.form-label-group input:not(:-ms-input-placeholder) ~ label {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 12px;
  color: #777;
}

.form-label-group input:not(:placeholder-shown) ~ label {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 12px;
  color: #777;
}

/* Fallback for Edge
-------------------------------------------------- */
@supports (-ms-ime-align: auto) {
  .form-label-group {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .form-label-group label {
    position: static;
  }

  .form-label-group input::-ms-input-placeholder {
    color: #777;
  }
}

.loader {
  position: relative;
  top: 50%;
  left: 48%;
}

.line {
  animation: expand 1s ease-in-out infinite;
  border-radius: 10px;
  display: inline-block;
  transform-origin: center center;
  margin: 0 0.4rem;
  width: 1px;
  height: 25px;
}

.line:nth-child(1) {
  background: #27ae60;
}

.line:nth-child(2) {
  animation-delay: 180ms;
  background: #f1c40f;
}

.line:nth-child(3) {
  animation-delay: 360ms;
  background: #e67e22;
}

.line:nth-child(4) {
  animation-delay: 540ms;
  background: #2980b9;
}

.loader p {
  padding-top: 2rem;
}

@keyframes expand {
  0% {
    transform: scale(1);
  }

  25% {
    transform: scale(2);
  }
}
.logos img {
  max-height: 100px;
}
