* {
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    background-image: url(https://static.vecteezy.com/system/resources/thumbnails/012/179/040/original/interior-design-concept-sale-of-home-decorations-and-furniture-during-promotions-and-discounts-it-is-surrounded-by-beds-sofas-armchairs-and-advertising-spaces-banner-pastel-background-3d-render-video.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    image-resolution: 5000DPI;
  }
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    width: 97.3%;
    background-color: #e5bc3c;
    position: fixed;
  }
  
  header .menu {
    margin: 0;
    height: 40px;
    width: 40px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    position: fixed;
    z-index: 1000;
    transition: 0.2s ease-in-out;
  }
  
  header .menu:hover {
    border-radius: 50px;
  }
  
  header .menu span {
    height: 3px;
    width: 20px;
    background-color: black;
    border-radius: 5px;
    transition: 0.2s ease-in-out;
  }
  
  header .menu:hover span {
    width: 20px;
  }
  
  header .active {
    border-radius: 50px;
  }
  
  .active:hover.menu span:nth-child(2) {
    width: 0;
  }
  
  .active.menu span:nth-child(1) {
    transform: rotate(40deg) translate(6px, 7px);
  }
  
  .active.menu span:nth-child(2) {
    width: 0;
  }
  
  .active.menu span:nth-child(3) {
    transform: rotate(-40deg) translate(5px, -5px);
  }
  
  menu {
    position: absolute;
    top: 10%;
    width: 0%;
    height: 80vh;
    background-color: #e5bc3c;
    backdrop-filter: blur(20px);
    transition: 0.3s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 50px 0px;
    justify-content: left;
    align-items: center;
    transition: 0.3s ease-in-out;
    position: fixed;
    z-index: 500;
    gap: 50px;
  }
  
  menu a {
    font-size: 15px;
    font-weight: 600;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    margin-top: 30px;
    text-decoration: none;
    cursor: pointer;
    opacity: 1;
    transition: 0.3s ease-in-out;
  }
  
  menu a:hover {
    text-shadow: 0 0 10px rgb(247, 141, 123), 0 0 10px #dabd67, 0 0 10px white, 0 0 10px #f3c22f, 0 0 10px #f3c22f, 0 0 10px white, 0 0 10px #f3c22f;
    color: black;
  }
  
  @keyframes fademenu {
    100% {
      opacity: 0;
    }
  }
  
  @keyframes showmenu {
    0% {
      opacity: 0;
    }
  
    100% {
      opacity: 1;
    }
  }
  
  header .frontpagenavigation span {
    margin: 0 20px;
    color: black;
    cursor: pointer;
  }
  
  #nav {
    width: 97.2%;
    position: fixed;
    margin-left: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    text-align: center;
  }
  
  nav a {
    padding-top: -10px;
    margin: 10px 20px;
    text-align: center;
    border-radius: 20px;
    font-weight: 600;
    width: 75px;
    height: 25px;
    text-decoration: none;
    color: black;
    transition: 0.15s ease-in-out;
  }
  
  .backcolor1 {
    animation: backcolor1 1s linear forwards;
  }
  
  .backcolor2 {
    animation: backcolor2 1s linear forwards;
  }
  
  @keyframes backcolor2 {
    0% {
      transform: translateY(20px);
      opacity: 0;
    }
  
    100% {
      transform: translateY(0px);
      opacity: 1;
    }
  }
  
  @keyframes backcolor1 {
    0% {
      transform: translateY(-20px);
      opacity: 0;
    }
  
    100% {
      transform: translateY(0px);
      opacity: 1;
    }
  }
  
  nav a:hover {
    transform: scale(1.2);
  }
  
  nav a.active {
    background-color: #e8bd3b;
    transform: scale(1.2);
  }
  
  section {
    margin-top: 20%;
    font-weight: bolder;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: xx-large;
  }
  
  h1 {
    top: 35%;
    left: 32%;
    font-size: 60px;
    font-family: "Forte";
    text-align: center;
    position: absolute;
    overflow: hidden;
    white-space: nowrap;
    color: tomato;
    animation: homeanimation 3s linear;
    z-index: -1;
  }
  
  @keyframes homeanimation {
    from {
      width: 0%;
    }
  
    to {
      width: 40%;
    }
  }
  
  header p {
    font-size: 20px;
    padding-left: 45%;
    font-family: "Harlow Solid Italic";
    font-weight: 200;
    text-align: center;
  }
  
  .slides1 {
    position: relative;
    margin-top: 15%;
    z-index: -1;
  }
  
  .num1 {
    position: absolute;
    color: white;
  }
  
  .caption1 {
    position: absolute;
    bottom: 8px;
    width: 100%;
    color: white;
    text-align: center;
  }
  
  .dots1 {
    background-color: #e8bd3b;
    border: 2px solid black;
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 20px;
    margin-left: 2%;
  }
  
  .dots1.active {
    background-color: black;
  }
  
  .slides2 {
    position: relative;
    margin-top: 15%;
    z-index: -1;
  }
  
  .num2 {
    position: absolute;
    color: white;
  }
  
  .caption2 {
    position: absolute;
    bottom: 8px;
    width: 100%;
    color: white;
    text-align: center;
  }
  
  .dots2 {
    background-color: #e8bd3b;
    border: 2px solid black;
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 20px;
    margin-left: 2%;
  }
  
  .dots2.active {
    background-color: black;
  }
  
  .slides3 {
    position: relative;
    margin-top: 15%;
    z-index: -1;
  }
  
  .num3 {
    position: absolute;
    color: white;
  }
  
  .caption3 {
    position: absolute;
    bottom: 8px;
    width: 100%;
    color: white;
    text-align: center;
  }
  
  .dots3 {
    background-color: #e8bd3b;
    border: 2px solid black;
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 20px;
    margin-left: 2%;
  }
  
  .dots3.active {
    background-color: black;
  }
  
  .slides4 {
    position: relative;
    margin-top: 15%;
    z-index: -1;
  }
  
  .num4 {
    position: absolute;
    color: white;
  }
  
  .caption4 {
    position: absolute;
    bottom: 8px;
    width: 100%;
    color: white;
    text-align: center;
  }
  
  .dots4 {
    background-color: #e8bd3b;
    border: 2px solid black;
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 20px;
    margin-left: 2%;
  }
  
  .dots4.active {
    background-color: black;
  }
  
  #custom .box {
    position: relative;
    width: 390px;
    height: 515px;
    background: linear-gradient(to right bottom, rgba(210, 205, 205, 0.5), rgba(210, 205, 205, 0.3));
    backdrop-filter: blur(1000rem);
    border-radius: 20px;
    overflow: hidden;
  }
  
  #custom .box form {
    position: absolute;
    inset: 4px;
    border-radius: 8px;
  
    display: flex;
    padding: 20px;
    flex-direction: column;
  }
  
  #custom .box form h3 {
    color: rgb(52, 54, 54);
    font-weight: 1000;
    font-size: 25px;
    text-align: center;
    letter-spacing: 0.1em;
  }
  
  #custom .box form .inputbox {
    position: relative;
    width: 340px;
  }
  
  #custom .box form .inputbox input {
    background-color: transparent;
    padding: 20px;
    font-size: 14px;
    color: rgb(52, 54, 54);
    width: 400px;
    border: none;
    outline: none;
    transition: 0.3s;
  }
  
  #custom .box form .inputbox input:hover {
    font-size: 16px;
  }
  
  #custom .hr {
    margin: 0px 20px;
    width: 225px;
  }
  
  #custom .box form h4 {
    color: rgb(52, 54, 54);
    padding-top: 10px;
    padding-left: 20px;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.1em;
  }
  
  #custom .box form .options {
    position: relative;
    padding: 0px 30px;
    font-size: 16px;
    color: rgb(52, 54, 54);
  }
  
  #custom .box form .content {
    padding: 0px 30px;
    font-size: 12px;
  }
  
  #custom .box form .center {
    margin-top: -2%;
    padding: 5px 25px;
    border-radius: 50px;
    height: 5%;
    width: 25%;
    font-size: 10px;
    text-align: center;
    border: none;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
  }
  
  #custom .box form .center:hover {
    background-color: rgb(207, 203, 203)
  }