@import url("https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Chewy&display=swap");
:root {
  --primary_color: #FECE6B;
  --secondary_color: #0e4e48;
  --bg_color: #0e4e48;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg_color);
  font-family: "Lato", sans-serif;
  overflow-x: hidden;
}

html.loading,
body.loading {
  /* Using classes for better control */
  overflow: hidden;
  height: 100%;
}

section .container-fluid,
footer .container-fluid {
  width: 90%;
  margin: 0 auto;
}

.fredoka {
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
}

.story-script {
  font-family: "Chewy", system-ui;
}

li {
  list-style: none;
}

ul {
  margin-bottom: 0;
  padding-left: 0;
}

p {
  margin-bottom: 0;
}

a,
a:hover,
a:active,
a:visited,
a:focus {
  text-decoration: none;
}

:focus-visible,
:hover,
:focus,
:active {
  outline: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

.py-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.pt-70 {
  padding-top: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

h2.main-header {
  font-size: 60px;
  color: var(--secondary_color);
}

.page-header {
  margin-top: 150px;
}

h2.page-title {
  color: var(--primary_color);
  text-align: center;
  font-size: 80px;
}
h2.page-title span {
  display: block;
  color: var(--secondary_color);
  font-size: 36px;
}
h2.page-title.small {
  font-size: 60px;
}

h6.sub-text {
  font-size: 20px;
  color: var(--optional_color);
  text-align: center;
  margin-bottom: 30px;
}

.stop-scrolling {
  height: 100%;
  overflow: hidden !important;
}

#btn-back-to-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  display: none;
  /* Hidden by default */
  width: 50px;
  height: 50px;
  background-color: #FECE6B;
  /* Your Gold color */
  border: none;
  border-radius: 50%;
  /* Circle shape */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

#btn-back-to-top:hover {
  background-color: #fff;
  /* Flip to white on hover */
  transform: translateY(-5px);
  /* Small lift effect */
}

#video-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0e4e48;
  /* Match your site's bg */
  z-index: 9999;
  /* Higher than your navbar (111) */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.loader-fade {
  opacity: 0 !important;
  visibility: hidden !important;
}

#loader-vid {
  width: 50%;
  height: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  clip-path: inset(5% 10% 30% 10%);
  pointer-events: none;
  opacity: 0;
  /* Start invisible to hide the black blink */
  transition: opacity 0.5s ease;
  /* Smooth fade-in */
}

.vid-show {
  opacity: 1 !important;
}

/* Class to hide the loader */
.loader-hidden {
  opacity: 0;
  visibility: hidden;
}

@media (min-width: 1400px) {
  section .container-fluid,
  footer .container-fluid {
    width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 992px) {
  h2.main-header {
    font-size: 36px;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .py-70 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .pt-70 {
    padding-top: 40px;
  }
  .pb-70 {
    padding-bottom: 40px;
  }
  #loader-vid {
    /* Increase the width on mobile so it's not a tiny square */
    width: 50%;
    /* ADJUST THE BOTTOM CROP HERE */
    /* If 30% was showing unwanted parts, try 45% or 50% for mobile */
    clip-path: inset(5% 5% 35% 5%);
  }
}
footer h3 {
  color: #fff;
  font-size: 48px;
}
footer p {
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 300;
  color: #fff;
  padding-bottom: 10px;
}
footer ul {
  display: flex;
  gap: 20px;
}
footer ul a {
  font-size: 30px;
  color: #fff;
}
footer .footer-card {
  background-image: url(../images/decor-white.svg);
  background-repeat: repeat-y;
  background-size: contain;
  padding: 0 40px;
}
footer .footer-card a {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}
footer .footer-card h5 {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}
footer .footer-card h5 a {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}
footer .footer-dez {
  border-top: 1px solid #777;
  border-bottom: 1px solid #777;
  padding: 50px 0;
  margin: 50px 0 20px;
}
footer h6 {
  margin-bottom: 20px;
}

@media (max-width: 1200px) {
  footer h3 {
    color: #fff;
    font-size: 36px;
  }
  footer img {
    width: 80%;
  }
  footer p {
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 300;
    color: #fff;
    padding-bottom: 10px;
  }
  footer ul {
    display: flex;
    gap: 20px;
  }
  footer ul a {
    font-size: 20px;
    color: #fff;
  }
  footer .footer-card {
    background-image: url(../images/decor-white.svg);
    background-repeat: repeat-y;
    background-size: contain;
    padding: 0 40px;
  }
  footer .footer-card a {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
  }
  footer .footer-card h5 {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
  }
  footer .footer-card h5 a {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
  }
  footer .footer-dez {
    border-top: 1px solid #777;
    border-bottom: 1px solid #777;
    padding: 50px 0;
    margin: 50px 0 20px;
  }
  footer h6 {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  footer h3 {
    color: #fff;
    font-size: 24px;
  }
  footer img {
    width: 80%;
  }
}
@media (max-width: 768px) {
  footer img {
    width: 50%;
    padding-bottom: 20px;
  }
  footer p {
    font-size: 16px;
  }
  footer ul {
    display: flex;
    gap: 20px;
    padding-bottom: 30px;
  }
  footer ul a {
    font-size: 30px;
    color: #fff;
  }
  footer .footer-card {
    padding: 0;
    padding-bottom: 30px;
    background: none;
  }
  footer .footer-card a {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
  }
  footer .footer-card h5 {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
  }
  footer .footer-card h5 a {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
  }
  footer .footer-dez {
    padding: 20px 0;
    margin: 20px 0 20px;
  }
  footer h6 {
    margin-bottom: 20px;
  }
}
.main-btn {
  background-color: var(--primary_color);
  color: var(--secondary_color);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 100px;
  width: -moz-max-content;
  width: max-content;
  font-weight: 700;
  transition: 0.3s;
}
.main-btn.border-black {
  border: 2px solid #111;
  box-shadow: 6px 6px #111;
}
.main-btn.bg-secondary {
  background-color: var(--bg_color) !important;
  color: var(--secondary_color);
}
.main-btn:hover {
  box-shadow: none;
}

.navbar {
  position: absolute;
  background-color: #fff;
  border-radius: 100px;
  padding: 10px 0 10px 20px;
  width: 90%;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: 111;
  margin-top: 20px;
  transition: border-radius 0.2s ease-in-out;
  /* Add this */
}
.navbar.is-expanded {
  border-radius: 20px !important;
}
.navbar .navbar-toggler {
  border: none;
  color: #fff;
  font-size: 24px;
  box-shadow: none;
}
.navbar .navbar-nav {
  gap: 20px;
  margin-right: 15px;
}
.navbar .navbar-nav .nav-item a {
  text-transform: uppercase;
  font-weight: 600;
  color: var(--secondary_color);
  font-size: 16px;
}

@media (min-width: 1400px) {
  .navbar {
    width: 80%;
  }
}
@media (max-width: 1200px) {
  .navbar .navbar-brand img {
    width: 120px;
  }
  .navbar .navbar-nav {
    gap: 25px;
  }
}
@media (max-width: 992px) {
  .navbar {
    padding-left: 10px;
  }
  .navbar .navbar-brand img {
    width: 200px;
  }
  .navbar .navbar-nav {
    gap: 0px;
  }
  .main-btn {
    margin-top: 10px;
    margin-bottom: 20px;
  }
}
.dez-banner {
  margin: 200px 0 100px;
  position: relative;
  color: #fff;
}
.dez-banner::before {
  content: "";
  background-image: url(../images/logo-green.png);
  position: absolute;
  width: 500px;
  height: 527px;
  background-size: 500px 527px;
  right: 50px;
}
.dez-banner h1 {
  font-size: 80px;
  color: #fff;
}
.dez-banner p {
  font-size: 24px;
  font-weight: 300;
  padding: 20px 0;
}

.dez-menu-slider {
  background-color: var(--primary_color);
  padding: 15px 20px;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 2;
  white-space: nowrap;
  box-sizing: border-box;
  transform: scale(1.01) rotateZ(-2deg);
}
.dez-menu-slider .marquee-content-wrapper {
  display: inline-flex;
  animation: slideLeft 30s linear infinite;
}
.dez-menu-slider .slider-item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.dez-menu-slider .slider-text {
  font-family: "Fredoka", sans-serif !important;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--secondary_color);
}
.dez-menu-slider .slider-icon {
  width: 6px;
  height: 6px;
  margin: 0 50px;
  background-color: var(--secondary_color);
  border-radius: 30px;
}

/* Keyframe animation for sliding to the left */
@keyframes slideLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
    /* Moves exactly half the content width */
  }
}
.dez-categories-main .category-flex {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  margin-bottom: 50px;
}
.dez-categories-main .category-flex .category-title {
  color: #fff;
  text-transform: uppercase;
  font-size: 30px;
  letter-spacing: 18px;
  font-weight: 700;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
  align-self: center;
  height: auto;
}
.dez-categories-main .category-flex .category-boxes {
  display: flex;
  width: 100%;
  gap: 25px;
}
.dez-categories-main .category-flex .category-boxes .category-box {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  border-radius: 5px;
  padding: 15px;
  width: 100%;
  background-color: #fff;
}
.dez-categories-main .category-flex .category-boxes .category-box::before {
  content: "";
  width: 300px;
  height: 300px;
  background-color: var(--primary_color);
  bottom: -80px;
  right: -80px;
  position: absolute;
  border-radius: 100%;
  transition: all 0.3s ease;
  transform: scale(0.88);
}
.dez-categories-main .category-flex .category-boxes .category-box.category-box1::before {
  background-color: #f595b8;
}
.dez-categories-main .category-flex .category-boxes .category-box.category-box2::before {
  background-color: #f9be5d;
}
.dez-categories-main .category-flex .category-boxes .category-box.category-box3::before {
  background-color: #f07a62;
}
.dez-categories-main .category-flex .category-boxes .category-box.category-box4::before {
  background-color: #cf9b83;
}
.dez-categories-main .category-flex .category-boxes .category-box.category-box5::before {
  background-color: #92f0cf;
}
.dez-categories-main .category-flex .category-boxes .category-box.category-box6::before {
  background-color: #aab46b;
}
.dez-categories-main .category-flex .category-boxes .category-box.category-box7::before {
  background-color: #c0a8fb;
}
.dez-categories-main .category-flex .category-boxes .category-box.category-box8::before {
  background-color: #a8c8fb;
}
.dez-categories-main .category-flex .category-boxes .category-box h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.dez-categories-main .category-flex .category-boxes .category-box .category-img {
  position: absolute;
  bottom: -40px;
  right: -40px;
}
.dez-categories-main .category-flex .category-boxes .category-box .category-img img {
  transition: all 0.5s ease;
}
.dez-categories-main .category-flex .category-boxes .category-box:hover::before {
  transform: scale(1.05);
}
.dez-categories-main .category-flex .category-boxes .category-box:hover .category-img img {
  transform: scale(1.05);
}

.dez-yellow-box {
  position: relative;
}
.dez-yellow-box .yellow-box {
  border-radius: 15px;
  background: var(--primary_color) url(../../images/favicon.png);
  padding: 20px 0 0 50px;
  position: relative;
  z-index: 2;
}
.dez-yellow-box .yellow-box h2 {
  padding-top: 50px;
}
.dez-yellow-box .yellow-box p {
  padding-bottom: 70px;
}
.dez-yellow-box .yellow-box .absolue-img {
  position: absolute;
  width: 400px;
  opacity: 0.1;
}
.dez-yellow-box .yellow-box .banner-top {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  padding: 0;
  border-top-right-radius: 12px;
}
.dez-yellow-box .yellow-box h3 {
  color: var(--secondary_color);
  font-size: 60px;
  padding-bottom: 20px;
}
.dez-yellow-box .yellow-box p {
  font-size: 18px;
}
.dez-yellow-box .slider-container {
  transform: rotate(-5deg) translateY(-50%);
  position: absolute;
  top: 50%;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  padding: 10px 0;
}
.dez-yellow-box .slider-container .slider-text {
  display: inline-block;
  animation: slideLeft 30s linear infinite;
}
.dez-yellow-box .slider-container .slider-text span {
  display: inline-flex;
  align-items: center;
  margin-right: 20px;
  font-size: 100px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 5px;
}
.dez-yellow-box .slider-container .slider-text span span {
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 20px;
  margin: 0 20px;
}
.dez-yellow-box .spec-box {
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  gap: 5px;
  font-size: 16px;
}
.dez-yellow-box .spec-box span {
  display: block;
  color: var(--primary_color);
  padding-top: 10px;
  font-size: 20px;
  font-weight: 600;
}

.dez-about-home {
  background-color: #fff;
}
.dez-about-home h2 {
  color: var(--secondary_color);
}
.dez-about-home p {
  font-size: 18px;
  padding-bottom: 20px;
}
.dez-about-home p span {
  display: block;
  padding-top: 15px;
  color: var(--secondary_color);
}

.dez-testimonials {
  padding-top: 100px;
  padding-bottom: 50px;
}
.dez-testimonials .dez-testimonial-card {
  border-radius: 30px;
  height: 100%;
  margin: 0 auto;
  margin-bottom: 20px;
  text-align: center;
}
.dez-testimonials .dez-testimonial-card .testimonial-logo {
  width: 100px;
}
.dez-testimonials .dez-testimonial-card .testimonial-rating {
  width: 150px;
}
.dez-testimonials .dez-testimonial-card p {
  color: #fff;
  font-size: 36px;
  font-weight: 200;
  padding: 10px 0 20px;
  font-style: italic;
}
.dez-testimonials .dez-testimonial-card h4 {
  color: #fff;
  font-size: 20px;
}

@media (max-width: 992px) {
  .dez-banner {
    margin: 150px 0 80px;
  }
  .dez-banner::before {
    content: "";
    width: 300px;
    height: 327px;
    background-size: 300px 327px;
    right: 50px;
  }
  .dez-banner h1 {
    font-size: 48px;
    color: #fff;
  }
  .dez-banner p {
    font-size: 18px;
  }
  .dez-yellow-box .yellow-box {
    padding: 0 0 0 20px;
  }
  .dez-yellow-box .yellow-box h2 {
    padding-top: 50px;
  }
  .dez-yellow-box .yellow-box p {
    padding-bottom: 50px;
  }
  .dez-yellow-box .spec-box {
    font-size: 14px;
  }
  .dez-yellow-box .spec-box span {
    display: block;
    color: var(--primary_color);
    padding-top: 10px;
    font-size: 18px;
    font-weight: 600;
  }
  .dez-testimonials {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .dez-testimonials .dez-testimonial-card .testimonial-logo {
    width: 80px;
  }
  .dez-testimonials .dez-testimonial-card .testimonial-rating {
    width: 100px;
  }
  .dez-testimonials .dez-testimonial-card p {
    font-size: 24px;
  }
  .dez-about-home {
    background-color: #fff;
  }
  .dez-about-home h2 {
    color: var(--secondary_color);
    padding-top: 30px;
  }
  .dez-categories-main .category-flex-container {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
  }
  .dez-categories-main .category-flex-container .category-flex {
    flex-direction: column;
  }
  .dez-categories-main .category-flex-container .category-flex .category-title {
    font-size: 24px;
    letter-spacing: 5px;
    writing-mode: horizontal-tb;
    transform: none;
  }
  .dez-categories-main .category-flex-container .category-flex .category-boxes .category-box {
    min-height: 200px;
  }
  .dez-categories-main .category-flex-container .category-flex .category-boxes .category-box::before {
    width: 200px;
    height: 200px;
    bottom: -40px;
    right: -60px;
  }
  .dez-categories-main .category-flex-container .category-flex .category-boxes .category-box .category-img {
    bottom: -10px;
    right: -10px;
  }
  .dez-categories-main .category-flex-container .category-flex .category-boxes .category-box .category-img img {
    width: 150px;
  }
}
@media (max-width: 768px) {
  .dez-banner {
    margin: 120px 0 0;
  }
  .dez-banner::before {
    left: 50px;
    right: auto;
  }
  .dez-banner h1 {
    font-size: 36px;
    color: #fff;
  }
  .dez-banner p {
    font-size: 18px;
  }
  .dez-banner img {
    width: 70% !important;
  }
  .dez-yellow-box .yellow-box .banner-top {
    display: none;
  }
  .dez-yellow-box .yellow-box .absolue-img {
    width: 100%;
    left: 0;
    top: 100px;
  }
  .dez-yellow-box .slider-container {
    display: none;
  }
  .dez-categories-main .category-flex-container {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
  }
  .dez-categories-main .category-flex-container .category-flex {
    flex-direction: column;
  }
  .dez-categories-main .category-flex-container .category-flex .category-title {
    font-size: 24px;
    letter-spacing: 5px;
    writing-mode: horizontal-tb;
    transform: none;
  }
  .dez-categories-main .category-flex-container .category-flex .category-boxes {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .dez-categories-main .category-flex-container .category-flex .category-boxes .category-box {
    min-height: 200px;
    width: calc(50% - 10px);
  }
  .dez-categories-main .category-flex-container .category-flex .category-boxes .category-box::before {
    width: 200px;
    height: 200px;
    bottom: -40px;
    right: -60px;
  }
  .dez-categories-main .category-flex-container .category-flex .category-boxes .category-box .category-img {
    bottom: -10px;
    right: -10px;
  }
  .dez-categories-main .category-flex-container .category-flex .category-boxes .category-box .category-img img {
    width: 180px;
  }
}
@media (max-width: 576px) {
  .dez-categories-main .category-flex-container .category-flex .category-boxes .category-box {
    min-height: 160px;
  }
  .dez-categories-main .category-flex-container .category-flex .category-boxes .category-box::before {
    width: 170px;
    height: 150px;
    bottom: -40px;
    right: -60px;
  }
  .dez-categories-main .category-flex-container .category-flex .category-boxes .category-box .category-img {
    bottom: -10px;
    right: -10px;
  }
  .dez-categories-main .category-flex-container .category-flex .category-boxes .category-box .category-img img {
    width: 120px;
  }
  .dez-categories-main .category-flex-container .category-flex .category-boxes .category-box h3 {
    font-size: 14px;
  }
}/*# sourceMappingURL=main.css.map */