/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Inter", Arial;
  color: #1A1A18;
}

a {
  color: #EE2066;
  text-decoration: none;
}

a:hover {
  color: #691015;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poetsen One", sans-serif;
  font-weight: 400;
  color: #691015;
}

h2 {
  font-size: 48px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader::before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-top-color: #EE2066;
  border-bottom-color: #EE2066;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #EE2066;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #691015;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#header .navHolder {
  background: #fff;
  padding: 16px 40px;
  margin: 0 30px;
  border-radius: 40px;
  transition: all 0.3s ease-in-out;
}

#header.header-scrolled .navHolder {
  padding: 0;
  background: transparent !important;
  transition: all 0.3s ease-in-out;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 60px;
}

@media (max-width: 1170px) {
  #header .navHolder {
    padding: 16px;
    margin: 0 8px;
  }
}

@media (max-width: 991px) {
  #hero .container {
    padding-top: 100px !important;
    padding-bottom: 20px !important;
  }

  #hero h1 {
    font-size: 40px !important;
  }

  #hero h2 {
    font-size: 28px !important;
  }
}

@media (max-width: 480px) {
  #header .navHolder {
    padding: 16px;
    margin: 0 8px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 16px;
  font-weight: 500;
  color: #0a1023;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
  margin-top: 1px;
  color: #EE2066;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #EE2066;
}

.navbar .getstarted, .modal .getstarted,
.navbar .getstarted:focus, .modal .getstarted:focus {
  padding: 10px 24px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 16px;
  background: #EE2066;
  font-weight: 500;
}

.navbar .getstarted:hover, .modal .getstarted:hover,
.navbar .getstarted:focus:hover, .modal .getstarted:focus:hover {
  color: #fff;
  background: #691015;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 8px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 500;
  color: #0a1023;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #EE2066;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #000;
  font-size: 40px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #0a1023;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(245, 250, 255, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 16px;
  color: #0a1023;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #EE2066;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  display: inline-block;
  margin: 15px;
  color: #fff;
  text-align: center;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #47b2e4;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  position: relative;
  width: 100%;
  padding-top: 0;
}

#hero .container {
  padding-top: 180px;
  padding-bottom: 100px;
}

#hero .hero-background {
  position: relative;
  background: #FFBCC9;
  background: linear-gradient(180deg,rgba(255, 188, 201, 1) 0%, rgba(255, 220, 220, 1) 40%);
}

#hero .hero-background::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 34px;
  bottom: -34px;
  left: 0px;
  background: transparent url(../img/hero-bottom.png) center top repeat-x;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 65px;
  font-weight: 400;
  line-height: 120%;
  color: #EE2066;
}

#hero h2 {
  color: #691015;
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 400;
  line-height: 120%;
}

#hero .btn-get-started {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  padding: 10px 24px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: #EE2066;
}

#hero .btn-get-started:hover {
  background: #691015;
}

.flip-holder {
  display: inline-block;
  perspective: 1000px;
  overflow: hidden;
}
  
.flip-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  
  transform-style: preserve-3d;
  transition: transform 0.8s ease-in-out;
}
  
.flip-card img {
  grid-area: 1 / 1;
  backface-visibility: hidden;
  max-width: 100%;
  height: auto;
}
  
.flip-card .back {
  transform: rotateY(180deg);
}


#hero .animated {
  max-width: 90%;
  margin: auto;
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #hero {
    text-align: center;
  }

  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }

  #header .logo img {
    max-height: 40px;
  }
}

@media (max-width: 380px) {
  #header .logo img {
    max-height: 30px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 100px 0;
  overflow: hidden;
}

.row-flex {
  display: flex;
  flex-wrap: wrap;
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.embed-responsive::before {
  display: block;
  content: "";
}
.embed-responsive-item {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  border: 0;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.embed-responsive-4by3 {
  padding-top: 75%;
}

@media (max-width: 991px) {
  section {
    padding: 50px 0;
  }
}

.detailCake-holder {
  padding: 20px;
  height: 100%;
  text-align: center;
  color: #691015;
  font-family: "Poetsen One", sans-serif;
  background: #fff;
  border-radius: 24px;
  transition: all 0.3s ease-in-out;
}

.detailCake-holder:hover {
  -webkit-box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.2); 
  box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.2);
  transition: all 0.3s ease-in-out;
}

.detailCake-holder a {
  display: block;
  margin-bottom: 12px;
}

.homeCake-holder {
  padding: 20px;
  margin-bottom: 30px;
  text-align: center;
  color: #1A1A18;
  background: #FFCBD5;
  background: linear-gradient(180deg,rgba(255, 203, 213, 1) 0%, rgba(255, 232, 232, 1) 40%);
  border-radius: 24px;
  transition: all 0.3s ease-in-out;
}

.homeCake-holder:hover {
  -webkit-box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.2); 
  box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.2);
  transition: all 0.3s ease-in-out;
}

.homeCake-holder a {
  color: #1A1A18;
}

.homeCake-holder img {
  display: block;
  width: 100%;
}

.homeCake-holder strong {
  display: block;
  font-size: 22px;
  color: #691015;
  font-family: "Poetsen One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.subpage-holder {
  background: #FFCBD5;
  background: linear-gradient(180deg,rgba(255, 203, 213, 1) 0%, rgba(255, 225, 225, 1) 40%);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  position: relative;
}

#footer .footer-background {
  position: relative;
  background: #FFBECA;
  background: linear-gradient(180deg,rgba(255, 190, 202, 1) 0%, rgba(255, 220, 220, 1) 40%);
}

#footer .footer-background::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 34px;
  top: -34px;
  left: 0px;
  background: transparent url(../img/footer-top.png) center bottom repeat-x;
}

#footer a {
  color: #1A1A18;
  transition: 0.3s;
}

#footer a:hover {
  text-decoration: underline;
}

#footer .footer-top {
  position: relative;
  padding-top: 60px;
}

#footer .footer-phone {
  display: block;
  font-family: "Poetsen One", sans-serif;
  font-weight: 400;
  color: #691015;
  font-size: 30px;
}

#footer .footer-phone i.bi {
  color: #EE2066;
}

#footer .footer-top iframe {
  display: block;
  border: 0;
  width: 100%;
  height: 320px;
  border-radius: 12px;
}

#footer .footer-bottom {
  padding: 40px 0;
  font-size: 12px;
  color: #000;
  font-weight: 500;
}

.subpage-body #footer {
  margin-top: -50px;
}