<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * Colors
 *
 */
/**
 * Bootstrap customised
 *
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 100ms ease;
  transition: -webkit-transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
          transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond-LightItalic.eot");
  src: url("../fonts/CormorantGaramond-LightItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/CormorantGaramond-LightItalic.woff2") format("woff2"), url("../fonts/CormorantGaramond-LightItalic.woff") format("woff"), url("../fonts/CormorantGaramond-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gill Sans Nova";
  src: url("../fonts/GillSansNova-Medium.eot");
  src: url("../fonts/GillSansNova-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/GillSansNova-Medium.woff2") format("woff2"), url("../fonts/GillSansNova-Medium.woff") format("woff"), url("../fonts/GillSansNova-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond-SemiBold.eot");
  src: url("../fonts/CormorantGaramond-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/CormorantGaramond-SemiBold.woff2") format("woff2"), url("../fonts/CormorantGaramond-SemiBold.woff") format("woff"), url("../fonts/CormorantGaramond-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond-Bold.eot");
  src: url("../fonts/CormorantGaramond-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/CormorantGaramond-Bold.woff2") format("woff2"), url("../fonts/CormorantGaramond-Bold.woff") format("woff"), url("../fonts/CormorantGaramond-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond-Light.eot");
  src: url("../fonts/CormorantGaramond-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/CormorantGaramond-Light.woff2") format("woff2"), url("../fonts/CormorantGaramond-Light.woff") format("woff"), url("../fonts/CormorantGaramond-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond-Regular.eot");
  src: url("../fonts/CormorantGaramond-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/CormorantGaramond-Regular.woff2") format("woff2"), url("../fonts/CormorantGaramond-Regular.woff") format("woff"), url("../fonts/CormorantGaramond-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gill Sans Nova Book";
  src: url("../fonts/GillSansNova-Book.eot");
  src: url("../fonts/GillSansNova-Book.eot?#iefix") format("embedded-opentype"), url("../fonts/GillSansNova-Book.woff2") format("woff2"), url("../fonts/GillSansNova-Book.woff") format("woff"), url("../fonts/GillSansNova-Book.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond-Medium.eot");
  src: url("../fonts/CormorantGaramond-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/CormorantGaramond-Medium.woff2") format("woff2"), url("../fonts/CormorantGaramond-Medium.woff") format("woff"), url("../fonts/CormorantGaramond-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
html body {
  font-family: "Gill Sans Nova", Sans-serif;
}

html,
body {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
}

a,
a:hover,
a:focus,
a:active {
  color: inherit;
  text-decoration: none;
}

*,
*:hover,
*:focus {
  outline: 0;
}

.transition {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
*/
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
    ========================================================================== */
/**
* Remove the margin in all browsers.
*/
body {
  margin: 0;
}

/**
* Render the `main` element consistently in IE.
*/
main {
  display: block;
}

/**
* Correct the font size and margin on `h1` elements within `section` and
* `article` contexts in Chrome, Firefox, and Safari.
*/
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
    ========================================================================== */
/**
* 1. Add the correct box sizing in Firefox.
* 2. Show the overflow in Edge and IE.
*/
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
    ========================================================================== */
/**
* Remove the gray background on active links in IE 10.
*/
a {
  background-color: transparent;
}

/**
* 1. Remove the bottom border in Chrome 57-
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
*/
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
* Add the correct font weight in Chrome, Edge, and Safari.
*/
b,
strong {
  font-weight: bolder;
}

/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
* Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}

/**
* Prevent `sub` and `sup` elements from affecting the line height in
* all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
    ========================================================================== */
/**
* Remove the border on images inside links in IE 10.
*/
img {
  border-style: none;
}

/* Forms
    ========================================================================== */
/**
* 1. Change the font styles in all browsers.
* 2. Remove the margin in Firefox and Safari.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
* Show the overflow in IE.
* 1. Show the overflow in Edge.
*/
button,
input {
  /* 1 */
  overflow: visible;
}

/**
* Remove the inheritance of text transform in Edge, Firefox, and IE.
* 1. Remove the inheritance of text transform in Firefox.
*/
button,
select {
  /* 1 */
  text-transform: none;
}

/**
* Correct the inability to style clickable types in iOS and Safari.
*/
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
* Remove the inner border and padding in Firefox.
*/
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
* Restore the focus styles unset by the previous rule.
*/
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
* Correct the padding in Firefox.
*/
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
* 1. Correct the text wrapping in Edge and IE.
* 2. Correct the color inheritance from `fieldset` elements in IE.
* 3. Remove the padding so developers are not caught out when they zero out
*    `fieldset` elements in all browsers.
*/
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
*/
progress {
  vertical-align: baseline;
}

/**
* Remove the default vertical scrollbar in IE 10+.
*/
textarea {
  overflow: auto;
}

/**
* 1. Add the correct box sizing in IE 10.
* 2. Remove the padding in IE 10.
*/
[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
* Correct the cursor style of increment and decrement buttons in Chrome.
*/
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
* 1. Correct the odd appearance in Chrome and Safari.
* 2. Correct the outline style in Safari.
*/
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
* Remove the inner padding in Chrome and Safari on macOS.
*/
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
* 1. Correct the inability to style clickable types in iOS and Safari.
* 2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
    ========================================================================== */
/*
* Add the correct display in Edge, IE 10+, and Firefox.
*/
details {
  display: block;
}

/*
* Add the correct display in all browsers.
*/
summary {
  display: list-item;
}

/* Misc
    ========================================================================== */
/**
* Add the correct display in IE 10+.
*/
template {
  display: none;
}

/**
* Add the correct display in IE 10.
*/
[hidden] {
  display: none;
}

.container {
  max-width: 100%;
  width: 1320px;
  padding-left: 15px;
  padding-right: 15px;
  margin: auto;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}

.col {
  padding-left: 15px;
  padding-right: 15px;
}

.mobile-br {
  display: none;
}

@media (max-width: 767px) {
  .mobile-br {
    display: block;
  }
}
:root {
  --admin-bar-height: 32px;
  --menu-bar-height: 53px;
}

.site-header {
  position: relative;
  min-height: var(--menu-bar-height);
  z-index: 100;
  height: 53px;
}
body.home .site-header {
  height: 0;
  min-height: 0;
}
body.home .site-header .fixed-header {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
body.home .site-header .fixed-header.visible {
  visibility: visible;
  opacity: 1;
}
.site-header .fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 7px 38px 7px;
  background-color: #fffdf8;
  z-index: 100;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: solid 0.5px #979797;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 53px;
}
.site-header .fixed-header .logo {
  font-family: "Gill Sans Nova";
  font-weight: 500;
  font-size: 25px;
  color: #8c2d22;
  letter-spacing: 6.25px;
  text-align: left;
}
.site-header .menu-burger {
  display: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13.3px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1.67px;
  text-align: center;
  color: #0c446e;
  text-transform: uppercase;
  padding: 10px 0;
}
.site-header .menu-burger .btn {
  width: 17px;
  height: 2px;
  background-color: #bd9d4e;
  margin-right: 14.3px;
  position: relative;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  z-index: 2;
}
.site-header .menu-burger .btn:before, .site-header .menu-burger .btn:after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: #bd9d4e;
  content: "";
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.site-header .menu-burger .btn:before {
  -webkit-transform: translateY(-250%);
  transform: translateY(-250%);
}
.site-header .menu-burger .btn:after {
  -webkit-transform: translateY(250%);
  transform: translateY(250%);
}
body.menu-open .site-header .menu-burger .btn {
  background-color: transparent;
}
body.menu-open .site-header .menu-burger .btn:before {
  -webkit-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
}
body.menu-open .site-header .menu-burger .btn:after {
  -webkit-transform: translateY(0) rotate(-45deg);
  transform: translateY(0) rotate(-45deg);
}
.site-header .main-nav-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.site-header .main-nav-menu li {
  padding-left: 23px;
  padding-right: 23px;
  position: relative;
  white-space: nowrap;
}
.site-header .main-nav-menu li:nth-child(3) a {
  color: #731925;
}
.site-header .main-nav-menu li a {
  font-size: 15px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1.5px;
  text-align: center;
  color: #0c446e;
  padding: 0;
  text-transform: uppercase;
}
.site-header .main-nav-menu li a:hover {
  color: #b99e54;
}
.site-header .main-nav-menu li.current-menu-item a {
  color: #b99e54;
}
.site-header .main-nav-menu li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: calc(50% - 2.5px);
  right: -2.5px;
  width: 4.5px;
  height: 4.5px;
  border-radius: 50%;
  border: solid 0.5px #b99e54;
  display: block;
}
.site-header .language ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.site-header .language ul li {
  font-family: "Gill Sans Nova";
  font-weight: 500;
  font-size: 13.33px;
  letter-spacing: 1.33px;
}
.site-header .language ul li.current-lang a {
  color: #074370;
}
.site-header .language ul li a {
  color: #909090;
}
.site-header .language ul li:last-child:after {
  content: "/";
  color: #BF9734;
  display: inline-block;
}
.admin-bar .site-header .fixed-header {
  top: var(--admin-bar-height);
}
@media (max-width: 1440px) {
  .site-header .fixed-header .logo {
    font-size: 22px;
    letter-spacing: 4.25px;
  }
  .site-header .main-nav-menu li {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 1199px) {
  .site-header .fixed-header .logo {
    font-size: 19px;
    letter-spacing: 3px;
  }
  .site-header .main-nav-menu li {
    padding-left: 13px;
    padding-right: 13px;
  }
  .site-header .main-nav-menu li a {
    font-size: 14px;
    letter-spacing: 0.5px;
  }
}
@media (max-width: 1023px) {
  .site-header .menu-burger {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .admin-bar .site-header .fixed-header {
    position: fixed;
  }
  .admin-bar .site-header .fixed-header .menu-wrap {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fffdf9;
    padding-top: 65px;
  }
  .admin-bar .site-header .fixed-header .logo {
    min-width: 96px;
  }
  .site-header .fixed-header {
    padding-left: 15px;
    padding-right: 15px;
  }
  .site-header .fixed-header .menu-wrap {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fffdf9;
    padding-top: 65px;
  }
  .site-header .main-nav-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .site-header .main-nav-menu li {
    padding-left: 29px;
    padding-right: 29px;
    padding-bottom: 36px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .site-header .main-nav-menu li:not(:last-child)::after {
    display: none;
  }
  .site-header .main-nav-menu li:before {
    content: "";
    width: 4.7px;
    height: 4.7px;
    border-radius: 50%;
    border: solid 0.5px #b99e54;
    display: block;
    margin-right: 11.7px;
  }
}
@media (max-width: 782px) {
  .admin-bar .site-header .fixed-header {
    top: 45px;
  }
}
@media (max-width: 419px) {
  .site-header .fixed-header .logo {
    font-size: 18px;
    letter-spacing: 1px;
  }
}
@media (max-width: 379px) {
  .admin-bar .site-header .fixed-header .logo {
    min-width: inherit;
  }
  .site-header .fixed-header .logo {
    font-size: 0;
    min-width: inherit;
    letter-spacing: 0;
  }
  .site-header .fixed-header .logo a {
    background-image: url("../img/AN_logo_mob.png");
    width: 25px;
    height: 25px;
    display: inline-block;
    background-size: contain;
  }
}

.site-footer {
  background-color: #F2F2F2;
  padding: 30px 38px 0;
}
.site-footer .container {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.site-footer .container .logo img {
  width: 60px;
}
.site-footer .container .footer-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.site-footer .container .footer-top .title {
  font-family: "Gill Sans Nova";
  font-weight: 500;
  font-size: 15px;
  color: #565654;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.site-footer .container .footer-top ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  font-size: 16.5px;
  letter-spacing: 0.75px;
  line-height: 1.4;
}
.site-footer .container .footer-top ul li {
  margin-bottom: 5px;
}
.site-footer .container .footer-top .contact {
  width: 200px;
}
.site-footer .container .footer-top .contact a {
  color: #124172;
}
.site-footer .container .footer-top .follow-us {
  width: 200px;
}
.site-footer .container .footer-top .follow-us .title {
  text-align: right;
}
.site-footer .container .footer-top .follow-us ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.site-footer .container .footer-top .follow-us ul li {
  margin: 0 5px;
}
.site-footer .container .footer-top .follow-us ul li:last-child {
  margin-right: 0;
}
.site-footer .container .footer-top .follow-us ul img {
  width: 23px;
}
.site-footer .container .footer-top .follow-us ul img.hovered-image {
  display: none;
}
.site-footer .container .footer-top .follow-us ul a:hover img.menu-image {
  display: none;
}
.site-footer .container .footer-top .follow-us ul a:hover img.hovered-image {
  display: block;
}
.site-footer .container .copy {
  margin-top: 15px;
  font-family: "Gill Sans Nova";
  font-weight: 500;
  font-size: 15px;
  color: #565654;
  letter-spacing: 1.5px;
  text-align: center;
  border-top: 1px solid #D8D8D8;
  text-align: center;
  padding-top: 11px;
  padding-bottom: 11px;
}
@media (max-width: 767px) {
  .site-footer {
    padding-top: 37px;
    padding-left: 0;
    padding-right: 0;
  }
  .site-footer .container .footer-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .site-footer .container .footer-top .title {
    margin-bottom: 15px;
  }
  .site-footer .container .footer-top .logo {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 30px;
  }
  .site-footer .container .footer-top .contact {
    margin-bottom: 30px;
  }
  .site-footer .container .footer-top .follow-us .title {
    text-align: center;
  }
  .site-footer .container .footer-top .follow-us ul {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .site-footer .container .copy {
    margin-top: 30px;
    font-size: 10px;
    letter-spacing: 1px;
  }
}

.site-main .single {
  padding: 50px 120px;
  width: 1440px;
  max-width: 100%;
  margin: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.site-main .single .gallery-item-content-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  position: relative;
}
.site-main .single .gallery-item-content-wrap .images {
  width: calc(100% - 560px);
  padding-left: 50px;
  padding-right: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.site-main .single .gallery-item-content-wrap .images img {
  max-height: calc(100vh - 100px);
  width: auto;
  margin: auto;
  cursor: pointer;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  max-width: 100%;
}
.site-main .single .gallery-item-content-wrap .images .owl-item {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.site-main .single .gallery-item-content-wrap .images .video-item {
  max-width: 100%;
}
.site-main .single .gallery-item-content-wrap .images .video-item video {
  max-width: 100%;
}
.site-main .single .gallery-item-content-wrap .images .image-item {
  position: relative;
  max-width: 100%;
}
.site-main .single .gallery-item-content-wrap .images .image-item:before {
  content: "";
  display: inline-block;
  position: absolute;
  right: 6.5px;
  top: 6.5px;
  background-image: url("../img/zoom.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 55px;
  height: 55px;
  pointer-events: none;
}
.site-main .single .gallery-item-content-wrap .images .owl-carousel {
  position: relative;
}
.site-main .single .gallery-item-content-wrap .images .owl-carousel .owl-stage {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-main .single .gallery-item-content-wrap .images .owl-carousel .owl-nav button {
  position: absolute;
  top: calc(50% - 60px);
  width: 38px;
  height: 79px;
  background-image: url("../img/switch.png");
  background-size: contain;
  font-size: 0;
}
.site-main .single .gallery-item-content-wrap .images .owl-carousel .owl-nav button.owl-next {
  right: -50px;
}
.site-main .single .gallery-item-content-wrap .images .owl-carousel .owl-nav button.owl-prev {
  left: -50px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.site-main .single .gallery-item-content-wrap .images .owl-carousel .owl-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 17px;
}
.site-main .single .gallery-item-content-wrap .images .owl-carousel .owl-dots .owl-dot {
  width: 20px;
  height: 20px;
  padding: 0;
  background-image: url(../../src/img/Tri.svg);
  border: none;
  background-size: 9px 9px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center 8.5px;
  -webkit-transition: none;
  transition: none;
}
.site-main .single .gallery-item-content-wrap .images .owl-carousel .owl-dots .owl-dot.active {
  background-image: url(../../src/img/Tri_choose.svg);
  background-size: contain;
  background-position: center;
}
.site-main .single .gallery-item-content-wrap .content-wrap {
  width: 460px;
}
.site-main .single .gallery-item-content-wrap .content-wrap .title {
  margin-top: 0;
  font-family: "Gill Sans Nova";
  font-weight: 500;
  font-size: 35.5px;
  color: #333333;
  letter-spacing: 4.8px;
  margin-bottom: 10px;
  line-height: 1.5;
}
.site-main .single .gallery-item-content-wrap .content-wrap .send-request {
  border-bottom: 0.5px solid #979797;
  border-top: 0.5px solid #979797;
  padding-top: 30px;
  padding-bottom: 30px;
}
.site-main .single .gallery-item-content-wrap .content-wrap .send-request .content {
  padding-top: 0;
  font-size: 18.5px;
  color: #4F4F4F;
  letter-spacing: 0.56px;
  text-align: justify;
  line-height: 25px;
  margin-bottom: 20px;
}
.site-main .single .gallery-item-content-wrap .content-wrap .send-request .content p {
  margin-top: 0;
}
.site-main .single .gallery-item-content-wrap .content-wrap .send-request button {
  background: rgba(153, 136, 95, 0.1);
  border: 0.75px solid #9a8a7a;
  border-radius: 6.5px;
  font-family: "Gill Sans Nova";
  font-size: 15px;
  color: #5a0c1a;
  letter-spacing: 1.5px;
  padding: 11px 20px 14px;
  cursor: pointer;
}
.site-main .single .gallery-item-content-wrap .content-wrap .send-request button span {
  color: #bf9734;
}
.site-main .single .gallery-item-content-wrap .content-wrap .content {
  padding-top: 20px;
  font-family: "Gill Sans Nova";
  font-weight: 400;
  font-size: 18.5px;
  color: #4f4f4f;
  letter-spacing: 0.56px;
  line-height: 1.3;
}
.site-main .single .gallery-item-content-wrap .content-wrap .content p {
  margin-top: 0;
  margin-bottom: 8px;
}
.site-main .single .gallery-item-content-wrap .content-wrap .share {
  font-family: "Gill Sans Nova";
  font-weight: 400;
  font-size: 18.5px;
  color: #4f4f4f;
  letter-spacing: 0.56px;
  line-height: 1.4;
  margin-top: 20px;
}
.site-main .single .gallery-item-content-wrap .content-wrap .share &gt; div:first-child {
  margin-bottom: 10px;
}
.site-main .single .gallery-item-content-wrap .content-wrap .share .addtoany_shortcode .a2a_kit &gt; a:first-child {
  padding-left: 0;
}
.site-main .single .gallery-item-content-wrap .content-wrap .share .addtoany_shortcode a:not(.addtoany_special_service) &gt; span {
  display: inline-block;
  opacity: 1;
  border-radius: 50%;
  padding: 4px;
}
.site-main .single .more-arts .title {
  margin-top: 70px;
  margin-bottom: 45px;
  font-family: "Gill Sans Nova";
  font-weight: 500;
  font-size: 20px;
  color: #565654;
  letter-spacing: 4px;
  line-height: 1.7;
}
.site-main .single .more-arts .more-arts-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.site-main .single .more-arts .more-arts-list a {
  display: block;
  width: calc(33% - 25px);
}
.site-main .single .more-arts .more-arts-list a img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 1199px) {
  .site-main .single {
    padding-left: 15px;
    padding-right: 15px;
  }
  .site-main .single .gallery-item-content-wrap .images {
    width: calc(100% - 400px);
  }
  .site-main .single .gallery-item-content-wrap .content-wrap {
    width: 360px;
  }
}
@media (max-width: 1023px) {
  .site-main .single .gallery-item-content-wrap .images {
    width: calc(100% - 285px);
    padding-left: 30px;
    padding-right: 30px;
  }
  .site-main .single .gallery-item-content-wrap .images .owl-carousel .owl-nav button {
    top: calc(50% - 26px);
    width: 20px;
    height: 41px;
  }
  .site-main .single .gallery-item-content-wrap .images .owl-carousel .owl-nav button.owl-prev {
    left: -30px;
  }
  .site-main .single .gallery-item-content-wrap .images .owl-carousel .owl-nav button.owl-next {
    right: -30px;
  }
  .site-main .single .gallery-item-content-wrap .content-wrap {
    width: 260px;
    text-align: center;
  }
  .site-main .single .gallery-item-content-wrap .content-wrap .title {
    font-size: 25px;
    letter-spacing: 3.38px;
  }
  .site-main .single .gallery-item-content-wrap .content-wrap .content {
    font-size: 14.67px;
    letter-spacing: 0.33px;
  }
}
@media (max-width: 767px) {
  .site-main .single .gallery-item-content-wrap {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 50px;
  }
  .site-main .single .gallery-item-content-wrap .images {
    width: 100%;
  }
  .site-main .single .gallery-item-content-wrap .content-wrap {
    width: 100%;
  }
  .site-main .single .gallery-item-content-wrap .content-wrap .title {
    padding-top: 20px;
  }
}

.hero-widget {
  position: relative;
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 50px;
}
.hero-widget .language {
  position: absolute;
  top: 18px;
  right: 38px;
  z-index: 2;
}
.hero-widget .language ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.hero-widget .language ul li {
  font-family: "Gill Sans Nova";
  font-weight: 500;
  font-size: 13.33px;
  letter-spacing: 1.33px;
}
.hero-widget .language ul li.current-lang a {
  color: #043356;
}
.hero-widget .language ul li a {
  color: rgba(255, 255, 255, 0.7);
}
.hero-widget .language ul li:last-child:after {
  content: "/";
  color: #BF9734;
  display: inline-block;
}
.hero-widget .mobile-br {
  display: none;
}
.hero-widget img {
  width: 100%;
  display: block;
}
.hero-widget .mobile-image {
  display: none;
}
.hero-widget .content-wrap {
  text-align: center;
  padding: 11.5px 60px 40px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.hero-widget .logo img {
  width: 60px;
  display: inline-block;
  margin-bottom: 11px;
}
.hero-widget .logo .logo-content {
  position: relative;
}
.hero-widget .logo .logo-content:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  -webkit-box-shadow: 0 0 15px 5px rgba(255, 255, 255, 0.8);
          box-shadow: 0 0 15px 5px rgba(255, 255, 255, 0.8);
  width: 240px;
  height: 0;
  margin: auto;
  border-radius: 100%;
}
.hero-widget .logo .logo-content:after {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 0;
  right: 0;
  -webkit-box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.8);
          box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.8);
  width: 277px;
  height: 0;
  margin: auto;
  border-radius: 100%;
  z-index: 1;
}
.hero-widget .logo .logo-title {
  position: relative;
  font-family: "Gill Sans Nova";
  font-weight: 500;
  font-size: 20px;
  color: #731925;
  letter-spacing: 5px;
  margin-bottom: 9px;
}
.hero-widget .logo .logo-subtitle {
  position: relative;
  font-family: Helvetica;
  color: #fff;
  font-size: 12px;
  letter-spacing: 9.76px;
  z-index: 2;
  left: 3px;
}
.hero-widget .hero-title {
  font-family: "Cormorant Garamond";
  font-size: 37.5px;
  color: #074370;
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 1.2;
  margin-top: 20px;
  margin-bottom: 35px;
  position: relative;
}
.hero-widget .hero-title span {
  position: relative;
}
.hero-widget .hero-title:before {
  content: "";
  position: absolute;
  top: 58%;
  left: 0;
  right: 0;
  -webkit-box-shadow: 0 0 100px 40px rgba(255, 255, 255, 0.8);
          box-shadow: 0 0 100px 40px rgba(255, 255, 255, 0.8);
  width: 520px;
  height: 0;
  margin: auto;
  border-radius: 100%;
}
html[lang=uk] .hero-widget .hero-title:before {
  -webkit-box-shadow: 0 0 100px 70px rgba(255, 255, 255, 0.6);
          box-shadow: 0 0 100px 70px rgba(255, 255, 255, 0.6);
  width: 420px;
}
.hero-widget .hero-subtitle {
  font-family: "Gill Sans Nova";
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  letter-spacing: 1.55px;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}
.hero-widget .hero-subtitle span {
  position: relative;
}
.hero-widget .hero-subtitle:before {
  content: "";
  position: absolute;
  top: 58%;
  left: 0;
  right: 0;
  -webkit-box-shadow: 0 0 19px 8px rgba(0, 0, 0, 0.8);
          box-shadow: 0 0 19px 8px rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 0;
  margin: auto;
  border-radius: 100%;
}
.hero-widget .hero-link {
  background: #D5AF5C;
  border: 0.75px solid #E2E2E2;
  border-radius: 6.5px;
  font-family: "Gill Sans Nova";
  font-weight: 500;
  font-size: 15px;
  color: #731925;
  letter-spacing: 1.5px;
  text-align: center;
  padding: 16px 15px 17px;
  min-width: 230px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
}
.hero-widget .hero-link:hover {
  border: solid 0.8px #e2e2e2;
  background-color: #752429;
  color: #d5af5c;
}
@media (max-width: 1400px) {
  .hero-widget {
    background-image: none !important;
    min-height: inherit;
  }
  .hero-widget .desktop-image {
    display: block;
  }
  .hero-widget .hero-title {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  .hero-widget .hero-title {
    font-size: 24.5px;
    margin-bottom: 15px;
    letter-spacing: 0;
  }
  .hero-widget .hero-subtitle {
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
  }
}
@media (max-width: 767px) {
  .hero-widget .desktop-image {
    display: none;
  }
  .hero-widget img.mobile-image {
    display: block;
  }
  .hero-widget .mobile-br {
    display: block;
  }
  .hero-widget .content-wrap {
    text-align: center;
    padding: 11.5px 15px 52.5px;
  }
  .hero-widget .hero-title {
    font-size: 23px;
    margin-bottom: 46px;
    color: #063b62;
  }
  .hero-widget .hero-title:before {
    -webkit-box-shadow: 0 0 100px 40px white;
            box-shadow: 0 0 100px 40px white;
  }
  .hero-widget .hero-subtitle {
    font-size: 13px;
    margin-bottom: 32px;
  }
  .hero-widget .language ul li a {
    color: #4f4f4f;
  }
}

.gallery-widget {
  padding: 0 38px;
}
.gallery-widget .gallery-widget-item {
  position: relative;
}
.gallery-widget .gallery-widget-item a {
  display: block;
  overflow: hidden;
}
.gallery-widget .gallery-widget-item a:hover img {
  -webkit-transform: scale(1.025);
          transform: scale(1.025);
}
.gallery-widget .gallery-widget-item a img {
  width: 100%;
  display: block;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.gallery-widget .content {
  background: rgba(215, 213, 205, 0.88);
  border-radius: 5px;
  text-align: center;
  padding: 7px 12px 13px;
  position: absolute;
  width: 300px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}
.gallery-widget .content .subtitle {
  font-family: "Gill Sans Nova";
  font-weight: 500;
  font-size: 16px;
  color: #8C6402;
  letter-spacing: 3.2px;
  text-align: center;
  line-height: 2;
}
.gallery-widget .content .title {
  font-family: "Cormorant Garamond";
  font-weight: 500;
  font-size: 37.5px;
  color: #074370;
  letter-spacing: 0.55px;
  text-align: center;
}
.gallery-widget .small-gallery-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 50px;
}
.gallery-widget .small-gallery-items .gallery-widget-item {
  width: calc(33.333% - 35px);
}
.gallery-widget .small-gallery-items .gallery-widget-item .content {
  position: absolute;
  bottom: 58px;
}
.gallery-widget .big-gallery-items .gallery-widget-item {
  margin-bottom: 50px;
}
.gallery-widget .big-gallery-items .gallery-widget-item .mobile-image {
  display: none;
}
.gallery-widget .big-gallery-items .gallery-widget-item:first-child .content {
  top: 32%;
}
.gallery-widget .big-gallery-items .gallery-widget-item:first-child .content .title {
  color: #731925;
}
.gallery-widget .big-gallery-items .gallery-widget-item:nth-child(2) .content {
  bottom: 10%;
}
@media (max-width: 1199px) {
  .gallery-widget {
    padding-left: 20px;
    padding-right: 20px;
  }
  .gallery-widget .small-gallery-items {
    margin-bottom: 20px;
  }
  .gallery-widget .small-gallery-items .gallery-widget-item {
    width: calc(33.333% - 15px);
  }
  .gallery-widget .big-gallery-items .gallery-widget-item {
    margin-bottom: 20px;
  }
}
@media (max-width: 1023px) and (min-width: 768px) {
  .gallery-widget .small-gallery-items .gallery-widget-item .content {
    width: 90%;
  }
  .gallery-widget .small-gallery-items .gallery-widget-item .content .title {
    font-size: 25px;
  }
}
@media (max-width: 767px) {
  .gallery-widget {
    padding-left: 0;
    padding-right: 0;
  }
  .gallery-widget .small-gallery-items {
    margin-bottom: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .gallery-widget .small-gallery-items .gallery-widget-item {
    width: 100%;
    margin-bottom: 50px;
  }
  .gallery-widget .big-gallery-items .gallery-widget-item {
    margin-bottom: 50px;
  }
  .gallery-widget .big-gallery-items .gallery-widget-item img:not(.mobile-image) {
    display: none;
  }
  .gallery-widget .big-gallery-items .gallery-widget-item .mobile-image {
    display: block;
  }
}

.gessograpy-intro-widget {
  padding: 120px 50px 60px;
  text-align: center;
}
.elementor .gessograpy-intro-widget img {
  max-width: 140px;
}
.gessograpy-intro-widget .subtitle {
  font-size: 16px;
  color: #BF9734;
  letter-spacing: 3.2px;
  text-align: center;
  line-height: 2;
  margin-top: 18px;
}
.gessograpy-intro-widget .title {
  font-family: "Cormorant Garamond";
  font-weight: 500;
  font-size: 34px;
  color: #074370;
  letter-spacing: 0.5px;
  text-align: center;
  margin-top: 0;
  margin-bottom: 36px;
}
.gessograpy-intro-widget .content {
  font-weight: 400;
  font-size: 16.5px;
  color: #4F4F4F;
  letter-spacing: 0.75px;
  text-align: center;
  line-height: 26px;
  width: 450px;
  max-width: 100%;
  margin: auto;
}
@media (max-width: 767px) {
  .gessograpy-intro-widget {
    padding-top: 50px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .gessograpy-intro-widget .subtitle {
    margin-top: 30px;
    font-size: 11px;
    letter-spacing: 2.13px;
  }
  .gessograpy-intro-widget .title {
    font-size: 25px;
    letter-spacing: 0.37px;
    margin-bottom: 24px;
  }
  .gessograpy-intro-widget .content {
    font-size: 14.67px;
    letter-spacing: 0.33px;
  }
}

.contact-widget {
  padding-top: 50px;
}
.contact-widget &gt; img {
  display: table;
  margin: 0 auto 90px;
  width: 60px;
}
.contact-widget .contact-widget-title {
  margin-bottom: 56px;
  font-family: "Cormorant Garamond";
  font-size: 34px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.5px;
  text-align: center;
  color: #6c6b6b;
  margin-bottom: 11.5px;
  color: #074370;
}
.contact-widget .contact-widget-subtitle {
  font-weight: 500;
  font-size: 20px;
  color: #909090;
  letter-spacing: 3.5px;
  text-align: center;
  line-height: 35px;
  margin-top: 0;
}
.contact-widget .list-items {
  padding-left: 55.5px;
  padding-right: 55.5px;
}
.contact-widget .list-items .contact-widget-item {
  padding: 96px 15px 30px;
  border-bottom: solid 1.5px #979797;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact-widget .list-items .contact-widget-item:last-child {
  border-bottom: none;
}
.contact-widget .list-items .contact-widget-item .title {
  width: 405px;
  max-width: 50%;
  font-size: 20px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 4px;
  color: #565654;
}
.contact-widget .list-items .contact-widget-item .content {
  margin-top: 2px;
  width: 453px;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 50%;
  font-size: 16.5px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.58;
  letter-spacing: 0.75px;
  color: #636363;
}
.contact-widget .list-items .contact-widget-item .content p {
  margin-bottom: 30px;
  margin-top: 0;
}
.contact-widget .list-items .contact-widget-item .content a {
  color: #074370;
}
.contact-widget .contact-widget-link {
  border-radius: 6.5px;
  border: solid 0.8px #9a8a7a;
  background-color: rgba(255, 253, 248, 0.1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1.5px;
  text-align: center;
  color: #565654;
  width: 213px;
  text-align: center;
  padding: 11px 10px 14px 10px;
  display: block;
  margin: 108px auto 0;
}
.contact-widget .contact-widget-link:hover {
  background-color: rgba(255, 197, 51, 0.18);
}
@media (max-width: 767px) {
  .contact-widget {
    padding-top: 50px;
    padding-bottom: 0;
  }
  .contact-widget &gt; img {
    margin-bottom: 22px;
  }
  .contact-widget .contact-widget-title {
    font-size: 25px;
    letter-spacing: 0.33px;
    text-align: center;
    margin-bottom: 10px;
    padding-left: 5px;
    padding-right: 5px;
  }
  .contact-widget .list-items {
    padding-left: 15px;
    padding-right: 15px;
  }
  .contact-widget .list-items .contact-widget-item {
    padding: 51.8px 0 25px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact-widget .list-items .contact-widget-item .title {
    max-width: 100%;
    font-size: 14.7px;
    font-weight: 500;
    line-height: 1.64;
    letter-spacing: 2.93px;
    color: #61615e;
    margin-bottom: 5px;
  }
  .contact-widget .list-items .contact-widget-item .content {
    max-width: 320px;
    padding: 0;
    font-size: 14.7px;
    line-height: 1.73;
    letter-spacing: 0.33px;
    color: #636363;
  }
  .contact-widget .list-items .contact-widget-item .content p {
    margin-bottom: 20px;
  }
  .contact-widget .contact-widget-link {
    margin-top: 45px;
    max-width: 200px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.93px;
    padding-top: 13px;
    padding-bottom: 14px;
  }
}

/*.about-the-authors-widget*/
.about-the-authors-widget {
  padding-top: 55px;
  padding-bottom: 90px;
}
.about-the-authors-widget img {
  width: 100%;
  display: block;
}
.about-the-authors-widget .mobile-image {
  display: none;
}
.about-the-authors-widget .about-the-authors-subtitle {
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 2.25;
  letter-spacing: 3.2px;
  text-align: center;
  color: #be9923;
}
.about-the-authors-widget .about-the-authors-title {
  font-family: "Cormorant Garamond";
  font-size: 34px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.5px;
  text-align: center;
  color: #074370;
  margin-top: 0;
  margin-bottom: 33.5px;
}
.about-the-authors-widget .content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 72px;
  width: 1410px;
  max-width: 100%;
  margin: auto;
}
.about-the-authors-widget .content .list_item {
  width: 50%;
  padding-left: 50px;
  padding-right: 50px;
}
.about-the-authors-widget .content .about-the-authors-title {
  margin-bottom: 29px;
}
.about-the-authors-widget .content .about-the-authors-content {
  font-size: 18.5px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.41;
  letter-spacing: 0.56px;
  color: #4f4f4f;
}
.about-the-authors-widget .content .about-the-authors-content p {
  margin-bottom: 13px;
}
@media (max-width: 1199px) {
  .about-the-authors-widget .about-the-authors-title {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .about-the-authors-widget {
    padding-top: 40px;
    padding-bottom: 45px;
  }
  .about-the-authors-widget .desktop-image {
    display: none;
  }
  .about-the-authors-widget .mobile-image {
    display: block;
  }
  .about-the-authors-widget .about-the-authors-subtitle {
    font-size: 10.7px;
    line-height: 2.25;
    letter-spacing: 2.13px;
  }
  .about-the-authors-widget .about-the-authors-title {
    font-size: 25px;
    letter-spacing: 0.37px;
    margin-bottom: 24px;
  }
  .about-the-authors-widget .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 47px;
  }
  .about-the-authors-widget .content .list_item {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .about-the-authors-widget .content .about-the-authors-title {
    margin-bottom: 16px;
  }
  .about-the-authors-widget .content .about-the-authors-content {
    font-size: 14.7px;
    line-height: 1.73;
    letter-spacing: 0.33px;
    color: #4f4f4f;
  }
  .about-the-authors-widget .content .list_item:first-child {
    margin-bottom: 56px;
  }
  .about-the-authors-widget br:not(.mobile-br) {
    display: none;
  }
}

.press-widget {
  padding-top: 67.5px;
  padding-bottom: 90px;
}
.press-widget img {
  width: 100%;
  display: block;
}
.press-widget .press-widget-title {
  font-family: "Gill Sans Nova";
  font-weight: 500;
  font-size: 50px;
  color: #731925;
  letter-spacing: 6.76px;
  text-align: center;
  margin-top: 0;
  margin-bottom: 2px;
}
.press-widget .press-widget-subtitle {
  font-family: "Gill Sans Nova";
  font-weight: 400;
  font-size: 20px;
  color: #4F4F4F;
  letter-spacing: 3.5px;
  text-align: center;
  line-height: 35px;
}
.press-widget .content {
  margin-top: 41.5px;
}
.press-widget .content .row {
  margin: 0;
  display: grid;
  grid-gap: 5px;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  grid-auto-rows: 50px;
}
.press-widget .content .press-item {
  padding-left: 0;
  padding-right: 0;
  margin-right: 15px;
  margin-left: 15px;
  margin-bottom: 15px;
}
.press-widget .content .press-item .press-item-inner {
  border: 0.5px solid #909090;
}
.press-widget .content .press-item .press-item-content-wrap {
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 35px;
}
.press-widget .content .press-item .press-item-content-wrap .press-item-content-inner {
  margin-top: -50px;
  background-color: #fff;
  padding: 18px 20px 0;
  position: relative;
  font-family: "Gill Sans Nova";
}
.press-widget .content .press-item .press-item-content-wrap .press-item-content-inner .press-item-title {
  font-weight: 500;
  font-size: 20px;
  color: #565654;
  letter-spacing: 2.5px;
  line-height: 1.7;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: block;
}
.press-widget .content .press-item .press-item-content-wrap .press-item-content-inner .press-item-content {
  font-weight: 400;
  font-size: 16.5px;
  color: #4f4f4f;
  letter-spacing: 0.75px;
  line-height: 1.4;
  margin-bottom: 26px;
}
.press-widget .content .press-item .press-item-content-wrap .press-item-content-inner .press-item-data-and-source {
  font-weight: 400;
  font-size: 16.5px;
  color: #4f4f4f;
  letter-spacing: 0.75px;
  line-height: 26px;
}
@media (max-width: 767px) {
  .press-widget {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  .press-widget .press-widget-title {
    font-size: 35.5px;
    letter-spacing: 4.8px;
    margin-bottom: 10px;
  }
  .press-widget .content {
    margin-top: 30px;
  }
  .press-widget .content .row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .press-widget .content .press-item {
    margin: 0 0 30px;
  }
  .press-widget .content .press-item .press-item-content-wrap {
    padding-left: 25px;
    padding-right: 25px;
  }
  .press-widget .content .press-item .press-item-content-wrap .press-item-content-inner .press-item-title {
    font-size: 15px;
  }
  .press-widget .content .press-item .press-item-content-wrap .press-item-content-inner .press-item-content {
    font-size: 15px;
  }
}
@media (max-width: 379px) {
  .press-widget {
    padding-top: 30px;
    padding-bottom: 20px;
  }
  .press-widget .press-widget-title {
    letter-spacing: 2.8px;
    margin-bottom: 5px;
  }
  .press-widget .press-widget-subtitle {
    letter-spacing: 1.5px;
    font-size: 17px;
  }
  .press-widget .content .press-item .press-item-content-wrap {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/*the-royal-legacy-widget*/
.the-royal-legacy-widget {
  padding-top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 1680px;
  max-width: 100%;
  padding-left: 25px;
  padding-right: 25px;
  padding-bottom: 25px;
}
.the-royal-legacy-widget .mobile {
  display: none;
}
.the-royal-legacy-widget img {
  width: 50%;
  height: 100%;
}
.the-royal-legacy-widget .content {
  width: 50%;
  padding: 120px 55px 15px 60px;
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
}
.the-royal-legacy-widget .the-royal-legacy-subtitle {
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 2.25;
  letter-spacing: 3.2px;
  text-align: center;
  color: #BF9734;
}
.the-royal-legacy-widget .the-royal-legacy-title {
  font-family: "Cormorant Garamond";
  font-size: 34px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.5px;
  text-align: center;
  color: #074370;
  margin-top: 0;
  margin-bottom: 32.5px;
}
.the-royal-legacy-widget .the-royal-legacy-content {
  font-size: 16.5px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.58;
  letter-spacing: 0.75px;
  color: #585858;
}
.the-royal-legacy-widget .the-royal-legacy-content p {
  margin-bottom: 13px;
}
@media (max-width: 1199px) {
  .the-royal-legacy-widget .the-royal-legacy-title {
    font-size: 30px;
  }
  .the-royal-legacy-widget .content {
    padding: 40px 30px 15px 30px;
  }
}
@media (max-width: 767px) {
  .the-royal-legacy-widget {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: #ffffff;
    padding-left: 0;
    padding-right: 0;
  }
  .the-royal-legacy-widget .desktop {
    display: none;
  }
  .the-royal-legacy-widget .mobile {
    display: block;
    width: 100%;
  }
  .the-royal-legacy-widget img {
    width: 100%;
  }
  .the-royal-legacy-widget .the-royal-legacy-subtitle {
    font-size: 10.7px;
    line-height: 2.25;
    letter-spacing: 2.13px;
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
    width: 100%;
  }
  .the-royal-legacy-widget .the-royal-legacy-title {
    font-size: 25px;
    letter-spacing: 0;
    margin-bottom: 25px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .the-royal-legacy-widget .content {
    width: 100%;
    padding: 10px 15px 24px;
    font-size: 14.7px;
    line-height: 1.73;
    letter-spacing: 0.33px;
  }
  .the-royal-legacy-widget .the-royal-legacy-content {
    font-size: 14.7px;
  }
  .the-royal-legacy-widget .the-royal-legacy-content p {
    margin-bottom: 25px;
  }
}

.antiqvitas-nova-hero {
  padding-top: 65px;
  position: relative;
}
.antiqvitas-nova-hero .antiqvitas-nova-hero-title {
  font-family: "Gill Sans Nova";
  font-weight: 500;
  font-size: 50px;
  color: #701521;
  letter-spacing: 6.76px;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}
.antiqvitas-nova-hero img {
  display: block;
}
.antiqvitas-nova-hero .mobile-image {
  display: none;
}
.antiqvitas-nova-hero .antiqvitas-nova-hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  font-family: "Gill Sans Nova";
  font-size: 20px;
  color: #C0C0C0;
  letter-spacing: 3.5px;
  text-align: center;
  line-height: 50px;
}
.antiqvitas-nova-hero .antiqvitas-nova-hero-content p {
  margin-top: 0;
  margin-bottom: 67px;
}
.antiqvitas-nova-hero .antiqvitas-nova-hero-content p:last-child {
  margin-bottom: 15px;
}
@media (max-width: 1550px) {
  .antiqvitas-nova-hero .antiqvitas-nova-hero-content {
    line-height: 43px;
  }
  .antiqvitas-nova-hero .antiqvitas-nova-hero-content p:last-child {
    margin-bottom: 8px;
  }
}
@media (max-width: 1199px) {
  .antiqvitas-nova-hero .antiqvitas-nova-hero-content {
    line-height: 35px;
  }
}
@media (max-width: 1024px) {
  .antiqvitas-nova-hero .antiqvitas-nova-hero-content {
    line-height: 28px;
    font-size: 18px;
  }
  .antiqvitas-nova-hero .antiqvitas-nova-hero-content p {
    margin-bottom: 56px;
  }
  .antiqvitas-nova-hero .antiqvitas-nova-hero-title {
    font-size: 35px;
    padding: 0 15px 5px;
    letter-spacing: 3px;
  }
}
@media (max-width: 991px) {
  .antiqvitas-nova-hero .antiqvitas-nova-hero-content {
    line-height: 21px;
    font-size: 15px;
  }
  .antiqvitas-nova-hero .antiqvitas-nova-hero-content p {
    margin-bottom: 45px;
  }
}
@media (max-width: 767px) {
  .antiqvitas-nova-hero img.desktop-image {
    display: none;
  }
  .antiqvitas-nova-hero img.mobile-image {
    display: block;
  }
  .antiqvitas-nova-hero .antiqvitas-nova-hero-content {
    line-height: 46px;
    font-size: 20px;
  }
  .antiqvitas-nova-hero .antiqvitas-nova-hero-content p {
    margin-bottom: 60px;
  }
}
@media (max-width: 410px) {
  .antiqvitas-nova-hero .antiqvitas-nova-hero-content {
    line-height: 40px;
    font-size: 19px;
  }
}
@media (max-width: 400px) {
  .antiqvitas-nova-hero .antiqvitas-nova-hero-content p {
    margin-bottom: 50px;
  }
}
@media (max-width: 360px) {
  .antiqvitas-nova-hero .antiqvitas-nova-hero-content {
    line-height: 38px;
  }
  .antiqvitas-nova-hero .antiqvitas-nova-hero-content p {
    margin-bottom: 43px;
  }
}
@media (max-width: 340px) {
  .antiqvitas-nova-hero .antiqvitas-nova-hero-content {
    line-height: 32px;
  }
}

.simple-text-content {
  padding: 90px 30px 50px;
  text-align: center;
}
.simple-text-content .simple-text-content-subtitle {
  font-family: "Gill Sans Nova";
  font-weight: 500;
  font-size: 16px;
  color: #BF9734;
  letter-spacing: 3.2px;
  line-height: 2;
}
.simple-text-content .simple-text-content-title {
  font-family: "Cormorant Garamond";
  font-weight: 500;
  font-size: 34px;
  color: #074370;
  letter-spacing: 0.5px;
  margin-top: 0;
  margin-bottom: 30px;
}
.simple-text-content .simple-text-content-content {
  font-weight: 400;
  font-size: 16.5px;
  color: #190D0D;
  letter-spacing: 0.75px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .simple-text-content br {
    display: none;
  }
  .simple-text-content .mobile-br {
    display: block;
  }
  .simple-text-content {
    padding-left: 15px;
    padding-right: 15px;
  }
  .simple-text-content .simple-text-content-subtitle {
    font-size: 10.67px;
    letter-spacing: 2.13px;
  }
  .simple-text-content .simple-text-content-title {
    font-size: 25px;
    letter-spacing: 0.37px;
    margin-bottom: 10px;
  }
  .simple-text-content .simple-text-content-content {
    font-size: 14.67px;
    letter-spacing: 0.33px;
    text-align: center;
  }
}

.text-slider-widget {
  padding: 35px 38px;
}
.text-slider-widget .list_item {
  width: 460px;
  max-width: 100%;
  text-align: center;
  margin: auto;
}
.text-slider-widget .list_item .text-slider-content {
  font-family: "Gill Sans Nova";
  font-weight: 400;
  font-size: 27.5px;
  color: #5c5b5a;
  letter-spacing: 1.5px;
  line-height: 1.4;
  margin-bottom: 35px;
}
.text-slider-widget .list_item .text-slider-author {
  font-family: "Gill Sans Nova";
  font-weight: 500;
  font-size: 16px;
  color: #BF9734;
  letter-spacing: 3.85px;
  margin-bottom: 8px;
}
.text-slider-widget .list_item .text-slider-subtitle {
  font-family: "Gill Sans Nova";
  font-weight: 500;
  font-size: 13px;
  color: #696969;
  letter-spacing: 1.45px;
  text-align: center;
  line-height: 1.8;
}
.text-slider-widget .owl-carousel {
  position: relative;
}
.text-slider-widget .owl-carousel .owl-stage {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.text-slider-widget .owl-carousel .owl-nav button {
  position: absolute;
  top: calc(50% - 60px);
  width: 38px;
  height: 79px;
  background-image: url("../img/switch.png");
  background-size: contain;
  background-repeat: no-repeat;
  font-size: 0;
}
.text-slider-widget .owl-carousel .owl-nav button.owl-next {
  right: 0;
}
.text-slider-widget .owl-carousel .owl-nav button.owl-prev {
  left: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.text-slider-widget .owl-carousel .owl-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 25px;
}
.text-slider-widget .owl-carousel .owl-dots .owl-dot {
  width: 20px;
  height: 20px;
  padding: 0;
  background-image: url(../../src/img/Tri.svg);
  border: none;
  background-size: 9px 9px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center 8.5px;
  -webkit-transition: none;
  transition: none;
  margin-right: 5px;
  margin-left: 5px;
}
.text-slider-widget .owl-carousel .owl-dots .owl-dot.active {
  background-image: url(../../src/img/Tri_choose.svg);
  background-size: contain;
  background-position: center;
}
@media (max-width: 767px) {
  .text-slider-widget {
    padding-left: 50px;
    padding-right: 50px;
  }
  .text-slider-widget .list_item .text-slider-content {
    font-size: 22.5px;
    letter-spacing: 0.5px;
  }
  .text-slider-widget .owl-carousel .owl-nav button {
    top: calc(50% - 60px);
    width: 25px;
    height: 52px;
  }
  .text-slider-widget .owl-carousel .owl-nav button.owl-next {
    right: -40px;
  }
  .text-slider-widget .owl-carousel .owl-nav button.owl-prev {
    left: -40px;
  }
}

.text-widget {
  background-color: #FFFAEF;
  padding: 74px 15px 63px;
  text-align: center;
}
.text-widget .content {
  width: 516px;
  max-width: 100%;
  margin: auto;
  font-family: "Gill Sans Nova";
  font-weight: 400;
  font-size: 18.5px;
  color: #3A3837;
  letter-spacing: 0.56px;
  line-height: 1.3;
}
.text-widget .content strong {
  font-family: "Gill Sans Nova";
  font-weight: 500;
  font-size: 16px;
  color: #701521;
  letter-spacing: 3.85px;
}
@media (max-width: 767px) {
  .text-widget .content {
    font-size: 16.5px;
  }
}

.image-widget img {
  width: 100%;
  display: block;
}
.image-widget img.mobile-image {
  display: none;
}
@media (max-width: 767px) {
  .image-widget img.mobile-image {
    display: block;
  }
  .image-widget img.desktop-image {
    display: none;
  }
}

.image-widget-with-sliding-on-mobile img {
  width: 100%;
  display: block;
}
.image-widget-with-sliding-on-mobile img.mobile-image {
  display: none;
}
@media (max-width: 767px) {
  .image-widget-with-sliding-on-mobile {
    overflow: auto;
  }
  .image-widget-with-sliding-on-mobile img.mobile-image {
    display: block;
    width: 200%;
    max-width: 200%;
  }
  .image-widget-with-sliding-on-mobile img.desktop-image {
    display: none;
  }
}

/* Image with button widget */
.image-with-button-widget {
  position: relative;
}
.image-with-button-widget img {
  width: 100%;
  display: block;
}
.image-with-button-widget .mobile-image {
  display: none;
}
.image-with-button-widget .content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 15px 15px 109px;
  text-align: center;
}
.image-with-button-widget .content .image-with-button-link {
  border-radius: 6.5px;
  border: solid 0.8px #ffb86c;
  background-color: rgba(83, 78, 66, 0.64);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1.5px;
  text-align: center;
  color: #eabb4c;
  min-width: 213.5px;
  text-align: center;
  padding: 11px 15px 14px 15px;
  display: inline-block;
}
.image-with-button-widget .content .image-with-button-link:hover {
  background-color: #d5af5c;
  color: #3d2e25;
}
.image-with-button-widget.gessography .content {
  padding-bottom: 50.5px;
}
.image-with-button-widget.gessography .content .content .image-with-button-link {
  background-color: rgba(42, 41, 38, 0.64);
}

@media (max-width: 1400px) {
  .image-with-button-widget {
    height: inherit;
  }
  .image-with-button-widget .desktop-image {
    display: block;
  }
}
@media (max-width: 767px) {
  .image-with-button-widget {
    height: inherit;
  }
  .image-with-button-widget .desktop-image {
    display: none;
  }
  .image-with-button-widget img.mobile-image {
    display: block;
  }
  .image-with-button-widget.an_art_and_yourself .content {
    padding-bottom: 29px;
  }
  .image-with-button-widget .content .image-with-button-link {
    min-width: 200px;
    font-size: 13px;
    letter-spacing: 1.93px;
    padding: 13px 10px 14px 10px;
  }
}
.for-creator-hero-widget {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.for-creator-hero-widget img {
  width: 100%;
  display: block;
}
.for-creator-hero-widget img.mobile-image {
  display: none;
}
.for-creator-hero-widget .content {
  opacity: 0.82;
  background: rgba(215, 213, 205, 0.7);
  border-radius: 5px;
  padding: 7px 30px 20px;
  position: absolute;
}
.for-creator-hero-widget .content .for-creator-hero-title {
  font-family: "Gill Sans Nova";
  font-weight: 500;
  font-size: 50px;
  color: #701521;
  letter-spacing: 6px;
  text-align: center;
  margin-bottom: 2px;
  margin-top: 0;
}
.for-creator-hero-widget .content .for-creator-hero-subtitle {
  font-family: "Gill Sans Nova";
  font-size: 20px;
  color: #000000;
  letter-spacing: 3.5px;
  text-align: center;
  line-height: 1.8;
  margin: 0;
}
@media (max-width: 767px) {
  .for-creator-hero-widget .content {
    opacity: 0.82;
    padding: 16px 15px 7px;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  .for-creator-hero-widget .content .for-creator-hero-title {
    font-size: 36px;
    letter-spacing: 4.8px;
  }
  .for-creator-hero-widget img.mobile-image {
    display: block;
  }
  .for-creator-hero-widget img.desktop-image {
    display: none;
  }
}

.for-creator-content-widget {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 130px 30px 128px;
  background-color: #FFFAEF;
}
.for-creator-content-widget .for-creator-content-content {
  font-family: "Gill Sans Nova";
  font-weight: 400;
  font-size: 16.5px;
  color: #4E4E4E;
  letter-spacing: 0.75px;
  text-align: center;
  line-height: 1.5;
  width: 435px;
  max-width: 100%;
  margin-bottom: 230px;
}
.for-creator-content-widget .for-creator-content-content a {
  color: #074370;
}
.for-creator-content-widget .button-wrap a {
  display: block;
  background: rgba(153, 136, 95, 0.1);
  border: 0.75px solid #9A8A7A;
  border-radius: 6.5px;
  padding: 11px 15px 14px;
  font-family: "Gill Sans Nova";
  font-weight: 500;
  font-size: 15px;
  color: #5A0C1A;
  letter-spacing: 1.5px;
}
@media (max-width: 767px) {
  .for-creator-content-widget {
    padding: 100px 15px 70px;
  }
  .for-creator-content-widget .for-creator-content-content {
    margin-bottom: 70px;
  }
}

/* Gessography hero widget */
.gessography-hero-widget {
  position: relative;
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
}
.gessography-hero-widget img {
  width: 100%;
  display: block;
}
.gessography-hero-widget .mobile-image {
  display: none;
}
.gessography-hero-widget .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 15px 15px 109px;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.gessography-hero-widget .content .gessography-hero-title {
  font-size: 55.5px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 24px;
  text-align: center;
  color: #ffffff;
  margin-top: 40px;
  margin-bottom: 0;
}

@media (max-width: 1400px) {
  .gessography-hero-widget {
    background-image: none !important;
    height: inherit;
  }
  .gessography-hero-widget .desktop-image {
    display: block;
  }
}
@media (max-width: 767px) {
  .gessography-hero-widget {
    background-image: none !important;
    height: inherit;
  }
  .gessography-hero-widget .desktop-image {
    display: none;
  }
  .gessography-hero-widget img.mobile-image {
    display: block;
  }
  .gessography-hero-widget .content .gessography-hero-title {
    font-size: 26.7px;
    letter-spacing: 11.53px;
    margin-top: -25px;
  }
}
/* Gessography widget */
.gessography-widget {
  background-color: #fffaef;
  padding: 164px 15px 211px;
  text-align: center;
}
.gessography-widget .content {
  margin: auto;
}
.gessography-widget .gessography-title {
  font-family: "Cormorant Garamond", Sans-serif;
  font-size: 34px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.5px;
  text-align: center;
  color: #991929;
  margin-top: 0;
  margin-bottom: 32.5px;
}
.gessography-widget .gessography-subtitle {
  font-size: 16.5px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.58;
  letter-spacing: 0.75px;
  text-align: center;
  color: #4e4e4e;
  margin-bottom: 40px;
}
.gessography-widget img {
  max-width: 100%;
  width: 347px;
  display: inline-block;
}
.gessography-widget .gessography-after-image {
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 2.25;
  letter-spacing: 2.95px;
  text-align: center;
  color: #3c341d;
  margin-bottom: 82px;
}

@media (max-width: 767px) {
  .gessography-widget {
    padding: 132px 15px 145px;
    position: relative;
  }
  .gessography-widget:before {
    content: "";
    position: absolute;
    top: 22px;
    left: calc(50% - 7px);
    background-image: url("assets/img/AETHER_narrow.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 14px;
    height: 97px;
  }
  .gessography-widget .gessography-title {
    font-size: 25px;
    letter-spacing: 0.37px;
    margin-bottom: 12px;
  }
  .gessography-widget .gessography-subtitle {
    font-size: 14.7px;
    line-height: 1.18;
    letter-spacing: 0.33px;
    margin-bottom: 26px;
  }
  .gessography-widget img {
    width: 237px;
  }
  .gessography-widget .gessography-after-image {
    font-size: 13.3px;
    line-height: 1.8;
    letter-spacing: 1.67px;
    margin-bottom: 45px;
  }
}
/* Heritage Meets Innovation Widget */
.heritage-meets-innovation-widget {
  position: relative;
  height: calc(100vh - 46px);
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
}
.heritage-meets-innovation-widget img {
  width: 100%;
  display: block;
}
.heritage-meets-innovation-widget .desktop-image,
.heritage-meets-innovation-widget .mobile-image {
  display: none;
}
.heritage-meets-innovation-widget .content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 50%;
  padding: 15px 15px 15px 78.5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.heritage-meets-innovation-widget .content .heritage-meets-innovation-title {
  font-size: 20px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: 4px;
  color: #bf9734;
  margin-top: 425px;
  margin-bottom: 13px;
}
.heritage-meets-innovation-widget .content .heritage-meets-innovation-subtitle {
  font-size: 16.5px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.58;
  letter-spacing: 0.75px;
  color: #bdbdbd;
}

@media (max-width: 1400px) {
  .heritage-meets-innovation-widget {
    background-image: none !important;
    height: inherit;
  }
  .heritage-meets-innovation-widget .desktop-image {
    display: block;
  }
}
@media (max-width: 1199px) {
  .heritage-meets-innovation-widget .content .heritage-meets-innovation-title {
    letter-spacing: 3px;
  }
}
@media (max-width: 767px) {
  .heritage-meets-innovation-widget {
    background-image: none !important;
    height: inherit;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .heritage-meets-innovation-widget br:not(.mobile-br) {
    display: none;
  }
  .heritage-meets-innovation-widget .desktop-image {
    display: none;
  }
  .heritage-meets-innovation-widget img.mobile-image {
    display: block;
  }
  .heritage-meets-innovation-widget .content {
    position: relative;
    width: auto;
    padding: 91px 15px 47.3px;
    text-align: center;
  }
  .heritage-meets-innovation-widget .content .heritage-meets-innovation-title {
    font-family: "Cormorant Garamond", Sans-serif;
    margin-top: 0;
    font-size: 25px;
    line-height: normal;
    letter-spacing: 0.37px;
    color: #701521;
    margin-bottom: 8px;
  }
  .heritage-meets-innovation-widget .content .heritage-meets-innovation-subtitle {
    font-size: 14.7px;
    line-height: 1.73;
    letter-spacing: 0.33px;
    text-align: center;
    color: #393939;
  }
}
/* Simple Widget */
.simple-text-widget {
  padding-top: 163px;
  padding-bottom: 75.5px;
}
.simple-text-widget.why_aether {
  padding-top: 167px;
  padding-bottom: 52.5px;
}
.simple-text-widget.gessography {
  padding-top: 160px;
}
.simple-text-widget.gessography .content .simple-text-subtitle {
  font-size: 16.5px;
  line-height: 1.58;
  letter-spacing: 0.75px;
}
.simple-text-widget .content {
  max-width: 100%;
  width: 750px;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
}
.simple-text-widget .content .simple-text-title {
  font-family: "Cormorant Garamond", Sans-serif;
  font-size: 34px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.5px;
  text-align: center;
  color: #701521;
  margin-top: 0;
  margin-bottom: 20px;
}
.simple-text-widget .content .simple-text-subtitle {
  font-size: 18.5px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.41;
  letter-spacing: 0.56px;
  text-align: center;
  color: #393939;
}

@media (max-width: 767px) {
  .simple-text-widget {
    padding-top: 91px;
    padding-bottom: 47px;
  }
  .simple-text-widget br {
    display: none;
  }
  .simple-text-widget .mobile-br {
    display: block;
  }
  .simple-text-widget.why_aether {
    padding-top: 92px;
    padding-bottom: 38px;
  }
  .simple-text-widget.gessography {
    padding-top: 92px;
    padding-bottom: 48px;
  }
  .simple-text-widget.gessography .content .simple-text-subtitle {
    font-size: 14.7px;
    line-height: 1.73;
    letter-spacing: 0.33px;
  }
  .simple-text-widget .content .simple-text-title {
    margin-bottom: 9px;
    font-size: 25px;
    letter-spacing: 0.37px;
  }
  .simple-text-widget .content .simple-text-subtitle {
    font-size: 14.7px;
    letter-spacing: 0.33;
    line-height: 1.71;
  }
}
@media (max-width: 400px) {
  .simple-text-widget {
    padding-top: 83px;
    padding-bottom: 43px;
  }
  .simple-text-widget .content .simple-text-title {
    margin-bottom: 8px;
    font-size: 22.6px;
    letter-spacing: 0.33px;
  }
  .simple-text-widget .content .simple-text-subtitle {
    font-size: 13.3px;
    letter-spacing: 0.33;
    line-height: 1.73;
  }
  .simple-text-widget.gessography .content .simple-text-subtitle {
    font-size: 14px;
  }
}
.gallery-items-widget-wrap {
  padding-left: 60px;
  padding-right: 60px;
  padding-bottom: 100px;
}
.gallery-items-widget-wrap .image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: scroll;
  display: none;
  z-index: 101;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 30px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.gallery-items-widget-wrap .image-modal .image-modal-content {
  width: 1440px;
  max-width: 100%;
  margin: auto;
  -webkit-transform-origin: top left;
          transform-origin: top left;
}
.gallery-items-widget-wrap .image-modal .image-modal-content img {
  width: 100%;
  cursor: pointer;
}
.gallery-items-widget-wrap .gallery-items-widget {
  width: 1440px;
  max-width: 100%;
  margin: auto;
  overflow: auto;
}
.gallery-items-widget-wrap .gallery-items-widget .gallery-item {
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
  display: block;
  line-height: 0;
  position: relative;
  margin-bottom: 50px;
  width: 30%;
  -webkit-transition: 0.3s ease-in-out opacity;
  transition: 0.3s ease-in-out opacity;
}
.gallery-items-widget-wrap .gallery-items-widget .gallery-item.full-width {
  width: 100%;
  padding-top: 10px;
}
.gallery-items-widget-wrap .gallery-items-widget .gallery-item.full-width .gallery-item-contents {
  display: none;
}
.gallery-items-widget-wrap .gallery-items-widget .gallery-item.full-width .gallery-item-content-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-content-wrap {
  display: none;
  height: calc(100vh - 100px);
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  position: relative;
}
.gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-content-wrap .close {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: -20px;
  border-radius: 6.5px;
  display: block;
  height: auto;
  font-size: 18.5px;
  color: #4F4F4F;
  letter-spacing: 0.56px;
  line-height: 23.5px;
}
.gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-content-wrap .close:before {
  content: "+";
  display: inline-block;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-right: 2px;
  position: relative;
  top: 5.5px;
  font-size: 25px;
}
.gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-content-wrap .images {
  width: calc(100% - 560px);
  padding-left: 50px;
  padding-right: 50px;
}
.gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-content-wrap .images img {
  max-height: calc(100vh - 150px);
  width: auto;
  margin: auto;
  cursor: pointer;
  -webkit-transform-origin: top left;
          transform-origin: top left;
}
.gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-content-wrap .images .owl-item {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-content-wrap .images .image-item {
  position: relative;
  max-width: 100%;
}
.gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-content-wrap .images .image-item:before {
  content: "";
  display: inline-block;
  position: absolute;
  right: 6.5px;
  top: 6.5px;
  background-image: url("../img/zoom.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 55px;
  height: 55px;
  pointer-events: none;
}
.gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-content-wrap .images .owl-carousel {
  position: relative;
}
.gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-content-wrap .images .owl-carousel .owl-stage {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-content-wrap .images .owl-carousel .owl-nav button {
  position: absolute;
  top: calc(50% - 60px);
  width: 38px;
  height: 79px;
  background-image: url("../img/switch.png");
  background-size: contain;
  font-size: 0;
}
.gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-content-wrap .images .owl-carousel .owl-nav button.owl-next {
  right: -50px;
}
.gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-content-wrap .images .owl-carousel .owl-nav button.owl-prev {
  left: -50px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-content-wrap .images .owl-carousel .owl-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 17px;
}
.gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-content-wrap .images .owl-carousel .owl-dots .owl-dot {
  width: 20px;
  height: 20px;
  padding: 0;
  background-image: url(../../src/img/Tri.svg);
  border: none;
  background-size: 9px 9px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center 8.5px;
  -webkit-transition: none;
  transition: none;
}
.gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-content-wrap .images .owl-carousel .owl-dots .owl-dot.active {
  background-image: url(../../src/img/Tri_choose.svg);
  background-size: contain;
  background-position: center;
}
.gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-content-wrap .content-wrap {
  width: 460px;
}
.gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-content-wrap .content-wrap .title {
  margin-top: 0;
  font-family: "Gill Sans Nova";
  font-weight: 500;
  font-size: 35.5px;
  color: #333333;
  letter-spacing: 4.8px;
  margin-bottom: 10px;
  line-height: 1.5;
}
.gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-content-wrap .content-wrap .send-request {
  border-bottom: 0.5px solid #979797;
  border-top: 0.5px solid #979797;
  padding-top: 10px;
  padding-bottom: 25px;
}
.gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-content-wrap .content-wrap .send-request .content {
  padding-top: 0;
  font-size: 18.5px;
  color: #4F4F4F;
  letter-spacing: 0.56px;
  text-align: justify;
  line-height: 25px;
  margin-bottom: 0;
}
.gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-content-wrap .content-wrap .send-request .content br {
  display: none;
}
.gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-content-wrap .content-wrap .send-request .content p {
  margin-top: 0;
}
.gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-content-wrap .content-wrap .send-request button {
  background: rgba(153, 136, 95, 0.1);
  border: 0.75px solid #9a8a7a;
  border-radius: 6.5px;
  font-family: "Gill Sans Nova";
  font-size: 15px;
  color: #5a0c1a;
  letter-spacing: 1.5px;
  padding: 11px 20px 14px;
  margin-top: 15px;
  cursor: pointer;
}
.gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-content-wrap .content-wrap .send-request button span {
  color: #bf9734;
}
.gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-content-wrap .content-wrap .content {
  padding-top: 20px;
  font-family: "Gill Sans Nova";
  font-weight: 400;
  font-size: 18.5px;
  color: #4f4f4f;
  letter-spacing: 0.56px;
  line-height: 1.3;
}
.gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-content-wrap .content-wrap .content p {
  margin-top: 0;
  margin-bottom: 8px;
}
.gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-content-wrap .content-wrap .share {
  font-family: "Gill Sans Nova";
  font-weight: 400;
  font-size: 18.5px;
  color: #4f4f4f;
  letter-spacing: 0.56px;
  line-height: 1.4;
  margin-top: 20px;
}
.gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-content-wrap .content-wrap .share &gt; div:first-child {
  margin-bottom: 10px;
}
.gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-content-wrap .content-wrap .share .addtoany_shortcode .a2a_kit &gt; a:first-child {
  padding-left: 0;
}
.gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-contents {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  visibility: hidden;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  cursor: pointer;
}
.gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-contents img {
  max-width: 100%;
  border-radius: 16px;
}
.gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-contents figcaption {
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(100px) scale(0.5);
          transform: translateY(100px) scale(0.5);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  width: 100%;
  font-family: "Gill Sans Nova";
  font-size: 35px;
  color: #333333;
  letter-spacing: 5px;
  text-align: center;
  line-height: 1.6;
  padding: 9px 0 12px;
  background: rgba(216, 216, 216, 0.47);
}
.gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-contents:hover figcaption {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}
@media (max-width: 1199px) {
  .gallery-items-widget-wrap {
    padding-left: 15px;
    padding-right: 15px;
  }
  .gallery-items-widget-wrap .gallery-items-widget .gallery-item {
    width: calc(50% - 20px);
  }
  .gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-content-wrap .images {
    width: calc(100% - 400px);
  }
  .gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-content-wrap .content-wrap {
    width: 360px;
  }
}
@media (max-width: 1023px) {
  .gallery-items-widget-wrap .gallery-items-widget .gallery-item {
    width: calc(50% - 20px);
  }
  .gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-content-wrap .images {
    width: calc(100% - 285px);
    padding-left: 30px;
    padding-right: 30px;
  }
  .gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-content-wrap .images .owl-carousel .owl-nav button {
    top: calc(50% - 26px);
    width: 20px;
    height: 41px;
  }
  .gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-content-wrap .images .owl-carousel .owl-nav button.owl-prev {
    left: -30px;
  }
  .gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-content-wrap .images .owl-carousel .owl-nav button.owl-next {
    right: -30px;
  }
  .gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-content-wrap .content-wrap {
    width: 260px;
    text-align: center;
  }
  .gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-content-wrap .content-wrap .title {
    font-size: 25px;
    letter-spacing: 3.38px;
  }
  .gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-content-wrap .content-wrap .content {
    font-size: 14.67px;
    letter-spacing: 0.33px;
  }
}
@media (max-width: 767px) {
  .gallery-items-widget-wrap {
    padding-left: 0;
    padding-right: 0;
  }
  .gallery-items-widget-wrap .gallery-items-widget {
    width: calc(100% - 20px) !important;
  }
  .gallery-items-widget-wrap .gallery-items-widget .gallery-item {
    width: calc(50% - 10px);
    margin-bottom: 5px;
  }
  .gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-content-wrap {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 50px;
  }
  .gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-content-wrap .close {
    top: 0;
  }
  .gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-content-wrap .images {
    width: 100%;
  }
  .gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-content-wrap .content-wrap {
    width: 100%;
  }
  .gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-content-wrap .content-wrap .send-request .content {
    font-size: 14.7px;
    text-align: center;
  }
  .gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-content-wrap .content-wrap .title {
    padding-top: 20px;
  }
  .gallery-items-widget-wrap .gallery-items-widget .gallery-item .gallery-item-contents figcaption {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    font-size: 13px;
    letter-spacing: 0;
    padding: 5px 0 7px;
  }
  .gallery-items-widget-wrap .image-modal {
    padding: 10px;
  }
}

.gessography-text-image {
  max-width: 1440px;
  margin: auto;
}
.gessography-text-image .content {
  padding: 70px 120px 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.gessography-text-image .content img {
  max-width: 100%;
  display: block;
}
.gessography-text-image .content.image-on-left {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.gessography-text-image .content.image-on-left .content-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.gessography-text-image .content .image-wrap {
  width: calc(50% - 25px);
}
.gessography-text-image .content .content-wrap {
  width: calc(50% - 25px);
}
.gessography-text-image .content .content-wrap .gessography-title {
  font-family: "Gill Sans Nova";
  font-weight: 500;
  font-size: 20px;
  color: #565654;
  letter-spacing: 4px;
  line-height: 36px;
  margin-bottom: 24px;
}
.gessography-text-image .content .content-wrap .content-wrap-inner {
  max-width: 478px;
  margin-bottom: 30px;
}
.gessography-text-image .content .content-wrap .gessography-content {
  font-family: "Gill Sans Nova";
  font-weight: 400;
  font-size: 16.5px;
  color: #4F4F4F;
  letter-spacing: 0.75px;
  line-height: 26px;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .gessography-text-image .content {
    padding: 40px 20px;
  }
  .gessography-text-image .content .image-wrap,
.gessography-text-image .content .content-wrap {
    width: calc(50% - 20px);
  }
}
@media (max-width: 767px) {
  .gessography-text-image .content {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    padding: 90px 0 40px;
  }
  .gessography-text-image .content .image-wrap,
.gessography-text-image .content .content-wrap {
    width: 100%;
  }
  .gessography-text-image .content .content-wrap {
    margin-bottom: 40px;
  }
  .gessography-text-image .content .content-wrap .content-wrap-inner {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .gessography-text-image .content .content-wrap .content-wrap-inner .gessography-title {
    font-size: 14.67px;
    color: #565654;
    letter-spacing: 2.93px;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .gessography-text-image .content .content-wrap .content-wrap-inner .gessography-content {
    font-size: 14.67px;
    color: #4F4F4F;
    letter-spacing: 0.33px;
    line-height: 25.33px;
  }
  .gessography-text-image .content .content-wrap .content-wrap-inner .gessography-content p {
    margin-top: 0;
    margin-bottom: 10px;
  }
}

.gessography-text-image-simple {
  max-width: 1440px;
  margin: auto;
}
.gessography-text-image-simple .content {
  padding: 50px 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.gessography-text-image-simple .content img {
  max-width: 100%;
}
.gessography-text-image-simple .content.image-on-left {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.gessography-text-image-simple .content.image-on-left .content-wrap {
  padding-left: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.gessography-text-image-simple .content.image-on-right .content-wrap {
  padding-right: 60px;
}
.gessography-text-image-simple .content .image-wrap {
  width: calc(50% - 20px);
}
.gessography-text-image-simple .content .content-wrap {
  width: 50%;
}
.gessography-text-image-simple .content .content-wrap .gessography-title {
  font-family: "Gill Sans Nova";
  font-weight: 500;
  font-size: 20px;
  color: #565654;
  letter-spacing: 4px;
  line-height: 36px;
  margin-bottom: 24px;
}
.gessography-text-image-simple .content .content-wrap .content-wrap-inner {
  width: 478px;
  max-width: 100%;
}
.gessography-text-image-simple .content .content-wrap .gessography-content {
  font-family: "Gill Sans Nova";
  font-weight: 400;
  font-size: 16.5px;
  color: #4F4F4F;
  letter-spacing: 0.75px;
  line-height: 26px;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .gessography-text-image-simple .content {
    padding: 40px 20px;
  }
  .gessography-text-image-simple .content .image-wrap,
.gessography-text-image-simple .content .content-wrap {
    width: calc(50% - 20px);
  }
  .gessography-text-image-simple .content .content.image-on-left .content-wrap {
    padding-left: 20px;
  }
  .gessography-text-image-simple .content .content.image-on-right .content-wrap {
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .gessography-text-image-simple .content {
    padding-left: 15px;
    padding-right: 15px;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .gessography-text-image-simple .content .image-wrap,
.gessography-text-image-simple .content .content-wrap {
    width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .gessography-text-image-simple .content .content-wrap .content-wrap-inner {
    width: 100%;
  }
  .gessography-text-image-simple .content .content-wrap .gessography-title {
    font-size: 14.67px;
    color: #565654;
    letter-spacing: 2.93px;
    line-height: 24px;
    margin-bottom: 15px;
  }
  .gessography-text-image-simple .content .content-wrap .gessography-content {
    font-size: 14.67px;
    color: #4F4F4F;
    letter-spacing: 0.33px;
    line-height: 25.33px;
  }
}

.image-widget-repeater {
  max-width: 1440px;
  margin: auto;
}
.image-widget-repeater .content {
  padding: 0px 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.image-widget-repeater .content .video-item {
  max-width: 100%;
}
.image-widget-repeater .content .image-item {
  padding-left: 25px;
  padding-right: 25px;
}
.image-widget-repeater .content .image-item:first-child {
  padding-left: 0;
}
.image-widget-repeater .content .image-item:last-child {
  padding-right: 0;
}
@media (max-width: 1199px) {
  .image-widget-repeater .content {
    padding: 0 20px;
  }
  .image-widget-repeater .content .image-item {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .image-widget-repeater .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 0;
    padding-right: 0;
  }
  .image-widget-repeater .content .image-item {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 40px;
  }
  .image-widget-repeater .content .image-item:last-child {
    margin-bottom: 0;
  }
}

.gessograpy-history-intro-widget {
  position: relative;
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.gessograpy-history-intro-widget img {
  width: 100%;
  display: block;
}
.gessograpy-history-intro-widget .mobile-image {
  display: none;
}
.gessograpy-history-intro-widget .content-wrap {
  text-align: center;
  position: absolute;
  margin-top: -15%;
}
.gessograpy-history-intro-widget .content-wrap .title {
  font-family: "Gill Sans Nova";
  font-weight: 500;
  font-size: 50px;
  color: #FFFFFF;
  letter-spacing: 6.76px;
  text-align: center;
}
.gessograpy-history-intro-widget .content-wrap .content {
  font-family: "Gill Sans Nova";
  font-size: 20px;
  color: #2F2F2F;
  letter-spacing: 3.5px;
  text-align: center;
  line-height: 35px;
  background-image: -webkit-gradient(linear, right top, left top, color-stop(69%, rgba(216, 216, 216, 0.48)), color-stop(100%, rgba(227, 227, 227, 0)), to(rgba(238, 238, 238, 0.4)));
  background-image: linear-gradient(270deg, rgba(216, 216, 216, 0.48) 69%, rgba(227, 227, 227, 0) 100%, rgba(238, 238, 238, 0.4) 100%);
  padding: 15px 53px 15px 72px;
}
@media (max-width: 1400px) {
  .gessograpy-history-intro-widget {
    background-image: none !important;
    height: inherit;
  }
  .gessograpy-history-intro-widget .desktop-image {
    display: block;
  }
}
@media (max-width: 767px) {
  .gessograpy-history-intro-widget .desktop-image {
    display: none;
  }
  .gessograpy-history-intro-widget img.mobile-image {
    display: block;
  }
  .gessograpy-history-intro-widget br {
    display: none;
  }
  .gessograpy-history-intro-widget .mobile-br {
    display: block;
  }
  .gessograpy-history-intro-widget .content-wrap {
    margin-top: 0;
    top: 0;
    bottom: 0;
    width: 100%;
  }
  .gessograpy-history-intro-widget .content-wrap .title {
    font-size: 35.5px;
    color: #701521;
    letter-spacing: 4.8px;
    text-align: center;
  }
  .gessograpy-history-intro-widget .content-wrap .content {
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 95px;
    background-image: none;
    font-size: 20px;
    color: #FFFFFF;
    letter-spacing: 2.5px;
    text-align: center;
    line-height: 40px;
  }
}

/*.sub-menu*/
.elementor-widget.elementor-widget-sub-menu {
  margin: 0 !important;
  z-index: 3;
}

.sub-menu {
  position: fixed;
  top: 53px;
  right: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 9px 55px 9px 15px;
}
.sub-menu.top-sticky {
  background-color: rgba(21, 21, 21, 0.55);
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
}
.sub-menu.top-sticky .menu-wrap .elementor-nav-menu a {
  color: #fff;
}
.sub-menu.top-sticky .menu-wrap .elementor-nav-menu .current-menu-item a {
  border-color: #fff;
  color: #fff;
}
.admin-bar .sub-menu {
  top: 85px;
}
.sub-menu .sub-menu-mobile-title {
  display: none;
}
.sub-menu.white .menu-wrap .elementor-nav-menu a {
  color: #fff;
}
.sub-menu.white .menu-wrap .elementor-nav-menu .current-menu-item a {
  border-color: #fff;
  color: #fff;
}
.sub-menu .menu-wrap .elementor-nav-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1.5px;
  text-align: center;
  color: #0c446e;
  margin: 0;
  list-style: none;
}
.sub-menu .menu-wrap .elementor-nav-menu a {
  color: #909090;
  text-transform: uppercase;
  padding: 0 0 3.5px;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sub-menu .menu-wrap .elementor-nav-menu li:not(:last-child) {
  margin-right: 55px;
  position: relative;
}
.sub-menu .menu-wrap .elementor-nav-menu .current-menu-item a {
  border-bottom: solid 1px #B99A4D;
  color: #731925;
}
.sub-menu .menu-wrap .elementor-nav-menu li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: calc(50% - 2.5px);
  right: -27.5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  border: solid 0.5px #c19014;
  display: block;
}
@media (max-width: 1199px) {
  .sub-menu {
    top: 54px;
  }
}
@media (max-width: 767px) {
  .admin-bar .sub-menu {
    top: 98px;
  }
  .sub-menu {
    position: fixed;
    top: 53px;
    left: 0;
    right: 0;
    display: block;
    background: none;
    padding: 0;
  }
  .sub-menu.top-sticky .menu-wrap .elementor-nav-menu a {
    color: #555555;
  }
  .sub-menu .sub-menu-mobile-title {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 15px 15px 15px;
    font-size: 13.3px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 3.03px;
    text-align: center;
    color: #fff;
    background-color: rgba(21, 21, 21, 0.3);
    -webkit-backdrop-filter: blur(1px);
            backdrop-filter: blur(1px);
    text-transform: uppercase;
  }
  .sub-menu .sub-menu-mobile-title:before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    margin-right: 14px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    position: relative;
    top: 1px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  .sub-menu.menu-open .sub-menu-mobile-title {
    border-bottom: 0.5px solid #979797;
  }
  .sub-menu.menu-open .sub-menu-mobile-title:before {
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
  }
  .sub-menu .menu-wrap {
    position: relative;
    top: 0;
    right: 0;
    display: none;
  }
  .sub-menu .menu-wrap .elementor-nav-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: left;
    padding-left: 15px;
    padding-right: 15px;
    background-color: #fffdf8;
  }
  .sub-menu .menu-wrap .elementor-nav-menu li {
    padding: 15px 0 18px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .sub-menu .menu-wrap .elementor-nav-menu li:not(:last-child) {
    margin-right: 0;
    border-bottom: solid 0.5px #979797;
  }
  .sub-menu .menu-wrap .elementor-nav-menu li:not(:last-child)::after {
    display: none;
  }
  .sub-menu .menu-wrap .elementor-nav-menu li:before {
    content: "";
    display: block;
    width: 3.7px;
    height: 3.7px;
    border-radius: 100%;
    border: solid 0.7px #b99e54;
    margin-right: 10px;
  }
  .sub-menu .menu-wrap .elementor-nav-menu a {
    padding-bottom: 0;
    color: #555555 !important;
  }
  .sub-menu .menu-wrap .elementor-nav-menu .current-menu-item a {
    color: #731925 !important;
    border-bottom: none;
  }
}

.gallery-intro {
  padding: 64px 15px 45px;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.gallery-intro .title {
  font-family: "Gill Sans Nova";
  font-size: 50px;
  color: #701521;
  letter-spacing: 6px;
  margin-bottom: 10px;
}
.gallery-intro .subtitle {
  font-family: "Gill Sans Nova";
  font-size: 20px;
  color: #909090;
  letter-spacing: 3.5px;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .gallery-intro {
    padding: 50px 15px 30px;
  }
  .gallery-intro .title {
    font-size: 39px;
    letter-spacing: 5px;
    margin-bottom: 20px;
  }
  .gallery-intro br:not(.mobile-br) {
    display: none;
  }
  .gallery-intro .subtitle {
    font-size: 18px;
  }
}

.modal-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 101;
  display: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px;
}
.modal-wrap.visible {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.modal-wrap .modal-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
}
.modal-wrap .modal-content {
  position: relative;
  background-color: #fff;
  padding: 30px;
  width: 960px;
  max-width: 100%;
  max-height: 95vh;
  overflow: auto;
}
.modal-wrap .modal-content .modal-title {
  font-family: "Gill Sans Nova";
  font-size: 20px;
  color: #0C446E;
  letter-spacing: 4px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.modal-wrap .modal-content .modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-family: "Gill Sans Nova";
  font-weight: 400;
  font-size: 17px;
  color: #4E4E4E;
  letter-spacing: 0.3px;
  line-height: 26px;
  cursor: pointer;
}
.modal-wrap .modal-content .modal-body {
  max-height: 95vh;
  overflow: auto;
}
.modal-wrap .modal-content .modal-body .wpcf7 br {
  display: none;
}
.modal-wrap .modal-content .modal-body .wpcf7 p {
  margin: 0;
}
.modal-wrap .modal-content .modal-body .wpcf7 form .wpcf7-response-output {
  margin: 0;
}
.modal-wrap .modal-content .modal-body .wpcf7 input[type=submit] {
  font-family: "Gill Sans Nova";
  font-weight: 500;
  font-size: 15px;
  color: #5A0C1A;
  letter-spacing: 1.5px;
  text-align: center;
  display: table;
  margin: auto;
  padding: 11px 20px 14px;
  background: rgba(153, 136, 95, 0.1);
  border: 0.75px solid #9A8A7A;
  border-radius: 6.5px;
  margin-top: 30px;
  cursor: pointer;
}
.modal-wrap .modal-content .modal-body .wpcf7 label {
  display: block;
  position: relative;
  margin-bottom: 13px;
}
.modal-wrap .modal-content .modal-body .wpcf7 label input,
.modal-wrap .modal-content .modal-body .wpcf7 label textarea {
  width: 100%;
  background: #FFFAEF;
  border: 0.75px solid #9A8A7A;
  border-radius: 6.5px;
  font-family: "Gill Sans Nova";
  font-size: 17px;
  color: #4E4E4E;
  letter-spacing: 0.3px;
  line-height: 26px;
  padding: 20px 15px 4px;
}
.modal-wrap .modal-content .modal-body .wpcf7 label input {
  height: 45px;
}
.modal-wrap .modal-content .modal-body .wpcf7 label textarea {
  height: 175px;
  max-width: 100%;
}
.modal-wrap .modal-content .modal-body .wpcf7 label span:first-child {
  font-family: "Gill Sans Nova";
  font-size: 13px;
  color: #838383;
  letter-spacing: 0.23px;
  line-height: 26px;
  position: absolute;
  top: 0;
  left: 15px;
  z-index: 2;
}
@media (max-width: 767px) {
  .modal-wrap .modal-content .modal-title {
    margin-top: 30px;
    font-size: 15px;
    text-align: center;
  }
}

.personal-exhibition {
  padding: 0 30px 70px;
  text-align: center;
}
.personal-exhibition .content {
  padding-top: 50px;
  font-family: "Gill Sans Nova";
  font-size: 16.5px;
  color: #4F4F4F;
  letter-spacing: 0.75px;
  text-align: center;
  line-height: 1.5;
  width: 480px;
  max-width: 100%;
  margin: 0 auto 30px;
}
.personal-exhibition img {
  width: 777px;
  max-width: 100%;
}
.personal-exhibition .mobile-image {
  display: none;
}
@media (max-width: 1199px) {
  .personal-exhibition {
    padding: 0 20px 50px;
  }
}
@media (max-width: 767px) {
  .personal-exhibition {
    padding-left: 0;
    padding-right: 0;
  }
  .personal-exhibition .content {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 14.67px;
    color: #4F4F4F;
    letter-spacing: 0.33px;
    text-align: center;
    line-height: 25.33px;
  }
  .personal-exhibition .desktop-image {
    display: none;
  }
  .personal-exhibition .mobile-image {
    display: block;
  }
}

.innovation {
  padding: 70px 120px 70px;
  width: 1440px;
  max-width: 100%;
  margin: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.innovation .image-wrap {
  width: 483px;
  max-width: 50%;
}
.innovation .content-wrap {
  width: 530px;
  max-width: 50%;
  padding-left: 50px;
}
.innovation .content-wrap .title {
  font-family: "Gill Sans Nova";
  font-weight: 500;
  font-size: 20px;
  color: #565654;
  letter-spacing: 4px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.innovation .content-wrap .content {
  font-weight: 400;
  font-size: 16.5px;
  color: #4F4F4F;
  letter-spacing: 0.75px;
  line-height: 1.5;
  margin-bottom: 74px;
}
.innovation .content-wrap .content p {
  margin-bottom: 20px;
}
.innovation .content-wrap .button-wrap {
  text-align: center;
}
.innovation .content-wrap .button-wrap a {
  background: rgba(153, 136, 95, 0.1);
  border: 0.75px solid #9A8A7A;
  border-radius: 6.5px;
  padding: 11px 15px 14px;
  font-family: "Gill Sans Nova";
  font-weight: 500;
  font-size: 15px;
  color: #5A0C1A;
  letter-spacing: 1.5px;
}
.innovation .content-wrap .button-wrap a span {
  color: #BF9734;
}
@media (max-width: 1199px) {
  .innovation {
    padding: 40px 20px;
  }
}
@media (max-width: 767px) {
  .innovation {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-left: 0;
    padding-right: 0;
    padding-top: 90px;
    padding-bottom: 0;
  }
  .innovation .image-wrap,
.innovation .content-wrap {
    max-width: 100%;
  }
  .innovation img {
    display: block;
  }
  .innovation .content-wrap {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 60px;
  }
  .innovation .content-wrap .title {
    font-size: 14.67px;
    color: #565654;
    letter-spacing: 2.93px;
    line-height: 24px;
  }
  .innovation .content-wrap .content {
    font-size: 14.67px;
    color: #4F4F4F;
    letter-spacing: 0.33px;
    line-height: 25.33px;
  }
  .innovation .content-wrap .content p {
    margin-bottom: 15px;
  }
}

.synergy-heritage {
  padding: 140px 15px 35px;
  text-align: center;
}
.synergy-heritage .content-wrap {
  width: 480px;
  max-width: 100%;
  margin: auto;
}
.synergy-heritage .content-wrap .title {
  font-family: "Gill Sans Nova";
  font-weight: 500;
  font-size: 20px;
  color: #565654;
  letter-spacing: 4px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.synergy-heritage .content-wrap .content {
  font-weight: 400;
  font-size: 16.5px;
  color: #4F4F4F;
  letter-spacing: 0.75px;
  line-height: 1.5;
}
.synergy-heritage .content-wrap .content p {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .synergy-heritage {
    padding-top: 95px;
    padding-bottom: 60px;
    text-align: left;
  }
  .synergy-heritage .content-wrap .title {
    font-size: 14.67px;
    color: #565654;
    letter-spacing: 2.93px;
    line-height: 24px;
  }
  .synergy-heritage .content-wrap .content {
    margin-bottom: 0;
    font-size: 14.67px;
    color: #4F4F4F;
    letter-spacing: 0.33px;
    line-height: 25.33px;
  }
}

.image-modal-wrap .image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: scroll;
  display: none;
  z-index: 101;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 30px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.image-modal-wrap .image-modal .image-modal-content {
  width: 1440px;
  max-width: 100%;
  margin: auto;
  -webkit-transform-origin: top left;
          transform-origin: top left;
}
.image-modal-wrap .image-modal .image-modal-content img {
  width: 100%;
  cursor: pointer;
}
@media (max-width: 767px) {
  .image-modal-wrap .image-modal {
    padding: 10px;
  }
}

img {
  -webkit-transform-origin: top left;
          transform-origin: top left;
}

/*.addtoany_shortcode*/
.addtoany_shortcode a {
  display: inline-block;
  margin-right: 5px;
  margin-left: 5px;
}

.addtoany_shortcode .a2a_button_facebook svg,
.addtoany_shortcode .a2a_button_twitter svg,
.addtoany_shortcode .a2a_button_pinterest svg,
.addtoany_shortcode .a2a_button_linkedin svg,
.addtoany_shortcode .a2a_button_facebook span,
.addtoany_shortcode .a2a_button_twitter span,
.addtoany_shortcode .a2a_button_linkedin span,
.addtoany_shortcode .a2a_button_pinterest span {
  display: none !important;
}

.addtoany_shortcode .a2a_button_facebook,
.addtoany_shortcode .a2a_button_twitter,
.addtoany_shortcode .a2a_button_pinterest,
.addtoany_shortcode .a2a_button_linkedin,
.addtoany_shortcode .a2a_dd.addtoany_share_save.addtoany_share {
  padding: 0;
  overflow: hidden;
  font-size: 24px;
}

.addtoany_shortcode .a2a_dd.addtoany_share_save.addtoany_share &gt; span {
  height: 26px;
  line-height: 26px;
  width: 26px;
  display: block;
  border-radius: 50%;
  opacity: 0.5;
}

.addtoany_shortcode .a2a_dd.addtoany_share_save.addtoany_share:hover &gt; span {
  opacity: 1;
}

.addtoany_shortcode .a2a_button_facebook:before,
.addtoany_shortcode .a2a_button_twitter:before,
.addtoany_shortcode .a2a_button_pinterest:before,
.addtoany_shortcode .a2a_button_linkedin:before {
  content: "";
  display: block;
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.5;
}

.addtoany_shortcode a {
  width: 26px;
  height: 26px;
}

.addtoany_shortcode .a2a_button_facebook:before {
  background-image: url(../../src/img/facebook_c.svg?v=1);
}

.addtoany_shortcode a:hover:before {
  opacity: 1;
}

.addtoany_shortcode .a2a_button_twitter:before {
  background-image: url(../../src/img/twitter_c.svg?v=1);
}

.addtoany_shortcode .a2a_button_pinterest:before {
  background-image: url(../../src/img/pinterest_c.svg?v=1);
}

.addtoany_shortcode .a2a_button_linkedin:before {
  background-image: url(../../src/img/li.svg?v=1);
}

.share-widget {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 3;
}
.share-widget .addtoany_shortcode {
  padding-left: 0;
}
.share-widget .addtoany_shortcode .a2a_kit {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.share-widget .addtoany_shortcode a {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .addtoany_shortcode {
    margin-top: 25px;
    padding-left: 0;
  }
}
body {
  color: inherit;
}
/*# sourceMappingURL=main.css.map */
</pre></body></html>