/*
[Master Stylesheet]
Theme Name:     EverLove - Multipurpose Wedding Planner Template HTML
Version:        1.0
Author:         cmBThemes
*/
/*
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
#1.0 - Landing page

*/
.text-cus-primary {
  color: var(--primary-color) !important;
}

.text-cus-secondary {
  color: var(--secondary-color) !important;
}

.text-cus-white {
  color: var(--white-color) !important;
}

.text-cus-text {
  color: var(--text-color) !important;
}

.text-cus-cta {
  color: var(--cta-color) !important;
}

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

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

.bg-cus-white {
  background-color: var(--white-color) !important;
}

.bg-cus-text {
  background-color: var(--text-color) !important;
}

.bg-cus-cta {
  background-color: var(--cta-color) !important;
}

.border-cus-primary {
  border-color: var(--primary-color) !important;
}

.border-cus-secondary {
  border-color: var(--secondary-color) !important;
}

.border-cus-secondary {
  border-color: var(--secondary-color) !important;
}

.border-cus-white {
  border-color: var(--white-color) !important;
}

.border-cus-text {
  border-color: var(--text-color) !important;
}

.border-cus-cta {
  border-color: var(--cta-color) !important;
}

.ifCus {
  width: 100%;
  height: 100%;
}

.social {
  font-size: 1.3rem;
}
.social a {
  display: inline-block;
  margin: 5px;
  transition: color 0.3s;
}
.social a:hover {
  color: var(--primary-color);
}

/* Section Title */
.section-title {
  background-image: url("../images/data/bg-blog-title01.png"), url("../images/data/bg-blog-title02.png"), url("../images/data/bg-blog-title03.png"), url("../images/data/bg-blog-title04.png");
  background-position: right top, left bottom, right 20% bottom 0, left 15% top 0;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-size: 180px, 180px, 180px, 180px;
  background-color: var(--secondary-color);
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.section-title .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.5;
  width: 98%;
  z-index: 99;
}
@media (min-width: 768px) {
  .section-title .content {
    width: 96%;
  }
}
@media (min-width: 992px) {
  .section-title {
    background-size: 220px, 220px, 220px, 220px;
  }
  .section-title .content {
    width: 94%;
  }
}
@media (min-width: 1200px) {
  .section-title {
    background-size: 260px, 260px, 260px, 260px;
  }
  .section-title .content {
    width: 92%;
  }
}
@media (min-width: 1400px) {
  .section-title {
    background-size: 300px, 300px, 300px, 300px;
  }
  .section-title .content {
    width: 90%;
  }
}

/* Pull Up */
.pull-up {
  position: relative;
  margin-top: -150px;
  background-color: var(--white-color);
}

:root {
  --primary-color: #E7B2A5;
  --secondary-color: #fff1ee;
  --white-color: #FFF9F6;
  --text-color: #4B4B4B;
  --cta-color: #9B6B7E;
  --primary-color-rgb: 231,
  178,
  165;
  --secondary-color-rgb: 255,
  241,
  238;
  --white-color-rgb: 255,
  249,
  246;
  --text-color-rgb: 75,
  75,
  75;
  --cta-color-rgb: 155,
  107,
  126;
  --mask-color: rgba(0, 0, 0, 0.35);
  --font-head: Playfair Display, serif;
  --font-text: Poppins, sans-serif;
  --font-logo: Italiana, sans-serif;
}

*::-webkit-scrollbar {
  width: 0.5rem;
}

*::-webkit-scrollbar-track {
  background: var(--white-color);
}

*::-webkit-scrollbar-thumb {
  background: var(--cta-color);
  border-radius: 999px;
}

*::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--cta-color) var(--white-color);
}

body {
  font-family: var(--font-text);
  background-color: var(--white-color);
}

a {
  text-decoration: none;
  color: var(--cta-color);
  transition: color 0.3s;
}
a:hover {
  color: var(--primary-color);
}

h1.title,
h2.title,
h3.title,
h4.title,
h5.title,
h6.title {
  color: var(--cta-color);
  font-family: var(--font-head);
}

h2.title {
  font-size: 2rem;
}
@media (min-width: 576px) {
  h2.title {
    font-size: 2.2rem;
  }
}
@media (min-width: 768px) {
  h2.title {
    font-size: 2.4rem;
  }
}
@media (min-width: 992px) {
  h2.title {
    font-size: 2.6rem;
  }
}
@media (min-width: 1200px) {
  h2.title {
    font-size: 2.8rem;
  }
}
@media (min-width: 1400px) {
  h2.title {
    font-size: 3rem;
  }
}

/* List Unordered */
.list-unordered {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.list-unordered li {
  padding: 5px;
}

/* List Ordered */
.list-ordered {
  list-style: none;
  counter-reset: circle-counter;
  padding-left: 0;
}
.list-ordered li {
  counter-increment: circle-counter;
  margin-bottom: 20px;
  padding-left: 48px;
  position: relative;
}
.list-ordered li::before {
  content: counter(circle-counter);
  position: absolute;
  left: 0;
  top: -3px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--cta-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--cta-color);
}

/* List Icon */
.list-icon {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.list-icon li {
  padding: 5px;
}
.list-icon li::before {
  font-family: "bootstrap-icons";
  content: "\f27b";
  margin-right: 8px;
  line-height: 1px;
  font-size: 0.7rem;
}

/* Go To Top */
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--cta-color);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 9998;
}
.scroll-top svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}
.scroll-top .progress-ring__background {
  fill: none;
  stroke: var(--cta-color);
  stroke-width: 2;
}
.scroll-top .progress-ring__progress {
  fill: none;
  stroke: var(--primary-color);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 188.4;
  stroke-dashoffset: 188.4;
  transition: stroke-dashoffset 0.2s ease;
}
.scroll-top .scroll-percent {
  font-size: 0.5rem;
  z-index: 2;
}
.scroll-top.show {
  opacity: 1;
  pointer-events: all;
}
.scroll-top:hover {
  background-color: var(--primary-color);
}

/* Preloader */
.preloader {
  background-color: #f1f2f3;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 9999;
  width: 100%;
  height: 100vh;
}
.preloader .infinity-wrapper {
  transform-style: preserve-3d;
  animation: spinPause 5s ease-in-out infinite;
  animation-delay: 3s;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  /* === path === */
  /* === Light === */
}
.preloader .infinity-wrapper svg {
  width: 100px;
  height: 50px;
}
.preloader .infinity-wrapper .infinity-path {
  fill: none;
  stroke: var(--primary-color);
  stroke-width: 14;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  opacity: 0;
  animation: draw 3s ease-in-out forwards, fadein 1s ease-in-out forwards;
}
.preloader .infinity-wrapper .pen-light {
  fill: none;
  stroke: var(--white-color);
  stroke-width: 18;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  filter: blur(6px);
  opacity: 0.8;
  animation: draw 3s ease-in-out forwards, fadeout 1s ease-in-out forwards;
}

/* === Animation infinity === */
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  80% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
  }
}
@keyframes spinPause {
  0% {
    transform: translate(-50%, -50%) rotateX(0deg);
  }
  50% {
    transform: translate(-50%, -50%) rotateX(180deg);
  }
  100% {
    transform: translate(-50%, -50%) rotateX(0deg);
  }
}
/* Main */
.main {
  /* figure */
}
.main figure {
  width: 100%;
  aspect-ratio: 2/1;
  position: relative;
  transition: transform 0.3s;
}
.main figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main figure:hover {
  transform: translateY(-5%);
}
.main .box {
  position: relative;
}
.main .box::before, .main .box::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(var(--primary-color-rgb), 0.55);
  width: calc(100% + 2rem);
  height: calc(100% + 2rem);
  transition: all 0.3s;
}
.main .box::before {
  top: -1.25rem;
  left: -1.25rem;
}
.main .box::after {
  top: -0.75rem;
  left: -0.75rem;
}
.main .box:hover::before, .main .box:hover::after {
  top: -1rem;
  left: -1rem;
}

/* footer */
footer {
  background-image: url("../images/data/bg-hero04.png"), url("../images/data/bg-hero03.png");
  background-repeat: no-repeat, no-repeat;
  background-position: left bottom, right bottom;
  background-size: 80px, 80px;
  min-height: 200px;
  background-color: var(--cta-color);
  color: var(--white-color);
}
footer .content {
  position: relative;
  width: 85%;
}
footer .content::before, footer .content::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(var(--primary-color-rgb), 0.55);
  width: calc(100% + 2rem);
  height: calc(100% + 2rem);
  transition: all 0.3s;
}
footer .content::before {
  top: -1.25rem;
  left: -1.25rem;
}
footer .content::after {
  top: -0.75rem;
  left: -0.75rem;
}
footer .content:hover::before, footer .content:hover::after {
  top: -1rem;
  left: -1rem;
}
footer h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
}
footer .logo {
  height: 60px;
}
@media (min-width: 768px) {
  footer {
    background-size: 100px, 100px;
  }
  footer h3 {
    font-size: 1.6rem;
  }
  footer .content {
    width: 80%;
  }
}
@media (min-width: 992px) {
  footer {
    background-size: 150px, 150px;
  }
  footer h3 {
    font-size: 1.8rem;
  }
  footer .content {
    width: 75%;
  }
}
@media (min-width: 1200px) {
  footer {
    background-size: 200px, 200px;
  }
  footer h3 {
    font-size: 2rem;
  }
  footer .content {
    width: 70%;
  }
}
@media (min-width: 1400px) {
  footer {
    background-size: 250px, 250px;
  }
  footer h3 {
    font-size: 2.2rem;
  }
  footer .content {
    width: 60%;
  }
}

/* custom button */
.btn-cus-primary {
  background-color: var(--cta-color);
  border: 1px solid var(--cta-color);
  padding: 0.5rem 1rem;
  color: #fff;
  border-radius: 0px;
  display: inline-block;
  text-align: center;
}
.btn-cus-primary.active {
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.btn-cus-primary:hover {
  background-color: var(--primary-color) !important;
  color: #fff;
}
.btn-cus-primary:active {
  color: #fff !important;
  border: 1px solid var(--cta-color) !important;
}

.btn-cus-outline-primary {
  background-color: #fff;
  padding: 0.5rem 1rem;
  border: 1px solid var(--primary-color);
  color: #E7B2A5;
  border-radius: 0px;
  display: inline-block;
  text-align: center;
}
.btn-cus-outline-primary:hover {
  background-color: #fff;
  border: 1px solid var(--cta-color);
  color: var(--cta-color);
}/*# sourceMappingURL=style.css.map */