html {
  width: 100%;
}

body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  position: relative;
  background-color: #000000;
  font-family: "Cormorant Garamond", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 100;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

@media screen and (max-width: 300px) {
  body {
    width: 300px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 30px 0 10px 0;
  color: #babfaa;
  font-family: "Noto Serif Display", sans-serif;
  font-weight: 300;
}

h1 {
  font-size: 2.8em;
}

h2 {
  font-size: 2.4em;
}

h3 {
  font-size: 2em;
}

h4 {
  font-size: 1.6em;
}

h5 {
  font-size: 1.2em;
}

h6 {
  font-size: 1em;
}

table {
  border-collapse: collapse;
  border-color: #cccccc;
}

table tr th {
  background-color: #525252;
  border-color: #adadad;
  color: #ffffff;
}

table tr td {
  border-color: #adadad;
}

img {
  border: 0;
}

hr {
  background-color: #adadad;
  border: 0;
  height: 1px;
}

iframe {
  border: 0;
}

.hide_meta {
  display: none;
}

.top_notice {
  width: 100%;
  height: auto;
  padding: 5px 0;
  margin: 0 auto;
  position: relative;
  display: none;
  clear: both;
}

.jump_anchor {
  display: block;
  position: relative;
  top: -130px;
  visibility: hidden;
}

.red_notice {
  width: calc(100% - 20px);
  height: auto;
  padding: 10px;
  margin: 10px auto;
  position: relative;
  display: table;
  clear: both;
  background-color: red;
  color: #ffffff;
  font-family: "Cormorant Garamond", sans-serif;
  text-align: center;
}

*:focus {
  outline: none;
}

.gen_btn {
  width: auto;
  height: auto;
  padding: 10px 35px;
  background-color: #342a28;
  color: #babfaa;
  font-size: 1.2em;
  font-weight: 300;
  font-style: italic;
  border-radius: 20px;
  border: 0;
  font-family: 'Cormorant Garamond', serif;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.gen_btn:hover {
  background-color: #342a28;
}

@media only screen and (max-width: 440px) {
  .gen_btn {
    width: 100%;
  }
}

.gen_btn_right {
  float: right;
}

/* NAVIGATION BAR */
.navigation_bar {
  width: calc(100% - 8%);
  height: auto;
  padding: 10px 4%;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  background-color: #000000b9;
  z-index: 1001;
  overflow-x: hidden;
}

.navigation_bar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.navigation_bar.sticky+.content {
  padding-top: 65px;
}

.is-active {
  color: #babfaa !important;
}

@media screen and (max-width: 1080px) {
  .is-active {
    color: #c4c4c4 !important;
  }
}

.link_no_click {
  pointer-events: none;
}

@media screen and (max-width: 1080px) {
  .link_no_click {
    pointer-events: all;
  }
}

/* HEADER BANNER */
.header {
  width: calc(100% - 20%);
  padding: 5vh 0;
  margin: 0 10%;
  position: relative;
  clear: both;
  display: table;
  overflow: hidden;
}

@media screen and (max-width: 1200px) {
  .header {
    padding: 0;
  }
}

@media screen and (max-width: 1080px) {
  .header {
    width: calc(100% - 20%);
    height: calc(100vh - 160px);
    margin: 0 10% 80px 10%;
  }
}

@media screen and (max-width: 560px) {
  .header {
    width: calc(100% - 40px);
    height: auto;
    margin: 0 20px;
  }
}

.header_full {
  height: calc(90vh - 65px);
}

@media screen and (max-width: 560px) {
  .header_full {
    height: auto;
  }
}

.header_auto {
  height: auto;
}

.header_content {
  width: 60%;
  height: auto;
  padding: 50px 0 0 0;
  display: table-cell;
  vertical-align: top;
}

.header_auto .header_content {
  padding: 100px 0;
  vertical-align: middle;
}

@media screen and (max-width: 560px) {
  .header_content {
    width: 100%;
    display: table;
    position: relative;
    clear: both;
  }
}

.header_left .header_content_padded {
  padding: 0 40px 0 0;
}

.header_right .header_content_padded {
  padding: 0 0 0 40px;
}

@media screen and (max-width: 560px) {

  .header_left .header_content_padded,
  .header_left .header_content_not_padded {
    padding: 0 0 20px 0;
  }

  .header_right .header_content_padded,
  .header_right .header_content_not_padded {
    padding: 0 0 20px 0;
  }
}

.header_title {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 15px 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 7.0vw;
  font-weight: 100;
  line-height: 1.1em;
  font-family: 'Noto Serif Display', serif;
  color: #babfaa;
}

@media screen and (max-width: 560px) {
  .header_title {
    font-size: 10.0vw;
  }
}

.header_left .header_title {
  text-align: left;
}

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

@media screen and (max-width: 560px) {
  .header_left .header_title {
    text-align: center;
  }

  .header_right .header_title {
    text-align: center;
  }
}

.header_description {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 15px 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 2.5vw;
  line-height: 1.1em;
  font-weight: 100;
  color: #babfaa;
  font-style: italic;
}

@media screen and (max-width: 560px) {
  .header_description {
    font-size: 4.8vw;
  }
}

.header_left .header_description {
  text-align: left;
}

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

@media screen and (max-width: 560px) {
  .header_left .header_description {
    text-align: center;
  }

  .header_right .header_description {
    text-align: center;
  }
}

.header_content_text {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 15px 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 1.1em;
  line-height: 1.1em;
  font-weight: 100;
  color: #babfaa;
}

.header_left .header_content_text {
  text-align: left;
}

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

@media screen and (max-width: 560px) {
  .header_left .header_content_text {
    text-align: center;
  }

  .header_right .header_content_text {
    text-align: center;
  }
}

.header_button {
  width: auto;
  height: auto;
  padding: 0;
  margin: 10px auto;
  left: 0;
  right: 0;
  clear: both;
  display: table;
}

@media screen and (max-width: 560px) {
  .header_button {
    width: auto;
    margin: 15px auto;
    text-align: center;
    position: relative;
    bottom: auto;
  }
}

.header_button_float {
  position: absolute;
  bottom: 10%;
}

@media screen and (max-width: 560px) {
  .header_button_float {
    position: relative;
    bottom: auto;
  }
}

.header_button_inline {
  position: relative;
  bottom: auto;
}

.header_left .header_button {
  float: left;
}

.header_right .header_button {
  float: right;
}

@media screen and (max-width: 560px) {
  .header_left .header_button {
    float: none;
  }

  .header_right .header_button {
    float: none;
  }
}

.header_button a,
.header_button a:visited {
  width: auto;
  height: auto;
  padding: 10px 30px;
  background-color: #342a28;
  color: #babfaa;
  text-decoration: none;
  font-size: 1.2em;
  font-style: italic;
  border-radius: 35px;
  display: table;
  text-transform: uppercase;
}

.header_button_float .header_button a,
.header_button_float .header_button a:visited {
  margin: 0 auto;
}

.header_button_inline .header_button a,
.header_button_inline .header_button a:visited {
  margin: 0;
}

@media screen and (max-width: 560px) {

  .header_button_inline .header_button a,
  .header_button_inline .header_button a:visited {
    margin: 0 auto;
  }
}

@media screen and (max-width: 560px) {

  .header_button a,
  .header_button a:visited {
    padding: 10px 20px;
    font-size: 1.1em;
  }
}

.header_cover_image {
  width: 40%;
  height: 100%;
  padding: 0;
  vertical-align: top;
  white-space: nowrap;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: contain;
}

.header_auto .header_cover_image {
  vertical-align: middle;
}

@media screen and (max-width: 560px) {
  .header_cover_image {
    width: 100%;
    height: auto;
    padding-bottom: 100%;
    position: relative;
    clear: both;
    display: table;
  }
}

.header_left .header_cover_image_left {
  display: none;
}

.header_left .header_cover_image_right {
  display: table-cell;
  background-position: right top;
}

@media screen and (max-width: 560px) {
  .header_left .header_cover_image_right {
    display: table;
    background-position: center top;
  }
}

.header_right .header_cover_image_left {
  display: table-cell;
  background-position: left top;
}

@media screen and (max-width: 560px) {
  .header_right .header_cover_image_left {
    display: none;
    background-position: center top;
  }
}

.header_right .header_cover_image_right {
  display: none;
}

@media screen and (max-width: 560px) {
  .header_right .header_cover_image_right {
    display: table;
    background-position: center top;
  }
}

/* MAIN CONTENT */
.main_content {
  width: calc(100% - 20%);
  height: auto;
  padding: 50px 10%;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  overflow: hidden;
}

@media screen and (max-width: 1200px) {
  .main_content {
    width: calc(100% - 10%);
    padding: 50px 5%;
  }
}

@media screen and (max-width: 1080px) {
  .main_content {
    width: calc(100% - 40px);
    padding: 50px 20px;
  }
}

.content_h2_header {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto 10px auto;
  position: relative;
  clear: both;
  display: table;
  font-size: 2.8em;
  line-height: 1.1em;
  font-family: 'Noto Serif Display', serif;
  color: #babfaa;
  text-transform: uppercase;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .content_h2_header {
    font-size: 2.6em;
  }
}

@media screen and (max-width: 1080px) {
  .content_h2_header {
    font-size: 2.4em;
  }
}

@media screen and (max-width: 767px) {
  .content_h2_header {
    font-size: 2.0em;
  }
}

@media screen and (max-width: 560px) {
  .content_h2_header {
    font-size: 1.8em;
  }
}

@media screen and (max-width: 440px) {
  .content_h2_header {
    font-size: 1.6em;
  }
}

.page_content {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  color: #babfaa;
  font-size: 1.2em;
}

@media screen and (max-width: 767px) {
  .page_content {
    font-size: 1.1em;
  }
}

.page_content p {
  text-align: justify;
  line-height: 1.4em;
}

@media screen and (max-width: 560px) {
  .page_content p {
    text-align: left;
  }
}

.page_content a,
.page_content a:visited {
  color: #babfaa;
  text-decoration: underline;
}

/* CONTENT BOXES */
.content_boxes {
  width: calc(100% - 20%);
  height: auto;
  padding: 0;
  margin: 0 10%;
  position: relative;
  clear: both;
  display: table;
  overflow: hidden;
}

@media screen and (max-width: 560px) {
  .content_boxes {
    width: calc(100% - 40px);
    margin: 0 20px;
  }
}

.content_box_holder {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 30px auto;
  position: relative;
  clear: both;
  display: table;
}

.content_box_photo {
  width: 45%;
  height: auto;
  padding: 0;
  vertical-align: middle;
  white-space: nowrap;
}

@media screen and (max-width: 560px) {
  .content_box_photo {
    width: 80%;
    padding: 0;
    margin: 0 auto;
    clear: both;
    position: relative;
  }
}

.content_box_photo img {
  width: 100%;
  height: auto;
  display: table;
}

.content_box_holder_left .content_box_photo_left {
  display: none;
}

.content_box_holder_left .content_box_photo_right {
  display: table-cell;
  background-position: right center;
}

@media screen and (max-width: 560px) {
  .content_box_holder_left .content_box_photo_right {
    display: table;
  }
}

.content_box_holder_right .content_box_photo_left {
  display: table-cell;
  background-position: left center;
}

@media screen and (max-width: 560px) {
  .content_box_holder_right .content_box_photo_left {
    display: none;
  }
}

.content_box_holder_right .content_box_photo_right {
  display: none;
}

@media screen and (max-width: 560px) {
  .content_box_holder_right .content_box_photo_right {
    display: table;
    background-position: center center;
  }
}

.content_box_info {
  width: 55%;
  height: auto;
  padding: 0 100px 0 0;
  display: table-cell;
  vertical-align: middle;
}

@media screen and (max-width: 1080px) {
  .content_box_info {
    padding: 0 50px 0 0;
  }
}

@media screen and (max-width: 560px) {
  .content_box_info {
    width: 100%;
    padding: 0;
    display: table;
    position: relative;
    clear: both;
  }
}

.content_box_main_title {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 0 50px 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 3.5em;
  line-height: 1.0em;
  text-align: center;
  font-family: 'Noto Serif Display', serif;
  color: #babfaa;
  text-transform: uppercase;
}

@media screen and (max-width: 1200px) {
  .content_box_main_title {
    font-size: 3.2em;
  }
}

@media screen and (max-width: 1080px) {
  .content_box_main_title {
    font-size: 2.8em;
  }
}

@media screen and (max-width: 767px) {
  .content_box_main_title {
    font-size: 2.2em;
  }
}

@media screen and (max-width: 560px) {
  .content_box_main_title {
    font-size: 2.2em;
  }
}

@media screen and (max-width: 440px) {
  .content_box_main_title {
    font-size: 2.0em;
  }
}

.content_box_sub_title {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 0 20px 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 2.0em;
  font-style: italic;
  line-height: 1.0em;
  text-align: center;
  color: #babfaa;
  font-variant: small-caps;
}

@media screen and (max-width: 1200px) {
  .content_box_sub_title {
    font-size: 1.8em;
  }
}

@media screen and (max-width: 1080px) {
  .content_box_sub_title {
    font-size: 1.6em;
  }
}

@media screen and (max-width: 767px) {
  .content_box_sub_title {
    font-size: 1.5em;
  }
}

@media screen and (max-width: 560px) {
  .content_box_sub_title {
    font-size: 1.4em;
  }
}

@media screen and (max-width: 440px) {
  .content_box_sub_title {
    font-size: 1.3em;
  }
}

.content_box_content {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 1.1em;
  line-height: 1.1em;
  color: #babfaa;
}

@media screen and (max-width: 1080px) {
  .content_box_content {
    font-size: 1.0em;
  }
}

@media screen and (max-width: 560px) {
  .content_box_content {
    font-size: 1.0em;
    text-align: center;
  }
}

.content_box_content p {
  padding: 0;
  margin: 0 0 10px 0;
}

@media screen and (max-width: 560px) {
  .content_box_content ul li {
    list-style-position: inside;
  }
}

.content_box_button {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 15px 0;
  position: relative;
  clear: both;
  display: table;
}

.content_box_button a,
.content_box_button a:visited {
  width: auto;
  height: auto;
  padding: 10px 30px;
  margin: 0 auto;
  background-color: #342a28;
  color: #babfaa;
  text-decoration: none;
  font-size: 1.2em;
  font-style: italic;
  border-radius: 35px;
  display: table;
  text-transform: uppercase;
}

@media screen and (max-width: 767px) {

  .content_box_button a,
  .content_box_button a:visited {
    padding: 10px 20px;
    font-size: 1.1em;
  }
}

/* ARTWORK SLIDER */
.artwork {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 30px auto;
  position: relative;
  clear: both;
  display: block;
  overflow: hidden;
}

.artwork_header_title {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto 10px auto;
  position: relative;
  clear: both;
  display: table;
  font-size: 2.8em;
  line-height: 1.1em;
  font-family: 'Noto Serif Display', serif;
  color: #babfaa;
  text-transform: uppercase;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .artwork_header_title {
    font-size: 2.6em;
  }
}

@media screen and (max-width: 1080px) {
  .artwork_header_title {
    font-size: 2.4em;
  }
}

@media screen and (max-width: 767px) {
  .artwork_header_title {
    font-size: 2.0em;
  }
}

@media screen and (max-width: 560px) {
  .artwork_header_title {
    font-size: 1.8em;
  }
}

@media screen and (max-width: 440px) {
  .artwork_header_title {
    font-size: 1.6em;
  }
}

.artwork_outer {
  width: 100%;
  height: auto;
  display: table;
  position: relative;
}

.artwork_holder {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto 45px auto;
  position: relative;
  color: #ffffff;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
}

.slick-slide img {
  width: 60% !important;
  height: auto;
  margin: 0 auto !important;
  padding: 0 !important;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .slick-slide img {
    width: 70% !important;
  }
}

@media screen and (max-width: 767px) {
  .slick-slide img {
    width: 80% !important;
  }
}

@media screen and (max-width: 560px) {
  .slick-slide img {
    width: 90% !important;
  }
}

.artwork_title {
  width: auto;
  height: auto;
  padding: 10px 30px;
  margin: 0 auto;
  position: absolute;
  background-color: #342a28;
  display: table;
  border-radius: 50px;
  text-transform: uppercase;
  bottom: -40px;
  left: 0;
  right: 0;
  z-index: 2;
  color: #babfaa;
  font-size: 1.2em;
  font-style: italic;
  line-height: 1.1em;
  text-align: center;
}

@media screen and (max-width: 560px) {
  .artwork_title {
    font-size: 1.1em;
    padding: 10px 25px;
  }
}

/* ARTWORK PAGE */
.artwork_page {
  width: calc(100% - 10%);
  height: auto;
  padding: 0 5%;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
}

@media screen and (max-width: 1200px) {
  .artwork_page {
    width: calc(100% - 4%);
    padding: 0x 2%;
  }
}

@media screen and (max-width: 1080px) {
  .artwork_page {
    width: calc(100% - 40px);
    padding: 0 20px;
  }
}

.artwork_page_image {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
}

.artwork_page_image img {
  width: 80%;
  height: auto;
  display: table;
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .artwork_page_image img {
    width: 90%;
  }
}

@media screen and (max-width: 1080px) {
  .artwork_page_image img {
    width: 100%;
  }
}

.artwork_page_info {
  width: 100%;
  height: auto;
  padding: 50px 0 0 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
}

.artwork_page_left {
  width: 50%;
  height: auto;
  padding: 0 40px 0 0;
  display: table-cell;
  vertical-align: top;
}

@media screen and (max-width: 767px) {
  .artwork_page_left {
    width: 100%;
    padding: 0 0 20px 0;
    display: table;
    position: relative;
    clear: both;
  }
}

.artwork_page_title {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  text-align: center;
  font-size: 2.6em;
  font-weight: 300;
  line-height: 1.0em;
  text-transform: uppercase;
  color: #babfaa;
  font-family: 'Noto Serif Display', serif;
}

@media screen and (max-width: 1200px) {
  .artwork_page_title {
    font-size: 2.4em;
  }
}

@media screen and (max-width: 1080px) {
  .artwork_page_title {
    font-size: 2.2em;
  }
}

@media screen and (max-width: 767px) {
  .artwork_page_title {
    font-size: 2.0em;
  }
}

@media screen and (max-width: 560px) {
  .artwork_page_title {
    font-size: 1.8em;
  }
}

.artwork_page_price {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  text-align: center;
  font-size: 2.2em;
  line-height: 1.1em;
  color: #babfaa;
}

@media screen and (max-width: 1200px) {
  .artwork_page_price {
    font-size: 2.0em;
  }
}

@media screen and (max-width: 1080px) {
  .artwork_page_price {
    font-size: 1.8em;
  }
}

@media screen and (max-width: 767px) {
  .artwork_page_price {
    font-size: 1.6em;
  }
}

.artwork_page_content {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 1.2em;
  font-weight: 300;
  line-height: 1.4em;
  color: #babfaa;
}

@media screen and (max-width: 1080px) {
  .artwork_page_content {
    font-size: 1.1em;
  }
}

.artwork_page_right {
  width: 50%;
  height: auto;
  padding: 0 0 0 40px;
  display: table-cell;
  vertical-align: top;
}

@media screen and (max-width: 767px) {
  .artwork_page_right {
    width: 100%;
    padding: 0;
    display: table;
    position: relative;
    clear: both;
  }
}

.artwork_page_form_title {
  width: 100%;
  height: auto;
  padding: 0 0 20px 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  text-align: center;
  font-size: 2.6em;
  font-weight: 300;
  line-height: 1.0em;
  text-transform: uppercase;
  color: #babfaa;
  font-family: 'Noto Serif Display', serif;
}

@media screen and (max-width: 1200px) {
  .artwork_page_form_title {
    font-size: 2.4em;
  }
}

@media screen and (max-width: 1080px) {
  .artwork_page_form_title {
    font-size: 2.2em;
  }
}

@media screen and (max-width: 767px) {
  .artwork_page_form_title {
    font-size: 2.0em;
  }
}

@media screen and (max-width: 560px) {
  .artwork_page_form_title {
    font-size: 1.8em;
  }
}

/* TESTIMONIALS */
.testimonials {
  width: 100%;
  height: auto;
  padding: 30px 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: block;
}

.testimonials_header_title {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto 10px auto;
  position: relative;
  clear: both;
  display: table;
  font-size: 2.8em;
  line-height: 1.1em;
  font-family: 'Noto Serif Display', serif;
  color: #babfaa;
  text-transform: uppercase;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .testimonials_header_title {
    font-size: 2.6em;
  }
}

@media screen and (max-width: 1080px) {
  .testimonials_header_title {
    font-size: 2.4em;
  }
}

@media screen and (max-width: 767px) {
  .testimonials_header_title {
    font-size: 2.0em;
  }
}

@media screen and (max-width: 560px) {
  .testimonials_header_title {
    font-size: 1.8em;
  }
}

@media screen and (max-width: 440px) {
  .testimonials_header_title {
    font-size: 1.6em;
  }
}

.testimonials_outer {
  width: 100%;
  height: auto;
  padding: 40px 0 0 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
}

.testimonial_holder {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 40px;
  position: relative;
  display: table;
}

.testimonial_profile_photo {
  width: 60%;
  height: auto;
  padding-bottom: 60%;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  text-align: center;
  background-color: #252525;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
}

@media screen and (max-width: 767px) {
  .testimonial_profile_photo {
    width: 80%;
    padding-bottom: 80%;
  }
}

@media screen and (max-width: 560px) {
  .testimonial_profile_photo {
    width: 60%;
    padding-bottom: 60%;
  }
}

@media screen and (max-width: 440px) {
  .testimonial_profile_photo {
    width: 80%;
    padding-bottom: 80%;
  }
}

@media screen and (max-width: 300px) {
  .testimonial_profile_photo {
    width: 90%;
    padding-bottom: 90%;
  }
}

.testimonial_holder i {
  position: absolute;
  top: 0;
  right: 2%;
  z-index: 2;
  color: #babfaa;
  font-size: 4vw;
}

@media screen and (max-width: 1080px) {
  .testimonial_holder i {
    right: 2%;
    font-size: 5.8vw;
  }
}

@media screen and (max-width: 767px) {
  .testimonial_holder i {
    right: 4%;
    font-size: 6.5vw;
  }
}

@media screen and (max-width: 560px) {
  .testimonial_holder i {
    right: 4%;
    font-size: 10vw;
  }
}

@media screen and (max-width: 440px) {
  .testimonial_holder i {
    right: 2%;
    font-size: 14vw;
  }
}

@media screen and (max-width: 300px) {
  .testimonial_holder i {
    right: 2%;
    font-size: 14vw;
  }
}

.testimonial_info {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
}

.testimonial_text {
  width: 100%;
  height: auto;
  padding: 20px 0 0 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  font-size: 1.1em;
  font-weight: 300;
  line-height: 1.1em;
  font-style: italic;
  color: #babfaa;
}

.testimonial_names {
  width: 100%;
  height: auto;
  padding: 20px 0 0 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  text-align: center;
  font-size: 1.2em;
  font-weight: 300;
  line-height: 1.1em;
  color: #babfaa;
}

/* CALL TO ACTION */
.call_to_action {
  width: calc(100% - 20%);
  height: auto;
  padding: 30px 0;
  margin: 0 10%;
  position: relative;
  clear: both;
  display: table;
  overflow: hidden;
}

@media screen and (max-width: 560px) {
  .call_to_action {
    width: calc(100% - 40px);
    margin: 0 20px;
  }
}

.cta_left {
  width: 65%;
  height: auto;
  padding: 0 100px 0 0;
  display: table-cell;
  vertical-align: middle;
}

@media screen and (max-width: 1080px) {
  .cta_left {
    width: 60%;
    padding: 0 50px 0 0;
  }
}

@media screen and (max-width: 767px) {
  .cta_left {
    width: 55%;
    padding: 0 50px 0 0;
  }
}

@media screen and (max-width: 560px) {
  .cta_left {
    width: 100%;
    padding: 0 0 15px 0;
    display: table;
    position: relative;
    clear: both;
  }
}

.cta_description {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto 20px auto;
  position: relative;
  clear: both;
  display: table;
  text-align: center;
  font-size: 4.0vw;
  font-weight: 300;
  line-height: 1.0em;
  color: #babfaa;
  font-variant: small-caps;
  font-family: 'Noto Serif Display', serif;
}

@media screen and (max-width: 560px) {
  .cta_description {
    font-size: 8.0vw;
  }
}

.cta_contacts {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 20px auto;
  position: relative;
  clear: both;
  display: table;
}

.cta_socials {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 20px auto;
  position: relative;
  clear: both;
  display: table;
  text-align: center;
}

.cta_socials i {
  display: inline-block;
  text-align: center;
  color: #babfaa;
  margin: 0 3px;
  font-size: 1.4em;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 1200px) {
  .cta_socials i {
    font-size: 1.3em;
  }
}

.cta_socials a {
  text-decoration: none;
}

.cta_socials .fa-instagram {
  font-size: 1.5em;
  font-weight: 600;
}

.cta_right {
  width: 35%;
  height: 100%;
  padding: 0;
  display: table-cell;
  vertical-align: middle;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1080px) {
  .cta_right {
    width: 40%;
  }
}

@media screen and (max-width: 767px) {
  .cta_right {
    width: 45%;
  }
}

@media screen and (max-width: 560px) {
  .cta_right {
    width: 100%;
    padding-bottom: 200%;
    display: table;
    position: relative;
    clear: both;
  }
}

/* CONTACT BLOCKS */
.contact_block_holder {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 20px 0;
  position: relative;
  clear: both;
  display: table;
  text-align: center;
  color: #babfaa;
  font-size: 1.2em;
  line-height: 1.1em;
}

@media screen and (max-width: 1080px) {
  .contact_block_holder {
    font-size: 1.1em;
  }
}

.contact_block_title {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  font-style: italic;
}

.contact_block_content {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  text-transform: uppercase;
}

.contact_block_content a,
.contact_block_content a:visited {
  text-decoration: none;
  color: #babfaa;
  transition: all 0.3s ease-in-out;
}

.contact_block_content a:hover,
.contact_block_content a:visited:hover {
  text-decoration: underline;
}

/* PHOTO GALLERY */
.photo_gallery_outer {
  width: calc(100% - 20%);
  height: auto;
  padding: 30px 10%;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  overflow: hidden;
}

@media screen and (max-width: 1200px) {
  .photo_gallery_outer {
    width: calc(100% - 10%);
    padding: 30px 5%;
  }
}

@media screen and (max-width: 1080px) {
  .photo_gallery_outer {
    width: calc(100% - 40px);
    padding: 30px 20px;
  }
}

.photo_gallery_header_title {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto 10px auto;
  position: relative;
  clear: both;
  display: table;
  font-size: 2.8em;
  line-height: 1.1em;
  font-family: 'Noto Serif Display', serif;
  color: #babfaa;
  text-transform: uppercase;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .photo_gallery_header_title {
    font-size: 2.6em;
  }
}

@media screen and (max-width: 1080px) {
  .photo_gallery_header_title {
    font-size: 2.4em;
  }
}

@media screen and (max-width: 767px) {
  .photo_gallery_header_title {
    font-size: 2.0em;
  }
}

@media screen and (max-width: 560px) {
  .photo_gallery_header_title {
    font-size: 1.8em;
  }
}

@media screen and (max-width: 440px) {
  .photo_gallery_header_title {
    font-size: 1.6em;
  }
}

.photo_gallery_filter {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 20px auto 10px auto;
  position: relative;
  clear: both;
  display: table;
}

.photo_gallery_filter ul {
  width: 100%;
  padding: 0;
  margin: 0;
  text-align: center;
}

.photo_gallery_filter li {
  width: auto;
  padding: 0;
  margin: 3px 1px;
  display: inline-block;
  text-align: center;
}

.photo_gallery_filter a,
.photo_gallery_filter a:visited {
  width: auto;
  height: auto;
  padding: 6px 15px;
  background-color: #342a28;
  display: inline-block;
  text-align: center;
  font-size: 1.1em;
  color: #babfaa;
  font-weight: 300;
  border-radius: 20px;
  text-decoration: none;
  font-style: italic;
}

@media screen and (max-width: 767px) {

  .photo_gallery_filter a,
  .photo_gallery_filter a:visited {
    padding: 5px 10px;
    font-size: 1.0em;
  }
}

.photo_gallery_filter a.active {
  background-color: #221b1a;
}

.photo_gallery {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  position: relative;
  clear: both;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(100px, auto);
  gap: 10px;
  grid-auto-flow: dense;
}

@media screen and (max-width: 1080px) {
  .photo_gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 560px) {
  .photo_gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 440px) {
  .photo_gallery {
    grid-template-columns: repeat(1, 1fr);
  }
}

.photo_holder {
  width: 100%;
  height: auto;
  padding-bottom: 100%;
  margin: 0;
  position: relative;
  clear: both;
  display: table;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
}

.photo_holder_1 {
  grid-column: span 1;
  grid-row: span 1;
}

.photo_holder_2 {
  grid-column: span 2;
  grid-row: span 2;
}

@media screen and (max-width: 440px) {
  .photo_holder_2 {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.photo_link {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0 auto;
  position: absolute;
  display: table;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
}

.photo_title {
  width: calc(100% - 20px);
  height: auto;
  padding: 8px 10px;
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.5);
  text-align: center;
  color: #ffffff;
  font-size: 1.1em;
  font-weight: 300;
  line-height: 1.0em;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 1080px) {
  .photo_title {
    font-size: 1.0em;
  }
}

.photo_link:hover .photo_title {
  bottom: -100px;
}

/* WHATSAPP BUTTON */
.whatsapp_button {
  width: auto;
  padding: 0;
  margin: 0;
  position: fixed;
  bottom: 15px;
  right: 15px;
  background-image: url("../images/wa_bg_filter.png");
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  z-index: 1005;
}

.whatsapp_button i {
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  transition: all 0.3s ease-in-out;
}

.whatsapp_popup {
  width: auto;
  white-space: nowrap;
  height: auto;
  padding: 5px 10px;
  margin: 0 0 5px 0;
  position: absolute;
  bottom: 100%;
  right: 0;
  z-index: 5;
  background-color: #ffffff;
  border: 2px solid #525252;
  border-radius: 6px 6px 0 6px;
  text-align: center;
  font-weight: 500;
  font-size: 0.9em;
  color: #525252;
  opacity: 0;
  animation: animateWhatsappPopup 1.5s ease-in-out 5s 1 forwards;
}

@keyframes animateWhatsappPopup {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.whatsapp_link:hover i {
  transform: scale(1.1, 1.1);
}

/* THANK YOU MESSAGE */
.thankyou_message_holder {
  width: calc(100% - 20%);
  height: auto;
  padding: 40px 10%;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  overflow: hidden;
}

@media screen and (max-width: 560px) {
  .thankyou_message_holder {
    width: calc(100% - 40px);
    padding: 50px 20px;
  }
}

.thankyou_message_header {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 15px 0;
  position: relative;
  clear: both;
  display: table;
  font-size: 3.6em;
  font-weight: 100;
  line-height: 1.1em;
  text-align: center;
  font-family: 'Noto Serif Display', serif;
  color: #babfaa;
}

@media screen and (max-width: 1200px) {
  .thankyou_message_header {
    font-size: 3.4em;
  }
}

@media screen and (max-width: 1080px) {
  .thankyou_message_header {
    font-size: 3.0em;
  }
}

@media screen and (max-width: 767px) {
  .thankyou_message_header {
    font-size: 2.8em;
  }
}

@media screen and (max-width: 560px) {
  .thankyou_message_header {
    font-size: 2.4em;
  }
}

.thankyou_message_text {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
  position: relative;
  clear: both;
  display: table;
  text-align: center;
  font-size: 1.4em;
  line-height: 1.3em;
  color: #babfaa;
}

@media screen and (max-width: 1080px) {
  .thankyou_message_text {
    font-size: 1.2em;
  }
}

@media screen and (max-width: 767px) {
  .thankyou_message_text {
    font-size: 1.1em;
  }
}

/* FORM STYLING */
.form_group {
  clear: both;
  display: table;
  height: auto;
  margin: 0 0 15px 0;
  padding: 0;
  position: relative;
  width: 100%;
}

.form_group_full {
  clear: both;
  display: table;
  height: auto;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
}

.form_group_left {
  clear: none;
  display: table;
  float: left;
  height: auto;
  margin: 0 1% 0 0;
  padding: 0;
  position: relative;
  width: 49%;
}

@media screen and (max-width: 560px) {
  .form_group_left {
    clear: both;
    float: none;
    margin: 0 0 15px;
    width: 100%;
  }
}

.form_group_right {
  clear: none;
  display: table;
  float: right;
  height: auto;
  margin: 0 0 0 1%;
  padding: 0;
  position: relative;
  width: 49%;
}

@media screen and (max-width: 560px) {
  .form_group_right {
    clear: both;
    float: none;
    margin: 0;
    width: 100%;
  }
}

.form_group_1_3 {
  clear: none;
  display: table;
  float: left;
  height: auto;
  margin: 0 1% 0 0;
  padding: 0;
  position: relative;
  width: calc(100% / 3 - 1%);
}

@media screen and (max-width: 560px) {
  .form_group_1_3 {
    margin: 0 0 15px 0;
    width: 100%;
  }
}

.form_group_2_3 {
  clear: none;
  display: table;
  float: left;
  height: auto;
  margin: 0 1% 0 1%;
  padding: 0;
  position: relative;
  width: calc(100% / 3 - 2%);
}

@media screen and (max-width: 560px) {
  .form_group_2_3 {
    margin: 0 0 15px 0;
    padding: 0;
    width: 100%;
  }
}

.form_group_3_3 {
  clear: none;
  display: table;
  float: right;
  height: auto;
  margin: 0 0 0 1%;
  padding: 0;
  position: relative;
  width: calc(100% / 3 - 1%);
}

@media screen and (max-width: 560px) {
  .form_group_3_3 {
    margin: 0 0 15px 0;
    width: 100%;
  }
}

.form_label {
  clear: both;
  display: table;
  height: auto;
  margin: 0;
  padding: 0 0 2px 0;
  position: relative;
  width: 100%;
}

.form_label label {
  color: #babfaa;
  font-family: "Cormorant Garamond", sans-serif;
  font-size: 1.1em;
  font-weight: 500;
}

label.error {
  color: #ff0000;
  font-size: 0.8em;
  font-weight: 400;
  position: relative;
  float: right;
  padding: 4px 0 0 0;
}

label.error:before {
  content: "\f06a";
  color: #ff0000;
  padding: 0 2px 0 0;
  font-family: "Font Awesome 6 Pro", sans-serif;
}

.form_field {
  clear: both;
  display: table;
  height: auto;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
}

.form_field input[type="text"],
.form_field input[type="number"] {
  background-color: transparent;
  border: 1px solid #babfaa;
  font-family: "Cormorant Garamond", sans-serif;
  height: 25px;
  margin: 0;
  outline: none;
  padding: 10px 20px;
  color: #babfaa;
  font-size: 1.1em;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  width: calc(100% - 40px - 2px);
}

.form_field input[type="text"]:hover,
.form_field input[type="text"]:focus {
  background-color: #0e0e0e;
  border: 1px solid #babfaa;
}

.form_field select {
  background-color: transparent;
  border: 1px solid #babfaa;
  font-family: "Cormorant Garamond", sans-serif;
  height: 47px;
  margin: 0;
  outline: none;
  padding: 10px 20px;
  font-size: 1.1em;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  width: 100%;
}

.form_field select:hover,
.form_field select:focus {
  background-color: #0e0e0e;
  border: 1px solid #babfaa;
}

.form_field textarea {
  background-color: transparent;
  border: 1px solid #babfaa;
  font-family: "Cormorant Garamond", sans-serif;
  height: 100px;
  margin: 0;
  outline: none;
  padding: 10px 20px;
  font-size: 1.1em;
  font-weight: 400;
  color: #babfaa;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  width: calc(100% - 40px - 2px);
}

.form_field textarea:hover,
.form_field textarea:focus {
  background-color: #0e0e0e;
  border: 1px solid #babfaa;
}

.form_oneliner_label {
  display: table-cell;
  height: auto;
  padding: 0 2% 0 0;
  vertical-align: middle;
  width: 48%;
}

.form_oneliner_field {
  display: table-cell;
  height: auto;
  padding: 0 0 0 2%;
  vertical-align: middle;
  width: 48%;
}

.form_note {
  clear: both;
  color: #c4c4c4;
  display: table;
  font-size: 0.8em;
  height: auto;
  margin: 2px 0 0 0;
  padding: 0;
  position: relative;
  width: 100%;
}

.red_asterisk {
  color: red;
  font-size: 0.6em;
  vertical-align: super;
}

.red_asterisk:before {
  color: red;
  content: "\f069";
  font-family: "Font Awesome 6 Pro", sans-serif;
  font-size: 0.8em;
  vertical-align: super;
}

.hfield {
  display: none;
}

/* ADMIN DIV TOOLTIPS */
.admin-div:hover {
  filter: grayscale(100%);
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.4);
}

.admin-div:hover::before {
  position: absolute;
  background: #333;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 50000;
}

.admin-div:hover::before {
  opacity: 1;
}

.admin-tooltip {
  width: calc(100% - 20px);
  height: auto;
  padding: 5px 10px;
  background-color: #00000050;
  color: #ffffff;
  text-align: center;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  font-family: "Noto Sans", sans-serif !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  text-transform: none !important;
  z-index: 50001;
}

/* PRELOADER */
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

#preloader img {
  width: 180px;
  height: auto;
  animation: pulse 1.2s infinite ease-in-out;
}

@media screen and (max-width: 1080px) {
  #preloader img {
    width: 160px;
  }
}

@media screen and (max-width: 767px) {
  #preloader img {
    width: 140px;
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.8);
  }
}