@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");
:root {
  --brand: #093d65;
  --orange: #f5740c;
  --heading-color: #2c3036;
  --dark: #0F0F0F;
  --grey: #707070;
  --light: #f7f6fb;
  --white: #ffffff;
  --bg-light: #b7dffe54;
  --border-color: rgba(112, 112, 112, 0.431);
  --body-text-color: #3E3E3E;
  --border-radius: .35rem;
  --br: 1rem;
  --body-font: "Poppins", 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);
  font-display: swap;
  line-height: 1.65;
  color: var(--body-text-color);
  font-style: normal;
  font-size: 1rem;
}

.owl-carousel .owl-item img {
  width: auto;
}

.h1 {
  font-size: 2.875rem;
  font-weight: 700;
  color: var(--heading-color);
}
.h1.sm {
  font-size: 2.5rem;
}
.h1.lg {
  font-size: 3.35rem;
}

h2, .h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
}

h3, .h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--heading-color);
}

h4, .h4 {
  font-size: 1rem;
  font-weight: 600;
}

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

.lead-lg {
  font-size: 1.375rem;
}

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

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

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

.fs-15 {
  font-size: 0.937rem;
}

.btn {
  font-size: 0.937rem;
}

.top__title {
  color: var(--brand);
  margin-bottom: 0.45rem;
  text-transform: capitalize;
  font-size: 1.125rem;
  font-weight: 400;
}

.z--1 {
  z-index: -1;
}

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

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

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

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

.bg-gradient {
  background-color: rgba(215, 233, 243, 0.24) !important;
}

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

.round {
  border-radius: var(--br);
}

.transition {
  transition: all 0.3s ease-in-out;
}

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

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

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

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

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

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

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

.bgi {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.spacing-x {
  letter-spacing: 2px;
}

.spacing-x-1 {
  letter-spacing: 1px;
}

.ellipsis-2 {
  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);
}

.link__white {
  color: var(--white);
  font-weight: 600;
}
.link__white:hover {
  text-decoration: underline;
  color: var(--white);
}

a {
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  color: var(--dark);
}
a:hover {
  color: var(--brand);
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}
ul li {
  list-style-type: none;
}

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

.btn {
  font-weight: 500;
  font-display: swap;
  color: var(--dark);
  font-size: 1rem;
  border-radius: var(--border-radius);
  padding: 0 1.5rem;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  transition: all 0.4s ease-in-out;
}
.btn.height {
  min-height: 3rem;
}
.btn.height.sm {
  font-size: 0.937rem;
  min-height: 2.25rem;
}
.btn .icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.75rem;
}

.btn-primary {
  position: relative;
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: var(--white);
  border-color: var(--brand);
  color: var(--brand);
}

.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);
  color: var(--white) !important;
}

.btn-white {
  border-color: var(--white);
  color: var(--brand);
  background-color: var(--white);
}
.btn-white:hover, .btn-white:focus, .btn-white:active {
  background-color: transparent;
  border-color: var(--white);
  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-outline-white:hover .white_img, .btn-outline-white:focus .white_img, .btn-outline-white:active .white_img {
  filter: contrast(1000%) invert(100%) sepia(100%) saturate(10000%) hue-rotate(90deg);
}
.btn-outline-white:hover .text-white, .btn-outline-white:focus .text-white, .btn-outline-white:active .text-white {
  color: var(--brand) !important;
}

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

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

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

.disc__list li {
  padding-left: 1.125rem;
  position: relative;
  margin-bottom: 0.75rem;
}
.disc__list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--brand);
  position: absolute;
  top: 0.5rem;
  left: 0;
}

.pagination .page-item {
  margin: 0.2rem;
}
.pagination .page-item .page-link {
  border: 1px solid #E5E5E5;
  font-weight: 600;
  color: var(--body-text-color);
  border-radius: 0%;
  line-height: 1;
  padding: 0;
  min-width: 2.5rem;
  text-align: center;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.pagination .page-item .page-link img {
  width: 1.125rem;
}
.pagination .page-item .page-link.active {
  background-color: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}
.pagination .page-item.active .page-link {
  background-color: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

.form-control {
  border-color: #d0d0d0;
  height: 3.25rem;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
}

textarea.form-control {
  height: auto;
}

.search__modal .modal-dialog {
  max-width: 1000px;
}
.search__modal .modal-dialog .modal-content {
  min-height: 400px;
}

.auth__modal .modal-dialog {
  max-width: 450px;
}
.auth__modal .modal-content .password__toggle__btn img {
  width: 24px;
  height: 24px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  transition: all 0.3s ease-in-out;
}
.auth__modal .modal-content .password__toggle__btn.active img {
  -o-object-position: center bottom;
     object-position: center bottom;
}

@media (max-width: 1399.99px) {
  html {
    font-size: 93.75%;
  }
  .h1 {
    font-size: 2.5rem;
  }
  .h1.lg {
    font-size: 3rem;
  }
}
@media (max-width: 991.99px) {
  html {
    font-size: 87.5%;
  }
  .h1 {
    font-size: 2.25rem;
  }
  .h1.sm {
    font-size: 2rem;
  }
  .h1.lg {
    font-size: 2.875rem;
  }
  h2, .h2 {
    font-size: 1.75rem;
  }
  h3, .h3 {
    font-size: 1.625rem;
  }
  h4, .h4 {
    font-size: 1.45rem;
  }
}
@media (max-width: 767.99px) {
  .h1 {
    font-size: 2rem;
  }
  .h1.sm {
    font-size: 1.875rem;
  }
  .h1.lg {
    font-size: 2.5rem;
  }
  h2, .h2 {
    font-size: 1.625rem;
  }
  h3, .h3 {
    font-size: 1.5rem;
  }
  h4, .h4 {
    font-size: 1.35rem;
  }
}
@media (max-width: 575.99px) {
  :root {
    --br-lg: 1rem;
  }
  html {
    font-size: 81.25%;
  }
  .fs-13 {
    font-size: 11px;
  }
  .lead-lg {
    font-size: 1.25rem;
  }
  .lead-sm {
    font-size: 1.067rem;
  }
  .h1 {
    font-size: 1.875rem;
  }
  .h1.sm {
    font-size: 1.625rem;
  }
  .h1.lg {
    font-size: 2.125rem;
  }
  h2, .h2 {
    font-size: 1.5rem;
  }
  h3, .h3 {
    font-size: 1.45rem;
  }
  .btn {
    font-size: 0.937rem;
    padding: 0% 0.75rem;
  }
  .btn .arrow {
    width: 18px;
    height: 8px;
    background-size: contain;
  }
  .btn.height {
    min-height: 2.5rem;
  }
  .container {
    max-width: calc(100% - 20px);
  }
}
#preloader {
  z-index: 1050;
}
#preloader .loader {
  animation: rotate 1s infinite;
  height: 50px;
  width: 50px;
}
#preloader .loader:before,
#preloader .loader:after {
  border-radius: 50%;
  content: "";
  display: block;
  height: 20px;
  width: 20px;
}
#preloader .loader:before {
  animation: ball1 1s infinite;
  background-color: #cb2025;
  box-shadow: 30px 0 0 #f8b334;
  margin-bottom: 10px;
}
#preloader .loader:after {
  animation: ball2 1s infinite;
  background-color: #00a096;
  box-shadow: 30px 0 0 #97bf0d;
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg) scale(0.8);
    -moz-transform: rotate(0deg) scale(0.8);
  }
  50% {
    -webkit-transform: rotate(360deg) scale(1.2);
    -moz-transform: rotate(360deg) scale(1.2);
  }
  100% {
    -webkit-transform: rotate(720deg) scale(0.8);
    -moz-transform: rotate(720deg) scale(0.8);
  }
}
@keyframes ball1 {
  0% {
    box-shadow: 30px 0 0 #f8b334;
  }
  50% {
    box-shadow: 0 0 0 #f8b334;
    margin-bottom: 0;
    -webkit-transform: translate(15px, 15px);
    -moz-transform: translate(15px, 15px);
  }
  100% {
    box-shadow: 30px 0 0 #f8b334;
    margin-bottom: 10px;
  }
}
@keyframes ball2 {
  0% {
    box-shadow: 30px 0 0 #97bf0d;
  }
  50% {
    box-shadow: 0 0 0 #97bf0d;
    margin-top: -20px;
    -webkit-transform: translate(15px, 15px);
    -moz-transform: translate(15px, 15px);
  }
  100% {
    box-shadow: 30px 0 0 #97bf0d;
    margin-top: 0;
  }
}

.smart-scroll {
  position: fixed;
  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);
  transition: all 0.3s ease-in-out;
  background-color: var(--white);
}


@media (max-width: 1400px) {
  .navbar .navbar-brand img
  {
    max-height: 6rem;
    width: auto;
  }
  .scrolled-up .navbar .navbar-brand img {
    max-height: 4rem; }

}

/*====================== Navigation Styles ===================*/
.navbar {
  padding: 0.875rem 0;
  z-index: 999;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.6392156863);
}
.navbar .navbar-brand img {
  max-height: 4rem;
  width: auto;
}
.navbar .nav-link {
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.navbar .nav-link.dropdown-toggle::after {
  border-top: 0.4em solid;
}
.navbar .nav-link:hover {
  color: var(--brand);
}
.navbar .nav-item.active {
  position: relative;
}
.navbar .nav-item.active .nav-link {
  color: var(--brand);
}
.navbar .dropdown {
  -webkit-appearance: none;
}
.navbar .dropdown .dropdown-menu {
  position: absolute;
  top: 96%;
  left: 19%;
  width: 100%;
  max-width: 15rem;
  min-width: 12rem;
  transition: all 0.3s ease;
  transform: scaleY(0);
  opacity: 0;
  padding: 0%;
  visibility: hidden;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
}
.navbar .dropdown .dropdown-menu.service__menu {
  min-width: 17rem;
}
.navbar .dropdown .dropdown-menu .dropdown-item {
  color: var(--link-color);
  display: block;
  padding: 0.635rem 1rem;
  position: relative;
}
.navbar .dropdown .dropdown-menu .dropdown-item:hover, .navbar .dropdown .dropdown-menu .dropdown-item:focus, .navbar .dropdown .dropdown-menu .dropdown-item:active {
  color: var(--white);
  background-color: var(--brand);
}
.navbar .dropdown .dropdown-menu .dropdown-item:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.navbar .dropdown .dropdown-menu.show {
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}
.navbar .dropdown:hover > .nav-link {
  color: var(--brand);
}
.navbar .btn-primary {
  min-height: 2.5rem;
  padding: 0 0.625rem;
}
.navbar .btn-outline-primary:hover img, .navbar .btn-outline-primary:focus img {
  filter: contrast(0) brightness(10);
}

@media (min-width: 992px) {
  .navbar .dropdown .dropdown-menu {
    display: block;
  }
  .navbar .dropdown:hover .dropdown-menu {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 1200px) {
  .navbar .nav-link {
    font-size: 14px;
  }
  .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    right: 0%;
    background-color: var(--white);
    padding: 1rem;
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    text-align: left;
  }
  .navbar .navbar-collapse .nav-link {
    text-align: left;
  }
}
@media (max-width: 576px) {
  .navbar .navbar-brand img {
    max-height: 2rem;
  }
}
footer {
  padding: 3rem 0 0rem 0;
  background-color: #f7f7f4;
}
footer a {
  color: #4f4f4f;
  text-transform: capitalize;
  font-size: 0.937rem;
}
footer a:hover {
  text-decoration: underline;
  color: var(--brand);
}
footer .copyright {
  border-top: 1px solid #ddd;
}
footer .copyright a {
  font-weight: 300;
}
footer .copyright a:not(:last-child)::after {
  content: "|";
  color: #4f4f4f;
  margin: 0 0.25rem;
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  position: relative;
  top: 1px;
}

.social__links li a {
  width: 1.75rem;
}
.social__links li a svg {
  height: 1.5em;
}
.social__links li a svg path {
  fill: #696969;
}
.social__links li a:hover svg path {
  fill: var(--brand);
}
.social__links li:not(:last-child) {
  margin-right: 0.5rem;
}

/*---------------------- Back to Top Css --------------*/
.backTop {
  position: fixed;
  bottom: 0rem;
  right: 0.5rem;
  width: 3rem;
  min-height: auto;
  height: 3.5rem;
  padding: 0.1rem 0 0 0;
  background-color: var(--white);
  z-index: 999;
  border-radius: 2rem 2rem 0 0;
  display: none;
  border: 2px solid var(--white);
  border-bottom: 0;
  justify-content: center;
}
.backTop ._icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  color: var(--white);
  background-color: var(--brand);
  font-size: 1.45rem;
  margin-bottom: 0.5rem;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0iZmVhdGhlciBmZWF0aGVyLWNoZXZyb24tdXAiPjxwb2x5bGluZSBwb2ludHM9IjE4IDE1IDEyIDkgNiAxNSI+PC9wb2x5bGluZT48L3N2Zz4=);
  background-repeat: no-repeat;
  background-size: 1.75rem;
  background-position: center center;
}
.backTop ._icon:hover {
  background-color: red;
}
.backTop.show {
  display: flex;
}

@media (max-width: 575.99px) {
  footer .logo img {
    max-height: 4rem;
    width: auto;
  }
}/*# sourceMappingURL=variables.css.map */


.search__box
{
  
    border:0px solid white;
}
.search__box input, select{
  height: 3rem;
  font-family: var(--body-font);
  border-color: var(--white);
  width: 100%;
  border-radius:5px;
}
input[type="month"]
{
  padding-left: 6px;
}
/*input[type="month"]::before{
  content: attr(placeholder) !important;
  color: #313131;
  width: 100%;
  padding-left: 10px;
  content: "";
}*/


