@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --brand: #2f9ecf;
  --green: #78aa4b;
  --red: #12c4c7;
  --dark: #000000;
  --black: #1E272A;
  --golden-gradient: linear-gradient(90.17deg, #2f9ecf 0.17%, #12c4c7 99.88%);
  --border-color: #E3E3E3;
  --body-text-color: #8B8B8B;
  --muted-color: #EAEFF3;
  --grey-color: #757575;
  --white: #ffffff;
  --radius: .625rem;
  --body-font: "Raleway", sans-serif;
}

* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
}
*::after, *::before {
  margin: 0%;
  padding: 0%;
}

html {
  font-size: 100%;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: #fff;
  text-rendering: optimizeLegibility;
  font-family: var(--body-font);
  line-height: 1.75;
  color: var(--body-text-color);
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  padding-right: 0 !important;
}

.ff-heading {
  font-family: var(--heading-font);
}

.lead-lg {
  font-size: 1.375rem;
}

.lead-sm {
  font-size: 1.125rem;
}

.fs-10 {
  font-size: 10px;
}

.fs-12 {
  font-size: 12px;
}

.fs-13 {
  font-size: 13px;
}

.fs-15 {
  font-size: 0.937rem;
}

.bg-light {
  background-color: rgba(0, 62, 110, 0.07) !important;
}

.bg-primary {
  background-color: var(--brand) !important;
}

.bg-primary-light {
  background-color: var(--brand-light) !important;
}

.bg-red {
  background-color: var(--red) !important;
}

.bg-dark {
  background-color: var(--dark) !important;
}

.bg-dark-blue {
  background-color: #102672 !important;
}

.bg-black {
  background-color: var(--black) !important;
}

.text-justify {
  text-align: justify;
}

.z-index {
  z-index: 99;
  position: relative;
}

.round {
  border-radius: 0.875rem;
}

.transition {
  transition: all 0.3s ease-in-out;
}

.z-1 {
  z-index: 11;
}

.z-2 {
  z-index: 22;
}

.text-primary {
  color: var(--brand) !important;
}

.text-dark {
  color: var(--dark) !important;
}

.text-red {
  color: var(--red) !important;
}

.text-black {
  color: var(--black) !important;
}

.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: normal;
}

.link {
  color: var(--brand);
  cursor: pointer;
  word-wrap: break-word;
  text-decoration: none;
}
.link:hover {
  color: var(--dark);
}

a {
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  color: var(--dark);
}
a:hover {
  color: var(--brand);
}

.white__link {
  color: var(--white);
}
.white__link:hover {
  text-decoration: underline;
  color: var(--white);
}

.btn:focus, .form-control:focus, .form-select:focus, .form-check-input:focus {
  box-shadow: none;
}

.btn {
  font-weight: 500;
  font-display: swap;
  color: var(--white);
  padding: 0.625rem 2rem;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  transition: all 0.4s ease-in-out;
}
.btn.height {
  min-height: 4.5rem;
}
.btn.height.sm {
  font-size: 0.875rem;
  min-height: 2.25rem;
}
.btn.height.lg {
  font-size: 1.25rem;
  min-height: 3.25rem;
}

.btn-primary {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: var(--dark);
  border-color: var(--dark);
}
.btn-primary.light {
  background-color: var(--brand-light);
  border-color: var(--brand-light);
  color: var(--white);
}
.btn-primary.light:hover, .btn-primary.light:focus, .btn-primary.light:active {
  background-color: var(--brand);
  border-color: var(--brand);
}

.btn-red {
  background-color: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.btn-red:hover, .btn-red:focus, .btn-red:active {
  background-color: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}
.btn-red.light {
  background-color: var(--brand-light);
  border-color: var(--brand-light);
  color: var(--white);
}
.btn-red.light:hover, .btn-red.light:focus, .btn-red.light:active {
  background-color: var(--brand);
  border-color: var(--brand);
}

.btn-outline-red {
  border-color: #d9c3c3;
  color: var(--red);
}
.btn-outline-red:hover, .btn-outline-red:focus, .btn-outline-red:active {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--red) !important;
}

.btn-outline-primary {
  border-color: var(--brand);
  color: var(--brand);
}
.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white) !important;
}

.btn-outline-white {
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-white:hover, .btn-outline-white:focus, .btn-outline-white:active {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--brand) !important;
}

.btn-white {
  background-color: #fff;
  border-color: #fff;
  color: var(--brand);
}
.btn-white:hover, .btn-white:focus {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}

.modal-open {
  padding-right: 0 !important;
}

.scroller * {
  scrollbar-width: thin;
  scrollbar-color: #ddd #eee;
}

.scroller *::-webkit-scrollbar {
  width: 12px;
}

.scroller *::-webkit-scrollbar-track {
  background: #eee;
}

.scroller *::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 20px;
  border: 3px solid #eee;
}

/*------ Disc List Style ------------*/
.disc__list li {
  padding-left: 1.25rem;
  position: relative;
}
.disc__list li::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  position: absolute;
  top: 0.5rem;
  left: 0%;
  background-color: var(--brand);
  border-radius: 50%;
}
.disc__list li:not(:last-child) {
  margin-bottom: 0.25rem;
}

@media (max-width: 1399.99px) {
  html {
    font-size: 93.75%;
  }
}
@media (max-width: 767.99px) {
  .h1 {
    font-size: 2rem;
  }
}
@media (max-width: 575.99px) {
  html {
    font-size: 87.5%;
  }
  body {
    line-height: 1.45;
  }
  .btn {
    padding: 0.625rem 1.5rem;
    font-size: 1rem;
  }
  .btn.fs-5 {
    font-size: 1.067rem !important;
  }
  .container {
    max-width: calc(100% - 10px);
  }
}
.smart-scroll {
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.scrolled-down {
  transform: translateY(-100%);
  transition: all 0.3s ease-in-out;
}

.scrolled-up {
  transform: translateY(0);
  position: fixed;
  top: 0;
  left: 0%;
  width: 100%;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  background-color: var(--white);
}
.scrolled-up .navbar-brand img {
  max-height: 3rem;
}

.navbar {
  padding: 0.5rem 0;
}
.navbar .nav-link {
  color: #1E272A;
}
.navbar .navbar-toggler {
  width: 42px;
  height: 42px;
}

@media (max-width: 767px) {
  .navbar {
    padding: 0.75rem 0;
  }
  .navbar .navbar-brand img {
    height: 2.75rem;
    width: auto;
  }
}
footer {
  padding: 3rem 0 0rem 0;
  background-color: #060e10;
}
footer a {
  color: var(--white);
  opacity: 0.65;
  text-transform: capitalize;
}
footer a:hover {
  text-decoration: underline;
  color: var(--brand);
}
footer .desc {
  color: #F8F9FD !important;
}
footer .bottom__wrapper {
  background-color: #04080a;
}

.social__links li a {
  width: 2.5rem;
  border: 1px solid var(--white);
  height: 2.5rem;
  border-radius: 50%;
  color: var(--dark);
}
.social__links li a svg {
  width: 1.25rem;
  height: 1.25rem;
}
.social__links li a svg path {
  fill: var(--white);
  transition: all 0.3s ease-in-out;
}
.social__links li a:hover, .social__links li a:focus, .social__links li a:active {
  background-color: var(--white);
}
.social__links li a:hover svg path, .social__links li a:focus svg path, .social__links li a:active svg path {
  fill: var(--brand);
}

/*---------------------- Back to Top Css --------------*/
.backTop {
  bottom: 3rem;
  right: 2rem;
  width: 3rem;
  min-height: auto;
  height: 3rem;
  background-color: var(--brand);
  z-index: 999;
  display: none;
  border: 2px solid var(--white);
}
.backTop:hover, .backTop:focus, .backTop:active {
  background-color: var(--dark);
}
.backTop.show {
  display: flex;
}

@media (max-width: 575.99px) {
  footer .logo img {
    max-height: 4rem;
    width: auto;
  }
  footer .contact__list img {
    height: auto;
    width: 1.5rem;
  }
  .social__links li a {
    width: 3rem;
    height: 3rem;
  }
  .social__links li a svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}/*# sourceMappingURL=variables.css.map */