.map-container {
  width: 100%;
  height: 100%;
}

.icon-square {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  font-size: 1.5rem;
  border-radius: 0.75rem;
}

/* SWIPER */
.swiper-pagination {
  --swiper-pagination-color: var(--bs-secondary);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0, 0, 0, 0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-inactive-color: var(--bs-secondary);
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
}

.swiper-pagination-bullet-active {
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 30px;
  --swiper-pagination-bullet-height: 8px;
  border-radius: 4px;
}

.swiper-scrollbar-drag {
  background: var(--bs-secondary);
  opacity: 1;
}

.swiper-buttons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  padding: 10px;
  margin-top: 15px;
}

.swiper-button-next,
.swiper-button-prev {
  padding: 10px;
  border: 1px solid black;
  cursor: pointer;
  margin-right: 10px;
}

.swiper-navBtn {
  color: #000;
  height: 40px;
  width: 40px;
  background: #FFE4E1;
  border-radius: 50%;
}

.swiper-navBtn::before,
.swiper-navBtn::after {
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .swiper-navBtn {
    display: none;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance !important;
}

.theme-icon {
  font-size: x-small;
}

.theme-toggle .dropdown-menu .dropdown-item {
  border-radius: 0.25rem;
}

.theme-toggle .dropdown-menu-end {
  width: 8rem;
}

.theme-toggle .dropdown-menu {
  --bs-dropdown-min-width: 12rem;
  --bs-dropdown-padding-x: .25rem;
  --bs-dropdown-padding-y: .25rem;
  --bs-dropdown-font-size: .875rem;
  font-size: 0.875rem;
}

.theme-toggle .dropdown-menu li + li {
  margin-top: 0.225rem;
}

.footer .dropdown-menu .dropdown-item {
  border-radius: 0.25rem;
}

.footer .dropdown-menu {
  --bs-dropdown-min-width: 12rem;
  --bs-dropdown-padding-x: .25rem;
  --bs-dropdown-padding-y: .25rem;
  --bs-dropdown-font-size: .875rem;
  font-size: 0.875rem;
}

.footer .dropdown-menu li + li {
  margin-top: 0.225rem;
}

.navbar-nav .dropdown-menu .dropdown-item {
  border-radius: 0.25rem;
}

.navbar-nav .dropdown-menu-end {
  width: 8rem;
}

.navbar-nav .dropdown-menu {
  --bs-dropdown-min-width: 12rem;
  --bs-dropdown-padding-x: .25rem;
  --bs-dropdown-padding-y: .25rem;
  --bs-dropdown-font-size: .875rem;
  font-size: 0.875rem;
}

.navbar-nav .dropdown-menu li + li {
  margin-top: 0.225rem;
}

.theme-toggle,
.theme-toggle #bd-theme {
  z-index: 1000;
}

.to-top-btn {
  position: fixed;
  z-index: 1000;
  opacity: 0;
  bottom: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  outline: none;
  background-color: var(--bs-primary);
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

.to-top-btn:hover {
  background-color: var(--bs-secondary);
}

.reveal {
  opacity: 1;
  animation-name: moveInRight;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
}

footer,
.footer {
  font-size: smaller;
}

.fixed-top {
  transition: all 0.5s ease-in-out;
}

[data-bs-theme=light] footer,
.footer {
  background-color: var(--bs-light);
  color: var(--bs-dark);
}

[data-bs-theme=dark] footer,
.footer {
  background-color: var(--bs-dark);
  color: var(--bs-light);
}

[data-bs-theme=light] nav {
  background-color: var(--bs-light);
  color: var(--bs-dark);
}

[data-bs-theme=dark] nav {
  background-color: var(--bs-dark);
  color: var(--bs-light);
}

@media (max-width: 992px) {
  .contact .list-group-item {
    font-size: 1rem !important;
  }
}
@media (max-width: 576px) {
  .contact .list-group-item {
    font-size: 1rem !important;
  }
  footer,
  .footer {
    font-size: 16px !important;
  }
}
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  80% {
    transform: translateX(10px);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10px);
  }
  80% {
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
textarea {
  resize: none;
}

.form-label {
  font-weight: bold;
  font-size: small;
  color: var(--bs-primary);
}
