/**
 * Global Reset of all HTML Elements
 *
 * Resetting all of our HTML Elements ensures a smoother
 * visual transition between browsers. If you don't believe me,
 * try temporarily commenting out this block of code, then go
 * and look at Mozilla versus Safari, both good browsers with
 * a good implementation of CSS. The thing is, all browser CSS
 * defaults are different and at the end of the day if visual
 * consistency is what we're shooting for, then we need to
 * make sure we're resetting all spacing elements.
 *
 */
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,400;0,500;0,700;1,500;1,800;1,900&display=swap");
html, body {
  border: 0;
  font-family: "Helvetica-Neue", "Helvetica", Arial, sans-serif;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

div, span, object, iframe, img, table, caption, thead, tbody,
tfoot, tr, tr, td, article, aside, canvas, details, figure, hgroup, menu,
nav, footer, header, section, summary, mark, audio, video {
  border: 0;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, address, cit, code,
del, dfn, em, ins, q, samp, small, strong, sub, sup, b, i, hr, dl, dt, dd,
ol, ul, li, fieldset, legend, label {
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}

article, aside, canvas, figure, figure img, figcaption, hgroup,
footer, header, nav, section, audio, video {
  display: block;
}

table {
  border-collapse: separate;
  border-spacing: 0;
}

table caption, table th, table td {
  text-align: left;
  vertical-align: middle;
}

a img {
  border: 0;
}

:focus {
  outline: 0;
}

/*Colors*/
/*Classes*/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

* {
  scroll-behavior: smooth;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 16px;
  font-family: 'Raleway', sans-serif;
}

body, html {
  line-height: 0;
  overflow-x: hidden;
  background-color: #f2f1ef;
}

body {
  position: relative;
}

img {
  max-width: 100%;
}

h1 {
  font-size: 2rem;
  color: #6e7e76;
}

h2 {
  font-size: 1.5625rem;
  line-height: 2.5rem;
  color: #6e7e76;
}

h3 {
  font-size: 1.5rem;
  color: #6e7e76;
}

h4 {
  font-size: 1.25rem;
  color: #6e7e76;
}

h5 {
  font-size: 1.1rem;
  color: #6e7e76;
}

h6 {
  font-size: 1rem;
  color: #6e7e76;
}

a, a:link, a:focus, a:visited {
  color: #000;
  text-decoration: none;
}

p {
  font-size: 1rem;
  line-height: 1.25rem;
  margin-bottom: 15px;
}

.container-thin {
  width: 80%;
  margin: 0 auto;
  max-width: 796px;
}

.container {
  width: 80%;
  margin: 0 auto;
  max-width: 1220px;
}

.container-wide {
  width: 80%;
  margin: 0 auto;
  max-width: 1600px;
}

@media only screen and (min-width: 768px) {
  .container-wide {
    width: 90%;
  }
}

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

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

.btn, .btn:link, .btn:focus, .btn:visited {
  display: inline-block;
  border-radius: 5px;
  border: 2px solid #5e7f6a;
  padding: 2px 16px;
  font-size: 0.75rem;
  line-height: 1.125rem;
  letter-spacing: 0.4px;
  color: #5e7f6a;
  background-color: #fcfcfc;
  font-weight: 800;
  font-style: italic;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.1);
}

@media only screen and (min-width: 768px) {
  .btn, .btn:link, .btn:focus, .btn:visited {
    padding: 6px 22px;
    letter-spacing: 0.8px;
    font-size: 0.75rem;
    line-height: 0.9375rem;
  }
}

@media only screen and (min-width: 1200px) {
  .btn, .btn:link, .btn:focus, .btn:visited {
    padding: 8px 30px;
    letter-spacing: 0.8px;
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.btn:hover, .btn:link:hover, .btn:focus:hover, .btn:visited:hover {
  color: #fcfcfc;
  background-color: #5e7f6a;
}

.btn.btn-reverse, .btn:link.btn-reverse, .btn:focus.btn-reverse, .btn:visited.btn-reverse {
  color: #fcfcfc;
  background-color: #5e7f6a;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn.btn-reverse:hover, .btn:link.btn-reverse:hover, .btn:focus.btn-reverse:hover, .btn:visited.btn-reverse:hover {
  color: #6e7e76;
  background-color: #fcfcfc;
}

.btn.btn-transparent, .btn:link.btn-transparent, .btn:focus.btn-transparent, .btn:visited.btn-transparent {
  color: #fcfcfc;
  border: 2px solid #f2f1ef;
  background-color: transparent;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn.btn-transparent:hover, .btn:link.btn-transparent:hover, .btn:focus.btn-transparent:hover, .btn:visited.btn-transparent:hover {
  color: #6e7e76;
  background-color: #fcfcfc;
}

.btn.btn-transparent-reverse, .btn:link.btn-transparent-reverse, .btn:focus.btn-transparent-reverse, .btn:visited.btn-transparent-reverse {
  border: 2px solid #f2f1ef;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #6e7e76;
  background-color: #fcfcfc;
}

.btn.btn-transparent-reverse:hover, .btn:link.btn-transparent-reverse:hover, .btn:focus.btn-transparent-reverse:hover, .btn:visited.btn-transparent-reverse:hover {
  background-color: transparent;
  color: #fcfcfc;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.pagination .page-numbers {
  font-size: 1.0625rem;
  line-height: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.85;
  color: #5e7f6a;
  border: 2px solid #657e6c;
  border-radius: 3px;
  background-color: #fcfcfc;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30px;
  height: 30px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

.pagination .page-numbers:hover, .pagination .page-numbers.current {
  background-color: #657e6c;
  color: #fcfcfc;
}

.wpcf7 form .wpcf7-response-output {
  margin-left: 0;
  margin-right: 0;
  padding: 24px 20px;
  line-height: 1.375rem;
  color: #f2f1ef;
}

form {
  max-width: 1000px;
  display: inline-block;
  border-radius: 8px;
  border: solid 2px #5e7f6a;
  background-color: #5e7f6a;
  padding: 16px 25px 16px 26px;
  margin-left: -30px;
  margin-right: -30px;
  margin-bottom: 30px;
}

@media only screen and (min-width: 768px) {
  form {
    padding: 63px 79px 32px 79px;
    margin-left: 0;
    margin-right: 0;
    border-radius: 29px;
  }
}

form .wpcf7-not-valid-tip {
  line-height: 1.25rem;
  color: #f2f1ef;
}

form .row {
  margin-left: -5px;
  margin-right: -5px;
}

form .row .col {
  padding-left: 5px;
  padding-right: 5px;
}

form .row .col input {
  text-align: left;
}

@media only screen and (min-width: 768px) {
  form .row .col input {
    text-align: center;
  }
}

form label {
  width: 100%;
  display: block;
  padding-left: 10px;
  text-align: left;
  font-size: 0.5rem;
  line-height: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: #f2f1ef;
  margin-bottom: 20px;
}

@media only screen and (min-width: 768px) {
  form label {
    font-size: 0.75rem;
    line-height: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    padding-left: 23px;
  }
}

form input:not([type="submit"]), form textarea {
  width: calc(100% + 10px);
  margin-left: -10px;
  padding: 10px 10px;
  border: solid 2px #5e7f6a;
  background-color: #f2f1ef;
  border-radius: 6px;
  font-size: 0.75rem;
  line-height: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.6px;
  color: #5e7f6a;
}

@media only screen and (min-width: 768px) {
  form input:not([type="submit"]), form textarea {
    font-size: 1rem;
    line-height: 1.25rem;
    letter-spacing: 0.8px;
    padding: 24px 20px;
    width: calc(100% + 23px);
    margin-left: -23px;
  }
}

form input:not([type="submit"])[name="date"], form textarea[name="date"] {
  font-size: 0.5625rem;
  line-height: 1.125rem;
  padding: 10px 10px;
}

@media only screen and (min-width: 768px) {
  form input:not([type="submit"])[name="date"], form textarea[name="date"] {
    font-size: 1rem;
    line-height: 1.25rem;
    padding: 24px 16px;
  }
}

form input:not([type="submit"]):placeholder, form textarea:placeholder {
  opacity: 0.7;
}

form input:not([type="submit"]).wpcf7-not-valid, form textarea.wpcf7-not-valid {
  border: solid 2px #dc3232;
}

form .button-wrap {
  text-align: center;
  position: relative;
}

form .button-wrap::after {
  content: "";
  clear: both;
  display: table;
}

@media only screen and (min-width: 768px) {
  form .button-wrap {
    padding-top: 10px;
    text-align: left;
  }
}

form .button-wrap .wpcf7-spinner {
  position: absolute;
  right: 0;
  margin: 0;
}

form .button-wrap .btn {
  cursor: pointer;
  float: left;
  padding: 2px 25px;
  margin-right: 20px;
}

@media only screen and (min-width: 768px) {
  form .button-wrap .btn {
    padding: 8px 45px;
    margin-right: 22px;
  }
}

form .text-info {
  font-size: 0.5rem;
  line-height: 0.8125rem;
  font-style: italic;
  letter-spacing: 0.4px;
  font-weight: 500;
  color: #f2f1ef;
  text-align: left;
  float: left;
  width: calc(100% - 112px);
}

@media only screen and (min-width: 768px) {
  form .text-info {
    font-size: 1.0625rem;
    line-height: 1.5625rem;
    width: calc(100% - 170px);
    letter-spacing: 0.85px;
  }
}

.offer form .row {
  margin-left: -5px;
  margin-right: -5px;
}

.offer form .row .col {
  padding-left: 5px;
  padding-right: 5px;
}

nav {
  position: absolute;
  width: 100%;
  z-index: 9;
  background-color: transparent;
  top: 25px;
}

@media only screen and (min-width: 768px) {
  nav {
    top: 60px;
  }
}

nav.single-page-nav .hamburger-inner, nav.single-page-nav .hamburger-inner::after, nav.single-page-nav .hamburger-inner::before {
  background-color: #5e7f6a;
}

nav.single-page-nav .nav-container .logo-wrap {
  display: none;
}

nav .nav-container .logo-wrap img {
  height: auto;
  width: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media only screen and (min-width: 768px) {
  nav .nav-container .logo-wrap img {
    width: 250px;
  }
}

nav .hamburger-inner, nav .hamburger-inner::after, nav .hamburger-inner::before {
  background-color: #f2f1ef;
}

.hamburger {
  float: right;
  padding: 0;
}

.hamburger .hamburger-box {
  width: 24px;
}

@media only screen and (min-width: 768px) {
  .hamburger .hamburger-box {
    width: 42px;
  }
}

.hamburger-inner, .hamburger-inner::after, .hamburger-inner::before {
  border-radius: 0px;
  width: 24px;
  height: 1px;
}

@media only screen and (min-width: 768px) {
  .hamburger-inner, .hamburger-inner::after, .hamburger-inner::before {
    width: 42px;
    height: 3px;
  }
}

.hamburger-inner::before {
  top: -8px;
}

@media only screen and (min-width: 768px) {
  .hamburger-inner::before {
    top: -12px;
  }
}

.hamburger-inner::after {
  bottom: -8px;
}

@media only screen and (min-width: 768px) {
  .hamburger-inner::after {
    bottom: -12px;
  }
}

.background-overlay {
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  width: 100%;
  height: 100%;
  z-index: 15;
}

.background-overlay.visible {
  display: block;
}

.sidenav {
  position: fixed;
  background-image: url(../images/menu_bg_new.jpg);
  background-color: #5e7f6a;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 95vh;
  width: 95vw;
  top: -300%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 99;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.sidenav .container-wide {
  position: relative;
  height: 100%;
}

.sidenav .hamburger {
  position: absolute;
  top: 45px;
  right: 0;
}

.sidenav .hamburger .hamburger-box {
  width: 24px;
}

@media only screen and (min-width: 768px) {
  .sidenav .hamburger .hamburger-box {
    width: 42px;
  }
}

.sidenav .hamburger .hamburger-inner, .sidenav .hamburger .hamburger-inner::after, .sidenav .hamburger .hamburger-inner::before {
  background-color: #f2f1ef;
  width: 24px;
  height: 1px;
}

@media only screen and (min-width: 768px) {
  .sidenav .hamburger .hamburger-inner, .sidenav .hamburger .hamburger-inner::after, .sidenav .hamburger .hamburger-inner::before {
    width: 42px;
    height: 3px;
  }
}

.sidenav .mobile-menu {
  list-style: none;
  text-align: center;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  /*@include devices(medium){
            padding: 150px 150px 25px 150px;
        }*/
}

.sidenav .mobile-menu li {
  margin-bottom: 25px;
}

@media only screen and (min-width: 768px) {
  .sidenav .mobile-menu li {
    margin-bottom: 16px;
  }
}

@media only screen and (min-width: 1600px) {
  .sidenav .mobile-menu li {
    margin-bottom: 16px;
  }
}

.sidenav .mobile-menu li.current-menu-item a {
  font-weight: 800;
}

.sidenav .mobile-menu li a {
  font-size: 1.75rem;
  line-height: 2rem;
  letter-spacing: 3px;
  font-weight: 500;
  font-style: italic;
  color: #f2f1ef;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.sidenav .mobile-menu li a:hover {
  color: #c4a274;
}

@media only screen and (min-width: 768px) {
  .sidenav .mobile-menu li a {
    font-size: 2.1875rem;
    line-height: 3rem;
  }
}

.sidenav .menu-bottom {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sidenav .menu-bottom li {
  margin-left: 75px;
  margin-right: 75px;
  margin-bottom: 30px;
}

@media only screen and (min-width: 768px) {
  .sidenav .menu-bottom li {
    margin-bottom: 0;
  }
}

.sidenav .menu-bottom li a {
  font-size: 1.875rem;
  line-height: 2.5rem;
  font-weight: 500;
  font-style: italic;
  color: #f2f1ef;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.sidenav .menu-bottom li a:hover {
  color: #c4a274;
}

.sidenav.open {
  top: 0;
}

.front-page-header-wrap {
  height: 50vh;
  background-image: url(../images/background.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #6e7e76;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .front-page-header-wrap {
    height: 100vh;
  }
}

.front-page-header-wrap .overlay-green {
  background-color: rgba(84, 121, 98, 0.45);
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.front-page-header-wrap .overlay-green-dark {
  background-color: rgba(94, 127, 106, 0.5);
  mix-blend-mode: overlay;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.front-page-header-wrap .container-wide {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 2;
}

.front-page-header-wrap .container-wide .social-media-wrap {
  position: absolute;
  right: 20px;
  bottom: 65px;
  display: none;
}

@media only screen and (min-width: 768px) {
  .front-page-header-wrap .container-wide .social-media-wrap {
    right: 38px;
    display: block;
  }
}

@media only screen and (min-width: 1200px) {
  .front-page-header-wrap .container-wide .social-media-wrap {
    right: 0;
    display: block;
  }
}

.front-page-header-wrap .container-wide .social-media-wrap .social-media {
  width: 48px;
  height: 48px;
  display: inline-block;
  margin-left: 20px;
}

.front-page-header-wrap .container-wide .social-media-wrap .social-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.front-page-header-wrap .front-page-header {
  font-size: 1.9375rem;
  line-height: 2.0625rem;
  letter-spacing: 0.7px;
  margin-bottom: 13px;
  color: #f2f1ef;
  font-weight: 800;
  font-style: italic;
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .front-page-header-wrap .front-page-header {
    font-size: 5rem;
    line-height: 5.3125rem;
    letter-spacing: 2.7px;
    margin-bottom: 24px;
  }
}

.front-page-header-wrap .front-page-sub-header {
  font-size: 0.875rem;
  line-height: 1.625rem;
  letter-spacing: 1.4px;
  color: #f2f1ef;
  font-weight: 500;
  font-style: italic;
  text-align: center;
  padding: 3px 0;
  border-top: 1px solid #f2f1ef;
  border-bottom: 1px solid #f2f1ef;
}

@media only screen and (min-width: 768px) {
  .front-page-header-wrap .front-page-sub-header {
    font-size: 2.1875rem;
    line-height: 2.5rem;
    letter-spacing: 3.8px;
    padding: 18px 0;
    border-top: 3px solid #f2f1ef;
    border-bottom: 3px solid #f2f1ef;
  }
}

.front-page-header-wrap .front-page-sub-header a {
  color: inherit;
}

.text-logo-button {
  margin-top: -50px;
}

.text-logo-button .container-thin {
  width: 80%;
}

@media only screen and (min-width: 768px) {
  .text-logo-button .container-thin {
    width: 80%;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 1200px) {
  .text-logo-button .container-thin {
    width: 90%;
    max-width: 796px;
    padding-right: 0;
    padding-left: 0;
  }
}

@media only screen and (min-width: 768px) {
  .text-logo-button {
    margin-top: -50px;
  }
}

.text-logo-button .logo-wrap {
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  display: inline-block;
  padding: 28px 25px;
  margin-bottom: 15px;
  z-index: 2;
  position: relative;
  background-color: #fcfcfc;
  border-radius: 5px;
}

@media only screen and (min-width: 768px) {
  .text-logo-button .logo-wrap {
    padding: 70px 60px;
    margin-bottom: 40px;
  }
}

@media only screen and (min-width: 1200px) {
  .text-logo-button .logo-wrap {
    padding: 70px 60px;
    margin-bottom: 60px;
  }
}

.text-logo-button .logo-wrap img {
  max-width: 80px;
}

@media only screen and (min-width: 768px) {
  .text-logo-button .logo-wrap img {
    max-width: none;
  }
}

.text-logo-button .text {
  font-size: 1rem;
  line-height: 1.375rem;
  color: #5e7f6a;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 20px;
}

@media only screen and (min-width: 768px) {
  .text-logo-button .text {
    margin-bottom: 25px;
    font-size: 1.5625rem;
    line-height: 2.5rem;
  }
}

@media only screen and (min-width: 1200px) {
  .text-logo-button .text {
    margin-bottom: 60px;
    font-size: 1.5625rem;
    line-height: 2.5rem;
  }
}

.text-logo-button .buttons-wrap {
  margin-bottom: 45px;
  /*.btn{
            margin-left: 64px;
        }*/
}

.green-background-text-photo {
  padding: 25px 0;
  background-image: url(../images/menu-bg.jpg);
  background-color: #5e7f6a;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /*.buttons-wrap{
        .btn{
            margin-right: 30px;
        }
    }*/
}

@media only screen and (min-width: 1200px) {
  .green-background-text-photo {
    padding: 130px 0;
  }
}

.green-background-text-photo .row {
  margin-left: -20px;
  margin-right: -20px;
}

.green-background-text-photo .row .col {
  padding-left: 20px;
  padding-right: 20px;
}

.green-background-text-photo .img-wrap {
  display: inline-block;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 22px;
  margin-top: -55px;
  -o-object-fit: cover;
     object-fit: cover;
  text-align: center;
  width: 100%;
}

@media only screen and (min-width: 1200px) {
  .green-background-text-photo .img-wrap {
    -webkit-box-shadow: -20px 20px 12px 0px rgba(0, 0, 0, 0.2);
    box-shadow: -20px 20px 12px 0px rgba(0, 0, 0, 0.2);
    margin-bottom: 0;
    margin-top: auto;
    -o-object-fit: unset;
       object-fit: unset;
    text-align: left;
    width: auto;
  }
}

.green-background-text-photo .img-wrap img {
  display: inline-block;
  width: 200px;
  height: 136px;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

@media only screen and (min-width: 768px) {
  .green-background-text-photo .img-wrap img {
    width: 300px;
    height: 205px;
  }
}

@media only screen and (min-width: 1200px) {
  .green-background-text-photo .img-wrap img {
    -webkit-box-shadow: none;
    box-shadow: none;
    display: block;
    width: auto;
    height: auto;
    border-radius: 0;
    -o-object-fit: unset;
       object-fit: unset;
  }
}

.green-background-text-photo .text-wrap {
  text-align: center;
}

@media only screen and (min-width: 1200px) {
  .green-background-text-photo .text-wrap {
    text-align: left;
  }
}

.green-background-text-photo .header {
  font-size: 2rem;
  line-height: 2.5rem;
  letter-spacing: 1.1px;
  color: #f2f1ef;
  font-weight: 800;
  font-style: italic;
  margin-bottom: 20px;
}

@media only screen and (min-width: 768px) {
  .green-background-text-photo .header {
    font-size: 3.125rem;
    line-height: 4.6875rem;
    letter-spacing: 1px;
    margin-bottom: 30px;
  }
}

@media only screen and (min-width: 1200px) {
  .green-background-text-photo .header {
    font-size: 5rem;
    line-height: 5.3125rem;
    margin-bottom: 60px;
  }
}

.green-background-text-photo .text {
  font-size: 1rem;
  line-height: 1.75rem;
  color: #f2f1ef;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 30px;
}

@media only screen and (min-width: 768px) {
  .green-background-text-photo .text {
    font-size: 1.5625rem;
    line-height: 2.5rem;
  }
}

@media only screen and (min-width: 1200px) {
  .green-background-text-photo .text {
    font-size: 1.5625rem;
    line-height: 2.5rem;
    margin-bottom: 60px;
  }
}

.news-slider {
  padding: 60px 0 30px 0;
}

@media only screen and (min-width: 768px) {
  .news-slider {
    padding: 40px 0 30px 0;
  }
}

@media only screen and (min-width: 1200px) {
  .news-slider {
    padding: 130px 0 30px 0;
  }
}

.news-slider .header {
  font-size: 2.5rem;
  line-height: 3.125rem;
  letter-spacing: 0.7px;
  color: #5e7f6a;
  font-weight: 800;
  font-style: italic;
  margin-bottom: 40px;
}

@media only screen and (min-width: 768px) {
  .news-slider .header {
    font-size: 3.125rem;
    line-height: 4.25rem;
    margin-bottom: 40px;
  }
}

@media only screen and (min-width: 1200px) {
  .news-slider .header {
    font-size: 5rem;
    line-height: 5.3125rem;
    margin-bottom: 80px;
  }
}

.news-slider .row {
  margin-left: -25px;
  margin-right: -25px;
}

.news-slider .row .col {
  padding-left: 25px;
  padding-right: 25px;
  max-width: 100%;
}

.news-slider .img-wrap {
  display: block;
  width: 100%;
  padding-top: 100%;
  /* 1:1 Aspect Ratio */
  position: relative;
  /* If you want text inside of it */
  border-radius: 5px;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 35px;
}

@media only screen and (min-width: 768px) {
  .news-slider .img-wrap {
    margin-bottom: 75px;
  }
}

.news-slider .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.news-slider .title {
  margin-bottom: 30px;
}

.news-slider .title a {
  font-size: 1.5625rem;
  line-height: 1.75rem;
  color: #5e7f6a;
  font-weight: 800;
}

.news-slider .excerpt {
  font-size: 1rem;
  line-height: 1.625rem;
  color: #6e7e76;
  font-weight: 400;
  margin-bottom: 30px;
}

.news-slider .read-more {
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 1px;
  color: #5e7f6a;
  font-weight: 800;
  font-style: italic;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.news-slider .read-more:hover {
  color: #c4a274;
}

.news-slider .slider-arrows-wrap, .news-slider .news-diary-page {
  position: relative;
}

.news-slider .slider-arrows-wrap .slick-prev, .news-slider .slider-arrows-wrap .slick-next, .news-slider .news-diary-page .slick-prev, .news-slider .news-diary-page .slick-next {
  width: 24px;
  height: 24px;
  display: inline-block;
  position: absolute;
  top: 18%;
  z-index: 3;
}

@media only screen and (min-width: 768px) {
  .news-slider .slider-arrows-wrap .slick-prev, .news-slider .slider-arrows-wrap .slick-next, .news-slider .news-diary-page .slick-prev, .news-slider .news-diary-page .slick-next {
    top: 25%;
    width: 30px;
    height: 30px;
  }
}

.news-slider .slider-arrows-wrap .slick-prev svg, .news-slider .slider-arrows-wrap .slick-next svg, .news-slider .news-diary-page .slick-prev svg, .news-slider .news-diary-page .slick-next svg {
  width: 100%;
  height: 100%;
  stroke: #5e7f6a;
}

.news-slider .slider-arrows-wrap .slick-prev, .news-slider .news-diary-page .slick-prev {
  left: -48px;
}

@media only screen and (min-width: 768px) {
  .news-slider .slider-arrows-wrap .slick-prev, .news-slider .news-diary-page .slick-prev {
    left: -90px;
  }
}

.news-slider .slider-arrows-wrap .slick-next, .news-slider .news-diary-page .slick-next {
  right: -48px;
}

@media only screen and (min-width: 768px) {
  .news-slider .slider-arrows-wrap .slick-next, .news-slider .news-diary-page .slick-next {
    right: -90px;
  }
}

.news-diary-page .col {
  margin-bottom: 30px;
}

.news-diary-page .col .img-wrap {
  margin-bottom: 30px;
}

.news-diary-page .col .title {
  margin-bottom: 20px;
}

.news-diary-page .col .title a {
  text-decoration: none;
}

.news-diary-page .col .title a:hover {
  text-decoration: underline;
}

.news-diary-page .col .excerpt {
  font-size: 0.875rem;
  margin-bottom: 25px;
}

.footer-top-img-wrap {
  width: 100%;
}

.footer-top-img-wrap img {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
  display: block;
}

.footer-wrap {
  background-color: #5e7f6a;
  background-image: url(../images/menu-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 18px;
}

.footer-wrap .logo-wrap {
  width: 100px;
  height: 100px;
}

.footer-wrap .logo-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer-wrap .border-outside {
  border: 3px solid #dedcd7;
  padding: 6px;
}

.footer-wrap .border-outside .border-inside {
  border: 1px solid #dedcd7;
  border-radius: 5px;
  padding: 40px 0;
  position: relative;
}

.footer-wrap .border-outside .border-inside .bottom-right-info {
  position: absolute;
  right: auto;
  bottom: 0;
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .footer-wrap .border-outside .border-inside .bottom-right-info {
    right: 16px;
  }
}

.footer-wrap .border-outside .border-inside .bottom-right-info p {
  text-align: center;
  font-size: 0.5rem;
  line-height: 0.75rem;
  font-weight: 300;
  font-style: italic;
  color: #7F9587;
  margin-bottom: 3px;
}

@media only screen and (min-width: 768px) {
  .footer-wrap .border-outside .border-inside .bottom-right-info p {
    text-align: right;
    color: #f2f1ef;
  }
}

.footer-wrap .border-outside .border-inside .bottom-right-info p a {
  color: #7F9587;
}

@media only screen and (min-width: 768px) {
  .footer-wrap .border-outside .border-inside .bottom-right-info p a {
    color: #f2f1ef;
  }
}

.footer-wrap .border-outside .border-inside .bottom-right-info p a:hover {
  text-decoration: underline;
}

.footer-wrap .row {
  margin-left: -25px;
  margin-right: -25px;
  text-align: center;
}

@media only screen and (min-width: 1200px) {
  .footer-wrap .row {
    text-align: left;
  }
}

.footer-wrap .row .col {
  padding-left: 25px;
  padding-right: 25px;
  margin-bottom: 5px;
}

@media only screen and (min-width: 768px) {
  .footer-wrap .row .col {
    margin-bottom: 0;
  }
}

.footer-wrap .row .col.mobileHide {
  display: none;
}

@media only screen and (min-width: 1200px) {
  .footer-wrap .row .col.mobileHide {
    display: block !important;
  }
}

.footer-wrap ul {
  list-style: none;
}

.footer-wrap ul li {
  margin-bottom: 2px;
}

.footer-wrap ul li a {
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 1px;
  font-weight: 800;
  font-style: italic;
  color: #dedcd7;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.footer-wrap ul li a:hover {
  color: #c4a274;
}

.footer-wrap p {
  font-size: 1rem;
  line-height: 1.75rem;
  letter-spacing: 1px;
  font-weight: 400;
  font-style: italic;
  color: #dedcd7;
  margin-bottom: 5px;
}

.footer-wrap p.email-text {
  font-size: 0.9375rem;
  line-height: 1.25rem;
}

@media only screen and (min-width: 768px) {
  .footer-wrap p {
    margin-bottom: 15px;
  }
}

.footer-wrap p a {
  color: #dedcd7;
}

.footer-wrap p a:hover {
  color: #c4a274;
}

.footer-wrap .phone-sub-text {
  font-size: 0.5625rem;
  line-height: 1rem;
  letter-spacing: 0.25px;
  margin-top: -8px;
  margin-bottom: 15px;
}

@media only screen and (min-width: 768px) {
  .footer-wrap .phone-sub-text {
    font-size: 0.6875rem;
    margin-top: -18px;
    margin-bottom: 5px;
  }
}

.footer-wrap .footer-title {
  font-size: 1.5625rem;
  line-height: 2.5rem;
  letter-spacing: 1px;
  font-weight: 800;
  font-style: italic;
  color: #dedcd7;
}

.footer-wrap .social-media {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  display: inline-block;
}

.footer-wrap .social-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.single-page-wrap {
  padding-top: 80px;
}

@media only screen and (min-width: 768px) {
  .single-page-wrap {
    padding-top: 150px;
  }
}

.single-page-wrap p {
  font-size: 0.875rem;
  line-height: 1.625rem;
  font-weight: 500;
  font-style: italic;
  color: #5e7f6a;
  margin-bottom: 20px;
}

@media only screen and (min-width: 768px) {
  .single-page-wrap p {
    font-size: 1rem;
    line-height: 1.625rem;
  }
}

.single-page-wrap p a {
  color: inherit;
  text-decoration: underline;
}

.single-page-wrap p a:hover {
  text-decoration: none;
}

.single-page-wrap .page-sub-header {
  font-size: 0.875rem;
  line-height: 1.625rem;
  letter-spacing: 0.4px;
  font-weight: 800;
  font-style: italic;
  color: #5e7f6a;
  padding: 30px 0;
  border-top: 1px solid #5e7f6a;
  border-bottom: 1px solid #5e7f6a;
  margin-bottom: 30px;
}

@media only screen and (min-width: 768px) {
  .single-page-wrap .page-sub-header {
    font-size: 1.875rem;
    line-height: 2.5rem;
    border-top: 3px solid #5e7f6a;
    border-bottom: 3px solid #5e7f6a;
    padding: 45px 0;
    margin-bottom: 80px;
    letter-spacing: 0.6px;
  }
}

.single-page-wrap ul {
  padding-left: 30px;
  list-style: none;
  margin-bottom: 20px;
}

.single-page-wrap ul li {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  font-style: italic;
  color: #5e7f6a;
  margin-bottom: 10px;
  position: relative;
}

.single-page-wrap ul li::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  background-color: #5e7f6a;
  border-radius: 100%;
  left: -18px;
  top: 8px;
}

.single-page-wrap ul li a {
  color: inherit;
  text-decoration: underline;
}

.single-page-wrap ul li a:hover {
  text-decoration: none;
}

.single-page-wrap ol {
  padding-left: 30px;
  margin-bottom: 20px;
}

.single-page-wrap ol li {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  font-style: italic;
  color: #5e7f6a;
  margin-bottom: 10px;
}

.single-page-wrap ol li a {
  color: inherit;
  text-decoration: underline;
}

.single-page-wrap ol li a:hover {
  text-decoration: none;
}

.single-page-wrap h1 {
  margin-bottom: 40px;
}

.single-page-wrap h2 {
  margin-bottom: 35px;
}

.single-page-wrap h3 {
  margin-bottom: 30px;
}

.single-page-wrap h4 {
  margin-bottom: 25px;
}

.single-page-wrap h5 {
  margin-bottom: 20px;
}

.single-page-wrap h6 {
  margin-bottom: 15px;
}

.single-page-wrap table {
  width: 100%;
}

.single-page-wrap table tr th {
  padding: 10px 20px;
  background-color: #6e7e76;
  color: #f2f1ef;
  border-right: 1px solid #6e7e76;
}

.single-page-wrap table tr th:last-of-type {
  border-right: none;
}

.single-page-wrap table tr td {
  padding: 10px 20px;
  color: #6e7e76;
  border-right: 1px solid #6e7e76;
  border-bottom: 1px solid #6e7e76;
}

.single-page-wrap table tr td:last-of-type {
  border-right: none;
}

.single-page-wrap table tr:last-of-type td {
  border-bottom: none;
}

.single-page-wrap .page-header {
  font-size: 2.4375rem;
  line-height: 2.8125rem;
  letter-spacing: 1.2px;
  font-weight: 800;
  font-style: italic;
  color: #5e7f6a;
  margin-bottom: 30px;
}

@media only screen and (min-width: 768px) {
  .single-page-wrap .page-header {
    font-size: 5rem;
    line-height: 6.25rem;
    margin-bottom: 60px;
    letter-spacing: 2px;
  }
}

@media only screen and (min-width: 768px) {
  .single-page-wrap .page-header {
    margin-bottom: 100px;
  }
}

.single-page-wrap .page-header .max-width-wrap {
  font-size: inherit;
  line-height: inherit;
  max-width: 500px;
  display: inline-block;
}

.page-header-icon {
  margin-bottom: 10px;
}

@media only screen and (min-width: 768px) {
  .page-header-icon {
    margin-bottom: 45px;
  }
}

.page-header-icon.job img {
  max-width: 72px;
}

@media only screen and (min-width: 768px) {
  .page-header-icon.job img {
    max-width: 288px;
  }
}

.page-header-icon.contact img {
  max-width: 97px;
}

@media only screen and (min-width: 768px) {
  .page-header-icon.contact img {
    max-width: 288px;
  }
}

.page-header-icon.regulations img {
  max-width: 50px;
}

@media only screen and (min-width: 768px) {
  .page-header-icon.regulations img {
    max-width: 288px;
  }
}

.page-header-icon.location img {
  max-width: 37px;
}

@media only screen and (min-width: 768px) {
  .page-header-icon.location img {
    max-width: 288px;
  }
}

.page-header-icon img {
  max-width: 100px;
  height: auto;
}

@media only screen and (min-width: 768px) {
  .page-header-icon img {
    max-width: 288px;
  }
}

.thumbnail-wrap {
  margin-bottom: 40px;
}

@media only screen and (min-width: 768px) {
  .thumbnail-wrap {
    margin-bottom: 115px;
  }
}

.thumbnail-wrap img {
  width: 100%;
  height: 100%;
  max-height: 368px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.history .row {
  margin-left: -22px;
  margin-left: -22px;
}

.history .row .col {
  padding-left: 22px;
  padding-left: 22px;
  margin-bottom: 30px;
}

@media only screen and (min-width: 768px) {
  .history .row .col {
    margin-bottom: 0;
  }
}

.history .img-wrap {
  margin-bottom: 40px;
}

@media only screen and (min-width: 768px) {
  .history .img-wrap {
    margin-bottom: 80px;
  }
}

.history .img-wrap:last-of-type {
  margin-bottom: 0;
}

.history .img-wrap img {
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

.history .img-wrap .description {
  font-size: 0.75rem;
  line-height: 1rem;
  color: #6e7e76;
  font-weight: 500;
  margin-bottom: 0;
}

@media only screen and (min-width: 768px) {
  .history .img-wrap .description {
    font-size: 0.625rem;
    line-height: 1rem;
  }
}

.history .source-info {
  font-size: 0.625rem;
  line-height: 1.875rem;
  color: #6e7e76;
  font-weight: 500;
  margin-bottom: 0;
  padding-right: 20px;
}

.history .source-info a {
  color: #6e7e76;
}

.history .source-info a:hover {
  text-decoration: underline;
}

.offer .row {
  margin-left: -22px;
  margin-right: -22px;
}

.offer .row .col {
  padding-left: 22px;
  padding-right: 22px;
}

.offer .img-wrap {
  margin-bottom: 26px;
}

@media only screen and (min-width: 768px) {
  .offer .img-wrap {
    margin-bottom: 45px;
  }
}

.offer .img-wrap img {
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  border: 8px solid #5e7f6a;
}

.offer .img-wrap .description {
  font-size: 0.625rem;
  line-height: 1rem;
  color: #6e7e76;
  font-weight: 500;
  margin-bottom: 0;
}

.prices-wrap {
  background-color: #5e7f6a;
  padding: 8px;
  margin-bottom: 36px;
}

@media only screen and (min-width: 768px) {
  .prices-wrap {
    margin-bottom: 58px;
  }
}

.prices-wrap .border-wrap {
  border-radius: 5px;
  border: 2px solid #f2f1ef;
  text-align: center;
  padding: 20px 20px;
}

@media only screen and (min-width: 768px) {
  .prices-wrap .border-wrap {
    padding: 40px 60px;
  }
}

.prices-wrap .prices-standard-text-wrap {
  margin-bottom: 20px;
}

@media only screen and (min-width: 768px) {
  .prices-wrap .prices-standard-text-wrap {
    margin-bottom: 30px;
  }
}

.prices-wrap h2 {
  font-size: 0.9375rem;
  line-height: 2.5rem;
  font-weight: 900;
  letter-spacing: 3.75px;
  color: #f2f1ef;
  margin-bottom: 15px;
}

@media only screen and (min-width: 768px) {
  .prices-wrap h2 {
    font-size: 1.875rem;
    line-height: 2.5rem;
    letter-spacing: 7.5px;
    margin-bottom: 30px;
  }
}

.prices-wrap p {
  font-size: 0.75rem;
  line-height: 1.875rem;
  letter-spacing: 1.2px;
  font-weight: 900;
  font-style: normal;
  color: #f2f1ef;
  margin-bottom: 0;
}

@media only screen and (min-width: 768px) {
  .prices-wrap p {
    margin-bottom: 15px;
    letter-spacing: 1.7px;
    font-size: 1.0625rem;
    line-height: 1.875rem;
    margin-bottom: 10px;
  }
}

.prices-wrap p.description {
  font-size: 0.75rem;
  line-height: 1.125rem;
  letter-spacing: 1.2px;
  border-top: 1px solid #f2f1ef;
  padding-top: 15px;
  margin-bottom: 0;
}

@media only screen and (min-width: 768px) {
  .prices-wrap p.description {
    font-size: 1rem;
    line-height: 1.875rem;
    letter-spacing: 1.6px;
  }
}

.reservation-wrap {
  background-color: #5e7f6a;
  padding: 8px;
  margin-bottom: 58px;
}

.reservation-wrap .background-wrap {
  background-color: #f2f1ef;
  padding: 5px;
}

.reservation-wrap .background-wrap .frame-wrap {
  border-radius: 15px;
  background-color: #5e7f6a;
  padding: 20px 20px 20px 20px;
}

@media only screen and (min-width: 768px) {
  .reservation-wrap .background-wrap .frame-wrap {
    padding: 20px 50px 64px 50px;
  }
}

.reservation-wrap img {
  margin-bottom: 18px;
  width: 28px;
  height: 29px;
}

@media only screen and (min-width: 768px) {
  .reservation-wrap img {
    width: auto;
    height: auto;
    margin-bottom: 40px;
  }
}

.reservation-wrap h2 {
  font-size: 0.875rem;
  line-height: 1.3125rem;
  letter-spacing: 0.7px;
  font-weight: 800;
  font-style: italic;
  color: #f2f1ef;
  margin-bottom: 20px;
}

@media only screen and (min-width: 768px) {
  .reservation-wrap h2 {
    font-size: 1.8125rem;
    line-height: 2.5rem;
    letter-spacing: 1.45px;
    margin-bottom: 35px;
  }
}

.reservation-wrap p {
  font-size: 0.75rem;
  line-height: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.6px;
  font-style: italic;
  color: rgba(242, 241, 239, 0.8);
  margin-bottom: 10px;
}

@media only screen and (min-width: 768px) {
  .reservation-wrap p {
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
  }
}

.reservation-wrap p:first-of-type {
  margin-bottom: 25px;
}

@media only screen and (min-width: 768px) {
  .reservation-wrap p:first-of-type {
    margin-bottom: 50px;
  }
}

.reservation-wrap p strong {
  color: #f2f1ef;
}

.reservation-wrap p a {
  font-size: 0.75rem;
  line-height: 1.0625rem;
  font-weight: 800;
  letter-spacing: 1.25px;
  font-style: italic;
  color: #f2f1ef;
  margin-bottom: 20px;
  text-decoration: none;
}

@media only screen and (min-width: 768px) {
  .reservation-wrap p a {
    font-size: 1.5625rem;
    line-height: 2.125rem;
  }
}

.reservation-wrap p a:hover {
  text-decoration: underline;
}

.reservation-wrap h6 {
  font-size: 0.75rem;
  line-height: 1.0625rem;
  font-weight: 500;
  letter-spacing: 0.6px;
  font-style: italic;
  color: rgba(242, 241, 239, 0.8);
  margin-bottom: 0;
}

@media only screen and (min-width: 768px) {
  .reservation-wrap h6 {
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: 0.8px;
    font-weight: 800;
    margin-bottom: 5px;
  }
}

.reservation-wrap h6 strong {
  color: #f2f1ef;
}

.contact-wrap {
  font-style: italic;
}

.contact-wrap .contact-info {
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: 0.7px;
  font-weight: 500;
  color: #c4a274;
  margin-bottom: 0;
}

@media only screen and (min-width: 768px) {
  .contact-wrap .contact-info {
    font-size: 1.875rem;
    line-height: 2.25rem;
    margin-bottom: 20px;
  }
}

.contact-wrap .contact-info a {
  color: #5e7f6a;
  font-weight: 900;
  text-decoration: none;
}

.contact-wrap .contact-info a:hover {
  text-decoration: underline;
}

.contact-wrap p.thin-text {
  font-size: 0.875rem;
  line-height: 1.375rem;
  letter-spacing: 0.85px;
  display: inline-block;
  max-width: 792px;
  margin-bottom: 60px;
  padding-top: 20px;
}

@media only screen and (min-width: 768px) {
  .contact-wrap p.thin-text {
    font-size: 1.0625rem;
    line-height: 1.5625rem;
    padding-top: 0;
  }
}

.contact-wrap h2 {
  color: #5e7f6a;
}

.location-wrap.mobile {
  display: block;
}

@media only screen and (min-width: 992px) {
  .location-wrap.mobile {
    display: none;
  }
}

.location-wrap.mobile .buttons-wrap {
  padding: 42px 0;
  /*.btn{
                @include devices(medium){
                    margin-right: 100px;
                }
            }*/
}

.location-wrap.desktop {
  display: none;
}

@media only screen and (min-width: 992px) {
  .location-wrap.desktop {
    display: block;
  }
}

.location-wrap .row {
  margin-left: -50px;
  margin-right: -50px;
  margin-bottom: 60px;
}

@media only screen and (min-width: 1200px) {
  .location-wrap .row.top-row .col:first-of-type {
    border-right: 1px solid #6e7e76;
  }
}

@media only screen and (min-width: 1200px) {
  .location-wrap .row.top-row .col:last-of-type {
    border-left: 1px solid #6e7e76;
  }
}

.location-wrap .row .col {
  padding-left: 50px;
  padding-right: 50px;
}

.location-wrap h3 {
  font-size: 0.9375rem;
  line-height: 1.25rem;
  letter-spacing: 0.8px;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 40px;
  color: #c4a274;
}

@media only screen and (min-width: 768px) {
  .location-wrap h3 {
    font-size: 1.875rem;
    line-height: 2.5rem;
  }
}

.location-wrap p {
  font-size: 0.8125rem;
  line-height: 1.25rem;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 0.6px;
}

@media only screen and (min-width: 768px) {
  .location-wrap p {
    font-size: 1.0625rem;
    line-height: 2.5rem;
    margin-bottom: 0;
  }
}

.location-wrap p strong {
  font-weight: 800;
}

.location-wrap .img-wrap {
  text-align: center;
}

@media only screen and (min-width: 1200px) {
  .location-wrap .img-wrap {
    text-align: right;
  }
}

.location-wrap .img-wrap img {
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

.location-wrap .link-under-button {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  font-style: italic;
  color: #707070;
  text-decoration: underline;
}

.location-wrap .link-under-button:hover {
  text-decoration: none;
}

.job-offers-wrap {
  margin-bottom: 90px;
}

@media only screen and (min-width: 768px) {
  .job-offers-wrap {
    margin-bottom: 0;
  }
}

.job-offers-wrap p {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #5e7f6a;
  font-weight: 500;
  margin-bottom: 20px;
}

@media only screen and (min-width: 768px) {
  .job-offers-wrap p {
    font-size: 1.875rem;
    line-height: 2.5rem;
  }
}

.job-offers-wrap p:last-child {
  margin-bottom: none;
}

.job-offers-wrap p.gold {
  color: #c4a274;
  margin-bottom: 33px;
}

.job-offers-wrap p strong {
  font-weight: 800;
}
/*# sourceMappingURL=main.min.css.map */