
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins',sans-serif; 
   transition: all 0.5s ease;
}

.sim {
  display: grid;
  grid-template-rows: 1fr 10rem auto;
  grid-template-areas: "main" "." "footer";
  overflow-x: hidden;
  background-image: url(fondb.png);
  min-height: 150px;
  font-family: "Open Sans", sans-serif;
  }


  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color:white;
    box-shadow: 0 2px 4px -1px rgba(207, 127, 127, 0.15);
  }
  .logo {
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
    transition: color .4s;
    width: 50px;
    }
  .navbar-header, .navbar-links {
    display: flex;
    align-items: center;
  }
  
  .navbar-links a {
    color: black;
    text-decoration: none;
    margin-left: 1rem;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }.navbar-links a:hover {
    background-color:	#f13d61;
  }
  
  
  .navbar-toggler {
    display: none;
    cursor: pointer;
  }
  
  .bar {
    width: 25px;
    height: 3px;
    margin: 4px;
    background-color: white;
  }
  
  @media (max-width: 768px) {
    .navbar-links {
        display: none;
    }
  
    .navbar-toggler {
        display: block;
    }
  
    .navbar-links.responsive {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #333;
        width: 100%;
    }
  
    .navbar-links.responsive a {
        display: block;
        text-align: left;
        margin: 1rem;
    }
  }
.main{
  display: flex;
  min-height: 80vh;
  align-items: center;
  justify-content: center;
  background-image: url(fondb.png);

  }
  




  
body .footer {
  z-index: 1;
  --footer-background: #f13d61;
  display: grid;
  position: relative;
  grid-area: footer;
  min-height: 12rem;
}

body .footer .bubbles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1rem;
  background: var(--footer-background);
  filter: url("#blob");
}

body .footer .bubbles .bubble {
  position: absolute;
  left: var(--position, 50%);
  background: var(--footer-background);
  border-radius: 100%;
  -webkit-animation: bubble-size var(--time, 4s) ease-in infinite var(--delay, 0s), bubble-move var(--time, 4s) ease-in infinite var(--delay, 0s);
  animation: bubble-size var(--time, 4s) ease-in infinite var(--delay, 0s), bubble-move var(--time, 4s) ease-in infinite var(--delay, 0s);
  transform: translate(-50%, 100%);
}

body .footer .content {
  padding: 6rem 1rem 2rem;
  background: var(--footer-background);
  z-index: 2;
}

.footer .content .container {
  max-width: 768px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.5rem;
  color: #fff;
}

.content h2 {
  margin-bottom: .25rem;
  font-size: 2.25rem;
}

.content span {
  font-size: .875rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  column-gap: 2rem;
  transition: all 150ms ease-out;
  justify-content: center;
}

.footer__links .footer__link {
  transition: all 150ms ease-out;
  display: inline-block;
  color: #fff;
}

.footer__link:hover:after {
  width: 100%;
}

.footer__link:after {
  content: '';
  display: block;
  margin: auto;
  height: 2px;
  width: 0px;
  background-color: #fff;
  transition: width .25s ease-out;
}

.footer__socials {
  justify-self: flex-end;
}

.footer__social {
  font-size: 1.25rem;
  margin-right: 1.5rem;
}

.footer__social:hover {
  opacity: 0.8;
}

.footer__copy {
  text-align: center;
  background:#f13d61;
  font-size: .875rem;
  text-align: center;
  color: #dcdcdc;
  padding: 1rem 0 0.5rem;
}

@-webkit-keyframes bubble-size {

  0%,
  75% {
      width: var(--size, 4rem);
      height: var(--size, 4rem);
  }

  100% {
      width: 0rem;
      height: 0rem;
  }
}

@keyframes bubble-size {

  0%,
  75% {
      width: var(--size, 4rem);
      height: var(--size, 4rem);
  }

  100% {
      width: 0rem;
      height: 0rem;
  }
}

@-webkit-keyframes bubble-move {
  0% {
      bottom: -4rem;
  }

  100% {
      bottom: var(--distance, 10rem);
  }
}

@keyframes bubble-move {
  0% {
      bottom: -4rem;
  }

  100% {
      bottom: var(--distance, 10rem);
  }
}

@media screen and (max-width: 767px) {
  .footer .content {
      padding: 0 1.5rem;
  }

  .footer .content .container {
      grid-template-columns: repeat(2, 1fr);
  }

  .content h2 {
      font-size: 1.5rem;
  }

  .content span {
      font-size: .813rem;
  }

  .footer__links {
      flex-direction: column;
      row-gap: 1.5rem;
  }

  .footer__socials {
      justify-self: flex-start;
  }
}

@media screen and (max-width: 567px) {
  .footer .content .container {
      grid-template-columns: repeat(1, 1fr);
      row-gap: 3.5rem;
  }
}
.container{
  max-width: 950px;
  width: 100%;
  overflow: hidden;
  padding: 80px 0;
}

.card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 50px 60px;
  box-shadow: 0 0 10px #ccc;
  display: flex;
  flex-direction: column;
  
}
.container .card:hover{
  transform: translateY(-15px);
  }
.card .image {
  width: 220px;
  height: 220px;
  padding: 3px;
  border: 3px solid #fff ;
  background: #f13d61;
  border-radius: 31% 69% 70% 30%/ 30% 30%  70%  70%;
  margin-bottom: 20px;
}
.card .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}
.card h3 {
  text-align: center;
}
.card p {
  color: orange;
  text-align: center;
}
.swiper-container {
  position: relative;
  margin: 0 auto;
  width: 100%;
}
.swiper {
  margin: 0 auto;
  cursor: grab;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-button-next{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: orange;
  box-shadow: 0 0 10px #ccc;
  margin-right: 80px; 
}
.swiper-button-prev {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: orange;
  box-shadow: 0 0 10px #ccc;
  margin-left: 80px;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
  font-weight: bold;
  color: #000;
}
.swiper-button-next:hover {
  transform: scale(1.2) translateX(80%);
}
.swiper-button-prev:hover {
  transform: scale(1.2) translateX(-80%);
}
.swiper-button-next {
  transform: translateX(100%);
}
.swiper-button-prev {
  transform: translateX(-100%);
}
.swiper-pagination {
  transform: translateY(200%);
}
.swiper-pagination-bullet {
  background: #f13d61;
  width: 15px;
  height: 15px;
}
.swal-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.swal-button--danger {
  background-color: #f44336;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  margin-left: 1rem;
  cursor: pointer;
}

.swal-button--danger:hover {
  background-color: #c62828;
}
