@charset "UTF-8";

/*------------------------------------*
    @BASE #PAGE
\*------------------------------------*/
html {
  min-height: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Hind', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: normal;
  background-color: #fff;
  color: #999;
  min-width: 320px;
  height: 100vh;
  position: relative;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

body * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

::-moz-selection {
  background: #333;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #333;
  color: #fff;
  text-shadow: none;
}

/*------------------------------------*
    @BASE #TYPE
\*------------------------------------*/
h1, .h1 {
  font-size: 2.5rem;
  font-family: 'Hind', sans-serif;
  font-weight: 700;
}

h2, .h2 {
  font-size: 2rem;
  font-family: 'Hind', sans-serif;
  font-weight: 600;
  color: #333;
}

h3, .h3 {
  font-size: 1.75rem;
  font-weight: 400;
}

h4, .h4 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

h5, .h5 {
  font-size: 1rem;
}

h6, .h6 {
  font-size: 0.875rem;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  line-height: 1;
}

h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child,
.h1:first-child, .h2:first-child, .h3:first-child, .h4:first-child, .h5:first-child, .h6:first-child {
  margin-top: 0;
}

h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child,
.h1:last-child, .h2:last-child, .h3:last-child, .h4:last-child, .h5:last-child, .h6:last-child {
  margin-bottom: 0;
}

dl dd {
  margin-bottom: 0;
}

img,
p,
ul,
ol,
dl,
pre,
blockquote {
  margin-bottom: 30px;
}

img:last-child,
p:last-child,
ul:last-child,
ol:last-child,
dl:last-child,
pre:last-child,
blockquote:last-child {
  margin-bottom: 3px;
}

hr {
  background-color: none;
  border: none;
  border-bottom: 1px solid #eee;
  height: 1px;
  margin: 30px 0;
}

/*------------------------------------*
    @BASE #LINKS
\*------------------------------------*/
a {
  outline: none !important;
  /* removing outline in Mozilla */
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}

/*------------------------------------*
    @OBJECTS #BUTTONS
\*------------------------------------*/
button {
  cursor: pointer;
  -webkit-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}

button, button:focus, button:active {
  outline: none !important;
}

button:not(.btn), button:focus:not(.btn), button:active:not(.btn) {
  border: none;
}

*[class*="btn-"] {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: inline-block;
  vertical-align: middle;
  font: inherit;
  font-family: "Hind Condensed";
  text-align: center;
  text-transform: none;
  margin: 0;
  cursor: pointer;
  overflow: visible;
  -webkit-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  border-radius: 0;
  border: none;
  padding: 0 20px;
}

*[class*="btn-"], *[class*="btn-"]:hover, *[class*="btn-"]:active, *[class*="btn-"]:focus {
  text-decoration: none;
}

/*------------------------------------*
    @OBJECTS #TABLES
\*------------------------------------*/
table,
.table {
  width: 100%;
}

table th,
.table th {
  font-weight: normal;
}

/*------------------------------------*
    @OBJECTS #FORMS
\*------------------------------------*/
.form-control {
  vertical-align: middle;
  -webkit-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}

textarea.form-control {
  padding: 10px 15px;
  resize: none;
  min-height: 150px;
  line-height: 1.5;
}

input[type='number'] {
  -moz-appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/*------------------------------------*
    @OBJECTS #ICONS
\*------------------------------------*/
.icon {
  fill: currentColor;
  height: 24px;
  width: 24px;
  vertical-align: middle;
  display: inline-block;
  -webkit-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}

.btn .icon:last-child {
  margin-left: 10px;
}

.btn .icon:first-child {
  margin-right: 10px;
}

/*------------------------------------*
    @OBJECTS #CAROUSEL
\*------------------------------------*/
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*------------------------------------*
	@COMPONENTS #LAYOUT
\*------------------------------------*/
.menu-on {
  overflow-y: hidden !important;
}

.page {
  background-color: #f3f3f3f3;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

.container {
 
}

.row--alt {
  margin-left: -5px;
  margin-right: -5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.row--alt > * {
  padding-left: 5px;
  padding-right: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.row--alt > *:not(:last-child) {
  margin-bottom: 10px;
}

.row--alt::before, .row--alt::after {
  display: none;
}

/*------------------------------------*
	@COMPONENTS #FORMS
\*------------------------------------*/
form .btn {
  font-family: "Playfair Display";
}

.form-group {
  margin-bottom: 30px;
}

.form-wrap {
  padding-top: 25px;
}

.form-wrap > *:last-child {
  margin-top: 10px;
}

.form-control {
  color: #333;
  font-family: "Hind";
  font-size: 16px;
  font-weight: 400;
  padding: 15px 0 15px 0;
  height: 50px;
  border: none;
  border-bottom: 1px solid #e0e0e0 !important;
  border-radius: 0px !important;
  -webkit-box-shadow: none;
          box-shadow: none;
  /*PLACEHOLDER*/
}

.form-control:focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border-color: #333 !important;
}

@media (max-width: 560px) {
  .form-control {
    padding: 10px;
    height: 40px;
  }
}

.form-control::-webkit-input-placeholder {
  color: #999;
  font-family: "Hind";
}

.form-control::-moz-placeholder {
  color: #999;
  font-family: "Hind";
}

.form-control:-ms-input-placeholder {
  color: #999;
  font-family: "Hind";
}

/*------------------------------------*
	@COMPONENTS #HEADER
\*------------------------------------*/
.header {
      padding: 15px 0px;
}



.header__logo {
  margin-bottom: 0;
  margin-right: 30px;
}

@media (max-width: 820px) {
  .header__logo {
    margin-right: 10px;
  }
}

@media (max-width: 768px) {
  .header__logo {
    height: 50px;
    padding-left: 10px;
  }
}

@media (max-width: 785px) {
  .header__logo {
    margin-right: 5px;
  }
}



/*------------------------------------*
	@COMPONENTS #FOOTER
\*------------------------------------*/
.footer {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #333;
  color: #fff;
}

@media (max-width: 560px) {
  .footer {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .footer__content {
    text-align: center;
  }
}

.footer__title {
  color: #fff;
  font-family: "Playfair Display";
  font-size: 24px;
  margin-bottom: 20px;
}

.footer__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__button span {
  margin-left: 10px;
  text-align: left;
}

.footer__button small {
  opacity: 0.5;
  color: #ffffff;
  font-family: "Hind Condensed";
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
}

@media (max-width: 768px) {
  .footer__button {
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
  }
}

.footer__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin-bottom: 15px;
  padding: 0;
}

.footer__menu li {
  -webkit-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}

.footer__menu li a {
  color: #fff;
  font-family: "Hind Condensed";
  opacity: 0.5;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0;
  border: none;
}

.footer__menu li:not(:last-child) {
  margin-right: 20px;
}

.footer__menu li:hover {
  opacity: 0.5;
}

@media (max-width: 992px) {
  .footer__menu li {
    font-size: 14px;
  }
  .footer__menu li:not(:last-child) {
    margin-right: 10px;
  }
}

@media (max-width: 768px) {
  .footer__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: auto;
    margin-right: auto;
  }
  .footer__menu li {
    margin-right: 0 !important;
  }
}

/*------------------------------------*
	@COMPONENTS #MENU
\*------------------------------------*/
/* MENU */
/* .menunav{position:absolute;height:16px;width:auto;left:20px;top:40px;z-index:85;-webkit-transition: all 0.5s ease;transition: all 0.8s ease;z-index:80;}
.menunav.sticky{top:13px;left:70px;-webkit-transition: all 0.5s ease;transition: all 0.8s ease;z-index:80;}
*/
.menunav {
  width: auto;
  position: relative;
  float: left;
  z-index: 9998;
}

.menunav {
  margin-left: auto;
}

@media (max-width: 768px) {
  .menunav {
    position: static;
  }
}

.main-nav {
  background: #fff;
  border-radius: 0px;
}

@media (min-width: 768px) {
  .main-nav {
    border-radius: 0px;
  }
}

.main-nav:after {
  clear: both;
  content: "\00a0";
  display: block;
  height: 0;
  font: 0px/0 serif;
  overflow: hidden;
}

.nav-brand {
  float: left;
  margin: 0;
}

.nav-brand a {
  display: block;
  padding: 12px 12px 12px 20px;
  color: #555;
  font-family: 'Hind', sans-serif;
  font-size: 22px;
  font-weight: normal;
  line-height: 17px;
  text-decoration: none;
}

#main-menu {
  clear: both;
}

@media (min-width: 769px) {
  #main-menu {
    float: left;
    clear: none;
  }
}

/* Mobile menu toggle button */
.header-menu-row {
  position: relative;
}

.main-menu-btn {
  margin: 6px 10px;
  position: absolute;
  display: inline-block;
  min-width: 29px;
  height: 29px;
  text-indent: 29px;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@media (max-width: 768px) {
  .main-menu-btn {
    z-index: 99;
    position: absolute;
    top: 2px;
    left: -30px;
  }
}

.menu-on .main-menu-btn {
  top: 10px !important;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

/* hamburger icon */
.main-menu-btn-icon,
.main-menu-btn-icon:before,
.main-menu-btn-icon:after {
  position: absolute;
  top: 50%;
  left: 2px;
  height: 2px;
  width: 24px;
  background: #555;
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}

.main-menu-btn-icon:before {
  content: '';
  top: -7px;
  left: 0;
}

.main-menu-btn-icon:after {
  content: '';
  top: 7px;
  left: 0;
}

/* x icon */
#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon {
  height: 0;
  background: transparent;
}

#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:before {
  top: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
}

#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:after {
  top: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
}

/* hide menu state checkbox (keep it visible to screen readers) */
#main-menu-state {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

/* hide the menu in mobile view */
#main-menu-state:not(:checked) ~ #main-menu {
  display: none;
}

#main-menu-state:checked ~ #main-menu {
  display: block;
}

@media (min-width: 769px) {
  /* hide the button in desktop view */
  .main-menu-btn {
    position: absolute;
    top: -99999px;
  }
  /* always show the menu in desktop view */
  #main-menu-state:not(:checked) ~ #main-menu {
    display: block;
  }
}

.main-nav {
  background: transparent !important;
}

#main-menu {
  z-index: 10;
}

#main-menu li:not(:last-child) {
  margin-right: 30px;
}

#main-menu li a {
  color: #333;
  font-family: 'Hind', sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 1;
  text-transform: uppercase;
  padding: 15px 0;
  -webkit-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  border-bottom: none !important;
}

#main-menu li a:hover {
  opacity: 0.5;
}

#main-menu li a .sub-arrow {
  display: none;
}

#main-menu li ul {
  border: 1px solid #bbbbbb;
  padding: 5px 0;
  background: #fff;
  background-color: white;
  border-radius: 5px !important;
  -webkit-box-shadow: 0 5px 9px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 9px rgba(0, 0, 0, 0.2);
}

#main-menu li ul li {
  width: 100%;
}

#main-menu li ul li a {
  display: block;
  padding: 20px 10px;
  font-size: 16px;
  text-transform: capitalize;
}

#main-menu li ul::before {
  -webkit-box-shadow: #999;
          box-shadow: #999;
}

#main-menu .has-submenu {
  position: relative;
  margin-right: 10px;
}

#main-menu .has-submenu::after {
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #333333;
  font-size: 14px;
  text-transform: uppercase;
  position: absolute;
  top: 17px;
  right: -15px;
}

@media (max-width: 992px) {
  #main-menu li a {
    font-size: 16px;
  }
  #main-menu li:not(:last-child) {
    margin-right: 20px;
  }
}

@media (max-width: 992px) {
  #main-menu li:not(:last-child) {
    margin-right: 15px;
  }
}

@media (max-width: 768px) {
  #main-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    padding-top: 30%;
    overflow: scroll;
  }
  #main-menu li:first-child {
    margin-right: 0 !important;
  }
  #main-menu li:first-child ul {
    margin-left: auto;
    margin-right: auto;
    max-width: 200px;
    background-color: transparent !important;
    border: 1px solid #999 !important;
  }
  #main-menu li:first-child ul li {
    background-color: transparent !important;
    margin-bottom: 0px;
  }
  #main-menu li {
    text-align: center !important;
    margin-right: 0 !important;
    border: none !important;
    margin-bottom: 10px;
    display: block;
  }
  #main-menu li a {
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: none !important;
  }
}

/*------------------------------------*
	@COMPONENTS #TITLE
\*------------------------------------*/
.title {
  font-family: "Playfair Display";
  font-size: 48px;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .title {
    font-size: 38px;
  }
}

@media (max-width: 560px) {
  .title {
    font-size: 28px;
  }
}

.subtitle {
  color: #fff;
  font-family: "Hind Condensed";
  font-size: 28px;
  margin-top: 10px;
}

@media (max-width: 992px) {
  .subtitle {
    font-size: 20px;
  }
}

@media (max-width: 560px) {
  .subtitle {
    font-size: 18px;
  }
}

.title--dark {
  color: #333;
  font-weight: 700;
  margin-bottom: 50px !important;
}

.text {
  font-family: Hind;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  margin-bottom: 40px;
}

@media (max-width: 992px) {
  .text {
    font-size: 16px;
  }
}

@media (max-width: 560px) {
  .text {
    font-size: 14px;
  }
}

/*------------------------------------*
	@COMPONENTS #BUTTONS
\*------------------------------------*/
.btn {

  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 20px;
  font-family: "Hind Condensed";
  line-height: 1;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  border: none !important;
  -webkit-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}

.btn:hover {
  border: none !important;
}

@media (max-width: 560px) {
  .btn {
    padding: 10px 15px;
    font-size: 16px;
  }
}

.btn-warning {
  background-color: #d1be71;
  color: #fff;
}

.btn-warning:hover {
  background-color: #c5ac4a !important;
}

.btn-secondary {
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  background-color: #f3eff2;
  color: #333;
}

.btn-secondary:hover {
  background-color: #ddd2da !important;
}

.btn--sm {
  width: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btn--lg {
  width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/*------------------------------------*
	@COMPONENTS #SOCIALS
\*------------------------------------*/
.socials {
  margin-bottom: 35px;
}

.socials a {
  color: #fff;
  opacity: 0.5;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none !important;
}

.socials a:not(:last-child) {
  margin-right: 20px;
}

.socials a:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .socials {
    margin-left: auto;
    margin-right: auto;
  }
}

/*------------------------------------*
	@COMPONENTS #ADDRESS
\*------------------------------------*/
address {
  font-family: "Hind";
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
  margin-bottom: 20px;
}

.footer address {
  opacity: 0.5;
  line-height: 1.5;
}

@media (max-width: 560px) {
  .footer address {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  address {
    line-height: 1.2;
  }
}

/*------------------------------------*
	@COMPONENTS #COPYRIGHT
\*------------------------------------*/
.copyright {
  color: #fff;
  font-family: "Hind";
  line-height: 1;
  font-size: 14px;
  font-weight: 400;
  opacity: 0.3;
}

@media (max-width: 768px) {
  .copyright {
    margin-left: auto;
    margin-right: auto;
  }
}

/*------------------------------------*
	@COMPONENTS #HERO
\*------------------------------------*/
.hero {
  margin-top: -120px;
  position: relative;
  min-height: 56.25vw;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  z-index: 1;
  background-color: rgba(225, 225, 225, 0.2);
}

@media (max-width: 1200px) {
  .hero {
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 300px;
  }
}

.hero--sm {
  min-height: 500px;
}

@media (max-width: 768px) {
  .hero--sm {
    min-height: 300px;
  }
}

.hero__img {
  width: 100%;
  height: 500px;
}

@media (max-width: 768px) {
  .hero__img {
    height: 300px;
  }
}

.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin-bottom: 10px;
}

@media (max-width: 1200px) {
  .hero__video {
    margin-bottom: 0px;
  }
}

/*------------------------------------*
	@COMPONENTS #SPLIT
\*------------------------------------*/
.split {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.split .title {
  margin-bottom: 20px;
  font-weight: 700;
}

.split .subtitle {
  margin-bottom: 20px;
  margin-top: 0;
  font-weight: 700;
}

.split .btn {
  margin-left: auto;
  margin-right: auto;
}

.split:not(:last-child) {
  margin-bottom: 10px;
}

.split:last-child {
  margin-bottom: 20px;
}

@media (max-width: 1200px) {
  .split {
    position: relative;
  }
}

.split--blue .split__content {
  background-color: #a6c1c9;
}

@media (max-width: 1200px) {
  .split--blue .split__content {
    background-color: rgba(166, 193, 201, 0.8);
  }
}

.split--red .split__content {
  background-color: #5b0000;
}

@media (max-width: 1200px) {
  .split--red .split__content {
    background-color: rgba(91, 0, 0, 0.8);
  }
}

.split--left .split__img::after {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0)), to(#000000));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0) 0%, #000000 100%);
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0) 0%, #000000 100%);
  background-image: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  left: 0px;
}

.split--right .split__img::after {
  background-image: -webkit-gradient(linear, right top, left top, from(#000000), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, #000000 0%, rgba(0, 0, 0, 0) 100%);
  background-image: -o-linear-gradient(right, #000000 0%, rgba(0, 0, 0, 0) 100%);
  background-image: linear-gradient(270deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  left: auto;
  right: 0;
}

.split__content {
  padding: 60px 80px;
  -webkit-box-flex: 38;
      -ms-flex: 38;
          flex: 38;
}

@media (max-width: 1200px) {
  .split__content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    z-index: 1;
  }
}

@media (max-width: 992px) {
  .split__content {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.split__img {
  -webkit-box-flex: 62;
      -ms-flex: 62;
          flex: 62;
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.split__img::after {
  content: '';
  background-repeat: no-repeat;
  background-position: 0;
  width: 30px;
  height: 100%;
  position: absolute;
  top: 0px;
  opacity: 0.3;
}

@media (max-width: 1200px) {
  .split__img {
    -webkit-box-flex: 0;
        -ms-flex: 0;
            flex: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  .split__img::after {
    display: none;
  }
}

/*------------------------------------*
	@COMPONENTS #SECTION
\*------------------------------------*/
.section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.section .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section .title {
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.section--cover {
  padding-top: 120px;
  padding-bottom: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section--cover .title {
  margin-bottom: 20px;
  font-weight: 700;
  font-family: "Playfair Display";
}

.section--cover .text {
  max-width: 770px;
  text-align: center;
  font-family: "Hind Condensed";
  font-weight: 700;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 65px;
}

@media (max-width: 560px) {
  .section--cover .text {
    font-size: 16px;
  }
}

/*------------------------------------*
	@COMPONENTS #CARD
\*------------------------------------*/
.cards-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.cards-wrap > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 992px) {
  .cards-wrap {
    display: block;
  }
  .cards-wrap > * {
    margin-bottom: 30px;
  }
}

.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.card__img {
  height: 200px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.card__img span {
  color: #fff;
  font-family: "Playfair Display";
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  text-transform: uppercase;
  text-align: center;
  padding: 10px;
  background-color: #d1be71;
  height: 60px;
  position: absolute;
  top: 0px;
}

.card__img span strong {
  display: block;
  font-family: "Hind";
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1;
}

.card__body {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.card__title {
  color: #333;
  font-family: "Hind Condensed";
  font-size: 24px;
  font-weight: 700;
}

.card__text {
  color: #333;
  font-family: "Hind Condensed";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.card__link {
  color: #d1be71 !important;
  font-family: "Hind Condensed";
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none !important;
  margin-top: auto;
}

.card__link i {
  font-size: 14px;
  margin-left: 5px;
}

.card__link:hover {
  opacity: 0.5;
}

/*------------------------------------*
	@COMPONENTS #CARD
\*------------------------------------*/
.cover-wrap {
  overflow-x: hidden !important;
}

.cover {
  background-color: #fff;
}

.cover__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none !important;
  min-height: 500px;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
}

.cover__item .title {
  color: #fff;
  text-decoration: underline;
  background-color: rgba(51, 51, 51, 0.5);
  padding: 15px 40px;
  z-index: 2;
  pointer-events: none;
  margin-top: 0;
  -webkit-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}

.cover__item:hover .title {
  background-color: rgba(51, 51, 51, 0.8);
}

.cover__item + .cover__item {
  margin-top: 10px;
}

.cover__item--sm {
  min-height: 355px;
}

.cover__item--lg {
  margin-bottom: 10px;
}

.cover__bgr {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  -webkit-transition: all 4s ease;
  -o-transition: all 4s ease;
  transition: all 4s ease;
}

.cover__bgr:hover {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}

/*------------------------------------*
	@COMPONENTS #SIDEMENU
\*------------------------------------*/
.sidemenu {
  background-color: #5B0000;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  min-width: 270px;
  position: -webkit-sticky;
  position: sticky;
  top: 30px;
  margin-right: 30px;
  z-index: 900;
  margin-bottom: 10px;
  -webkit-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}

@media (min-width: 993px) {
  .sidemenu {
    margin-bottom: 0;
  }
}

.sidemenu a {
  color: #fff;
  font-family: "Hind Condensed";
  font-size: 18px;
  font-weight: 500;
  line-height: 21px;
  text-decoration: none !important;
  position: relative;
}

.sidemenu a:not(:last-of-type) {
  margin-bottom: 20px;
}

.sidemenu a:hover {
  opacity: .5;
}

.sidemenu br:last-child {
  display: none;
}

@media (min-width: 993px) {
  .sidemenu {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

@media (max-width: 992px) {
  .sidemenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-y: scroll;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    min-width: auto;
    top: 15px;
    width: 100%;
    margin-top: -50px;
    margin-left: 0;
    margin-bottom: 15px;
    padding: 10px 20px;
    margin-right: 0px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  }
  .sidemenu br:last-child {
    display: none;
  }
}

@media (max-width: 992px) {
  .sidemenu {
    padding: 20px;
    margin-top: 0px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .sidemenu a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    white-space: nowrap;
    margin-right: 20px;
    margin-bottom: 0 !important;
  }
  .sidemenu a:last-of-type::after {
    content: '';
    width: 20px;
    display: block;
  }
}

.menu-on .sidemenu {
  z-index: 0;
}

/*------------------------------------*
	@COMPONENTS #CONTENT
\*------------------------------------*/
.content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  margin-top: -50px;
  padding-bottom: 100px;
}

@media (max-width: 1200px) {
  .content-wrap {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (max-width: 992px) {
  .content-wrap {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
}

.content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  z-index: 99;
  width: 100%;
}

.content__item {
  background-color: #fff;
  padding: 40px;
  color: #333;
}

.content__item:not(:last-child) {
  margin-bottom: 50px;
}

.content__item .title {
  font-family: "Playfair Display";
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 0px;
  text-align: center;
}

@media (max-width: 768px) {
  .content__item .title {
    font-size: 32px;
  }
}

@media (max-width: 560px) {
  .content__item .title {
    font-size: 28px;
    text-align: left;
  }
}

.content__item .title--alt {
  text-align: left;
  margin-bottom: 20px;
}

.content__item .subtitle {
  color: #999;
  font-family: "Playfair Display";
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 30px;
  position: relative;
}

.content__item .subtitle::before {
  content: '';
  width: 120px;
  height: 1px;
  background-color: #999;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0px;
}

@media (max-width: 560px) {
  .content__item .subtitle {
    text-align: left;
  }
  .content__item .subtitle::before {
    left: 60px;
  }
}

.content__item article {
  margin-bottom: 40px;
}

.content__item article .text {
  color: #333;
  font-size: 16px;
  line-height: 32px;
  text-align: justify;
}

.content__item article .text:not(:last-child) {
  margin-bottom: 30px;
}

.content__item article .text strong {
  font-family: Hind;
  font-weight: 700;
}

@media (max-width: 560px) {
  .content__item {
    padding: 20px;
    margin-bottom: 20px;
  }
  .content__item article {
    margin-bottom: 20px;
  }
  .content__item .text {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .content__item:last-child {
    margin-bottom: 40px;
  }
}

/*------------------------------------*
	@COMPONENTS #LIST
\*------------------------------------*/
.list {
  padding-left: 70px;
  margin-bottom: 60px;
}

.list li {
  list-style: none;
  position: relative;
  color: #333;
  font-family: "Hind";
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}

.list li::before {
  content: '\f6f7';
  font-family: "Font Awesome 5 Pro Light";
  font-size: 12px;
  font-weight: 300;
  color: #d1be71;
  position: absolute;
  top: 6px;
  left: -35px;
}

.list li:not(:last-child) {
  margin-bottom: 25px;
}

@media (max-width: 560px) {
  .list {
    padding-left: 40px;
    margin-bottom: 40px;
  }
  .list li {
    font-size: 14px;
    line-height: 1.5;
  }
  .list li:not(:last-child) {
    margin-bottom: 15px;
  }
  .list li::before {
    top: 3px;
    left: -30px;
  }
}

/*------------------------------------*
	@COMPONENTS #BOX
\*------------------------------------*/
.box-wrap {
  padding-top: 20px;
}

.box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

.box:not(:last-child) {
  margin-bottom: 70px;
}

@media (max-width: 1200px) {
  .box {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
}

.box--left {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.box--left .box__img {
  right: -40px;
}

.box--right {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.box--right .box__img {
  left: -40px;
}

@media (max-width: 440px) {
  .box--right .box__content {
    text-align: left;
  }
}

.box__title {
  color: #333;
  font-family: "Playfair Display";
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 20px;
}

.box__text {
  color: #333;
  font-family: "Hind";
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}

@media (max-width: 560px) {
  .box__text {
    font-size: 14px;
    line-height: 1.5;
  }
}

.box__img {
  max-width: 100%;
  position: absolute;
  top: 0;
}

@media (max-width: 1200px) {
  .box__img {
    position: static;
  }
}

.box__content {
  max-width: 430px;
}

@media (max-width: 1200px) {
  .box__content {
    max-width: 100%;
    padding: 20px 0px !important;
  }
}

@media (max-width: 560px) {
  .box__content {
    padding: 20px;
  }
}

/*------------------------------------*
	@TRUMPS #COLORS
\*------------------------------------*/
.color-primary {
  color: #999 !important;
}

.color-alt {
  color: #333 !important;
}

/*------------------------------------*
	@TRUMPS #HELPERS
\*------------------------------------*/
.clean {
  margin: 0;
  padding: 0;
}

.no-transition,
.no-transition * {
  -webkit-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

.amp {
  font-family: Baskerville, Palatino, "Palatino Linotype", "Book Antiqua", serif;
  font-size: 1.4em;
  font-style: italic;
  font-weight: normal;
}

.nowrap {
  white-space: nowrap;
}

/*------------------------------------*
	@TRUMPS #LAYOUT
\*------------------------------------*/
.spaced1x {
  margin-bottom: 10px !important;
}

.spaced2x {
  margin-bottom: 20px !important;
}

.spaced3x {
  margin-bottom: 30px !important;
}

.spaced4x {
  margin-bottom: 40px !important;
}

.spaced5x {
  margin-bottom: 50px !important;
}

.spaced6x {
  margin-bottom: 60px !important;
}

.spaced7x {
  margin-bottom: 70px !important;
}

.spaced8x {
  margin-bottom: 80px !important;
}

.spaced9x {
  margin-bottom: 90px !important;
}

.spaced10x {
  margin-bottom: 100px !important;
}

/*------------------------------------*
	@TRUMPS #PRINT
\*------------------------------------*/
/**
 * Very crude, reset-like styles taken from the HTML5 Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/3c3c5e64604209a4d63e1e4c48dd245d45fadfd9/css/main.css#L200-L234
 */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster: h5bp.com/s */
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /**
     * Don?t show links that are fragment identifiers, or use the `javascript:`
     * pseudo protocol.
     */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
}

/* CUSTOMIZE PHOTO GALLERY */

#wc_photo_title {
display: none;
}

/* CUSTOM BUTTON */
.custom-button {
	background:linear-gradient(to bottom, #ffffff 5%, #f6f6f6 100%);
	background-color:#ffffff;
	border-radius:3px;
	border:2px solid #dcdcdc;
	display:inline-block;
	cursor:pointer;
	color:#666666;
	font-family:Verdana;
	font-size:16px;
	font-weight:bold;
	padding:10px 75px;
	text-decoration:none;
}
.custom-button:hover {
	background:linear-gradient(to bottom, #f6f6f6 5%, #ffffff 100%);
	background-color:#f6f6f6;
}
.custom-button:active {
	position:relative;
	top:1px;
}

#id_home {
display: none;
}



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