/*
	Theme Name: Name of theme
	Theme URI: What is the final domain
	Description: Custom created for Nusiness Name
	Version: 1.0
	Author: KWD Marketing Corp
	Author URI: https://kwdmarketing.ca
	Tags: Blank, HTML5, CSS3
	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

:root {
  /* --- Brand Identity Colors --- */
  --primary-color: #05254D;     /* Deep Blue / Main Brand Color */
  --accent-color: #FCA91F;      /* Bright Gold-Orange / Buttons, Links, Highlights */
  --accent-light: #FEEED2;      /* Soft Cream-Orange / Alert banners, Badge backgrounds */
  --primary-light: #E3EFFF;     /* Ice Blue / Subtle card overlays, Active menu states */

  /* --- Neutral Dark Tones (Typography & UI Elements) --- */
  --text-primary: #141E2B;      /* Dark Navy-Black / Main Body text, Headings */
  --text-muted: #4B5563;        /* Slate Gray / Subtitles, Captions, Borders */
  --black: #000000;             /* True Black / Darkest accents */

  /* --- Neutral Light Tones (Backgrounds & Borders) --- */
  --bg-primary: #FDFDFB;        /* Warm Crisp White / Main page background */
  --bg-secondary: #F5F3EC;      /* Soft Sand-White / Alternative section backgrounds */
  --border-color: #DBDDE0;      /* Light Gray / Divider lines, Input fields, Component borders */
}




.uk-modal-dialog {
    width: 800px;
}

.card-img {
    width: 90%;
}
.floating-card {
    width: 400px;
    background: #fff;
    padding: 20px;
    box-shadow: 0px 3px 14px #0000001A;
    border-radius: 20px;
    position: absolute;
    bottom: -90px;
    right: -10px;
}
p.smaller {
    font-size: 14px;
    font-weight: 500;
}
.white-circle-y {
    background: var(--bg-primary);
    width: 60px;
    height: 60px;
    text-align: center;
    padding: 7px 0;
    border-radius: 99px;
    border: 1px solid #DBDDE0;
    color: var(--accent-color);
    font-weight: 900;
    font-size: 30px;
}
.card-yellow-top {
    background: white;
    border-top: 6px solid var(--accent-color);
    border-radius: 30px;
    padding: 8px 14px;
}
.blue-icon {
    background-color: var(--primary-light);
    color: var(--primary-color);
    display: inline-block;
    width: 60px;
    height: 60px;
    padding: 10px 0;
    font-size: 26px;
    border-radius: 8px;
    margin-bottom: 10px;
}
p.white u {
    text-decoration-color: var(--accent-color);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
	    font-weight: 600;
}
.rounded-img {
    box-shadow: 0px 3px 14px #0000001A;
    border-radius: 30px;
}
.yellow-dot {
  position: relative; /* Establishes a positioning context for the dot */
}

.yellow-dot::before {
  content: "";
  display: inline-block;
  
  /* Sizing the dot */
  width: 10px;
  height: 10px;
  
  /* Making it a perfect circle using your yellow accent variable */
  background-color: var(--accent-color); /* #FCA91F */
  border-radius: 50%;
  
  /* Spacing it to the direct left of the text */
  margin-right: 12px; 
  
  /* Perfect vertical alignment trick with text */
  vertical-align: middle;
  position: relative;
  top: -1px; /* Micro-adjustment to center it optically with capital letters */
}
.beige-bg {
	background-color: var(--bg-secondary);	
	    overflow: hidden;
}
.yellow-banner {
  /* Layout & Background Color */
  display: block;
  width: 100%;
  background-color: var(--accent-light); /* Using your soft cream-orange #FEEED2 */
  
  /* --- Multiple Background Images --- */
  background-image: 
    url('images/gold-faded-boomera-logo-element-2.webp'), 
    url('images/gold-faded-boomera-logo-element-1.webp');
  
  background-position: 
    top right, 
    bottom left;
  
  background-repeat: 
    no-repeat, 
    no-repeat;
    
  background-size: 
    500px, /* Keeps top-right image at its original size. Can change to 'contain' or '200px' */
    500px; /* Keeps bottom-left image at its original size */

  /* Ensure text stands out nicely over the background images */
  color: var(--text-primary); 
  position: relative;
  box-sizing: border-box;
}
.yellow-bg {
	background-color: var(--accent-color);	
	    overflow: hidden;
}
.yellow{
	color: var(--accent-color);
}
.dark-blue-bg {
	background-color: var(--primary-color);
	    overflow: hidden;
}
.dark-blue {
	color: var(--primary-color);	
}
.blue-btn {
  /* Typography (Using Montserrat & variables) */
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0px;
  text-align: left;
  text-decoration: none;

  /* Colors (Flipped: Deep Blue background with White text) */
  background-color: var(--primary-color); /* #05254D */
  color: var(--bg-primary);               /* #FDFDFB */
  
  /* Structure & Layout */
  display: inline-block;
  padding: 16px 32px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  opacity: 1;

  /* Smooth Transition Effect */
  transition: background-color 0.3s ease, transform 0.2s ease, color 0.3s ease;
	transition: transform 0.3s ease;
}

/* Hover & Active States */
.blue-btn:hover {
  background-color: var(--text-primary); 
  text-decoration: none;
  color: var(--bg-primary); 
transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.blue-btn:active {
  transform: scale(0.98); /* Slight click/press effect */
}

.yellow-btn, .nav > ul > li > a:last-child {
  /* Typography (Using Montserrat & variables) */
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2; /* Fixed from 68px to keep text centered nicely */
  letter-spacing: 0px;
  text-align: left;
  text-decoration: none; /* Removes underline if used on an <a> tag */

  /* Colors (Using your CSS variables) */
  background-color: var(--accent-color); /* #FCA91F (Orange/Yellow) */
  color: var(--primary-color);           /* #05254D (Deep Blue text) */
  
  /* Structure & Layout */
  display: inline-block;
  padding: 16px 32px;                    /* Adjust these numbers to change button size */
  border: none;
  border-radius: 4px;                    /* Gives it a clean, slightly rounded look */
  cursor: pointer;
  opacity: 1;

  /* Smooth Transition Effect */
  transition: background-color 0.3s ease, transform 0.2s ease, opacity 0.3s ease;
}

/* Hover & Active States */
.yellow-btn:hover, .nav > ul > li > a:last-child:hover {
	text-decoration: none;
  background-color: var(--accent-light); /* Flips background to Deep Blue */
  color: var(--primary-color);               /* Flips text to Warm White */
  /* Alternative option if you just want it to get slightly darker instead:
  filter: brightness(90%); 
  */
}

.yellow-btn:active {
	text-decoration: none;
  transform: scale(0.98); /* Slight click/press effect */
}

.header-box {
    background-color: var(--bg-primary);
    margin-top: 30px;
    padding: 20px;
    border: 1px solid #DBDDE0;
    border-radius: 20px;
}

.header {
    z-index: 99;
    position: absolute;
    margin: 0 auto;
    width: 100%;
    background-color: var(--bg-secondary);
}
.bg-secondary {
	background-color: var(--bg-secondary);
	    overflow: hidden;
}

.white{
  color: #fff;
}
.banner h1{
  font-size: 56px;
}
h1 {
    font-size: 70px;
}
h2 {
    font-size: 42px;
}

h3{
  font-size: 32px;
}
h4{
  font-size: 26px;
}
h5 {
    font-size: 20px;
    font-weight: 600;
}

em {
    color: #444!important;
}
form#user-login-form{
	border: 1px solid #ccc;
	margin: 0 auto;
	padding: 20px;
	max-width: 400px;
	width: 100%;
}
select.orderby {
    border-radius: 3px;
    border: 1px solid #ccc;
    color: #6d6d6d;
    background: #fbfbfb;
    font-size: 12px;
    padding: 5px 10px;
}
a.btn {
    display: inline-block;
    background: #222;
    padding: 10px;
    margin: 6px 0;
    border-radius: 3px;
    color: #fff;
    transition: ease-in-out all .2s;
}

a.btn:hover {
    text-decoration: none;
    background: #717171;
}
.banner{
    width: 100%;
}

a.uk-float-right.uk-hidden-large.menu_pointer {
    color: orange!important;
}
.uk-offcanvas-bar .logo {
    padding: 10px 20px 0px 20px;
}
.uk-offcanvas-bar ul li.current-menu-item > a {
    border-left: 10px solid orange;
}
.uk-offcanvas-bar ul li a {
    padding: 9px 20px;
    font-size: 16px;
    display: block;
    margin-bottom: 2px;
    background: #222;
    color: white;
}
.uk-offcanvas-bar ul li a:active, .uk-offcanvas-bar ul li a:hover {
    background: #222;
	color: #fff;
    text-decoration: none;
}
.uk-offcanvas-bar ul {
    list-style: none;
    padding: 0;
	margin: 0;
}
.uk-offcanvas-bar ul li {
    margin: 0;
    padding: 0;
}

.uk-offcanvas-bar .sub-menu li a {
	background-color: #4c4c4c;
    font-size: 13px;
    padding: 6px 30px;


}
.uk-offcanvas-bar .sub-menu {
    width: 100%;
    display: block;
    position: relative;
	background-color: #000;
}

.uk-offcanvas-bar .sub-menu li {
    float: none!important;
    text-align: left;
}

a.page-numbers:hover {
    background-color: #D6D6D6;
    color: #666;
    outline: 0;
    background-image: none;
}
a.page-numbers {
    background: #f7f7f7;
    color: #666;
    border: 1px solid rgba(0,0,0,.2);
    border-bottom-color: rgba(0,0,0,.3);
    background-origin: border-box;
    background-image: -webkit-linear-gradient(top,#fff,#eee);
    background-image: linear-gradient(to bottom,#fff,#eee);
    text-shadow: 0 1px 0 #fff;
    display: inline-block;
    min-width: 16px;
    padding: 3px 5px;
    line-height: 20px;
    text-decoration: none;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    text-align: center;
    border-radius: 4px;
}
span.page-numbers.current {
    background: #009dd8;
    color: #fff;
    border: 1px solid rgba(0,0,0,.2);
    border-bottom-color: rgba(0,0,0,.4);
    background-origin: border-box;
    background-image: -webkit-linear-gradient(top,#00b4f5,#008dc5);
    background-image: linear-gradient(to bottom,#00b4f5,#008dc5);
    text-shadow: 0 -1px 0 rgba(0,0,0,.2);
    display: inline-block;
    min-width: 16px;
    padding: 3px 5px;
    line-height: 20px;
    text-decoration: none;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    text-align: center;
    border-radius: 4px;
}
.pagination {
    text-align: center;
    padding: 40px;
    font-size: 16px;
}
.gform_wrapper form {
	overflow: hidden;
}
.gform_wrapper input {
    padding: 10px 10px!important;
    border-radius: 3px;
    border: 1px solid #ccc;
}
.gform_wrapper textarea {
    padding: 14px 10px!important;
    border-radius: 3px;
    border: 1px solid #ccc;
}


.gform_footer.top_label input {
    color: white;
    background: #55a94f;
    border: none;
    padding: 20px 40px!important;
    font-size: 22px!important;
    margin: 0!important;
    transition: ease-in-out all .2s;
	text-decoration: none;
	display: inline-block;
}
.gform_footer.top_label input:hover {
    opacity: .8;
		text-decoration: none;
}
.gform_footer.top_label {
    float: right;
    margin: 0;
}
.menu_pointer{
	cursor: pointer;
}




/*TOP LEVEL NAV START*/
.nav {
    float: right;
}
nav ul {
    margin: 0;
    padding: 0;
}
.nav li {
    float: left;
    list-style: none;
}
.nav > ul > li > a {
    color: #a2a2a2;
    font-size: 14px;
    padding: 11px 9px;
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    text-decoration: none;
    background: #eaeaea;
    border-radius: 2px;
    margin: 0 2px;
}
li.menu-item-has-children > a {
    cursor: default;
}
.nav .current_page_item > a, .nav .current-menu-item > a{
	color:#c6a565;
}
.nav li:hover > a{
  background-color: #c6a565;
  color: #fff;
}

/*TOP LEVEL NAV END*/

/*Style General Submenus*/
.sub-menu {
    position: absolute;
    background: white;
    width: 215px;
    margin: 0;
    padding: 0;
	    z-index: 99;
}
.sub-menu li {
    float: none;
}
.sub-menu li a {
    color: #222;
    text-decoration: none;
    padding: 10px;
    display: block;
}
.sub-menu li a:hover {
    background: #222;
    color: #fff;
}
/*this one styles the sub highlighted page nav*/
.sub-menu li:hover > a {
    color: #797979;
    background: #eaeaea;
}
/*Style General Submenus*/

/*First Dropdown*/
.nav > ul > li > .sub-menu {
    display: none;
}
.nav > ul > li:hover > .sub-menu {
    display: block;
}

/*2nd Tear Dropdwn*/
.nav > ul > li > .sub-menu > li > .sub-menu {
    display: none;
	margin-left: 216px;
    width: 215px;
    margin-top: -40px;
}
.nav > ul > li > .sub-menu li:hover > .sub-menu {
    display: block;
}

/*3rd level Dropdown*/
.nav > ul > li > .sub-menu > li > .sub-menu > li > .sub-menu {
    display: none;
	margin-left: 216px;
    width: 215px;
    margin-top: -40px;
}
.nav > ul > li > .sub-menu > li >.sub-menu li:hover > .sub-menu {
    display: block;
}
/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
body {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: #4B5563;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
}
a {
	color:#444;
	text-decoration:none;
	display: inline-block;
}
section a {
    color: #1e87f0;
    text-decoration: underline;
}
a:hover {
	color:#444;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}
h1, h2, h3{
	margin: 20px 0!important;
	font-family: 'DM Serif Display', serif;
    font-weight: 400; /* This font only has a regular 400 weight */
}
h4, h5, h6{
	margin: 15px 0!important;
	font-family: 'Montserrat', sans-serif;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper {

}
.header {
    z-index: 99;
    position: relative;
}
/* logo */
.logo {

}
.logo-img {

}
/* nav */
.nav {

}
/* sidebar */
.sidebar {

}
/* footer */
.footer {
    font-size: 16px;
}

/*------------------------------------*\
    SMALL
\*------------------------------------*/
@media only screen and (min-width:320px) and (max-width: 767px){
	
	
	
.yellow-btn, .nav > ul > li > a:last-child {
    text-align: center;
}
	.header-box { 
		margin: 20px 5px;
		    padding: 8px;
	}
	.card-img {
    width: 100%;
}
.floating-card {
    width: auto;
    background: #fff;
    padding: 20px;
    box-shadow: 0px 3px 14px #0000001A;
    border-radius: 20px;
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 20px;
	text-align: center;
}
	.dark-blue-bg {
    text-align: center;
}
	.main-banner, .main-banner a {
    text-align: center;
}
	
	.ginput_container_text input {
		-webkit-appearance: none!important;
		-moz-appearance:    none!important;
		appearance:         none!important;
	}
body {
    font-size: 18px;
}
  h1{
    font-size: 38px;

  }
  h2{
    font-size: 32px;
  }

  h3{
    font-size: 26px;

  }
  h4{
    font-size: 22px;

  }

}
@media only screen and (min-width:768px) and (max-width: 959px){

}
@media only screen and (min-width:960px){

}
@media only screen and (-webkit-min-device-pixel-ratio:1.5),
	   only screen and (min-resolution:144dpi) {

}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}