@font-face {
  font-family: "cairo";
  src: url(../assets/fonts/Cairo-Black.ttf);
  font-weight: 900;
}
@font-face {
  font-family: "cairo";
  src: url(../assets/fonts/Cairo-ExtraBold.ttf);
  font-weight: 800;
}
@font-face {
  font-family: "cairo";
  src: url(../assets/fonts/Cairo-Bold.ttf);
  font-weight: 700;
}
@font-face {
  font-family: "cairo";
  src: url(../assets/fonts/Cairo-SemiBold.ttf);
  font-weight: 600;
}
@font-face {
  font-family: "cairo";
  src: url(../assets/fonts/Cairo-Medium.ttf);
  font-weight: 500;
}
@font-face {
  font-family: "cairo";
  src: url(../assets/fonts/Cairo-Regular.ttf);
  font-weight: 400;
}
@font-face {
  font-family: "cairo";
  src: url(../assets/fonts/Cairo-Light.ttf);
  font-weight: 300;
}
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  color: #ffffe7;
  background-color: #1e2d39;
}

ul {
  list-style-type: none;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, p {
  padding: 0;
}

a {
  color: #bfd8e2;
  font-size: 1.4rem;
}

::-webkit-scrollbar {
  width: 0.6rem;
}

::-webkit-scrollbar-track {
  background: #2d3e4c;
}

::-webkit-scrollbar-thumb {
  background: #457d95;
}

::-webkit-scrollbar-thumb:hover {
  background: #6098b0;
}

.bg-primary-50 {
  background-color: #f3fbff;
}

.bg-primary-200 {
  background-color: #bfd8e2;
}

.bg-primary-400 {
  background-color: #6098b0;
}

.bg-primary-500 {
  background-color: #457d95;
}

.bg-primary-700 {
  background-color: #355669;
}

.bg-primary-900 {
  background-color: #2d3e4c;
}

.bg-secondary-50 {
  background-color: #ffffe7;
}

.bg-secondary-100 {
  background-color: #f2f2d3;
}

.bg-secondary-200 {
  background-color: #fbdc6a;
}

.bg-secondary-700 {
  background-color: #efa619;
}

.bg-secondary-800 {
  background-color: #e89a44;
}

.bg-gray {
  background-color: #dadada;
}

.bg-light {
  background-color: #ffffe7;
}

.bg-dark {
  background-color: #4a4a4a;
}

.vr {
  display: inline-block;
  width: 1px;
  height: 3rem;
  background-color: #dadada;
  opacity: 0.3;
}

.mb-100 {
  margin-bottom: 10rem;
}

.mb-50 {
  margin-bottom: 5rem;
}

.vh-screen {
  min-height: calc(100vh - 105px);
}

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

.max-w-250 {
  max-width: 250px;
}

.max-w-500 {
  max-width: 500px;
}

.max-w-800 {
  max-width: 800px;
}

.max-w-992 {
  max-width: 992px;
}

.min-h-80vh {
  min-height: 80vh;
}

.hidden {
  display: none;
}

body {
  font-family: "cairo", sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
}

a {
  text-decoration: none;
}

input,
button,
textarea {
  font-family: inherit;
  font-size: inherit;
}

h1 {
  font-size: 4.8rem;
}

.text-primary-50 {
  color: #f3fbff;
}

.text-primary-100 {
  color: #ddebf0;
}

.text-primary-200 {
  color: #bfd8e2;
}

.text-primary-300 {
  color: #93bdcd;
}

.text-primary-400 {
  color: #6098b0;
}

.text-primary-500 {
  color: #457d95;
}

.text-primary-700 {
  color: #355669;
}

.text-primary-900 {
  color: #2d3e4c;
}

.text-secondary-50 {
  color: #ffffe7;
}

.text-secondary-100 {
  color: #f2f2d3;
}

.text-secondary-200 {
  color: #fbdc6a;
}

.text-secondary-700 {
  color: #efa619;
}

.text-secondary-800 {
  color: #e89a44;
}

.text-gray {
  color: #dadada;
}

.text-light {
  color: #ffffe7;
}

.text-dark {
  color: #4a4a4a;
}

.fs-heading-xxl {
  font-size: 4.8rem;
}

.fs-heading-xl {
  font-size: 4rem;
}

.fs-heading {
  font-size: 3.2rem;
}

.fs-heading-md {
  font-size: 2.8rem;
}

.fs-heading-sm {
  font-size: 2.4rem;
}

.fs-heading-xs {
  font-size: 1.6rem;
}

.fs-subtitle-lg {
  font-size: 2rem;
}

.fs-subtitle {
  font-size: 1.8rem;
}

.fs-subtitle-sm {
  font-size: 1.6rem;
}

.fs-body {
  font-size: 1.6rem;
}

.fs-body-sm {
  font-size: 1.4rem;
}

.fs-caption {
  font-size: 1.2rem;
}

.fs-caption-sm {
  font-size: 1rem;
}

.fw-black {
  font-weight: 900;
}

.fw-extrabold {
  font-weight: 800;
}

.fw-bold {
  font-weight: 700;
}

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

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

.fw-regular {
  font-weight: 400;
}

.fw-light {
  font-weight: 300;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border: 1px solid transparent;
  border-radius: 0.8rem;
  color: #4a4a4a;
  font-weight: 600;
  font-size: 1.4rem;
  transition: all 0.2s;
  cursor: pointer;
  line-height: 1;
}
.btn--icon {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  padding: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  font-size: 1.6rem;
}
.btn__primary {
  background-color: #457d95;
  color: #ffffe7;
}
.btn__primary:hover {
  background-color: #3d6e84;
}
.btn__secondary {
  background-color: #efa619;
  color: #4a4a4a;
}
.btn__secondary:hover {
  background-color: #f2b53f;
  color: #4a4a4a;
}
.btn__light {
  color: #4a4a4a;
  background-color: #bfd8e2;
}
.btn__light:hover {
  color: #4a4a4a;
  background-color: #a3c7d5;
}
.btn__transparent {
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  gap: 0.8rem;
}
.btn__lg {
  padding: 1.6rem 6.8rem;
  font-size: 1.8rem;
}
.btn__full {
  width: 100%;
}
.btn__outline-primary {
  background-color: transparent;
  border: #FFFFE7 1px solid;
  border-radius: 8px;
  color: #FFFFE7;
  padding: 1.2rem 5rem;
  transition: all 0.5s;
}
.btn__outline-primary:hover {
  background-color: #efa619;
  border: #e89a44 1px solid;
  border-radius: 8px;
}

.form--group {
  display: flex;
  border: 1px solid #bfd8e2;
  align-items: center;
  padding: 1.2rem 1.8rem;
  border-radius: 0.8rem;
  margin-bottom: 1.2rem;
  gap: 0.8rem;
}
.form--group .btn-password {
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.form--group__md {
  padding: 0.5rem 1rem;
}
.form--group__md .form--input {
  font-size: 1.2rem;
}
.form--group__md .form--input::-moz-placeholder {
  color: #6098b0;
}
.form--group__md .form--input::placeholder {
  color: #6098b0;
}
.form--input {
  width: 100%;
  background-color: transparent;
  border: none;
  color: #ffffe7;
  font-size: 16px;
  letter-spacing: 0.2px;
  flex-grow: 1;
}
.form--input:focus {
  outline: 0;
}
.form--input::-moz-placeholder {
  color: #bfd8e2;
}
.form--input::placeholder {
  color: #bfd8e2;
}
.form--phone {
  position: relative;
  padding: 0;
  padding-left: 0.4rem;
}
.form--phone input {
  background-color: transparent;
  color: #ffffe7;
  text-align: right;
  padding: 1.2rem 1.8rem;
}
.form--phone .btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}
.form--icon {
  height: 1.6rem;
  flex-shrink: 0;
}
.form--sizes {
  display: flex;
  flex-wrap: wrap;
}
.form--sizes .form--group {
  max-width: 9.6rem;
  padding: 0.8rem 1rem;
  border-color: #6098b0;
  font-size: 1.2rem;
  margin-left: 1.2rem;
}

.phone-input {
  display: flex;
  align-items: center;
  /* border: 1px solid #ccc; */
  /* border-radius: 5px; */
  overflow: hidden;
  /* max-width: 100px; */
}

.dropdown-menu {
  text-align: right;
  max-height: 200px;
  overflow-y: auto;
  background-color: #355669;
  color: #ffffe7;
}

.flag-dropdown {
  position: unset;
  width: 130px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  /* padding: 5px; */
  cursor: pointer;
}
.flag-dropdown .dropdown-menu {
  width: 100%;
  transform: unset !important;
}
.flag-dropdown .dropdown-item {
  padding: 8px 16px;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  color: #ffffe7;
  font-size: 1.4rem;
}
.flag-dropdown .dropdown-item .phone--country {
  display: flex;
  gap: 1rem;
}
.flag-dropdown .dropdown-item:hover {
  background-color: #2d3e4c;
}
.flag-dropdown .dropdown-menu.show {
  inset: 100% auto auto 0px !important;
}

.form-select {
  background-position: left 1rem center;
  padding: 1.4rem 1.2rem;
  background-color: transparent;
  color: #f3fbff;
  font-size: 1.4rem;
  border-radius: 0.8rem;
  border-color: #bfd8e2;
  --bs-form-select-bg-img: url(../../assets/images/icons/arrow-down.svg);
}
.form-select option {
  background-color: #2d3e4c;
}
.form-select option:hover {
  background-color: #355669 !important;
}

.rating {
  color: #efa619;
  font-size: 1.4rem;
}

.radio {
  display: flex;
  font-size: 1.2rem;
}
.radio .radio--item {
  margin-bottom: 2rem;
}
.radio .radio--label {
  padding: 0.2rem 1rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: block;
}
.radio .radio--input {
  display: none;
}
.radio .radio__padding {
  padding: 0.8rem;
  background-color: transparent;
  border: 1px solid #6098b0;
  opacity: 0.9;
}
.radio .radio__padding img {
  height: 8.8rem;
  border-radius: 0.8rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.radio .radio__padding span {
  padding-bottom: 0;
}
.radio--outline {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  flex-wrap: wrap;
}
.radio--outline .radio--label {
  border: 1px solid #6098b0;
  border-radius: 0.8rem;
  font-size: 1.4rem;
  padding: 0.8rem 1.2rem;
}
.radio--outline .radio--input:checked + .radio--label {
  background-color: #bfd8e2;
  color: #4a4a4a;
}
.radio--group {
  display: flex;
  font-size: 1.4rem;
}
.radio--group .radio--item:first-child .radio--label {
  border-top-right-radius: 0.4rem;
  border-bottom-right-radius: 0.4rem;
}
.radio--group .radio--item:last-child .radio--label {
  border-top-left-radius: 0.4rem;
  border-bottom-left-radius: 0.4rem;
}
.radio--group .radio--label {
  background-color: #355669;
  padding: 0.4rem 1.2rem;
  min-width: 7rem;
  text-align: center;
}
.radio--group .radio--input:checked + .radio--label {
  background-color: #6098b0;
}
.radio--group .radio--container:last-child {
  border-top-left-radius: 0.4rem;
}
.radio--image {
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.radio--image .radio--input:checked + .radio--image__label {
  background-color: #6098b0;
  border: 1px solid transparent;
  opacity: 1;
}
.radio--image .radio--item {
  margin-bottom: 0;
}
.radio--image__label {
  display: flex;
  border-radius: 0.8rem;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.65;
}
.radio--image__label span {
  padding: 8px;
}
.radio--image__label img {
  width: 100%;
}
.radio--image__column {
  flex-direction: column;
  width: 12rem;
  background-color: #355669;
  border: 1px solid transparent;
  font-size: 1.4rem;
  text-align: center;
}
.radio--image__row {
  padding: 0.8rem;
  gap: 0.8rem;
  align-items: center;
  font-size: 1.6rem;
  border: 1px solid #457d95;
}
.radio--image__row img {
  width: 12rem;
  height: 5rem;
  border-radius: 0.8rem;
  background-size: cover;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.ui-widget-content {
  background: #355669;
}

.ui-state-default,
.ui-widget-content .ui-state-default {
  background: transparent;
  border: none;
  color: #fff;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
  background-color: #6098b0;
  border-color: #bfd8e2;
}

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  background: #dadada;
  border-color: #dadada;
}

.ui-datepicker th {
  color: #bfd8e2;
}

.ui-widget-header {
  background: #bfd8e2;
}

.product {
  cursor: pointer;
}
.product--image {
  overflow: hidden;
  border-radius: 16px;
  height: 25rem;
  position: relative;
}
.product--image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s;
}
.product--image--label {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  display: inline-block;
  font-size: 1.2rem;
  background-color: #457d95;
  padding: 0.4rem 0.8rem;
  border-radius: 2rem;
}
.product--content {
  margin: 0.8rem 0 1.2rem;
}
.product--content h3 {
  font-size: 16px;
  margin-bottom: 0.8rem;
}
.product--rating {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.product--rating__stars {
  color: #EFA619;
}
.product--price {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.product--actions {
  display: flex;
  gap: 8px;
}
.product:hover .product--image img {
  transform: scale(1.1);
}

.category {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  overflow: hidden;
}
.category--image {
  height: 13rem;
}
.category--image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.category--content {
  padding: 1.8rem;
  background-color: #2d3e4c;
  display: flex;
  justify-content: space-between;
  transition: all 0.3s;
}
.category:hover .category--content {
  background-color: #355669;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-bg-type: #28404eaf;
}

.table > :not(caption) > * > * {
  background-color: #2d3e4c;
  padding: 1rem 0.8rem;
  font-size: 1.6rem;
  border-color: #355669;
  font-weight: 400;
}

.table--invoice.table > :not(caption) > * > * {
  background-color: transparent;
  padding: 1.6rem;
}

.w-140px {
  width: 140px;
}

.upload-section {
  text-align: right;
  color: #ffffff;
}

.upload-button {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #5c9ccb;
  border-radius: 25px;
  background-color: transparent;
  color: #ffffff;
  cursor: pointer;
  font-size: 14px;
  margin-bottom: 15px;
  transition: background-color 0.3s, color 0.3s;
}

.upload-button:hover {
  background-color: #5c9ccb;
  color: #182430;
}

.instructions {
  font-size: 14px;
  color: #c5c5c5;
  max-width: 220px;
}

.profile-pic {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #f0f0f0;
}

.profile-pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.nav {
  display: block;
}
.nav--logo {
  display: flex;
  justify-content: center;
  padding: 1.6rem 1.2rem 0;
}
.nav--logo img {
  width: 80px;
}
.nav--container {
  display: flex;
  gap: 1.6rem;
  justify-content: space-between;
  align-items: center;
}
.nav--list, .nav--left {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.nav--list a, .nav--left a {
  color: #dadada;
  padding: 0.6rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  border-bottom-width: 0;
}
.nav--list .nav--link.active {
  border-bottom: 2px solid #efa619;
}
.nav--list .nav--link:hover {
  border-bottom: 2px solid #6098b0;
  border-bottom-width: 100%;
}
.nav .offcanvas {
  background-color: #1e2d39;
  color: #ffffe7;
  padding: 1.2rem;
}
.nav .offcanvas-header {
  color: #ffffe7;
  justify-content: space-between;
  align-items: center;
}
.nav .offcanvas-header .btn-close {
  margin: 0;
  color: #ffffe7;
  --bs-btn-close-bg: none;
}
.nav .offcanvas .nav--container,
.nav .offcanvas .nav--list,
.nav .offcanvas .nav--left {
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
.nav .offcanvas .nav--container .btn__transparent,
.nav .offcanvas .nav--list .btn__transparent,
.nav .offcanvas .nav--left .btn__transparent {
  flex-direction: row-reverse;
}
.nav #offcanvas-cart {
  padding: 0.4rem;
}
.nav #offcanvas-cart .offcanvas-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 1.6rem;
  margin-bottom: 10.8rem;
}

@media (max-width: 992px) {
  .tab .nav {
    justify-content: flex-start;
  }
}
@media (max-width: 460px) {
  .tab .nav-link {
    font-size: 1.3rem !important;
  }
}
.cart--item {
  display: flex;
  gap: 1.2rem;
  background-color: #2d3e4c;
  padding: 0.8rem;
  border-radius: 2.4rem;
}
.cart--item:not(:last-child) {
  margin-bottom: 1.2rem;
}
.cart--item.cart__light {
  background-color: #3c667e;
  padding-left: 1.6rem;
  margin-bottom: 1.6rem;
}
.cart--image {
  width: 10rem;
  height: 10rem;
  flex-shrink: 0;
}
.cart--image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2rem;
}
.cart--content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}
.cart--content h3 {
  font-size: 1.4rem;
  line-height: 1.5;
}
.cart--count {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.2rem;
}
.cart--count p,
.cart--count button {
  font-size: 1.2rem;
  margin-bottom: 0;
}
.cart--footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.6rem;
  background-color: #2d3e4c;
  box-shadow: -0.2rem -0.2rem 2rem rgba(17, 17, 17, 0.5764705882);
}
.cart--total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}
.cart--rev {
  height: 300px;
  overflow: auto;
}
.cart--badge {
  position: absolute;
  top: -0.4rem;
  left: -0.4rem;
  transform: translate(-50%, -50%);
  background-color: #355669;
  font-size: 1rem;
}

@media (max-width: 992px) {
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav--container {
    gap: 2.8rem;
  }
  .nav .offcanvas .nav--left {
    gap: 1rem;
  }
  .cart--rev {
    height: auto;
  }
}
footer {
  background-color: #2d3e4c;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
footer h4 {
  position: relative;
  margin-bottom: 1.5rem;
}
footer h4:after {
  content: "";
  height: 1px;
  width: 70%;
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 130%;
  right: 0px;
}
footer ul li {
  padding-bottom: 0.5rem;
}
footer .socials {
  display: flex;
  align-items: center;
}
footer .socials p {
  padding-left: 2.7rem;
}
footer .socials .socials-icons {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
footer .socials i {
  color: #93BDCD;
}

.half--container__right, .half--container__left {
  /* max-width: calc(100vw - 660px); */
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}

@media (width < 576px) {
  .half--container__left {
    margin-left: 20px;
  }
  .half--container__right {
    margin-right: 20px;
  }
}
@media (width >= 576px) {
  .half--container__left, .half--container__left-sm {
    margin-left: calc((100vw - 540px) / 2);
  }
  .half--container__right, .half--container__right-sm {
    margin-right: calc((100vw - 540px) / 2);
  }
}
@media (width >= 768px) {
  .half--container__left, .half--container__left-sm, .half--container__left-md {
    margin-left: calc((100vw - 720px) / 2);
  }
  .half--container__right, .half--container__right-sm, .half--container__right-md {
    margin-right: calc((100vw - 720px) / 2);
  }
}
@media (width >= 992px) {
  .half--container__left, .half--container__left-sm, .half--container__left-md, .half--container__left-lg {
    margin-left: calc((100vw - 960px) / 2);
  }
  .half--container__right, .half--container__right-sm, .half--container__right-md, .half--container__right-lg {
    margin-right: calc((100vw - 960px) / 2);
  }
}
@media (width >= 1200px) {
  .half--container__left, .half--container__left-sm, .half--container__left-md, .half--container__left-lg, .half--container__left-xl {
    margin-left: calc((100vw - 1140px) / 2);
  }
  .half--container__right, .half--container__right-sm, .half--container__right-md, .half--container__right-lg, .half--container__right-xl {
    margin-right: calc((100vw - 1140px) / 2);
  }
}
@media (width >= 1440px) {
  .half--container__left, .half--container__left-sm, .half--container__left-md, .half--container__left-lg, .half--container__left-xl, .half--container__left-xxl {
    margin-left: calc((100vw - 1320px) / 2);
  }
  .half--container__right, .half--container__right-sm, .half--container__right-md, .half--container__right-lg, .half--container__right-xl, .half--container__right-xxl {
    margin-right: calc((100vw - 1320px) / 2);
  }
}
@media (max-width: 992px) {
  .max-container, .max-container-lg, .max-container-md, .max-container-sm {
    max-width: 720px;
    --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 (max-width: 768px) {
  .max-container, .max-container-md, .max-container-sm, .max-container-lg {
    max-width: 540px;
    --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;
  }
}
.carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #000;
}

.carousel-indicators .active {
  background-color: #000;
  transform: scale(1.6);
}

#home__bookink p {
  color: #DDEBF0;
  margin-top: 30px;
  margin-bottom: 40px;
}

h3.section-heading {
  position: relative;
  display: inline-block;
  line-height: 24px;
}

h3.section-heading::after {
  content: "";
  width: 110%;
  height: 3px;
  border-radius: 50px;
  background: #EFA619;
  position: absolute;
  top: 150%;
  right: 0px;
}

#home__our-products h3 {
  margin-bottom: 3.5rem;
}

.tab .nav-pills .nav-link.active, .tab .nav-pills .show > .nav-link {
  color: #F6F6F6;
  background: none;
  border-bottom: 2px solid #F6F6F6;
}
.tab .nav-link {
  font-size: 1.8rem;
  font-weight: 600;
  color: #93BDCD;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  margin-bottom: 3rem;
}

#testimonial h3 {
  margin-bottom: 65px;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link, .nav-pills .nav-link {
  border-radius: 0;
  margin-bottom: 1.6rem;
}

.testimonial {
  background-color: #355669;
  border-radius: 1.6rem;
  padding: 2rem 1.8rem;
}
.testimonial--user {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

@media (max-width: 992px) {
  .hero h1, .hero span {
    font-size: 3rem !important;
  }
}
@media (max-width: 545px) {
  .hero h1, .hero span {
    font-size: 2.4rem !important;
  }
}
.news .news-item {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #6098B0;
  margin-bottom: 20px;
}
.news .news-item .news-img img {
  width: 20rem;
  height: 15rem;
  border-radius: 8px;
}
.news .news-item .news-content h5 {
  margin-bottom: 2.5rem;
  color: #fff;
}
.news .news-item .news-content p {
  color: #DDEBF0;
}

.header-bg {
  height: 35rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 7rem;
  margin-top: 2rem;
}

.about-header-bg {
  background-image: url("../assets/images/about/about.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  height: 450px;
}

.our-services {
  margin-bottom: 10rem;
}
.our-services .our-services-content ul {
  padding: 0 3rem;
  list-style-type: disc;
}
.our-services .our-services-content ul li {
  font-size: 1.6rem;
  margin-bottom: 3px;
}
.our-services .our-services-img img {
  border-radius: 2rem;
  width: 100%;
}

.our-message {
  margin-bottom: 12rem;
}
.our-message h3 {
  line-height: 2rem;
  margin-bottom: 2rem !important;
}

@media (max-width: 992px) {
  .header-bg {
    margin-bottom: 3rem !important;
    margin-top: 2rem;
  }
  .our-services {
    margin-bottom: 2rem;
  }
  .our-message {
    margin-bottom: 5rem;
  }
  .our-message h3 {
    line-height: 2rem;
    margin-bottom: 2rem !important;
  }
}
.contact-header-bg {
  background-image: url("../assets/images/about/contact.jpeg");
  height: 370px;

}

.help-you {
  padding-bottom: 4rem;
  border-bottom: 1px solid #457d95;
  margin-bottom: 5rem;
}

.payment {
  max-width: 42rem;
  height: 100%;
}
.payment--container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.payment img {
  width: 100%;
}
.payment--content {
  font-size: 1.6rem;
  display: flex;
  justify-content: space-between;
  margin: 1.2rem 0;
}
.payment--content p {
  margin: 0;
}
.payment--actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.payment--actions button {
  width: 100%;
}
.payment--actions a {
  width: 100%;
}

.invoice {
  display: flex;
  flex-wrap: wrap;
  padding: 1rem 0 0;
}
.invoice--heading {
  width: 24rem;
  flex-shrink: 0;
  margin-bottom: 0;
}
.invoice--content {
  margin-bottom: 0;
}
.invoice__border {
  padding: 1rem 0 1.2rem;
  border-bottom: 2px solid #355669;
}
.invoice--actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 4rem 0 2rem;
}

@media (max-width: 768px) {
  .invoice--heading {
    width: 13.2rem;
  }
}
.gallery {
  -moz-columns: 4;
       columns: 4;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}

@media (max-width: 992px) {
  .gallery {
    -moz-columns: 3;
         columns: 3;
  }
}
@media (max-width: 768px) {
  .gallery {
    -moz-columns: 2;
         columns: 2;
  }
}
.swiper {
  width: 100%;
  height: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.main-image {
  height: 65vh;
  width: 100%;
  border-radius: 1rem;
}

.thumbnails {
  height: 12rem;
  box-sizing: border-box;
  padding: 10px 0;
}

.thumbnails .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

.thumbnails .swiper-slide-thumb-active {
  opacity: 1;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.rating--percent {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.6rem;
}
.rating--percent .percent--track {
  width: 12rem;
  height: 1rem;
  background: #6098b0;
  border-radius: 1rem;
  margin-bottom: 0.8rem;
  position: relative;
}
.rating--percent .percent--value {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #efa619;
  border-radius: 1rem;
}
.rating--percent .percent--text {
  width: 3.5rem;
  text-align: left;
}

.product--cart {
  display: flex;
  border-radius: 1rem;
  overflow: hidden;
  max-width: 32rem;
}
.product--cart button {
  background-color: #bfd8e2;
  flex-grow: 1;
  border: none;
  font-size: 1.4rem;
  font-weight: 600;
}
.product--count {
  display: flex;
  background-color: #457d95;
  color: #ffffe7;
}
.product--count input,
.product--count button {
  background-color: transparent;
  border: none;
  font-size: 2rem;
  padding: 1.2rem;
  color: #fff;
}
.product--count input::-moz-placeholder {
  color: #dadada;
}
.product--count input::placeholder {
  color: #dadada;
}
.product--count input {
  max-width: 6rem;
  text-align: center;
  padding: 1.2rem 0;
}
.product--count button {
  padding: 1rem;
}
.product--count input:focus {
  outline: none;
}

/* Make circles that indicate the steps of the form: */
.step {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bfd8e2;
  border: none;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.2;
}

.step.active {
  opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
  background-color: #04aa6d;
}/*# sourceMappingURL=styles.css.map */