/* -----------------------------------------
   General fixes
----------------------------------------- */
html, body {
  height: auto; }

html {
  min-height: 100%;
  position: relative; }

body {
  position: static; }

/* Placeholder styling */
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #555; }

input:-moz-placeholder, textarea:-moz-placeholder {
  color: #555; }

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #555; }

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #555; }

/* Input Styling */
[type=color],
[type=date],
[type=datetime-local],
[type=datetime],
[type=email],
[type=month],
[type=number],
[type=password],
[type=search],
[type=tel],
[type=text],
[type=time],
[type=url],
[type=week],
textarea,
select {
  /* STYLES GO THERE */
  margin-bottom: 0; }

/* -----------------------------------------
   Typography
----------------------------------------- */
body {
  color: #333;
  font-family: capitolium-2, sans-serif; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  font-family: capitolium-2, serif;
  color: inherit; }

h1 {
  /*basic heading styles*/ }

h2 {
  /*basic heading styles*/ }

h3 {
  /*basic heading styles*/ }

h4 {
  /*basic heading styles*/ }

h5 {
  /*basic heading styles*/ }

h6 {
  /*basic heading styles*/ }

p {
  /*basic paragraph styles*/ }
  p:empty {
    display: none; }
  p a {
    text-decoration: underline; }

ul {
  /*basic list styles*/ }
  ul li {
    /*basic list-item styles*/ }

a {
  color: #27aae1;
  transition: all .3s ease-in-out; }
  a:hover, a:focus {
    /*basic hover and focus effects*/
    color: #146a8e; }

/* Clearfix */
.clearfix {
  zoom: 1; }
  .clearfix:before, .clearfix:after {
    content: "";
    display: table;
    height: 0;
    overflow: hidden; }
  .clearfix:after {
    clear: both; }

/* Align Middle */
.align-middle {
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%; }

.btn-main {
  background-color: #ebad20;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  border: 3px solid #fff;
  padding: 8px 20px;
  line-height: 1.2;
  text-align: center; }
  .btn-main:hover, .btn-main:focus {
    text-decoration: none;
    background-color: #000;
    color: #ebad20;
    border-color: #ebad20; }
  .btn-main--secondary {
    background-color: #000;
    color: #fff; }
    .btn-main--secondary:hover, .btn-main--secondary:focus {
      background-color: #ebad20;
      color: #000;
      text-decoration: none; }

/* 404 page */
.not-found {
  padding-top: 100px;
  padding-bottom: 100px;
  margin: 0 auto; }
  .not-found h1 {
    font-size: 60px; }
  .not-found h3 {
    margin-bottom: 20px; }
  .not-found .label {
    text-decoration: none;
    cursor: pointer;
    color: #ebad20; }
    .not-found .label:hover {
      text-decoration: underline; }

header {
  background-color: #000;
  padding: 40px 0;
  border-bottom: 2px solid #fff;
  position: relative; }
  header nav {
    position: relative;
    z-index: 10; }
  header:after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    bottom: -1px;
    transform: translateX(-50%);
    background-image: url(../images/decor.png);
    width: 100%;
    max-width: 1920px;
    height: 57px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin: 0 auto;
    z-index: 1; }

/* -----------------------------------------
   Home page slider
----------------------------------------- */
.slick-slider:not(.slick-initialized) .slick-slide:not(:first-child) {
  display: none; }

#home-slider {
  height: 630px; }
  #home-slider .slick-slide {
    position: relative;
    height: 630px;
    /*define the height of slide*/
    transition: height .3s ease;
    background-repeat: no-repeat;
    width: 100%;
    background-size: cover;
    background-position: center; }
  #home-slider .slider-caption {
    position: absolute;
    top: 50%;
    right: 50%;
    width: 100%;
    max-width: 500px;
    padding: 5px 10px;
    text-align: center; }
    #home-slider .slider-caption p, #home-slider .slider-caption h3 {
      color: #fff;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); }
  #home-slider .videoHolder {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden; }
  #home-slider .video, #home-slider .responsive-embed {
    position: absolute;
    pointer-events: none; }
  #home-slider .responsive-embed {
    margin-bottom: 0; }

.home-slider__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 35px; }
  .home-slider__logo img {
    width: 100%;
    max-width: 350px;
    height: 100%;
    max-height: 360px;
    object-fit: contain; }

.home-slider__list-link {
  display: flex;
  gap: 30px; }
  .home-slider__list-link a {
    min-width: 190px; }

@media only screen and (max-width: 1024px) {
  #home-slider .slick-slide {
    height: 400px;
    /*define the height of slide*/ } }

@media only screen and (max-width: 640px) {
  #home-slider .slick-slide {
    height: 300px;
    /*define the height of slide*/ } }

.hero {
  padding: 90px 0;
  position: relative;
  min-height: 630px;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }
  .hero__logo {
    display: flex;
    flex-direction: column;
    gap: 35px; }
    .hero__logo img {
      width: 100%;
      max-width: 350px;
      height: 100%;
      max-height: 360px;
      object-fit: contain; }
  .hero__list-link {
    display: flex;
    gap: 30px;
    justify-content: center; }
    .hero__list-link a {
      min-width: 190px; }

@media only screen and (max-width: 640px) {
  .hero__list-link {
    flex-direction: column;
    align-items: center; }
    .hero__list-link a {
      min-width: 200px; } }

.popup {
  padding: 100px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  display: flex; }
  .popup:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.8); }
  .popup__title {
    margin-bottom: 30px;
    font-style: italic;
    font-size: 70px; }
  .popup__subtitle {
    font-size: 40px;
    font-style: italic;
    font-weight: 600;
    margin-bottom: 10px; }
  .popup__content {
    position: relative;
    z-index: 5;
    padding: 15px 0; }
  .popup .fancybox-close-small {
    padding: 0; }
  .popup__form {
    display: flex;
    flex-direction: column;
    align-items: center; }
    .popup__form select {
      padding: 6px 15px;
      width: 100%;
      max-width: 380px;
      font-size: 20px;
      border-color: #fff; }
  .popup__button {
    margin-top: 40px;
    padding: 6px 50px;
    width: auto;
    font-size: 26px;
    border-color: #fff; }

.fancybox-hide {
  display: none; }

.menu-hero {
  position: relative;
  padding: 120px 20px 80px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden; }

.menu-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); }

.menu-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  color: #fff; }

.menu-hero__title {
  margin: 0 0 20px;
  font-size: 146px;
  line-height: 0.95;
  font-weight: 700; }
  @media only screen and (max-width: 766px) {
    .menu-hero__title {
      font-size: 80px; } }

.menu-hero__subtitle {
  margin: 0 0 34px;
  font-size: 40px;
  line-height: 1.3;
  font-weight: 600; }
  @media only screen and (max-width: 766px) {
    .menu-hero__subtitle {
      font-size: 26px; } }

.menu-hero__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px; }

.menu-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  min-height: 56px;
  padding: 10px 28px;
  border: 2px solid #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  transition: 0.25s ease; }

.menu-hero__btn--primary {
  background: #dfab1b;
  border-color: #fff;
  color: #fff; }

.menu-hero__btn--primary:hover {
  opacity: .9; }

.menu-hero__btn--secondary {
  background: #000;
  color: #fff; }

.menu-hero__btn--secondary:hover {
  background: #111; }

@media (max-width: 767px) {
  .menu-hero {
    padding: 90px 16px 60px; }
  .menu-hero__btn {
    width: 100%;
    min-width: 0; }
  .menu-hero__actions {
    gap: 16px; } }

.menu-image {
  padding: 60px 0 40px; }
  .menu-image img {
    object-fit: contain;
    width: 100%; }

/* ------------------------------------
    Footer Styles
------------------------------------- */
.footer {
  margin-top: 50px;
  background-color: #000; }
  .footer__top {
    padding: 56px 0;
    position: relative; }
    .footer__top .container {
      display: flex;
      justify-content: space-between; }
    .footer__top:after {
      content: '';
      display: block;
      position: absolute;
      left: 50%;
      bottom: -2px;
      transform: translateX(-50%);
      background-image: url(../images/decor.png);
      width: 100%;
      max-width: 1920px;
      height: 57px;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      margin: 0 auto;
      z-index: 1; }
    .footer__top-item {
      background-color: rgba(255, 255, 255, 0.2);
      padding: 32px 25px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%; }
      .footer__top-item__logo {
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: center;
        justify-content: space-between; }
        .footer__top-item__logo img {
          object-fit: contain;
          width: 100%;
          max-width: 174px;
          height: 100%;
          max-height: 179px; }
      .footer__top-item-cta {
        height: 100%;
        max-height: 93px;
        object-fit: contain; }
      .footer__top-item .gform_wrapper {
        margin-top: 30px; }
        .footer__top-item .gform_wrapper .gfield {
          text-align: center; }
        .footer__top-item .gform_wrapper .gfield_label {
          color: #fff;
          font-family: roboto, sans-serif;
          font-size: 16px;
          line-height: 19px; }
        .footer__top-item .gform_wrapper input.large {
          width: 100%;
          padding: 10px 15px; }
        .footer__top-item .gform_wrapper .gform-footer {
          margin-top: 30px;
          text-align: center; }
          .footer__top-item .gform_wrapper .gform-footer input[type=submit] {
            font-size: 26px;
            color: #fff;
            line-height: 31px;
            font-weight: 700;
            border: 2px solid #fff;
            width: 100%;
            height: 56px;
            max-width: 232px;
            padding: 10px 40px;
            background-color: #000; }
        .footer__top-item .gform_wrapper .gform_submission_error {
          color: #ffc3c3;
          text-align: center;
          font-size: 21px; }
        .footer__top-item .gform_wrapper .validation_message {
          color: #ffc3c3;
          font-size: 15px; }
    @media only screen and (max-width: 991.99px) {
      .footer__top-nav {
        display: none; } }
  .footer__bottom {
    background-color: #ebad20;
    border-top: 2px solid #fff;
    padding: 15px 0; }
    .footer__bottom .container {
      justify-content: center; }
    .footer__bottom p {
      margin-bottom: 0;
      text-align: center;
      font-family: roboto, sans-serif;
      color: #fff; }
    .footer__bottom a {
      color: #fff;
      text-decoration: none; }
      .footer__bottom a b {
        font-weight: 400;
        text-decoration: underline;
        transition: color .3s ease-in-out; }
      .footer__bottom a:hover b {
        color: #000; }

.footer-menu {
  margin: 0;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column; }
  .footer-menu li {
    display: inline-block; }
    .footer-menu li a {
      display: block;
      padding: 5px 10px;
      font-size: 26px;
      font-weight: 700;
      color: #fff;
      text-align: center; }
      .footer-menu li a:hover, .footer-menu li a:focus {
        text-decoration: none;
        color: #ebad20; }

@media only screen and (max-width: 766px) {
  .footer__top .container {
    flex-direction: column;
    gap: 30px; } }
