/*====================

Version: 1.0
======================*/
/**************************************************************

  STYLESHEET CONTENT
  |_ Main
    |_ variables
    |_ layout
    |_ header
    |_ footer
    |_ sub-nav
    |_ typography

  |_ Elements
    |_ buttons
    |_ forms
    |_ tables
    |_ cards
    |_ badges
    |_ sub-nav
    |_ hero
    |_ sliders
    |_ modals

***************************************************************/
/*
Main Styles
*/
header#global {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
}
header#global .section-container {
  padding: 40px 0;
  border-top: 5px solid #76271e;
  border-bottom: 1px solid #76271e;
}
.has-bg-image header#global .section-container {
  border-top: 5px solid rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}
.home header#global .section-container {
  border-top: 5px solid #76271e;
  border-bottom: 1px solid #76271e;
}
header#global .btn-primary {
  border: 1px solid rgba(237, 237, 237, 0.5);
  color: #fff;
}
header#global .btn-primary:hover {
  color: #212121;
}
header#global .btn-primary:hover:after {
  color: #212121;
}
header#global .btn-primary:hover, header#global .btn-primary.loading {
  background-color: #ededed;
  color: #212121;
}

@media only screen and (min-width: 1025px) {
  #toggle-nav,
.nav-content {
    display: none !important;
  }
  header#global ul.nav {
    align-items: center;
  }
  header#global ul.nav .nav-item .nav-link.active:after {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #fff;
    transform: rotate(45deg);
    bottom: 0;
    left: calc(50% - 2px);
  }
  header#global ul.nav .btn,
footer ul.nav .btn {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}
@media only screen and (max-width: 1024px) {
  #toggle-nav {
    position: relative;
    z-index: 999;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: transparent;
    transition: 0.3s;
  }
  #toggle-nav.active {
    position: fixed;
  }
  #toggle-nav .burger {
    position: relative;
    width: 25px;
    height: 2px;
    background-color: #fff;
  }
  #toggle-nav .burger:before, #toggle-nav .burger:after {
    position: absolute;
    content: "";
    height: 2px;
    transition: transform 0s, top 0.3s;
    background-color: #fff;
  }
  #toggle-nav .burger:before {
    width: 25px;
    top: -8px;
  }
  #toggle-nav .burger:after {
    width: 15px;
    top: 8px;
  }
  #toggle-nav:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
  #toggle-nav.active .burger {
    background-color: transparent;
  }
  #toggle-nav.active .burger:before, #toggle-nav.active .burger:after {
    width: 25px;
    top: 0;
    background-color: #fff;
    transition: top 0s, transform 0.3s;
  }
  #toggle-nav.active .burger:before {
    transform: rotate(45deg);
  }
  #toggle-nav.active .burger:after {
    transform: rotate(-45deg);
  }
  header#global {
    position: fixed;
    z-index: 999;
  }
  header#global.fixed-scroll {
    background-color: #212121;
  }
  header#global.fixed-scroll .section-container {
    padding: 5px 0;
    border-color: transparent !important;
  }
  header#global .section-container {
    padding: 15px 0;
    align-items: center;
    transition: 0.4s;
  }
  header#global .logo {
    display: block;
    width: 15%;
    min-width: 100px;
    max-width: 120px;
  }
  header#global .logo img {
    width: auto;
    height: auto;
  }
  header#global nav {
    position: fixed;
    z-index: 99;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    background-color: #212121;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.5s;
  }
}
@media only screen and (max-width: 1024px) and (max-width: 575px) {
  header#global nav {
    padding: 4rem;
  }
}
@media only screen and (max-width: 1024px) {
  header#global nav.active {
    right: 0;
  }
}
@media only screen and (max-width: 1024px) {
  header#global nav ul.nav {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  header#global nav ul.nav .nav-item {
    font-size: 22px;
  }
  header#global nav ul.nav .nav-item .nav-link:not(.btn) {
    padding-left: 0;
  }
  header#global nav ul.nav .nav-item .nav-link:not(.btn).active:after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #fff;
    transform: rotate(45deg) translateY(-50%);
    top: 50%;
    right: 0;
  }
}
@media only screen and (max-width: 1024px) and (max-width: 575px) {
  header#global nav ul.nav {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1024px) {
  header#global nav ul.nav .btn {
    margin-top: 1rem;
  }
}
@media only screen and (max-width: 1024px) {
  header#global nav p a {
    color: #fff;
    text-decoration: none;
  }
}
footer {
  background-color: #212121;
}
footer a {
  color: #fff;
}
@media only screen and (min-width: 1025px) {
  footer .btn {
    margin-left: 1rem;
  }
}

/*****************
MAIN LAYOUT STYLES
*****************/
html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
  font-size: 62.5%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

img {
  max-width: 100%;
}

/* Sticky footer */
main {
  flex: 1 0 auto;
  overflow: hidden;
}

.page-wrap {
  overflow: hidden;
}

.page-footer {
  flex-shrink: 0;
  position: relative;
  z-index: 4;
}

/* Containers */
.section-container {
  position: relative;
  padding-top: 7rem;
  padding-bottom: 7rem;
  margin: 0 auto;
  width: 85%;
  max-width: 1400px;
}
.section-container + .section-container {
  padding-top: 0;
}
.section-container.narrow {
  max-width: 1200px;
}

@media only screen and (max-width: 1024px) {
  .section-container {
    padding-top: 5rem;
    padding-bottom: 5rem;
    width: 90%;
  }
  .section-container.narrow {
    width: 85%;
  }
}
@media only screen and (max-width: 991px) {
  .section-container,
.section-container.narrow {
    width: 90%;
  }
}
@media only screen and (max-width: 767px) {
  .section-container,
.section-container.narrow {
    padding-top: 3rem;
    padding-bottom: 3rem;
    width: 85%;
  }
}
.aside {
  background-color: #ededed;
  padding: 2rem;
}

.spacer {
  height: 7rem;
}
@media only screen and (max-width: 1024px) {
  .spacer {
    height: 5rem;
  }
}
@media only screen and (max-width: 767px) {
  .spacer {
    height: 3rem;
  }
}

.box {
  padding: 5rem;
}
@media only screen and (max-width: 1024px) {
  .box {
    padding: 3rem;
  }
}
@media only screen and (max-width: 575px) {
  .box {
    padding: 2rem;
  }
}

.bg-black,
footer {
  background-color: #212121;
}
.bg-black h1,
.bg-black h2,
.bg-black h3,
.bg-black h4,
.bg-black h5,
.bg-black ul,
.bg-black ol,
.bg-black li,
.bg-black p:not(.text-muted),
.bg-black a,
footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer ul,
footer ol,
footer li,
footer p:not(.text-muted),
footer a {
  color: #fff;
}
.bg-black h6,
footer h6 {
  color: #707070;
}
.bg-black .btn,
footer .btn {
  color: #fff;
}
.bg-black .btn.btn-primary,
footer .btn.btn-primary {
  border-color: rgba(237, 237, 237, 0.5);
}
.bg-black .btn.btn-primary:hover,
footer .btn.btn-primary:hover {
  background-color: #fff;
  border-color: #fff;
  color: #212121;
}
.bg-black .text-muted,
footer .text-muted {
  color: rgba(255, 255, 255, 0.6) !important;
}

.bg-red {
  background-color: #9F3428;
}
.bg-red h1,
.bg-red h2,
.bg-red h3,
.bg-red h4,
.bg-red h5,
.bg-red h6,
.bg-red ul,
.bg-red ol,
.bg-red li,
.bg-red p:not(.text-muted) {
  color: #fff;
}
.bg-red .btn {
  color: #fff;
}
.bg-red .btn.btn-primary {
  border-color: rgba(237, 237, 237, 0.5);
}
.bg-red .btn.btn-primary:hover {
  background-color: #fff;
  border-color: #fff;
  color: #212121;
}
.bg-red .text-muted {
  color: rgba(255, 255, 255, 0.6) !important;
}

.bg-grey {
  background-color: #ededed;
}

[class^=decorate-],
[class*=" decorate-"] {
  position: relative;
  z-index: 1;
}
[class^=decorate-]:after,
[class*=" decorate-"]:after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 160px;
  height: 160px;
  background: url(../images/decoration.svg) no-repeat;
}

.decorate-tl:after {
  top: 0;
  left: 0;
  transform: translate(-25%, -25%);
}

.decorate-tr:after {
  top: 0;
  right: 0;
  transform: translate(25%, -50%);
}

.post-block {
  margin-bottom: 5rem;
}
.post-block ul + h2,
.post-block ul + h3,
.post-block ul + h4,
.post-block ul + h5,
.post-block ol + h2,
.post-block ol + h3,
.post-block ol + h4,
.post-block ol + h5,
.post-block p + h2,
.post-block p + h3,
.post-block p + h4,
.post-block p + h5 {
  margin-top: 2rem;
}
.post-block.bordered-block {
  padding: 3rem 0;
  margin-bottom: 5rem;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
}
.post-block.image-block img {
  width: 100%;
}

@media only screen and (min-width: 1025px) {
  .dt-hide {
    display: none !important;
  }
}

@media only screen and (max-width: 1024px) {
  .mob-hide {
    display: none !important;
  }
}

.cc-window.cc-floating {
  font-family: "DM Sans", Arial, Helvetica, sans-serif !important;
  max-width: 25em !important;
}

.cc-btn {
  text-decoration: none;
  border-width: 1px !important;
  padding: 0.8rem !important;
  transition: 0.3s;
  color: #fff !important;
}

/*****************
NAVIGATION STYLES
*****************/
ul.nav:first-child {
  margin-left: -1rem;
  margin-right: -1rem;
}
ul.nav .nav-item {
  font-size: 14px;
  font-weight: 700;
}
ul.nav .nav-item .nav-link:not(.btn) {
  position: relative;
  color: #fff;
  transition: 0.3s;
}
ul.nav .nav-item .nav-link:not(.btn):not(.btn) {
  opacity: 0.6;
}
ul.nav .nav-item .nav-link:not(.btn):hover, ul.nav .nav-item .nav-link:not(.btn).active {
  opacity: 1;
}
ul.nav .nav-item > ul.nav .nav-item {
  font-weight: 400;
}

.pagination .page-item {
  margin: 0;
  width: 45px;
  height: 50px;
}
.pagination .page-item:not(:first-child) .page-link {
  margin-left: -2px;
}
.pagination .page-item:last-child .page-link {
  border-radius: 0;
}
.pagination .page-item .page-link {
  display: block;
  color: #212121;
  font-weight: 500;
  border-width: 2px;
  background-color: transparent;
  padding: 0.5rem 1rem;
  text-align: center;
  height: 100%;
}
.pagination .page-item .page-link:hover {
  background-color: #ededed;
}
.pagination .page-item.arrow .page-link {
  padding: 0.375rem 0;
  border-radius: 0;
}
.pagination .page-item.arrow .page-link span {
  vertical-align: middle;
}
.pagination .page-item.active .page-link {
  background-color: #9F3428;
  border-color: #9F3428;
  color: #fff;
  font-weight: 700;
}

/****************
TYPOGRAPHY STYLES
****************/
body {
  color: #212121;
  font-family: "DM Sans", Arial, Helvetica, sans-serif;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  margin-bottom: 1rem;
}
.h1 a, .h2 a, .h3 a, .h4 a, .h5 a, .h6 a, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  text-decoration: none;
  transition: all 0.3s;
}
h1 {
  font-size: 54px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1;
  color: #fff;
}
@media only screen and (max-width: 1024px) {
  h1 {
    font-size: 48px;
  }
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 40px;
  }
}
.home h1 {
  font-size: 75px;
}
@media only screen and (max-width: 1024px) {
  .home h1 {
    font-size: 54px;
  }
}
@media only screen and (max-width: 767px) {
  .home h1 {
    font-size: 48px;
  }
}

h2 {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.015em;
}
@media only screen and (max-width: 1024px) {
  h2 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.015em;
}
@media only screen and (max-width: 1024px) {
  h3 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 767px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.015em;
}
@media only screen and (max-width: 1024px) {
  h4 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  h4 {
    font-size: 18px;
  }
}

h5 {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.015em;
}

h6 {
  font-size: 12px;
  font-weight: 700;
}

p,
ul,
ol {
  font-size: 18px;
}
@media only screen and (max-width: 1024px) {
  p,
ul,
ol {
    font-size: 16px;
  }
}
p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

p.small,
p small {
  font-size: 12px;
  font-weight: 500;
}
p.large {
  font-size: 24px;
}
p a {
  transition: 0.4s;
}
p a:hover {
  color: #9F3428;
}
p .material-icons,
p .material-icons-outlined {
  vertical-align: middle;
  font-size: inherit;
}

a {
  color: #9F3428;
  text-decoration: underline;
}

ol {
  counter-reset: number-list-counter;
  list-style: none;
  margin-left: 0;
}
ol li {
  counter-increment: number-list-counter;
  position: relative;
  padding-left: 25px;
}
ol li:before {
  content: counter(number-list-counter) ".";
  font-weight: 600;
  position: absolute;
  left: 0;
  top: 0;
}

ul.ticks {
  list-style: none;
}
ul.ticks li {
  padding-left: 25px;
  position: relative;
}
ul.ticks li:before {
  position: absolute;
  left: 0;
  font-family: "Material Icons";
  content: "\e5ca";
  color: #9F3428;
}

ul.bullets {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.bullets li {
  position: relative;
  padding-left: 35px;
  font-size: 30px;
  line-height: 1.1;
}
@media only screen and (max-width: 1024px) {
  ul.bullets li {
    font-size: 24px;
  }
}

ul.clean {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.clean li:not(:last-child) {
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 5rem;
}
@media only screen and (max-width: 767px) {
  .section-title {
    margin-bottom: 3rem;
  }
}

.text-warning {
  color: #9F3428 !important;
}

.cite {
  position: relative;
  padding-left: 30px;
}
.cite:before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: -5px;
  border-left: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
}

blockquote {
  position: relative;
  border-left: 5px solid #9F3428;
  padding-left: 2rem;
}
blockquote:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-25%, -25%);
  width: 80px;
  height: 80px;
  background: url(../images/decoration.svg) no-repeat;
}
blockquote p {
  font-weight: 500;
}
blockquote cite {
  color: #919191;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
}

.text-muted {
  color: inherit !important;
  opacity: 0.5;
}

/*
Elements
*/
/************
ALERT STYLES
************/
.alert {
  padding: 2rem;
  border: 2px solid;
}
.alert .alert-title {
  font-weight: 700;
}
.alert.alert-success {
  border-color: #72a745;
  background-color: rgba(114, 167, 69, 0.04);
}
.alert.alert-success .alert-title {
  color: #72a745;
}
.alert.alert-danger {
  border-color: #9F3428;
  background-color: rgba(159, 52, 40, 0.04);
}
.alert.alert-danger .alert-title {
  color: #9F3428;
}

/************
BADGE STYLES
************/
.badge {
  border-radius: 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem;
}
.badge.edge {
  position: absolute;
  top: 20px;
  left: 0;
}
.badge + * {
  margin-top: 1rem;
}

/************
BUTTON STYLES
************/
button {
  border: none;
  background: none;
}

.btn {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  color: #212121;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  text-decoration: none;
  border: none;
  background-color: transparent;
  transition: 0.4s;
}
.btn:not(.btn-back) {
  justify-content: space-between;
}
.btn:not(.btn-back):after {
  font-family: "Material Icons";
  content: "\e5df";
  margin-left: 10px;
  font-size: 18px;
}
.btn.btn-primary {
  height: 50px;
  padding: 1rem 1.25rem;
  border: 1px solid #d9d9d9;
}
.btn.btn-primary:hover, .btn.btn-primary.loading {
  background-color: #9F3428;
  border-color: #9F3428;
  color: #fff;
}
.btn.btn-secondary:after {
  margin-left: 0;
}
.btn.btn-secondary:hover {
  color: #9F3428;
}
.btn.btn-back:before {
  font-family: "Material Icons";
  content: "\e5de";
  font-size: 18px;
}

#top {
  display: none;
  text-decoration: none;
  cursor: pointer;
  position: fixed;
  z-index: 999;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 50px;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-top-right-radius: 15px;
  transition: 0.3s;
}
#top span {
  font-size: 15px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#top:hover {
  padding-bottom: 10px;
}

/************
CARD STYLES
************/
.card .card-img,
.card .card-img-top {
  border-radius: 0;
  transition: all 0.5s;
  width: 100%;
}
.card .card-body {
  background-color: #fff;
  border: 1px solid #d9d9d9;
  padding: 2rem;
}
.card .card-img-top + .card-body {
  border-top: none;
}
.card.download .card-body {
  position: relative;
  padding-right: calc(2rem + 30px);
}
.card.download .card-body:after {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: "Material Icons Outlined";
  font-size: 30px;
  color: #d9d9d9;
  content: "\e2c4";
}

.card-img-overlay {
  position: relative;
  display: grid;
  height: 100%;
  z-index: 1;
  padding: 3rem;
  min-height: 20vw;
}
@media only screen and (max-width: 1024px) {
  .card-img-overlay {
    min-height: 25vw;
  }
}
@media only screen and (max-width: 991px) {
  .card-img-overlay {
    min-height: 30vw;
  }
}
@media only screen and (max-width: 667px) {
  .card-img-overlay {
    min-height: 35vw;
  }
}
@media only screen and (max-width: 575px) {
  .card-img-overlay {
    min-height: 40vw;
  }
}
@media only screen and (max-width: 667px) {
  .card-img-overlay {
    padding: 2rem;
  }
}
.card-img-overlay:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.55) 100%);
}
.card-img-overlay * {
  color: #fff;
  text-decoration: none;
}
.card-img-overlay .overlay-els {
  position: relative;
  z-index: 2;
}
.card-img-overlay .card-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

a.card {
  text-decoration: none;
}
a.card .card-body {
  transition: 0.4s;
}
a.card .card-body * {
  color: #9F3428;
  text-decoration: none;
}
a.card .card-body:hover {
  background-color: #ededed;
}
a.card .card-body:hover * {
  color: #9F3428;
  text-decoration: none;
}

a.card-img-overlay {
  text-decoration: none;
  overflow: hidden;
}
a.card-img-overlay .card-bg {
  transition: 0.6s;
}
a.card-img-overlay:hover .card-bg {
  transform: scale(1.05);
}
a.card-img-overlay:hover .btn {
  color: #9F3428;
}

/************
FORM STYLES
************/
.form-control {
  border: none;
  border-bottom: 2px solid #ededed;
  border-radius: 0;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s;
}
@media only screen and (max-width: 1024px) {
  .form-control {
    font-size: 16px;
  }
}
.form-control:focus {
  box-shadow: none;
  border-bottom-color: #212121;
}

.form-floating > .form-control {
  height: calc(4rem + 2px);
  padding: 1rem 0;
  line-height: 1.5;
}

.form-floating > textarea.form-control {
  height: 250px;
}

.form-floating > label {
  top: 0;
  left: 0;
  padding: 1rem 0;
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
  transform: scale(0.85) translateY(-0.5rem) translateX(0rem);
  opacity: 1;
}

textarea.form-control {
  height: 100px;
}

label {
  font-size: 16px;
  color: #919191;
}
ul.errors {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul.errors li {
  margin: 0.5rem 0;
  font-weight: 700;
  color: #9F3428;
}

/************
HERO STYLES
************/
#hero {
  position: relative;
  padding-top: 150px;
  background-color: #9F3428;
  color: #fff;
}
@media only screen and (max-width: 1024px) {
  #hero {
    padding-top: 100px;
  }
}
#hero a {
  color: #fff;
  font-weight: 500;
}
#hero a:hover {
  opacity: 0.6;
}
#hero .text-muted:not(a) {
  color: #fff !important;
  opacity: 0.7;
}
#hero .hero-subtitle {
  color: #fff;
  font-size: 24px;
}
@media only screen and (max-width: 1024px) {
  #hero .hero-subtitle {
    font-size: 21px;
  }
}
@media only screen and (max-width: 767px) {
  #hero .hero-subtitle {
    font-size: 18px;
  }
}
#hero.image-overlap {
  margin-bottom: 5rem;
}
#hero.image-overlap .section-container {
  padding-bottom: 0;
}
#hero.image-overlap .hero-text {
  padding-bottom: 7rem;
}
@media only screen and (max-width: 1024px) {
  #hero.image-overlap .hero-text {
    padding-bottom: 5rem;
  }
}
@media only screen and (max-width: 767px) {
  #hero.image-overlap .hero-text {
    padding-bottom: 2rem;
  }
}
#hero.image-overlap .hero-image {
  margin-bottom: -5rem;
  position: relative;
}
#hero.image-overlap .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#hero.bg-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#hero.bg-image:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(33, 33, 33, 0.5);
  z-index: 0;
}
.home #hero.bg-image:after {
  background-color: rgba(159, 52, 40, 0.85);
}
#hero.bg-image .section-container {
  z-index: 2;
}
#hero .hero-overlay-area {
  position: relative;
  z-index: 1;
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 50%);
}

/************
IMAGE STYLES
************/
.gallery {
  display: block;
  position: relative;
}
.gallery:after {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  font-family: "Material Icons";
  font-size: 30px;
  content: "\e8b6";
  color: #fff;
  opacity: 0;
  transition: 0.4s;
}
.gallery:hover:after {
  opacity: 1;
}

/************
TABLE STYLES
************/
table {
  width: 100%;
  font-size: 18px;
}
table tr {
  vertical-align: top;
}
table th {
  font-size: 14px;
  color: #919191;
  border-bottom: 4px solid #d9d9d9;
}
table td {
  border-bottom: 2px solid #d9d9d9;
}

@media only screen and (min-width: 992px) {
  th {
    padding: 0 25px 20px 25px;
  }
  th:first-of-type {
    padding-left: 0;
  }
  th:last-of-type {
    padding-right: 0;
  }
  td {
    padding: 25px;
  }
  td:first-of-type {
    padding-left: 0;
  }
  td:last-of-type {
    padding-right: 0;
  }
  td.has-image {
    text-align: right;
  }
}
@media only screen and (max-width: 991px) {
  /* Force table to not be like tables anymore */
  .responsive-table {
    font-size: 16px;
    /* Hide table headers (but not display: none;, for accessibility) */
  }
  .responsive-table table,
.responsive-table thead,
.responsive-table tbody,
.responsive-table th,
.responsive-table td,
.responsive-table tr {
    display: block;
  }
  .responsive-table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .responsive-table th,
.responsive-table td {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .responsive-table td {
    /* Behave  like a "row" */
    position: relative;
    white-space: normal;
    text-align: left;
  }
  .responsive-table td:before {
    content: attr(data-title);
    font-size: 14px;
    color: #707070;
    /* Now like a table header */
    display: block;
    text-align: left;
  }
  .responsive-table td:last-of-type {
    border-bottom: 4px solid #a1a1a1;
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
}
/************
SLIDER STYLES
************/
.splide__arrows {
  margin: 0 -5px;
}
.splide__arrows .splide__arrow {
  border: 1px solid #a1a1a1;
  transition: 0.4s;
  line-height: 1;
  vertical-align: middle;
  padding: 0.75rem;
  margin: 0 5px;
}
.splide__arrows .splide__arrow:disabled {
  border: 1px solid rgba(161, 161, 161, 0.3);
}
.splide__arrows .splide__arrow svg {
  display: none;
}
.splide__arrows .splide__arrow:before {
  font-family: "Material Icons";
  font-size: 24px;
}
.splide__arrows .splide__arrow.splide__arrow--prev:before {
  content: "\e5de";
}
.splide__arrows .splide__arrow.splide__arrow--next:before {
  content: "\e5df";
}
.splide__arrows .splide__arrow:not(:disabled):hover {
  background-color: #212121;
  border-color: #212121;
  color: #fff;
}
.splide__arrows .splide__arrow:not(:disabled):hover span {
  color: #fff;
}

.splide__track {
  margin: 0 -1rem;
}
.splide__track.overflow-visible {
  overflow: visible;
}
.splide__track .splide__slide {
  padding: 0 1rem;
}

.image-slider .splide__arrows {
  position: absolute;
  z-index: 1;
  left: 1rem;
  bottom: 1rem;
}
.image-slider .splide__arrows .splide__arrow {
  background-color: #fff;
  border: none;
}

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