@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
:root {
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-blue: #001442;
  --color-yellow: #FFBF00;
}

* {
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 auto;
  overflow-x: hidden;
  width: 100%;
  color: var(--color-blue);
}

.button {
  padding: 16px 32px;
  background: var(--color-yellow);
  color: var(--color-blue);
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: none;
  font-size: 16px;
  font-family: "Plus Jakarta Sans", serif;
}
.button:hover {
  background: var(--color-blue);
  color: var(--color-white);
}

.yellow {
  color: var(--color-yellow);
}

h2 {
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 24px;
  }
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 100;
}
.header__inner {
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 32px 32px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header__inner {
    gap: 16px;
    padding: 16px;
  }
}
.header__logo img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .header__logo img {
    max-width: 210px;
  }
}

.hero {
  background: var(--color-white);
  padding-top: 130px;
}
@media screen and (max-width: 767px) {
  .hero {
    padding-top: 100px;
  }
}
.hero__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 32px;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .hero__inner {
    flex-direction: column-reverse;
    gap: 32px;
    padding: 0 24px;
  }
}
@media screen and (max-width: 767px) {
  .hero__inner {
    padding: 0 16px;
    gap: 24px;
  }
}
.hero__left {
  width: calc(50% - 24px);
  aspect-ratio: 1/1;
  background: url(/assets/img/hero.jpg);
  border-radius: 12px;
  flex-basis: auto;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .hero__left {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .hero__left {
    width: 100%;
  }
}
.hero__right {
  width: calc(50% - 24px);
  flex-basis: auto;
}
@media screen and (max-width: 1024px) {
  .hero__right {
    width: 100%;
    margin-bottom: 0;
    padding: 40px 0;
  }
}
.hero__right h1 {
  font-size: 38px;
  line-height: 1.1;
}
@media screen and (max-width: 1024px) {
  .hero__right h1 {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .hero__right h1 {
    font-size: 28px;
  }
}

.services {
  background: url(/assets/img/clouds.jpg);
  background-size: 100% auto;
  background-position: top;
  margin-top: -64px;
}
@media screen and (max-width: 1024px) {
  .services {
    background-size: auto 100%;
  }
}
@media screen and (max-width: 767px) {
  .services {
    margin-top: -32px;
  }
}
.services__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 32px;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .services__inner {
    flex-direction: column;
    gap: 32px;
    padding: 0 24px;
  }
}
@media screen and (max-width: 767px) {
  .services__inner {
    padding: 0 16px;
    gap: 24px;
  }
}
.services__left {
  width: calc(50% - 24px);
  flex-basis: auto;
  text-align: center;
  background: url(/assets/img/house.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding: 140px 0 80px 0;
}
@media screen and (max-width: 1024px) {
  .services__left {
    width: 100%;
    padding: 80px 0 60px 0;
    order: 1;
    border-radius: 0 0 30px 30px;
  }
}
@media screen and (max-width: 767px) {
  .services__left {
    padding: 60px 0 40px 0;
  }
}
.services__left ul {
  margin: 0;
  padding: 0;
}
.services__left ul li {
  list-style: none;
  margin-bottom: 8px;
}
.services__right {
  width: calc(50% - 24px);
  flex-basis: auto;
  margin-top: -190px;
}
@media screen and (max-width: 1024px) {
  .services__right {
    width: 100%;
    margin-top: 0;
    margin-bottom: 16px;
    order: 2;
  }
}
.services__right .parallax-image {
  position: relative;
  margin-top: -100px;
  margin-bottom: -100px;
  z-index: 5;
}
@media screen and (max-width: 1024px) {
  .services__right .parallax-image {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.services__right .parallax-image img {
  width: 100%;
  display: block;
}

a {
  color: var(--color-white);
  text-decoration: underline;
  transition: all 0.3s ease;
}
a:hover {
  color: var(--color-yellow);
}

.contact {
  background: var(--color-blue);
  color: var(--color-white);
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 60px 0;
  }
}
.contact__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 32px;
  justify-content: space-between;
  gap: 48px;
}
@media screen and (max-width: 1024px) {
  .contact__inner {
    flex-direction: column;
    gap: 40px;
    padding: 0 24px;
  }
}
@media screen and (max-width: 767px) {
  .contact__inner {
    padding: 0 16px;
    gap: 32px;
  }
}
.contact__left {
  width: calc(50% - 24px);
  flex-basis: auto;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .contact__left {
    width: 100%;
  }
}
.contact__left h2 {
  margin-top: 0;
}
.contact__left p {
  margin-bottom: 16px;
}
.contact__right {
  width: calc(50% - 24px);
  flex-basis: auto;
}
@media screen and (max-width: 1024px) {
  .contact__right {
    width: 100%;
  }
}

.form-message {
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 600;
}
.form-message.form-message--success {
  background: rgba(76, 175, 80, 0.2);
  border: 2px solid #4CAF50;
  color: #4CAF50;
}
.form-message.form-message--error {
  background: rgba(244, 67, 54, 0.2);
  border: 2px solid #f44336;
  color: #f44336;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form__group {
  position: relative;
}
.contact-form__label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  pointer-events: none;
  transition: all 0.3s ease;
}
.contact-form__group--focused .contact-form__label, .contact-form__group--filled .contact-form__label {
  top: -9px;
  left: 0px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-yellow);
  background: var(--color-blue);
  padding: 0 4px;
}
.contact-form__group--textarea .contact-form__label {
  top: 12px;
  transform: none;
}
.contact-form__group--textarea.contact-form__group--focused .contact-form__label, .contact-form__group--textarea.contact-form__group--filled .contact-form__label {
  top: -18px;
  left: 0px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-yellow);
  background: var(--color-blue);
  padding: 0 4px;
  transform: none;
}
.contact-form__input, .contact-form__textarea {
  padding: 12px 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  font-family: "Plus Jakarta Sans", serif;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}
.contact-form__input:focus, .contact-form__textarea:focus {
  outline: none;
  border-color: var(--color-yellow);
  background: rgba(255, 255, 255, 0.15);
}
.contact-form__input::-moz-placeholder, .contact-form__textarea::-moz-placeholder {
  color: transparent;
}
.contact-form__input::placeholder, .contact-form__textarea::placeholder {
  color: transparent;
}
.contact-form__input:focus::-moz-placeholder, .contact-form__textarea:focus::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.contact-form__input:focus::placeholder, .contact-form__textarea:focus::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.contact-form__textarea {
  min-height: 120px;
  resize: vertical;
  padding-top: 16px;
}
.contact-form .button {
  margin-top: -10px;
}
.contact-form .button:hover {
  background: var(--color-white);
  color: var(--color-blue);
  cursor: pointer;
}

footer {
  background: rgb(0, 12.2727272727, 40.5);
  color: var(--color-white);
  text-align: center;
  font-size: 16px;
  padding: 16px;
}
@media screen and (max-width: 767px) {
  footer {
    font-size: 14px;
    padding: 16px;
  }
}/*# sourceMappingURL=main.css.map */