@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --black-color: #222224;
  --white-color: #ffffff;
  --gray-color: #e2e2e2;
  --blue-color: #2c3dcb;
  --gold-color: #d0b16f;
  --gold-gradient: linear-gradient(91.98deg, #c8b384 0%, #e4d4ae 53.5%, #c8b384 100%);
  --footer-height: 128px;
}
@media (max-width: 768px) {
  :root {
    --footer-height: 68px;
  }
}

*,
*:before,
*:after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  border: 0;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:focus,
:active {
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
}

nav,
footer,
header,
aside {
  display: block;
}

input,
button,
textarea {
  font-family: inherit;
  color: #fff;
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}

button:focus {
  outline: none;
}

button:focus-visible {
  outline: none;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
  box-shadow: none;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

ul[class],
ol[class] {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
  color: #fff;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}
body::before {
  position: absolute;
  content: " ";
  top: 0;
  width: 100%;
  height: 128px;
  background-color: var(--black-color);
}
body.no-scroll {
  overflow: hidden;
  height: 100vh;
}
body.active {
  overflow: hidden;
}

html,
body {
  scroll-behavior: smooth;
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

ul[class],
ol[class] {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
  display: block;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

.container {
  width: 100%;
  padding: 0 14px;
  max-width: 1454px;
  margin: 0 auto;
}

.goldButton {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--gold-gradient);
  width: 100%;
  height: 60px;
  padding-top: 20px;
  padding-right: 10px;
  padding-bottom: 20px;
  padding-left: 25px;
  border-radius: 5px;
  color: var(--black-color);
  font-family: Raleway;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  transition: all 0.4s ease;
  overflow: hidden;
}
.goldButton:not(.contact) {
  max-height: 50px;
}
.goldButton::before {
  content: " ";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white-color);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.goldButton .btnText {
  color: var(--black-color);
  font-family: Raleway;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  z-index: 1;
}
.goldButton.contact {
  padding-left: 60px;
}
.goldButton.contact svg {
  position: absolute;
  left: 28px;
  width: 17px;
  height: 17px;
  top: 22px;
  background: url("../images/phone_icon.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  transition: fill 0.4s ease;
}
.goldButton:hover::before {
  opacity: 1;
}
.goldButton:hover svg {
  fill: var(--black-color);
}

section {
  scroll-margin-top: 96px;
}
@media (max-width: 1024px) {
  section {
    scroll-margin-top: 60px;
  }
}
section:first-child, section.homePage {
  height: 100vh;
  padding-top: 128px;
}
section:first-child.homePage, section.homePage.homePage {
  margin-top: 128px;
  padding: 0;
}

header.mainHeader {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 128px;
  z-index: 9999;
}
header.mainHeader::before {
  content: " ";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-height: 128px;
  overflow: hidden;
  transition: all 0.4s ease;
  background-color: rgba(25, 25, 23, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: -1;
}
@media screen and (max-width: 1040px) {
  header.mainHeader::before {
    max-height: 68px;
  }
  header.mainHeader::before.active {
    max-height: 100vh;
  }
}
header.mainHeader.active::before {
  position: fixed;
  height: 100vh;
  max-height: 1000px;
  padding-bottom: 44vh;
  padding-top: 44vh;
}
@media screen and (max-width: 1040px) {
  header.mainHeader {
    height: 68px;
  }
}
header.mainHeader .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 14px;
  height: 100%;
}
@media screen and (max-width: 1040px) {
  header.mainHeader .container {
    padding: 4px 14px;
  }
}
header.mainHeader .container .logo {
  max-width: 130px;
  width: 100%;
}
header.mainHeader .container .logo img, header.mainHeader .container .logo .custom-logo {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1040px) {
  header.mainHeader .container .logo img, header.mainHeader .container .logo .custom-logo {
    max-height: 60px;
    width: auto;
  }
}
header.mainHeader .container ul#menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 20px;
}
header.mainHeader .container ul#menu-header li a {
  position: relative;
  color: var(--white-color);
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  font-weight: 500;
}
header.mainHeader .container ul#menu-header li a::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--gold-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 99;
  font-weight: 500;
  min-height: 20px;
}
header.mainHeader .container ul#menu-header li a:hover {
  color: transparent;
}
header.mainHeader .container ul#menu-header li a:hover:after {
  opacity: 1;
}
header.mainHeader .container ul#menu-header li a.active {
  color: transparent;
}
header.mainHeader .container ul#menu-header li a.active:after {
  opacity: 1;
}
header.mainHeader .container .goldButton {
  max-width: 185px;
}
header.mainHeader .container .menuWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  top: 68px;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  height: 100%;
  padding-bottom: 0;
}
@media screen and (max-width: 1040px) {
  header.mainHeader .container .menuWrapper.active {
    max-height: 500px;
    padding-bottom: 44vh;
    padding-top: 44vh;
  }
}
header.mainHeader .container .menuWrapper .mobileContactBtn {
  display: none;
}
@media screen and (max-width: 1040px) {
  header.mainHeader .container .menuWrapper {
    position: fixed;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
  }
  header.mainHeader .container .menuWrapper ul {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 26px;
    padding: 20px 0;
  }
  header.mainHeader .container .menuWrapper ul li a {
    font-size: 20px;
  }
  header.mainHeader .container .menuWrapper .mobileContactBtn {
    display: inline-block;
    margin-bottom: 20px;
    min-height: 60px;
  }
  header.mainHeader .container .menuWrapper .mobileContactBtn::before {
    display: none;
  }
  header.mainHeader .container .menuWrapper .mobileContactBtn svg {
    fill: none;
  }
}
header.mainHeader .container .mobileMenu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 10;
}
header.mainHeader .container .mobileMenu span {
  width: 25px;
  height: 3px;
  background: var(--white-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}
header.mainHeader .container .mobileMenu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
header.mainHeader .container .mobileMenu.active span:nth-child(2) {
  opacity: 0;
}
header.mainHeader .container .mobileMenu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
@media screen and (max-width: 1040px) {
  header.mainHeader .container .mobileMenu {
    display: flex;
  }
  header.mainHeader .container .desktopContactBtn {
    display: none;
  }
}

footer.mainFooter {
  background-color: var(--black-color);
}
footer.mainFooter .container .footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 0 30px;
}
@media (max-width: 768px) {
  footer.mainFooter .container .footer-top {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0 20px;
  }
}
footer.mainFooter .container .footer-top .logo {
  max-width: 130px;
  width: 100%;
}
footer.mainFooter .container .footer-top .logo img {
  max-width: 130px;
  height: auto;
}
@media screen and (max-width: 1040px) {
  footer.mainFooter .container .footer-top .logo img {
    max-height: 60px;
    margin: 0 auto;
    width: auto;
  }
}
footer.mainFooter .container .footer-top .navigation ul {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1040px) {
  footer.mainFooter .container .footer-top .navigation ul {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  footer.mainFooter .container .footer-top .navigation ul {
    flex-direction: column;
    gap: 14px;
  }
}
footer.mainFooter .container .footer-top .navigation ul a {
  position: relative;
  color: var(--white-color);
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  font-weight: 500;
}
footer.mainFooter .container .footer-top .navigation ul a::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--gold-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 99;
  font-weight: 500;
  min-height: 20px;
}
footer.mainFooter .container .footer-top .navigation ul a:hover {
  color: transparent;
}
footer.mainFooter .container .footer-top .navigation ul a:hover:after {
  opacity: 1;
}
footer.mainFooter .container .footer-top .navigation ul a.active {
  color: transparent;
}
footer.mainFooter .container .footer-top .navigation ul a.active:after {
  opacity: 1;
}
footer.mainFooter .container .separator {
  width: 100%;
  height: 1px;
  background-color: #4d4e4f;
}
footer.mainFooter .container .footer-text {
  display: flex;
  align-items: center;
  justify-content: end;
  padding: 30px 0 30px;
  gap: 14px;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0%;
  text-align: right;
}
@media (max-width: 768px) {
  footer.mainFooter .container .footer-text {
    text-align: center;
    flex-direction: column;
    gap: 5px;
  }
}
footer.mainFooter .container .footer-text .footer-link {
  color: var(--white-color);
  text-decoration: none;
  transition: color 0.3s ease;
}
footer.mainFooter .container .footer-link:hover {
  color: #d4af37;
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}
.popup .popup-content {
  background-color: white;
  padding: 50px;
  border-radius: 12px;
  width: 90%;
  max-width: 580px;
  position: relative;
  text-align: center;
}
@media (max-width: 580px) {
  .popup .popup-content {
    padding: 30px;
  }
}
.popup .popup-content .close-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
}
@media (max-width: 580px) {
  .popup .popup-content .close-btn {
    top: 20px;
    right: 20px;
  }
}
.popup .popup-content h4 {
  font-family: Raleway;
  font-weight: 700;
  font-style: Bold;
  font-size: 46px;
  line-height: 110%;
  letter-spacing: 0%;
  text-align: center;
  color: #333;
  margin-bottom: 15px;
}
@media (max-width: 580px) {
  .popup .popup-content h4 {
    font-size: 28px;
    margin-bottom: 10px;
  }
}
.popup .popup-content p {
  margin-bottom: 40px;
  color: #333;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
}
@media (max-width: 580px) {
  .popup .popup-content p {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.popup .popup-content .form-group {
  margin-bottom: 25px;
}
@media (max-width: 580px) {
  .popup .popup-content .form-group {
    margin-bottom: 15px;
  }
}
.popup .popup-content .form-group .input-container {
  position: relative;
  width: 100%;
}
.popup .popup-content .form-group .input-container .input-field {
  width: 100%;
  padding: 20px 20px 20px 54px;
  background: transparent;
  border: 1px solid var(--gray-color);
  border-radius: 8px;
  color: var(--black-color);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.popup .popup-content .form-group .input-container .input-field:focus {
  outline: none;
}
.popup .popup-content .form-group .input-container .input-field::-moz-placeholder {
  color: #848486;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
}
.popup .popup-content .form-group .input-container .input-field::placeholder {
  color: #848486;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
}
@media (max-width: 768px) {
  .popup .popup-content .form-group .input-container .input-field {
    max-width: 100%;
  }
}
.popup .popup-content .form-group .input-container .input-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 1.1rem;
}
.popup .popup-content .goldButton {
  margin-top: 15px;
  transition: all 0.4s;
  border: 1px solid var(--gold-color);
}
.popup .popup-content .goldButton:hover {
  background: transparent;
}/*# sourceMappingURL=main.css.map */