/* -- CSS Reset -- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {margin: 0;padding: 0;border: 0;font-size: 100%;font: inherit;vertical-align: baseline;}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {display: block;}
body {line-height: 1;}
ol, ul {list-style: none;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,
q:before, q:after {content: '';content: none;}
table {border-collapse: collapse;border-spacing: 0;}
* {-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;text-rendering: optimizeLegibility;-moz-font-feature-settings: "liga" on;margin: 0;}

/* @import url('https://fonts.googleapis.com/css?family=Montserrat:400,800&display=swap'); */

@font-face {
  font-family: "Kiona";
  src: url(./Kiona-Regular.ttf);
}
@font-face {
  font-family: "Freight";
  src: url(./Freight_Text_Medium.otf);
}
@font-face {
  font-family: "BentonSans-Light";
  src: url(./BentonSans_Light.otf);
}
/* @font-face {
  font-family: "slick";
  src: url(./slick/fonts/slick.woff);
} */
img {
  max-width: 100%;
}
body {
  font-family: 'Kiona', sans-serif;
  -webkit-font-smoothing: antialiased;
}
.container {
  width: calc(100% - 20%);
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 2% 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.home-heros {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  position: absolute;
}
.home-heros .hero-item{
  float: left;
  height: 100%;
  min-height: 1px;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-color: #fff;
  position: relative;
}
.home-heros .hero-item:focus,.home-heros button {
  outline: none;
}
.home-heros .slick-arrow {
  position: absolute;
  position: absolute;
  display: block;
  height: 20px;
  min-width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: 9995;
  padding: 0;
  border: none;
  outline: none;
}
.home-heros .slick-arrow::before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.5;
  -webkit-font-smoothing: antialiased;
}
.home-heros .slick-arrow:hover:before{
  opacity: 1;
}
.home-heros .slick-prev {
  left: 25px;
}
.home-heros .slick-prev:before {
  content: "←";
}
.home-heros .slick-next {
  right: 25px;
}
.home-heros .slick-next:before {
  content: "→";
}
ul.slick-dots {
  position: absolute;
  bottom: 10px;
  z-index: 1050;
  width: 100%;
  display: flex;
  justify-content: center;
  bottom: 50px;
}
ul.slick-dots li {
  margin: 0 5px;
}
ul.slick-dots li button {
  font-size: 0;
  min-width: 40px;
  border: 0;
  position: relative;
  background-color: white;
  opacity: 0.5;
  cursor: pointer;
}
ul.slick-dots li.slick-active button {
  opacity: 1;
}

#header {
  position: absolute;
  width: 100%;
  min-height: 100vh;
  background: #BA0C2F;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-image: url(images/hero-bg.jpg);
  background-size: cover;
  background-position: center;
  background-color: #000;
  position: relative;
  background-repeat: no-repeat;
}
#header .container {
  flex-wrap: nowrap;
}
.site-logo {
  max-height: 150px;
  height: auto;
  max-width: 100%;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  z-index: 9999;
}
#header_logo_area {
  height: 250px;
}
#header_logo_area.panel-open .container {
  position: fixed;
  z-index: 9999;
  bottom: 60px;
}
#header_logo_area a {
  margin: 0 auto;
}
/*PANEL*/
#icons_panel_ctrl {
  z-index: 9999;
  cursor: pointer;
  width: 35px;
  height: 35px;
  min-width: 35px;
  min-height: 35px;
  border-radius: 10%;
  background: #fff;
  display: inline-block;
  position: fixed/* position: relative */;
  right: 10%;
  padding: 10px;
  transition: .4s ease-in-out;
  background-image: url(images/icon-menu.png);
  background-size: 35px 35px;
  background-repeat: no-repeat;
  background-position: center;
}
#icons_panel_ctrl.panel-open {
  background: #ba940c;
  background-image: url(images/icon-close.png);
  background-size: 25px 25px;
  background-repeat: no-repeat;
  background-position: center;
  position: fixed;
  right: 10%;
}
#panel {
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  z-index: 9998;
  visibility: hidden;
  background: #ba6f0c;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
#panel.panel-open {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
/**/
#page_area {
  height: 100vh;
}

/*TYPEWRITER*/
.header-typewriter {
  /* min-height: 180px; */
  z-index: 1000;
  margin-top: 40px;
  cursor: default;
}
.header-typewriter h2 a {
  font-size: 2rem;
  color: #FFF;
  margin-bottom: 0.5em;
  line-height: 1.2;
  display: inline-block;
  text-decoration: none;
  text-shadow: 2px 2px 3px #303030;
}
.header-typewriter h2.header-typewriter-text {
  display: inline-block;
  background: #BA0C2F;
  padding: 0 10px;
  color: #fff!important;
}
.header-typewriter p.lead {
  font-family: 'Kiona', sans-serif/* 'BentonSans-Light', sans-serif */;
  font-weight: 300;
  font-style: normal;
  font-size: 30px;
  font-size: 1.2rem;
  line-height: 1.4;
  color: #d4d4d4;
  margin-left: 83px;
  margin-top: -12px;
}
/*Header Menu*/
ul.header-menu {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  z-index: 9999;
}
ul.header-menu li {
  text-align: left;
  line-height: 40px;
  display: inline-block;
  padding: 0.5em 1.5em;
  vertical-align: top;
}
ul.header-menu li:first-child {
  padding-left: 0px;
}
ul.header-menu li a {
  position: relative;
  font-family: 'Kiona', sans-serif/* 'Freight', 'Georgia', sans-serif */;
  font-weight: 400;
  font-style: normal;
  font-size: 25px;
  padding: 0;
  color: #fff;
  opacity: 0.4;
  text-decoration:none;
  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
ul.header-menu li a.active {
  color: #f2b632;
  opacity: 1;
}
ul.header-menu li a:hover {
  opacity: 1;
}
ul.header-menu li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  -webkit-transform: scale3d(0, 1, 1);
  transform: scale3d(0, 1, 1);
  -webkit-transform-origin: center left;
  -ms-transform-origin: center left;
  transform-origin: center left;
  -webkit-transition: transform 0.4s cubic-bezier(0.22, 0.41, 0.36, 1);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.22, 0.41, 0.36, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.22, 0.41, 0.36, 1);
  -o-transition: transform 0.4s cubic-bezier(0.22, 0.41, 0.36, 1);
  transition: transform 0.4s cubic-bezier(0.22, 0.41, 0.36, 1);
  transition: transform 0.4s cubic-bezier(0.22, 0.41, 0.36, 1), -webkit-transform 0.4s cubic-bezier(0.22, 0.41, 0.36, 1);
  background: #fff;
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
ul.header-menu li a::after {
  background: #fff;
}
ul.header-menu li a:hover::before {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}
ul.header-menu li a::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  -webkit-transform: scale3d(0, 1, 1);
  transform: scale3d(0, 1, 1);
  -webkit-transform-origin: center left;
  -ms-transform-origin: center left;
  transform-origin: center left;
  -webkit-transition: transform 0.4s cubic-bezier(0.22, 0.41, 0.36, 1);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.22, 0.41, 0.36, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.22, 0.41, 0.36, 1);
  -o-transition: transform 0.4s cubic-bezier(0.22, 0.41, 0.36, 1);
  transition: transform 0.4s cubic-bezier(0.22, 0.41, 0.36, 1);
  transition: transform 0.4s cubic-bezier(0.22, 0.41, 0.36, 1), -webkit-transform 0.4s cubic-bezier(0.22, 0.41, 0.36, 1);
}
#panel ul.header-menu {
  justify-content: center;
}
#panel ul.header-menu li:first-child {
  padding-left: 2em;
}
li.parent-menu > ul {
  position: absolute;
  display: none;
  width: 100%;
  transition: all 2s;
  border-left: 2px solid rgba(186, 12, 47, 0.521);
}
li.parent-menu:hover > a {
  opacity: 1;
}
li.parent-menu:hover ul {
  display: flex;
  flex-direction: column;
  justify-content: start;
}
li.parent-menu ul li {
  padding-top: 0px;
  padding-bottom: 0px;
  line-height: 30px;
}
li.parent-menu ul li:first-child {
  padding-left: 1.5rem !important;
}

@media (max-width: 768px) {
  li.parent-menu > ul {
    position: relative;
    align-items: center;
  }
  ul.header-menu {
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    height: 50vh;
    overflow-x: hidden;
    overflow-y: auto;
    margin-top: -100px;
  }
  ul.header-menu li {
    width: 100%;
    text-align: center;
    padding: 5px !important;
  }
  #header {
    background-position: 60% 50% !important;
  }
  .header-typewriter p.lead {
    margin-left: 0;
    margin-top: 5px;
  }
}

/* MAIN */
main#main {
  background: #f6f7f7;
  padding: 0 20%;
  min-height: 80vh;
}
.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background: #f6f7f7;
}
.row .col {
  flex: 1 0 50%;
}
.row .col.col-img img {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: top;
}
.row .col.col-content section {
  margin: 40px;
}
.row .col.col-content section h3 {
  font-family: 'Kiona', sans-serif/* 'BentonSans-Light', sans-serif */;
  font-weight: 300;
  font-style: normal;
  font-size: 17px;
  font-size: 1.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5em;
  color: #707070;
}
.row .col.col-content section h4 {
  font-family: 'Kiona', sans-serif/* 'Freight', 'Georgia', sans-serif */;
  font-weight: 400;
  font-style: normal;
  color: #000;
  font-size: 40px !important;
  margin-bottom: 0.5em;
}
.row .col.col-content section p {
  margin: 1em 0;
  font-size: 1.2rem;
  line-height: 1.2;
  color: #6c6c6c;
  font-family: sans-serif;
}
.row a {
  color: #303030;
}
@media (max-width: 768px) {
  .row .col {
    flex: 1 0 100%;
  }
  main#main {
    padding: 0 3%;
  }
}

/*  */
#footer {
  display: none;
  color: #ffffff80;
  background-color: #6c6c6c;
  position: relative;
  transition: bottom 2s;
  -webkit-transition: bottom 2s;
  bottom: 0;
}
#footer a {
  color: #e5e5e5ad;
  text-decoration: none;
}
#footer.panel-open {
  display: block;
  position: fixed !important;
  width: 100%;
  z-index: 9999;
  bottom: 0 !important;
  background-color: transparent;
}
.social-icons {
  display: flex;
}
.social-icons li {
  margin: 5px;
}
.social-icons li img {
  opacity: 0.8;
}
.social-icons li img:hover {
  opacity: 1;
}
@media (max-width: 768px) {
  #footer .container {
    justify-content: center;
    /* flex-wrap: nowrap; */
  }
}


/**/
.slick-slide img {
  max-width: 100%;
  width: 100%;
  object-fit: cover;
}
.slick-next {
  height: 100% !important;
  right: 0 !important;
  width: 10% !important;
}
.slick-prev {
  height: 100% !important;
  left: 0 !important;
  width: 10% !important;
  z-index: 1;
}
.slick-slide {
  filter: grayscale(1);
  opacity: 1;
  transition: all .5s;
}
.slick-slide.slick-current.slick-active {
  filter: grayscale(0);
  opacity: 1;
}
.slick-slide a {
  display: inline-flex;
  height: 100%;
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
  height: 400px;
}
.slick-slide .slide-desc {
  padding: 10px;
  opacity: 0;
  transition: all .5s;
}
.slick-slide.slick-current.slick-active > .slide-desc {
  opacity: 1;
}
.slick-slide .slide-desc h2 {
  font-family: 'Kiona', sans-serif/* 'BentonSans-Light', sans-serif */;
  font-weight: 300;
  font-style: normal;
  font-size: 17px;
  font-size: 1.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5em;
  color: #707070;
}
.slick-slide .slide-desc p {
  font-family: sans-serif;
  color: grey;
}
.slick-prev:before, .slick-next:before {
  font-size: 40px !important;
}
@media (max-width: 768px) {
  .slick-next {
    width: 5% !important;
  }
  .slick-prev {
    width: 5% !important;
  }
}