@import "fonts/fontSizes.css";
:root {
  --animation-primary: 0.735s cubic-bezier(0.62, 0.05, 0.01, 0.99);
}

body {
  display: flex;
  overflow-x: hidden;
  flex-flow: row wrap;
  align-items: center;
  place-content: center;
  width: 100%;
  height: 100vh;
  position: relative;
  background-image: url("../img/background/realStateBackground5.webp");
  background-size: cover;
  background-repeat: no-repeat;
}
body > :nth-child(1) {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  overflow-x: hidden;
  flex-flow: row wrap;
  align-items: center;
  place-content: center;
  background-image: url("../img/background/realStateBackground5.webp");
  background-size: cover;
  background-repeat: no-repeat;
  transform-origin: center;
  background-attachment: fixed;
  width: 100%;
  height: 100vh;
  transition: 1s;
  transform: scale(1.5);
}
body .backgroundImgAnimation {
  transition: 1s;
  transform: scale(1);
}
body main {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  width: 90%;
  height: 100%;
  max-width: 1440px;
}
body main section {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  flex: 1;
  padding: 1.5rem 0;
}
body main section aside {
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
  width: 100%;
  flex: 1;
}
body main section aside nav {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 1rem;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: 1s;
  transform: translateY(-15%);
}
body main section aside nav > :nth-child(1) img {
  width: 100%;
  max-width: 40px;
  border-radius: 50%;
  box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.2);
}
body main section aside nav > :nth-child(2) {
  cursor: default;
  color: white;
}
body main section aside .navAnimation {
  pointer-events: all;
  visibility: visible;
  opacity: 1;
  transition: 1s;
  transform: translateY(0%);
}
body main section aside > :nth-child(2),
body main section aside > :nth-child(3) {
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: 1s;
  transform: translateY(15%);
}
body main section aside > :nth-child(2) {
  cursor: default;
  color: white;
}
body main section aside > :nth-child(2) .link {
  position: relative;
  display: inline-flex;
}
body main section aside > :nth-child(2) .link .link-click::before {
  content: "";
  transform-origin: right;
  position: absolute;
  bottom: 0em;
  left: 0;
  width: 100%;
  height: 2px;
  transition: transform 0.735s cubic-bezier(0.62, 0.05, 0.01, 0.99);
  transform: scaleX(0);
  background-color: white;
}
body main section aside > :nth-child(2) .link .link-click:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}
body main section aside > :nth-child(2) .link .link-click::after,
body main section aside > :nth-child(2) .link .link-click::before {
  background-color: white;
}
body main section aside > :nth-child(2) .link-click.underlineSpanAnimation::before {
  transform-origin: left;
  transform: scaleX(1);
}
body main section aside > :nth-child(2) .underlineSpanAnimation {
  transition: 1s;
}
body main section aside > :nth-child(3) {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  width: 100%;
}
body main section aside > :nth-child(3) > div {
  width: 100%;
  flex: 1;
  border-left: 2px solid white;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(5%);
  opacity: 0;
  transition: 0.5s;
}
body main section aside > :nth-child(3) > div > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0 auto;
  width: 90%;
  height: 100%;
  flex: 1;
}
body main section aside > :nth-child(3) > div > div > :nth-child(1) {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  place-content: center;
}
body main section aside > :nth-child(3) > div > div > :nth-child(1) img {
  width: 100%;
  max-width: 55px;
}
body main section aside > :nth-child(3) > div > div > :nth-child(2) p {
  padding: 0;
  line-height: 1vh;
  font-weight: 500;
  color: white;
}
body main section aside > :nth-child(3) .nav3Animation {
  transition: 1s;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0%);
  opacity: 1;
}
body main section aside .nav2Animation {
  pointer-events: all;
  visibility: visible;
  opacity: 1;
  transition: 1s;
  transform: translateY(0%);
}
body main section header {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  place-content: center;
  width: 100%;
  padding: 1.5rem 0;
  flex: 1;
}
body main section header > :nth-child(1) {
  display: flex;
  width: 90%;
  max-width: 400px;
  flex-flow: column wrap;
  box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  pointer-events: none;
  opacity: 0;
  visibility: none;
  transform: scale(0.9) translateY(-0.5%);
}
body main section header > :nth-child(1) > :nth-child(1) {
  border-radius: 10px 10px 0px 0px;
  background-color: rgba(251, 52, 48, 0.5);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}
body main section header > :nth-child(1) > :nth-child(1) > :nth-child(1) {
  margin: 0 auto;
  width: 90%;
  padding: 1.5rem 0rem 0rem 0rem;
  display: flex;
  flex-flow: column wrap;
  gap: 1rem;
}
body main section header > :nth-child(1) > :nth-child(1) > :nth-child(1) .contact-form__group {
  display: flex;
  flex-flow: column wrap;
  gap: 0.5rem;
}
body main section header > :nth-child(1) > :nth-child(1) > :nth-child(1) .contact-form__group.active .contact-form__input-wrapper {
  border-color: white;
  box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.3);
  background-color: rgba(255, 52, 48, 0.65);
}
body main section header > :nth-child(1) > :nth-child(1) > :nth-child(1) .contact-form__group label {
  color: white;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}
body main section header > :nth-child(1) > :nth-child(1) > :nth-child(1) .contact-form__group .contact-form__input-wrapper {
  display: flex;
  flex-flow: row nowrap;
  gap: 0.5rem;
  padding: 0.45rem 0;
  border-radius: 4px;
  border: 1px solid rgb(255, 255, 255);
  box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.2);
  background-color: rgba(251, 52, 48, 0.25);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  flex: 1;
  transition: all 0.3s ease;
}
body main section header > :nth-child(1) > :nth-child(1) > :nth-child(1) .contact-form__group .contact-form__input-wrapper .icon {
  -o-object-fit: contain;
     object-fit: contain;
  padding: 0 0 0 0.5rem;
}
body main section header > :nth-child(1) > :nth-child(1) > :nth-child(1) .contact-form__group .contact-form__input-wrapper input {
  all: unset;
  color: white;
  width: 100%;
  padding: 0 0.5rem 0 0;
}
body main section header > :nth-child(1) > :nth-child(1) > :nth-child(1) .contact-form__group .contact-form__input-wrapper input::-moz-placeholder {
  color: white;
}
body main section header > :nth-child(1) > :nth-child(1) > :nth-child(1) .contact-form__group .contact-form__input-wrapper input::placeholder {
  color: white;
}
body main section header > :nth-child(1) > :nth-child(1) > :nth-child(1) .contact-form__group select {
  all: unset;
  padding: 0.25rem 0;
  color: white;
}
body main section header > :nth-child(1) > :nth-child(1) > :nth-child(1) .contact-form__group select option {
  background-color: white;
  color: #000000;
}
body main section header > :nth-child(1) > :nth-child(2) {
  display: flex;
  align-items: center;
  place-content: center;
  background-color: white;
  border-radius: 0px 0px 10px 10px;
}
body main section header > :nth-child(1) > :nth-child(2) > :nth-child(1) {
  margin: 0 auto;
  width: 90%;
  padding: 1rem;
  gap: 0;
  text-align: center;
}
body main section header > :nth-child(1) > :nth-child(2) > :nth-child(1) > :nth-child(1) {
  display: flex;
  place-content: center;
  padding: 0;
  margin: 0;
}
body main section header > :nth-child(1) > :nth-child(2) > :nth-child(1) > :nth-child(1) > p {
  margin-top: 0rem;
  font-size: 0.8rem;
  display: flex;
  color: rgb(0, 0, 0);
  flex-flow: row wrap;
}
body main section header > :nth-child(1) > :nth-child(2) > :nth-child(1) > :nth-child(1) > p .link {
  position: relative;
  display: inline-flex;
  flex-flow: row wrap;
  margin-left: 0.25rem;
}
body main section header > :nth-child(1) > :nth-child(2) > :nth-child(1) > :nth-child(1) > p .link .link-click {
  cursor: pointer;
  text-decoration: none;
  color: rgb(0, 0, 0);
  font-size: 0.8rem;
}
body main section header > :nth-child(1) > :nth-child(2) > :nth-child(1) > :nth-child(1) > p .link .link-click::before {
  content: "";
  position: absolute;
  bottom: 0em;
  left: 0;
  width: 100%;
  height: 2px;
  transform-origin: right;
  transition: transform var(--animation-primary);
  transform: scaleX(0);
}
body main section header > :nth-child(1) > :nth-child(2) > :nth-child(1) > :nth-child(1) > p .link .link-click:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}
body main section header > :nth-child(1) > :nth-child(2) > :nth-child(1) > :nth-child(1) > p .link .link-click::after,
body main section header > :nth-child(1) > :nth-child(2) > :nth-child(1) > :nth-child(1) > p .link .link-click::before {
  background-color: rgb(0, 0, 0);
}
body main section header > :nth-child(1) > :nth-child(2) > :nth-child(1) .submit-form input[type=submit] {
  width: 100%;
  padding: 0.8rem 2rem;
  border: 2px solid white;
  border-radius: 4px;
  background-color: #ff564d;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
}
body main section header > :nth-child(1) > :nth-child(2) > :nth-child(1) .submit-form input[type=submit]:hover {
  background-color: #ff4c43;
  box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}
body main section header > :nth-child(1) > :nth-child(2) > :nth-child(1) .submit-form input[type=submit]:active {
  background-color: #ff3c33;
  transition: 0.3s;
}
body main section header > :nth-child(1) > :nth-child(2) > :nth-child(1) .submit-form input[type=submit]:focus {
  background-color: #ff0400;
  transition: 0.3s;
}
body main section header .formAnimation {
  pointer-events: all;
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
  transition: 1s;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.overlay .overlay-content {
  background-color: white;
  padding: 2rem 0;
  border-radius: 10px;
  text-align: center;
  width: 90%;
  max-width: 500px;
  position: relative;
}
.overlay .overlay-content > :nth-child(1) {
  margin: 0 auto;
  width: 95%;
}
.overlay .overlay-content > :nth-child(1) .success-icon {
  background-color: #fe4344;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  margin: 0 auto 20px;
}
.overlay .overlay-content > :nth-child(1) .close-button {
  background-color: #fe4344;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
  font-size: 16px;
}
.overlay .overlay-content > :nth-child(1) .close-button:hover {
  background-color: #ff5454;
}

.hidden {
  display: none;
}

@media (max-width: 1440px) {
  body main section {
    padding: 1.35rem 0;
  }
  body main section aside nav {
    gap: 0.75rem;
  }
  body main section aside nav > :nth-child(1) img {
    max-width: 37.5px;
  }
  body main section aside > :nth-child(3) > div {
    border-left: 1.85px solid white;
  }
  body main section aside > :nth-child(3) > div > div {
    gap: 0.65rem;
  }
  body main section aside > :nth-child(3) > div > div > :nth-child(1) img {
    max-width: 52.5px;
  }
  body main section aside > :nth-child(3) > div > div > :nth-child(2) p {
    line-height: 0.9vh;
  }
  body main section header {
    padding: 1.35rem 0;
  }
  body main section header > :nth-child(1) > :nth-child(1) > :nth-child(1) {
    padding: 1.35rem 0rem 0rem 0rem;
    gap: 0.9rem;
  }
  body main section header > :nth-child(1) > :nth-child(1) > :nth-child(1) .contact-form__group {
    gap: 0.485rem;
  }
  body main section header > :nth-child(1) > :nth-child(1) > :nth-child(1) .contact-form__group .contact-form__input-wrapper {
    gap: 0.485rem;
    padding: 0.435rem 0;
  }
  body main section header > :nth-child(1) > :nth-child(1) > :nth-child(1) .contact-form__group .contact-form__input-wrapper .icon {
    padding: 0 0 0 0.485rem;
  }
  body main section header > :nth-child(1) > :nth-child(1) > :nth-child(1) .contact-form__group .contact-form__input-wrapper input {
    padding: 0 0.485rem 0 0;
  }
  body main section header > :nth-child(1) > :nth-child(1) > :nth-child(1) .contact-form__group select {
    padding: 0.25rem 0;
  }
  body main section header > :nth-child(1) > :nth-child(2) > :nth-child(1) {
    padding: 0.85rem;
  }
  body main section header > :nth-child(1) > :nth-child(2) > :nth-child(1) > :nth-child(1) > p .link {
    margin-left: 0.25rem;
  }
  body main section header > :nth-child(1) > :nth-child(2) > :nth-child(1) > :nth-child(1) > p .link .link-click::before {
    height: 1px;
  }
  body main section header > :nth-child(1) > :nth-child(2) > :nth-child(1) .submit-form input[type=submit] {
    padding: 0.675rem 1.875rem;
    border: 1.75px solid white;
    font-size: 0.95rem;
  }
}
@media (max-width: 1024px) {
  body {
    height: 100%;
  }
  body main {
    height: 100%;
    gap: 0rem;
  }
  body main section {
    display: flex;
    flex-flow: column wrap;
    gap: 1rem;
  }
  body main section aside {
    gap: 1rem;
  }
  body main section aside nav {
    justify-content: space-between;
    gap: 0rem;
  }
  body main section aside nav > :nth-child(1) img {
    width: 100%;
    max-width: 40px;
    border-radius: 50%;
  }
}/*# sourceMappingURL=styles.css.map */