.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;
  font-family: "Arquitecta";
  font-weight: normal;
  font-style: normal;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

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;
}

/* sahil css start */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
a {
  margin: 0px;
  padding: 0px;
}

li {
  list-style: none;
}

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;
}

@font-face {
  font-family: 'Financier Display';
  src: url('../font/FinancierDisplay-BoldItalic.woff2') format('woff2'),
    url('../font/FinancierDisplay-BoldItalic.woff') format('woff');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Financier Display';
  src: url('../font/FinancierDisplay-SemiboldItalic.woff2') format('woff2'),
    url('../font/FinancierDisplay-SemiboldItalic.woff') format('woff');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Financier Display';
  src: url('../font/FinancierDisplay-Black.woff2') format('woff2'),
    url('../font/FinancierDisplay-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Financier Display';
  src: url('../font/FinancierDisplay-Bold.woff2') format('woff2'),
    url('../font/FinancierDisplay-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Financier Display';
  src: url('../font/FinancierDisplay-BlackItalic.woff2') format('woff2'),
    url('../font/FinancierDisplay-BlackItalic.woff') format('woff');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Financier Display';
  src: url('../font/FinancierDisplay-Medium.woff2') format('woff2'),
    url('../font/FinancierDisplay-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Financier Display';
  src: url('../font/FinancierDisplay-RegularItalic.woff2') format('woff2'),
    url('../font/FinancierDisplay-RegularItalic.woff') format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Financier Display';
  src: url('../font/FinancierDisplay-Light.woff2') format('woff2'),
    url('../font/FinancierDisplay-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Financier Display';
  src: url('../font/FinancierDisplay-Semibold.woff2') format('woff2'),
    url('../font/FinancierDisplay-Semibold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Financier Display';
  src: url('../font/FinancierDisplay-LightItalic.woff2') format('woff2'),
    url('../font/FinancierDisplay-LightItalic.woff') format('woff');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Financier Display';
  src: url('../font/FinancierDisplay-MediumItalic.woff2') format('woff2'),
    url('../font/FinancierDisplay-MediumItalic.woff') format('woff');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Financier Display';
  src: url('../font/FinancierDisplay-Regular.woff2') format('woff2'),
    url('../font/FinancierDisplay-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* font-family: 'Futura Std'; */
* {
  font-family: "Financier Display";
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

:root {
  --fs-16: 16px;
  --fs-18: 18px;
  --fs-100: 100px;
  --fs-25: 25px;
  --fs-70: 70px;
  --fs-36: 36px;
  --fs-50: 50px;
  --fs-20: 20px;
  --fs-54: 54px;
  --fs-200: 200px;
  --fs-56: 56px;

  --lh-25: 25px;
  --lh-29: 29px;
  --lh-22: 22px;
  --lh-42: 42px;
  --lh-24: 24px;

  --text-black: #000;
  --text-white: #fff;
}

p {
  font-family: "Roboto", sans-serif;
  font-family: Roboto;
  font-style: normal;
  font-size: var(--fs-16);
  font-weight: 400;
  line-height: var(--lh-25);
  /* 150% */
}

a {
  font-family: "Roboto", sans-serif;
}

/* === custom css start ==== */

/* header css start */
header {
  padding: 6px 0px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9;
  transition: 0.3s ease-in;
}

header.custom.active {
  background-color: #fff;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1);
}

header.custom.active img.small {
  display: block;
  animation: 0.3s linear animateme;
}

header.custom.active img.large {
  display: none;
  animation: 0.3s linear animateme;
}

header.custom.active .main-menu ul li a {
  color: #000;
}

header.custom.active .contact-info ul li {
  border-color: #000;
}

header.custom.active .contact-info ul li:last-child a img {
  filter: invert(1);
}

header.custom.active .sub-menu {
  padding-top: 32px;
}

header.custom.active .main-menu ul li::after {
  background-color: #000;
}

img.small {
  display: none;
}

.main-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
}

.main-menu ul li a {
  color: #fff;
  font-size: var(--fs-16);
  font-weight: 400;
  line-height: var(--lh-29);
  /* 181.25% */
  letter-spacing: -0.32px;
  text-transform: uppercase;
  transition: 0.3s ease-in;
}

.main-menu ul {
  display: flex;
}

.main-menu .menu ul {
  gap: 30px;
}

.contact-info ul li {
  padding: 0px 12px;
  border-left: 1px solid #fff;
  display: flex;
  align-items: center;
  height: 20px;
}

.contact-info ul li:last-child {
  border-right: 1px solid #fff;
}

.contact-info ul li:last-child a {
  display: contents;
}

.contact-info ul li:first-child {
  padding-left: 0px;
  border-left: none;
}

.menu {
  max-width: 508px;
  width: 100%;
}

.sub-menu {
  position: absolute;
  width: 113px;
  flex-direction: column;
  padding-top: 38px;
}

.sub-menu li {
  padding: 10px 10px;
  background-color: #fff;
  transition: 0.3s linear;
}

.main-menu .menu ul li ul.sub-menu {
  gap: 0px;
}

.main-menu .menu ul li ul.sub-menu li a {
  color: #000;
}

.main-menu .menu ul li ul.sub-menu {
  display: none;
  filter: drop-shadow(0px 8px 5px rgba(0, 0, 0, 0.20));
}

.main-menu .menu ul li:hover ul.sub-menu {
  display: block;
  animation: 0.3s linear animateme;
}

.main-menu .menu ul li ul.sub-menu li:hover a {
  color: #fff;
}

.main-menu .menu ul li ul.sub-menu li:hover {
  background-color: #000;
}

.main-menu .menu ul li ul.sub-menu li::after {
  display: none;
}

@keyframes animateme {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

span.toogle {
  display: none;
}

li.menu-item-has-children {
  padding-right: 16px;
}

li.menu-item-has-children::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid #fff;
  right: 0;
  top: 43%;
  transform: translateY(-50%) rotate(226deg);
  border-bottom: none;
  border-right: none;
  cursor: pointer;
}

header.custom.active li.menu-item-has-children::before {
  border-color: #000;
}

/* hero section start */

.hero {
  height: 930px;
  width: 100%;
  position: relative;
}

.hero .mySwiper {
  width: 100%;
  height: 100%;
}

.hero .overlay {
  height: 100%;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  width: calc(100% - 50%);
  z-index: 1;
  width: calc(100% - 62.2%);
}

.hero-content {
  position: absolute;
  width: 100%;
  top: 407px;
  z-index: 4;
}

.c-btn {
  color: #fff;
  font-family: Roboto;
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-25);
  /* 150% */
  padding: 13px 36px;
  display: block;
  width: fit-content;
  border: 1px solid #fff;
  color: #fff;
  transition: 0.3s linear;
}

.c-btn:hover {
  background-color: #fff;
  color: #000;
}

.fs-100 {
  color: #fff;
  text-align: right;

  font-size: var(--fs-100);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.content .fs-100 {
  margin-bottom: 53px;
}

.content {
  margin-left: auto;
  position: absolute;
  left: -518px;
  top: 407px;
  width: fit-content;
}

span.line-top {
  display: block;
  height: 1px;
  background-color: #fff;
  margin-bottom: 36px;
  width: 80px;
}

span.line-top,
.content .c-btn {
  margin-left: auto;
  margin-right: 354px;
}

span.line-top {
  margin-right: 308px;
}

.main-menu .menu ul li {
  position: relative;
}

.main-menu .menu ul li {
  position: relative;
}

.main-menu .menu ul li::after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  left: 0;
  background-color: #fff;
  bottom: 0;
  width: 0;
  transition: 0.3s ease-in;
}

.main-menu .menu ul li:hover::after {
  width: 100%;
}

.main-menu .menu ul li.curent-menu::after {
  width: 100%;
}

.hero .swiper-slide {
  background-size: cover;
  background-repeat: no-repeat;
}

/* main brand start */

section.brand {
  background: #f2f2f2;
  padding-bottom: 45px;
  padding-top: 60px;
}

.fs-50 {
  color: #000;

  font-size: var(--fs-50);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.brand .fs-50 {
  padding-bottom: 50px;
}

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* barnd end */

/* about us */

.about-us {
  padding-top: 42px;
}

.main-data {
  display: flex;
  gap: 60px;
  align-items: center;
}

section.about-us .about-content {
  max-width: 830px;
  width: 100%;
}

.who {
  color: #787878;
  text-align: center;
  font-family: "Playfair Display";
  font-size: var(--fs-25);
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-22);
  /* 88% */
  margin-bottom: 15px;
  display: block;
  width: fit-content;
}

.fs-70 {
  color: #000;

  font-size: var(--fs-70);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.about-content .fs-70 {
  margin-bottom: 15px;
}

span.main-title {
  color: #000;

  font-size: var(--fs-36);
  font-style: italic;
  font-weight: 400;
  line-height: var(--lh-42);
  /* 116.667% */
  margin-bottom: 25px;
  display: block;
}

.about-us .c-btn {
  display: block;
  margin-top: 45px;
  border: 1px solid #000;
  color: #000;
}

.about-us .c-btn:hover {
  border: 1px solid #000;
  background: #000;
  color: #fff;
}

/* main slider data */
.service-data {
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 57px;
  padding-bottom: 65px;
}

/* /* insta  */

.insta {
  padding: 50px 0px;
}

.fs-54 {
  color: #000;
  text-align: center;

  font-size: var(--fs-54);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.insta .fs-54 {
  display: block;
  margin: 0 auto;
  margin-bottom: 47px;
}

.insta .fs-54:hover {
  color: #000;
}

.insta-content {
  position: relative;
  max-width: 324px;
  height: 314px;
}

.copy {
  position: absolute;
  top: 10px;
  right: 30px;
  width: 30px;
}

.insta-content img.cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-flow-data {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  transition: 0.3s linear;
}

.content-flow-data p {
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-24);
  /* 120% */
  max-width: 252px;
  width: 100%;
  margin: 0 auto;
  margin-top: 35px;
}

.like-cpmment {
  justify-content: center;
  gap: 55px;
  align-items: center;
  display: flex;
}

.like-cpmment span {
  display: flex;
  align-items: center;
  gap: 3px;
}

.like-cpmment span em {
  color: #fff;
  font-family: Roboto;
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-24);
  /* 120% */
}

.insta-content:hover .content-flow-data {
  opacity: 1;
}

.main-logo-content {
  display: flex;
  flex-wrap: wrap;
}

/* / review css start  */
.client-reviews {
  padding-top: 97px;
  padding-bottom: 89px;
  background-size: cover;
  background-repeat: no-repeat;
}

.client-reviews .who {
  text-align: center;
  display: block;
  margin: 0 auto;
  margin-bottom: 15px;
}

.client-reviews .fs-70 {
  text-align: center;
}

.review-clients {
  max-width: 577px;
  padding-top: 82px;
  padding-left: 56px;
  padding-right: 44px;
  padding-bottom: 40px;
  max-width: 577px;
  border: 1px solid #000;
  background: #f2f2f2;
  margin-bottom: 90px;
}

.review-clients p {
  color: #000;
  font-family: Roboto;
  font-size: var(--fs-18);
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-29);
  /* 161.111% */
}

.review-clients b {
  color: #000;
  font-family: Roboto;
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 500;
  line-height: var(--lh-29);
  /* 150% */
  display: block;
  margin-top: 15px;
}

.review-clients span {
  color: #000;
  font-family: Roboto;
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-29);
  /* 150% */
  margin-top: 2px;
}

.quats {
  position: absolute;
  top: 40px;
}

.swiper-pagination span {
  width: 13px;
  height: 13px;
  background-color: #d9d9d9;
  opacity: 1;
}

.swiper-pagination span.swiper-pagination-bullet-active {
  background-color: #000000;
}

.main-slider {
  padding-top: 75px;
  max-width: 1185px;
  width: 100%;
  margin: 0 auto;
}

/* footer css start */

.main-footer {
  background-color: #000000;
  padding-top: 85px;
  padding-bottom: 32px;
}

.gallery-data {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 825px;
}

.rightgallery img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.maingallerys {
  display: flex;
  align-items: flex-end;
}

.gallery .c-btn {
  color: #000;
  border: 1px solid #000;
}

.gallery .c-btn:hover {
  background-color: #000;
  color: #fff;
}

.gallery {
  position: relative;
}

.rightgallery {
  height: 100%;
  width: 32.7%;
}

.left-galery {
  width: 67.3%;
}

.main-btn {
  max-width: 480px;
  width: 100%;
  height: 162px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery.gallery4 .main-img {
  height: 363px;
  width: 520px;
  position: relative;
  margin-right: -40px;
}

.gallery.gallery4 .main-img img {
  width: 100%;
  height: 100%;
  position: absolute;
  right: -40px;
}

.gallery.gallery3 {
  width: 482px;
  height: 303px;
  position: relative;
  margin-right: -40px;
}

.gallery.gallery3 img {
  width: 100%;
  height: 100%;
  right: -40px;
}

.main-btn-flow {
  height: 222px;
  width: 337px;
  position: relative;
}

.gallery.gallery2 .main-img-flow {
  width: 535px;
  height: 327px;
  position: absolute;
  bottom: 222px;
}

.contetn {
  padding-bottom: 100px;
  padding-left: 175px;
}

.toparrow {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  align-items: center;
}

.toparrow div {
  cursor: pointer;
}

.toparrow {
  padding-bottom: 25px;
}

/* slider css */

.service {
  max-width: 382px;
  height: 500px;
  border-radius: 214px;
  overflow: hidden;
  border: 1px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #f8f8f7;
}

.service img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.service p {
  max-width: 273px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding-top: 18px;
}

span.title {
  color: #000;
  text-align: center;

  font-size: var(--fs-56);
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  /* 103.571% */
}

span.number {
  color: #000;
  text-align: center;

  font-size: var(--fs-200);
  font-style: normal;
  font-weight: 300;
  line-height: 140px;
  margin-bottom: 15px;
}

.gallery.gallery3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* footer css start */

.newslatter {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.fs-37 {
  color: #fff;
  font-family: Roboto;
  font-size: 37px;
  font-style: normal;
  font-weight: 300;
  line-height: 36px;
  /* 97.297% */
}

.newslatter .fs-37 {
  max-width: 319px;
  width: 100%;
  margin-bottom: 45px;
}

.inputfileds {
  display: flex;
  max-width: 443px;
  width: 100%;
  padding-bottom: 6px;
  border-bottom: 1px solid #fff;
}

.inputfileds input {
  color: #fff;
  font-family: Roboto;
  font-size: var(--fs-18);
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  /* 200% */
  background-color: transparent;
  border: none;
  padding-right: 5px;
}

.inputfileds input::placeholder {
  color: #fff;
}

.inputfileds input[type="submit"] {
  width: 95px;
  cursor: pointer;
}

/* .bootom-links {
  padding-top: 110px;
} */

.flow-use {
  padding-top: 117px;
  display: flex;
  align-items: center;
  gap: 17px;
}

.flow-use span {
  color: #fff;
  font-family: Roboto;
  font-size: var(--fs-18);
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  /* 200% */
}

.flow-use ul {
  display: flex;
  gap: 8px;
  align-items: center;
}

.bootom-links {
  display: flex;
  gap: 264px;
}

.main-links {
  display: flex;
  padding-bottom: 42px;
}

.mainlinks a,
.mainlinks p {
  color: #fff;
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  /* 200% */
}

.main-links h3 {
  color: #fff;
  font-family: Roboto;
  font-size: var(--fs-20);
  font-style: normal;
  padding-bottom: 22px;
  font-weight: 400;
  line-height: 36px;
  /* 180% */
}

.ouroffice {
  max-width: 282px;
  width: 100%;
}

.main-links-flow {
  max-width: 137px;
  width: 100%;
}

.main-links-flow-data {
  max-width: 160px;
  width: 100%;
}

.bootom-links ul li a {
  color: #fff;
  font-family: Roboto;
  font-size: var(--fs-18);
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  /* 161.111% */
}

.bootom-links .contact-info ul li {
  border: none;
  padding: 0px;
}

.mainlinks {
  max-width: 735px;
  width: 100%;
}

.main-links {
  justify-content: space-between;
}

.main-links p {
  color: #fff;
  font-family: Roboto;
  font-size: var(--fs-18);
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  /* 161.111% */
}

.bootom-links .contact-info {
  padding-top: 36px;
}

.swiper-button-next1.swiper-button-disabled,
.swiper-button-prev1.swiper-button-disabled {
  opacity: 0;
}

.swiper-button-next1,
.swiper-button-prev1 {
  transition: 0.3s ease-in;
}

/* gallery img */

.mainimages {
  position: relative;
  height: 550px;
  max-width: 100%;
  width: 100%;
}

.main-btn {
  margin-left: auto;
}

.main-btn a.c-btn {
  color: #000;
  border-color: #000;
}

.main-btn a.c-btn:hover {
  background-color: #000;
  color: #fff;
}

.mainimages img {
  position: absolute;
}

.main-btn {
  position: absolute;
  right: 0;
  bottom: 0;
}

img.img3 {
  max-width: 520px;
  right: -40px;
  bottom: 162px;
}

img.img2 {
  bottom: 0;
  left: 24.9%;
}

img.img1 {
  top: 0;
  left: 0;
}

/* gallery  page css start */
.mt {
  margin-top: 93px;
}

.innerbanner-flow {
  padding-top: 60px;
}

.maintitle .who {
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 33px;
}

.maintitle .fs-70 {
  max-width: 594px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 37px;
}

.maintitle p {
  max-width: 757px;
  width: 100%;
  margin: 0 auto;
  text-align: center;

}

.maintitle {
  margin-bottom: 58px;
}

.allimages {
  max-width: 1282px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
  padding-top: 40px;
}

.allimages .maingallery {
  position: relative;
  cursor: pointer;
  max-width: 398px;
  height: 557px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.allimages .maingallery span {
  color: #fff;
  text-align: center;
  font-family: 'Financier Display';
  font-size: var(--fs-56);
  font-style: normal;
  font-weight: 400;
  line-height: 58px;
  /* 103.571% */
  width: fit-content;
  padding-bottom: 10px;
  display: block;
  text-align: center;
  position: relative;
  z-index: 1;
}

.allimages .maingallery span::after {
  position: absolute;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #fff;
  content: "";
  bottom: 0;
  transition: 0.3s ease-in;
}

.allimages .maingallery:hover span::after {
  width: 100%;
}

.innerbanner-flow {
  padding-bottom: 30px;
}

.allimages .maingallery img {
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  top: 0;
}

.insta.inner {
  padding-bottom: 125px;
}

/* Corporate page css tart */

.innerbanner-flow.w-100 .maintitle p {
  max-width: 1278px;
  margin: 0 auto;
  font-size: var(--fs-18);
  line-height: var(--lh-29);
}

.innerbanner-flow.w-100 .maintitle {
  padding-bottom: 50px;
  margin-bottom: 0px;
}

.innerbanner-flow.w-100 .maintitle p {
  display: block;
  margin: 0 auto;
  margin-bottom: 10px;
}

.innerbanner-flow.w-100 .allimages {
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.innerbanner-flow.w-100 .allimages img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.innerbanner-flow.w-100 .allimages {
  gap: 10px;
  column-count: 4;
  display: block;
  overflow: hidden;
  padding: 0px 10px;
  
}

/* main gallery css start */


.innerbanner-flow.w-100 .allimages a:nth-child(1) {
  grid-area: first;
}

.innerbanner-flow.w-100 .allimages a:nth-child(2) {
  grid-area: second;
}

.innerbanner-flow.w-100 .allimages a:nth-child(3) {
  grid-area: third;
}

.innerbanner-flow.w-100 .allimages a:nth-child(4) {
  grid-area: fourth;
}

.innerbanner-flow.w-100 .allimages a:nth-child(5) {
  grid-area: fifth;
}

.innerbanner-flow.w-100 .allimages a:nth-child(6) {
  grid-area: six;
}

.innerbanner-flow.w-100 .allimages a:nth-child(7) {
  grid-area: seventh;
}

.innerbanner-flow.w-100 .allimages a:nth-child(8) {
  grid-area: eight;
}

.innerbanner-flow.w-100 .allimages a:nth-child(9) {
  grid-area: ninth;
}

.innerbanner-flow.w-100 .allimages a:nth-child(10) {
  grid-area: tenth;
}

.innerbanner-flow.w-100 .allimages a:nth-child(11) {
  grid-area: eleven;
}

.innerbanner-flow.w-100 .allimages a:nth-child(12) {
  grid-area: twel;
}

.innerbanner-flow.w-100 .allimages a:nth-child(13) {
  grid-area: thirteen;
}

.innerbanner-flow.w-100 .allimages a:nth-child(14) {
  grid-area: forteen;
}

.innerbanner-flow.w-100 .allimages a:nth-child(15) {
  grid-area: fifteen;
}

.innerbanner-flow.w-100 .allimages a:nth-child(16) {
  grid-area: sixteen;
}

.innerbanner-flow.w-100 .allimages a:nth-child(17) {
  grid-area: seventeen;
}

.bottom-btn {
  margin-top: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bottom-btn .c-btn {
  color: #000;
  border-color: #000;
}

.bottom-btn .c-btn:hover {
  color: #fff;
  background-color: #000;
}

.innerbanner-flow.w-100 .maintitle i {
  color: #000;
  text-align: center;
  font-family: 'Financier Display';
  font-size: var(--fs-36);
  font-style: italic;
  font-weight: 400;
  line-height: var(--lh-42);
  /* 116.667% */
  text-align: center;
  display: block;
  margin-bottom: 25px;
}

header.custom.active span.toogle {
  filter: invert(0);
}

/* conatct us css start */
.innerbanner-flow.w-100.contact .maintitle i {
  max-width: 805px;
  width: 100%;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  gap: 85px;
  justify-content: center;
}

.form-contact {
  max-width: 800px;
  width: 100%;
}

.form-contact .inputfileds {
  display: flex;
  justify-content: center;
  gap: 17px;
  width: 100%;
  max-width: 100%;
  align-items: center;
  padding-bottom: 24px;
}

.form-contact .fields {
  width: 50%;
}

.form-contact .inputfileds label {
  color: #0D0D0D;
  font-family: Roboto;
  font-size: var(--fs-16);
  margin-bottom: 5px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.form-contact .inputfileds input {
  border: 1px solid #0D0D0D;
  color: #000;
  font-size: var(--fs-16);
  padding: 8px;
  height: 42px;
}

.form-contact .inputfileds-text textarea {
  width: 100%;
  display: block;
  height: 100px;
  border: 1px solid #0D0D0D;
  padding: 8px;
  color: #000;
  font-size: var(--fs-16);
  font-weight: 400;
}

.save {
  padding-top: 45px;
  padding-bottom: 68px;
}

.save input {
  max-width: 212px;
  width: 100%;
  height: 54px;
  background-color: #fff;
  color: #000;
  font-family: Roboto;
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-24);
  /* 150% */
  border: 1px solid #000;
  cursor: pointer;
  transition: 0.3s ease-in;
}

.save input:hover {
  background-color: #000;
  color: #fff;
}

.info p {
  max-width: 312px;
  width: 100%;
  margin-bottom: 17px;
  color: #111;
  font-family: Roboto;
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-29);
  /* 135% */
  text-transform: capitalize;
}

.info a {
  display: block;
  width: fit-content;
  margin-bottom: 17px;
  color: #000;
  font-family: Roboto;
  font-size: var(--fs-25);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.info ul {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 11px;
}

.info ul li a {
  margin: 0px;
}

.innerbanner-flow.w-100 .allimages a,
.innerbanner-flow.w-100 .allimages a img {
  height: 100%;
}

/* // */


/* LIGHT BOOK CSS  */
span.lb-number {
  display: none !important;
}

span.lb-caption {
  font-size: 15px !important;
}

.lb-data {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}


div#lightboxOverlay {
  max-width: 100% !important;
  width: 100% !important;
}

.lightbox {
  position: fixed;
  top: 50% !important;
  max-width: fit-content !important;
  width: 100%;
  margin: 0 auto !important;
  text-align: center;
  left: 50% !important;
  transform: translate(-50%, -50%);
  max-width: fit-content !important;
  margin: 0 auto !important;
}

.lb-closeContainer {
  position: fixed;
  top: -25px;
  right: -20px;
  background: rgba(151, 0, 0, .781);
  padding: 10px;
  border-radius: 50%;
  z-index: 11111 !important;
}

.lb-nav a.lb-next,
.lb-nav a.lb-prev {
  opacity: 1;
}

.lb-data .lb-close {
  width: 15px;
  height: 15px;
  background-size: contain;
}

/* LIGHT BOOK CSS END */


/* about us css */

.innerbanner-flow.w-100.aboutus {
  background: #F2F2F2;
}

.mainimag {
  width: fit-content;
  margin: 0 auto;
  margin-top: 40px;
}

.innerbanner-flow.w-100.aboutus .maintitle p {
  max-width: 1196px;
}

.innerbanner-flow.w-100.aboutus .maintitle {
  padding-bottom: 0px;
}

.innerbanner-flow.w-100.aboutus {
  padding-bottom: 50px;
}

.mainimag img {
  height: 100%;
}

/* about us section */
.aboutus-section {
  padding: 78px 0px;
}

.main-about-us-content {
  gap: 58px;
  display: flex;
  justify-content: center;
}

.about-content {
  max-width: 753px;
  width: 100%;
}

.main-images {
  max-width: 757px;
  width: 100%;
}

.main-images .fs-70 {
  margin-bottom: 30px;
}

.main-images p {
  color: #0D0D0D;
  font-family: Roboto;
  font-size: var(--fs-18);
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-29);
  /* 150% */
}

.fs-38 {
  color: #000;
  /*   font-family: 'Financier Display'; */
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 30px;
  margin-bottom: 18px;
}

.brand.inner {
  background-color: transparent;
}

.brand.inner .fs-50 {
  text-align: center;
  padding-bottom: 45px;
}

.abbout-contact {
  display: flex;
}

.contact-information-fields,
.contact-infromation {
  width: 50%;
}

.contact-information-fields {
  background: #F2F2F2;
  padding-left: 98px;
  padding-top: 143px;
  padding-bottom: 143px;
}

.about-input-fleds {
  max-width: 480px;
  width: 100%;
  padding-bottom: 30px;
}

.about-input-fleds label {
  color: #000;
  font-family: Roboto;
  font-size: var(--fs-18);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-bottom: 10px;
}

.about-input-fleds textarea,
.about-input-fleds input {
  border: 1px solid #B8B8B8;
  outline: none;
  height: 42px;
  background-color: transparent;
  padding: 0px 8px;
  font-size: var(--fs-18);
}

.about-input-fleds textarea {
  height: 80px;
}

.form .save {
  padding: 0px;
  padding-top: 10px;
}

.form .save input {
  background-color: transparent;
}

.information-about-us {
  display: block;
  margin-left: auto;
  width: fit-content;
}

.contact-infromation {
  padding: 143px 112px 143px 0px;
}

.information-about-us img {
  display: block;
  margin-left: auto;
}

.information-about-us p {
  color: #111;
  text-align: right;
  font-family: Roboto;
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
  /* 135% */
  text-transform: capitalize;
  max-width: 330px;
  width: 100%;
  margin-left: auto;
  padding-bottom: 17px;
}

.information-about-us a {
  display: block;
  margin-left: auto;
  width: fit-content;
  color: #787878;
  text-align: right;
  font-family: Roboto;
  font-size: var(--fs-25);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 13px;
}

.information-about-us ul {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  padding-top: 19px;
}

.information-about-us .fs-50 {
  font-family: Roboto;
  text-align: right;
  margin-top: 32px;
  margin-bottom: 3px;
}

.information-about-us .fs-78 {
  color: #000;
  text-align: right;
  font-family: 'Financier Display';
  font-size: 78px;
  font-style: normal;
  font-weight: 500;
  line-height: 70px;
  /* 89.744% */
  margin-bottom: 22px;
}

.about-content p {
  margin-bottom: 10px;
}

.form .save input:hover {
  background-color: #000;
}

.service p {
  color: #000;
}

.service {
  transition: 0.3s ease-in;
  margin: 15px 0px;
}

.service:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/* bug solve */

.contact-info ul li a {
  text-transform: none;
}

.insta .fs-54 {
  font-family: 'Financier Display';

}

.toparrowdata {
  position: fixed;
  bottom: 50px;
  right: 60px;
  z-index: 99;
  cursor: pointer;
  display: none;
}