/* Variable CSS Start */
:root {
  --color-primary: #233b75;
  --color-darkprimary: #1e356e;
  --color-secondary: #55aade;
  --color-darksecondary: #4985c0;
  --color-light: #f0f9ff;
  --color-light2: #a2d1ee;
  --color-white: #ffffff;
  --color-text: #000000;
  --color-textprimary: #0c1529;
  --color-textlight: #9aabd6;
  --color-textlight2: #a2d1ee;
  --color-danger: #e04f5f;
}
body {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: var(--color-text);
}

/* Background color */
.bg-primary {
  background: var(--color-primary) !important;
}
.bg-darkprimary {
  background: var(--color-darkprimary) !important;
}
.bg-secondary {
  background: var(--color-secondary) !important;
}
.bg-darksecondary {
  background: var(--color-darksecondary) !important;
}
.bg-light {
  background: var(--color-light) !important;
}
.bg-light {
  background: var(--color-light) !important;
}
.bg-light2 {
  background: var(--color-light2) !important;
}

/* Text color */
.text-main {
  color: var(--color-primary) !important;
}
.text-primary {
  color: var(--color-textprimary) !important;
}
.text-secondary {
  color: var(--color-secondary) !important;
}
.text-light {
  color: var(--color-textlight) !important;
}
.text-color {
  color: var(--color-text) !important;
}
.textlight2-color {
  color: var(--color-textlight2) !important;
}
.textlight2 {
  color: var(--color-light2) !important;
}
.darksecondary {
  color: var(--color-darksecondary) !important;
}
.hover:hover {
  color: var(--color-darksecondary) !important;
}


h1,
h2,
h3,
h4,
h5,
h6,
strong,
b {
  font-family: "Maven Pro", sans-serif;
  font-weight: 700;
}

.font-mavenpro {
  font-family: "Maven Pro", sans-serif;
}
.font-poppins {
  font-family: "Poppins", sans-serif;
}

.regular-mavenpro {
  font-weight: 400;
}
.medium-mavenpro {
  font-weight: 500;
}
.semibold-mavenpro {
  font-weight: 600;
}
.bold-mavenpro {
  font-weight: 700;
}
.light-poppins {
  font-weight: 300;
}
.regular-poppins {
  font-weight: 400;
}
.medium-poppins {
  font-weight: 500;
}
.semibold-poppins {
  font-weight: 600;
}
.bold-poppins {
  font-weight: 700;
}

h1 {
  font-size: 4.5rem;
  line-height: 5rem;
}
h2 {
  font-size: 2.625rem;
  line-height: 3.25rem;
}
h3 {
  font-size: 1.5rem;
  font-size: 1.5rem;
}
p {
  font-size: 1.1rem;
}
.font-72 {
  font-size: 4.5rem;
  line-height: 5rem;
}
.font-42 {
  font-size: 2.625rem;
  line-height: 3rem;
}
.font-32 {
  font-size: 2rem;
  line-height: 2.625rem;
}
.font-30 {
  font-size: 1.875rem;
  line-height: 2.625rem;
}
.font-20 {
  font-size: 1.25rem;
}
.font-18 {
  font-size: 1.125rem;
}
.font-16 {
  font-size: 1rem;
}
.font-14 {
  font-size: 0.875rem;
}
.container {
  max-width: 1704px;
  width: calc(100% - 116px);
}
.container-small {
  padding-left: 6.25rem;
  padding-right: 6.25rem;
}
/* Media CSS Start */
@media (max-width: 1840px) {
  .container {
    width: calc(100% - 136px);
  }
}
@media (max-width: 1399px) {
  .container {
    width: calc(100% - 116px);
  }
  .container-small {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media (max-width: 1199px) {
  .container {
    width: calc(100% - 76px);
  }
  .container-small {
    padding-left: 0rem;
    padding-right: 0rem;
  }
}
@media (max-width: 991px) {
  .container {
    width: calc(100% - 44px);
  }
  h1 {
    font-size: 2.719rem;
    line-height: 3rem;
  }
  h2 {
    font-size: 2rem;
    line-height: 2.25rem;
  }
  h3 {
    font-size: 1.825rem;
    line-height: 1.825rem;
  }
}
@media (max-width: 767px) {
  .container {
    width: calc(100% - 16px);
  }
  h1 {
    font-size: 2.5rem;
    line-height: 2.825rem;
  }
  h2 {
    font-size: 2rem;
    line-height: 2.25rem;
  }
  h3 {
    font-size: 1.825rem;
    line-height: 1.825rem;
  }

  .font-72 {
    font-size: 2.5rem;
    line-height: 2.825rem;
  }
  .font-42 {
    font-size: 2rem;
    line-height: 2.25rem;
  }
  .font-32 {
    font-size: 1.825rem;
    line-height: 1.825rem;
  }
  .font-30 {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .font-20 {
    font-size: 1.25rem;
  }
}
