@import url(https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500&family=Lato:wght@400;700&display=swap);
.img-abs {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

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

::-moz-selection {
  background: #000;
  color: #fff;
}

::selection {
  background: #000;
  color: #fff;
}

:root {
  font-size: 62.5%;
}

section {
  position: relative;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  font-size: 1.4rem;
  line-height: 1.6;
  font-family: "Lato", sans-serif;
  color: #707070;
}

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

h1, h2, h3, h4, h5 {
  line-height: 1.1;
  font-weight: 500;
  font-family: "Cormorant Garamond", serif;
}

p {
  margin-bottom: 15px;
}

img {
  max-width: 100%;
  height: auto;
}

iframe {
  max-width: 100%;
}

#wrapper {
  overflow: hidden;
}

.cover {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.text-center, .center {
  text-align: center;
}

.text-right {
  text-align: right;
}

[id] {
  outline: 0;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1175px;
  }
}
@media (min-width: 1280px) {
  .container {
    width: 1250px;
  }
}

table {
  border-collapse: collapse;
}

.footer {
  background-color: #000;
  padding: 15px;
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
}
.footer a:hover {
  text-decoration: underline;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.63);
}
.hero__links {
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}
@media (min-width: 768px) {
  .hero__links {
    top: 32px;
    padding: 0 45px;
  }
}
.hero__links a {
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.4rem;
}
.hero__links a:not(:last-of-type) {
  margin-right: 25px;
}
@media (min-width: 768px) {
  .hero__links a:not(:last-of-type) {
    margin-right: 35px;
  }
}
.hero .hero__logo {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .hero .hero__logo {
    top: 60px;
  }
}
.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero .container {
  z-index: 2;
  position: relative;
  height: 550px;
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  color: #fff;
  padding-bottom: 70px;
}
@media (min-width: 768px) {
  .hero .container {
    height: 720px;
  }
}
@media (min-width: 768px) {
  .hero .container {
    justify-content: center;
    padding-bottom: initial;
  }
}
.hero__title {
  font-size: 3.2rem;
  line-height: 0.95;
  text-transform: uppercase;
  max-width: 500px;
  letter-spacing: -0.025em;
  margin: 0 auto 10px;
}
@media (min-width: 450px) {
  .hero__title {
    font-size: 4rem;
  }
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 5.5rem;
  }
}
@media (min-width: 768px) {
  .hero__title {
    max-width: 850px;
  }
}
.hero p {
  margin-bottom: 36px;
}
.hero--contact .container {
  justify-content: center;
}
@media (min-width: 768px) {
  .hero--contact .container {
    height: 650px;
  }
}

.about {
  padding: 60px 0;
  text-align: center;
}
.about::before {
  content: url("../images/diamont.png");
  position: absolute;
  left: -350px;
  top: 100px;
}
@media (min-width: 768px) {
  .about {
    padding: 110px 0;
  }
}
.about .title {
  margin-top: 40px;
}
.about p {
  max-width: 700px;
  margin: 20px auto 30px;
}

@media (min-width: 500px) {
  .locations__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    display: grid;
  }
}
@media (min-width: 992px) {
  .locations__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.locations__item {
  position: relative;
  display: block;
  margin-bottom: 10px;
  overflow: hidden;
}
@media (min-width: 500px) {
  .locations__item {
    margin-bottom: initial;
  }
}
.locations__item:before {
  content: "";
  display: block;
  padding-top: 65%;
}
.locations__item::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.63);
  transition: all 420ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.locations__item img {
  transition: all 420ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.locations__item h3 {
  transition: all 420ms cubic-bezier(0.165, 0.84, 0.44, 1);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  z-index: 2;
  font-size: 2rem;
  letter-spacing: -0.025em;
  padding: 20px;
}
@media (min-width: 768px) {
  .locations__item h3 {
    font-size: 2.6rem;
    padding: 30px;
  }
}
.locations__item:hover img {
  transform: scale(1.05);
}
.locations__item:hover:after {
  background-color: rgba(0, 0, 0, 0.4);
}
.locations__item:hover h3 {
  transform: translateY(-5px);
}
.locations__bottom {
  text-align: center;
  max-width: 900px;
  margin: 60px auto;
}

.operations {
  padding: 30px 0 60px;
}
.operations::before {
  content: url("../images/diamont.png");
  position: absolute;
  right: -350px;
  top: 200px;
}
@media (min-width: 768px) {
  .operations {
    padding: 30px 0 110px;
  }
}
.operations__grid {
  margin-bottom: 50px;
}
@media (min-width: 450px) {
  .operations__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.operations__item {
  position: relative;
  display: block;
  width: 100%;
  max-width: 300px;
  overflow: hidden;
  margin: 0 auto 15px;
}
@media (min-width: 450px) {
  .operations__item {
    width: 50%;
    max-width: initial;
    border: 5px solid #fff;
  }
}
@media (min-width: 750px) {
  .operations__item {
    width: 33.33%;
  }
}
@media (min-width: 600px) {
  .operations__item {
    margin: initial;
  }
}
.operations__item:before {
  content: "";
  display: block;
  padding-top: 140%;
}
.operations__item::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.63);
  background: linear-gradient(0, black 0%, rgba(0, 0, 0, 0.45) 70%);
  transition: all 420ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.operations__item img {
  transition: all 420ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.operations__item:hover img {
  transform: scale(1.05);
}
.operations__item:hover:after {
  opacity: 0.5;
}
.operations__item:hover .operations__info {
  transform: translateY(-5px);
}
.operations__info {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0 15px 20px;
  z-index: 2;
  color: #fff;
  text-align: center;
  transition: all 420ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (min-width: 992px) {
  .operations__info {
    padding: 0 30px 50px;
  }
}
.operations__info .title {
  font-size: 2.6rem;
  color: #fff;
  margin: 5px 0 0;
}
@media (min-width: 992px) {
  .operations__info .title {
    font-size: 3.2rem;
  }
}

.numbers::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.63);
}
.numbers .container {
  text-align: center;
  color: #fff;
  padding-top: 80px;
  padding-bottom: 95px;
  z-index: 2;
}
.numbers .title {
  color: #fff;
}
.numbers__grid {
  gap: 50px;
  margin-top: 70px;
}
@media (min-width: 600px) {
  .numbers__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .numbers__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.number {
  margin-bottom: 30px;
}
@media (min-width: 600px) {
  .number {
    margin-bottom: initial;
  }
}
.number__no {
  color: #A3865D;
  font-weight: bold;
  font-size: 9rem;
  line-height: 1;
  display: block;
}
.number__no::after {
  content: "";
  display: block;
  width: 50px;
  border-bottom: 3px solid #A3865D;
  margin: 10px auto 20px;
}
.number h4 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.section {
  margin-top: 60px;
}
.section::before {
  content: url("../images/diamont.png");
  position: absolute;
  left: -350px;
  top: 200px;
}
.section__banner {
  height: 220px;
  position: relative;
  margin-top: 90px;
}
.section__banner__info {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #fff;
}
@media (min-width: 700px) {
  .section__banner__info {
    padding: 0 110px;
    width: initial;
    justify-content: flex-start;
  }
}
.section__buttons {
  text-align: center;
}
.section__buttons a {
  display: inline-block;
  margin: 5px 9px;
}
.section__casino {
  background-color: #F7F7F7;
  padding: 20px;
  margin-bottom: 100px;
}
@media (min-width: 992px) {
  .section__casino {
    margin-bottom: 180px;
    padding: 0 50px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.section__info {
  width: 100%;
  padding: 40px 0 0 0;
  text-align: center;
}
@media (min-width: 992px) {
  .section__info {
    text-align: left;
    width: 45%;
    padding: 80px 40px;
  }
}
@media (min-width: 1200px) {
  .section__info {
    padding: 110px 85px;
  }
}
.section__info .title {
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  .section__info .title {
    text-align: left;
  }
}
.section__img {
  width: 100%;
  position: relative;
  display: block;
  transform: translateY(60px);
}
@media (min-width: 992px) {
  .section__img {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .section__img {
    transform: translateY(80px);
  }
}
.section__img::before {
  content: "";
  display: block;
  padding-top: 75%;
}
.section__img::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.63);
}
.section__img--logo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.contact {
  padding-top: 60px;
}
@media (min-width: 768px) {
  .contact {
    padding-top: 90px;
  }
}
.contact__grid {
  display: flex;
  flex-direction: column;
}
@media (min-width: 700px) {
  .contact__grid {
    flex-direction: row;
    margin-bottom: 65px;
  }
}
.contact__box {
  margin-bottom: 30px;
  text-align: center;
}
@media (min-width: 700px) {
  .contact__box {
    width: 33.33%;
    padding: 0 35px;
    margin-bottom: initial;
  }
}
.contact__box h3 {
  color: #A3865D;
  margin-bottom: 20px;
  font-size: 2rem;
  font-family: "Lato", sans-serif;
}
.contact__box .info {
  max-width: 260px;
  margin: 0 auto;
}

.form__row {
  display: flex;
  flex-wrap: wrap;
}
.form__col {
  width: 100%;
  margin-bottom: 12px;
}
@media (min-width: 600px) {
  .form__col {
    width: 50%;
    padding: 0 10px;
    margin-bottom: 22px;
  }
}
.form__col--full {
  width: 100%;
}

.wpcf7 {
  max-width: 840px;
  margin: 60px auto;
}
.wpcf7-text, .wpcf7-textarea, .wpcf7 select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  background-color: transparent;
  width: 100%;
  border: 1px solid #DBDBDB;
  padding: 15px;
  font-size: 1.4rem;
  font-family: "Lato", sans-serif;
  line-height: 1;
  outline: 0;
  border-radius: 0;
}
.wpcf7-text::-moz-placeholder, .wpcf7-textarea::-moz-placeholder, .wpcf7 select::-moz-placeholder {
  color: #707070;
}
.wpcf7-text:-ms-input-placeholder, .wpcf7-textarea:-ms-input-placeholder, .wpcf7 select:-ms-input-placeholder {
  color: #707070;
}
.wpcf7-text::placeholder, .wpcf7-textarea::placeholder, .wpcf7 select::placeholder {
  color: #707070;
}
.wpcf7-text:focus, .wpcf7-textarea:focus, .wpcf7 select:focus {
  border-color: #A3865D;
}
.wpcf7 select {
  background-image: url("../images/select.svg");
  background-position: right 25px center;
  background-repeat: no-repeat;
}
.wpcf7-textarea {
  height: 180px;
  resize: none;
}
.wpcf7-submit {
  margin-top: 35px;
  text-transform: uppercase;
  border: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border-radius: 0;
}
.wpcf7-acceptance {
  width: 90%;
  display: block;
  margin: 0 auto;
}
.wpcf7-acceptance label {
  display: flex;
  text-align: left;
  font-size: 1.2rem;
}
.wpcf7-acceptance label input {
  flex: 0 0 auto;
  margin-right: 15px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transform: translateY(4px);
  width: 14px;
  height: 14px;
  background-color: transparent;
  border: 2px solid #A3865D;
  outline: 0;
  border-radius: 0;
}
.wpcf7-acceptance label input:checked {
  background-color: #A3865D;
  box-shadow: inset 0 0 0 2px #fff;
}

span.wpcf7-not-valid-tip {
  display: none;
}

span.wpcf7-list-item:first-of-type {
  margin: 0;
}

.wpcf7-form-control.wpcf7-not-valid {
  border-color: red !important;
}

.wpcf7 form .wpcf7-response-output {
  border: none;
  text-align: center;
  max-width: 95%;
  margin: 10px auto;
  font-size: 12px;
  line-height: 14px;
}

div.wpcf7-validation-errors {
  color: red;
}

div.wpcf7 .ajax-loader {
  display: block;
  margin: 4px auto;
}

.hero__logo {
  text-align: center;
  font-size: 3.5rem;
  line-height: 1;
  letter-spacing: -0.03em;
}
@media (min-width: 500px) {
  .hero__logo {
    font-size: 4rem;
  }
}
.hero__logo span {
  display: block;
  font-size: 1.5rem;
  letter-spacing: 0.5em;
}

.btn, .wpcf7-submit {
  display: inline-block;
  padding: 12px 15px;
  min-width: 200px;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  line-height: 1;
  font-size: 1.5rem;
  letter-spacing: -0.055em;
  background-color: #000;
  color: #fff;
  transition: all 420ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.btn:hover, .wpcf7-submit:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}
.btn--gold {
  background-color: #A3865D;
}
.btn--white {
  background-color: #fff;
  color: #000;
}

.title {
  line-height: 1;
  text-transform: uppercase;
  color: #A3865D;
  max-width: 860px;
  margin: 0 auto 10px;
  text-align: center;
  font-size: 3.2rem;
}
@media (min-width: 450px) {
  .title {
    font-size: 4rem;
  }
}
@media (min-width: 768px) {
  .title {
    font-size: 4.2rem;
  }
}

.main-title {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 50px;
}

.page-header {
  background-color: #000;
  color: #fff;
  padding: 150px 0;
}
.page-header:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.63);
}
.page-header .container {
  z-index: 2;
}

#main {
  padding: 60px 0;
}

/*# sourceMappingURL=main.css.map*/