/*
Theme Name: BlankSlate
Theme URI: https://opencollective.com/blankslate
Author: Bryan Hadaway
Author URI: https://opencollective.com/blankslate#section-contributors
Description: Donate: https://opencollective.com/blankslate. Learn: https://blankslate.me/. BlankSlate is the definitive WordPress boilerplate starter theme. I've carefully constructed the most clean and minimalist theme possible for designers and developers to use as a base to build websites for clients or to build completely custom themes from scratch. Clean, simple, unstyled, semi-minified, unformatted, and valid code, SEO-friendly, jQuery-enabled, no programmer comments, standardized and as white label as possible, and most importantly, the CSS is reset for cross-browser-compatability, with no intrusive visual CSS styles added whatsoever. A perfect skeleton theme. For support and suggestions, go to: https://github.com/bhadaway/blankslate/issues. Thank you.
Tags: accessibility-ready, one-column, two-columns, custom-menu, featured-images, microformats, sticky-post, threaded-comments, translation-ready
Version: 2024.2
Requires at least: 5.2
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v3 or Later
License URI: https://www.gnu.org/licenses/gpl.html
Text Domain: blankslate

BlankSlate WordPress Theme 2011-2024
BlankSlate is distributed under the terms of the GNU GPL
*/

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}html{scroll-behavior:smooth}body{line-height:1}a{text-decoration-skip-ink:auto}a[href^="tel"]{color:inherit;text-decoration:none}button{outline:0}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}q{display:inline;font-style:italic}q:before{content:'"';font-style:normal}q:after{content:'"';font-style:normal}textarea,input[type="text"],input[type="button"],input[type="submit"],input[type="reset"],input[type="search"],input[type="password"]{-webkit-appearance:none;appearance:none;border-radius:0}input[type="search"]{-webkit-appearance:textfield}table{border-collapse:collapse;border-spacing:0}th,td{padding:2px}big{font-size:120%}small,sup,sub{font-size:80%}sup{vertical-align:super}sub{vertical-align:sub}dd{margin-left:20px}kbd,tt{font-family:courier;font-size:12px}ins{text-decoration:underline}del,strike,s{text-decoration:line-through}dt{font-weight:bold}address,cite,var{font-style:italic}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}*{box-sizing:border-box;-webkit-tap-highlight-color:transparent}
.sticky{}.bypostauthor{}.wp-caption{}.wp-caption-text{}.gallery-caption{}.alignright{}.alignleft{}.aligncenter{}
.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important;word-break:normal}
.screen-reader-text:focus{background-color:#f7f7f7;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;-webkit-clip-path:none;clip-path:none;color:#007acc;display:block;font-size:14px;font-size:.875rem;font-weight:700;height:auto;right:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}
.skip-link{left:-9999rem;top:2.5rem;z-index:999999999;text-decoration:underline}
.skip-link:focus{display:block;left:6px;top:7px;font-size:14px;font-weight:600;text-decoration:none;line-height:normal;padding:15px 23px 14px;z-index:100000;right:auto}
.visually-hidden:not(:focus):not(:active), .form-allowed-tags:not(:focus):not(:active){position:absolute !important;height:1px;width:1px;overflow:hidden;clip:rect(1px 1px 1px 1px);clip:rect(1px, 1px, 1px, 1px);white-space:nowrap}


/* General styles */
body {
    margin: 0;
    font-family: 'DM Sans';
}

/* Header */
p {
	font-family: 'DM Sans' !important;
	
}

#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #eee;
	font-family: 'DM Sans';
/* 	border-bottom-width: 1px; */
/*   border-bottom-style: solid; */
  color: #e5e5e5;
}

.logo-div {
	display: flex;

}

.logo img {
    max-width: 100%;
    height: auto;
	width: 100px;
}

.header-links {
    display: flex;
    align-items: center;
	font-family: 'DM Sans';
}

.dropdown {
    position: relative;
    display: inline-block;
    margin: 0 10px;
	font-family: 'DM Sans';
	font-weight: 400;
}

.dropbtn {
    background-color: #eee;
    color: black;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
	font-family: 'DM Sans';
	
}

.dropbtn a {
	font-family: Roboto;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 160px;
	border: 2px solid;
    
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    text-decoration:underline;
}
.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    color: #303030;
}

.contactbtn {
    background-color: #eee;
    color: black;
    padding: 16px;
    margin-right: 10px;
    cursor: pointer;
    border: none;
    font-family: 'DM Sans';
	font-size: 16px;
	width: 60px;
    height: 30px;
	text-decoration: none;
    
}

.right-btns {
    padding: 10px 26px 10px 26px;
    border-radius: 25px;
    border: none;
    background-color: #f0f0f0;
    cursor: pointer;
    margin-left: 10px;
	background-color: #146580;
    color: #FFFFFF;
	text-transform: uppercase;
	font-family: 'DM Sans';
	font-size: 16px;
}

.right-btns:hover {
    background-color: #1ca4ac;
}
/* Body Styles */


/* Footer */

.top {
display: flex;
flex-direction: row;
	justify-content: center;
	padding-bottom: 30px;
	padding-top: 30px;
	font-family: 'DM Sans';
}



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

.footer-heading {
	font-size: 28px;
/* 	padding-bottom: 10px; */
	padding-right: 20px;
}

.bottom {
	display: flex;
	justify-content: center;
/* 	padding-top: 30px; */
	font-family: 'DM Sans';
}

.footer-icon-list {
    display: flex;
    flex-direction: column;
}

.icon-list-item {
    display: flex;
    align-items: center; /* Align items vertically center */
}

.icon-list-item i {
    margin-right: 14px; /* Add some space between icon and text */
}

.icon-list-item p {
    display: inline-block; /* Ensure the text is inline with the icon */
    margin: 0; /* Remove default margin */
	padding-top: 16px;
}


.col1, .col3 {
	padding-right: 141px;
}

.col2 {
	padding-right: 79px !important;
}
.name {
	padding-left: 9px;
}

.col4 {padding-right: 10px}

.footer-icon-list i {
	padding-top: 16px;
}

#footer {
	background-color: #116F97;
	color: #FFFFFF;
	padding-bottom: 90px;
	font-family: 'DM Sans';
	display: flex;
  justify-content: center;
  flex-direction: row-reverse;
	align-items: center;
}



.footer-heading {
	font-weight: 400;
	font-size: 19px;
}

.footer-subheading {
	color: #E7E7E7;
	line-height: 26px;
}

.e-con.copyright   {--container-max-width: 100%; !important}

/* Mobile Hamburger menu */
/* Header */
p {
    font-family: 'DM Sans' !important;
}

#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: black;
    font-family: 'DM Sans';
/*     border-bottom-width: 1px;
    border-bottom-style: solid; */
    color: #e5e5e5;
}

.logo img {
    max-width: 100%;
    height: auto;
}

.header-links {
    display: flex;
    align-items: center;
    font-family: 'DM Sans';
}

/* kauri edit to dynamic menu */
.header-links li 
{
/*     background-color: #eee; */
    color: black;
    padding: 16px;
    margin-right: 10px;
    cursor: pointer;
    border: none;
    font-family: 'DM Sans';
    font-size: 16px;
}

img.footer-logo
{
	width: 190px;
}

.header-links li a
{
    text-decoration: none;	
	color: #1ba0ab;
}

/* Remove visited, hover, active, and focus styles */
a:visited, a:hover, a:active, a:focus, a {
    color: var(--e-global-color-72f8364);;         /* Maintain inherited color */
    text-decoration: none;  /* Ensure no underlines or other decorations */
    outline: none;          /* Remove focus outline (optional) */
}

.mobmenu-content #mobmenuright li:hover,
.mobmenu-content #mobmenuright li:hover a {
    background-color: #74c3c7 !important;
}
/* end kauri */

.hamburger-menu {
    display: none;
    position: relative;
	background-color: #e5e5e5;
}

.hamburger-button {
    background-color: #e5e5e5;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.hamburger-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    flex-direction: column;
}

.hamburger-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.hamburger-content a:hover {
    background-color: #ddd;
}

/* Media query for mobile view */
@media screen and (max-width: 768px) {
    .header-links {
        display: none;
    }
    .hamburger-menu {
        display: none;
    }
}


/* Footer */

.top {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-bottom: 30px;
    font-family: 'DM Sans';
}

.left {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 28px;
/*     padding-bottom: 10px; */
    padding-right: 20px;
	color: #FFFFFF;
}

.footer-heading b {
	color: #FFFFFF;
}

.bottom {
    display: flex;
    justify-content: center;
/*     padding-top: 30px; */
    font-family: 'DM Sans';
	align-items: center;
}

.footer-icon-list {
    display: flex;
    flex-direction: column;
}

.icon-list-item {
    display: flex;
    align-items: center; /* Align items vertically center */
}

.icon-list-item i {
    margin-right: 14px; /* Add some space between icon and text */
}

.icon-list-item p {
    display: inline-block; /* Ensure the text is inline with the icon */
    margin: 0; /* Remove default margin */
    padding-top: 16px;
}

.col3 {
    padding-right: 141px;
}
.col1 {
	padding-right: 69px;
}
 .col2 {
	padding-right: 60px;
}

.name {
    padding-left: 9px;
}

.col4 {
    padding-right: 10px;
}

.footer-icon-list i {
    padding-top: 16px;
}

#footer {
    background-color: #eee;
    color: #000000;
    padding-bottom: 60px;
	padding-top: 60px;
    font-family: 'DM Sans';
}

.booking {
    padding: 10px 26px 10px 26px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    margin-left: 106px;

    background-color: #FFFFFF;
    color: #146580;
    text-transform: uppercase;
    font-family: 'DM Sans';
    font-size: 14px;
}

.top-pill {
	display: flex;
	flex-direction: row;
	justify-content: center;
	border-radius: 50px;
 	padding: 36px;
	font-family: 'DM Sans';
	border-width: 2px;
	background-color: #116f97;
  	color: #FFFFFF;
/* 	border-style: solid; */
}

.footer-heading {
    font-weight: 400;
    font-size: 19px;
	color: #116f97;
}

.footer-subheading {
    color: #FFFFFF;
}

/* kauri changes */
.forminator-ui#forminator-module-135.forminator-design--material .forminator-button-submit {
    background-color: #1CA4AC!important;
	padding: 10px 26px 10px 26px;
    border-radius: 25px;
    border: none;
    text-transform: uppercase;
}

.col1, .col2, .col3, .col4 {
        align-content: center;
    }

#menu-main-menu ul {
    display: none;
position: absolute;
    background: black;
    z-index: 10;
    padding-top: 20px;
}

li#menu-item-1331:hover ul {
    display: block;
}

.header-links li a:hover {
    text-decoration: underline;
}

/* Media Queries for Mobile Devices */

@media (max-width: 768px) {
    .top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .booking {
		margin: 20px 0 0 0;
    }

    .footer-heading {
        font-size: 24px;
        padding-right: 0;
    }

    .bottom {
        flex-direction: column;
        align-items: center;
/*         padding-top: 20px; */
    }

    .col1, .col2, .col3, .col4 {
        padding-right: 0;
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-break {
        width: 80%;
        margin: 20px auto;
		display: none;
    }
	footer .top {
		padding-right: 30px;
  		padding-left: 30px;
	}
	
	.top-pill {
		flex-direction: column;
	}
	.col2 {
		padding-right: 0px !important;
	}
	#footer {
		flex-direction: column;
	}
	#header {
		justify-content: center;
	}
}

@media (max-width: 1440px) {
	.footer-break {
		display: none;
	}
	
}
.header .entry-title, .header .post-edit-link {
	display: none !important;
}

/* Media query for iPad view (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    #header {
        flex-direction: column; /* Stack the header content vertically */
        align-items: center; /* Center align the items */
        padding: 10px; /* Adjust padding for a more compact layout */
		padding-top: 30px;
		
    }
	
    .logo-div {
        margin-bottom: 20px; /* Add space between the logo and the links */
    }

    .header-links {
        display: none; /* Hide the header links for iPad view */
    }

  

    .right-btns {
        margin: 10px 0; /* Space out the buttons */
        width: 100%; /* Make the buttons take up full width */
        max-width: 250px; /* Limit the max width of buttons */
        text-align: center; /* Center align text inside buttons */
    }

    .contactbtn {
        font-size: 16px; /* Adjust font size */
        padding: 12px; /* Adjust padding */
        margin-bottom: 10px; /* Add spacing between buttons */
        width: 100%; /* Make the buttons full width */
        max-width: 250px; /* Limit the max width of buttons */
        text-align: center; /* Center align text inside buttons */
    }
	
	#footer {
		display: flex;
		flex-direction: column;
	}
}
