/* custom font start */

/* custom font end */

body {
  overflow-x: clip;
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
}
/*BOOTSTRAP 5.0.0 CSS*/
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-black: #000;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-2xl: 2rem;
  --bs-border-radius-pill: 50rem;
  --bs-link-color: #0d6efd;
  --bs-link-hover-color: #0a58ca;
  --bs-code-color: #d63384;
  --bs-highlight-bg: #fff3cd;
}

*,
::after,
::before {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: 1px solid;
  opacity: 0.25;
}

.h5,
h5 {
  font-size: 1.25rem;
}

.h6,
h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

a {
  color: var(--bs-link-color);
  text-decoration: underline;
}

a:hover {
  color: var(--bs-link-hover-color);
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

tbody,
td,
tfoot,
th,
thead,
tr {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (min-width: 1400px) {
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

.table {
  --bs-table-color: var(--bs-body-color);
  --bs-table-bg: transparent;
  --bs-table-border-color: var(--bs-border-color);
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: var(--bs-body-color);
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  --bs-table-active-color: var(--bs-body-color);
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: var(--bs-body-color);
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100%;
  margin-bottom: 1rem;
  color: var(--bs-table-color);
  vertical-align: top;
  border-color: var(--bs-table-border-color);
}

.table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  background-color: var(--bs-table-bg);
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
  color: #5e5e5e !important;
}

.table > tbody {
  vertical-align: inherit;
}

.table > thead {
  vertical-align: bottom;
}

.table-group-divider {
  border-top: 2px solid currentcolor;
}

.caption-top {
  caption-side: top;
}

.table-sm > :not(caption) > * > * {
  padding: 0.25rem 0.25rem;
}

.table-bordered > :not(caption) > * {
  border-width: 1px 0;
}

.table-bordered > :not(caption) > * > * {
  border-width: 0 1px;
}

.table-borderless > :not(caption) > * > * {
  border-bottom-width: 0;
}

.table-borderless > :not(:first-child) {
  border-top-width: 0;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-accent-bg: var(--bs-table-striped-bg);
  color: var(--bs-table-striped-color);
}

.table-striped-columns > :not(caption) > tr > :nth-child(2n) {
  --bs-table-accent-bg: var(--bs-table-striped-bg);
  color: var(--bs-table-striped-color);
}

.table-active {
  --bs-table-accent-bg: var(--bs-table-active-bg);
  color: var(--bs-table-active-color);
}

.table-hover > tbody > tr:hover > * {
  --bs-table-accent-bg: var(--bs-table-hover-bg);
  color: var(--bs-table-hover-color);
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 767.98px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 991.98px) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 1199.98px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 1399.98px) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #6c757d;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}

.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-flex {
  display: flex !important;
}

.border {
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-dark {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}

.w-100 {
  width: 100% !important;
}

.align-items-center {
  align-items: center !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.text-center {
  text-align: center !important;
}

/*BOOTSTRAP 5.0.0 CSS*/

/* CUSTOM CSS */
/* GERNAL CSS */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0px;
}
.welcome-content b,
b,
li,
p {
  color: #777;
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}
a {
  text-decoration: none;
  transition: 0.3s ease-in;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  opacity: 1;
}

img {
  height: auto;
  max-width: 100%;
}

video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

input,
textarea,
select {
  width: 100%;
}

input[type="checkbox"] {
  height: auto;
  width: auto;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
}

:root {
  --fs-18: 18px;
  --fs-20: 20px;
  --fs-30: 30px;
  --fs-50: 50px;
  --lh-24: 24px;
  --lh-30: 30px;
  --lh-60: 60px;
  --lh-50: 50px;
}
/* GERNAL CSS */

/* header css start */

.tooglemenu {
  display: none;
}
.grid-main-header-here {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
ul.navlist {
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 0px;
  padding: 0px;
}
li.menu-item-has-children {
  position: relative;
}
ul.sub-menu {
  position: absolute;
  display: none;
  width: 245px;
  left: -15px;
  /* padding-top: 43px; */
  top: 100%;
  padding-left: 0px;

  /* Menu Shadow */
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.15);
}
.custome-header {
  position: fixed;
  top: 0;
  background-color: #fff;
  width: 100%;
  z-index: 999;
}
ul.navlist > li a {
  color: #525c64;
  font-family: "Roboto Condensed";
  font-size: var(--fs-18);
  font-style: normal;
  font-weight: 500;
  line-height: var(--lh-24); /* 133.333% */
  transition: 0.3s ease-in;
  position: relative;
}
ul.navlist li .sub-menu > li a {
  color: #525c64;
  font-family: Roboto;
  font-size: var(--fs-18);
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-24); /* 116.667% */
  transition: 0.3s ease-in;
}
ul.navlist li .sub-menu > li:hover a {
  color: #d00707;
}
li.menu-item-has-children:hover > .sub-menu {
  display: block;
  animation: 0.2s ease-in animatemenu;
}
@keyframes animatemenu {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
li.menu-item-has-children > .sub-menu li {
  background-color: #fff;
  width: 100%;
  padding: 10px 15px;
  padding-bottom: 0px;
}
li.menu-item-has-children > .sub-menu li:last-child{
padding-top: 10px;
}
li.menu-item-has-children > .sub-menu li:last-child{
  padding-bottom: 10px;
}
li.menu-item-has-children > .sub-menu li a {
  color: var(--Black, #000);
}
li.menu-item-has-children > .sub-menu li.menu-item-has-children > .sub-menu {
  top: 0;
  left: 100%;
  padding-top: 0px;
}
ul.navlist li {
  position: relative;
  list-style: none;
  padding: 0px;
  margin: 0px;
  padding: 35px 0px;
}
ul.navlist li.current-menu-item a {
  color: #d00707;
}
ul.navlist li:hover a {
  color: #d00707;
}
ul.navlist .sub-menu li:hover a::after {
  display: none;
}
ul.navlist .sub-menu li:hover > a {
  color: var(--Blue-5, #2c95d1);
}
.custome-header .login a {
  color: #525c64;
  text-align: right;
  font-family: "Roboto Condensed";
  font-size: var(--fs-18);
  font-style: normal;
  font-weight: 500;
  line-height: 21px; /* 116.667% */
}
.custome-header .navlist-holder .login {
  display: none;
}

.mt {
  margin-top: 95px;
}
/* header css end */

/* hero section */

.hero {
  height: 833px;
}
.full-img,
.full-img .container,
.mySwiperbanner {
  height: 100%;
}

.full-img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}
.full-img .container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.full-img::before,
.full-img::after {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
}
.full-img::after {
  background: linear-gradient(
    270deg,
    rgba(0, 33, 77, 0.15) 38.86%,
    #00214d 106.48%
  );
  z-index: 10;
}
.full-img::before {
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 5;
}
.banner-content {
  position: relative;
  z-index: 15;
}

.banner-content {
  max-width: 680px;
}
.input-f {
  display: flex;
  align-items: center;
  background-color: #fff;
  max-width: 595px;
  width: 100%;
  padding: 8px 20px;
  margin-top: 45px;
}
.input-f input {
  border: none;
  outline: none;
  color: #9c9c9c;
  font-family: Poppins;
  font-size: var(--fs-18);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 4px 0px;
}
.input-f input::placeholder {
  color: #9c9c9c;
}
.banner-content p {
  color: #fff;
  font-family: Roboto;
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-30); /* 140% */
}
.fs-50 {
  color: #fff;
  font-family: "Roboto Condensed";
  font-size: var(--fs-50);
  font-style: normal;
  font-weight: 700;
  line-height: var(--lh-60); /* 120% */
  text-transform: uppercase;
  max-width: 642px;
  width: 100%;
}
.banner-content .fs-50 {
  margin-bottom: 17px;
}
/* hero section */

/* welcome section */

.welcome {
  padding-top: 70px;
  padding-bottom: 40px;
  position: relative;
}
.welcome .container {
  position: relative;
  z-index: 99;
}
.us-flag {
  position: absolute;
  top: 50px;
  left: 0px;
}
.fs-40 {
  color: #00214d;
  text-align: center;
  font-family: "Roboto Condensed";
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 44px; /* 110% */
  text-transform: uppercase;
  display: block;
  margin: 0 auto;
  width: fit-content;
}
.welcome-content .fs-40 {
  padding: 8px 44px;
  border-bottom: 2px solid #00214d;
  margin-bottom: 30px;
}
.welcome-content p {
  max-width: 860px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.welcome-content b {
  display: block;
  width: fit-content;
  margin: 0 auto;
  color: #00214d;
  font-weight: 600;
}

.welcome .welcome-content .c-btn {
  margin: 0 auto;
  margin-top: 50px;
}

.c-btn {
  display: block;
  position: relative;
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px; /* 157.143% */
  padding: 10px 45px;
  width: fit-content;
  z-index: 9;
}
.c-btn::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--Gradiant, linear-gradient(90deg, #00214d 0%, #7f2826 100%));
  z-index: -1;
  transition: 0.5s ease-in;
}
.c-btn:hover {
  color: #fff;
  transition: 0.5s ease-in;
}
.c-btn:hover::after {
  transition: 0.5s ease-in;
  background: var(
    --Gradiant-1,
    linear-gradient(90deg, #7f2826 0%, #00214d 100%)
  );
}

.grid-container {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.grid-cart {
  width: 357px;
  height: 257px;
}
.grid-cart a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.grid-cart a::after {
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  background: linear-gradient(270deg, rgba(0, 33, 77, 0.15) 0%, #00214d 89.78%);
  top: 0;
  left: 0;
}
.grid-cart a img {
  transition: 0.5s ease-in;
}
.grid-cart:hover a img {
  transform: scale(1.5);
}
.title-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding-left: 30px;
  z-index: 10;
  width: 100%;
}
.title-content h3 {
  color: var(--C2, #fff);
  font-family: "Roboto Condensed";
  font-size: var(--fs-30);
  font-style: normal;
  font-weight: 600;
  line-height: var(--lh-50); /* 172.414% */
  letter-spacing: 0.29px;
  text-transform: capitalize;
  /* text-align: c; */
  margin-bottom: 0px;
}
.title-content span {
  color: var(--C2, #fff);
  text-align: center;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}
.grid-container {
  padding-top: 57px;
  padding-bottom: 45px;
}
.welcome .c-btn {
  margin: 0 auto;
}

/* service section start */

.service-content {
  background: #7f2826;
  padding-top: 85px;
  padding-bottom: 250px;
}
.content-service h2 {
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 600;
  line-height: var(--lh-30); /* 145% */
}
.content-service .fs-40 {
  margin-bottom: 19px;
  color: #fff;
}
.content-service p,
.content-service b {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: 100%;
  display: block;
  color: #fff;
}
.content-service b {
  font-weight: 600;
}

.service-list {
  display: flex;
}
.service-list .service-img,
.service-list .content {
  width: 50%;
}

.main-serive-list .service-list:nth-last-child(odd) {
  flex-direction: row-reverse;
}
.service-list .content {
  padding: 55px 80px;
}
.service-list .content .c-btn {
  margin-top: 25px;
}
.fs-30 {
  color: #00214d;
  font-family: "Roboto Condensed";
  font-size: var(--fs-30);
  font-style: normal;
  font-weight: 500;
  line-height: var(--lh-50); /* 146.667% */
  text-transform: uppercase;
}
.service-list .content .fs-30 {
  margin-bottom: 4px;
}
.service-img {
  height: 350px;
}
.service-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.main-serive-list {
  background-color: #fff;
  max-width: 1490px;
  margin: 0 auto;
  margin-top: -185px;
}

/* section.featured-organizations*/

.featured-organizations {
  padding-top: 90px;
  position: relative;
}
.slider-flag {
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-title .fs-40 {
  margin-left: 0;
  margin-bottom: 22px;
}
.top-title p {
  max-width: 947px;
  color: #000;
}
.top-title b {
  text-align: left;
  color: #00214d;
  font-weight: 600;
}
.top-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 30px;
}
.main-content-featured-organizations {
  display: flex;
  padding: 60px;
  border: 2px solid #dfc9c8;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  /* opacity: 0.5; */
  /* background: #FFF; */
}
.featured-organizations {
  padding-bottom: 95px;
}
.featured-organizations-content {
  max-width: 775px;
  width: 100%;
}

.featured-organizations-content .fs-40 {
  margin-left: 0px;
  margin-bottom: 20px;
}
.featured-organizations-content li,
.featured-organizations-content b,
.featured-organizations-content p {
  color: #000;
}
.featured-organizations-content b {
  font-weight: 600;
}
.featured-organizations-content .c-btn {
  margin-top: 35px;
}
.slider-btn {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  align-items: center;
}
.slider-btn div {
  cursor: pointer;
  transition: 0.3 ease-in;
}
.slider-btn .swiper-button-disabled {
  opacity: 0.5;
}

/* footer css start */

.custom-footer {
  background-color: #7f2826;
  padding-top: 40px;
  padding-bottom: 20px;
}
.footer-data {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}
.footer-logo {
  max-width: 388px;
  width: 100%;
}
.footer-logo p {
  margin-top: 15px;
  color: #fff;
  font-family: Roboto;
  font-size: var(--fs-18);
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-30); /* 155.556% */
  letter-spacing: -0.18px;
  margin-bottom: 27px;
}
.footer-logo ul {
  display: flex;
  padding: 0px;
  margin: 0px;
  justify-content: center;
  list-style: none;
  gap: 20px;
  margin-bottom: 80px;
}
.footer-links {
  display: flex;
  gap: 122px;
}
.footer-links ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
}
.footer-links h3 {
  color: #fff;
  font-family: "Roboto Condensed";
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 500;
  line-height: var(--lh-30); /* 140% */
  text-transform: uppercase;
}
.links p,
.footer-links ul li a {
  color: #fff;
  font-family: Roboto;
  font-size: var(--fs-18);
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-30); /* 177.778% */
  letter-spacing: -0.18px;
}
.footer-links .links {
  width: 100%;
}
.footer-links .links:nth-child(1) {
  max-width: 186px;
}
.footer-links .links:nth-child(2) {
  max-width: 227px;
}
.footer-links .links:nth-child(2) {
  max-width: 267px;
}
.links p {
  margin-bottom: 18px;
}
.copy-right {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.copyright p {
  margin: 0px;
  max-width: 388px;
  width: 100%;
  color: #fff;
  font-size: var(--fs-18);
}
.payment-accept span {
  color: #fff;
  text-align: right;
  font-family: Roboto;
  font-size: var(--fs-18);
  font-style: normal;
  font-weight: 600;
}
.payment-accept {
  display: flex;
  gap: 15px;
  align-items: center;
}
.footer-links-data {
  max-width: 1400px;
  margin: 0 auto;
}

/* news latter */

.newslatter {
  padding: 75px 0px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.newslatter::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 33, 77, 1);
  z-index: -1;
}
.newslatter-content h2 {
  color: #fff;
  letter-spacing: -0.108px;
  text-transform: uppercase;
  margin-bottom: 25px;
  font-weight: 700;
}
.newslatter-content p {
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 600;
  line-height: var(--lh-30); /* 130% */
  letter-spacing: -0.032px;
  margin-bottom: 40px;
}
.input-data {
  display: flex;
  max-width: 630px;
  width: 100%;
  margin: 0 auto;
}
.input-data .save {
  max-width: 150px;
  width: 100%;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.input-data .save input {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: none;
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px; /* 157.143% */
  cursor: pointer;
}
.input-data .save::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  background: var(--Gradiant, linear-gradient(90deg, #00214d 0%, #7f2826 100%));
}
.input-data input {
  padding: 8px 15px;
  color: #595857;
  font-feature-settings: "salt" on, "liga" off;
  font-family: Roboto;
  font-size: var(--fs-18);
  font-style: normal;
  font-weight: 400;
  border: none;
}

/* service flag 
*/

.service {
  padding: 112px 0px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.service-data {
  max-width: 730px;
  margin-left: auto;
}
.service-data .fs-50 {
  max-width: 100%;
  color: #00214d;
  margin-bottom: 18px;
}
.service-data p {
  color: #000;
}
.service-data h3 {
  color: #00214d;
  font-family: Roboto;
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 600;
  line-height: var(--lh-30); /* 140% */
  margin-bottom: 10px;
}
.service-data ul {
  /* list-style: none; */
  /* padding: 0px; */
  margin: 0px;
  padding-bottom: 35px;
}
.service-data ul li {
  color: #000;
  padding-bottom: 5px;
}
h3.fs-24 {
  color: #00214d;
  font-family: Roboto;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px; /* 116.667% */
  margin-bottom: 35px;
}

/* testimonials data */

.testimonials {
  padding: 70px 0px;
  position: relative;
  overflow-y: clip;
}
.flag {
  position: absolute;
  right: 0;
  bottom: -85px;
  z-index: -1;
}

.all-slider-data {
  display: flex;
  gap: 80px;
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 58px;
}
.content-data {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
.content-data p {
  color: #000;
  text-align: center;
  font-family: Roboto;
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 600;
  line-height: var(--lh-30); /* 145% */
}
.content-data h2 {
  font-weight: 700;
}
.all-slider-data {
  margin-top: 80px;
}
.review {
  width: 50%;
  position: relative;
  padding-left: 33px;
  padding-top: 62px;
}
.review p {
  color: #000;
  font-family: Roboto;
  font-size: var(--fs-18);
  font-style: italic;
  font-weight: 400;
  line-height: var(--lh-30); /* 155.556% */
  letter-spacing: -0.18px;
  margin-bottom: 11px;
}
.review h3 {
  color: #00214d;
  font-family: "Product Sans";
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 700;
  line-height: var(--lh-24); /* 120% */
  letter-spacing: -0.2px;
  margin-bottom: 0px;
}

.testimonials .c-btn {
  margin: 0 auto;
}
.review img {
  position: absolute;
  top: 0;
  left: 0;
}

/* about us section css start */
.about-us-title {
  background: #00214d;
  padding-top: 54px;
  padding-bottom: 50px;
}
.about-us-title .fs-40 {
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}
.about-us-title p {
  color: #fff;
  max-width: 940px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.owner-details {
  position: relative;
  margin-top: 40px;
}
.owner-flag {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
.owner-full-details {
  display: flex;
  justify-content: center;
  align-items: center;
}
.owner-content {
  max-width: 975px;
  width: 100%;
  background-color: #fff;
  padding: 36px 39px 52px 58px;
  box-shadow: 0px 5px 11px 0px rgba(0, 0, 0, 0.15);
  margin-left: -110px;
  margin-top: 340px;
  position: relative;
  z-index: 30;
}
.owner-img {
  max-width: 623px;
  width: 100%;
}

.owner-content .fs-40 {
  margin: 0px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  padding-right: 40px;
  border-bottom: 2px solid #00214d;
}
.signature {
  display: flex;
  justify-content: center;
  padding-left: 70px;
}

.about-us{
  padding-bottom: 100px;
}


/* organization css start */

.organization{
  padding-bottom: 100px;
  padding-top: 77px;
  position: relative;
}
.org-flag{
  position: absolute;
  left: 0;
  top: 40px;
  z-index: -1;
}
.Organizatios-content{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.Organizatios-content  .conent{
  max-width: 873px;
  width: 100%;
}
.Organizatios-content .fs-40{
  margin: 0;
margin-bottom: 15px;
}

.Organizatios-content p {
  color: #000000;
}
.Organizatios-content b{
  color: #00214D;
  font-weight: 600;
}
.Organizatios-content{
  padding-bottom: 70px;
}
.Organizatios-content  .input-f{
  margin-top: 0px;
  max-width: 350px;
  border: 1px solid #CBCBCB;
background: var(--C2, #FFF);
width: 100%;
}
ul.featured-org-list{
  padding: 0px;
  margin: 0px;
  list-style: none;
}
.featured-org-data{
  display: flex;
}
.featured-org-data .logo{
  max-width: 490px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #D1D1D1;

}
.content-featured{
  padding: 40px 65px;
}
.content-featured p {
  color: #000;
  max-width: 862px;
  width: 100%;
  margin-bottom: 25px;
}
.content-featured .fs-30{
  margin-bottom: 13px;
}

ul.featured-org-list li {
  border: 1px solid #D1D1D1;
background: #FFF;
margin-bottom: 40px;
}

.organizations-other .fs-40{
  margin: 0;
  margin-bottom: 45px;
}
.organizations-other{
  padding-top: 60px;
}
.organizations-other ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
justify-content: center;  

}
.organizations-other ul li{
  max-width: 350px;
  width: 100%;
  height: 275px;
  border: 1px solid #D1D1D1;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
.organizations-other ul li h3{
  color: var(--C3, #243F54);
font-family: Roboto;
font-size: var(--fs-20);
font-style: normal;
font-weight: 600;
line-height: var(--lh-30); /* 150% */
text-transform: uppercase;
text-align: center;
}
.org-logo {
  height: 100px;
  justify-content: center;
  width: 100%;
  display: flex;
  align-items: center;
}

/* testimonilas */

.breadcrumb ol li.active a{
  color: #fff;
}
.testimonials.single-data .all-slider-data{
flex-wrap: wrap;
max-width: 100%;
gap: 30px;
}
.testimonials.single-data .review{
width: 32%;
}

/* category section */

.content-featured ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.content-featured ul  li{
  border: none;
  padding: 0px;
}
.content-featured ul  li a {
  font-size: 14px;
  color: #7F2826;
}