
/* Colors */
/* Peach #f49e92; */
/* See https://colorkit.co/color/f49e92/ */
:root {
  --black: #000;
  --brown: #4c3706;	
  --blue: #48bedc !important;
  --gray: #555 !important;
  --peach: #f49e92 !important;
  --primary-light: #67acdb;
  --purple: #8e21f3;
  --teal: #1ca0ac !important;
  --yellow: yellow;
  --white: #fff !important;
  --primary: #5fc5b8;       /* Primary color */
  --secondary: #76A5AF;     /* Secondary color */
  --tertiary: #FD8686;      /* Tertiary color */
}

.color-black { color: var(--black) !important; }
.color-primary { color: var(--primary) !important; }
.color-secondary { color: var(--secondary) !important; }
.color-primary-light { color: var(--primary-light) !important; }
.color-tertiary { color: var(--tertiary) !important; }
.color-yellow { color: var(--yellow) !important; }
.color-white { color: var(--white) !important; }
.color-peach { color: var(--peach) !important; }
.color-brown { color: var(--brown) !important; }



/* Lines */
.white-line-right {
  border-right: 1px solid var(--white) !important;
}

.white-line-left {
  border-left: 1px solid var(--white) !important;
}

.white-line-top {
  border-top: 1px solid var(--white) !important;
}

.white-line-bottom {
  border-bottom: 1px solid var(--white) !important;
}

/* Home Page Panels */
.hp-panel1 {
  background-color: var(--primary) !important;
  border-top-left-radius: 3%;
}

.hp-panel2 {
  background-color: var(--secondary) !important;
}

.hp-panel3 {
  background-color: var(--primary) !important;
  border-top-right-radius: 3%;
}
    /* add media queries here for radius when on a phone */
    

/* Preloader */
.preloader-dot-loading .cssload-loading i {
  background: var(--primary) !important;
  color: var(--primary) !important;
}

/* Header font and icons */
header#header .header-top .element:not(.styled-icons) a:not(.btn):not(.styled-icons-item):not(.wp-block-button__link):not(.wp-block-button__link):not(.dropdown-item) {
  color: var(--white) !important;
  font-size: 14px;
  font-weight: 600;
}

header#header .header-top .element:not(.styled-icons) a:not(.btn):not(.styled-icons-item):not(.wp-block-button__link):not(.wp-block-button__link):not(.dropdown-item):hover {
  color: var(--black) !important;
  font-weight: 600;
}

/* Header hyperlinks */
a.header-a {
  color: var(--white) !important;
  text-decoration: none !important;
}

a.header-a:hover {
  color: var(--white) !important;
}

/* Fonts */
.montserrat {
  font-family: "Montserrat", sans-serif !important;
  font-optical-sizing: auto;
}

.ubuntu-light {
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.ubuntu-regular {
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.ubuntu-medium {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.25;
}

.ubuntu-bold {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.ubuntu-light-italic {
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.ubuntu-regular-italic {
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.ubuntu-medium-italic {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.ubuntu-bold-italic {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-style: italic;
}


/* Media Query Overrides for text in slider banner */

@media (max-width: 575px) {
	.custom-banner-font {
		font-size: 56px;
		line-height: 60px;
	}
	
	h1.custom-size {
        font-size: 1.5em;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
	.custom-banner-font {
		font-size: 56px;
		line-height: 60px;
	}
	
	.section-typo-light.h1 {
		font-size: 1.8em;
	}	
	
	h1.custom-size {
        font-size: 1.5em;
    }	
	
}

@media (min-width: 768px) and (max-width: 991px) {
	.custom-banner-font {
		font-size: 56px;
		line-height: 60px;
	}
	
	h1.custom-size {
        font-size: 1.8em;
    }	
	
}

@media (min-width: 992px)and (max-width: 1199px) {
	.custom-banner-font {
		font-size: 56px;
		line-height: 60px;
	}
	
	h1.custom-size {
        font-size: 1.8em;
    }	
	
}

@media (min-width: 1200px) and (max-width: 1399px) {
	.custom-banner-font {
		font-size: 76px;
	}
}

@media (min-width: 1400px) {
	.custom-banner-font {
		font-size: 76px;
	}
}

h1 {
  color: var(--secondary) !important;
}

h1.custom {
  color:  var(--brown) !important;
}

h2 {
  margin-top: 40px;
}

h2.custom {
  color:  var(--secondary) !important;
  font-size: 1.5rem;	
  margin-top: 0px;
}

h3 {
  margin-top: 0.25rem;
	margin-bottom: 0.25rem;
}

h3.custom {
	font-size: 1.75em;
}

p.custom {
  color: var(--teal) !important;
  margin-bottom: 5px;
  font-weight: 600;
}

p.custom span{
  color:var(--gray) !important;
  font-weight: 400;	
}

.text-white {
  font-weight: 600;	
}

/* font effects */
.custom-shadow-2px {
	/* shift right, shift down, blur, opacity */
	text-shadow: 2px 2px 2px rgba(0,0,0,0.80);
}

.be-bold {
	font-weight: bold !important;
}


/* Lists */
ul.custom2 {
  color: var(--tertiary);
}

ul.custom2 span {
  color:var(--gray) !important;
}

ul.custom {
  color: var(--purple) !important;
}

.tm-sc-unordered-list.list-style11 ul {
	list-style: none;
	padding-left: 25px;
}

.tm-sc-unordered-list.list-style11 ul li::before {
  position: absolute;
  width: 15px;
  left: -1px;
}

.tm-sc-unordered-list.list-style11 ul li {
	position: relative;
	padding-left: 25px;
}


/* Misc */
.rounded-custom {
	border-radius: 40px;
}

img.rounded {
  border-radius: 18px !important;
}


/* Logo */
header#header .menuzord-brand img {
  margin-top: 6px !important;
  margin-bottom: 6px !important;
}


/* Page Header */
header#header .header-top {
  background-color: var(--primary) !important;
}

.icon-theme-colored1.icon-dark a {
  background-color: var(--purple) !important;
  color: var(--white) !important;
}

.icon-theme-colored1.icon-dark a:hover {
  background-color: var(--purple) !important;
  color: var(--white) !important;
}

.icon-theme-colored1.icon-dark a:visited {
  background-color: var(--purple) !important;
  color: var(--white) !important;
}

.menuzord.theme-color2 .menuzord-menu > li.active > a, .menuzord.theme-color2 .menuzord-menu > li:hover > a, .menuzord.theme-color2 .menuzord-menu ul.dropdown li:hover > a {
  background: var(--tertiary);
  color: var(--white) !important;
}

.header-nav-container {
	border-bottom: 1px solid #eee;  /* add line below nav bar in page header */
}


/* Three home page panels below banner photo */
.bg-theme-colored1 {
  background-color: var(--primary) !important;
  border-top-left-radius: 18px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 0;
}

.bg-theme-colored2 {
  background-color: var(--secondary) !important;
}

.bg-theme-colored3 {
  background-color: var(--primary) !important;
  border-top-left-radius: 0;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  border-bottom-left-radius: 0;
}

    @media (max-width: 767px) {

      /* change rounded corners when on phone */
      .bg-theme-colored1 {
        border-top-left-radius: 18px;
        border-top-right-radius: 18px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
      }
      
      .bg-theme-colored3 {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border-bottom-left-radius: 18px;
        border-bottom-right-radius: 18px;
      }

    }


/* Buttons */
.btn-xs-override {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.btn-theme-colored1 {
  color: var(--white) !important;
  font-weight: 600;	
  background-color: var(--tertiary);
  border-color: var(--tertiary);
  text-transform: uppercase;
}

.btn-theme-colored1:hover {
  color: var(--white) !important;
  font-weight: 600;	
  background-color: var(--tertiary) !important;
  border-color: var(--tertiary) !important;
  text-transform: uppercase;
}

 .btn-check:focus + .btn-theme-colored1, .btn-theme-colored1:focus {
    color: var(--white) !important;
    background-color: var(--tertiary) !important; /* #35a6d4; */
    border-color: var(--tertiary) !important; /* #29a1d1; */
    box-shadow: 0 0 0 0.25rem rgba(155, 188, 63, 0.5); }

  .btn-check:checked + .btn-theme-colored1,
  .btn-check:active + .btn-theme-colored1, .btn-theme-colored1:active, .btn-theme-colored1.active,
  .show > .btn-theme-colored1.dropdown-toggle {
    color: var(--white) !important;
    background-color: var(--tertiary) !important; /*#41abd6; */
    border-color:  var(--tertiary) !important; /* #29a1d1; */ }
    .btn-check:checked + .btn-theme-colored1:focus,
    .btn-check:active + .btn-theme-colored1:focus, .btn-theme-colored1:active:focus, .btn-theme-colored1.active:focus,
    .show > .btn-theme-colored1.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.25rem rgba(155, 188, 63, 0.5); }


.btn-theme-colored7 {
  color: #000;
  font-weight: 800;	
  background-color: #fee5e2;
  border-color: #fee5e2;
  text-transform: uppercase;
}

.btn-theme-colored7:hover {
  color: #000;
  font-weight: 800;	
  background-color: #fee5e2;
  border-color: #fee5e2;
  text-transform: uppercase;
}

 .btn-check:focus + .btn-theme-colored7, .btn-theme-colored1:focus {
    color: #000;
    background-color: #fee5e2; /* #35a6d4; */
    border-color: #fee5e2; /* #29a1d1; */
    box-shadow: 0 0 0 0.25rem rgba(155, 188, 63, 0.5); }

  .btn-check:checked + .btn-theme-colored7,
  .btn-check:active + .btn-theme-colored7, .btn-theme-colored7:active, .btn-theme-colored7.active,
  .show > .btn-theme-colored7.dropdown-toggle {
    color: #000;
    background-color: #fee5e2; /*#41abd6; */
    border-color:  #fee5e2; /* #29a1d1; */ }
    .btn-check:checked + .btn-theme-colored1:focus,
    .btn-check:active + .btn-theme-colored7:focus, .btn-theme-colored7:active:focus, .btn-theme-colored7.active:focus,
    .show > .btn-theme-colored7.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.25rem rgba(155, 188, 63, 0.5); }

/* Custom Buttons */


/* custom heading buttons */
.btn-pgheader-top {
  background-color: transparent;
  border-right: 3px solid var(--white);
  color: var(--white) !important;
  display: inline-block;
  font-size: 14px;
  font-weight: bold !important;
  line-height: 1.15;
  margin-right: 0 !important;
  margin-top: 0 !important;
  padding-top: 15px;
  padding-bottom: 18px;
  padding-right: 16px;
  padding-left: 16px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
}

.btn-pgheader-top:hover {
  background-color: var(--white) !important;
  color: var(--secondary) !important;
}

    @media (max-width: 1199px) {

      .btn-pgheader-top {
        border: 3px solid var(--white);
        margin-bottom: 16px;
        padding-bottom: 15px;
      }

    }

/* Tim Tab Style Buttons 
.btn-pgheader-top-1 {
  background-color: var(--secondary) !important;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-right: 1px solid #0a3b5a;
  color: var(--white) !important;
  display: inline-block;
  font-size: 14px;
  font-weight: bold !important;
  line-height: 1.15;
  margin-right: 0 !important;
  margin-top: 0 !important;
  padding-top: 15px;
  padding-bottom: 18px;
  padding-right: 16px;
  padding-left: 16px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
}

.btn-pgheader-top-1:hover {
  background-color: var(--white) !important;
  color: var(--secondary) !important;
}

.btn-pgheader-top-2 {
  background-color: var(--white) !important;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-right: 1px solid #004569;
  color: var(--primary) !important;
  display: inline-block;
  font-size: 14px;
  font-weight: bold !important;
  line-height: 1.15;
  margin-right: 0 !important;
  margin-top: 0 !important;
  padding-top: 15px;
  padding-bottom: 18px;
  padding-right: 16px;
  padding-left: 16px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
}

.btn-pgheader-top-2:hover {
  background-color: var(--white) !important;
  color: var(--secondary) !important;
}

    @media (max-width: 1199px) {

      .btn-pgheader-top-1 {
        border-right: none;
        border-radius: 12px;
        padding-bottom: 15px;
      }
      
      .btn-pgheader-top-2 {
        border-radius: 12px;
        padding-bottom: 15px;
      }

    }

END Tim Tab Style buttons */

.btn-custom-1 {
  background-color: var(--tertiary);
  border-color:var(--tertiary);
  border-radius: 3rem;
  color: var(--white) !important;
  display: inline-block;
  font-size: 12px;
  font-weight: 600 !important;
  letter-spacing: .05rem;
  overflow: hidden;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
}

.btn-custom-1:hover {
  color: var(--tertiary) !important;
}


/* Top Navigation */
#top-primary-nav .menuzord-menu > li > a {
  font-size: .95rem !important;
}

#top-primary-nav .menuzord-menu > li > ul.dropdown {
  border-top: 3px solid var(--tertiary) !important;
}

#top-primary-nav .menuzord-menu ul.dropdown li a:hover {
  color: var(--primary) !important;
}


/* Sidebar Navigation */
.tm-sidebar-nav-menu-style2 .widget.widget_nav_menu ul > li a {
  background: #eee;
  border-left: 1px solid #fff;
  border-bottom: 1px solid var(--white) !important;
  color: #333;
  font-weight: 700;
  display: block;
  padding: 16px;
}

.tm-sidebar-nav-menu-style2 .widget.widget_nav_menu ul > li:first-child a {
  border-top: 1px solid #f5f5f5;
}

.tm-sidebar-nav-menu-style2 .widget.widget_nav_menu ul > li.active > a {
  border-left-color: var(--tertiary);
  background: #fee5e2;	
}

.tm-sidebar-nav-menu-style2 .widget.widget_nav_menu ul > li a:hover {
  background: #fee5e2;
  border-left: 5px solid #eee; 
  border-left-color: var(--tertiary);
}

.widget.widget_nav_menu ul > li::before {
  color: #202c45 ;
}


/* Footer */
footer {
  background-color: var(--brown) !important;
}

footer#footer a:not(.social-link):not(.icon) {
  color: var(--white) !important;
  font-weight: 400;
}

footer#footer {
  color: var(--white) !important;
}

a.box, a.box:visited, a.box:active {
	border: 2px solid var(--white) !important;
	color: #fff !important;
	font-weight: bold;
	padding: 8px 12px;
	cursor: pointer;
	text-decoration: none;
}

a.box:hover {
	text-decoration: underline;
}

.pt-24 {
	padding-top: 24px;
}

.pt-36 {
	padding-top: 36px;
}

.pl-48 {
	padding-left: 48px;
}

.dark-panel {
	display:inline-block;
	background-color: rgba(0,0,0,0.33);
	padding-top: 12px;
	padding-bottom: 12px;
	padding-left: 20px;
	padding-right: 20px;
}

.light-panel {
	display:inline-block;
	background-color: rgba(255,255,255,0.80);
	padding-top: 12px;
	padding-bottom: 12px;
	padding-left: 20px;
	padding-right: 20px;
}

/* Call to action */

.call-to-action::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(148,131,100,0.75);
  z-index: 0;
}

.call-to-action {
  background-image: url("../images/bg/back-pain.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--white) !important;
  padding-top: 20px;
  padding-bottom: 20px;
}

    @media (max-width: 576px) {
      .call-to-action {
        background-position: right center;
      }
    }

.call-to-action-title {
  color: var(--white) !important;
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 24px;
  line-height: 1;
  position: relative;
  text-align: center;
  z-index: 2;
}

a.call-to-action-button,a.call-to-action-button:visited {
  display: inline-block;
  border: 4px solid var(--white) !important;
  border-radius: 30px;
  color: var(--white) !important;
  font-size: 24px;
  font-weight: bold;
  margin-left: 8px;
  margin-right: 8px;
  margin-bottom: 24px;
  padding: 0.3em 1em;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  z-index: 2;
}

a.call-to-action-button:hover {
  background-color: var(--white);
  color: rgba(17,99,151) !important;
}

.call-to-action-statement {
  color: var(--yellow) !important;
  font-size: 24px;
  font-weight: bold;
  position: relative;
}

/*
.bottom-call-to-action {
	line-height: 1.7;
	font-size: 1.20rem;
	color: #6cc1c9 !important;
	font-weight: 600 !important;
}
*/

.scrollToTop {
  background-color: var(--white) !important;
}

.scrollToTop i {
  color: var(--tertiary);
  font-size: 42px;
}


/* picture effects */
.img-border {
	/* no borders for now */
}


/* custom button for page header */
.btn-hdr-custom {
	border: 1px solid transparent;
	border-radius: 5px;
	border-width: 0;
	cursor: pointer;
	/* display: inline-block; */
	background-color: var(--purple) !important;
	border-color: var(--purple) !important;
	font-family: "Open Sans", sans-serif;
	font-size: 14px;
	font-weight: bold !important;
	letter-spacing: 0;
	line-height: 1;
	overflow: hidden;
	padding-top: 12px;
	padding-bottom: 10px;
	padding-left: 12px;
	padding-right: 12px;
	position: relative;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: all 0.2s ease-in-out;
	user-select: none;
	white-space: nowrap;
	z-index: 0;
}

.btn-theme-colored2 {
  color: var(--white) !important;
  text-transform: uppercase;
  background-color: var(--purple) !important;
  border-color: var(--purple) !important;
}

.btn-theme-colored2::before {
  background: var(--purple) !important;
}

.btn-theme-colored2::before a:hover{
  background: var(--purple) !important;
}

.btn-theme-colored2::before a:visited{
  background: var(--purple) !important;
}


.hide-on-small {
	/* hide sidebar menu when media query hits small screen */
}

/* breadcrumb overrides */
section.breadcrumbs {
	background-color: #dad4c9; /* #eee; */
	line-height: 1.0;
	font-weight: 600;
}

div.breadcrumbs {
	margins: 0;
	padding-top:10px;
	padding-bottom:10px;
	padding-left:24px;
}

div.breadcrumbs > span > i {
	margin-left: 10px;
	margin-right: 10px;
	font-size: 0.8rem;
	color: #907c5b;
}

div.breadcrumbs > span > a {
	font-size: 0.8rem;
	color: #2C271E !important;
}

div.breadcrumbs > span > a:hover {
	font-size: 0.8rem;
	color: var(--tertiary) !important;
	text-decoration: underline !important;
}


/* filter colors */
.filter-primary-light {
	/* desired color: #7AA2C4; */
	filter: brightness(0) saturate(100%) invert(73%) sepia(13%) saturate(931%) hue-rotate(166deg) brightness(84%) contrast(87%);
}


/* separator */
hr.custom-separator {
	background-color: transparent !important;
	border-bottom: 1px solid #7AA2C4 !important;
	margin-top: 36px;
	margin-bottom: 24px;
}


/* footer layer overlay */
.layer-overlay-footer {
	position: relative;
}

.layer-overlay-footer::before {
	background: rgba(17, 17, 17, 0.5) none repeat scroll 0 0;
	content: " ";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
  z-index: -1;
}

/* footer ul li color override */
div.widget_nav_menu > ul.menu > li::before {
	color: var(--white) !important;
}

div.widget_nav_menu > ul.menu > li:hover::before {
	color: var(--white) !important;
}

/* footer nav links */
a.footer-nav-item,a.footer-nav-item:visited {
	color: var(--white) !important;
}

a.footer-nav-item:hover {
	color: var(--yellow) !important;
}


/**

 * ASSOCIATION LOGOS
 **/
img.assoc-logos {
    margin-top: 24px;
    width:60%;
    height: auto;
}

@media (max-width: 575px) {

    img.assoc-logos {
        margin-top: 24px;
        width:45%;            
        height: auto;
    }

}


/* media query overrides for extra small devices */
@media (max-width: 575px) {

	.nudge-down {
		margin-top: 35px;
	}

	.center-at-575 {
		margin: 0 auto;
	}

	.bottom-call-to-action {
		line-height: 1.5;  /* reduce from 1.7 to 1.5 when on phone */
		font-size: 1rem;   /* reduce from 1.20rem to 1rem when on phone */
		color: #7AA2C4 !important;
		font-weight: 600 !important;
	}

	.hide-on-small {
		display: none;
	}
	
	.call-to-action-title {
        font-size: 38px;
      }

}

/* media query overrides for small devices */
@media (min-width: 576px) and (max-width: 767px) {

	.nudge-down {
		margin-top: 35px;
	}

	.center-at-767 {
		margin: 0 auto;
	}

	.hide-on-small {
		display: none;
	}
	
	.call-to-action-title {
        font-size: 38px;
      }	

}

/* media query overrides for medium devices */
@media (min-width: 768px) and (max-width: 991px) {

	.center-at-991 {
		margin: 0 auto;
	}

}

/* media query overrides for large devices */
@media (min-width: 992px)and (max-width: 1199px) {



}

/* media query overrides for extra large devices */
@media (min-width: 1200px) and (max-width: 1399px) {



}

/* media query overrides for extra large devices */
@media (min-width: 1400px) {



}
