/*Colors*/
/*Styles*/
/*Common styles*/
* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  height: 100%;
  font-family: "Montserrat", sans-serif;
  color: #000;
  font-size: 16px;
  background: #EFEFEF;
  position: relative;
}
@media (max-width: 768px) {
  body {
    font-size: 12px;
  }
}

body._lock {
  overflow: hidden;
}

a,
span,
svg use,
ul li {
  transition: 0.3s;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

div:focus,
span:focus,
a:focus,
input:focus,
textarea:focus,
select:focus,
button:focus,
.button:focus {
  outline: none;
}

input,
textarea {
  box-shadow: none !important;
}

ul {
  padding: 0;
  margin: 0;
}
ul li {
  padding: 0;
  list-style: none;
}

.container {
  max-width: 1440px;
  padding: 0 20px;
  margin: auto;
  box-sizing: border-box;
}

h1 {
  margin-bottom: 0;
  font-size: 48px;
  color: #CAA146;
  font-weight: 500;
  line-height: 108%;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  h1 {
    font-size: 45px;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 28px;
  }
}

h2 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #CAA146;
  font-weight: 500;
  line-height: 108%;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  h2 {
    font-size: 16px;
  }
}
h2.bl {
  margin-bottom: 35px;
  color: #010101;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 0;
  max-width: 226px;
  width: 100%;
  text-transform: uppercase;
  box-sizing: border-box;
  outline: none;
  box-shadow: none;
  border: none;
  transition: 0.3s;
  cursor: pointer;
}
.btn-tp {
  margin-top: 20px;
}
.btn-download {
  max-width: 106px;
}
.btn-black {
  background: #000;
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.03em;
}
.btn-black:hover {
  background: #CAA146;
}

p {
  line-height: 120%;
}
p + p {
  margin-top: 20px;
}

img {
  max-width: 100%;
}

.header__inner {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  border-bottom: 1px solid #000;
}
@media (max-width: 768px) {
  .header__inner {
    justify-content: center;
  }
}
.header__logo {
  display: block;
}
.header__logo img {
  display: block;
}
.header__tel {
  display: table;
  margin-left: auto;
  color: #000;
  font-size: 15px;
  letter-spacing: 0.07em;
  line-height: 120%;
  font-weight: 500;
  text-transform: uppercase;
}
.header__tel img {
  display: none;
}
.header__tel:hover {
  color: #CAA146;
}
@media (max-width: 768px) {
  .header__tel {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .header__tel span {
    display: none;
  }
  .header__tel img {
    display: block;
  }
}
.header__address {
  margin-top: 13px;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 120%;
}
@media (max-width: 768px) {
  .header__address {
    display: none;
  }
}

.banner {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .banner {
    margin-top: 20px;
  }
}
.banner__inner {
  display: flex;
  padding: 17px 20px 20px 20px;
  align-items: center;
  gap: 25px;
  justify-content: space-between;
  box-sizing: border-box;
  border: 1px solid #A1A1A1;
}
@media (max-width: 768px) {
  .banner__inner {
    padding: 10px;
    gap: 0;
    flex-direction: column-reverse;
  }
}
.banner__info {
  padding-left: 58px;
}
@media (max-width: 1200px) {
  .banner__info {
    padding: 0 25px;
  }
}
@media (max-width: 991px) {
  .banner__info {
    padding: 0 12px;
  }
}
@media (max-width: 768px) {
  .banner__info {
    padding: 10px 0;
  }
}
.banner__cl_fst {
  max-width: 662px;
  width: 100%;
}
.banner__cl_sec {
  max-width: 672px;
  width: 100%;
}
.banner__cl:last-of-type {
  display: flex;
  justify-content: flex-end;
  max-width: 672px;
}
@media (max-width: 768px) {
  .banner__cl {
    width: 100%;
  }
}
.banner__tx {
  font-size: 24px;
  line-height: 120%;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .banner__tx {
    font-size: 12px;
  }
}
.banner__img {
  width: 100%;
  min-height: 402px;
  height: 100%;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .banner__img {
    min-height: 300px;
  }
}
.banner__img img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.info {
  margin-top: 40px;
}
.info + .info .info__holder {
  padding-top: 40px;
  border-top: 1px solid #000;
}
.info p {
  letter-spacing: 0.03em;
}
.info p + .info__img {
  margin-top: 20px;
}
.info p a {
  color: #000;
}
.info p a:hover {
  color: #CAA146;
}
.info .btn + p {
  margin-top: 20px;
}
.info__inner {
  max-width: 695px;
  margin: auto;
}
.info__img {
  margin-bottom: 20px;
}
.info__form {
  max-width: 695px;
  margin: 20px auto 0;
}
@media (max-width: 991px) {
  .info__form {
    max-width: 700px;
  }
}
.info__form p {
  margin-top: 25px;
}
.info__form h2 {
  color: #000;
}
.info__form-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 37px 55px;
  max-width: 815px;
  background: #fff;
}
@media (max-width: 768px) {
  .info__form-inner {
    display: block;
    padding: 33px 24px;
  }
}
.info__form_btn {
  display: block;
  text-align: center;
  padding: 14px 0;
  font-size: 15px;
  max-width: 305px;
  width: 100%;
  text-transform: uppercase;
  outline: none;
  border: none;
  background-color: #000;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-left: 58px;
}
@media (max-width: 991px) {
  .info__form_btn {
    margin-left: 0;
  }
}
.info__form_btn:hover {
  background-color: #CAA146;
}
.info__form-cl:first-of-type {
  width: 58%;
}
@media (max-width: 768px) {
  .info__form-cl:first-of-type {
    width: 100%;
  }
}
.info__form-cl:last-of-type {
  width: 32%;
}
@media (max-width: 768px) {
  .info__form-cl:last-of-type {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .info__form-cl + .info__form-cl {
    margin-top: 37px;
  }
}
.info__form-title {
  margin-bottom: 18px;
  font-weight: 500;
  font-size: 15px;
  line-height: 120%;
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  .info__form-title {
    margin-bottom: 8px;
  }
}
.info__form input {
  height: 40px;
  width: 100%;
  border: none;
  font-weight: 500;
  font-size: 11px;
  border-bottom: 1px solid #000;
  border-radius: 0;
  font-family: "Montserrat", sans-serif;
}
.info__form input::-moz-placeholder {
  text-transform: uppercase;
  color: #8D8D8D;
  letter-spacing: 0.07em;
}
.info__form input:-ms-input-placeholder {
  text-transform: uppercase;
  color: #8D8D8D;
  letter-spacing: 0.07em;
}
.info__form input::placeholder {
  text-transform: uppercase;
  color: #8D8D8D;
  letter-spacing: 0.07em;
}
.info__form .check {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .info__form .check {
    display: flex;
    align-items: center;
    margin-top: 25px;
  }
}
.info__form .check-in {
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .info__form .check-in {
    width: 160px;
    flex-shrink: 0;
    margin-bottom: 0;
  }
}
.info__form .check input[type=checkbox] {
  display: none;
}
.info__form .check input[type=checkbox] + label {
  display: block;
  padding-left: 15px;
  font-size: 10px;
  line-height: 120%;
  letter-spacing: 0.04em;
  position: relative;
  cursor: pointer;
}
.info__form .check input[type=checkbox] + label:before {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  top: 2px;
  left: -1px;
  border: 1px solid #000;
}
.info__form .check input[type=checkbox] + label:after {
  content: "";
  width: 4px;
  height: 4px;
  display: block;
  position: absolute;
  top: 5px;
  left: 2px;
  background: #000;
  opacity: 0;
  transition: 0.3s;
}
.info__form .check input[type=checkbox]:checked + label:after {
  opacity: 1;
}
.info__form .check .btn {
  padding: 13px;
  width: 100%;
  letter-spacing: 0.1em;
}

.footer {
  margin-top: 70px;
}
@media (max-width: 768px) {
  .footer {
    margin-top: 30px;
  }
}
.footer__top {
  display: inline-block;
  margin-left: 20px;
}
@media (max-width: 768px) {
  .footer__top {
    display: inline-block;
    margin-left: 0;
  }
}
.footer__inner {
  padding: 14px 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #000;
}
@media (max-width: 768px) {
  .footer__inner {
    display: block;
    padding: 23px 0;
  }
}
.footer__copyright {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: #17161C;
}
@media (max-width: 768px) {
  .footer__cl:first-of-type {
    display: none;
  }
}
.footer__cl:last-of-type {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .footer__cl {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.footer__soc {
  display: flex;
}
@media (max-width: 768px) {
  .footer__soc {
    display: block;
  }
}
.footer__soc li + li {
  margin-left: 30px;
}
@media (max-width: 768px) {
  .footer__soc li + li {
    margin-left: 0;
    margin-top: 10px;
  }
}
.footer__soc li a {
  font-size: 17px;
  font-weight: 500;
  color: #313434;
  letter-spacing: 0.06em;
}
.footer__soc li a:hover {
  color: #CAA146;
}

.br {
  display: block;
}
@media (max-width: 768px) {
  .br {
    display: none;
  }
}/*# sourceMappingURL=styles.css.map */