* {
  box-sizing: border-box;
}

:root {
  --thm-primary: #2671A0;
  --thm-secondary: #154D6E;
  --sec-bg: #122029;
  --text-color: #122029;
  --clr-light: #757575;
  --primary-dark: #154D6E;
  --gray: #515C62;
  --gray-light: #7A858B;
  --white: #fff;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-color);
}

img {
  max-width: 100%;
}

h1 {
  font-size: 3rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

h2 {
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

h3 {
  font-size: 1.9rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

h4 {
  font-size: 1.9rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

h5 {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

h6 {
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

a,
a:hover {
  text-decoration: none;
  color: inherit;
}

body a.btn:focus,
body a.btn:active,
body a.btn:focus-visible {
  box-shadow: none;
}

a.hover-decoration:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/*****Header******/

header.header {
  background: #fff;
  padding: 10px 0;
  position: relative;
  z-index: 99;
}

header.header .logo-wrapper img {
  width: 70px;
  height: auto;
}

header.header ul.menu {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
  justify-content: flex-end;
  align-items: center;
}

header.header ul.menu li.menu-item {
  margin: 0 24px;
}

header.header ul.menu li.menu-item:last-child {
  margin-right: 0;
}

header.header ul.menu li.menu-item a, header.header .menu .menu-item .user-dropdown>button.btn {
  padding: 5px 5px;
  display: inline-block;
}

header.header ul.menu {
  font-size: 1.15rem;
}

.btn.btn-primary-outline {
  background: transparent;
  border: 1px solid var(--thm-primary);
  color: var(--thm-primary);
}

.btn {
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.1s ease-out;
  padding: 15px 30px;
  line-height: 1.1;
  box-shadow: none !important;
}

header.header ul.menu li.menu-item .btn:not(.btn-none) {
  padding: 15px 30px;
}

.btn.btn-primary {
  background-color: var(--thm-primary);
  border: 1px solid var(--thm-primary);
  color: #fff;
}

.btn-primary:active {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn.btn-primary-outline:active {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
}

header.header ul.menu li.menu-item > a:not(.btn):active {
  color: var(--primary-dark);
}

header.header .header-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

header.header .header-search input[type="search"] {
  border: 1px solid #e8e8e8;
  background: #f7f7f7;
  width: 100%;
  max-width: 370px;
}

header.header .header-search form {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

header.header .header-search input[type="submit"] {
  padding: 14px 25px;
}

header.header .header-inner .header-search {
  flex-grow: 1;
  margin-right: 20px;
}

.user-dropdown {
  position: relative;
}

.user-dropdown ul.dropdown-list {
  margin: 0;
  list-style: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: auto;
  background: #fff;
  box-shadow: 0px 0px 18px 1px rgba(0, 0, 0, 0.15);
  border: 1px solid #e8e8e8;
  padding: 10px 0px;
  display: none;
  min-width: 200px;
}

.user-dropdown ul.dropdown-list .dropdown-item {
  padding: 0;
}

.user-dropdown ul.dropdown-list .dropdown-item:not(:last-child) {
  margin-bottom: 2px;
}

header.header ul.menu li.menu-item .dropdown-item .link {
  /* font-weight: 500; */
  display: inline-block;
  padding: 5px 16px;
  font-size: inherit;
  font-weight: inherit;
  width: 100%;
  transition: all 0.2s;
}

.btn.btn-none {
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  box-shadow: none;
}

ul.dropdown-list .dropdown-item .link svg {
  margin-right: 5px;
  fill: currentColor;
}

ul.dropdown-list .dropdown-item .link:active {
  background: var(--thm-primary);
  color: #fff;
}

.user-dropdown button {
  font-size: inherit;
  font-weight: inherit;
}

.user-dropdown button .d-md-inline-block svg {
  margin-left: 6px;
}

.menu-toggle {
  display: none;
}

/*****Header End******/

.hero-banner {
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 72px 0;
}

.hero-banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #122029 0%, rgba(18, 32, 41, 0) 100%);
  z-index: 2;
}

.hero-banner .banner-bg,
.hero-banner .banner-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-banner>.container {
  position: relative;
  z-index: 5;
}

.hero-banner .hero-banner-inner {
  width: 100%;
  max-width: 800px;
  /* max-width: 770px; */
}

.hero-banner .hero-banner-inner>p {
  font-size: 20px;
  margin: 0 0 20px;
}

.hero-banner h1 {
  font-size: 4.5rem;
  margin-bottom: 1.6rem;
}

.hero-banner .banner-description {
  font-size: 1.5rem;
  /* max-width: 570px; */
  margin-bottom: 1.6rem;
  font-weight: 300;
}

/* clears the ‘X’ from Internet Explorer */
input[type="search"]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type="search"]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

/* clears the ‘X’ from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}
/*****Homepage Start******/
.section-spacing {
    margin: 100px 0;
}

.aboutus-info-inner {
    text-align: center;
    max-width: 970px;
    margin: 0 auto;
}

.aboutus-info-inner .description {
    margin: 1.3rem 0 1.8rem;
}

.section-spacing .top-headings {
    text-align: center;
    max-width: 970px;
    margin: 0 auto 1.5rem;
}

.section-spacing .top-headings > h2 {
    margin-bottom: 1rem;
}

.services-card {
    background-color: var(--sec-bg);
    color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.services-card .top-info {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}
.services-card .top-info .thumb {
    width: 4.5rem;
    height: 4.5rem;
    flex: 0 0 auto;
    margin-right: 20px;
}

.services-card .top-info .thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.services-card .top-info .title {
    font-weight: 600;
    flex-grow: 1;
    margin-bottom: 0;
}

.services-section .service-listing.row {
    --bs-gutter-y: var9--bs-gutter-x);
    -bs-gutter-x);
    -bs-gutter-);
    -bs-gutter);
    -bs-gutte);
    -bs-gutt);
    -bs-gut);
    -bs-gu);
    -bs-g);
    -bs-);-
    bs);-
    b);-););
    --bs-gutter-y: var(--bs-gutter-x);
}

.services-card > a.btn.btn-primary {
    margin-top: auto;
}

div#faq {}

.faq-listing {
    max-width: 770px;
    margin: 0 auto;
}

.faq-listing .accordion .accordion-item {
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--sec-bg);
    color: #fff;
}

.faq-listing .accordion .accordion-item .accordion-button {
    background: transparent;
    color: inherit;
    justify-content: space-between;
    box-shadow: none;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1.5rem 1.8rem;
}

.faq-listing .accordion .accordion-item .accordion-button::after {
    content: none;
}

.faq-listing .accordion .accordion-item .accordion-button .icon {
    background-color: var(--thm-primary);
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex: 0 0 auto;
    position: relative;
}

.faq-listing .accordion .accordion-item .accordion-button .icon .bar-1 {
    display: inline-block;
    width: 50%;
    height: 2px;
    background-color: var(--sec-bg);
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-listing .accordion .accordion-item .accordion-button .icon .bar-2 {
    display: inline-block;
    width: 2px;
    height: 50%;
    background-color: var(--sec-bg);
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-listing .accordion .accordion-item .accordion-button:not(.collapsed) .icon .bar-2 {
    display: none;
}

.faq-listing .accordion .accordion-item:not(:last-child) {
    margin-bottom: 1.8rem;
}

.faq-listing .accordion .accordion-item .accordion-body {
    padding: 0 1.8rem 1.5rem;
}

.contact-form-wrap {
    max-width: 770px;
    margin: 0 auto;
}

.contact-form-wrap input, .contact-form-wrap select, .contact-form-wrap textarea{
    border: 1px solid var(--sec-bg);
    width: 100%;
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    color: var(--text-color);
    appearance: none;
}

.contact-form-wrap ::placeholder {
    color: var(--text-color);
}

.row {
    --bs-gutter-y: var(--bs-gutter-x);
}

.contact-form-wrap select {background-image: url("data:image/svg+xml,%3Csvg width='18' height='10' viewBox='0 0 18 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.6553 0.755371L8.72139 7.75537L0.655273 0.75537' stroke='%23122029' stroke-width='2'/%3E%3C/svg%3E%0A");background-repeat: no-repeat;background-size: 1rem;background-position: calc(100% - 1.4rem) center;padding-right: 3.5rem;}

.contact-form-wrap .submit-wrap {
    text-align: center;
}

.contact-form-wrap .input-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-section .contact-info-wrap {
    text-align: center;
    margin-top: 1.8rem;
}

.clr-primary {
    color: var(--thm-primary) !important;
}

.contact-section .contact-info-wrap a.clr-primary {
    font-size: 2.5rem;
    font-weight: 600;
    display: inline-block;
    line-height: 1;
}

/*****Homepage End********/
/***Footer***/
footer.footer {
  background: var(--sec-bg);
  color: #fff;
  font-size: 1rem;
  line-height: 1.4;
}

footer.footer .footer-menu-wrapper {
  padding: 3.2rem 0 2.5rem;
}

footer.footer .footer-copyright {
  border-top: 1px solid rgb(255 255 255 / 20%);
  padding: 21px 0 22px;
  font-family: "Inter";
}

.footer-copyright .footer-copyright-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright .footer-inline-links ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
}

.footer-copyright .footer-inline-links ul li {
  padding: 0 12px;
  position: relative;
}

.footer-copyright .footer-inline-links ul li:not(:last-child):after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: #fff;
}

.footer-copyright .footer-inline-links ul li:last-child {
  padding-right: 0;
}

.footer-copyright .footer-inline-links ul a:active {
  color: var(--thm-primary);
}

.footer-copyright .footer-inline-links ul a {
  transition: all 0.2s;
}

.footer-menu-wrapper .menu-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-menu-wrapper .footer-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-menu-wrapper .footer-menu li {
  line-height: inherit;
  padding: 5px 0;
}

.footer-menu-wrapper .footer-menu li a {
  transition: all 0.2s;
  position: relative;
  padding: 2px 0;
  display: inline-block;
  word-break: break-word;
}

.footer-menu-wrapper .footer-menu li a:active:after {
  width: 100%;
}

.footer-menu-wrapper .footer-menu li a:after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: all 0.3s;
}

.footer .footer-social {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer .footer-social .icon {
    display: inline-flex;
    width: 20px;
    height: 20px;
    text-align: center;
    margin-right: 10px;
    align-items: center;
    justify-content: center;
}

.footer .footer-social li {
    margin-bottom: 15px;
}

.footer .footer-social a {
    display: inline-flex;
    align-items: flex-start;
}

.footer .copyright-inner {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/***Footer End***/

/*******Media Query******/
@media (max-width: 1199px) {
  header.header .header-search input[type="submit"] {
    padding: 12px 10px;
  }
}

@media (min-width: 992px) {
  header.header ul.menu {
    display: flex !important;
  }

  header.header .header-inner .header-search {
    display: block !important;
  }

  .btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
  }

  .btn.btn-primary-outline:hover {
    background-color: var(--thm-primary);
    color: #fff;
  }

  ul.dropdown-list .dropdown-item .link:hover {
    background: var(--thm-primary);
    color: #fff;
  }

  .footer-copyright .footer-inline-links ul a:hover {
    color: var(--thm-primary);
  }

  .footer-menu-wrapper .footer-menu li a:hover:after {
    width: 100%;
  }

}

@media (max-width: 991px) {
  footer.footer .footer-menu-wrapper {
    padding: 50px 0 40px;
  }

  header.header ul.menu {
    position: absolute;
    top: 100%;
    bottom: calc(-100vh + 100%);
    left: 0;
    z-index: 3;
    background: #fff;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 0 30px 6px;
    display: none;
    font-size: 1rem;
    overflow: auto;
  }

  header.header ul.menu li.menu-item {
    width: 100%;
    margin: 10px 0;
  }

  header.header ul.menu li.menu-item a, header.header .menu .menu-item .user-dropdown>button.btn {
    padding: 4px 0;
    font-size: inherit;
  }

  .menu-toggle .bar {
    width: 100%;
    height: 3px;
    background: #000;
    display: inline-block;
    transition: all 0.2s;
  }

  .btn.menu-toggle {
    width: 25px;
    height: 17px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  header.header.menu-active .menu-toggle .bar.bar-1 {
    transform: rotate(45deg) translate(2px, -4.5px);
  }

  .menu-toggle .bar.bar-1 {
    transform-origin: left;
  }

  .menu-toggle .bar.bar-3 {
    transform-origin: left;
  }

  header.header.menu-active .menu-toggle .bar.bar-3 {
    transform: rotate(-45deg) translate(2px, 4.5px);
  }

  header.header.menu-active .menu-toggle .bar.bar-2 {
    transform: translateX(-80%);
    opacity: 0;
  }

  header.header .header-inner .header-search {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    text-align: center;
    background: #fff;
    padding: 30px 30px;
    display: none;
    border-top: 1px solid #ddd;
  }

  header.header .header-inner .header-search form {
    justify-content: center;
  }

  button.btn.header-search-toggle {
    padding: 3px 8px;
    margin-right: 6px;
  }

  button.btn.header-search-toggle svg {
    vertical-align: text-top;
  }

  header.header .header-inner .user-dropdown {
    order: 0;
    margin-right: 10px;
  }

  header.header .header-inner .main-menu {
    order: 2;
  }


  header.header .header-inner .user-dropdown button {
    padding: 2px 5px;
  }

  header.header .user-dropdown .d-lg-none svg {
    vertical-align: text-top;
  }
  header.header .menu .menu-item .user-dropdown>button.btn {
    padding: 0 0;
    width: 100%;
  }

  header.header .menu .menu-item .user-dropdown>button.btn > span.d-flex {
      justify-content: space-between;
  }

  .menu .user-dropdown ul.dropdown-list {
      position: relative;
      box-shadow: none;
      border: none;
      padding: 10px 0;
  }

  .menu .user-dropdown ul.dropdown-list a.link {
      padding: 8px 10px !important;
      font-weight: inherit !important;
  }

  header.header ul.menu li.menu-item.auth-menu {
      margin-top: 20px;
  }

  header.header ul.menu li.menu-item.auth-menu a.btn.btn-primary {
      padding: 12px 25px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 1.7rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  h4 {
    font-size: 1.1rem;
  }

  h5 {
    font-size: 1rem;
  }
.btn {
    padding: 12px 25px;
}
  .hero-banner .hero-banner-inner>p {
    font-size: 16px;
  }

  .container {
    padding: 0 20px;
  }

  header.header ul.menu {
    padding: 0 20px 6px;
  }

.hero-banner h1 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.hero-banner .banner-description {
    font-size: 1.2rem;
}

.hero-banner {
    padding: 60px 0;
}
  .footer-copyright .footer-copyright-inner {
    flex-wrap: wrap-reverse;
    justify-content: center;
  }

  .footer-copyright .footer-inline-links ul a {
    font-size: 12px;
  }

  .footer-inline-links {
    margin-bottom: 14px;
  }

  .footer-copyright .footer-inline-links ul li {
    padding: 0 8px;
  }

  .footer-copyright .footer-inline-links ul li:not(:last-child):after {
    top: 2px;
  }

  .copyright-inner {
    font-size: 13px;
  }
  .contact-section .contact-info-wrap a.clr-primary {
    font-size: 2rem;
}

.faq-listing .accordion .accordion-item .accordion-button {
    padding: 1.2rem 1.4rem;
    font-size: inherit;
}

.faq-listing .accordion .accordion-item .accordion-body {
    padding: 0 1.4rem 1.2rem;
}
.services-card {
    padding: 1.6rem 1.4rem;
}
header.header .menu .menu-item .user-dropdown.active>button.btn svg {
    transform: rotate(180deg);
}
.section-spacing {
    margin: 70px 0;
}
.services-card .top-info .thumb {
    width: 3.5rem;
    height: 3.5rem;
}
.contact-form-wrap input, .contact-form-wrap select, .contact-form-wrap textarea {
    padding: 0.6rem 1rem;
}
.contact-form-wrap input, .contact-form-wrap select, .contact-form-wrap textarea {
    padding: 0.6rem 1rem;
}
/*
.footer .logo-col {
    order: -2;
}

.footer .contact-col {
    order: -1;
}*/
}

/*******Media Query End***/