/* ==================== */
/* Variables
/* ==================== */

:root {
  --brand-main: #82BCDE;
  --brand-brown: #513926;
  --brand-yellow: #F5C450;

}

/* ==================== */
/* Global
/* ==================== */

body {
  font-family: 'Roboto', sans-serif; /* Change to correct font */
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6{
  font-family: 'Caveat Brush', cursive; /* Change to correct font */
  margin-block-start: 0!important;
}

h1, h2{
  font-size: 56px;
}

h2{
  margin-bottom: 10px;
}

.page{
  margin: 0!important;
}

.row{
  display: flex!important;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;

}

.row-invert{
  display: flex!important;
  flex-direction: column-reverse;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;

}

.col-2, .col-3, .col-4, .col-2-offset-small, .col-2-offset-big{
  width: 100%;
}

@media (min-width: 768px){

  .row, .row-invert{
    flex-direction: row;
    gap: 1.5%;
  }

  .col-4-wrapper{
    flex-direction: row;
  }

  .col-4{
    width: 48.5%;
    padding-bottom: 30px;
  }

}

@media (min-width: 980px){

  .row, .col-2-wrapper-invert{
    flex-direction: row;
  }

  .col-2{
    width: 48.5%;
  }

  .col-2-offset-small{
    width: 31.5%;
  }

  .col-2-offset-big{
    width: 64.5%;
  }

  .col-3{
    width: 31.5%;
  }

  .col-4{
    width: 23.5%;
  }

}

.vertical_center{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.btn{
  cursor: pointer;
  border: none;
  padding: 10px 40px;
  transition: .2s;

}

.btn_outline_white{
  font-family: 'Caveat Brush', cursive;
  font-size: 24px;
  background-color: transparent;
  color: #fff;
  border: 3px solid #fff;
  border-radius: 0;
}

.btn_outline_white:hover{
  background-color: var(--brand-main);
  color: #fff;
  transition: .2s;
  border: 3px solid var(--brand-main);
}

.btn_outline_brown{
  font-family: 'Caveat Brush', cursive;
  font-size: 24px;
  background-color: transparent;
  color: var(--brand-brown);
  border: 3px solid var(--brand-brown);
  border-radius: 0;
}

.btn_outline_brown:hover{
  background-color: var(--brand-main);
  color: #fff;
  transition: .2s;
  border: 3px solid var(--brand-main);
}


.btn_blue{
  background-color: var(--brand-main);
  color: #fff;
}

.btn_blue:hover{
  background-color: #efefef;
  color: var(--brand-main);
  transition: .2s;
}

.bg_grey{
  background-color: #ededed;
}

.bg_blue{
  background-color: var(--brand-main);
}

.wrapper_blue{
  background-color: var(--brand-main);
  color: #fff;
}

.wrapper_brown{
  background-color: var(--brand-brown);
  color: #fff;
}

.wrapper_light{
  background-color: #f2f2f2;
}

.content_wrapper{
  padding: 50px 0;
}

.rane_banner{
  background: var(--brand-brown);
  color: #fff;
  text-align: center;
  padding: 10px 0;
}

.rane_banner a{
  color: #fff;
  text-decoration: underline;
}

.rane_banner a:hover{
  color: var(--brand-yellow);
}

@media (min-width: 980px){

  .rane_banner{
    text-align: right;
  }

}

/* ==================== */
/* Container
/* ==================== */

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

/*====================
Header
====================*/

.section-main-header {
  padding: 0; 
  width: 100%;
  position: absolute;
  z-index: 1;
}

.main-header {
  display: flex;  
  justify-content: space-between;
  padding: 20px 10px 10px 10px;
  transition:  1s;
}

.site-header-logo { 
  width: 30%;
}

.site-header-logo img {
  width: 159px;
}

.site-header-hamburger {
  padding: 30px 10px 0 10px;
  width: 15%;
  text-align: right;
  font-size: 32px;
  float: right;
}

.site-header-menu{
  display: none;
}

.main-menu-item li a{
  font-family: 'Caveat brush', cursive;
  color:  #fff;
  text-decoration: none;
}

.menu__wrap{
  float: right;
}

.main-header__hamburger {
  display: flex;
  align-items: center;
}

.c-hamburger {
  display: inline-block;
    cursor: pointer;
}

.c-hamburger__bar {
  width: 50px;
  height: 4px;
  border-radius: 2px;
  display: block;
  background: #fff;
  margin-bottom: 8px;
}

@media (min-width: 768px){

  .site-header-menu {
    width:  70%;
  }

  .site-header-logo { 
    width: 20%;
  }

  .site-header-hamburger {
    padding-top: 20px!important;
    width: 10%;
  }

  .top_head_contact{
    flex-direction: row;
  }
}

@media (min-width: 980px){
    
  .main-header__hamburger {
    display: none;
  }

  .site-header-menu {
    display: block;
    width: 100%;
    text-align: right;
    padding: 0 20px 0 20px;
  }

  .main-menu-item{
    padding-top: 30px;
  } 

  .main-menu-item li{
    display: inline;
  }

  .main-menu-item li a{
    font-size: 24px;
    padding-left: 20px;
    transition: .2s;
  }

  .main-menu-item li a:hover, .main-menu-item li a:active{
    color: var(--brand-main);
    padding-left: 24px;
    padding-left: 20px;
    transition: .2s;
  }


  ul.main-nav-wrap {
    margin: 0 0 0em 0em!important;
  }

  .top_head_socials{
    text-align: left;
    padding-left: 10px;
  }

  .top_head_contact{
    justify-content: flex-end;
    padding-right: 30px;
  }

}

/********************
 * Slide Out
********************/

.slideout-nav {
  position: fixed;
  left: -250px;
  top: 0;
  width: 250px;
  height: 100%;
  background: var(--brand-brown);
  z-index: 9999;
  transition: 0.2s;
  overflow: hidden;
  overflow-y: scroll;
}

body.admin-bar .slideout-nav {
  top: 46px;
}

.slideout-nav--out {
  left: 0;
}

.slideout-nav__menu,
.slideout-nav .menu {
  padding: 0 !important;
  margin: 0 !important;
  list-style-type: none !important;
}

.slideout-nav .dropdown-item-has-child {
  position: relative;
}

.slideout-nav .dropdown-item-has-child::after {
  content: "\f0dd"; /* Unicode of the Font Awesome icon */
  font-family: "Font Awesome 5 Free"; /* Font Family of Font Awesome */
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.slideout-nav .dropdown-item-has-child--open::after {
  content: "\42";
}

.slideout-nav a {
  color: white;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 8px 8px 8px 16px;
  text-decoration: none;
}

.slideout-nav .dropdown-menu {
  list-style-type: none;
  padding: 0 !important;
  margin: 0 !important;
  height: 0;
  overflow: hidden;
}

.slideout-nav .dropdown-menu--toggle-on {
  height: auto;
  overflow: auto;
}

.slideout-nav .dropdown-menu a {
  background: #353d42;
}

.slideout-nav .close-slideout {
  text-align: right;
  font-size: 16px;
}

.slideout-nav .close-slideout::after {
  content: "\f057"; /* Unicode of the Font Awesome icon */
  font-family: "Font Awesome 5 Free"; /* Font Family of Font Awesome */
}

.slideout-nav li.menu-item-has-children a {
  border: 2px solid red;
}

/*====================
Home slider
====================*/

.home-hero-slider{
  height: 85vh;
  overflow: hidden;
}

.home_hero{
  background-position: center; 
  background-size: cover; 
  min-height: 85vh;
}

.slide-content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 95vh;
  text-align: center;
  color: #fff;
  max-width: 80%;
  margin: auto;
}

.slide_text h1{
  font-size: 32px;
  line-height: 1.4em;
}

.slick-dots{
  bottom: 30px!important;
}

.slick-dotted.slick-slider {
    margin-bottom: 0!important;
}

.slick-dots li button:before, .slick-dots li.slick-active button:before{
  color: #ffffff!important;
}

.banner{
  padding: 10px;
  text-align: center;
}

.banner h2{
  padding: 0;
  margin: 0;
  font-size: 56px;
}

@media (min-width: 768px){

  .slide_text h1{
    font-size: 56px;
    line-height: 1.4em;
  }

}

@media (min-width: 980px){

  .slide-content{
    max-width: 60%;
  }

}

/*====================
Content Sections
====================*/

.content_section_row{
  display: flex!important;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

.content_section_row_invert{
  display: flex!important;
  flex-direction: column-reverse;
  justify-content: space-between;
  width: 100%;
}  

.content_section_img{
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 400px;
  width: 100%;
  position: relative;
}

.content_section_text_box{
  width: 100%;
  background-color: #ffffff; 
  position: relative;
  margin-top: 30px;
  color: var(--brand-brown);
  padding: 30px;
}

@media (min-width: 980px){

  .content_section_row, .content_section_row_invert{
    flex-direction: row;
  }

  .content_section_img{
    width: 60%;
    min-height: 600px;
    z-index: 1;
  }

  .content_section_text_box{
    width: 90%;
    height: 40%;
    top: 8em;
    margin-top: 0;
  }

  .content_box{
    margin-left: -10%;
    z-index: 2;
  }

  .content_box_invert{
    margin-right: -10%;
    z-index: 2;
  }

}

@media (min-width: 1280px){

}

@media (min-width: 1440px){

}

/*====================
Home Contact
====================*/

.contact_wrapper{
}

.content_contact_map{
  min-height: 400px;
}

.content_contact_details{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
  text-align: center;
}

.contact_details{
  padding-bottom: 30px;
}

.contact_details a, .footer_email a{
  color: #fff;
  text-decoration: none;
}

.contact_details a:hover, .footer_email a:hover{
  color: var(--brand-yellow);
}

.opening_hours_day{
  color: var(--brand-yellow);
  font-weight: bold;
  padding-right: 30px;
  text-align: left;
}

.opening_hours_hours{
  font-weight: bold;
  padding-left: 30px;  
  text-align: right;
}


/*====================
Footer
====================*/

.footer_wrapper{
  padding: 30px 0;
}

.footer_wrapper img{
  max-height: 60px;
}

.footer_address, .footer_email{
  padding: 20px 0;
}

@media (min-width: 980px){

  .footer_email{
    text-align: right;
  }

}

/*====================
Internal Banner
====================*/

.banner_wrapper{
  min-height: 250px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.banner_wrapper h1{
  padding-bottom: 0;
  margin-bottom: 0;
  color: #fff;
}

/*====================
Contact Page
====================*/

.contact_box_wrapper{
  background-color: var(--brand-main);
  padding: 50px;
  border-radius: 10px;
  color: #fff;  
  text-align: center;
  margin: 15px 0;
}

.contact_map_wrapper{
  min-height: 400px;
  margin-bottom: -8px;
}

.contact_box_wrapper h2{
  font-size: 60px;
}

.contact_box_wrapper a{
  color: #fff;  
  text-decoration: none;
}

.frm_button_submit{
  float: right;
}

@media (min-width: 980px){

  .content_box_wrapper, .contact_box_wrapper{
    margin: 0;
  }

}