body,
p,
a {
  font-family: "Josefin Sans", sans-serif;
  margin-bottom: 0;
  font-optical-sizing: auto;
}

body {
  padding: 1.25rem;
  background-color: #f2f3f3;
}

header .custom__nav {
  background-color: #fff;
  border-radius: 12px;
}
header .navbar-collapse > div a:first-of-type {
  background-color: #fff74c;
  color: #08314b;
  text-decoration: none;
  font-weight: 600;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 45px;
}
@media screen and (min-width: 992px) {
  header .navbar-collapse > div a:first-of-type {
    width: 162px;
  }
}

.btn {
  color: #fff;
  border-radius: 15px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn--blue {
  background-color: #08314b;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (min-width: 400px) and (max-width: 991px) {
  .btn--blue {
    width: 100%;
  }
}
.btn--blue img {
  margin-left: 10px;
}

section.hero {
  position: relative;
  color: #fff;
}
@media screen and (min-width: 992px) {
  section.hero {
    margin-top: 2rem;
  }
}
section.hero h1 {
  font-size: 2rem;
  padding: 4rem 1rem 0 1rem;
}
@media screen and (min-width: 992px) {
  section.hero h1 {
    padding: 0;
  }
}
@media screen and (min-width: 1336px) {
  section.hero h1 {
    font-size: 2.5rem;
    width: 90%;
  }
}
section.hero h3 {
  font-size: 1.3rem;
  font-weight: 300;
  padding: 1rem 1rem;
}
@media screen and (min-width: 992px) {
  section.hero h3 {
    padding: 0;
  }
}
@media screen and (min-width: 1336px) {
  section.hero h3 {
    margin: 1rem 0;
    font-size: 1.5rem;
    width: 90%;
  }
}
section.hero a.btn--orange {
  background-color: #cf4b0b;
  color: #fff;
  height: 49px;
  margin-left: 1rem;
  width: 90%;
}
@media screen and (min-width: 992px) {
  section.hero a.btn--orange {
    margin-left: 0;
    width: 176px;
  }
}
@media screen and (min-width: 400px) and (max-width: 991px) {
  section.hero img {
    margin-top: 1rem;
  }
}
section.hero::before {
  content: "";
  background-color: #08314b;
  height: 85%;
  width: 100%;
  border-radius: 15px;
  position: absolute;
  top: 3%;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 1336px) {
  section.hero::before {
    border-radius: 12px;
    top: 7%;
  }
}

.about {
  background-color: #fff;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 2rem 0;
  margin-top: 1rem;
}
@media screen and (min-width: 992px) {
  .about {
    padding: 3rem 0;
    margin-top: -1rem;
  }
}
.about h3 {
  text-align: center;
}
.about h3 {
  color: #08314b;
  font-weight: 700;
}
@media screen and (min-width: 400px) and (max-width: 991px) {
  .about h3 {
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .about p {
    margin: 0 auto;
  }
}
@media screen and (min-width: 1336px) {
  .about p {
    width: 90%;
  }
}
.about__perks {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 992px) {
  .about__perks {
    margin-top: 2.5rem;
    grid-template-columns: repeat(5, 1fr);
  }
}
.about__perks__item {
  background-color: #d9d9d9;
  border-radius: 10px;
  margin: 0 auto;
  padding: 1rem;
  height: 146px;
  width: 146px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about__perks__item::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -10px;
  border-radius: 50%;
  height: 31px;
  width: 31px;
  background-color: #cf4b0b;
}
.about__perks__item h5,
.about__perks__item h6 {
  font-weight: 700;
}
.about__perks__item h5 {
  color: #08314b;
  font-size: 2.5rem;
  margin-bottom: 0;
}
.about__perks__item h5 span {
  color: #cf4b0b;
}
.about__perks__item h6 {
  color: #000;
  font-size: 1.2rem;
}

.carousel__products {
  /* Position the custom "Prev" button */
  /* Position the custom "Next" button */
}
@media screen and (min-width: 400px) and (max-width: 991px) {
  .carousel__products {
    height: 300px;
  }
}
@media screen and (min-width: 400px) and (max-width: 991px) {
  .carousel__products .swiper {
    height: 300px;
  }
}
@media screen and (min-width: 400px) and (max-width: 991px) {
  .carousel__products .swiper-slide {
    height: 300px;
  }
}
@media screen and (min-width: 400px) and (max-width: 991px) {
  .carousel__products .swiper-slide img {
    height: 300px;
  }
}
.carousel__products .swiper-button-prev,
.carousel__products .swiper-button-next {
  color: transparent; /* Hide default arrow */
  width: 44px;
  height: 44px;
  top: 50%;
  transform: translateY(-50%);
}
.carousel__products .custom-prev {
  left: 2rem;
  /* Additional custom styles if needed */
  cursor: pointer;
}
.carousel__products .custom-next {
  right: 2rem;
  /* Additional custom styles if needed */
  cursor: pointer;
}

.products {
  padding: 2rem 0;
}
@media screen and (min-width: 992px) {
  .products {
    padding: 3.5rem 0;
  }
}
@media screen and (min-width: 400px) and (max-width: 991px) {
  .products .container-fluid {
    padding: 0;
  }
}
.products h3 {
  text-align: center;
}
.products h3 {
  color: #156f67;
  font-weight: 700;
}
@media screen and (min-width: 400px) and (max-width: 991px) {
  .products h3 {
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .products p {
    margin: 0 auto;
  }
}
@media screen and (min-width: 1336px) {
  .products p {
    width: 90%;
  }
}
.products h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  color: #176292;
}
.products__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
@media screen and (min-width: 992px) {
  .products__list {
    margin-top: 1.5rem;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1336px) {
  .products__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.products__list__item {
  display: flex;
  flex-direction: column;
  background-color: #cf4b0b;
  border-radius: 20px;
}
.products__list__item__carousel {
  background-color: #fff;
  padding: 1rem 0.8rem;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.products__list__item__carousel .carousel-control-prev .custom-prev-icon,
.products__list__item__carousel .carousel-control-next .custom-next-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px; /* Adjust icon size */
  height: 30px; /* Adjust icon size */
  border-radius: 50%; /* Optional rounded corners */
}
.products__list__item__carousel .carousel-control-prev:hover .custom-prev-icon,
.products__list__item__carousel .carousel-control-next:hover .custom-next-icon {
  background-color: rgba(0, 0, 0, 0.8); /* Change background on hover */
}
.products__list__item__carousel .carousel-item {
  height: 250px;
  overflow: hidden;
  border-radius: 11px;
}
.products__list__item__carousel .carousel-item img {
  height: 120%;
}
.products__list__item__body {
  background-color: #fff;
  padding: 0 1rem;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  position: relative;
  height: 100%;
}
.products__list__item__body::before {
  background: #fff;
  content: "";
  position: absolute;
  top: -1rem;
  left: 0;
  height: 30px;
  width: 100%;
  z-index: -1;
}
.products__list__item__body h6 {
  color: #176292;
}
.products__list__item__body h1 {
  font-size: 1.4rem;
  font-weight: 700;
}
.products__list__item__body p {
  text-align: justify;
  width: 100%;
}
.products__list__item__body a {
  display: block;
  margin: 1rem auto;
  width: -moz-max-content;
  width: max-content;
}
.products__list__item__footer {
  padding: 0.6rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.products__list__item__footer a {
  text-decoration: none;
}
.products__list__item__footer a span {
  color: #fff;
  font-size: 1.2rem;
}

.banner--1 {
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
}
@media screen and (min-width: 992px) {
  .banner--1 {
    grid-template-columns: 50% 1fr;
    gap: 1rem;
  }
}
@media screen and (min-width: 1336px) {
  .banner--1 {
    gap: 0;
  }
}
.banner--1::before {
  content: "";
  background-color: #72bbde;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  border-radius: 18px;
}
@media screen and (min-width: 992px) {
  .banner--1::before {
    height: 85%;
  }
}
.banner--1__media, .banner--1__body {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 400px) and (max-width: 991px) {
  .banner--1__media {
    border-radius: 12px;
    overflow: hidden;
  }
}
.banner--1__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}
@media screen and (min-width: 400px) and (max-width: 991px) {
  .banner--1__body {
    padding: 1rem;
    text-align: center;
  }
}
.banner--1__body h2 {
  font-size: 2rem;
}
@media screen and (min-width: 992px) {
  .banner--1__body h2 {
    font-size: 2.5rem;
  }
}
.banner--1__body p {
  width: 90%;
  font-size: 1.1rem;
}
.banner--1__body .btn {
  margin-top: 1rem;
}
@media screen and (min-width: 400px) and (max-width: 991px) {
  .banner--1__body .btn {
    width: 100%;
  }
}

.reviews {
  padding: 2rem 0;
}
@media screen and (min-width: 992px) {
  .reviews {
    padding: 3.5rem 0;
  }
}
.reviews h3 {
  text-align: center;
}
.reviews h3 {
  color: #08314b;
  font-weight: 700;
}
@media screen and (min-width: 400px) and (max-width: 991px) {
  .reviews h3 {
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .reviews p {
    margin: 0 auto;
  }
}
@media screen and (min-width: 1336px) {
  .reviews p {
    width: 90%;
  }
}
.reviews__list {
  margin-top: 1rem;
  overflow: hidden;
  position: relative;
  /* Position the custom "Prev" button */
  /* Position the custom "Next" button */
}
@media screen and (min-width: 992px) {
  .reviews__list {
    margin-top: 1.5rem;
  }
}
.reviews__list .reviews__swiper-button-prev,
.reviews__list .reviews__swiper-button-next {
  color: transparent; /* Hide default arrow */
  width: 35px;
  height: 35px;
  top: 50%;
  transform: translateY(-50%);
}
.reviews__list .reviews__swiper-button-prev img,
.reviews__list .reviews__swiper-button-next img {
  height: 35px;
  width: 35px;
}
.reviews__list .custom-prev {
  position: absolute;
  left: 0;
  /* Additional custom styles if needed */
  cursor: pointer;
}
.reviews__list .custom-next {
  position: absolute;
  right: 2rem;
  /* Additional custom styles if needed */
  cursor: pointer;
}
.reviews__list__item {
  background-color: #fff;
  border-radius: 20px;
  padding: 1rem;
}
.reviews__list__item p {
  font-size: 1.15rem;
  margin: 0.3rem 0;
}
@media screen and (min-width: 1336px) {
  .reviews__list__item p {
    font-size: 1.1rem;
  }
}
.reviews__list__item span {
  opacity: 0.6;
}

.industry-uniforms h4 {
  color: #cf4b0b;
  font-size: 1.5rem;
  margin-top: 2rem;
}
@media screen and (min-width: 992px) {
  .industry-uniforms h4 {
    margin-top: 0;
    font-size: 2rem;
  }
}
.industry-uniforms p {
  text-align: justify;
}
@media screen and (min-width: 992px) {
  .industry-uniforms p {
    width: 90%;
  }
}

.hospital h4 {
  color: #08314b;
  font-size: 1.5rem;
  margin-top: 2rem;
}
@media screen and (min-width: 992px) {
  .hospital h4 {
    margin-top: 0;
    font-size: 2rem;
  }
}
.hospital p {
  text-align: justify;
}
.contact {
  margin-top: 2rem;
}
.contact p {
  text-align: justify;
}
@media screen and (min-width: 992px) {
  .contact p {
    width: 95%;
  }
}
.contact__info {
  background-color: #e3e3e3;
  border-radius: 15px;
  margin-top: 1rem;
  padding: 1.5rem 1rem;
}
@media screen and (min-width: 992px) {
  .contact__info {
    width: 95%;
  }
}
.contact__info a {
  display: flex;
  flex-direction: row;
  text-decoration: none;
  color: #000;
}
.contact__info a:not(:first-child) {
  margin-top: 1rem;
}
.contact__info a img {
  margin-right: 10px;
}
.contact__info a h3 {
  font-size: 1.1rem;
  margin-bottom: 0;
  font-weight: 700;
}
.contact__info a p {
  width: 100%;
}

.footer {
  background-color: #08314b;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
  margin-top: 2rem;
  padding: 3rem 1rem;
  color: #fff;
}
@media screen and (min-width: 992px) {
  .footer {
    padding: 3rem 0;
  }
}
.footer p {
  font-weight: 300;
  margin-top: 1.5rem;
}
.footer ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
@media screen and (min-width: 400px) and (max-width: 991px) {
  .footer ul li {
    font-size: 1.1rem;
  }
  .footer ul li a {
    font-weight: 300;
  }
}
.footer a {
  color: #fff;
  text-decoration: none;
}
.footer__offer {
  background-color: #fff;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.6rem 0;
  margin-bottom: 1rem;
}
.footer__offer h5 {
  color: #08314b;
  margin-bottom: 0;
}
.footer__bottom {
  background-color: rgb(5.5421686747, 33.9457831325, 51.9578313253);
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  padding: 0.5rem 0;
  color: #fff;
  text-align: end;
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.5rem 2rem;
}
.footer__bottom a {
  color: #fff;
  text-decoration: none;
}

.wa-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 20px;
  background-color: #25d366;
  border-radius: 50px;
  text-align: center;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}
.wa-float:hover {
  background-color: #08314b;
}/*# sourceMappingURL=main.css.map */