body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4e5b7;
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: #f4e5b7;
}

.header img {
  height: 100px;
}

.header h1 {
  margin-left: 20px;
  font-size: 24px;
}

.main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px;
  background-color: #00a1d6;
  position: relative;
}

.main::before,
.main::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}

.main::before {
  top: 0;
  left: -50px;
  border-width: 0 50px 50px 0;
  border-color: transparent #00a1d6 transparent transparent;
}

.main::after {
  bottom: 0;
  right: -50px;
  border-width: 50px 0 0 50px;
  border-color: transparent transparent transparent #00a1d6;
}

.cardBoba {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

section {
  padding: 2rem;
}

.footer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px;
  background-color: #f4e5b7;
  font-size: 14px;
}

.footer div {
  text-align: left;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin: 5px 0;
}

.footer .contact {
  text-align: right;
  padding-right: 120px; /* Added padding-right */
}

.footer .contact p {
  margin: 1px 0;
}

.footer .contact .social-icons img {
  width: 20px;
  margin: 0 5px;
}

.container {
  position: relative;
  max-width: 1200px;
  width: 100%;
  padding: 40px;
  margin: 0 auto;
  transition: .5s ease-in-out;
}


.container .box {
  padding: 110px 30px;
  overflow: hidden;
}

.image img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  opacity: .8;
  border: 3px solid #fff;
}

.card {
  position: relative;
  width: 350px;
  height: 350px;
  background: transparent;
  box-shadow:
    inset 20px 20px 20px rgba(0, 0, 0, .05),
    5px 25px 20px rgba(0, 0, 0, .05),
    5px 20px 30px rgba(0, 0, 0, .05),
    inset -20px -20px 25px rgba(255, 255, 255, .9);
  border-radius: 25px;
  transition: .5s ease-in-out;
}

.card:hover {
  border-radius: 0;
}

.card::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 65px;
  width: 35px;
  height: 35px;
  background: #fff;
  border-radius: 50%;
  opacity: .9;
}

.card::after {
  content: '';
  position: absolute;
  top: 90px;
  left: 85px;
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 50%;
  opacity: .9;
}

.card .card-content {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 30px;
}

.card-content .type {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 10px;
  color: black;
}

.type .name {
  font-size: 20px;
  font-weight: 600;
}

.type .name2 .description {
  font-size: 15px;
  font-weight: 500;
}

.box .swiper-button-next,
.box .swiper-button-prev {
  color: black;
}

.box .swiper-button-next {
  right: 0;
}

.box .swiper-button-prev {
  left: 0;
}

.box .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: black;
}