@font-face {
    font-family: 'argent';
    src: url('/static/fonts/Argent_CF/ArgentCF-Regular.woff2') format('woff2'),
         url('/static/fonts/Argent_CF/ArgentCF-RegularItalic.woff2') format('woff2'),
         url('/static/fonts/Argent_CF/ArgentCF-Bold.woff2') format('woff2'),
         url('/static/fonts/Argent_CF/ArgentCF-Thin.woff2') format('woff2');

    font-weight: normal;
    font-style: normal;
}

/* root colors */
:root {
  --primary-color: #ffffff;
  --secondary-color: #eed3d9;
  --secondary-color-bold: #9a737f;
  --main-font: 'argent',ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --nomal-font: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

body {
  font-family: var(--main-font);
}

.normal-font {
  font-family: var(--nomal-font)
}

.navbar {
  background-color: var(--primary-color);
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.bg-primary {
  background-color: var(--primary-color);
}

.bg-secondary {
  background-color: var(--secondary-color);
}

.hover\:bg-secondary:hover {
  background-color: var(--secondary-color);
}

.text-secondary-bold {
  color: var(--secondary-color-bold);
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--primary-color);
  padding: 10px;
  border-radius: 5px;
  text-align: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(83, 58, 75, 0.64);
}

.p-card {
  padding: 0rem 3rem 3rem 3rem;
}

.rounded-carousel {
  /* border-radius: 0% 0% 0% 0% / 0% 0% 0% 0%; */
  border-radius: 0 0 0rem 0rem;
}

.rounded-card {
  border-radius: 4rem;
}

.rounded-comment {
  border-radius: 2.5rem;
}

.rounded-image {
  z-index: 100;
  border-radius: 6rem;
}

.h-image {
  height: 35rem;
}

.comment-hr {
  display: flex;
  width: 100%;
  color: black;
  height: 2px;
  background-color:black;
  margin-bottom: 1rem;
}

.footer-hr {
  display: flex;
  width: 100%;
  color: black;
  height: 2px;
  background-color:black;
  margin-bottom: 1rem;
}

.footer-icons {
  width: 100%;
  height: 100%;
}

.footer-link {
    text-decoration: none;
    color: inherit;
}

.list-circle {
  list-style: circle;
}

.duration-carousel {
  transition-duration: 2s;
}

.delay-carousel {
  animation-delay: 3s;
}

.right-flower-1 {
  right: 65%;
}

.width-flower-1 {
  width: 80%;
}

.top-flower-1 {
  top: 70%;
}

.width-flower-2 {
  width: 40%;
}

.top-flower-2 {
  top: 250%;
}

.left-flower-2 {
  z-index: 1;
  left: 80%;
}

.transformX {
  transform: scaleX(-1);
}

.top-flower-3 {
  z-index: 1;
  top: 310%;
}

.section-border-end {
  clip-path: ellipse(60% 100% at 50% 100%);
  z-index: -1;
}

.section-border {
  clip-path: ellipse(60% 50% at 50% 50%);
  z-index: -1;
}

@media (max-width: 1550px) {
  .flower {
    display: none;
  }

  .section-border-end {
    clip-path: ellipse(130% 100% at 50% 100%);
    z-index: -1;
  }

  .section-border {
    clip-path: ellipse(130% 50% at 50% 50%);
    z-index: -1;
  }
}

@media (min-width: 1300px) {
  .width-flower-1 {
    width: 40%;
  }
  .right-flower-1 {
    right: 80%;
  }

  .left-flower-2 {
    left: 80%;
  }

}

@media (min-width: 1725px) {
  .width-flower-1 {
    width: 30%;
  }

  .width-flower-2 {
    width: 30%;
  }

  .top-flower-2 {
    top: 250%;
  }

  .left-flower-2 {
    left: 80%;
  }

  .right-flower-1 {
    right: 80%;
  }

}

@media (min-width: 2200px) {
  .width-flower-1 {
    width: 30%;
  }
}

.swiper-wrapper {
  width: 100%;
  height: max-content !important;
  padding-bottom: 64px !important;
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
  position: relative;
}
.swiper-pagination-bullet {
  background: #4f46e5;
}

