/****Colors****/
/****Fonts****/
/****Screen Sizes****/
@font-face {
  font-family: 'Buttermilk';
  src: url("../fonts/buttermilk.ttf");
}

* {
  padding: 0;
  margin: 0;
  font-family: "Hind", sans-serif;
}

body {
  padding: 0;
  margin: 0;
}

.nopadding {
  padding: 0 !important;
}

.nopaddingleft {
  padding-left: 0 !important;
}

.nopaddingright {
  padding-right: 0 !important;
}

h1, h2, h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

p {
  font-weight: 300;
  font-size: 16px;
  color: #666;
  line-height: 25px;
  margin: 15px 0;
}

@media screen and (min-width: 1500px) {
  p {
    font-size: 17px;
    line-height: 27px;
  }
}

section {
  padding: 75px 0;
  background-color: #fff;
}

.title {
  margin-bottom: 40px;
}

.title .line {
  width: 90px;
  height: 2px;
  background-color: #ff2d55;
  margin: 0 auto;
  display: inline-block;
}

.title h1 {
  font-weight: 700;
  margin-top: 10px;
  font-size: 45px;
  color: #402336;
}

/*PARALLAX HERO CSS*/
/*HERO SINGLE IMAGE*/
.hero-slider {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.hero-menu.hero-slider {
  height: 80vh;
  position: relative;
}
.hero-slider .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(14, 29, 51, 0.7)), to(rgba(14, 29, 51, 0.2)));
  background: linear-gradient(to bottom, rgba(14, 29, 51, 0.7), rgba(14, 29, 51, 0.2));
}

.hero-slider .carousel-cell {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero-slider .carousel-cell .inner {
  text-align: center;
  position: relative;
  z-index: 999;
}

.hero-slider .carousel-cell .inner h1 {
  font-family: "Buttermilk", "Montserrat", sans-serif;
  color: #fff;
  font-size: 18rem;
  font-weight: 400;
  margin: 0;
}

.hero-slider .carousel-cell .inner h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  color: #fff;
  margin: 0;
  letter-spacing: 3px;
  color: white;
}

@media screen and (max-width: 768px) {
  .hero-slider .carousel-cell .inner h1 {
    font-size: 7rem;
    line-height: 8rem;
  }
  .hero-slider .carousel-cell .inner h3 {
    font-size: 2rem;
    letter-spacing: 1px;
  }
}

.hero-slider .flickity-prev-next-button {
  width: 80px;
  height: 80px;
  background: transparent;
}

.hero-slider .flickity-prev-next-button:hover {
  background: transparent;
}

.hero-slider .flickity-prev-next-button .arrow {
  fill: white;
}

.hero-slider .flickity-page-dots {
  bottom: 30px;
}

.hero-slider .flickity-page-dots .dot {
  width: 10px;
  height: 4px;
  border-radius: 50px;
  opacity: 1;
  background: rgba(255, 255, 255, 0.6);
  border: 0 solid white;
  -webkit-transition: ease .3s;
  transition: ease .3s;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
          transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hero-slider .flickity-page-dots .dot.is-selected {
  width: 30px;
  background: #fff;
  border: 0 solid #fff;
}

@media screen and (max-width: 768px) {
  .hero-slider .carousel-cell {
    background-position: center !important;
  }
}

@media screen and (max-width: 768px) {
  .hero-slider .flickity-prev-next-button {
    width: 40px;
    height: 40px;
  }
  .hero-slider .flickity-prev-next-button.previous .flickity-button-icon {
    left: 0% !important;
  }
  .hero-slider .flickity-prev-next-button.next .flickity-button-icon {
    left: 40% !important;
  }
}

.nav-mobile {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 997;
  transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
}

.nav-mobile .hamburger {
  position: absolute;
  top: 30px;
  right: 20px;
  cursor: pointer;
}

.nav-mobile .hamburger i {
  color: #fff;
  font-size: 25px;
}

.nav-mobile .logo {
  margin: auto;
  display: block;
  text-align: center;
}

.nav-mobile .logo img {
  max-width: 140px;
  margin: auto;
}

@media screen and (min-width: 768px) {
  .nav-mobile {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .nav-mobile.scrolled {
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Vertically center the logo and hamburger */
    justify-content: space-between; /* Space between logo and hamburger */
    background-color: #402336;
    height: 100px; /* Adjust the height for the sticky menu */
    padding: 0 20px; /* Horizontal padding */
  }

  .nav-mobile.scrolled .hamburger {
    top: auto; /* Remove top position */
    margin-left: auto; /* Align hamburger icon to the right */
  }

  .nav-mobile.scrolled .logo img {
    max-width: 60px; /* Keep the logo size */
    margin: 0; /* Remove extra margins */
  }
}



.nav-mobile-links {
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 0;
  overflow: hidden;
  background-color: #402336;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-transition: ease .4s;
  transition: ease .4s;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
          transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.nav-mobile-links .logo {
  margin-bottom: 30px;
}

.nav-mobile-links .logo img {
  max-width: 100px;
  margin: auto;
}

.nav-mobile-links .close-btn {
  position: absolute;
  top: 50px;
  right: 20px;
  cursor: pointer;
}

.nav-mobile-links .close-btn i {
  color: #fff;
  font-size: 30px;
}

.nav-mobile-links a {
  font-size: 2rem;
  margin: 10px 0;
  color: #fff;
  outline: none;
}

.nav-mobile-links.opened {
  height: 100%;
  opacity: 1;
  overflow: hidden;
  overflow-y: auto;
}

.navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
}

.navigation .logo img {
  max-width: 180px;
}

@media screen and (min-height: 800px) {
  .navigation .logo img {
    max-width: 180px;
  }
}

.navigation .menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 30vw;
          flex: 1 0 30vw;
}

.navigation .menu li {
  margin: 0 1rem;
}

.navigation .menu li a {
  color: #fff;
  transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
}

.navigation .menu li a:hover, .navigation .menu li a:focus {
  color: #ff2d55;
  text-decoration: none;
}

.navigation .menu li.fb-link {
  margin-left: 20px;
}

.navigation .menu li.fb-link a {
  font-size: 17px;
}

.navigation .menu-1 {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.navigation .logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 20vw;
          flex: 0 1 20vw;
  text-align: center;
}

.navigation .logo img {
  width: 100%;
}

.navigation.scrolled {
  background-color: #402336;
  padding: 10px 0;
  top: 0;
}

.navigation.scrolled .logo img {
  max-width: 60px;
}

/* Increase font size of the phone number */
.phone-number {
    font-size: 1.5em;  /* Adjust size as needed */
    font-weight: bold; /* Optional: make the phone number bold */
}


@media screen and (max-width: 768px) {
  .navigation {
    display: none;
  }
}

.readmore {
  background-color: #66426e;
  border: 1px solid #66426e;
  color: #fff;
  padding-left: 30px;
  padding-right: 30px;
  height: 50px;
  line-height: 50px;
  border-radius: 50px;
  display: inline-block;
  margin-top: 30px;
  font-weight: 600;
  font-size: 16px;
  transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
}

.readmore:hover, .readmore:focus {
  color: #fff;
  text-decoration: none;
  background-color: rgba(255, 45, 85, 0.8);
  border-color: rgba(255, 45, 85, 0.8);
}

.readmore.ghost {
  background-color: transparent;
  color: #402336;
}

.readmore.ghost:hover {
  background-color: #66426e;
  color: #fff;
}

#about .readmore {
  margin-right: 15px;
}

@media screen and (max-width: 768px) {
  #about .readmore {
    margin-right: 0;
    display: block;
  }
}

#menu {
  background-color: #f7f7f7;
  background-image: url("../img/pattern.svg");
  background-blend-mode: color-burn;
}

.menu-link:hover {
  color: #ff2d55; /* Change the color on hover */
  text-decoration: underline; /* Optional underline on hover */
}

.menu-link {
  font-size: 2rem;
  color: #402336;
  text-decoration: underline;
  margin: 0 20px;
}

/* Menu section link styling */
#menu p a {
    color: inherit !important;                 /* Inherit the color from the parent element */
    text-decoration: underline;                /* Adds an underline to the link */
    text-decoration-color: inherit;            /* Matches the underline color to the text color */
}

#menu p a:hover {
    color: inherit !important;                 /* Keeps the text color the same on hover */
    text-decoration-color: inherit;            /* Keeps the underline color the same on hover */
}



.timeline {
  padding: 20px 100px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(auto, 48vw) 4px minmax(auto, 48vw);
      grid-template-columns: minmax(auto, 48vw) 4px minmax(auto, 48vw);
  -ms-grid-rows: (200px)[6];
      grid-template-rows: repeat(6, 200px);
}

.timeline .v_line {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / span 1;
  -ms-grid-row: 1;
  -ms-grid-row-span: 6;
  grid-row: 1/ span 6;
  background-color: #E0E6ED;
}

.timeline .t_item.left .line:before {
  content: '';
  position: absolute;
  left: 0;
  top: -6px;
  width: 16px;
  height: 16px;
  border-radius: 100px;
  background-color: #66426e;
}

.timeline .t_item.right .line:after {
  content: '';
  position: absolute;
  right: 0;
  top: -6px;
  width: 16px;
  height: 16px;
  border-radius: 100px;
  background-color: #66426e;
}

.timeline .t_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.timeline .t_item h4 {
  font-weight: 600;
  color: #b27f2e;
  font-size: 22px;
  color: #402336;
}

.timeline .t_item p {
  font-weight: 500;
}

.timeline .t_item.right {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.timeline .t_item .content {
  width: 400px;
  padding: 0 35px;
}

.timeline .t_item .line {
  width: 70px;
  height: 4px;
  background-color: #E0E6ED;
  position: relative;
}

.timeline .t_item.t_item_1 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/span 1;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/span 1;
}

.timeline .t_item.t_item_2 {
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3/span 1;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/span 1;
}

.timeline .t_item.t_item_3 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/span 1;
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  grid-row: 3/span 1;
}

.timeline .t_item.t_item_4 {
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3/span 1;
  -ms-grid-row: 4;
  -ms-grid-row-span: 1;
  grid-row: 4/span 1;
}

.timeline .t_item.t_item_5 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/span 1;
  -ms-grid-row: 5;
  -ms-grid-row-span: 1;
  grid-row: 5/span 1;
}

.timeline .t_item.t_item_6 {
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3/span 1;
  -ms-grid-row: 6;
  -ms-grid-row-span: 1;
  grid-row: 6/span 1;
}

@media screen and (max-width: 1200px) {
  .timeline {
    padding: 20px 0;
  }
}

@media screen and (max-width: 768px) {
  .timeline {
    padding: 20px;
    -ms-grid-columns: 1fr 4px;
        grid-template-columns: 1fr 4px;
    -ms-grid-rows: (auto)[6];
        grid-template-rows: repeat(6, auto);
  }
  .timeline .t_item.left .line:before {
    content: '';
    position: absolute;
    left: 0;
    top: -6px;
    width: 16px;
    height: 16px;
    border-radius: 100px;
    background-color: #66426e;
  }
  .timeline .t_item.right .line:after {
    content: none;
  }
  .timeline .t_item.right .line:before {
    content: '';
    position: absolute;
    left: 0;
    top: -6px;
    width: 16px;
    height: 16px;
    border-radius: 100px;
    background-color: #66426e;
  }
  .timeline .t_item {
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 30px 0;
  }
  .timeline .t_item h4 {
    font-weight: 600;
    color: #b27f2e;
    font-size: 22px;
    color: #402336;
  }
  .timeline .t_item p {
    font-weight: 500;
  }
  .timeline .t_item.right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .timeline .t_item.right .content {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .timeline .t_item .content {
    width: auto;
    max-width: 400px;
    padding: 0 35px;
  }
  .timeline .t_item .line {
    width: 70px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 70px;
            flex: 0 0 70px;
  }
  .timeline .t_item.t_item_1 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/span 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/span 1;
  }
  .timeline .t_item.t_item_2 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/span 1;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/span 1;
  }
  .timeline .t_item.t_item_3 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/span 1;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/span 1;
  }
  .timeline .t_item.t_item_4 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/span 1;
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    grid-row: 4/span 1;
  }
  .timeline .t_item.t_item_5 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/span 1;
    -ms-grid-row: 5;
    -ms-grid-row-span: 1;
    grid-row: 5/span 1;
  }
  .timeline .t_item.t_item_6 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/span 1;
    -ms-grid-row: 6;
    -ms-grid-row-span: 1;
    grid-row: 6/span 1;
  }
}

.viewer-prev {
  margin-right: 20px;
}

.gallery {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[6];
  grid-template-columns: repeat(6, 1fr);
  -ms-grid-rows: (10vw)[6];
  grid-template-rows: repeat(6, 10vw);
  grid-gap: 15px;
  opacity: 1;
  height: auto;
}

.gallery .gallery__item {
  background-color: #ededed;
  overflow: hidden;
}

.gallery .gallery__item:hover, .gallery .gallery__item:focus {
  cursor: pointer;
}

.gallery .gallery__item:hover .gallery__img, .gallery .gallery__item:focus .gallery__img {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
  transition-duration: 0.4s;
}

.gallery .gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition-duration: 0.2s;
}

/* Existing gallery items 1-24 */
.gallery .gallery__item--1 {
  grid-column: 1 / span 1;
  grid-row: 1 / span 1;
}

.gallery .gallery__item--2 {
  grid-column: 2 / span 1;
  grid-row: 1 / span 1;
}

.gallery .gallery__item--3 {
  grid-column: 1 / span 1;
  grid-row: 2 / span 1;
}

.gallery .gallery__item--4 {
  grid-column: 2 / span 1;
  grid-row: 2 / span 1;
}

.gallery .gallery__item--5 {
  grid-column: 3 / span 2;
  grid-row: 1 / span 2;
}

.gallery .gallery__item--6 {
  grid-column: 5 / span 1;
  grid-row: 1 / span 1;
}

.gallery .gallery__item--7 {
  grid-column: 6 / span 1;
  grid-row: 1 / span 1;
}

.gallery .gallery__item--8 {
  grid-column: 5 / span 1;
  grid-row: 2 / span 1;
}

.gallery .gallery__item--9 {
  grid-column: 6 / span 1;
  grid-row: 2 / span 1;
}

.gallery .gallery__item--10 {
  grid-column: 1 / span 2;
  grid-row: 3 / span 2;
}

.gallery .gallery__item--11 {
  grid-column: 3 / span 1;
  grid-row: 3 / span 1;
}

.gallery .gallery__item--12 {
  grid-column: 4 / span 1;
  grid-row: 3 / span 1;
}

.gallery .gallery__item--13 {
  grid-column: 3 / span 1;
  grid-row: 4 / span 1;
}

.gallery .gallery__item--14 {
  grid-column: 4 / span 1;
  grid-row: 4 / span 1;
}

.gallery .gallery__item--15 {
  grid-column: 5 / span 2;
  grid-row: 3 / span 2;
}

.gallery .gallery__item--16 {
  grid-column: 1 / span 1;
  grid-row: 5 / span 1;
}

.gallery .gallery__item--17 {
  grid-column: 2 / span 1;
  grid-row: 5 / span 1;
}

.gallery .gallery__item--18 {
  grid-column: 1 / span 1;
  grid-row: 6 / span 1;
}

.gallery .gallery__item--19 {
  grid-column: 2 / span 1;
  grid-row: 6 / span 1;
}

.gallery .gallery__item--20 {
  grid-column: 3 / span 2;
  grid-row: 5 / span 2;
}

.gallery .gallery__item--21 {
  grid-column: 5 / span 1;
  grid-row: 5 / span 1;
}

.gallery .gallery__item--22 {
  grid-column: 6 / span 1;
  grid-row: 5 / span 1;
}

.gallery .gallery__item--23 {
  grid-column: 5 / span 1;
  grid-row: 6 / span 1;
}

.gallery .gallery__item--24 {
  grid-column: 6 / span 1;
  grid-row: 6 / span 1;
}

/* New gallery items 25-30 to match layout of items 10-15 */
.gallery .gallery__item--25 {
  grid-column: 1 / span 2;
  grid-row: 7 / span 2;
}

.gallery .gallery__item--26 {
  grid-column: 3 / span 1;
  grid-row: 7 / span 1;
}

.gallery .gallery__item--27 {
  grid-column: 4 / span 1;
  grid-row: 7 / span 1;
}

.gallery .gallery__item--28 {
  grid-column: 3 / span 1;
  grid-row: 8 / span 1;
}

.gallery .gallery__item--29 {
  grid-column: 4 / span 1;
  grid-row: 8 / span 1;
}

.gallery .gallery__item--30 {
  grid-column: 5 / span 2;
  grid-row: 7 / span 2;
}

@media screen and (max-width: 768px) {
  .gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three columns for mobile */
    grid-gap: 15px; /* Space between the images */
    grid-template-rows: auto; /* Let rows adjust automatically */
  }

  .gallery .gallery__item {
    grid-column: auto;
    grid-row: auto;
    background-color: transparent; /* No gray background if an image doesn't load */
  }

  /* Ensure every image fits within the 3-column layout */
  .gallery__item--1, .gallery__item--2, .gallery__item--3, .gallery__item--4, 
  .gallery__item--5, .gallery__item--6, .gallery__item--7, .gallery__item--8,
  .gallery__item--9, .gallery__item--10, .gallery__item--11, .gallery__item--12, 
  .gallery__item--13, .gallery__item--14, .gallery__item--15, .gallery__item--16,
  .gallery__item--17, .gallery__item--18, .gallery__item--19, .gallery__item--20,
  .gallery__item--21, .gallery__item--22, .gallery__item--23, .gallery__item--24, 
  .gallery__item--25, .gallery__item--26, .gallery__item--27, .gallery__item--28,
  .gallery__item--29, .gallery__item--30 {
    width: 100%; /* Each image takes up full width of its grid cell */
    height: auto; /* Maintain aspect ratio */
  }
}



#testimonials {
  background-color: #ecb6ad;
  position: relative;
}

#testimonials .title {
  margin-top: 80px;
}

#testimonials .title h4 {
  color: #ff2d55;
}

#testimonials .title h1 {
  line-height: 55px;
}

#testimonials .title p {
  color: #222;
}

/* Testimonials section link styling */
#testimonials a {
    color: #222 !important;                   /* Sets the link text color to #222 */
    text-decoration: underline;               /* Adds an underline to the link */
    text-decoration-color: #222;              /* Sets the underline color to #222 */
}

#testimonials a:hover {
    color: #222 !important;                   /* Keeps the text color the same on hover */
    text-decoration-color: #222;              /* Keeps the underline color the same on hover */
}


#testimonials .slick-track {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
}

#testimonials .slider-cont {
  position: relative;
}

#testimonials .slider-cont .arrow {
  position: absolute;
  z-index: 950;
  background-color: #ecb6ad;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  text-align: center;
  top: 50%;
  -webkit-transform: scale(1) translateY(-50%);
          transform: scale(1) translateY(-50%);
  opacity: .7;
  cursor: pointer;
  transition-duration: 0.1s;
  -webkit-transition-duration: 0.1s;
  -moz-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
}

#testimonials .slider-cont .arrow i {
  color: #fff;
  font-size: 20px;
  line-height: 40px;
}

#testimonials .slider-cont .arrow.arrow-left {
  left: 0;
}

#testimonials .slider-cont .arrow.arrow-right {
  right: 0;
}

#testimonials .slider-cont .arrow:hover, #testimonials .slider-cont .arrow:focus {
  opacity: 1;
  -webkit-transform: scale(1.1) translateY(-45%);
          transform: scale(1.1) translateY(-45%);
}

#testimonials .slider-cont .shadow.left {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 70px;
  z-index: 900;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ecb6ad+16,000000+100&1+16,0+100 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, right top, color-stop(16%, #ecb6ad), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to right, #ecb6ad 16%, rgba(0, 0, 0, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ecb6ad
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fedcec', endColorstr='#00000000',GradientType=1 );
  /* IE6-9 */
}

#testimonials .slider-cont .shadow.right {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 70px;
  z-index: 900;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,ecb6ad+84&0+0,1+84 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), color-stop(84%, #ecb6ad));
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, #ecb6ad 84%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#ecb6ad',GradientType=1 );
  /* IE6-9 */
}

#testimonials .testimonial-box {
  background-color: #fff;
  min-height: 150px;
  margin: 10px;
  border-radius: 8px;
  position: relative;
  padding: 30px;
  padding-left: 80px;
}

#testimonials .testimonial-box .line {
  position: absolute;
  width: 2px;
  height: 50%;
  left: 39px;
  top: 0;
  background-color: #ecb6ad;
  opacity: 0.9;
  transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
}

#testimonials .testimonial-box .icon {
  position: absolute;
  width: 80px;
  left: 0;
  bottom: 30px;
  text-align: center;
}

#testimonials .testimonial-box .icon i {
  font-size: 19px;
  color: rgba(0, 0, 0, 0.2);
}

#testimonials .testimonial-box h4 {
  margin-bottom: 0;
  color: #ff2d55;
  font-weight: 700;
}

#testimonials .testimonial-box p {
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  margin-top: 5px;
  opacity: 0.8;
}

#testimonials .slick-slide {
  transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
}

#testimonials .slick-slide.slick-active {
  -webkit-box-shadow: 0px 29px 49px -17px rgba(2, 81, 218, 0.2);
  box-shadow: 0px 29px 49px -17px rgba(2, 81, 218, 0.2);
}

@media screen and (max-width: 768px) {
  #testimonials .shadow {
    display: none;
  }
  #testimonials .title {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  #testimonials .title h4 {
    color: #ff2d55;
  }
  #testimonials .title h1 {
    line-height: 45px;
    font-size: 35px;
  }
  #testimonials .title p {
    color: #222;
  }
}

form input:-webkit-autofill,
form input:-webkit-autofill:hover,
form input:-webkit-autofill:focus,
form input:-webkit-autofill:active {
  box-shadow: 0 0 0 70px white inset !important;
  -webkit-box-shadow: 0 0 0 70px white inset !important;
}

form button {
  width: 100%;
  height: 60px;
  background-color: #66426e;
  border: 0;
  border-radius: 5px;
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 1px;
  transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
}

form button i {
  margin-left: 5px;
  transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
}

form button:hover, form button:focus {
  opacity: .9;
}

form button:hover i, form button:focus i {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

form .input-cont {
  background-color: #fff;
  width: 100%;
  height: 70px;
  position: relative;
  margin: 15px 0;
}

form .input-cont label {
  position: absolute;
  left: 20px;
  height: 70px;
  line-height: 70px;
  font-weight: 300;
  font-size: 16px;
  z-index: 10;
  transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
}

form .input-cont input {
  width: 100%;
  height: 100%;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  background-color: transparent !important;
  border: 1px solid #E0E6ED;
  border-radius: 5px;
  padding: 20px;
  padding-bottom: 10px;
  padding-top: 30px;
  position: relative;
  z-index: 100;
  transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
}

form .input-cont input:focus {
  border: 2px solid #253dac;
  padding-left: 19px;
}

form .input-cont textarea {
  width: 100%;
  resize: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  background-color: transparent !important;
  border: 1px solid #E0E6ED;
  border-radius: 5px;
  padding: 20px;
  padding-bottom: 10px;
  padding-top: 40px;
  position: relative;
  z-index: 100;
}

form .input-cont textarea:focus {
  border: 2px solid #253dac;
  padding-left: 19px;
}

form .input-cont.textarea-cont {
  height: auto;
}

form .input-cont.active label {
  position: absolute;
  top: 15px;
  left: 21px;
  height: auto;
  line-height: normal;
  font-weight: 600;
  font-size: 13px;
  color: #ff2d55;
  z-index: 200;
}

* {
  outline: none;
}

body {
  height: 1400px;
}

#about .left-part {
  position: relative;
  background-color: #66426e;
  height: auto; /* Allow the container to adjust to the image */
  left: -40px;
  padding: 20px 0; /* Add some padding for spacing */
}

#about .left-part .img-cont {
  width: 100%;
  height: auto; /* Remove fixed height */
  background-color: #66426e;
  position: absolute;
  top: 20px;
  left: 40px;
  overflow: hidden;
  -webkit-box-shadow: -26px -4px 40px -5px rgba(0, 0, 0, 0.19);
  box-shadow: -26px -4px 40px -5px rgba(0, 0, 0, 0.19);
}

#about .left-part .img-cont img {
  width: 100%;
  height: auto; /* Adjust for vertical image */
  object-fit: cover; /* This ensures the image fills the space proportionally */
}

#about .right-part {
  padding-top: 40px;
}


@media screen and (max-width: 768px) {
  #about {
    text-align: center;
  }
}

#contact {
  padding: 0;
}

#contact .c_item {
  margin: 30px 0;
  position: relative;
  padding-left: 50px;
}

#contact .c_item .icon {
  position: absolute;
  width: 40px;
  top: 5px;
  left: 0;
  text-align: center;
}

#contact .c_item .icon i {
  color: #66426e;
  font-size: 20px;
}

#contact .c_item h4 {
  margin: 0;
  margin-bottom: 10px;
  font-weight: 600;
}

#contact .c_item p {
  margin-top: 5px;
  margin-bottom: 5px;
}

#contact .c_item p span {
  color: #ff2d55 !important;
}

#contact .left-part {
  padding: 90px 0;
  padding-left: 130px;
  padding-bottom: 20px;
}

#contact .img-right {
  background-color: #66426e;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  position: relative;
}

#contact .img-right img {
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  min-width: 100%;
  max-width: 110%;
}

#email {
    background-color: #f8f8f8;
    padding: 40px 0;
}

/* Contact section phone number styling */
#contact a.phone-number {
    color: #66426e !important;            /* Sets the phone number color to match the icon color */
    text-decoration: none;                /* Removes the default underline */
}

#contact a.phone-number:hover {
    text-decoration: underline;           /* Adds the underline on hover */
    text-decoration-color: #66426e;       /* Sets the underline color to match the icon color */
}



@media screen and (max-width: 992px) {
  #shop .left-part {
    padding: 50px 0;
    padding-left: 40px;
    padding-bottom: 20px;
  }
}

.map-cont {
  overflow: hidden;
  padding-bottom: 35%;
  position: relative;
  height: 0;
}

.map-cont #map {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

@media screen and (max-width: 768px) {
  .map-cont {
    padding-bottom: 75%;
  }
}

footer {
  background-color: #1c060f;
  padding: 60px 0;
}

footer h5 {
  color: #ededed;
  line-height: 25px;
}

footer p {
  font-size: 14px;
  color: #999;
  margin-bottom: 0;
  line-height: 23px;
}

/* Footer link styling */
footer p a {
    color: #999 !important;                   /* Sets the link text color to #999 */
    text-decoration: underline !important;    /* Applies underline */
    text-decoration-color: #999 !important;   /* Sets the underline color to #999 */
    text-underline-offset: 2px;               /* Adjusts the spacing between text and underline */
}



@media screen and (max-width: 768px) {
  footer {
    padding: 30px 20px;
  }

  
/* Mobile layout fix for About section */
@media screen and (max-width: 768px) {
  #about .left-part {
    position: relative;
    width: 100%;
    padding: 0;
    height: auto; /* Adjust height based on content */
    display: flex;
    justify-content: center; /* Center the image container */
  }

  #about .left-part .img-cont {
    position: relative;
    width: 80%; /* Adjust to center the image and reduce its width */
    height: auto; /* Ensure the image resizes properly */
    left: 0;
    top: 0;
    box-shadow: none; /* Remove shadow on mobile */
    margin: 0 auto; /* Center the image */
  }

  #about .left-part .img-cont img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  #about .right-part {
    padding-top: 20px;
    padding-left: 30px; /* Add more left padding */
    padding-right: 30px; /* Add more right padding */
    text-align: left; /* Align text to the left */
  }

  /* Ensure spacing between the image and the text */
  #about .container {
    padding: 20px 0;
  }

  /* Button fix for mobile */
  #about .readmore {
    display: inline-block;
    width: auto; /* Prevent buttons from stretching full width */
    padding-left: 20px;  /* Adjust padding */
    padding-right: 20px; /* Adjust padding */
    margin-right: 10px;  /* Adjust space between buttons */
  }

  #about .readmore.ghost {
    width: auto; /* Prevent ghost button from stretching full width */
  }
  
/* Mobile layout fix for Unique Cakes section icons and text */
@media screen and (max-width: 768px) {
  #contact .left-part {
    padding: 20px 20px; /* Add padding evenly on both sides */
  }

  #contact .c_item {
    padding-left: 45px; /* Increase padding for the text, but keep it balanced */
    padding-right: 20px; /* Ensure spacing on the right */
    position: relative;
  }

  #contact .c_item .icon {
    position: absolute;
    width: 30px; /* Adjust icon size for better alignment */
    top: 0;
    left: 10px; /* Adjust left position for consistent spacing */
    text-align: center;
  }

  #contact .c_item h4 {
    margin: 0;
    font-weight: 600;
    padding-top: 8px; /* Ensure some spacing above the title */
    line-height: 1.2; /* Adjust line-height to avoid overlap */
    text-align: left; /* Keep the text aligned to the left */
  }

  #contact .c_item p {
    margin-top: 5px;
    margin-bottom: 5px;
    padding-left: 0px; /* Ensure the text aligns properly */
    text-align: left; /* Keep the text aligned to the left */
  }
  
  .navigation .menu li.fb-link {
  margin-right: 15px; /* Add space after Facebook link */
}

.navigation .menu li .phone-number {
  margin-left: 15px; /* Add space before the phone number */
}

/* For default mobile menu (before scrolling) */
.nav-mobile .hamburger {
    position: absolute;
    top: 30px;
    right: 40px; /* Move it farther from the right edge */
    cursor: pointer;
}

/* For sticky mobile menu (after scrolling) */
.nav-mobile.scrolled .hamburger {
    right:40px; /* Same adjustment for sticky menu */
}


/* Ensure the phone number and social media links also have spacing */
.navigation .menu li a, .navigation .menu li.fb-link a {
    margin-right: 15px; /* Add space between links, including Facebook and phone number */
}
.phone-number {
    font-size: 1.5em;  /* Adjust this size as needed */
    font-weight: bold; /* Optional: make the phone number bold */
}
}
/*# sourceMappingURL=main.css.map */

/* Menu Updates */

.menu-item.menu-item-inline {
  align-items: center;
  display: flex; 
  justify-content: space-between;
}