#desNav {
  display: none;
}

.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
  z-index: 20000;
}

.popup-box {
  width: calc(100% - 20px);
  max-width: -moz-max-content;
  max-width: max-content;
  height: calc(100vh - 40px);
  overflow: hidden;
  overflow-y: scroll;
  background: #ffffff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  animation: popupFade 0.25s ease-out;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100000;
  opacity: 0;
  pointer-events: none;
}
.popup-box.active {
  opacity: 1;
  pointer-events: visible;
}

@keyframes popupFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.close-popup {
  position: absolute;
  right: 25px;
  top: 20px;
  font-size: 26px;
  cursor: pointer;
  opacity: 0.4;
  transition: 0.2s;
}

.close-popup:hover {
  opacity: 0.8;
}

h2 {
  margin-bottom: 0;
  font-size: 26px;
  font-weight: 600;
  color: #1F1F1F;
}

h4 {
  margin-top: 25px;
  font-size: 18px;
  font-weight: 600;
}

form {
  width: 100%;
}
form button {
  width: 100%;
  height: 45px;
  margin-top: 15px;
  background: #e18d5e;
  border: none;
  outline: none;
  color: white;
  border-radius: 6px;
}

.form-content {
  width: 100%;
}
.form-content .file-upload {
  width: 100%;
  max-width: 300px;
  margin-left: 5px;
  display: flex;
  flex-direction: column;
}
.form-content .file-upload .file-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: none;
  border-radius: 6px;
  height: 43px;
  padding-inline: 10px;
  overflow: hidden;
  border: 1px solid lightgray;
}
.form-content .file-upload .file-input-wrapper:focus-within {
  background: white;
}
.form-content .file-upload .file-input-wrapper input[type=file] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.form-content .file-upload .file-input-wrapper .file-name {
  flex: 1;
  color: #333;
  font-size: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
}
.form-content .file-upload .file-input-wrapper .upload-btn {
  color: white;
  border: none;
  border-radius: 4px;
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 4px 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin: 0;
  height: -moz-max-content;
  height: max-content;
}
.form-content .file-upload .file-input-wrapper .upload-btn:hover {
  background: rgb(0.7829787234, 139.370212766, 146.4170212766);
}
.form-content h4 {
  font-size: 17px;
  color: #1F1F1F;
  margin-bottom: 15px;
}
.form-content h4.h42 {
  margin-top: 45px;
}
.form-content label {
  color: #1F1F1F;
  font-size: 14px;
}
.form-content .input {
  display: flex;
  flex-direction: column;
}
.form-content input, .form-content select {
  width: 100%;
  height: 42px;
  border: 1px solid lightgray;
  padding-inline: 6px;
  color: #1F1F1F;
  font-size: 16px;
  border-radius: 6px;
  outline: none;
  max-width: 600px;
}

.flex {
  display: flex;
  gap: 15px;
  flex-direction: column;
  margin-bottom: 15px;
}

#mobileNav {
  z-index: 1000;
  width: 100%;
  height: 65px;
  position: fixed;
  top: 10px;
  transition: 0.7s;
}
#mobileNav.menu {
  background: white;
  top: 0;
}
#mobileNav.menu .flex {
  width: calc(100% - 0px);
  padding-inline: 20px;
}
#mobileNav .flex {
  border-radius: 6px;
  background: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  width: calc(100% - 20px);
  height: 65px;
  padding-inline: 14px;
  margin: 0;
  margin-inline: auto;
  transition: 0.4s;
}
#mobileNav .flex .one {
  display: flex;
  align-items: center;
}
#mobileNav .flex .one .logo {
  transition: 0.8s;
  cursor: pointer;
  transform: translateY(1.5px) translateX(-6px);
  width: auto;
  height: auto;
  z-index: 1000;
  margin-left: 0;
}
#mobileNav .flex .one .logo img {
  height: auto;
  width: 160px;
}
#mobileNav .flex .one .logo img.logo1 {
  display: block;
}
#mobileNav .flex .one .logo img.logo2 {
  display: none;
}
#mobileNav .hamburger {
  width: auto;
  height: auto;
  z-index: 1000;
  text-align: center;
  border-radius: 8px;
  transform: translateX(0);
  cursor: pointer;
}
#mobileNav .hamburger span {
  height: 2px;
  width: 26px;
  background: #cd6d36;
  border-radius: 10px;
  display: block;
  transition: 0.2s;
  margin-block: 6px;
  text-align: center;
  transform-origin: 25%;
}
#mobileNav .hamburger.click .upper-span {
  transform: rotate(45deg);
}
#mobileNav .hamburger.click .center-span {
  display: none;
}
#mobileNav .hamburger.click .lower-span {
  transform: rotate(-42deg);
}
#mobileNav .sidebar {
  background: white;
  position: relative;
  bottom: -150px;
  left: 0;
  width: 100%;
  height: calc(100vh - 65px);
  z-index: 120;
  opacity: 0;
  pointer-events: none;
  display: block;
  transition: 0.2s;
  overflow-y: scroll;
  padding-bottom: 60px;
  padding-top: 30px;
  text-align: left;
  padding-inline: 20px;
}
#mobileNav .sidebar a {
  padding: 10px 0;
  margin-block: 5px;
  color: #1F1F1F;
  font-size: 17px;
  display: block;
  width: 100%;
  text-decoration: none;
  position: relative;
}
#mobileNav .sidebar a.cta {
  height: 55px;
  width: 260px;
  padding-inline: 6px;
  padding-left: 18px;
  border-radius: 30px;
  background: #e18d5e;
  color: white;
  text-align: left;
  text-decoration: none;
  padding-block: 4px;
  display: flex;
  flex-direction: row;
  gap: 25px;
  margin-top: 65px;
  justify-content: space-between;
}
#mobileNav .sidebar a.cta i {
  border-radius: 30px;
  padding: 10px 12px;
  color: #1F1F1F;
  background: white;
}
#mobileNav .sidebar a i {
  font-size: 16px;
  margin-right: 15px;
  color: #e18d5e;
}
#mobileNav .sidebar a:hover {
  background: rgba(50, 60, 67, 0.0941176471);
}
#mobileNav .sidebar a.last {
  border-bottom: none;
}
#mobileNav .sidebar a.no-hover:hover {
  background: transparent;
}
#mobileNav .sidebar.active {
  opacity: 1;
  pointer-events: visible;
  transition: 0.4s;
  bottom: 0;
}

@media only screen and (min-device-width: 1140px) {
  #mobileNav {
    display: none;
  }
  .popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    -webkit-backdrop-filter: blur(6px);
            backdrop-filter: blur(6px);
    justify-content: center;
    align-items: center;
    z-index: 20000;
  }
  .popup-box {
    width: 100%;
    max-width: -moz-max-content;
    max-width: max-content;
    height: -moz-max-content;
    height: max-content;
    background: #ffffff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    animation: popupFade 0.25s ease-out;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    z-index: 100000;
    opacity: 0;
    pointer-events: none;
  }
  .popup-box.active {
    opacity: 1;
    pointer-events: visible;
  }
  @keyframes popupFade {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .close-popup {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 26px;
    cursor: pointer;
    opacity: 0.4;
    transition: 0.2s;
  }
  .close-popup:hover {
    opacity: 0.8;
  }
  h2 {
    margin-bottom: 0;
    font-size: 26px;
    font-weight: 600;
    color: #1F1F1F;
  }
  h4 {
    margin-top: 25px;
    font-size: 18px;
    font-weight: 600;
  }
  form {
    width: 100%;
  }
  form button {
    width: 100%;
    height: 45px;
    margin-top: 15px;
    background: #e18d5e;
    border: none;
    outline: none;
    color: white;
    border-radius: 6px;
  }
  .form-content {
    width: 100%;
  }
  .form-content .file-upload {
    width: 100%;
    max-width: 300px;
    margin-left: 5px;
    display: flex;
    flex-direction: column;
  }
  .form-content .file-upload .file-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: none;
    border-radius: 6px;
    height: 43px;
    padding-inline: 10px;
    overflow: hidden;
    border: 1px solid lightgray;
  }
  .form-content .file-upload .file-input-wrapper:focus-within {
    background: white;
  }
  .form-content .file-upload .file-input-wrapper input[type=file] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
  }
  .form-content .file-upload .file-input-wrapper .file-name {
    flex: 1;
    color: #333;
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    pointer-events: none;
  }
  .form-content .file-upload .file-input-wrapper .upload-btn {
    color: white;
    border: none;
    border-radius: 4px;
    max-width: -moz-max-content;
    max-width: max-content;
    padding: 4px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0;
    height: -moz-max-content;
    height: max-content;
  }
  .form-content .file-upload .file-input-wrapper .upload-btn:hover {
    background: rgb(0.7829787234, 139.370212766, 146.4170212766);
  }
  .form-content h4 {
    font-size: 17px;
    color: #1F1F1F;
    margin-bottom: 15px;
  }
  .form-content h4.h42 {
    margin-top: 45px;
  }
  .form-content label {
    color: #1F1F1F;
    font-size: 14px;
  }
  .form-content .input {
    display: flex;
    flex-direction: column;
  }
  .form-content input, .form-content select {
    width: 100%;
    height: 42px;
    border: 1px solid lightgray;
    padding-inline: 6px;
    color: #1F1F1F;
    font-size: 16px;
    border-radius: 6px;
    outline: none;
    max-width: 600px;
  }
  .flex {
    display: flex;
    gap: 15px;
    flex-direction: row;
    margin-bottom: 15px;
  }
  #desNav {
    width: 100%;
    height: 78px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 20px;
    z-index: 10000;
    transition: 0.6s;
    padding-block: 10px;
    padding-bottom: 5px;
    padding-inline: 20px;
  }
  #desNav .desktop-nav-content {
    width: 100%;
    height: 78px;
    background: rgb(249, 249, 249);
    border-radius: 12px;
    max-width: 1390px;
    position: relative;
    padding-inline: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #desNav .desktop-nav-content .logo {
    transition: 0.3s;
    cursor: pointer;
  }
  #desNav .desktop-nav-content .logo img {
    height: auto;
    width: 170px;
    display: block;
  }
  #desNav .desktop-nav-content .menu {
    width: -moz-max-content;
    width: max-content;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 15px;
  }
  #desNav .desktop-nav-content .menu a {
    color: #1F1F1F;
    font-size: 16px;
    text-decoration: none;
    transition: 0.2s;
    cursor: pointer;
    padding-block: 9px;
    overflow: hidden; /* Hide the overflow to create the effect */
    position: relative;
    transition: 0.2s;
    border-bottom: 1px solid transparent;
  }
  #desNav .desktop-nav-content .menu a i {
    color: #e18d5e;
    margin-right: 15px;
  }
  #desNav .desktop-nav-content .menu a:hover {
    border-color: #e18d5e;
  }
  #desNav .desktop-nav-content .menu a.cta {
    height: 45px;
    width: -moz-max-content;
    width: max-content;
    justify-content: space-between;
    padding-inline: 4px;
    padding-left: 18px;
    border-radius: 30px;
    background: #e18d5e;
    color: white;
    text-align: left;
    margin-inline: auto;
    text-decoration: none;
    padding-block: 4px;
    display: flex;
    flex-direction: row;
    gap: 25px;
    margin-left: 15px;
    transition: 0.6s !important;
    border: 1px solid transparent;
  }
  #desNav .desktop-nav-content .menu a.cta i {
    transition: 0.6s !important;
    border-radius: 30px;
    padding: 10px 12px;
    color: #1F1F1F;
    background: white;
    margin: 0;
    margin-left: 1px;
  }
  #desNav .desktop-nav-content .menu a.cta:hover {
    background: transparent;
    color: #e18d5e;
    border: 1px solid #e18d5e;
  }
  #desNav .desktop-nav-content .menu a.cta:hover i {
    background: #e18d5e;
    color: white;
    margin-left: 60px;
  }
  #desNav .desktop-nav-content .menu .border-left {
    height: 15px;
    width: 1px;
    background: rgba(205, 109, 54, 0.6941176471);
    margin-inline: 10px;
    border-radius: 6px;
  }
  #desNav .desktop-nav-content .menu .hamburger {
    width: auto;
    height: auto;
    z-index: 1000;
    text-align: center;
    border-radius: 8px;
    transform: translateX(0);
    cursor: pointer;
    margin-left: 45px;
  }
  #desNav .desktop-nav-content .menu .hamburger span {
    height: 2px;
    width: 26px;
    background: white;
    border-radius: 10px;
    display: block;
    transition: 0.2s;
    margin-block: 6px;
    text-align: center;
    transform-origin: 25%;
  }
  #desNav .desktop-nav-content .menu .hamburger .center-span {
    background: linear-gradient(to right, #d0a3a0, #786545);
    background: #d0a3a0;
    transform: translateX(-5px);
  }
  #desNav .desktop-nav-content .menu .hamburger.click .upper-span {
    transform: rotate(44deg);
  }
  #desNav .desktop-nav-content .menu .hamburger.click .center-span {
    display: none;
  }
  #desNav .desktop-nav-content .menu .hamburger.click .lower-span {
    transform: rotate(-42deg);
  }
}/*# sourceMappingURL=nav.css.map */