@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
.simple-section {
  padding: 50px 30px;
  position: relative;
}
.simple-section.bg-light-purple {
  background: linear-gradient(135deg, #fce4ec 0%, #ffffff 50%, #f3e5f5 100%);
}

.section-title.text-center {
  max-width: 800px;
  margin: auto;
}
.section-title h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 70px;
  color: #111827;
  font-family: "Playfair Display", serif;
  margin-bottom: 24px;
}
.section-title h1 span {
  color: #1976d2 !important;
}
.section-title h2 {
  font-size: 46px;
  font-weight: 700;
  line-height: 41px;
  color: #111827;
  font-family: "Playfair Display", serif;
  margin-bottom: 24px;
}
.section-title h3 {
  font-size: 25px;
  font-weight: 600;
  color: #111827;
  font-family: "Playfair Display", serif;
  margin-bottom: 24px;
}
.section-title h3 span {
  color: #d1d5db;
}
.section-title p {
  color: #485160;
  font-size: 22px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 20px;
}
.section-title p span {
  font-size: 20px;
  color: #d1d5db;
}
.section-title h2 {
  font-size: 46px;
  color: #121c30;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 47px;
  margin-bottom: 20px;
}
.section-title h4 {
  font-size: 19px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  margin-bottom: 10px;
  color: #111827;
}
.section-title h6 {
  font-size: 24px;
  line-height: 26px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #d97748;
  font-family: "Montserrat", sans-serif;
}

.divider {
  width: 100%;
  background: #d1d5db;
  height: 1px;
}

div::-webkit-scrollbar {
  width: 4px;
}

div::-webkit-scrollbar-track {
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
}

div::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 767px) {
  .simple-section {
    padding: 50px 20px;
  }
  .section-title h1 {
    font-size: 46px;
    line-height: 51px;
    margin-bottom: 15px;
  }
  .section-title p {
    font-size: 19px;
  }
  .section-title h6 {
    font-size: 18px;
  }
  .simple-section {
    padding: 50px 20px;
  }
}
.button {
  display: inline-block;
  padding: 12px 24px;
  text-align: center;
  border: 1px solid transparent;
  font-size: 20px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s ease;
}
.button.button-primary {
  background-color: #d92675;
  color: #fff;
}
.button.button-primary:hover, .button.button-primary:focus {
  border-color: #d92675;
  background-color: transparent;
  color: #d92675;
}
.button.button-green {
  background-color: #17a74c;
  color: #ffffff;
  border-radius: 12px;
  width: 100%;
}
.button.button-outline-primary {
  border-color: #d92675;
  color: #d92675;
}
.button.button-outline-primary:hover, .button.button-outline-primary:focus {
  border-color: #d92675;
  background-color: #d92675;
  color: #fff;
}
.button.button-outline-yellow {
  border-color: #f59e0b;
  color: #d97748;
}
.button.button-outline-yellow:hover, .button.button-outline-yellow:focus {
  border-color: #d92675;
  background-color: #d92675;
  color: #fff;
}
.button.button-round {
  border-radius: 50px;
}

.button {
  position: relative;
  overflow: hidden;
}
.button::before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.1);
  width: 10%;
  height: 25%;
  border-radius: 50%;
  z-index: 1;
  top: 35%;
  left: 45%;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.button:hover::before {
  -webkit-transform: scale(12);
  transform: scale(12);
  -webkit-transition: border-radius 0.5s 0.5s, -webkit-transform 0.5s;
  transition: border-radius 0.5s 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, border-radius 0.5s 0.5s;
  transition: transform 0.5s, border-radius 0.5s 0.5s, -webkit-transform 0.5s;
}
.button:hover::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .button {
    font-size: 16px;
  }
}
.white-card {
  padding: 25px;
  background-color: #ffffff;
  border-radius: 12px;
  min-height: 260px;
}
.white-card .bg-icon {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  margin-bottom: 10px;
}
.white-card .bg-icon span {
  font-size: 20px;
}
.white-card .bg-icon.primary {
  background-color: #e53a8b;
}
.white-card .bg-icon.secondary {
  background-color: #e98d09;
}

.product-card {
  box-shadow: 0 4px 12px #e5e5e5;
  border-radius: 20px;
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
}
.product-card .pt-img {
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.product-card .pt-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}
.product-card .pt-img:hover img {
  transform: scale(1.1);
}
.product-card .info {
  padding: 25px;
  background-color: #ffffff;
  border-radius: 0 0 20px 20px;
}
.product-card .type {
  padding: 2px 11px;
  border-radius: 15px;
  background: #d92675;
  display: inline;
  position: absolute;
  top: 20px;
  right: 20px;
  color: #ffffff;
  font-size: 18px;
}

.feature-card {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.feature-card .feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.feature-card .feature-icon.pink {
  background: linear-gradient(to bottom right, #fbcfe8, #f9a8d4);
}
.feature-card .feature-icon.pink i {
  font-size: 30px;
  color: #db2777;
}
.feature-card .feature-icon.purple {
  background: linear-gradient(to bottom right, #e9d5ff, #d8b4fe);
}
.feature-card .feature-icon.purple i {
  font-size: 30px;
  color: #9333ea;
}
.feature-card .feature-icon.rose {
  background: linear-gradient(to bottom right, #fecdd3, #fda4af);
}
.feature-card .feature-icon.rose i {
  font-size: 30px;
  color: #e11d48;
}
.feature-card .rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.feature-card .rating i {
  color: #f59e0b;
  font-size: 22px;
}
.feature-card .feature-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: start;
  color: #485160;
  font-family: "Montserrat", sans-serif;
}
.feature-card .feature-author {
  display: flex;
  align-items: center;
  gap: 20px;
}
.feature-card .feature-author .bg-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(to right, #fbcfe8, #e9d5ff);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-card .feature-author .bg-icon i {
  color: #db2777;
  font-size: 25px;
}
.feature-card .feature-author .author-info h4 {
  font-weight: 600;
  color: #111827;
  font-family: "Playfair Display", serif;
  font-size: 16px;
  margin-bottom: 5px;
  text-align: start;
}
.feature-card .feature-author .author-info p {
  color: #485160;
  font-family: "Montserrat", sans-serif;
  margin: 0;
  font-size: 14px;
  text-align: start;
}

.hero-section {
  background: linear-gradient(90deg, rgb(245, 228, 235) 0%, rgb(249, 230, 209) 46%, rgb(249, 230, 209) 100%);
}

.hero-img img {
  width: 100%;
  border-radius: 25px;
  height: 500px;
}

.about-section {
  background-color: #fef5fa;
}
.about-section .about-img {
  position: relative;
}
.about-section .about-img img {
  width: 100%;
  border-radius: 25px;
  height: 450px;
}
.about-section .about-img .top-circle {
  position: absolute;
  top: -25px;
  left: -30px;
  background-color: #d92675;
  opacity: 0.8;
  width: 96px;
  height: 96px;
  border-radius: 50%;
}
.about-section .about-img .bottom-box {
  position: absolute;
  bottom: -25px;
  right: -30px;
  background-color: #f59e0b;
  opacity: 0.8;
  width: 128px;
  height: 128px;
  border-radius: 12px;
}

.consultation-card {
  background: linear-gradient(to right, #fef6fb, #fffbea);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  max-width: 600px;
  margin: 0px auto;
}

.two-btns {
  display: flex;
  gap: 20px;
}

.contact-section {
  background-color: #fdc3be;
  padding: 70px 30px;
}
.contact-section .social-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}
.contact-section .social-links .social-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-section .social-links .social-link i {
  color: #111827;
  font-size: 25px;
}

.btn-group {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-methods .contact-method {
  display: flex;
  align-items: center;
  padding: 1rem;
  gap: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.contact-methods .contact-method .bg-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #fbcfe8, #e9d5ff);
}
.contact-methods .contact-method .bg-icon i {
  font-size: 25px;
  color: #db2777;
}
.contact-methods .contact-method .method-icon {
  font-size: 1.5rem;
}
.contact-methods .contact-method .method-details .method-title {
  font-weight: 500;
  color: #485160;
  margin: 0;
}
.contact-methods .contact-method .method-details .method-value {
  color: #111827;
  font-weight: 600;
  margin: 0;
}

.contact-form {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  border: none;
}
.contact-form label {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
}

@media screen and (max-width: 768px) {
  .two-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
  }
  .hero-section .hero-img img {
    height: 300px;
  }
  .about-section .about-img img {
    width: 100%;
    border-radius: 25px;
    height: 350px;
    margin-bottom: 40px;
  }
  .about-section .about-img .top-circle {
    position: absolute;
    top: -25px;
    left: -20px;
    background-color: #d92675;
    opacity: 0.8;
    width: 75px;
    height: 75px;
    border-radius: 50%;
  }
  .about-section .about-img .bottom-box {
    position: absolute;
    bottom: 14px;
    right: -17px;
    background-color: #f59e0b;
    opacity: 0.8;
    width: 100px;
    height: 100px;
    border-radius: 12px;
  }
  .slider {
    position: relative;
    overflow: hidden;
  }
}
body {
  font-family: "Calibri";
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #858585;
}

img {
  max-width: 100%;
}

header {
  padding: 10px 30px;
  background-color: #fdc3be;
}
header .nav-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  align-items: c;
}
header .navbar-brand {
  flex-shrink: 0;
}
header .navbar-brand img {
  width: 70px;
}
header.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 5;
}
header .navbar-nav .nav-item .nav-link {
  color: #485160;
  padding: 10px 16px;
  font-size: 20px;
  font-weight: 500;
}
header .navbar-nav .nav-item .nav-link:hover, header .navbar-nav .nav-item .nav-link:focus {
  color: #d92675;
}
header .navbar-right .navbar-right-link {
  display: flex;
  align-items: center;
  font-size: 14px;
  gap: 12px;
}
header .navbar-right .navbar-right-link .languages i {
  font-size: 14px;
}

.menu {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: none;
  padding: 0;
  position: absolute;
}

.line {
  fill: none;
  stroke: black;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}

.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}
.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.nav-wrap button svg {
  width: 40px;
  position: absolute;
  top: 0;
  left: 279px;
}

header .navbar-right .navbar-nav .nav-item {
  width: 100%;
}
header .navbar-right .navbar-nav .nav-item a {
  width: 100% !important;
}
header .navbar-right .navbar-right-link {
  align-items: start;
  margin-left: 10px;
}

.dropdown-language button,
.dropdown-country button {
  background: transparent !important;
  color: black !important;
  border: none;
}
.dropdown-language button:hover,
.dropdown-country button:hover {
  background-color: none;
}

@media screen and (max-width: 767px) {
  .menu {
    display: block;
    align-items: center;
    margin-top: 17px;
  }
}
footer {
  background-color: #171f2e;
  padding: 70px 30px;
}
footer .footer-logo {
  margin-bottom: 20px;
}
footer .footer-logo img {
  width: 80px;
}
footer .social-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
footer .social-links a i {
  background: #d92675;
  color: #ffffff;
  padding: 10px;
  font-size: 25px;
  border-radius: 12px;
}
footer .ft-links {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer .ft-links li {
  margin-bottom: 15px;
  display: flex;
  gap: 10px;
}
footer .ft-links li i {
  color: #d1d5db;
}
footer .ft-links li h6 {
  color: #d1d5db;
  font-size: 20px;
  font-family: "Playfair Display", serif;
}
footer .ft-links li a {
  font-size: 16px;
  color: #d1d5db;
  font-family: "Montserrat", sans-serif;
}
footer .form {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
footer .form input {
  width: 300px;
  background-color: transparent;
  border: 1px solid #d1d5db;
  outline: none;
  padding: 12px;
  border-radius: 30px;
}
footer .form input::placeholder {
  color: #d1d5db;
}
footer .footer-note {
  color: #d1d5db;
  font-size: 20px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 50px 20px;
  }
  footer .form {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
}

/*# sourceMappingURL=style.css.map */
