/* Dependencies */
/* ------------------------ Sass Variables ------------------------ */
* {
  font-family: "Open Sans", sans-serif;
}

/* ------------------------ Headings ------------------------ */
h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 6px;
  margin: 30px 0;
}

h2 {
  font-size: 45px;
  font-weight: 600;
  line-height: 1.1;
  margin: 25px 0;
  text-transform: uppercase;
  color: #AD8C32;
}

h3 {
  font-size: 45px;
  font-weight: 600;
  line-height: 1.1;
  margin: 20px 0;
}

h4 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 10px 0;
}

/* ------------------------ Copy ------------------------ */
p {
  font-size: 16px;
  line-height: 1.5;
}
p strong {
  font-weight: bold;
}

li, ol {
  font-size: 16px;
  line-height: 1.5;
}

a {
  color: #AD8C32;
  text-decoration: underline;
}
a:hover {
  color: #856c27;
}

/* ------------------------ Responsive Player Embeds ------------------------ */
.video {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  /* 16:9 */
  margin: 0 auto;
}
.video iframe, .video video {
  position: absolute;
  width: 100%;
  height: 100%;
}

.arrow-btn {
  border-radius: 0;
  color: #AD8C32;
  font-size: 14px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: 1px;
  transition: all 0.5s;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.arrow-btn .arrow {
  display: inline-block;
  width: 150px;
  height: 50px;
  position: relative;
  margin-left: 10px;
  overflow: hidden;
}
.arrow-btn .arrow:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  height: 2px;
  width: 100%;
  margin-top: -1px;
  background: #AD8C32;
  transition: all 0.5s;
}
.arrow-btn .arrow:after {
  content: "";
  position: absolute;
  width: 63px;
  height: 50px;
  right: 0;
  top: 0;
  background-image: url(../img/btn-arrow-right.png);
  background-repeat: no-repeat;
  transition: all 0.5s;
}
.arrow-btn:hover {
  color: #AD8C32;
  text-decoration: none;
}
.arrow-btn:hover .arrow:before, .arrow-btn:hover .arrow:after {
  right: 10%;
}
.arrow-btn.prev-link .arrow:after {
  background-image: url(../img/btn-arrow-left.png);
  right: auto;
  left: 0;
}
.arrow-btn.prev-link:hover .arrow:before, .arrow-btn.prev-link:hover .arrow:after {
  right: auto;
  left: 10%;
}

.btn {
  border-radius: 0;
  color: #AD8C32;
  font-size: 14px;
  font-weight: 700;
  line-height: 35px;
  letter-spacing: 1px;
  transition: all 0.5s;
  text-transform: uppercase;
  text-decoration: none;
  margin: 0;
  padding: 0 15px;
  border: 2px solid #AD8C32;
}
.btn:hover {
  color: #ffffff;
  background: #AD8C32;
}

.sprite-icon {
  height: 25px;
  background-image: url(../img/social-icons.png);
  display: inline-block;
  margin: 0 4px;
}
.sprite-icon.email {
  width: 30px;
}
.sprite-icon.email:hover {
  background-position: 0 -25px;
}
.sprite-icon.facebook {
  width: 25px;
  background-position: -42px 0;
}
.sprite-icon.facebook:hover {
  background-position: -42px -25px;
}
.sprite-icon.gold.facebook {
  background-position: -42px -25px;
}
.sprite-icon.gold.facebook:hover {
  background-position: -42px 0;
}
.sprite-icon.gold.email {
  width: 30px;
  background-position: 0 -25px;
}
.sprite-icon.gold.email:hover {
  background-position: 0 0;
}

/* ------------------------ Forms ------------------------ */
input, textarea {
  outline: none;
}

.contact-form form {
  padding-top: 15px;
}
.contact-form .row .col-md-6 {
  padding-left: 15px;
  padding-right: 15px;
}
.contact-form .form-group {
  margin-bottom: 5px;
}
.contact-form .form-control {
  border: 0;
  border-bottom: solid 1px #d0ced4;
  border-radius: 0;
  background: none;
  color: #33302E;
  padding: 4px 0px 0 0;
  background: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  margin-bottom: 15px;
}
.contact-form .form-control:focus {
  box-shadow: none;
}
.contact-form .ajax-loader {
  position: absolute !important;
  left: 50%;
}
.contact-form textarea.form-control {
  border: 1px solid #d0ced4;
  padding: 8px;
}
.contact-form label {
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  color: #33302E;
  text-transform: uppercase;
}
.contact-form .button-area {
  text-align: right;
  margin-top: 20px;
  position: relative;
}
.contact-form .button-area .wpcf7-spinner {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.contact-form ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #33302E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  text-transform: uppercase;
}
.contact-form ::-moz-placeholder {
  /* Firefox 19+ */
  color: #33302E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  text-transform: uppercase;
}
.contact-form :-ms-input-placeholder {
  /* IE 10+ */
  color: #33302E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  text-transform: uppercase;
}
.contact-form :-moz-placeholder {
  /* Firefox 18- */
  color: #33302E;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  text-transform: uppercase;
}

.animate__animated {
  opacity: 0;
}
.animate__animated.animate__slideInLeft, .animate__animated.animate__slideInRight {
  opacity: 1;
}

/* Sections */
.mobile-nav {
  display: none;
}

.navbtn {
  display: none;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
header .header-menu {
  padding: 25px 15px;
  width: 100%;
}
header .header-menu .container-fluid {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
header .header-menu .container-fluid .header-logo {
  flex: 0 0 auto;
  width: 20%;
  padding-right: 5%;
}
header .header-menu .container-fluid .header-nav {
  flex: 0 0 auto;
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .header-menu .navbar {
  padding: 0 15px 3px 0;
  justify-content: center;
}
header .header-menu .navbar-nav .menu-item > .nav-link {
  font-size: 12px;
  line-height: 1.1;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0;
  position: relative;
  margin: 0 15px;
  text-decoration: none;
  text-transform: uppercase;
}
header .header-menu .navbar-nav .menu-item > .nav-link:hover {
  text-decoration: none;
  color: #AD8C32;
}
header .header-menu .navbar-nav .menu-item > .nav-link:focus {
  outline: none;
}
header .header-menu .navbar-nav .menu-item.current-menu-item a {
  color: #AD8C32;
}
header .header-menu .navbar-nav .menu-item.current-menu-parent > a {
  color: #AD8C32;
}
header .header-menu .navbar-nav .menu-item .dropdown-item {
  text-decoration: none;
  color: #33302E;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}
header .header-menu .navbar-nav .menu-item .dropdown-item:focus {
  outline: none;
}
header .header-menu .navbar-nav .menu-item .dropdown-item:active {
  background: none;
}
header .header-menu .navbar-nav .menu-item .dropdown-item:hover {
  text-decoration: none;
  color: #AD8C32;
}
header .dropdown-toggle::after {
  border: 0;
  width: 10px;
  height: 7px;
  background-image: url(../img/dd-arrow.png);
  background-repeat: no-repeat;
  position: relative;
  top: 2px;
  margin-left: 5px;
}

.scroll-nav {
  position: fixed;
  padding: 0;
  top: -100%;
  left: 0;
  width: 100%;
  background: #33302E;
  z-index: 999;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}
.scroll-nav.active {
  top: 0;
}
.scroll-nav .header-menu {
  padding: 10px 5px;
  width: 100%;
}
.scroll-nav .header-menu .container-fluid {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.scroll-nav .header-menu .container-fluid .header-logo {
  flex: 0 0 auto;
  width: 20%;
  padding-right: 5%;
}
.scroll-nav .header-menu .container-fluid .header-nav {
  flex: 0 0 auto;
  width: 80%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.scroll-nav .header-menu .container-fluid .header-nav .header-contact {
  color: #ffffff;
  font-weight: 400;
}
.scroll-nav .header-menu .container-fluid .header-nav .header-contact .btn {
  margin-left: 10px;
}
.scroll-nav .header-menu .container-fluid .header-nav .header-contact .btn:first-child {
  margin-left: 25px;
}
.scroll-nav .header-menu .navbar {
  padding: 0 15px 3px 0;
  justify-content: flex-end;
}
.scroll-nav .header-menu .navbar-nav .menu-item > .nav-link {
  font-size: 12px;
  line-height: 1.1;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 0px;
  position: relative;
  margin: 0 12px;
  text-decoration: none;
  text-transform: uppercase;
}
.scroll-nav .header-menu .navbar-nav .menu-item > .nav-link:hover {
  text-decoration: none;
  color: #AD8C32;
}
.scroll-nav .header-menu .navbar-nav .menu-item > .nav-link:focus {
  outline: none;
}
.scroll-nav .header-menu .navbar-nav .menu-item.current-menu-item a {
  color: #AD8C32;
}
.scroll-nav .header-menu .navbar-nav .menu-item .dropdown-item {
  text-decoration: none;
  color: #33302E;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}
.scroll-nav .header-menu .navbar-nav .menu-item .dropdown-item:focus {
  outline: none;
}
.scroll-nav .header-menu .navbar-nav .menu-item .dropdown-item:active {
  background: none;
}
.scroll-nav .header-menu .navbar-nav .menu-item .dropdown-item:hover {
  text-decoration: none;
  color: #AD8C32;
}

/* ------------------------ Mobile Navigation ------------------------ */
.navbtn, .mobile-nav {
  display: none;
}

.navbtn {
  width: 40px;
  height: 25px;
  position: absolute;
  top: 40px;
  right: 25px;
  margin-top: -13px;
  margin: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  z-index: 1001;
}
.navbtn span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #ffffff;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.navbtn.open span {
  background: #AD8C32;
}

.navbtn span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.navbtn span:nth-child(2) {
  top: 10px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.navbtn span:nth-child(3) {
  top: 20px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.navbtn.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -3px;
  left: 0px;
}

.navbtn.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.navbtn.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 26px;
  left: 0px;
}

.scroll-nav .navbtn {
  top: 40px;
}
.scroll-nav .navbtn span {
  background: #AD8C32;
}

#popup-menu {
  background: #ffffff;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: -100%;
  transition: all 0.5s ease;
  opacity: 0;
  z-index: 1000;
}
#popup-menu.open {
  right: 0;
  opacity: 1;
}
#popup-menu .inside {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
}
#popup-menu .navbar-nav {
  margin-bottom: 20px;
}
#popup-menu .navbar-nav .menu-item > .nav-link {
  font-size: 12px;
  padding: 10px 0;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  line-height: 1.1;
  display: inline-block;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
#popup-menu .navbar-nav .menu-item > .nav-link:focus {
  outline: none;
}
#popup-menu .navbar-nav .menu-item:last-child > .nav-link {
  margin-right: 0;
}
#popup-menu .navbar-nav .current-menu-item .nav-link {
  color: #AD8C32;
}
#popup-menu .close-btn {
  position: absolute;
  top: 25px;
  right: 25px;
}
#popup-menu .close-btn .navbtn {
  top: 0;
  right: 0;
}

.booking-bar {
  position: relative;
  transform: translateY(-30px);
  z-index: 1;
}
.booking-bar.home-bar {
  transform: translateY(-25px);
}

.booking-form {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
  background: #ffffff;
  padding: 0;
  margin: 0;
}
.booking-form .form-group {
  flex: 0 0 35%;
  max-width: 35%;
  margin: 0;
  padding: 0 15px;
  position: relative;
}
.booking-form .form-group:first-child {
  border-right: 1px solid #C5C5C5;
}
.booking-form .form-group .form-control {
  border: 0;
  position: relative;
  text-transform: uppercase;
  margin: 0;
  height: 60px;
  line-height: 60px;
  padding: 0;
}
.booking-form .form-group label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  font-size: 9px;
  text-transform: uppercase;
  color: #33302E;
  padding-left: 15px;
  letter-spacing: 0;
  font-weight: 600;
}
.booking-form .form-btn {
  flex: 0 0 30%;
  max-width: 30%;
  border: 0;
  background: #AD8C32;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  text-transform: uppercase;
  letter-spacing: 0.24444444px;
  height: 60px;
  line-height: 60px;
  padding: 0 25px;
  text-align: center;
}

.slidebox {
  position: fixed;
  top: 50%;
  right: -100%;
  transform: translateY(-50%);
  background: #ffffff;
  padding: 15px 20px;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  color: #AD8C32;
  font-weight: 600;
  z-index: 100;
  border: 2px solid #AD8C32;
  border-right: 0;
  font-size: 13px;
  cursor: pointer;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease;
}
.slidebox.active {
  right: 0;
}

.formpop {
  position: fixed;
  top: 50%;
  right: -100%;
  z-index: 100;
  transform: translateY(-50%);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease;
  background: #ffffff;
  padding: 30px 20px;
  min-width: 320px;
}
.formpop.active {
  right: 0;
}
.formpop .popclose {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-weight: 700;
  font-size: 12px;
}
.formpop h3 {
  font-size: 16px;
  font-weight: 400;
  line-height: 33px;
  margin: 0 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 1.7625px;
  color: #AD8C32;
}
.formpop .mc-field-group input {
  border: 0;
  border-bottom: solid 1px #d0ced4;
  border-radius: 0;
  background: none;
  color: #595660;
  padding: 4px 0px 0 0;
  background: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  margin-bottom: 15px;
  width: 100%;
}
.formpop .mc-field-group label {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.8580748px;
  color: #33302E;
  text-transform: uppercase;
  display: block;
}
.formpop .datefield input {
  width: auto;
}
.formpop .button {
  border-radius: 0;
  background: transparent;
  color: #595660;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  text-align: center;
  letter-spacing: 1.7295812px;
  padding: 10px;
  border: 1px solid #AD8C32;
  transition: all 0.5s;
  text-transform: uppercase;
  display: block;
  text-align: center;
  width: 100%;
}
.formpop .button:hover {
  background: #AD8C32;
  color: #ffffff;
}

footer {
  position: relative;
  top: 0;
  padding: 50px 0 0 0;
  background-color: #33302E;
  background-image: url(../img/footer-bg.png);
  background-repeat: no-repeat;
  background-position: bottom center;
}
footer h3 {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;
  margin: 20px 0 5px 0;
}
footer .footer-mask {
  margin-bottom: -1px;
}
footer .footer-mask img {
  width: 100%;
  height: auto;
}
footer .copyright-row {
  color: #ffffff;
  /*background-color: $grey;
  background-image: url(../img/footer-bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  */
  font-size: 11px;
  padding: 10px 0;
  text-align: center;
  text-transform: uppercase;
}
footer .footer-main {
  color: #ffffff;
}
footer .footer-main .foot-office, footer .footer-main .contact-detail {
  font-size: 12px;
  margin: 3px 0;
  text-transform: uppercase;
}
footer .footer-main .foot-office strong, footer .footer-main .contact-detail strong {
  font-weight: 700;
}
footer .footer-main .foot-office a, footer .footer-main .contact-detail a {
  color: #ffffff;
  text-decoration: none;
}
footer .footer-main .foot-office a:hover, footer .footer-main .contact-detail a:hover {
  color: #AD8C32;
}
footer .footer-main .social-links {
  padding-top: 20px;
}
footer .footer-main .col-md-8 {
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
}
footer .footer-main .col-md-8 .foot-nav-col {
  padding: 15px;
  flex: 0 0 50%;
  max-width: 50%;
  font-size: 12px;
  text-transform: uppercase;
}
footer .footer-main .col-md-8 .foot-nav-col a {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 12px;
  text-decoration: none;
}
footer .footer-main .col-md-8 .foot-nav-col a:hover {
  color: #AD8C32;
}
footer .footer-main .col-md-8 .foot-nav-col ul {
  list-style: none;
  margin: 0 0 25px 0;
  padding: 0;
}
footer .footer-main .col-md-8 .foot-nav-col ul li {
  font-size: 13px;
}
footer .footer-main .col-md-8 .foot-nav-col h3 {
  margin: 0 0 5px 0;
}
footer .footer-nav {
  columns: 3;
  list-style: none;
}
footer .footer-nav .menu-item a {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 14px;
}

/* Pages */
.wp-block-image.size-full {
  padding: 0 25px;
}

.blog-posts {
  padding: 80px 0;
  background-image: url(../img/backgrounds/flower-bg.jpg);
  background-position: bottom center;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.blog-posts .b-post {
  position: relative;
  margin: 0 0 80px 0;
}
.blog-posts .b-post .b-post-img {
  position: absolute;
  right: 0;
  width: 50%;
  padding-left: 8%;
  height: 100%;
}
.blog-posts .b-post .b-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.blog-posts .b-post .b-post-content {
  padding-right: 2%;
}
.blog-posts .b-post .b-post-content .post-info {
  color: #000000;
  text-transform: uppercase;
  font-weight: 600;
}
.blog-posts .b-post .b-post-content .post-info a {
  text-decoration: none;
  color: #000000;
}
.blog-posts .b-post .b-post-content h2, .blog-posts .b-post .b-post-content h2 a {
  font-size: 40px;
  color: #AD8C32;
  text-decoration: none;
  margin: 30px 0;
}
.blog-posts .b-post .b-post-content h2:hover, .blog-posts .b-post .b-post-content h2 a:hover {
  color: #000000;
}
.blog-posts .b-post .b-post-content .btn-area {
  padding-top: 25px;
}
.blog-posts .b-post.alt .b-post-img {
  right: auto;
  left: 0;
  padding-left: 0;
  padding-right: 8%;
}
.blog-posts .b-post.alt .b-post-content {
  padding-right: 0;
  padding-left: 2%;
}

.page-28 .content-tabs {
  background-repeat: no-repeat;
  background-position: right 10%;
  background-image: url(../img/backgrounds/dot-bg.png);
  background-size: 45% auto;
}

/*.service-content {
    background-image: url(../img/backgrounds/flower-bg.jpg);
    background-position: bottom center;
    background-size: 100% auto;
    background-repeat: no-repeat;
}*/
.single-service-content {
  padding: 80px 0;
}
.single-service-content .service-side-image img {
  width: 100%;
  height: auto;
}
.single-service-content h2 {
  font-size: 36px;
}
.single-service-content h3 {
  font-size: 20px;
  color: #33302E;
  text-transform: uppercase;
  margin: 15px 0;
}

.services-dropdown {
  padding-top: 50px;
}
.services-dropdown .form-select {
  width: 100%;
  border: 2px solid #707070;
  padding: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #707070;
}

.contact-content {
  padding: 80px 0;
}
.contact-content h2 {
  margin-top: 0;
  font-size: 32px;
  font-weight: 700;
}
.contact-content h3 {
  font-size: 18px;
  color: #AD8C32;
  font-weight: 600;
  margin: 30px 0 10px 0;
}
.contact-content a {
  color: #33302E;
  text-decoration: none;
}
.contact-content a:hover {
  color: #AD8C32;
}

.related-stories, .events-content, .upcoming-events {
  padding: 40px 0 80px 0;
  overflow: hidden;
  text-align: center;
}
.related-stories h2, .events-content h2, .upcoming-events h2 {
  border-top: 2px solid #AD8C32;
  text-align: left;
  padding-top: 25px;
}
.related-stories .story-box, .events-content .story-box, .upcoming-events .story-box {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
  background: #ffffff;
  height: 100%;
  margin: 15px;
}
.related-stories .story-box a, .events-content .story-box a, .upcoming-events .story-box a {
  text-decoration: none;
  display: block;
  transition: all 0.6s;
  width: 100%;
  height: 100%;
}
.related-stories .story-box a:hover, .events-content .story-box a:hover, .upcoming-events .story-box a:hover {
  opacity: 0.8;
}
.related-stories .story-box .story-img img, .events-content .story-box .story-img img, .upcoming-events .story-box .story-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/0.75;
  object-fit: cover;
}
.related-stories .story-box .story-wrap, .events-content .story-box .story-wrap, .upcoming-events .story-box .story-wrap {
  text-align: left;
  padding: 25px 20px 0 20px;
}
.related-stories .story-box .story-wrap h3, .events-content .story-box .story-wrap h3, .upcoming-events .story-box .story-wrap h3 {
  font-weight: 600;
  text-transform: uppercase;
  color: #AD8C32;
  margin: 12px 0;
  font-size: 24px;
  line-height: 1.2;
}
.related-stories .story-box .story-wrap .intro, .events-content .story-box .story-wrap .intro, .upcoming-events .story-box .story-wrap .intro {
  font-size: 12px;
  line-height: 1.3;
  color: #000000;
}
.related-stories .story-box .story-wrap .b-date, .events-content .story-box .story-wrap .b-date, .upcoming-events .story-box .story-wrap .b-date {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 10px;
  color: #000000;
}

.events-content {
  padding-top: 80px;
}

.post-page header {
  background: #33302E;
}
.post-page #page_wrap .single-content {
  padding: 200px 0 80px 0;
}
.post-page #page_wrap .single-content .single-info {
  padding: 12px 0 0 0;
}
.post-page #page_wrap .single-content .single-info .date-text {
  font-size: 16px;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  color: #33302E;
}
.post-page #page_wrap .single-content .single-info h2 {
  margin: 8px 0 25px 0;
}

.pagination-links {
  position: relative;
  padding-top: 50px;
  display: flex;
  width: 100%;
}
.pagination-links .arrow-btn {
  display: flex;
}
.pagination-links .arrow-btn a {
  text-decoration: none;
  display: inline-block;
  margin: 0 10px;
}
.pagination-links .arrow-btn .arrow {
  margin: 0;
}
.pagination-links .next-link {
  position: absolute;
  right: 0;
}

.pagination-bar {
  padding-top: 40px;
}
.pagination-bar .pagination {
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
}
.pagination-bar .pagination .nav-links a {
  display: inline-block;
  margin: 0 3px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
}
.pagination-bar .pagination .nav-links a:hover {
  color: #AD8C32;
}

.service-content .additional_content {
  margin-top: -80px;
}

/* WP Blocks */
/* ------------- WP Editor Styles ------------- */
h1.editor-post-title {
  color: #000000 !important;
  font-size: 45px;
  line-height: 1.3;
  font-weight: 700;
}

/* ------------- Page Hero ------------- */
.page-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  max-height: 95vh;
}
.page-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: url(../img/hero-dark-mask.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.page-hero .hero-title {
  position: absolute;
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
  padding-bottom: 90px;
}
.page-hero .hero-title .hero-line {
  height: 0vh;
  width: 2px;
  background: #AD8C32;
  display: inline-block;
  transition: all 1.5s ease;
}
.page-hero .hero-title .hero-sep {
  display: inline-block;
}
.page-hero .hero-title h1 {
  color: #CAD6BF;
  text-align: center;
}
.page-hero .hero-title.animate__fadeIn .hero-line {
  height: 15vh;
}
.page-hero img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-hero .hero-mask {
  position: absolute;
  bottom: -2px;
  width: 100%;
  left: 0;
  z-index: 2;
}

/* ------------- Page Intro ------------- */
.page-intro {
  padding: 80px 0 0 0;
  overflow: hidden;
  text-align: center;
}
.page-intro .bot-pad {
  padding-bottom: 80px;
}
.page-intro .intro-icon {
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-name: icon-bounce;
  animation-timing-function: cubic-bezier(0.28, 0.84, 0.42, 1);
}
@keyframes icon-bounce {
  0% {
    transform: scale(1, 1) translateY(0);
  }
  10% {
    transform: scale(1.1, 0.9) translateY(0);
  }
  30% {
    transform: scale(0.9, 1.1) translateY(-40px);
  }
  50% {
    transform: scale(1.05, 0.95) translateY(0);
  }
  57% {
    transform: scale(1, 1) translateY(-5px);
  }
  64% {
    transform: scale(1, 1) translateY(0);
  }
  100% {
    transform: scale(1, 1) translateY(0);
  }
}

/* ------------- Staggered Content ------------- */
.staggered-content {
  padding-top: 80px;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: bottom center;
}
.staggered-content .title-block {
  padding-bottom: 80px;
}
.staggered-content .sc-row {
  padding-bottom: 80px;
}
.staggered-content .sc-row .sc-content-area {
  display: flex;
  align-items: center;
}
.staggered-content .sc-row .sc-content-area .inner {
  padding: 0 25px;
}
.staggered-content .sc-row .sc-content-area ul {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}
.staggered-content .sc-row .sc-content-area ul li {
  margin: 0 0 12px 0;
}
.staggered-content .sc-row .sc-content-area ul.twocol {
  columns: 2;
}
.staggered-content .sc-row .sc-content-area .btn-area {
  padding-top: 20px;
}
.staggered-content .sc-row .sc-img {
  position: relative;
  padding: 0 25px;
}
.staggered-content .sc-row .sc-img .icon {
  position: absolute;
  top: 1vw;
  right: -1vw;
  width: 8vw;
}
.staggered-content .sc-row .sc-img .icon img {
  width: 100%;
  height: auto;
}
.staggered-content h2 {
  margin: 0 0 30px 0;
}
.staggered-content .sep-row {
  margin-bottom: 80px;
  position: relative;
}
.staggered-content .sep-row .line {
  position: absolute;
  top: 50%;
  margin-top: -1px;
  width: 50%;
  height: 2px;
  left: 0;
  background: #AD8C32;
}
.staggered-content .sep-row .line.alt {
  left: auto;
  right: 0;
}
.staggered-content .sep-row .col-12 {
  display: flex;
  justify-content: center;
}
.staggered-content.fullImage {
  margin-bottom: -80px;
  padding-bottom: 80px;
}
.staggered-content .sc-full-row {
  display: flex;
  justify-content: flex-end;
  position: relative;
  margin: 0 0 80px 0;
}
.staggered-content .sc-full-row.alt {
  justify-content: flex-start;
}
.staggered-content .sc-full-row .sc-row {
  padding-bottom: 0;
}
.staggered-content .sc-full-row .content-wrap {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  height: 100%;
  display: flex;
  align-items: center;
}
.staggered-content .sc-full-row .side-image {
  width: 45%;
}

/* ------------- Tribes Section ------------- */
.tribes-section {
  padding: 80px 0;
  color: #ffffff;
  background-image: url(../img/siksikaitsitapi-bg.png);
  background-position: bottom right;
  background-repeat: no-repeat;
  background-color: #33302E;
  background-size: 33vw auto;
}
.tribes-section p {
  color: #ffffff;
}
.tribes-section .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
.tribes-section .container-fluid .row {
  margin-left: 0;
  margin-right: 0;
}
.tribes-section .line-title {
  position: relative;
  margin-bottom: 30px;
  text-align: center;
}
.tribes-section .line-title:before {
  content: "";
  height: 2px;
  width: 50%;
  background: #AD8C32;
  top: 50%;
  left: 0;
  margin-top: -1px;
  position: absolute;
}
.tribes-section .line-title h2 {
  text-align: center;
  color: #CAD6BF;
  padding: 0 5%;
  background: #33302E;
  z-index: 1;
  display: inline-block;
  position: relative;
}
.tribes-section .tribe-link {
  margin: 30px 0;
  padding: 0 10px;
  text-align: center;
}
.tribes-section .tribe-link h3 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
  color: #AD8C32;
  margin: 20px 0 0 0;
  line-height: 1;
}
.tribes-section .tribe-link h4 {
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 600;
  color: #CAD6BF;
  margin: 0;
  line-height: 1;
}

/* ------------- Service List ------------- */
.service-list {
  padding: 80px 0;
}
.service-list .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
.service-list .container-fluid .row {
  margin-left: 0;
  margin-right: 0;
}
.service-list .line-title {
  position: relative;
  margin-bottom: 30px;
  text-align: center;
}
.service-list .line-title:before {
  content: "";
  height: 2px;
  width: 50%;
  background: #AD8C32;
  top: 50%;
  right: 0;
  margin-top: -1px;
  position: absolute;
}
.service-list .line-title h2 {
  text-align: center;
  color: #AD8C32;
  padding: 0 5%;
  background: #ffffff;
  z-index: 1;
  display: inline-block;
  position: relative;
}
.service-list h3 {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 30px;
  min-height: 60px;
  padding: 0 60px;
}
.service-list .serv-item {
  text-align: center;
  margin: 30px 0;
}
.service-list .serv-item .btn-area {
  display: flex;
  justify-content: center;
}
.service-list #srvlist_6 h3 {
  padding: 0 30px;
}

/* ------------- Image Carousel ------------- */
.image-carousel {
  width: 100%;
  overflow: hidden;
  margin-top: 30px;
  position: relative;
}
.image-carousel:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url(../img/carousel-overlay.png);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}
.image-carousel .slider-controls {
  position: absolute;
  width: 100%;
  bottom: 20px;
  left: 0;
  display: flex;
  justify-content: center;
  z-index: 2;
}
.image-carousel .slider-controls span {
  display: inline-block;
  width: 53px;
  height: 53px;
  background-image: url(../img/carousel-sprite.png);
  background-position: -56px 0;
  background-repeat: no-repeat;
  margin: 0 5px;
  cursor: pointer;
}
.image-carousel .slider-controls span.active {
  background-position: 0 0;
}
.image-carousel .slider-wrap {
  width: auto;
  position: relative;
  left: 0;
  transition: all 0.6s;
  display: flex;
}
.image-carousel .slide {
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
}
.image-carousel .slide .caption {
  color: #ffffff;
  width: 100%;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 24px;
  z-index: 1;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 80px;
  letter-spacing: 2px;
}
.image-carousel .slide img {
  width: 100%;
  height: auto;
}

/* ------------- Latest News ------------- */
.latest-news {
  padding: 80px 0;
  overflow: hidden;
  text-align: center;
  background-image: url(../img/backgrounds/story-bg.jpg);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.latest-news .line-title {
  position: relative;
  margin-bottom: 30px;
  text-align: center;
}
.latest-news .line-title:before {
  content: "";
  height: 2px;
  width: 50%;
  background: #AD8C32;
  top: 50%;
  left: 0;
  margin-top: -1px;
  position: absolute;
}
.latest-news .line-title h2 {
  text-align: center;
  color: #AD8C32;
  padding: 0 5%;
  background: #ffffff;
  z-index: 1;
  display: inline-block;
  position: relative;
}
.latest-news .story-box {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
  background: #ffffff;
  height: 100%;
  margin: 15px;
}
.latest-news .story-box a {
  text-decoration: none;
  display: block;
  transition: all 0.6s;
  width: 100%;
  height: 100%;
}
.latest-news .story-box a:hover {
  opacity: 0.8;
}
.latest-news .story-box .story-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/0.75;
  object-fit: cover;
}
.latest-news .story-box .story-wrap {
  text-align: left;
  padding: 25px 20px 0 20px;
}
.latest-news .story-box .story-wrap h3 {
  font-weight: 600;
  text-transform: uppercase;
  color: #AD8C32;
  margin: 12px 0;
  font-size: 24px;
  line-height: 1.2;
}
.latest-news .story-box .story-wrap .intro {
  font-size: 12px;
  line-height: 1.3;
  color: #000000;
}
.latest-news .story-box .story-wrap .b-date {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 10px;
  color: #000000;
}

/* ------------- CTA Section ------------- */
.cta-section {
  padding: 80px 0;
  background: #AD8C32;
  color: #ffffff;
}
.cta-section.dark {
  background: #33302E;
}
.cta-section h2 {
  margin-top: 0;
  color: #CAD6BF;
}
.cta-section .btn-area {
  padding-top: 15px;
}
.cta-section .btn-area .text-btn {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cta-section .btn-area .text-btn:hover {
  color: #CAD6BF;
}

/* ------------- Content Tabs ------------- */
.content-tabs {
  padding: 80px 0;
}
.content-tabs .tab-nav {
  border-top: 2px solid #AD8C32;
  border-bottom: 2px solid #AD8C32;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
}
.content-tabs .tab-nav .tab-item {
  cursor: pointer;
  color: #AD8C32;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 24px;
  padding: 8px 25px;
}
.content-tabs .tab-nav .tab-item.active {
  text-decoration: underline;
}
.content-tabs .tab-nav .tab-item:hover {
  color: #856c27;
}
.content-tabs .tab-content {
  padding-top: 50px;
}
.content-tabs .tab-content .tab-c {
  display: none;
  flex-wrap: wrap;
}
.content-tabs .tab-content .tab-c.active {
  display: flex;
}
.content-tabs .tab-content .tab-c .content {
  flex: 0 0 70%;
  max-width: 70%;
  padding-right: 8%;
}
.content-tabs .tab-content .tab-c .content h2 {
  margin-top: 0;
}
.content-tabs .tab-content .tab-c .content h3 {
  color: #AD8C32;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 30px;
}
.content-tabs .tab-content .tab-c .content .btn-area {
  padding-top: 35px;
}
.content-tabs .tab-content .tab-c .image {
  flex: 0 0 30%;
  max-width: 30%;
}
.content-tabs .tab-content .tab-c.full h2 {
  text-align: center;
}
.content-tabs .tab-content .tab-c.full .content {
  width: 100%;
  max-width: 100%;
}
.content-tabs .tab-content .tab-c.full.active {
  display: block;
}

/* ------------- Content Row ------------- */
.content-row {
  padding: 80px 0;
}
.content-row h2 {
  margin-top: 0;
  text-align: center;
  background: #ffffff;
}
.content-row .btn-area {
  padding-top: 20px;
}
.content-row .border-title {
  text-align: center;
  position: relative;
  margin-bottom: 25px;
}
.content-row .border-title:before {
  content: "";
  height: 2px;
  width: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-1px);
  background: #AD8C32;
}
.content-row .border-title h2 {
  padding: 0 5%;
  margin: 0;
  display: inline-block;
  position: relative;
  z-index: 1;
}

/* ------------- Full Image ------------- */
.full-image {
  padding-bottom: 0 !important;
}
.full-image img {
  width: 100%;
  height: auto;
}

/* ------------- Full Video ------------- */
.full-video {
  padding: 80px 0;
}

/* ------------- Video List ------------- */
.video-list {
  padding: 80px 0;
}
.video-list.grey {
  background: rgba(51, 48, 46, 0.1);
}
.video-list h2 {
  text-align: center;
  margin: 0 0 30px 0;
}
.video-list .video-item {
  padding: 25px 0;
}
.video-list .video-item .video {
  margin-bottom: 10px;
}
.video-list .video-item h4 {
  text-align: center;
  font-weight: 600;
}

/* ------------- File List ------------- */
.file-list {
  padding: 80px 0;
}
.file-list.grey {
  background: rgba(51, 48, 46, 0.1);
}
.file-list h2 {
  text-align: center;
  margin: 0 0 30px 0;
}
.file-list .col-lg-4 {
  padding-top: 15px;
  padding-bottom: 15px;
}
.file-list .file-box {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
  background: #ffffff;
  height: 100%;
  margin: 0;
}
.file-list .file-box .file-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/0.6;
  object-fit: cover;
}
.file-list .file-box .file-wrap {
  text-align: center;
  padding: 15px 20px;
}
.file-list .file-box .file-wrap h3 {
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 12px 0;
  font-size: 18px;
  line-height: 1.2;
}

/* ------------- Leadership Team ------------- */
.leadership-team {
  padding: 60px 0;
}
.leadership-team .col-lg-4 {
  margin: 20px 0;
}
.leadership-team .leader-item {
  background: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
  height: 100%;
}
.leadership-team .leader-item .image {
  padding: 15px;
  text-align: center;
}
.leadership-team .leader-item .image img {
  width: auto;
  height: 100%;
  max-height: 190px;
}
.leadership-team .leader-item .details {
  padding: 15px;
}
.leadership-team .leader-item .details h3 {
  font-size: 20px;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.1;
  font-weight: bold;
  color: #AD8C32;
}
.leadership-team .leader-item .details .position {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 500;
  margin-top: 5px;
}
.leadership-team .leader-item .details .blackfoot-name {
  padding: 15px 0 0 0;
}
.leadership-team .leader-item .details .blackfoot-name .name {
  font-size: 17px;
  text-transform: uppercase;
  margin: 0 0 5px 0;
  line-height: 1.1;
  font-weight: bold;
}
.leadership-team .leader-item .details .blackfoot-name .translation {
  font-size: 14px;
}

/* ------------- Staff Row ------------- */
.staff-row {
  padding: 60px 0;
}
.staff-row .content-area {
  display: flex;
  align-items: center;
}
.staff-row .content-area .inner {
  padding-left: 30px;
}
.staff-row .content-area .inner h2 {
  margin: 0 0 5px 0;
}
.staff-row .content-area .inner h4 {
  font-weight: 600;
  margin: 5px 0 15px 0;
  font-size: 14px;
  text-transform: uppercase;
}
.staff-row .content-area .inner .blackfoot-name {
  padding: 0 0 15px 0;
}
.staff-row .content-area .inner .blackfoot-name .name {
  font-size: 20px;
  text-transform: uppercase;
  margin: 0 0 5px 0;
  line-height: 1.1;
  font-weight: bold;
}
.staff-row .content-area .inner .blackfoot-name .translation {
  font-size: 15px;
}

/* ------------- Tribe Row ------------- */
.tribe-row {
  padding: 60px 0;
}
.tribe-row .btn-area {
  padding-top: 20px;
}

.gov-subtitle {
  text-align: center;
  text-transform: uppercase;
  font-size: 30px;
  margin: 10px 0 0 0;
}

/* ------------- Map CTA Block ------------- */
.map-block {
  padding: 60px 0;
}
.map-block .map-embed {
  padding-right: 40px;
}
.map-block .map-embed .embed-container {
  position: relative;
  padding-bottom: 75%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.map-block .map-embed .embed-container iframe, .map-block .map-embed .embed-container object, .map-block .map-embed .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.map-block .map-content {
  display: flex;
  align-items: center;
}
.map-block .map-content h2 {
  margin-top: 0;
}

/* ------------- Full Map Block ------------- */
.full-map-block {
  padding: 0 0 60px 0;
}
.full-map-block .map-embed .embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.full-map-block .map-embed .embed-container iframe, .full-map-block .map-embed .embed-container object, .full-map-block .map-embed .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ------------- Download CTA ------------- */
.download-cta {
  padding: 60px 0;
}
.download-cta .sc-content-area {
  display: flex;
  align-items: center;
}
.download-cta .sc-content-area h2 {
  margin-top: 0;
}

/* ------------- Responsive ------------- */
@media (max-width: 1024px) {
  .page-hero .hero-title.animate__fadeIn .hero-line {
    height: 8vh;
  }

  .page-intro {
    padding-top: 50px;
  }

  .staggered-content {
    padding-top: 50px;
  }
  .staggered-content .sep-row {
    margin-bottom: 50px;
  }
  .staggered-content .sc-row .sc-img, .staggered-content .sc-row .sc-content-area .inner {
    padding: 0;
  }

  .image-carousel .slide .caption {
    font-size: 17px;
  }

  .posts-wrap .row .col-md-6 {
    padding-bottom: 15px;
  }

  .latest-news .story-box {
    margin: 0;
  }
  .latest-news .story-box .story-wrap {
    padding: 15px;
  }

  .staggered-content .sc-full-row {
    flex-wrap: wrap;
    margin: 0 0 50px 0;
  }
  .staggered-content .sc-full-row .side-image {
    width: 100%;
    padding: 15px;
  }
  .staggered-content .sc-full-row .content-wrap {
    position: static;
    transform: none;
  }

  .content-tabs .tab-nav .tab-item {
    font-size: 14px;
  }

  .map-block .map-content {
    padding-top: 30px;
  }

  .map-block .map-embed {
    padding-right: 15px;
  }
}
@media (max-width: 480px) {
  .page-hero {
    height: 400px;
  }
  .page-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .staggered-content .sep-row .line {
    display: none;
  }

  .staggered-content .sc-row .sc-img {
    padding-bottom: 20px;
  }

  .image-carousel .slider-controls span {
    width: 25px;
    height: 25px;
    margin: 0 5px;
    background: none;
    border: 3px solid #CAD6BF;
    border-radius: 13px;
  }
  .image-carousel .slider-controls span.active {
    background: #CAD6BF;
  }

  .image-carousel .slide .caption {
    bottom: 33px;
  }

  .image-carousel .slider-controls {
    bottom: 5px;
  }

  .content-tabs .tab-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .content-tabs .tab-nav .tab-item {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 8px;
  }

  .content-tabs .tab-content .tab-c .content {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0;
  }

  .content-tabs .tab-content .tab-c .image {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 25px 0 0 0;
  }

  .content-tabs .tab-content .tab-c.full h2 {
    text-align: left;
  }

  .content-tabs .tab-content .tab-c .content h3 {
    font-size: 20px;
  }

  .content-row {
    padding: 40px 0;
  }

  .content-row h2 {
    text-align: left;
  }

  .download-cta .sc-content-area {
    padding-top: 25px;
  }

  .full-map-block .map-embed .embed-container, .map-block .map-embed .embed-container {
    padding-bottom: 125%;
  }
}
/* --------------------------------------------------------------------------
Media Queries.
-------------------------------------------------------------------------- */
@media (max-width: 1415px) {
  header .header-menu .navbar-nav .menu-item > .nav-link {
    margin: 0 10px;
  }
}
@media (max-width: 1340px) {
  header .header-menu .navbar-nav .menu-item > .nav-link {
    font-size: 11px;
  }
}
@media (max-width: 1270px) {
  .navbtn, .mobile-nav {
    display: block;
  }

  .navbar-expand-lg .navbar-collapse {
    display: none !important;
  }

  .scroll-nav .navbtn {
    top: 24px;
  }

  header .header-menu .container-fluid .header-nav, .scroll-nav .header-menu .container-fluid .header-nav {
    justify-content: flex-end;
    padding-right: 60px;
  }
}
@media (max-width: 1024px) {
  .navbtn, .mobile-nav {
    top: 30px;
  }

  .scroll-nav .navbtn {
    top: 15px;
  }

  #popup-menu .navbar-nav .menu-item > .nav-link {
    font-size: 14px;
  }

  .navbar-nav .dropdown-menu {
    position: relative !important;
    transform: none !important;
    top: -15px !important;
    margin: 0;
    padding: 0;
    border: 0;
    text-align: center;
  }
  .navbar-nav .dropdown-menu .dropdown-item {
    text-decoration: none;
    font-size: 14px;
  }
  .navbar-nav .dropdown-menu .current-menu-item .dropdown-item {
    color: #AD8C32;
  }

  h1 {
    font-size: 40px;
    margin: 15px 0;
  }

  h2 {
    font-size: 33px;
    margin: 15px 0;
  }

  footer .footer-main .col-md-8 .foot-nav-col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 480px) {
  header .header-menu .container-fluid .header-logo {
    width: 35%;
    padding-right: 0;
  }
  header .header-menu .container-fluid .header-nav {
    width: 65%;
  }

  .scroll-nav .header-menu .container-fluid .header-logo {
    width: 25%;
    padding-right: 0;
  }
  .scroll-nav .header-menu .container-fluid .header-nav {
    width: 75%;
  }

  .scroll-nav .navbtn {
    top: 12px;
  }

  .arrow-btn {
    line-height: 25px;
  }

  h1 {
    font-size: 30px;
    margin: 15px 0;
  }

  h2 {
    font-size: 26px;
    margin: 15px 0;
  }

  footer .footer-main .col-md-8 .foot-nav-col {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 15px 0;
  }

  .blog-posts .b-post {
    margin: 0 0 40px 0;
  }

  .blog-posts .b-post .b-post-img, .blog-posts .b-post.alt .b-post-img {
    position: static;
    padding: 0 15px 20px 15px;
    width: 100%;
    height: auto;
  }

  .blog-posts .b-post .b-post-content h2, .blog-posts .b-post .b-post-content h2 a {
    font-size: 26px;
    margin: 15px 0;
  }

  .single-service-content {
    padding: 50px 0;
  }

  .related-stories, .events-content, .upcoming-events {
    padding: 0 0 40px 0;
  }

  .single-service-content h2 {
    font-size: 26px;
  }
}

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