:root {
  --color-primary-1: #532231;
  --color-secondary-1: #cf8c84;
  --color-primary-2: #606757;
  --color-secondary-2: #A4A67B;
  --color-primary-3: #eee4c6;
  --color-primary-4: #F9DBE5;
  --color-primary-5: #E7F3F9;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --border-radius-default: 17px;
  --box-shadow-block: 0px 10px 30px 0px rgba(0, 0, 0, 0.09);
  --box-shadow-block-strong: 0px 12px 37px 0px rgba(0, 0, 0, 0.175);
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.ttf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Bold.ttf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "RetroSignature";
  src: url("../fonts/RetroSignature.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/PlayfairDisplay-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/PlayfairDisplay-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
html,
body {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: var(--color-black);
  height: 100%;
  width: 100%;
  margin: 0px;
  padding: 0px;
}

h1:not(.ff-rs),
h2:not(.ff-rs),
h3:not(.ff-rs) {
  font-family: "Playfair Display", serif;
}

h1 {
  font-size: 80px;
}

.fs-75 {
  font-size: 75px;
}

.fs-20 {
  font-size: 20px;
}

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

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

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

.ff-rs {
  font-family: "RetroSignature", sans-serif;
}

.text-pink {
  color: var(--color-primary-1);
}

.social-icon {
  width: 45px;
}

.line {
  background-color: var(--color-primary-1);
  height: 1px;
}

.d-pad {
  padding-top: 80px;
  padding-bottom: 80px;
}

.btn-cta {
  padding: 14px 60px;
  font-size: 20px;
  border: none;
  border-radius: var(--border-radius-default);
  background: var(--color-primary-1);
  color: var(--color-white);
  display: inline-block;
  transition: all 0.2s ease-in;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-cta:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: block;
  transition: all 0.3s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}
.btn-cta:after {
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background-color: var(--color-secondary-1);
  border-radius: 50%;
  display: block;
  transition: all 0.3s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}
.btn-cta:hover {
  color: var(--color-white);
}
.btn-cta:hover:before {
  top: -35%;
  background-color: var(--color-secondary-1);
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
.btn-cta:hover:after {
  top: -45%;
  background-color: var(--color-secondary-1);
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

a {
  text-decoration: none;
  color: unset;
}
a:hover {
  color: unset;
}

form {
  padding: 35px;
  border-radius: var(--border-radius-default);
  border: 1px solid var(--color-white);
  background-color: var(--color-primary-1);
}
form .form-control {
  border-radius: var(--border-radius-default);
  background-color: #9E7F85;
}

.page-header {
  position: relative;
  min-height: 300px;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
  align-items: center;
  background-image: url("../images/header-01.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.page-header .container {
  position: relative;
  z-index: 1;
}
.page-header .page-header__text {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  padding: 1.35rem 2rem;
  text-align: center;
  background-color: rgba(249, 219, 229, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--border-radius-default);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 6px 24px rgba(83, 34, 49, 0.08);
}
.page-header h1 {
  color: var(--color-primary-1);
  margin-bottom: 0.75rem;
}
.page-header p {
  color: var(--color-primary-1);
  font-weight: 500;
  margin-bottom: 0;
}

.navbar {
  z-index: 99;
  position: sticky;
  top: 0;
  background-color: var(--color-primary-4);
  transition: 0.5s;
}
.navbar .menu-link-mobile {
  font-size: 25px;
}
.navbar .offcanvas-body {
  padding-top: 7rem;
}
.navbar .offcanvas-end {
  transition: 0.5s;
}
.navbar .nav-link {
  color: var(--color-primary-1);
  padding: 10px 70px !important;
}
.navbar .logo-box {
  border: 1px solid var(--color-primary-1);
  background-color: var(--color-white);
  padding: 20px 10px !important;
  margin: -5px 0;
  border-radius: 50%;
  transition: 0.5s;
}
.navbar .logo {
  width: 120px;
}
.navbar.scrolled {
  border-bottom: 1px solid var(--color-primary-1);
}
.navbar.scrolled .logo-box {
  padding: 5px 10px 15px !important;
  margin: -13px 0 -55px;
  border-radius: 0 0 50% 50%;
}

footer {
  padding-bottom: 45px;
}
footer .footer-divider {
  width: 55%;
  min-width: 280px;
  max-width: 720px;
  margin: 45px auto;
  border: 0;
  border-top: 2px solid var(--color-primary-4);
  opacity: 1;
}

@media (max-width: 574px) and (min-width: 0px) {
  .btn-cta {
    padding: 10px 40px;
  }
  form {
    padding: 25px;
  }
}

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