@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600&display=swap");
#preloader {
  position: fixed;
  top: 0%;
  left: 0%;
  right: 0%;
  bottom: 0%;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.lds-ellipsis {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
}

.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--brand);
  -webkit-animation-timing-function: cubic-bezier(0, 1, 1, 0);
          animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
  left: 8px;
  -webkit-animation: lds-ellipsis1 0.6s infinite;
          animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
  left: 8px;
  -webkit-animation: lds-ellipsis2 0.6s infinite;
          animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
  left: 32px;
  -webkit-animation: lds-ellipsis2 0.6s infinite;
          animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
  left: 56px;
  -webkit-animation: lds-ellipsis3 0.6s infinite;
          animation: lds-ellipsis3 0.6s infinite;
}

@-webkit-keyframes lds-ellipsis1 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes lds-ellipsis1 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes lds-ellipsis3 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

@keyframes lds-ellipsis3 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

@-webkit-keyframes lds-ellipsis2 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(24px, 0);
            transform: translate(24px, 0);
  }
}

@keyframes lds-ellipsis2 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(24px, 0);
            transform: translate(24px, 0);
  }
}

/*============================== Variables =========================*/
:root {
  --brand: #2858CA;
  --yellow: #F07C00;
  --brand_dark: #0540a8;
  --dark_blue: #000000;
  --dark: #000000;
  --grey: #EBEBEB;
  --white: #ffffff;
  --light: #fefefe;
  --border-color: #707070;
  --body-text-color: #3E3E3E;
  --body-font: 'Nunito Sans', sans-serif;
  --roboto: 'Roboto', sans-serif;
  --montserrat: 'Montserrat', sans-serif;
  --nunito: 'Nunito Sans', sans-serif;
}

* {
  margin: 0%;
  padding: 0%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 16px;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: #FEFEFE;
  text-rendering: optimizeLegibility;
  font-family: var(--body-font);
  line-height: 1.6;
  font-size: 1rem;
  color: var(--body-text-color);
  font-weight: 400;
  font-style: normal;
}

.h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--brand);
}

.h1 span {
  font-size: 2.5rem;
}

h2, .h2 {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--dark);
}

h3, .h3 {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--dark);
}

h4, .h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
}

h5, .h5 {
  font-size: 1.375rem;
}

h6, .h6 {
  font-size: 1.125rem;
}

.lead-sm {
  font-size: 1.125rem;
}

.top__heading {
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--dark);
  opacity: .25;
  font-weight: bold;
  line-height: 1;
}

.figure {
  margin: 0;
}

.ptb {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.ff-mont {
  font-family: var(--montserrat);
}

.ff-sans {
  font-family: var(--nunito);
}

.ff-nunito {
  font-family: var(--nunito);
}

.bg-light {
  background-color: #F8FAFB !important;
}

.bg-dark {
  background-color: var(--dark) !important;
}

.bg-primary {
  background-color: var(--brand) !important;
}

.text-primary {
  color: var(--brand) !important;
}

.text-3e {
  color: #3E3E3E !important;
}

.text-dark {
  color: var(--dark) !important;
}

.text-light {
  color: var(--light) !important;
}

.bg_shadow {
  -webkit-box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.62);
          box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.62);
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.text-justify {
  text-align: justify;
}

.round {
  border-radius: .875rem;
}

.z-index {
  position: relative;
  z-index: 99;
}

.fs-13 {
  font-size: 13px;
}

.fs-12 {
  font-size: 12px;
}

.bordered {
  border: 1px solid #707070;
}

.ellipsis-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: normal;
}

a {
  text-decoration: none;
  display: inline-block;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  color: var(--dark);
}

a:hover {
  color: var(--brand);
}

.link {
  color: var(--brand);
}

.link:hover {
  text-decoration: underline;
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}

ul li {
  list-style-type: none;
}

.num__list {
  padding-left: 1.5rem;
}

.num__list li {
  list-style-type: decimal;
}

.btn:focus, .form-control:focus, .form-select:focus, .form-check-input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn {
  font-family: var(--nunito);
}

.btn {
  border-radius: .5rem;
  font-size: 1rem;
  font-weight: bold;
  padding: 0.5rem 1rem 0.45rem 1rem;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.btn:hover, .btn:focus {
  border-color: var(--brand);
  background-color: var(--brand);
  -webkit-filter: brightness(125%);
          filter: brightness(125%);
}

.btn.btn-lg {
  font-size: 1.5rem;
  padding: 0.65rem 1.5rem 0.65rem 1.5rem;
}

.btn.round {
  border-radius: 3rem;
}

.btn.shadow {
  -webkit-box-shadow: 0px 3px 10px #0F1E4474 !important;
          box-shadow: 0px 3px 10px #0F1E4474 !important;
}

.btn-primary {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}

.btn-primary:hover {
  -webkit-filter: brightness(115%);
          filter: brightness(115%);
}

.btn-outline-primary {
  background-color: transparent;
  color: var(--brand);
}

.btn-white {
  background-color: #fff;
  border-color: #fff;
  color: var(--dark);
  font-size: 1.25rem;
  font-weight: 800;
}

.btn-white:hover, .btn-white:focus {
  background-color: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

.card {
  -webkit-box-shadow: 0px 3px 6px #00000029;
          box-shadow: 0px 3px 6px #00000029;
  border-radius: 1rem;
}

.card .icon_box {
  background-color: var(--brand);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: .75rem;
}

.col--5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  max-width: 20%;
}

.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;
}

.modal-open {
  padding-right: 0 !important;
}

.modal .modal-dialog {
  max-width: 500px;
}

.modal .modal-dialog.max-400 {
  max-width: 400px;
}

.modal .modal-body {
  padding: 1.5rem;
}

.tooltip {
  opacity: 1;
}

.tooltip .tooltip-inner {
  padding: 0 .5rem;
  min-height: 1.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--dark);
  opacity: 1;
  line-height: 1.2;
}

.tooltip.show {
  opacity: 1 !important;
}

.fluid__container {
  margin-left: auto;
  width: calc(100vw - var(--vw));
  padding-left: 1.35rem;
}

.fluid__container.start {
  margin-left: 0;
  margin-right: auto;
}

@media (min-width: 576px) {
  .fluid__container {
    width: 540px;
    margin-left: auto !important;
    margin-right: auto;
  }
}

@media (min-width: 768px) {
  .fluid__container {
    max-width: 720px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 992px) {
  .fluid__container {
    max-width: calc(100vw - var(--vwlg));
    margin-left: auto;
    margin-right: 0;
  }
  .fluid__container.start {
    margin-left: 0 !important;
  }
}

@media (min-width: 1200px) {
  .fluid__container {
    margin-left: auto;
    margin-right: 0;
    max-width: calc(100vw - var(--vwxl));
  }
}

@media (min-width: 1400px) {
  .fluid__container {
    margin-left: auto;
    margin-right: 0;
    max-width: calc(100vw - var(--vwxxl));
  }
}

@media (min-width: 2000px) {
  .fluid__container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1920px;
  }
}

@media (max-width: 576px) {
  .fluid__container {
    padding-left: 0.5rem;
    padding-right: .5rem;
  }
}

@media (max-width: 1199.99px) {
  html {
    font-size: 15px;
  }
  .h1 {
    font-size: 3rem;
  }
  h2, .h2 {
    font-size: 1.75rem;
  }
  h3, .h3 {
    font-size: 1.5rem;
  }
  h4, .h4 {
    font-size: 1.35rem;
  }
  h5, .h5 {
    font-size: 1.25rem;
  }
  .top__title {
    font-size: 1.125rem !important;
  }
  .btn {
    font-size: .875rem;
  }
}

@media (max-width: 991.99px) {
  html {
    font-size: 14px;
  }
  .h1 {
    font-size: 2.875rem;
  }
  h2, .h2 {
    font-size: 1.5rem;
  }
  h3, .h3 {
    font-size: 1.45rem;
  }
  h4, .h4 {
    font-size: 1.25rem;
  }
  h5, .h5 {
    font-size: 1.125rem;
  }
  .top__title {
    font-size: 1rem !important;
    letter-spacing: 4px !important;
  }
}

@media (max-width: 767.99px) {
  .h1 {
    font-size: 2rem;
  }
}

/*====================== Navigation Styles ===================*/
.menu__bar {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: var(--white);
  z-index: 999;
}

.menu__bar .navbar-brand {
  display: block;
  padding: 0;
}

.menu__bar .navbar-brand img {
  max-height: 5rem;
  width: auto;
}

.menu__bar .btn-primary {
  color: var(--white);
  padding: 1.5rem 3rem;
  font-size: 1.35rem;
}

.menu__bar .navbar-nav .nav-link {
  text-transform: uppercase;
  font-size: .937rem;
  font-weight: 700;
  color: var(--dark);
}

.menu__bar .navbar-nav .nav-link:hover {
  color: var(--brand);
}

.menu__bar .dropdown-menu {
  position: absolute;
  padding: 0%;
  z-index: 1030;
}

.menu__bar .dropdown-menu > li:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}

.menu__bar .dropdown-menu .dropdown-item {
  text-transform: uppercase;
  font-weight: 600;
}

.menu__bar .dropdown-menu .dropdown-item:active {
  background-color: var(--brand);
}

.menu__bar .navbar-toggler {
  border: 1px solid transparent;
  width: 3rem;
  height: 3rem;
  position: relative;
  padding: 0%;
  border-radius: 50%;
  padding: .5rem;
  color: #fff;
}

.menu__bar .navbar-toggler:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.menu__bar .navbar-toggler:hover {
  background-color: #eee;
}

.menu__bar.fixed {
  position: fixed;
  top: 0%;
  left: 0%;
  z-index: 1030;
  width: 100%;
  -webkit-box-shadow: 0 3px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 4px rgba(0, 0, 0, 0.1);
}

.menu__bar.fixed .navbar-brand img {
  max-height: 4rem;
}

.menu__bar.fixed .btn-primary {
  padding: 1rem 3rem;
}

.side__menu {
  position: fixed;
  top: 0;
  left: 0%;
  width: 100%;
  max-width: 300px;
  z-index: 1040;
  min-height: 100vh;
  background-color: var(--white);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
}

.side__menu .btn-close {
  position: absolute;
  top: .5rem;
  right: .5rem;
  z-index: 999;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #fff9f9;
  padding: 0.2rem;
  opacity: 1;
  -webkit-box-shadow: 0 3px 4px rgba(0, 0, 0, 0.13);
          box-shadow: 0 3px 4px rgba(0, 0, 0, 0.13);
}

.side__menu .content {
  padding: 1rem 1rem 1rem;
  max-height: calc(100vh - 3rem);
  overflow-y: auto;
  margin-top: 3rem;
}

.side__menu .content ul > li:not(:last-child) {
  border-bottom: 1px solid #ddd;
}

.side__menu a {
  font-size: 1rem;
  color: var(--dark);
  text-transform: uppercase;
  font-weight: 700;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: .5rem 0rem .5rem 0 !important;
}

.side__menu a.arrow {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.side__menu a.arrow::after {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiMyODU4Q0EiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0iZmVhdGhlciBmZWF0aGVyLWNoZXZyb24tZG93biI+PHBvbHlsaW5lIHBvaW50cz0iNiA5IDEyIDE1IDE4IDkiPjwvcG9seWxpbmU+PC9zdmc+") no-repeat center center/1.5rem;
}

.side__menu a.btn-primary:hover {
  color: var(--dark);
}

.side__menu a:hover {
  color: var(--brand);
}

.side__menu .dropdown-item:hover, .side__menu .dropdown-item:focus {
  background-color: transparent !important;
  color: var(--brand);
}

.side__menu::after {
  content: '';
  width: 100vw;
  height: 100vh;
  display: block;
  position: absolute;
  top: 0px;
  left: 300px;
  background-color: rgba(0, 0, 0, 0.5);
}

.side__menu.show {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  opacity: 1;
  visibility: visible;
}

@media (min-width: 992px) {
  .dropdown .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }
  .dropdown .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}

@media (max-width: 576px) {
  .menu__bar .navbar-brand img {
    max-height: 4.25rem;
  }
  .menu__bar .navbar-toggler {
    top: 0%;
  }
  .menu__bar .btn-white {
    font-size: 12px;
    padding: .45rem .625rem;
    border-radius: 5px;
  }
}

footer {
  background: #212121;
  color: #fff;
  padding-top: 3rem;
}

footer .logo img {
  max-height: 5rem;
  -webkit-filter: contrast(0) brightness(10);
          filter: contrast(0) brightness(10);
}

footer a {
  font-size: .937rem;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: .2px;
}

footer a:hover {
  color: var(--yellow);
  opacity: .8;
  text-decoration: underline;
}

footer ul li {
  margin-bottom: .5rem;
  font-size: 1rem;
}

footer ul.social__links li {
  margin-right: .25rem;
  margin-bottom: 0;
}

footer ul.social__links li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--white);
  border-radius: .25rem;
  font-size: 1rem;
  color: var(--dark);
  width: 1.875rem;
  height: 1.875rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer ul.social__links li a:hover {
  text-decoration: none;
  background-color: var(--yellow);
  color: var(--white);
  opacity: 1;
}

footer ul.social__links li:not(:first-child) {
  margin-left: .5rem;
}

footer .copy_right {
  background-color: #363636;
  margin-top: 3rem;
  padding: 1rem 0;
}

footer .copy_right .techpuller {
  font-weight: normal;
  color: var(--white);
}

/*---------------------- Back to Top Css --------------*/
.backTop {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--brand);
  z-index: 99;
  border-radius: 50%;
  display: none;
  border: 2px solid var(--white);
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0iZmVhdGhlciBmZWF0aGVyLWNoZXZyb24tdXAiPjxwb2x5bGluZSBwb2ludHM9IjE4IDE1IDEyIDkgNiAxNSI+PC9wb2x5bGluZT48L3N2Zz4=);
  background-repeat: no-repeat;
  background-size: 1.75rem;
  background-position: center center;
}

.backTop:hover {
  background-color: var(--dark);
}

.backTop.show {
  display: block;
}
/*# sourceMappingURL=variables.css.map */