@font-face {
  font-family: Times Now;
  src: url('../fonts/TimesNow-SemiBold.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Times Now;
  src: url('../fonts/TimesNow-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url('../fonts/Inter-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url('../fonts/Inter-Medium.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url('../fonts/Inter-SemiBold.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: white;
  --black: black;
}

body {
  color: #333;
  flex-direction: column;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 20px;
  display: flex;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Times Now, Times New Roman, sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Times Now, Times New Roman, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 36px;
}

p {
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
}

a {
  color: #457dff;
  font-family: Inter, sans-serif;
  font-size: 17px;
  line-height: 30px;
  text-decoration: none;
  transition: color .4s cubic-bezier(.23, 1, .32, 1);
}

a:hover {
  color: #0037b6;
}

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

.navbar {
  z-index: 10000;
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  background-color: #fffc;
  border-bottom: 3px #ebebeb;
  position: sticky;
  top: 0;
}

.navbar-logo-left-container {
  z-index: 5;
  background-color: #0000;
  width: 1030px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 20px;
}

.navbar-logo-left-container.shadow-three {
  width: 100%;
  max-width: 87%;
  margin-bottom: 0;
  padding: 10px 0;
}

.container {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.navbar-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.navbar-brand {
  flex: 1;
}

.nav-menu-two {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.nav-link {
  color: #55525e;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 10px;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
}

.nav-link:hover {
  color: #aa6300;
}

.nav-link:focus-visible, .nav-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-link.w--current {
  color: #aa6300;
}

.nav-dropdown {
  margin-left: 5px;
  margin-right: 5px;
}

.nav-dropdown-toggle {
  color: #55525e;
  letter-spacing: .25px;
  padding: 5px 30px 5px 10px;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
}

.nav-dropdown-toggle:hover {
  color: #1a1b1fbf;
}

.nav-dropdown-toggle:focus-visible, .nav-dropdown-toggle[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-icon {
  margin-right: 10px;
}

.nav-dropdown-list {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list.w--open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-list.shadow-three.mobile-shadow-hide.w--open {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: #fffc;
  top: 51px;
  box-shadow: 0 5px 20px #0003;
}

.nav-dropdown-link {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 15px;
}

.nav-dropdown-link:hover {
  color: #aa6300;
}

.nav-dropdown-link:focus-visible, .nav-dropdown-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-link.w--current {
  color: #aa6300;
}

.nav-divider {
  background-color: #aa630066;
  width: 2px;
  height: 22px;
  margin-left: 10px;
  margin-right: 25px;
}

.header-section {
  grid-column-gap: 12px;
  align-items: flex-start;
  width: 75%;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  display: flex;
}

.header-column {
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.header-text-block {
  background-color: #fff0db;
  border-radius: 15px;
  margin-bottom: 12px;
  padding: 25px;
}

.header-text-block.margin {
  background-color: #ffe6c4;
  margin-bottom: 12px;
}

.body {
  font-family: Inter, sans-serif;
}

.header-img {
  border-radius: 15px;
  width: 100%;
  box-shadow: 0 7px 20px #0003;
}

.header-para {
  color: #905400;
  width: 100%;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 32px;
}

.header-para.smaller {
  color: #905400cc;
  font-size: 16px;
  line-height: 30px;
}

.header-para.white {
  color: #fff;
  text-align: center;
  max-width: 87%;
}

.header-para.white.center {
  text-align: center;
}

.header-button {
  background-color: #ffdfb1;
  border-radius: 15px;
  align-items: center;
  width: 100%;
  margin-bottom: 12px;
  padding: 25px;
  transition: box-shadow .4s cubic-bezier(.23, 1, .32, 1), background-color .4s cubic-bezier(.23, 1, .32, 1);
  display: flex;
}

.header-button:hover {
  background-color: #ffcf8b;
  box-shadow: 0 1px 20px 5px #ffcf8b66;
}

.header-button.alt {
  background-color: #27004c;
  border-color: #000;
  box-shadow: 0 5px 20px #27004c66;
}

.header-button.alt.no-margin {
  box-shadow: none;
  background-color: #ffdfb1;
  margin-bottom: 12px;
}

.header-button.alt.no-margin:hover {
  background-color: #ffcf8b;
  box-shadow: 0 1px 20px 5px #ffcf8b66;
}

.hero2-h2 {
  color: #aa6300;
  letter-spacing: .5px;
  margin-top: 0;
}

.header-button-para {
  color: #000000a6;
  margin-bottom: 0;
  font-size: 17px;
  line-height: 27px;
}

.div-block {
  flex: 1;
}

.hero-button-arrow-wrap {
  background-color: #ffffffe6;
  border-radius: 15px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
  padding: 10px 20px;
  display: flex;
}

.button-arrow {
  filter: contrast(70%);
  width: 25px;
}

.section {
  width: 75%;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

.section._3-column {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-bottom: 40px;
  display: grid;
}

.section._3-column.no-margin {
  margin-bottom: 30px;
  padding-bottom: 0;
}

.section._3-column.wider-columns {
  grid-column-gap: 25px;
  grid-row-gap: 0px;
}

.section._2-column {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  padding-bottom: 0;
  display: grid;
}

.section._2-column.narrow {
  width: 60%;
}

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

.divider {
  background-color: #b76a0080;
  border-radius: 15px;
  width: 100%;
  height: 5px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.wide-card-header {
  color: #fff;
  margin-top: 120px;
  margin-bottom: 0;
  font-size: 28px;
  line-height: 42px;
}

.wide-card-header.black {
  color: #280062;
}

.wide-card-header.black.no-margin {
  color: #aa6300;
  letter-spacing: .5px;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Times Now, Times New Roman, sans-serif;
  font-size: 29px;
  font-weight: 700;
  line-height: 45px;
}

.wide-card-header.black.no-margin.smaller {
  font-size: 26px;
  line-height: 39px;
}

.wide-card {
  background-color: #fff0db;
  border-radius: 15px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.wide-card.top {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.wide-card.top.gallery-wrap {
  background-image: url('../images/IMG_9163-510x616.jpg'), linear-gradient(#fff0 83%, #0006);
  background-position: 50%, 0 0;
  background-size: cover, auto;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: 50vh;
}

.wide-card.top.gallery-wrap._2 {
  background-image: url('../images/DSC_47851-510x764.jpg'), linear-gradient(#fff0 83%, #0006);
}

.wide-card.top.gallery-wrap._3 {
  background-image: url('../images/image1-510x765.jpeg'), linear-gradient(#fff0 83%, #0006);
}

.wide-card-column {
  flex: 1;
  max-width: 40%;
}

.wide-card-column.bigger {
  max-width: 70%;
}

.wide-card-column.bigger.full {
  max-width: 100%;
}

.img {
  border-radius: 15px;
  width: 100%;
  box-shadow: 5px 0 20px #0003;
}

.img.bottom-shadow {
  margin-bottom: 20px;
  box-shadow: 0 5px 20px #0003;
}

.img.smaller {
  width: 50%;
  height: 50%;
}

.img.top-margin-mobile {
  height: auto;
}

.img.half-width {
  width: 100%;
  max-width: 100%;
}

.wide-card-wrap {
  padding: 40px 60px;
}

.wide-card-para {
  margin-bottom: 30px;
  font-family: Inter, sans-serif;
  font-size: 17px;
  line-height: 30px;
}

.wide-card-para.no-margin {
  margin-bottom: 0;
}

.wide-card-para.no-margin.nb {
  color: #fff;
  text-align: center;
}

.wide-card-para.notice-para {
  color: #fff;
  margin-bottom: 0;
}

.btn {
  color: #ffffffd9;
  background-color: #aa6300;
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 17px;
  font-weight: 500;
  transition: background-color .4s cubic-bezier(.23, 1, .32, 1);
  box-shadow: 0 1px 30px #aa630066;
}

.btn:hover {
  color: #fffffff2;
  background-color: #c57300;
}

.btn.smaller {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 15px;
}

.info-div {
  background-color: #fff0db;
  border: 3px solid #f0c8904d;
  border-radius: 15px;
  align-items: center;
  padding: 10px;
  display: flex;
}

.div-block-6 {
  background-color: #ffe0b4;
  border-radius: 15px;
  margin-right: 15px;
  padding: 12px;
}

.div-block-7 {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 25px;
  display: flex;
}

.div-block-7.flex-start {
  justify-content: space-between;
}

.wide-section {
  grid-column-gap: 30px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 97%;
  margin: 40px auto;
  display: grid;
}

.wide-section._1-wide {
  grid-template-columns: 1fr;
  display: block;
}

.wide-section._1-wide.full-height-hero {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 87%;
  margin-top: 0;
  margin-bottom: 0;
}

.wide-section._1-wide.full-height-hero.bottom-margin {
  margin-bottom: 50px;
}

.wide-section._1-wide.full-height-hero.bottom-margin.show-on-mobile {
  display: none;
}

.wide-section._1-wide.no-margin {
  grid-column-gap: 20px;
  width: 87%;
  margin-top: 10px;
  margin-bottom: 20px;
  display: flex;
}

.wide-section._1-wide.no-margin.center-modules {
  justify-content: center;
}

.wide-section._1-wide.no-margin.center-modules.absolutely-no-margin {
  margin-top: 0;
  margin-bottom: 0;
}

.wide-section._1-wide.mobile-hero2 {
  display: none;
}

.wide-section.gallery {
  background-image: linear-gradient(to right, #ffe6c4, #fff0 15%), url('../images/DSC_4635-min.jpg');
  background-position: 0 0, 50% 20%;
  background-size: auto, cover;
  border-radius: 15px;
  min-height: 90vh;
  margin-top: 0;
  display: block;
  position: relative;
}

.footer {
  background-color: #fff0db;
  margin-top: auto;
  padding-top: 25px;
  padding-bottom: 25px;
}

.div-block-8 {
  justify-content: space-between;
  align-items: center;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.paragraph-3 {
  color: #975800bf;
  margin-bottom: 0;
  font-size: 17px;
  line-height: 27px;
}

.div-block-9 {
  grid-column-gap: 5px;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.image-5 {
  background-color: #fff;
  border-radius: 5px;
  width: 40px;
  box-shadow: 0 1px 20px #fff6;
}

.div-block-10 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-bottom: 3px solid #b76a0066;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 70%;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10px;
  padding-bottom: 30px;
  display: flex;
}

.footer-sub-title {
  color: #975800bf;
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
}

.logo {
  filter: invert(89%) sepia(19%) saturate(1109%) hue-rotate(333deg) brightness(75%) contrast(104%);
  width: 40%;
}

.logo.navbar-logo {
  filter: invert(89%) sepia(19%) saturate(1500%) hue-rotate(333deg) brightness(80%) contrast(104%);
  width: 18%;
  min-width: 170px;
  max-width: 100%;
  display: block;
}

.footer-div-wrap {
  flex: 1;
}

.header-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  column-count: 4;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: block;
}

.hero-area1 {
  background-color: #ffe6c4b3;
  border-radius: 15px;
  width: 100%;
  box-shadow: 0 3px 20px #0000001a;
}

.hero-area1.second {
  background-color: #ffe6c440;
}

.hero-area1.full-width {
  width: 100%;
}

.hero-h1 {
  margin-top: 0;
  margin-bottom: 30px;
}

.hero-h1.secondary {
  color: #aa6300;
  font-size: 28px;
  line-height: 38px;
}

.beige-div {
  margin-bottom: 0;
  padding: 40px;
}

.beige-div.vertically-center-txt {
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.hero-h1-color {
  color: #aa6300;
  font-family: Inter, sans-serif;
  font-size: 32px;
  font-weight: 500;
}

.masonry-image {
  border-radius: 8px;
  width: 100%;
  margin-bottom: 40px;
  box-shadow: 0 1px 20px #0000001a;
}

.masonry-image.no-margin {
  margin-bottom: 0;
}

.szolgaltatas-div {
  background-color: #ffe6c466;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 40px;
}

.szolgaltatas-div.colour {
  background-color: #ffe6c4b3;
}

.szolgaltatas-div.grid-item.grid-sizer {
  margin-bottom: 1%;
}

.third-title {
  color: #aa6300;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 500;
}

.third-title.hero {
  font-family: Times Now, Times New Roman, sans-serif;
}

.footer-link {
  font-size: 15px;
}

.footer-links-wrap {
  grid-column-gap: 60px;
  flex: 1;
  display: flex;
}

.footer-vertical-collector {
  grid-row-gap: 3px;
  flex-direction: column;
  display: flex;
}

.paste-rich-text-block p, .paste-rich-text-block a, .paste-rich-text-block li {
  font-size: 16px;
  line-height: 29px;
}

.wide-card-header-small {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 20px;
}

.wide-card-header-small.no-margin {
  margin-bottom: 0;
}

.wide-card-header-small.small-margin {
  margin-bottom: 10px;
}

.bigger-link {
  font-size: 20px;
}

.header-section-area {
  grid-column-gap: 12px;
  grid-row-gap: 16px;
  grid-template: "."
  / 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  width: 75%;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  display: flex;
}

.div-block-23 {
  grid-column-gap: 40px;
  background-color: #fff0db;
  border-radius: 15px;
  justify-content: space-between;
  padding: 40px 60px;
  display: flex;
}

.div-block-25 {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.div-block-25.images {
  flex-direction: column;
  display: flex;
}

.secondary-card-header {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 31px;
}

.header-section-area-2-column {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template: "."
  / 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  width: 75%;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  display: grid;
}

.header-section-area-text-bigger {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template: "."
  / 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  width: 75%;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  display: flex;
}

.grid {
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  place-items: flex-start stretch;
  width: 100%;
  display: flex;
}

.grid-item {
  flex: 0 auto;
  width: 24.25%;
}

.no-show {
  display: none;
}

.gutter-sizer {
  width: 1%;
}

.gallery-block-para {
  color: #fff;
  text-shadow: 0 1px 1px #000;
  background-image: linear-gradient(#fff0, #0009 55%);
  border-radius: 15px;
  width: 100%;
  margin-bottom: 0;
  padding-top: 10%;
  padding-bottom: 10%;
  padding-left: 10%;
  font-size: 35px;
  line-height: 40px;
}

._3-column-cms {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.wide-card-wrap-cms {
  border-radius: 15px;
}

.gallery-item {
  flex: 0 auto;
  width: 32%;
}

.gutter-sizer-gallery {
  width: 2%;
}

.grid-mobile {
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  place-items: flex-start stretch;
  width: 100%;
  display: flex;
}

.gallery-item-mobile {
  flex: 0 auto;
  width: 32.05%;
}

.div-block-26 {
  flex: 0 auto;
}

.wide-card-wrap-inner {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.gallery-heading {
  color: #975800e6;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 60px;
  position: absolute;
  inset: auto auto 13.5% -1%;
  transform: rotate(-90deg);
}

.nav-banner {
  background-color: #006fde;
  justify-content: center;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
}

.nav-banner-wrap {
  width: 75%;
}

.nav-banner-wrap._100 {
  width: 100%;
}

.notice {
  background-color: #4051d4;
  padding-top: 10px;
  padding-bottom: 10px;
}

@media screen and (max-width: 991px) {
  .navbar-logo-left-container.shadow-three {
    max-width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .container {
    width: 93%;
  }

  .navbar-wrapper {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .nav-menu-wrapper {
    background-color: #0000;
  }

  .nav-menu-two {
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    background-color: #fffc;
    border-radius: 50px;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
    padding: 20px;
    display: flex;
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-link {
    padding-left: 5px;
    padding-right: 5px;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: absolute;
  }

  .menu-button {
    padding: 12px;
  }

  .menu-button.w--open {
    color: #fff;
    background-color: #aa6300;
    border-radius: 10px;
  }

  .header-section {
    grid-column-gap: 0px;
    grid-row-gap: 12px;
    flex-direction: column;
    width: 97%;
    padding-top: 0;
  }

  .header-para.mobile-hero {
    margin-bottom: 40px;
  }

  .header-para.mobile-hero.except {
    margin-bottom: 0;
  }

  .hero-button-arrow-wrap {
    margin-left: 0;
  }

  .section {
    width: 97%;
    display: block;
  }

  .section._3-column.no-margin {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .section._3-column.wider-columns {
    grid-row-gap: 25px;
    grid-template-columns: 1fr 1fr;
  }

  .section._3-column.wider-columns.no-margin {
    grid-column-gap: 0px;
    grid-row-gap: 25px;
    grid-template-columns: 1fr;
  }

  .section._2-column {
    grid-template-columns: 1fr;
  }

  .section._2-column.narrow {
    width: 97%;
  }

  .wide-card {
    flex-direction: column;
    align-items: center;
  }

  .wide-card-column, .wide-card-column.bigger {
    max-width: 100%;
  }

  .img {
    box-shadow: 0 5px 20px #0003;
  }

  .img.bottom-shadow {
    margin-bottom: 10px;
  }

  .img.half-width {
    width: auto;
    max-width: 100%;
  }

  .wide-card-wrap {
    padding: 25px;
  }

  .wide-section {
    grid-column-gap: 0px;
    grid-row-gap: 25px;
    grid-template-columns: 1fr;
  }

  .wide-section._1-wide.full-height-hero {
    display: none;
  }

  .wide-section._1-wide.full-height-hero.bottom-margin.show-on-mobile {
    width: 95%;
    display: block;
  }

  .wide-section._1-wide.full-height-hero.show-on-mobile {
    width: 97%;
    display: flex;
  }

  .wide-section._1-wide.no-margin {
    display: none;
  }

  .wide-section._1-wide.no-margin.center-modules.absolutely-no-margin {
    display: block;
  }

  .wide-section._1-wide.mobile-hero2 {
    margin-top: 0;
    margin-bottom: 0;
    display: block;
  }

  .wide-section.gallery {
    background-image: linear-gradient(to top, #ffe6c4, #fff0 30%), url('../images/DSC_1306-min.jpg');
    background-position: 0 0, 50% 0;
    background-size: auto, cover;
  }

  .div-block-8 {
    width: 97%;
  }

  .icon {
    transform: scale(1.2);
  }

  .div-block-10 {
    width: 97%;
  }

  .hero-area1 {
    width: 100%;
  }

  .masonry-image {
    margin-bottom: 20px;
  }

  .mobile-hero-h1 {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 54px;
    line-height: 68px;
  }

  .text-span-3 {
    color: #aa6300;
    font-family: Inter, sans-serif;
    font-size: 45px;
    font-weight: 500;
  }

  .div-block-21 {
    text-align: center;
    background-color: #ffe6c4;
    border-radius: 15px;
    margin-bottom: 15px;
    padding: 40px;
  }

  .div-block-21.second {
    background-color: #ffe6c400;
    background-image: url('../images/_SZL9705-copy-3-min.jpg');
    background-position: 50% 0;
    background-size: cover;
    min-height: 65vh;
    margin-bottom: 0;
    padding: 0;
  }

  .header-section-area {
    grid-column-gap: 0px;
    grid-row-gap: 12px;
    flex-direction: column;
    grid-template-columns: 1fr;
    grid-template-areas: ".";
    width: 97%;
    padding-top: 0;
  }

  .header-section-area-2-column, .header-section-area-text-bigger {
    grid-column-gap: 0px;
    grid-row-gap: 12px;
    flex-direction: column;
    width: 97%;
    padding-top: 0;
  }

  .gallery-item {
    width: 100%;
  }

  .gutter-sizer-gallery {
    width: 0%;
  }

  .grid-mobile {
    flex-direction: column;
    justify-content: flex-start;
  }

  .gallery-item-mobile {
    width: 100%;
  }

  .gallery-heading {
    bottom: 4%;
    left: 4%;
    transform: none;
  }

  .nav-banner-wrap {
    width: 93%;
  }
}

@media screen and (max-width: 767px) {
  .navbar-logo-left-container {
    max-width: 100%;
  }

  .navbar-brand {
    padding-left: 0;
  }

  .nav-menu-two {
    border-radius: 20px;
    flex-direction: column;
    padding-bottom: 30px;
  }

  .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .nav-dropdown {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .nav-dropdown-toggle {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown-list.shadow-three {
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide {
    box-shadow: none;
  }

  .nav-divider {
    width: 200px;
    max-width: 100%;
    height: 1px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .mobile-margin-top-10 {
    margin-top: 10px;
  }
}

@media screen and (max-width: 479px) {
  .container {
    width: 93%;
    max-width: none;
  }

  .nav-menu-wrapper {
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    background-color: #fffc;
  }

  .nav-menu-two {
    background-color: #fff0;
    border-radius: 0 0 15px 15px;
    flex-direction: column;
    margin-top: 0;
    padding-bottom: 20px;
  }

  .nav-link {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    padding-left: 5px;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide.w--open {
    box-shadow: none;
    border-top: 3px solid #f1f1f1;
    border-bottom: 3px solid #f1f1f1;
    border-radius: 0;
    top: 0;
  }

  .nav-dropdown-link {
    font-size: 15px;
  }

  .nav-divider {
    background-color: #aa630066;
    border-radius: 10px;
    width: 100%;
    height: 3px;
    margin-left: auto;
    margin-right: auto;
  }

  .header-section {
    width: 93%;
    margin-bottom: 20px;
    padding-top: 0;
  }

  .header-text-block {
    padding: 20px;
  }

  .header-para {
    font-size: 16px;
    line-height: 29px;
  }

  .header-para.white {
    max-width: 93%;
  }

  .header-button {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
  }

  .hero2-h2 {
    font-size: 28px;
    line-height: 35px;
  }

  .header-button-para {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 29px;
  }

  .button-arrow {
    width: 25px;
  }

  .section {
    width: 92%;
    margin-bottom: 20px;
  }

  .section._3-column.wider-columns {
    grid-template-columns: 1fr;
  }

  .section._2-column.narrow {
    grid-template-columns: 1fr;
    width: 92%;
  }

  .divider {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .img.smaller {
    width: 100%;
  }

  .img.top-margin-mobile {
    margin-top: 20px;
  }

  .wide-card-wrap {
    padding: 20px;
  }

  .wide-card-para, .wide-card-para.no-margin {
    font-size: 16px;
    line-height: 29px;
  }

  .btn {
    margin-bottom: 10px;
  }

  .div-block-7 {
    padding: 20px;
  }

  .wide-section {
    width: 92%;
    margin-top: 0;
  }

  .wide-section._1-wide {
    margin-top: 0;
    margin-bottom: 20px;
  }

  .wide-section._1-wide.full-height-hero.bottom-margin {
    margin-bottom: 20px;
  }

  .wide-section._1-wide.full-height-hero.bottom-margin.show-on-mobile {
    width: 97%;
  }

  .wide-section._1-wide.full-height-hero.show-on-mobile {
    width: 92%;
  }

  .wide-section._1-wide.mobile-hero2 {
    margin-bottom: 20px;
  }

  .wide-section.gallery {
    background-image: linear-gradient(to top, #ffe6c4, #fff0 40%), url('../images/DSC_5380-min.jpg');
    background-position: 0 0, 50%;
    background-size: auto, cover;
    min-height: 85vh;
    margin-bottom: 20px;
  }

  .div-block-8 {
    grid-row-gap: 25px;
    flex-direction: column;
    align-items: flex-start;
    width: 92%;
  }

  .icon {
    transform: scale(1.2);
  }

  .list-item {
    text-align: left;
    width: 100%;
    display: block;
  }

  .div-block-10 {
    flex-direction: column;
    width: 92%;
  }

  .footer-sub-title {
    margin-bottom: 5px;
  }

  .logo {
    width: 100%;
    margin-bottom: 10px;
  }

  .logo.navbar-logo {
    width: 55%;
    min-width: auto;
    max-width: 55%;
    margin-bottom: 0;
  }

  .footer-div-wrap {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    display: flex;
  }

  .dropdown-text {
    transition: color .4s cubic-bezier(.23, 1, .32, 1);
  }

  .dropdown-text:hover {
    color: #aa6300;
  }

  .hero-h1 {
    margin-bottom: 15px;
    font-size: 30px;
  }

  .beige-div.vertically-center-txt {
    padding: 20px;
  }

  .mobile-hero-h1 {
    font-size: 37px;
    line-height: 50px;
  }

  .text-span-3 {
    font-size: 32px;
  }

  .div-block-21 {
    padding: 30px;
  }

  .div-block-21.second {
    background-image: url('../images/DSC_52491-min.jpg');
    background-position: 50%;
    min-height: 55vh;
  }

  .footer-links-wrap {
    grid-column-gap: 50px;
    grid-row-gap: 0px;
    flex-direction: row;
    align-items: flex-start;
  }

  .header-section-area {
    width: 93%;
    margin-bottom: 20px;
    padding-top: 0;
  }

  .div-block-23 {
    flex-direction: column;
    padding: 20px;
  }

  .header-section-area-2-column {
    width: 93%;
    padding-top: 0;
  }

  .header-section-area-text-bigger {
    width: 93%;
    margin-bottom: 20px;
    padding-top: 0;
  }

  ._3-column-cms {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
  }

  .gallery-heading {
    bottom: 3%;
    left: 8%;
  }

  .nav-banner {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

#w-node-e123a787-0768-f941-52d0-86f56ecef210-f88d3fe4, #w-node-_5fc6efc2-1c68-d97f-200c-b574ae84d162-f88d3fe4, #w-node-_8208c346-6757-b491-dea4-b5ca130943dc-f88d3fe4, #w-node-_7572b561-3301-6ba7-38f3-e8ffb109b0fc-f88d3fe4, #w-node-_94b6b825-3e10-fcad-0a8d-2f9ebcdecebf-308b7b21, #w-node-_84655499-2210-190f-08fd-f858d1ec68fe-1147ed04, #w-node-a22ae494-b9cb-822e-fc71-601eff70298d-b1c71843, #w-node-a22ae494-b9cb-822e-fc71-601eff70298d-4039f88d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


@font-face {
  font-family: 'Times Now';
  src: url('../fonts/TimesNow-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Times Now';
  src: url('../fonts/TimesNow-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}