.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;
}

@font-face {
  font-family: "Retro Signature";
  src: url("../font/RetroSignatureRegular.woff2") format("woff2"),
    url("../font/RetroSignatureRegular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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;
}
/* custom font */
@font-face {
  font-family: "Arquitecta";
  src: url("../font/Arquitecta.woff2") format("woff2"),
    url("../font/Arquitecta.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Arquitecta";
  src: url("../font/ArquitectaBlack.woff2") format("woff2"),
    url("../font/ArquitectaBlack.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Arquitecta";
  src: url("../font/ArquitectaLight.woff2") format("woff2"),
    url("../font/ArquitectaLight.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Arquitecta";
  src: url("../font/ArquitectaBold.woff2") format("woff2"),
    url("../font/ArquitectaBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Arquitecta";
  src: url("../font/ArquitectaThin.woff2") format("woff2"),
    url("../font/ArquitectaThin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Arquitecta";
  src: url("../font/ArquitectaMedium.woff2") format("woff2"),
    url("../font/ArquitectaMedium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Arquitecta Book";
  src: url("../font/ArquitectaBook.woff2") format("woff2"),
    url("../font/ArquitectaBook.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Arquitecta";
  src: url("../font/ArquitectaHeavy.woff2") format("woff2"),
    url("../font/ArquitectaHeavy.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* font-family: 'Futura Std'; */

:root {
  --fs-20: 20px;
  --fs-16: 16px;
  --fs-18: 18px;
  --fs-28: 28px;
  --fs-64: 64px;
  --fs-60: 60px;
  --fs-30: 30px;
  --fs-25: 25px;
  --fs-50: 55px;
  --fs-40: 40px;
  --text-black: #000;
  --text-white: #fff;
}

p {
  color: #000;
  font-family: Arquitecta;
  font-size: var(--fs-30);
  font-style: normal;
  font-weight: 450;
  line-height: 32px; /* 106.667% */
}

/* === custom css start ==== */

/* header css start */

.custom_header {
  padding: 15px 0px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 150;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.mt {
  margin-top: 157px;
}
.custom_header .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.custom_header .container ul {
  display: flex;
  gap: 30px;
}
.custom_header .container ul li a {
  color: #000;
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
  transition: 0.3s ease-in;
}
.custom_header .container ul li:nth-child(1):hover a{
  color: var(--Snack, #F88D2B);

}
.custom_header .container ul li:nth-child(2):hover a{
  color: var(--Merch, #A25EB5);

}
.custom_header .container ul li:nth-child(3):hover a{
  color: var(--Equip, #3BBFAD);

}
.custom_header .container ul li:nth-child(4):hover a{
  color: var(--Pack, #3CB4E5);

}
.login_user {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
span.tooglebtn {
  position: relative;
  width: 30px;
  height: 30px;
  display: none;
  cursor: pointer;
}
span.tooglebtn img {
  position: absolute;
  left: 0;
  top: 0;
  left: 0;
  transition: 0.3s ease-in;
}
header.custom_header.active span.tooglebtn img.open {
  opacity: 0;
}
header.custom_header.active span.tooglebtn img.closemenu {
  opacity: 1;
}
/* header css end */

/* footer css start */
.main-foooter {
  background: rgba(245, 179, 53, 0.2);
  padding: 35px 0px 35px 0px;
  position: relative;
}
.line {
  position: absolute;
  top: -28px;
  width: 100%;
  left: 0;
  z-index: 9;
}
.line img {
  width: 100%;
}
.end_title p {
  font-size: var(--fs-20);
  color: #000;
  font-weight: 400;
  line-height: 31px; /* 172.222% */
  text-align: center;
}
.end_title p a {
  color: #000;
}
.mainfooter {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.contact_form {
  max-width: 434px;
  width: 100%;
}
.quicklink {
  max-width: 175px;
  width: 100%;
}
.footerlogo {
  max-width: 255px;
  width: 100%;
}
.main-foooter h3 {
  color: #000;

  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.main-foooter form {
  padding-top: 23px;
}
.inputfileds textarea,
.inputfileds input {
  border: 1px solid rgba(0, 0, 0);
  outline: none;
  color: #000;

  font-size: var(--fs-18);
  padding: 13px 16px;
  font-style: normal;
  height: 43px;
  font-weight: 400;
  background-color: transparent;
}
.inputfileds textarea {
  height: 90px;
}
.inputfileds {
  margin-bottom: 12px;
}
::placeholder {
  color: #000;
}
.save input {
  border: none;
  width: 100%;
  height: 100%;
  outline: none;
  background-color: transparent;
  color: #000;
  text-align: center;
  font-family: Arquitecta;
  font-size: var(--fs-30);
  font-style: normal;
  font-weight: 900;
  transition: 0.3s ease-in;
  cursor: pointer;
}

.save:hover input {
  color: var(--Snack, #f88d2b);
}
.save {
  height: 63px;
  width: 180px;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  background-size: cover;
}
.quicklink ul {
  padding-top: 27px;
}
.quicklink ul li a {
  color: #000;

  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 194.444% */
}
.footerlogo p {
  color: #000;

  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 400;
  line-height: 27px; /* 150% */
  text-align: left;
}
ul.sociallinks {
  display: flex;
  gap: 20px;
  align-items: center;
  padding-top: 15px;
}
ul.contactinfo li a,
ul.contactinfo li {
  color: #000;

  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 127.778% */
}
ul.contactinfo li a {
  font-weight: 500;
}
ul.contactinfo {
  padding-top: 15px;
}
ul.contactinfo li {
  padding-bottom: 4px;
}
/* footer css end */
/* loader css start */
section.loder {
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #eeeeee;
  z-index: 200;
  top: 0;
  left: 0;
}
section.loder.remove {
  animation: animate 5s ease-in;
  display: none;
}
@keyframes animate {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* loader css start */

/* hero section start */

.hero {
  height: 790px;
  position: relative;
}
span.right,
span.left {
  height: 100%;
  background: var(--Snack, #f88d2b);
  position: absolute;
  content: "";
  top: 0px;
  transition: 1.5s ease-in;
  width: 0px;
  display: block;
}
span.right {
  background: var(--Snack-Light, #fcc695);
  right: 0;
  left: auto;
}

.hero.active span.right,
.hero.active span.left {
  width: 50%;
}

.swiper_slider_data {
  width: 100%;
  height: 100%;
}
.main-hero {
  display: flex;
  height: 100%;
  position: relative;
}
.product-img,
.mySwiper {
  height: 100%;
}
.main-hero .left-content,
.main-hero .right-content {
  width: 50%;
  position: relative;
}
.product-img {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-content: center;
}
.c_btn {
  height: 63px;
  width: 178px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  color: #000;
  text-align: center;
  font-family: Arquitecta;
  font-size: var(--fs-30);
  font-style: normal;
  font-weight: 900;
  line-height: 32px; /* 106.667% */
  transition: 0.3s ease-in;
  background-size: 100% 100%;
}
.c_btn:hover {
  color: var(--Snack, #f88d2b);
}
section.package-section .c_btn:hover {
  color: var(--Pack, #3cb4e5);
}
.package-section.control .c_btn:hover {
  color: var(--Equip, #3bbfad);
}
.package-section.premium .c_btn:hover {
  color: var(--Merch, #a25eb5);
}
.package-section.snacks .c_btn:hover {
  color: var(--Snack, #f88d2b);
}

.hero_content {
  position: relative;
  z-index: 1;
  max-width: 665px;
  width: 100%;
  height: 540px;
  padding: 0px 26px;
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.hero_content .six-zero {
  max-width: 569px;
  width: 100%;
  padding-bottom: 5px;
  margin: 0 auto;
}
.six-zero {
  color: #fff;
  text-align: center;
  font-family: Arquitecta;
  font-size: var(--fs-64);
  font-style: normal;
  font-weight: 950;
  line-height: 60px; /* 100% */
  text-transform: uppercase;
}
.hero_content p {
  max-width: 100%;
  width: 100%;
  color: #fff;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  font-family: Arquitecta;
  font-size: var(--fs-28);
  font-style: normal;
  font-weight: 450;
  line-height: 30px; /* 107.143% */
}
.left-content {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero_content a {
  position: absolute;
  bottom: -29px;
  left: 50%;
  transform: translateX(-50%);
}
.color {
  width: 87%;
  height: 100%;
  display: block;
  position: absolute;
  top: -43px;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
}
.slider_logo {
  position: absolute;
  bottom: 38px;
  left: 70px;
}

section.hero .swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 38px !important;
  background-repeat: no-repeat;
}
section.hero .mySwiper .swiper-pagination span {
  width: 22px;
  height: 22px;
  background-color: transparent;
}
/* about section start */

.about_us {
  padding-top: 135px;
  padding-bottom: 87px;
  position: relative;
}
.about-content {
  display: flex;
  gap: 75px;
  justify-content: center;
}
.about-main-content {
  max-width: 848px;
  width: 100%;
}
.about-main-content p {
  font-weight: 400;
  text-align: left;
  padding-top: 26px;
  padding-bottom: 57px;
}
.three-zero {
  color: #000;
  font-family: Arquitecta;
  font-size: var(--fs-30);
  font-style: normal;
  font-weight: 950;
  line-height: 50px; /* 166.667% */
  text-transform: uppercase;
}
/* news latter start */

.newsllater {
  padding-top: 60px;
  position: relative;
  padding-bottom: 87px;
}

.six-zero-60 {
  color: #000;
  text-align: center;

  font-size: var(--fs-60);
  font-style: normal;
  padding-bottom: 28px;
  font-weight: 700;
  line-height: 70px; /* 116.667% */
}
.main-news-latter p {
  color: #000;
  text-align: center;

  font-size: var(--fs-25);
  font-style: normal;
  font-weight: 500;
  line-height: 35px; /* 140% */
  margin: 0 auto;
  max-width: 724px;
  padding-bottom: 25px;
}
.inputfileds {
  max-width: 302px;
  width: 100%;
}
.inputfileds input {
  color: rgba(0, 0, 0);

  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 400;
  line-height: 35px; /* 175% */
  border: none;
  outline: none;
  padding-left: 0px;
  border-bottom: 1px solid #000;
}
.main-fields {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  padding-bottom: 50px;
}
.main-form .save {
  margin: 0 auto;
}
/* main package start */

.mainpackage {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
}
.package-section {
  padding-bottom: 70px;
  padding-top: 90px;
  background-size: cover;
  background-repeat: no-repeat;
}
.package-section .hero_content {
  padding-top: 30px;
  padding-bottom: 53px;
  padding-left: 25px;
  padding-right: 25px;
}
.package-section .hero_content .logo {
  padding-bottom: 25px;
}
.package-section .hero_content .six-zero-60 {
  color: #fff;
  font-family: "Arquitecta";
  text-transform: uppercase;
  padding-bottom: 15px;
}
.package-section .hero_content {
  height: auto;
}
.package-section {
  position: relative;
}
.package-section .hero_content {
  background: var(--Pack-Hover, #77cbed);
}
.package-section.control {
  background: #3bbfad;
}
.package-section.control .hero_content {
  background: var(--Equip-Hover, #76d3c6);
}

.package-section.premium .hero_content {
  background: var(--Merch-Hover, #be8fcc);
}
.package-section.snacks {
  background: var(--Snack, #f88d2b);
}
.package-section.snacks .hero_content {
  background: var(--Snack-Light, #fcc695);
}
.package-section.snacks .hero_content .six-zero-60 {
  max-width: 590px;
  margin: 0 auto;
}
/* partners css start */
.partners {
  padding-top: 87px;
  padding-bottom: 120px;
  position: relative;
}
.partners-link {
  display: flex;
  gap: 55px;
  align-items: center;
  justify-content: center;
}
.four-zero {
  color: #000;
  text-align: center;

  font-size: var(--fs-40);
  font-style: normal;
  font-weight: 700;
  line-height: 50px; /* 125% */
  text-transform: uppercase;
}
.partners .four-zero {
  padding-bottom: 70px;
}
/* login page css start */
.login-banner {
  padding-top: 65px;
  padding-bottom: 52px;
  background: var(--Snack, #f88d2b);
}
.mainconent-login {
  max-width: 1052px;
  width: 100%;
  margin: 0 auto;
}
.mainconent-login p {
  color: #fff;
  text-align: center;
}
.five-zero {
  color: #fff;
  text-align: center;

  font-size: var(--fs-50);
  font-style: normal;
  font-weight: 700;
  line-height: 57px; /* 114% */
  text-transform: uppercase;
}

.mainconent-login .five-zero {
  max-width: 875px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 16px;
}
/* login signup page css start */

.login-signup {
  background: var(--Snack-Light, #fcc695);
  position: relative;
  padding-bottom: 88px;
  padding-top: 62px;

}
.active-value ul {
  display: flex;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 35px;
}
.active-value ul li {
  color: var(--Logo-Black, #000);
  opacity: 0.3;
  font-size: var(--fs-50);
  font-style: normal;
  font-weight: 700;
  line-height: 53px; /* 106% */
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s ease-in;
}
.active-value ul li.active,
.active-value ul li.active2 {
  opacity: 1;
}
.form {
  max-width: 1085px;
  width: 100%;
  margin: 0 auto;
  background: var(--Snack, #f88d2b);
  padding: 42px 67px;
  display: none;
}
.trem p {
  color: #fff;

  font-size: var(--fs-18);
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: -0.176px;
  text-align: left;
}
.trem p a {
  color: #000;
}
.form .save {
  margin: 0 auto;
  margin-top: 28px;
}
.main-inputfileds {
  display: flex;
  gap: 40px;
  padding-bottom: 34px;
}
.main-inputfileds .inputfileds-data {
  width: 50%;
}
.main-inputfileds .inputfileds-data input {
  height: 51px;
  border: none;
  outline: none;
  font-size: var(--fs-18);
  padding: 8px;
}
.main-inputfileds .inputfileds-data label {
  color: #fff;

  font-size: var(--fs-30);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.form.active {
  display: block;
  animation: animate 0.5s ease-in;
}
div#tab2 .main-inputfileds {
  padding-bottom: 25px;
}

body {
  overflow-x: hidden;
}
@keyframes animate {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.active-value ul.active {
  flex-direction: row-reverse;
}
/* main candysnacks-sec main page */
.candysnacks-sec.main .hero_content {
  max-width: 500px;
  min-height: 530px;
}
/* mainpoup-section poup section */
.mainpoup-section {
  background: #4f2170;
  padding-top: 75px;
  padding-bottom: 100px;
  position: relative;
}
.mainpoup-section .line {
  top: -25px;
}
.mainlogo-data {
  margin: 0 auto;
  padding-bottom: 100px;
  margin: 0 auto;
  display: block;
  display: flex;
  justify-content: center;
}
.popup-section {
  display: flex;
  gap: 39px;
  justify-content: center;
}
.popup-section .carts {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 365px;
  height: 365px;
  gap: 50px;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
}
.popup-section .carts span {
  color: #fff;
  text-align: center;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-family: "Futura Std";
  font-size: var(--fs-30);
  font-style: normal;
  font-weight: 700;
  line-height: 50px; /* 166.667% */
  text-transform: uppercase;
}
.mainimg {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background: #ffffffbf;
}
.container-flow {
  background-repeat: no-repeat;
  background-size: 100% 100%;
  max-width: 1382px;
  width: 100%;
  padding-top: 27px;
  padding-left: 15px;
  padding-right: 20px;
  padding-bottom: 27px;
  position: relative;
  filter: drop-shadow(10px 10px 0px #878787);

}
.container-flow .close-menu {
  position: absolute;
  right: 30px;
  cursor: pointer;
}
.pricing-logo {
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
  max-width: 1300px;
}
.main-title {
  text-align: center;
  padding-top: 20px;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  border-top: 1px solid #fff;
}
.main-title span {
  color: #fff;
  text-align: center;
  font-size: var(--fs-40);
  font-style: normal;
  font-weight: 700;
  line-height: 57px; /* 190% */
  text-transform: uppercase;
  padding-bottom: 30px;
  display: block;
}
.responsive-table table {
  width: 100%;
}
.responsive-table table thead {
  background-color: #000;
}
.responsive-table thead tr th {
  color: #fff;
  text-align: center;
  font-family: Arquitecta;
  font-size: var(--fs-18);
  font-style: normal;
  font-weight: 950;
  line-height: normal;
  text-transform: uppercase;
  padding-top: 20px;
  padding-bottom: 20px;
}
.callspan hr {
  margin: 0;
}
.main-span {
  display: flex;
  justify-content: center;
  max-width: 280px;
  width: 100%;
  padding-top: 6px;
  border-top: 1px solid #fff;
  margin-top: 7px;
  gap: 50px;
  align-items: center;
}
.callspan {
  max-width: 280px;
  width: 100%;
  margin: 0 auto;
}
.callspan span,
.main-span span {
  font-weight: 900;
}
.main-span span:first-child {
  color: #f88d2b;
}
.main-span span:nth-child(2) {
  color: #3cb4e5;
}
.main-span span:nth-child(3) {
  color: #4caf50;
}

.responsive-table tbody tr:nth-child(odd) td .fileds {
  background: #a25eb5;
}
.fileds {
  color: #fff;
  font-family: Arquitecta;
  font-size: var(--fs-20);
  height: 51px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0px 5px;
  padding-left: 10px;
  padding-right: 10px;
}
.responsive-table tbody tr td .fileds.fields-3 {
  background-color: transparent;
  gap: 50px;
  justify-content: center;
  text-align: center;
  padding: 0px;
}
.responsive-table tbody tr td .fileds.fields-3 .fieldsdata {
  color: #f88d2b;
  text-align: center;
  font-family: Arquitecta;
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 950;
  line-height: normal;
  text-transform: uppercase;
}
.responsive-table tbody tr td .fileds.fields-3 .fieldsdata:nth-child(2) {
  color: #3cb4e5;
}
.responsive-table tbody tr td .fileds.fields-3 .fieldsdata:nth-child(3) {
  color: #4caf50;
}
.responsive-table tbody tr:nth-child(1) td .fileds {
  margin-top: 18px;
}
.responsive-table {
  height: 435px;
  overflow-y: scroll;
}
.main-downloadlink a {
  max-width: 253px;
  margin: 0 auto;
  margin-top: 37px;
  width: 100%;
}
.announcements {
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 35px;
}
.maintitl-of-announcment p {
  color: #fff;
  text-align: center;
  font-size: var(--fs-30);
  font-style: normal;
  font-weight: 700;
  line-height: 43px;
  text-transform: uppercase;
  max-width: 595px;
  margin: 0 auto;
}
.announcements-main {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
.maincontent {
  position: absolute;
  left: -200px;
  bottom: -10px;
}
.maincontent span {
  display: block;
}
span.time-day {
  color: #fff;
  text-align: center;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
  font-size: 22px;
  font-style: normal;
  font-weight: 900;
  line-height: 32px; /* 145.455% */
  padding: 13px 20px;
  border-radius: 100px;
  background: #ed2129;
  max-width: 312px;
  width: 100%;
  margin-top: 11px;
}
span.small {
  text-align: center;
  color: #fff;
  -webkit-text-stroke: 2px #ed2129;
}
.mafcturnibg-secs.Merchandise .five-zero {
  color: var(--Merch, #a25eb5);
}
.grid-logo-video {
  margin: 0 auto;
  margin-top: 66px;
  max-width: 1065px;
  width: 100%;
}
.merchandise .login-banner {
  background: var(--Merch, #a25eb5);
}
.merchandise .login-signup {
  background: var(--Merch-Light, #d1afda);
}
.merchandise .form {
  background: var(--Merch, #a25eb5);
}
html,
body {
  overflow-x: hidden;
}
.main-downloadlink.main {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
  margin-top: 20px;
}
.main-downloadlink.main a {
  margin: 0;
}
span.large {
  color: #fff;
  -webkit-text-stroke: 3px #ed2129;
  color: white;
  font-family: Arquitecta;
  font-size: 70px;
  font-style: normal;
  font-weight: 950;
  line-height: normal;
  text-transform: uppercase;
}
span.small {
  color: #fff;
  -webkit-text-stroke-width: 3;
  -webkit-text-stroke-color: #ed2129;
  font-family: Arquitecta;
  font-size: 35px;
  font-style: normal;
  font-weight: 950;
  line-height: normal;
  text-transform: uppercase;
  text-align: left;
}
.announcements-main.slider-data {
  width: 100%;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after,
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  display: none !important;
}
.popup-img img {
  display: block;
  margin: 0 auto;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0 !important;
}
.announcements-main-form {
  background-color: #fff;
  padding-left: 39px;
  padding-right: 39px;
  border-radius: 15px;
  padding-bottom: 39px;
}
.table-responsive.main tr th {
  height: 56px;
  color: #000;
  font-family: Arquitecta;
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 950;
  line-height: 32px; /* 160% */
  text-transform: uppercase;
  border-right: 1px solid #c7c7c7;
  padding-left: 20px;
  border-bottom: 1px solid #000;
}
.table-responsive.main table {
  width: 100%;
}
.table-responsive.main tr th:last-child {
  border-right: none;
}
.table-responsive.main select,
.table-responsive.main input {
  height: 40px;
  border: 1px solid #c7c7c7;
  color: #000;
  font-family: Arquitecta;
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 450;
  padding: 0px 10px;
  line-height: 32px; /* 160% */
  appearance: none;
  background-position: 95% center;
  background-repeat: no-repeat;
}
.table-responsive.main select {
  cursor: pointer;
}
.table-responsive.main tr:first-child td {
  height: 83px;
}
.table-responsive.main tr td {
  border-right: 1px solid #c7c7c7;
  padding-left: 20px;
  height: 40px;
  padding-right: 20px;
  border-bottom: 1px solid #c7c7c7;
  color: #000;
  font-family: Arquitecta;
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 450;
  line-height: 32px; /* 160% */
}
.table-responsive.main tr td:last-child {
  border-right: 0px;
}
span.remove,
span.add-more {
  color: #071d49;
  font-family: Arquitecta;
  font-size: var(--fs-20);
  font-style: normal;
  cursor: pointer;
  font-weight: 700;
  line-height: 32px; /* 145.455% */
}
.table-responsive.added {
  margin-top: 20px;
}
.table-responsive.maintable tbody td {
  border-top: 1px solid #c7c7c7;
  border-bottom: 1px solid #c7c7c7;
  border-right: 1px solid #c7c7c7;
  background: #fff;
  height: 40px;
  color: #000;
  font-family: Arquitecta;
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 450;
  line-height: 32px; /* 160% */
  text-align: center;
}
.total-data {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 23px 0px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  margin-top: 20px;
}
.total-data span {
  color: #000;
  text-align: right;
  font-family: Arquitecta;
  font-size: var(--fs-25);
  font-style: normal;
  font-weight: 900;
  line-height: 32px; /* 128% */
  text-transform: uppercase;
}
.fulldetails span {
  color: #000;
  font-family: Arquitecta;
  font-size: 20px;
  font-style: normal;
  font-weight: 950;
  line-height: 32px; /* 160% */
  text-transform: uppercase;
}
.fulldetails .title {
  border-bottom: 1px solid #000;
  padding: 15px 0px;
  margin-bottom: 45px;
}
.form-fiels {
  max-width: 1030px;
  width: 100%;
  margin: 0 auto;
  gap: 45px;
  display: flex;
}
.form-fiels .inputfileds {
  width: 100%;
  padding-bottom: 5px;
  max-width: 50%;
}
.form-fiels .inputfileds input {
  width: 100%;
}
.form-fiels.w-100 .inputfileds {
  width: 100%;
  max-width: 100%;
}
.form-fiels.w-100 .inputfileds input {
  padding-bottom: 8px;
  padding-left: 5px;
}
.form-message textarea {
  max-width: 1030px;
  width: 100%;
  margin: 0 auto;
  border: none;
  border-bottom: 1px solid #000;
  margin: 0 auto;
  display: block;
  margin-top: 10px;
  color: rgba(0, 0, 0);
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 400;
  border: none;
  outline: none;
  padding-left: 0px;
  border-bottom: 1px solid #000;
  height: 70px;
}
.main-downloadlink.main.btn-f {
  max-width: 260px;
  width: 100%;
  margin: 0 auto;
  margin-top: 35px;
}
.main-downloadlink.main.btn-f .save {
  margin: 0px;
  width: 100%;
  height: 65px;
}
.main-title.form-data {
  padding-top: 0px;
  padding-bottom: 35px;
  border-bottom: 1px solid #fff;
  border-top: none;
  margin-bottom: 25px;
}
.main-title.form-data span {
  padding-bottom: 0px;
}
.table-responsive.main{
  height: 410px;
}
.announcements-main-form{
  height: 580px;
  overflow-y: auto;
}
.table-responsive.main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.save{
  background-size: 100% 100%;
}
.mainimg{
  display: none;
}
.mainimg.active{
  display: flex;
  animation: 0.8s ease-in animate;
}
.closepopup{
  position: absolute;
  width: 100%;
  height: 100%;

}
@keyframes animate {
  0% {
    opacity: 0;
    -webkit-clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%, 50% 50%, 50% 50%, 50% 50%, 50% 50%);
    clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%, 50% 50%, 50% 50%, 50% 50%, 50% 50%);
}
100% {
    opacity: 1;
    -webkit-clip-path: polygon(0 0, 50% 0, 100% 0, 100% 50%, 100% 100%, 50% 100%, 0 100%, 0 50%);
    clip-path: polygon(0 0, 50% 0, 100% 0, 100% 50%, 100% 100%, 50% 100%, 0 100%, 0 50%);
}
}
/* body.merchandise css start */
.merchandise .product-img{
  background: var(--Merch-Light, #D1AFDA);
}
.merchandise  .candysnacks-sec.main .left-content{
  background: var(--Merch, #A25EB5) !important;
}
.merchandise .hero_content{
  background: var(--Merch-Hover, #BE8FCC) !important;

}
.merchandise .mafcturnibg-secs .five-zero{
  color: var(--Merch, #A25EB5);

}
.merchandise  .mainpoup-section{
  background: #44797B;
}
.merchandise span.time-day{
  background: #011E41;

}
.merchandise span.large{
  -webkit-text-stroke: 3px #011E41;
}
.merchandise span.small{
  -webkit-text-stroke: 2px #011E41;
}
.mainimg.w-100 .container-flow{
  max-width: 98%;
  width: 100%;
}
td.text-center{
  color: #FFF;
  text-align: center;
  font-family: "Futura Std";
  font-size: var(--fs-25);
  font-style: normal;
  font-weight: 700;
  line-height: 26px; /* 104% */
  height: 76px;
}
.mainimg.w-100 .main-title ,
.mainimg.w-100 .pricing-logo{
  max-width: 1806px;
  width: 100%;
  margin: 0 auto;
}
tr.bg-white {
  background: #FFF;
}
tr.bg-white td{
  height: 48px;
  color: var(--Logo-Black, #000);
  text-align: center;
  font-family: Arquitecta;
  font-size: var(--fs-18);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-bottom: 1px solid#43797B;
  border-right: 1px solid#43797B;
}
tr.bg-white td:nth-child(3){
  padding-left: 55px;
  padding-right: 55px;
}
/* .merchandise  .mainimg  .c_btn:hover{
  color: #44797B;

} */
.candysnacks-sec.main .right-content img{
max-width: 790px;
}

.merchandise .candysnacks-sec.main .right-content{
  background: var(--Merch-Light, #D1AFDA) !important;
}
footer.main-foooter .inputfileds{
  max-width: 100%;
}
.custom_header .container ul li.curent-menu:nth-child(1) a{
  color: var(--Snack, #F88D2B);
}
.custom_header .container ul li.curent-menu:nth-child(2) a{
  color: var(--Merch, #A25EB5);
}
.custom_header .container ul li.curent-menu:nth-child(3) a{
  color: var(--Equip, #3BBFAD);
}
.custom_header .container ul li.curent-menu:nth-child(4) a{
  color: var(--Pack, #3CB4E5);
}
.merchandise .right-content.normal  .product-img{
background-color: transparent;
}

.merchandise .hero_content.normal{
  background: var(--Merch, #A25EB5) !important;
}
.topimg {
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  top: -26px;

}

.bottom-img {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -26px;
  transform: scale(-1);
}


.bottom-img svg,
.topimg svg {
  width: 100%;
}
.mondlezz-holder p {
  margin-bottom: 10px;
}
 /* .merchandise .c_btn:hover,
  .merchandise .save:hover input{
  color: var(--Merch, #a25eb5);
} */
/* === custom css end ==== */

.monlez-img span {
  display: block;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--Pack, #3CB4E5);
}
body.packing  .mafcturnibg-secs.Merchandise .five-zero{
  color: var(--Pack, #3CB4E5);

}
body.packing   .right-content.normal{
background-color: var(--Pack, #3CB4E5);
}
body.packing  .left-content .hero_content.normal{
  background-color: var(--Pack, #3CB4E5);

}

body.packing  .left-content{
  background: var(--Pack-Light, #9EDAF2);
}
body.packing .login-banner{
background-color: var(--Pack, #3CB4E5);

}
body.packing .login-signup{
  background-color: var(--Pack-Light, #9EDAF2);
}
body.packing .form{
  background-color: #3cb4e5b5;

}

.packing  section.mainpoup-section{
  background-color:  var(--Pack-Light, #9EDAF2);

}
.packing section.mafcturnibg-secs .five-zero{
  color: var(--Pack, #3CB4E5);

}
.left-content .hero_content,
.packing  .right-content{
  background: var(--Pack-Light, #9EDAF2);
}

.grid-logo-video{
  display: flex;
  align-items: flex-end;
  gap: 150px;
  justify-content: center;
}
.packing span.small{
  -webkit-text-stroke: 2px var(--Pack, #3CB4E5);
}
.packing span.large{
  -webkit-text-stroke: 3px var(--Pack, #3CB4E5);
}
.packing span.time-day{
  background: var(--Pack, #3CB4E5);
}
.packing .mainimg  a.c_btn{
  color: var(--Pack, #3CB4E5);

}

.about_us.inner p {
  padding-bottom: 15px;
  padding-top: 0px;
  font-size: var(--fs-20);
  line-height: 25px;
}
.about_us.inner  span{
  font-size: var(--fs-25);
  text-transform: uppercase;
  line-height: 38px;
  margin-bottom: 10px;
  display: block;
}
.about_us.inner{
padding: 80px 0px;
}
.equipment .right-content{
  background-color: var(--Equip, #3BBFAD);
}
.equipment .left-content{
background-color: var(--Equip-Light, #9DDFD6);
}

.equipment  section.candysnacks-sec .hero_content{
  background-color: var(--Equip, #3BBFAD);

}
.equipment .mafcturnibg-secs.Merchandise .five-zero{
  color: var(--Equip, #3BBFAD);

}
.equipment .login-banner{
  background-color: var(--Equip, #3BBFAD);

}
.equipment  section.login-signup{
background-color: var(--Equip-Light, #9DDFD6);

}
.equipment  .form{
  background-color: var(--Equip, #3BBFAD);

} 
.equipment section.candysnacks-sec.invert .hero_content,
.equipment .candysnacks-sec.invert  .right-content{
  background-color: var(--Equip-Light, #9DDFD6);

}
.equipment .candysnacks-sec.invert  .left-content{
  background-color: var(--Equip, #3BBFAD);

}
.equipment section.mafcturnibg-secs .five-zero{
  color: var(--Equip, #3BBFAD);
}
.equipment  section.mainpoup-section{
  background-color: var(--Equip-Light, #9DDFD6);

}

.user-info{
  display: none;
}
.user-info.active{
  display: block;
}
.user-section{
  padding: 120px 0px;
}
.main-data{
  display: flex;
  justify-content: flex-start;
  gap: 50px;
  align-items: flex-start;
}
.main-data .tab-section {
  max-width: 250px;
  width: 100%;
}
.main-data .tab-section ul li {
  height: 63px;
  display: flex;
  align-items: center;
  max-width: 178px;
  width: 100%;
  margin-bottom: 20px;
  justify-content: center;
  text-transform: uppercase;
  transition: 0.3s ease-in;
  font-weight: 800;
  cursor: pointer;
  font-size: var(--fs-18);
}
.main-data .tab-section ul li:hover{
  color: var(--Snack, #f88d2b);

}

li.active{
  color: var(--Snack, #f88d2b);
}

/* main start */



:root {
  --color-black: #41423d;
  --color-neutral-100: #f5f4f0;
  --color-neutral: #dfddd0;
  --color-primary-100: #f0f7f5;
  --color-primary-200: #e0eeeb;
  --color-primary-300: #cfe5e0;
  --color-primary: #3f9783;
  --color-primary-500: #327969;
  --color-white: #fbfcfa;
  --text-font-family: 'Inter', sans-serif;
  --title-font-family: 'Lora', serif;
  --title-font-weight: 500;
}


.userinformation-data .topheading,
.main-header.grid h1 {
  color: var(--color-primary);
  font-size: 2.5rem;
  font-weight: var(--title-font-weight);
  text-transform: uppercase;
  margin: 0;
  font-weight: 600;
}

.user-section a {
  color: var(--color-primary);
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none;
}
.user-section a:hover { color: var(--color-primary-500); }

/*
  main
*/



.user-section main .content {
  margin: 0 auto;
  max-width: 1400px;
  width: 100%;
}

.user-section .main-header { margin: 0 0 2.5rem; }
.user-section .main-header.grid {
  align-items: center;
  display: grid;
  grid-auto-flow: column;
  justify-content: space-between;
}

/*
  buttons
*/

.user-section .button {
  background: var(--color-primary);
  border: 0;
  border-radius: .25rem;
  color: var(--color-white);
  cursor: pointer;
  font: inherit;
  font-weight: 500;
  height: 3rem;
  line-height: 3rem;
  padding: 0 2rem;

  /* grid */
  align-items: center;
  display: grid;
  gap: .75rem;
  grid-auto-flow: column;
}
.user-section .button:hover { background: var(--color-primary-500); }
.user-section .button i { font-size: 1.25rem; }

.user-section .button.icon {
  border-radius: 50%;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  width: 3rem;
}

.user-section .button.link {
  background: none;
  color: var(--color-primary);
  justify-content: start;
  padding: 0;
}
.user-section .button.link:hover { color: var(--color-primary-500); }
.user-section .button.link i { font-size: inherit; }

/*
  cards
*/

.user-section .card {
  border: 1px solid var(--color-neutral);
  border-radius: .25rem;
  background: var(--color-white);
  margin: 0 0 2.5rem;
  overflow: auto;
padding: 10px;
  width: 100%;
}

/*
  inputs
*/

.user-section .checkbox {
  background: var(--color-white);
  border: 1px solid var(--color-neutral);
  border-radius: .25rem;
  cursor: pointer;
  height: 1.5rem;
  position: relative;
  width: 1.5rem;
}

.user-section .checkbox input[type="checkbox"] {
  cursor: pointer;
  height: 0;
  opacity: 0;
  position: relative;
  width: 0;
}

.user-section .checkbox .checkmark::after {
  background: var(--color-primary);
  border: 0;
  border-radius: .25rem;
  color: var(--color-white);
  content: "\f00c";
  display: block;
  font-family: "Font Awesome 6 Free";
  font-size: .75rem;
  font-weight: 900;
  height: 1.5rem;
  width: 1.5rem;

  /* grid */
  display: grid;
  align-items: center;
  justify-content: center;

  /* position */
  position: absolute;
  left: -1px;
  top: -1px;
}
.user-section .checkbox .checkmark.minus::after { content: "\f068"; }
.user-section .checkbox .checkmark { display: none; }
.user-section .checkbox input[type="checkbox"]:checked ~ .checkmark { display: block; }

.user-section .select {
  background: var(--color-white);
  border: 1px solid var(--color-neutral);
  border-radius: .25rem;
  color: var(--color-black);
  display: inline-block;
  font: inherit;
  height: 3rem;
  margin: 0 1rem 0 0;
  padding: 0 1rem;
  position: relative;
  width: 12rem;
}

.user-section .select::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  height: 3rem;
  line-height: 3rem;
  padding: 0 1rem;
  position: absolute;
  right: 0;
  top: 0;
}

.user-section select {
  
  background-color: transparent;
  border: 0;
  cursor: inherit;
  font: inherit;
  height: 3rem;
  margin: 0;
  padding: 0 1rem 0 0;
  width: 100%;
}

.user-section input[type="number"],
.user-section input[type="text"] {
  background: var(--color-white);
  border: 1px solid var(--color-neutral);
  border-radius: .25rem;
  color: var(--color-black);
  display: inline-block;
  font: inherit;
  height: 3rem;
  margin: 0 .5rem;
  padding: 0 1rem;
  width: 5rem;
}

/*
  colors
*/

.colors {
  display: grid;
  justify-content: start;
  gap: 1.5rem;
  grid-auto-flow: column;
  margin: 2.5rem 0;
}

.color { border-radius: 50%; height: 4rem; width: 4rem; }
.color.black { background: var(--color-black); }
.color.neutral-100 { background: var(--color-neutral-100); border: 1px solid var(--color-neutral); }
.color.neutral { background: var(--color-neutral); }
.color.primary-100 { background: var(--color-primary-100); border: 1px solid var(--color-primary-300); }
.color.primary-200 { background: var(--color-primary-200); border: 1px solid var(--color-primary-300); }
.color.primary-300 { background: var(--color-primary-300); }
.color.primary { background: var(--color-primary); }
.color.primary-500 { background: var(--color-primary-500); }
.color.white { background: var(--color-white); border: 1px solid var(--color-neutral); }

/*
  paging
*/

.paging.grid {
  align-items: center;
  display: grid;
  gap: .75rem;
  grid-auto-flow: column;
}

.paging span { margin: 0 .75rem; }

/*
  table
*/

table { border-collapse: collapse; width: 100%; }
td, th {
  border-bottom: 1px solid var(--color-primary-300);
  font-size: 1rem;
  text-align: left;
  white-space: nowrap;
}
th { padding: 1.5rem 1rem; }
td { padding: 1rem; }

tbody tr { cursor: pointer; }
tbody tr.selected td { background: var(--color-primary-200); }
tbody tr:hover:not(.selected) td,
tbody tr.hover:not(.selected) td {
  background: var(--color-primary-100);
}

.table-footer, .table-header { font-size: .875rem; }
.table-footer { margin: -1.5rem 0 0; }
.table-header { margin: 0 0 1rem; }

.table-footer.grid,
.table-header.grid {
  align-items: center;
  display: grid;
  grid-auto-flow: column;
  justify-content: space-between;
}

.user-infromation {
  max-width: 100%;
  width: 100%;
}
.card tr th {
  padding: 15px 0px;
  font-size: var(--fs-20);
  line-height: 30px;
  text-transform: uppercase;
}
.card tbody tr td {
  font-size: var(--fs-18);
  line-height: 30px;
}
.table-footer.grid{
  padding-top: 30px;
}
section.table-footer.grid *{
  font-size: var(--fs-16);
}
.userinformation-data .topheading {
  background-color: var(--white);
  padding: 15px;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.userinformation-data form, .userinformation-data .info-data {
  background-color: #F7FAFC;
}
.userinformation-data form {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.userinformation-data form {
  padding: 15px;
}
.userinformation-data form, .userinformation-data .info-data {
  background-color: #F7FAFC;
}
.input-fileds {
  display: flex
;
  gap: 15px;
  align-items: center;
  margin-bottom: 15px;
}
.input-fileds .input-filed-data {
  width: 50%;
  display: flex
;
  gap: 8px;
  flex-direction: column;
}
.input-fileds .input-filed-data label {
  font-size: var(--fs-18);
  line-height: 20px;
  font-weight: 400;
  color: var(--normaltext);
  margin: 0px;
  text-transform: capitalize;
}
.user-section select,
.input-fileds .input-filed-data input {
  border: none;
  border: 1px solid #f4f4f4;
  border-radius: 5px;
  padding: 8px 20px;
  width: 100%;
  background-color: #fff;
  margin: 0px;
}

.userinformation-data .topheading h1{
  font-size: var(--fs-40);
  font-weight: 600;
}
.info-data p,
.userinformation-data form{
  padding: 15px;
}
.info-data p{
  padding-bottom: 0px;
  font-size: var(--fs-16);
}
.conatctinformation{
  padding: 10px 0px;
}
.user-section select{
  background-color: #fff;
}

.main-flow-border{
  border: 1px solid var(--color-neutral);
  border-radius: .25rem;
}
button#btnUpdate {
  height: 63px;
  display: flex;
  align-items: center;
  max-width: 178px;
  width: 100%;
  margin-bottom: 20px;
  justify-content: center;
  text-transform: uppercase;
  transition: 0.3s ease-in;
  font-weight: 800;
  cursor: pointer;
  font-size: var(--fs-18);
  margin-top: 40px;
  border: none;
  transition: 0.3s ease-in;

}
button#btnUpdate:hover{
  color: var(--Snack, #f88d2b);
}
.user-section .main-header.grid{
  margin-bottom: 10px;
}

.login_user a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.login_user a  span{
  font-size: var(--fs-18);
  font-weight: 500;
  color: #000;
}