:root {
  --primary: #007bff;
  --secondary: #e6d7b9;
  --accent: #ff6b5b;
  --dark: #333333;
  --light: #f8f8f8;
  --gray: #dddddd;
  --shadow: rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Futura", "Segoe UI", sans-serif;
}

body {
  background-color: var(--light);
  color: var(--dark);
  overflow-x: hidden;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}

a {
  text-decoration: none;
}

.logo {
  height: 100px;
}

.logo-placeholder {
  width: 180px;
  height: 100%;

  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.swiper-pagination-bullet-active {
  background-color: var(--primary) !important;
}

@media (max-width: 900px) {
  .mobile-nav-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 18px;
    width: 25px;
    cursor: pointer;
  }
  .mobile-nav-icon span {
    width: 100%;
    height: 1px;
    background-color: #000;
  }
  #nav-menu,
  .cta-buttons {
    display: none;
  }
  .header-content {
    padding: 10px 20px;
  }
  #nav-menu-mobile ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    position: absolute;
    top: 100%;
    left: -100%;
    width: 100%;
    z-index: 9999;
    background-color: #fff;
    padding: 50px 20px;
    transition: 0.3s ease-in-out;
  }
  #nav-menu-mobile.active ul {
    left: 0%;
  }
  #nav-menu-mobile ul a {
    display: block;
  }
  .header-content {
    position: relative;
  }
  .logo-placeholder{
    width: 100px;
  }
}
@media (min-width: 901px) {
  #nav-menu-mobile,
  .mobile-nav-icon {
    display: none;
  }
  .cta-buttons {
    display: flex;
    gap: 15px;
  }
}
.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: #FF3D00;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    }

    @keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
    } 

