@import url("https://fonts.googleapis.com/css2?family=Bree+Serif&family=Crimson+Text&family=Patrick+Hand&family=Righteous&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cinzel+Decorative&family=Poppins&family=Sacramento&display=swap");
/*Data Overlay*/
/*------------------------*/
[data-overlay] {
  position: relative;
  z-index: 9;
}

[data-overlay]:before {
  position: absolute;
  content: "";
  background-color: #000000;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -99;
}

[data-overlay="1"]:before {
  opacity: 0.1;
}

[data-overlay="2"]:before {
  opacity: 0.2;
}

[data-overlay="3"]:before {
  opacity: 0.3;
}

[data-overlay="4"]:before {
  opacity: 0.4;
}

[data-overlay="5"]:before {
  opacity: 0.5;
}

[data-overlay="6"]:before {
  opacity: 0.6;
}

[data-overlay="7"]:before {
  opacity: 0.7;
}

[data-overlay="8"]:before {
  opacity: 0.8;
}

/*-------------------------*/
.header {
  position: relative;
  width: 100%;
  z-index: 1200;
}
.main_header {
  background: rgba(0, 0, 0, 0.85);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}
@media (max-width: 576px) {
  .main_header {
    padding: 20px 0;
  }
}
.main_header .header_list_block {
  display: flex;
  align-items: center;
  justify-content: end;
}
.main_header .header_list_block ul {
  display: flex;
  align-items: center;
}
.main_header .header_list_block ul li {
  padding-right: 20px;
}
.main_header .header_list_block ul li a {
  color: #fff;
  font-size: 15px;
  text-decoration: none;
}
@media (min-width: 1200px) {
  .main_header .header_list_block ul li a {
    font-size: 18px;
  }
}
.main_header .header_list_block ul li a:not(:last-child) {
  border: 1px solid #fff;
  padding: 5px;
}
.main_header .header_list_block ul li a:hover, .main_header .header_list_block ul li a:focus {
  color: #e41b32;
}

/*--Contact Side Menu--*/
#contact-side-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 50px 10px;
  width: 350px;
  height: 100%;
  overflow-y: scroll;
  background: #ffffff;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -moz-transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -ms-transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -o-transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  border-left: 1.5px solid #e41b32;
}
#contact-side-nav .contact_side_menu {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 20px;
  height: 44px;
  width: 44px;
  line-height: 0;
  padding: 0 !important;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
#contact-side-nav .contact_side_menu:hover span::before, #contact-side-nav .contact_side_menu:hover span::after {
  content: "";
  width: 35px;
  height: 2px;
  background: #606C38;
  position: absolute;
  left: 0;
}
#contact-side-nav .contact_side_menu:hover span::before {
  animation: spin 0.65s ease-in-out;
}
#contact-side-nav .contact_side_menu:hover span::after {
  animation: spined 0.65s ease-in-out;
}
#contact-side-nav .contact_side_menu span {
  width: 35px;
}
#contact-side-nav .contact_side_menu span::before, #contact-side-nav .contact_side_menu span::after {
  width: 35px;
}
#contact-side-nav .contact_side_menu.show {
  visibility: visible;
  opacity: 1;
}
#contact-side-nav span {
  top: 18px !important;
  left: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0;
  text-indent: 0;
}
#contact-side-nav span::before, #contact-side-nav span::after {
  width: 35px;
}

.contact_side_menu {
  cursor: pointer;
  text-decoration: none;
  z-index: 1003;
  position: relative;
  display: block;
  margin: 0 auto;
  cursor: pointer;
  margin-top: -14px;
}
.contact_side_menu.active.show span::before, .contact_side_menu.active.show span::after {
  background: #081b3a;
}
.contact_side_menu.active span {
  background: transparent;
}
.contact_side_menu.active span::before {
  top: 0;
  -webkit-transform: rotateZ(45deg);
  -moz-transform: rotateZ(45deg);
  -ms-transform: rotateZ(45deg);
  -o-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}
.contact_side_menu.active span::after {
  bottom: 0;
  -webkit-transform: rotateZ(-45deg);
  -moz-transform: rotateZ(-45deg);
  -ms-transform: rotateZ(-45deg);
  -o-transform: rotateZ(-45deg);
  transform: rotateZ(-45deg);
}
.contact_side_menu:hover, .contact_side_menu:focus, .contact_side_menu:active {
  outline: none;
  border-bottom: none !important;
}
.contact_side_menu span {
  position: relative;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  width: 30px;
  height: 2px;
  text-transform: uppercase;
  text-indent: -55px;
  background: #e41b32;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.contact_side_menu span::before, .contact_side_menu span::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #e41b32;
  position: absolute;
  right: 0;
  -webkit-transition: 0.1s;
  -o-transition: 0.1s;
  transition: 0.1s;
}
.contact_side_menu span::before {
  top: -7px;
  width: 20px;
}
.contact_side_menu span::after {
  bottom: -7px;
}

.menu-show .contact_side_menu span {
  background: transparent;
}
.menu-show .contact_side_menu span::before, .menu-show .contact_side_menu span::after {
  background: transparent;
}
.menu-show #contact-side-nav {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.contact_side_menu_forminfo .contact_side_menu_title {
  color: #e41b32;
}

.contact_side_menu_contact_links i {
  color: #606C38;
  padding-right: 6px;
}

.contact_side_menu_social ul li {
  /*padding-right: 8px;*/
}
.contact_side_menu_social ul li:last-child a {
  padding: 6px 8px;
}
.contact_side_menu_social ul li a {
  padding: 6px 12px;
}
.contact_side_menu_social ul li a i {
  color: white;
}

.contact_side_menu_nav ul li {
  background-color: #606C38;
  margin-bottom: 15px;
  padding: 15px 10px;
}
.contact_side_menu_nav ul li a.contact_side_menu_nav_link {
  color: #fff;
  text-decoration: none;
}

@keyframes spin {
  /*0%{*/
  /*transform: rotate(0deg);*/
  /*}*/
  /*100%{*/
  /*transform: rotate(360deg);*/
  /*}*/
  0% {
    transform: rotate(0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 19);
  }
  50% {
    transform: rotate(900deg);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  100% {
    transform: rotate(1800deg);
  }
}
@keyframes spined {
  /*0%{*/
  /*transform: rotate(0deg);*/
  /*}*/
  /*100%{*/
  /*transform: rotate(360deg);*/
  /*}*/
  0% {
    transform: rotate(0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 19);
  }
  50% {
    transform: rotate(-900deg);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  100% {
    transform: rotate(-1800deg);
  }
}
.landing_page_section {
  position: relative;
  z-index: 1;
  min-height: 700px;
  padding: 20px 0 20px;
}
@media (max-width: 576px) {
  .landing_page_section {
    min-height: 85vh !important;
  }
}
@media (min-width: 960px) {
  .landing_page_section {
    min-height: 76vh;
  }
}
.landing_page_section .landing_page_banner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.95;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  z-index: -99;
  background-color: #000000;
}
.landing_page_section .landingpage_welcome_block {
  margin: 2% 2% 2% 2%;
  padding: 2em 1em 2em 1em;
  border: 5px solid #879752;
  text-align: center;
}
.landing_page_section .landingpage_welcome_block .sections-title h2 {
  color: #e41b32;
  font-family: "Sacramento", cursive;
  font-size: 2.35rem;
  font-weight: bold;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.05);
}
@media (min-width: 720px) {
  .landing_page_section .landingpage_welcome_block .sections-title h2 {
    font-size: 2.5rem;
  }
}
@media (min-width: 960px) {
  .landing_page_section .landingpage_welcome_block .sections-title h2 {
    font-size: 3rem;
  }
}
.landing_page_section .landingpage_welcome_block h5 {
  font-family: "Poppins", sans-serif;
  color: #fff;
}
.landing_page_section .landingpage_welcome_block h5 span {
  color: #e62d42;
}
.landing_page_section .landingpage_welcome_block h3, .landing_page_section .landingpage_welcome_block h4 {
  color: #fff;
  font-family: "Poppins", sans-serif;
}
.landing_page_section .landingpage_welcome_block a {
  font-family: "Poppins", sans-serif;
}
@media (max-width: 576px) {
  .landing_page_section .landingpage_welcome_block h4 {
    font-size: 1.1rem;
  }
}
@media (min-width: 720px) {
  .landing_page_section .landingpage_welcome_block h4 {
    font-size: 1.2rem;
  }
}
@media (max-width: 576px) {
  .landing_page_section .landingpage_welcome_block h5 {
    font-size: 1rem;
  }
}
@media (min-width: 720px) {
  .landing_page_section .landingpage_welcome_block h5 {
    font-size: 1.1rem;
  }
}
.landing_page_section .landing_page_contents .landing_page_contents_list {
  position: relative;
}
.landing_page_section .landing_page_contents .landing_page_contents_list li {
  background: #525e2d;
  padding: 15px;
}
.landing_page_section .landing_page_contents .landing_page_contents_list li a {
  color: #fff;
}
@media (max-width: 576px) {
  .landing_page_section {
    padding: 40px 0 20px;
  }
}
.landing_page_section .section-title {
  margin: 20px 0;
}
.landing_page_section .section-title h2 {
  color: #fff;
  font-family: "Sacramento", cursive;
  font-size: 2.15rem;
  font-weight: bold;
}
@media (min-width: 720px) {
  .landing_page_section .section-title h2 {
    font-size: 2.25rem;
  }
}
@media (min-width: 1200px) {
  .landing_page_section .section-title h2 {
    font-size: 2.5rem;
  }
}
.landing_page_section .section-title h3 {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 8px;
}
@media (min-width: 720px) {
  .landing_page_section .section-title h3 {
    font-size: 1.1rem;
  }
}
@media (min-width: 960px) {
  .landing_page_section .section-title h3 {
    font-size: 1.2rem;
  }
}
.landing_page_section .section-title h5 {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
}
@media (min-width: 720px) {
  .landing_page_section .section-title h5 {
    font-size: 0.95rem;
  }
}
@media (min-width: 960px) {
  .landing_page_section .section-title h5 {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .landing_page_section .section-title h5 {
    letter-spacing: 1px;
  }
}
.landing_page_section .section-title h6 {
  color: #fff;
}
.landing_page_section p {
  color: #999999;
  font-family: "Poppins", sans-serif;
}
.landing_page_section .overlay {
  background: rgba(0, 0, 0, 0.785);
  padding: 20px;
}
@media (min-width: 960px) {
  .landing_page_section .overlay {
    min-height: 320px;
    padding: 30px;
  }
}
@media (min-width: 1200px) {
  .landing_page_section .overlay {
    min-height: 330px;
  }
}
.landing_page_section .theowl_content {
  background: url(../images/location_theowl.png) no-repeat center;
  background-size: cover;
  border: 5px solid #e41b32;
  margin: 10px 0;
}
@media (min-width: 960px) {
  .landing_page_section .theowl_content {
    min-height: 320px;
  }
}
@media (min-width: 1200px) {
  .landing_page_section .theowl_content {
    min-height: 330px;
  }
}
.landing_page_section .thewyvern_content {
  background: url(../images/location_wyvern.png) no-repeat center;
  background-size: cover;
  border: 5px solid #e41b32;
  margin: 10px 0;
}
@media (min-width: 960px) {
  .landing_page_section .thewyvern_content {
    min-height: 320px;
  }
}
@media (min-width: 1200px) {
  .landing_page_section .thewyvern_content {
    min-height: 330px;
  }
}
.landing_page_section .thewyvern_content a {
  color: #fff;
}

footer {
  background: rgba(0, 0, 0, 0.85);
}
@media (max-width: 576px) {
  footer {
    padding: 20px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  footer {
    padding: 20px 0;
  }
}
footer h3 {
  margin-bottom: 20px;
  font-size: 22px;
}
footer .footer_logo_block a img {
  filter: grayscale(0.5);
}
footer .footer_logo_block a:hover img {
  filter: grayscale(0);
}
footer .footer_logo {
  background: #000;
  padding: 20px 0;
}
footer .footer_logo p {
  line-height: normal;
}
footer .footer_logo p a {
  white-space: nowrap;
  color: #606C38;
}
footer .footer_link {
  padding-top: 10px;
  margin-bottom: 20px;
}
footer .footer_link a {
  color: #f3cf7a;
}
footer .footer_widget_right {
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 720px) {
  footer .footer_widget_right {
    justify-content: end;
  }
}
footer .footer_reserved {
  margin-right: 15px;
}
footer .footer_reserved h6 {
  font-size: 12px;
}

.flex_break {
  flex-basis: 100%;
  height: 0;
}

.btns-primary {
  background-color: #e41b32;
  color: #fff;
}
.btns-primary:hover, .btns-primary:focus {
  background-color: #89101e;
  color: #fff;
}

.btns-secondary {
  background-color: #606C38;
  color: #fff;
}
.btns-secondary:hover, .btns-secondary:focus {
  background-color: #242915;
  color: #fff;
}

.btn-white-reverse {
  border: 1px solid #fff;
}
.btn-white-reverse:hover, .btn-white-reverse:focus {
  border-color: #e41b32;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.text-white {
  color: #fff !important;
}

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