@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Monoton&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cairo+Play:wght@500;900&display=swap");
.accordion-button:not(.collapsed) {
  background: white;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

::-moz-selection {
  background-color: #902b31;
  color: white;
}

::selection {
  background-color: #902b31;
  color: white;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}

::-webkit-scrollbar-thumb {
  background: black;
  border-radius: 1rem;
  -webkit-transition: background 0.15s;
  transition: background 0.15s;
  border: 1px solid #902b31;
}
::-webkit-scrollbar-thumb:hover {
  background: #d87c82;
}
::-webkit-scrollbar-thumb:active {
  border: 1px solid black;
}

::-webkit-scrollbar-track {
  background: #902b31;
}

::-webkit-scrollbar-corner {
  background: #902b31;
}

.bg-primary,
.btn-primary {
  background-color: #691f24 !important;
  color: #000000 !important;
}
.bg-primary:hover,
.btn-primary:hover {
  background-color: #411416 !important;
}

.form-control,
.form-select {
  background-color: transparent !important;
  color: #000000 !important;
  border-color: black;
}
.form-control::-moz-placeholder, .form-select::-moz-placeholder {
  color: black;
}
.form-control::placeholder,
.form-select::placeholder {
  color: black;
}
.form-control:focus,
.form-select:focus {
  border-color: #902b31;
  box-shadow: none !important;
}

.form-select,
.toast-body {
  background-color: black !important;
}

.toast-body {
  box-shadow: 0 0 0 2px #902b31;
  border-radius: 0.375rem;
}

.color-primary {
  color: #902b31 !important;
}

.table {
  color: #000000;
}
.table th,
.table td {
  vertical-align: middle;
  border-color: rgba(255, 255, 255, 0.15);
}

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  color: #000000 !important;
  transition: transform 0.15s;
  background-color: #ececec;
}
body #header .nav-link {
  position: relative !important;
}
body #header .nav-link::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  background-color: #902b31;
  top: 2.3rem;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.2s;
}
body #header .nav-link:hover::before {
  width: 40% !important;
}
body #header .flag-link img {
  aspect-ratio: 2/1.1;
  width: 2rem;
  margin-left: 0.5rem;
}
body #top-content #main-carousel img {
  max-height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}
body #main-content {
  padding: 1rem;
  padding-top: 5rem;
  width: 75%;
  margin: auto;
}
body #main-content #title {
  text-align: center;
}
body #main-content .main-heading {
  color: #902b31;
}
body #main-content #content2 {
  text-align: center;
}
body #main-content .table {
  background-color: #902b31;
  color: white;
}
body #main-content .table tr:nth-child(5) td {
  text-align: center;
}
body #main-content .table tr:hover {
  color: white !important;
}
body #main-content tbody tr:hover td,
body #main-content tbody tr:hover th {
  color: white !important;
}
body #main-content .main-cards .card {
  background-color: #902b31;
  color: white;
  word-wrap: normal;
}
body #main-content .main-cards .card .card-body {
  display: flex;
  align-items: center;
  justify-content: center;
}
body #main-content .card {
  margin-bottom: 1rem;
}
body #main-content #google-maps {
  width: 100%;
  border-radius: 1rem;
}
body #main-content .accordion-button:not(.collapsed) {
  color: white;
  background-color: #902b31;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}
body #main-content .accordion-button:focus {
  box-shadow: 0 0 0 0.25rem #902b31;
}
body #slide-down {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 2rem;
  bottom: 10%;
  z-index: 99;
  color: white;
  animation: MoveUpDown 2s linear infinite;
}

@media screen and (min-width: 1100px) and (max-width: 1280px) {
  #slide-down {
    bottom: 25% !important;
    animation: MoveUpDown 2s linear infinite;
  }
}
@media screen and (min-width: 1000px) and (max-width: 1100px) {
  #slide-down {
    bottom: 35% !important;
    animation: MoveUpDown 2s linear infinite;
  }
}
@media (max-width: 1000px) {
  #main-content {
    width: 100% !important;
  }
  #slide-down {
    display: none;
  }
  .nav-link::before {
    top: 1rem !important;
  }
}
@keyframes MoveUpDown {
  0%, 100% {
    transform: translateY(0) scale(2);
  }
  50% {
    transform: translateY(30%) scale(2);
  }
}
.parent {
  -webkit-margin-after: 1rem;
          margin-block-end: 1rem;
}

.link {
  color: #902b31;
  font-weight: 500;
  transition: all 0.15s;
}
.link:hover {
  background-color: #e9e9e9;
}

.hidden {
  display: none !important;
}

*[class^=grid],
*[class*=" grid"] {
  display: grid;
}

.spread,
.flex,
*[class^=grid],
*[class*=" grid"] {
  gap: 1rem;
}

.gapless {
  gap: 0;
}

.center-items {
  place-items: center;
}

.grid-xs {
  grid: auto/repeat(auto-fill, minmax(98px, 1fr));
}

.grid-sm {
  grid: auto/repeat(auto-fill, minmax(144px, 1fr));
}

.grid-md {
  grid: auto/repeat(auto-fill, minmax(192px, 1fr));
}

.grid-lg {
  grid: auto/repeat(auto-fill, minmax(248px, 1fr));
}

.grid-xl {
  grid: auto/repeat(auto-fill, minmax(310px, 1fr));
}

.grid-xxl {
  grid: auto/repeat(auto-fill, minmax(380px, 1fr));
}

.grid-xs-fill {
  grid: auto/repeat(auto-fit, minmax(98px, 1fr));
}

.grid-sm-fill {
  grid: auto/repeat(auto-fit, minmax(144px, 1fr));
}

.grid-md-fill {
  grid: auto/repeat(auto-fit, minmax(192px, 1fr));
}

.grid-lg-fill {
  grid: auto/repeat(auto-fit, minmax(248px, 1fr));
}

.grid-xl-fill {
  grid: auto/repeat(auto-fit, minmax(310px, 1fr));
}

.grid-xxl-fill {
  grid: auto/repeat(auto-fit, minmax(380px, 1fr));
}

.grid-2 {
  grid: auto/repeat(2, 1fr);
}

.grid-3 {
  grid: auto/repeat(3, 1fr);
}

.grid-4 {
  grid: auto/repeat(4, 1fr);
}

.grid-5 {
  grid: auto/repeat(5, 1fr);
}

.grid-6 {
  grid: auto/repeat(6, 1fr);
}/*# sourceMappingURL=main.css.map */