:root {
  --primary: #eddac5;
  --primary-400: #fde7cf;
  --primary-300: #f8f2ea;

  --secondary: #9f0f2a;
  --secondary-400: #c31334;

  --light-red: #cf0d37;
  --primary-light: #f7f0e7;
  --white: #ffffff;
  --black: #000000;
}

@font-face {
  font-family: 'Basis Grotesque Pro';
  src: url('../fonts/BasisGrotesqueArabicPro-Light.ttf')  format('truetype');
  font-weight: light;
}

@font-face {
  font-family: 'Basis Grotesque Pro';
  src: url('../fonts/BasisGrotesqueArabicPro-Medium.ttf')  format('truetype');
  font-weight: medium;
}

@font-face {
  font-family: 'Basis Grotesque Pro';
  src: url('../fonts/BasisGrotesqueArabicPro-Regular.ttf')  format('truetype');
  font-weight: regular;
}

@font-face {
  font-family: 'Basis Grotesque Pro';
  src: url('../fonts/BasisGrotesqueArabicPro-Bold.ttf')  format('truetype');
  font-weight: bold;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Basis Grotesque Pro", sans-serif;
  color: #000000;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.bg-primary-300 {
  background-color: var(--primary-300);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

.mb-6 {
  margin-bottom: 3.5rem;
}

.mb-7 {
  margin-bottom: 4rem;
}

.mb-8 {
  margin-bottom: 4.5rem;
}

.mb-9 {
  margin-bottom: 5rem;
}

.mb-10 {
  margin-bottom: 5.5rem;
}

.mb-11 {
  margin-bottom: 6rem;
}

/* h1 {
  font-size: 5rem;
  font-weight: 700;
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
} */

.fw-100 {
  font-weight: 100;
}

.fw-200 {
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
  font-weight: light;
}

.fw-400 {
  font-weight: 400;
  font-weight: light;
}

.fw-500 {
  font-weight: 500;
  font-weight: light;
}

.fw-600 {
  font-weight: 600;
  font-weight: medium;
}

.fw-700 {
  font-weight: 700;
  font-weight: medium;
}

.fw-800 {
  font-weight: 800;
  font-weight: bold;
}

.fw-900 {
  font-weight: 900;
  font-weight: bold;
}

.fs-11 {
  font-size: 11px;
}

.fs-12 {
  font-size: 12px;
}

.fs-13 {
  font-size: 13px;
}

.fs-14 {
  font-size: 14px;
}

.fs-15 {
  font-size: 15px;
}

.fs-16 {
  font-size: 16px;
}

.fs-18 {
  font-size: 18px;
}

.fs-22 {
  font-size: 22px;
}

.fs-25 {
  font-size: 25px;
}

.fs-30 {
  font-size: 30px;
}

.fs-40 {
  font-size: 40px;
}

.fs-50 {
  font-size: 50px;
}

.fs-55 {
  font-size: 55px;
}

.text-secondary {
  color: var(--secondary) !important;
}

.text-secondary-400 {
  color: var(--secondary-400) !important;
}

.cm-btn-primary {
  height: 40px;
  border-radius: 20px;
  background: var(--primary);
  color: var(--black);
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
}

.cm-btn-primary:hover {
  background: var(--primary-400);
  color: var(--black);
}

.cm-btn-primary:active {
  color: var(--black) !important;
  background-color: var(--primary-400) !important;
  border-color: var(--white) !important;
  outline: 3px solid var(--primary-400);
  outline-offset: 1px;
  transition: outline-offset 0s, outline 0s;
}

.cm-btn-secondary {
  height: 40px;
  border-radius: 20px;
  background: var(--secondary);
  color: var(--white);
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
}

.cm-btn-secondary:hover {
  background: var(--secondary-400);
  color: var(--white);
}

.cm-btn-secondary:active {
  color: var(--white) !important;
  background-color: var(--secondary-400) !important;
  border-color: var(--white) !important;
  outline: 3px solid var(--secondary-400);
  outline-offset: 1px;
  transition: outline-offset 0s, outline 0s;
}

.text-underline {
  text-decoration: underline;
}

main {
  margin-bottom: 74px;
}

.list-style-disc {
  list-style: disc;
}

input.form-control {
  height: 45px;
  border-radius: 22.5px;
  border: 1px solid var(--black);
}

input.form-control.error {
  border: 2px solid var(--secondary-400);
}

label.error {
  color: var(--secondary-400);
  margin-left: 16px;
  font-size: 13px;
}

textarea.form-control {
  border-radius: 22.5px;
  border: 1px solid var(--black);
}

input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border-radius: 50% !important;
}

.img-circle {
  border-radius: 50%;
}

.z-index-1 {
  z-index: 1;
}
.z-index--1 {
  z-index: -1;
}

.text-top {
  position: absolute;
  top: 0;
}

.text-bottom {
  position: absolute;
  bottom: 0;
}

.bnf-loader-wrapper {
  background-color: rgb(255 255 255 / 80%);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1111;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}

.bnf-loader {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 10px;
}

.bnf-loader div {
  width: 8%;
  height: 24%;
  background: rgb(128, 128, 128);
  position: absolute;
  left: 50%;
  top: 30%;
  opacity: 0;
  border-radius: 50px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  animation: fade458 1s linear infinite;
}

@keyframes fade458 {
  from {
    opacity: 1;
  }

  to {
    opacity: 0.25;
  }
}

.bnf-loader .bnf-bar1 {
  transform: rotate(0deg) translate(0, -130%);
  animation-delay: 0s;
}

.bnf-loader .bnf-bar2 {
  transform: rotate(30deg) translate(0, -130%);
  animation-delay: -1.1s;
}

.bnf-loader .bnf-bar3 {
  transform: rotate(60deg) translate(0, -130%);
  animation-delay: -1s;
}

.bnf-loader .bnf-bar4 {
  transform: rotate(90deg) translate(0, -130%);
  animation-delay: -0.9s;
}

.bnf-loader .bnf-bar5 {
  transform: rotate(120deg) translate(0, -130%);
  animation-delay: -0.8s;
}

.bnf-loader .bnf-bar6 {
  transform: rotate(150deg) translate(0, -130%);
  animation-delay: -0.7s;
}

.bnf-loader .bnf-bar7 {
  transform: rotate(180deg) translate(0, -130%);
  animation-delay: -0.6s;
}

.bnf-loader .bnf-bar8 {
  transform: rotate(210deg) translate(0, -130%);
  animation-delay: -0.5s;
}

.bnf-loader .bnf-bar9 {
  transform: rotate(240deg) translate(0, -130%);
  animation-delay: -0.4s;
}

.bnf-loader .bnf-bar10 {
  transform: rotate(270deg) translate(0, -130%);
  animation-delay: -0.3s;
}

.bnf-loader .bnf-bar11 {
  transform: rotate(300deg) translate(0, -130%);
  animation-delay: -0.2s;
}

.bnf-loader .bnf-bar12 {
  transform: rotate(330deg) translate(0, -130%);
  animation-delay: -0.1s;
}
