/*
Theme Name: Roni Custom Theme
Theme URI: http://wordpressguru.net
Version: 1.0
Description: Custom Theme by Wordpress Guru
Author: Wordpress Guru
Author URI: http://wordpressguru.net
*/


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

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}

:root {
    --asphalt: #737373;
    --sun: #32969A;
    --grass: #FBD04D;
    --stripe:#FFEC00;
    --blue:#45697D;
	--green:#32969a;
}

/* html element 62.5% font-size for REM use */
html {
    font-size:62.5%;
    overflow-x: hidden;
}
body {
    font: 400 19px/1.7 'Helvetica';
    color: var(--asphalt);
    word-break: break-word;
    background-color: #bfbfbf;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}
p {
    margin-bottom: 2.7rem;
}
b, strong {
    font-weight: bold;
}
a, input[type="submit"], button {
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}
a:hover {
	color: #000;
}
.page_wrap {
    overflow-x: hidden;
    position: relative;
    width: 1920px;
    margin: 0 auto;
    background-color: #fff;
    max-width: 100%;
}


/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
    height: auto;
}
a {
	color:inherit;
	text-decoration:none;
}
a:hover {
	color:#444;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}
.sun {
    color: var(--sun);
}
.asphalt {
    color: var(--asphalt);
}
.grass {
    color: var(--grass);
}
.stripe {
    color: var(--stripe);
}

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


.container {
    padding-right: 40px;
    padding-left: 40px;
    max-width: 1360px;
}
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: bold;
    color: #000;
}
.h1, h1 {
    font-size: 28px;
}
.h2, h2 {
    font-size: 28px;
}
.h3, h3 {
    font-size: 28px;
}
.h4, h4 {
    font-size: 22px;
}
.h5, h5 {
    font-size: 18px;
}
section ol, section ul {
    padding-left: 20px;
    margin-bottom: 2rem;
}
section ol li, section ul li {
    margin: 0 0 18px;
}
section.welcome ul {
    font-size: 24px;
}
section.welcome ul li {
    line-height: 1;
}


/* header */
.site_logo a {
    text-decoration: none !important;
    font-size: 18px;
    color: #fff;
    font-family: 'Circular Std';
    font-weight: normal;
    display: block;
    line-height: 1;
}
.header .add_social_media {
    position: absolute;
    top: 100%;
    right: 40px;
    margin-top: 50px;
    z-index: 2;
}
.header .add_social_media a {
    margin-left: 15px;
}
.add_social_media a {
    color: var(--sun);
    text-decoration: none !important;
}
.add_social_media a:hover i {
    transform: scale(1.15);
    transition: all .2s;
}
.sticky .add_social_media {
    display: none !important;
}

/* nav */
.header {
    padding: 15px 0;
    left: 0;
    right: 0;
    z-index: 99999;
    max-width: 100%;
    margin: 0 auto;
}
.header.sticky {
    position: fixed;
}
.main-nav {
    padding: 5px 0;
    margin: 0;
    list-style: none;
}
.main-nav > li {
    display: inline-block;
    margin: 0 60px 0 0;
    position: relative;
    padding: 10px 0;
}
.main-nav > li:last-child {
    margin-right: 0;
}
.main-nav li .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    -webkit-box-shadow: 0px 1px 17px 0px rgb(0 0 0 / 10%);
    -moz-box-shadow: 0px 1px 17px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 17px 0px rgb(0 0 0 / 10%);
    display: none;
    z-index: 999;
    width: 184px;
    padding: 15px 20px;
    text-align: left;
}
.sub-menu li {
    margin: 0 0 10px;
    list-style: none;
}
.sub-menu li a {
    position: relative;
}
.main-nav li:hover .sub-menu {
    display: block;
}
.main-nav li a {
    font-weight: 500;
    font-size: 16px;
    text-decoration: none !important;
    font-family: 'Circular Std';
    opacity: .5;
}
.main-nav li:hover > a, .main-nav li.current-menu-item > a {
    opacity: 1;
}
.main-nav li.nav_btn a {
    background-color: transparent;
    color: var(--sun);
    font-size: 13px;
    padding: 10px 15px;
    border-radius: 4px;
    text-decoration: none !important;
    position: relative;
    top: -2px;
    border: 1px solid var(--sun) !important;
    font-weight: bold;
}
.main-nav li.nav_btn a i {
    transform: rotate(90deg);
    margin-right: 3px;
    font-size: 16px;
    top: 2px;
    position: relative;
}
.main-nav li.nav_btn a:hover {
    color: #fff;
    background-color: var(--sun);
}
.site-nav ul {
	padding: 0;
	margin:0;
	list-style: none;
}
.site-nav ul > li {
    position: relative;
    margin: 0 0 10px;
    display: block;
    padding: 0;
}
.site-nav ul li a {
    color: #fff;
    font-size: 16px;
    text-decoration: none !important;
    font-family: 'Circular Std';
    opacity: .5;
}
.site-nav ul li:hover > a, .site-nav ul li.current-menu-item > a {
    opacity: 1;
}
.site-nav ul.sub-menu li a {
    color: var(--sun);
    font-size: 16px !important;
}
.site-nav ul.sub-menu {
    width: 194px !important;
    background: #fff;
    padding: 10px 10px 1px;
}
.site-nav .nav_btn a {
    background-color: transparent;
    color: #fff;
    font-size: 18px !important;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none !important;
    position: relative;
    top: -2px;
    border: 1px solid #fff !important;
    font-weight: bold;
    display: inline-block;
}
.site-nav .nav_btn a:hover {
    background: #fff;
    color: var(--sun);
}
.site-nav .nav_btn i {
    transform: rotate(90deg);
    position: relative;
    top: 1.5px;
    margin-right: 2px;
}
.site-nav {
    text-align: center;
    position: fixed;
    height: 100vh;
    width: 100vw;
    background: var(--sun);
    top: 0;
    right: -100vw;
    bottom: 0;
    z-index: 9;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}
.site-nav.active {
	right: 0;
}


/* sidebar */
.sidebar {

}

/* footer */
.footer {
    background-repeat: repeat;
    background-size: auto;
    background-position: center top;
    font-size: 14px;
    font-weight: 300;
}
ul.footer-nav {
    padding: 0;
    list-style: none;
    display: inline-block;
    border-bottom: 1px solid rgba(0,0,0,.1);
    margin-bottom: 40px;
}
ul.footer-nav li {
	display: inline-block;
	margin: 0 0 18px;
}
ul.footer-nav li a {
    font-size: 16px;
    font-family: 'Circular Std';
    padding: 0 20px;
}
.footer_text i.fa  {
    font-size: 30px;
    margin: 0 0 0 10px;
    position: relative;
    top: 6px;
}
.footer_text i.fa:hover  {
    color: var(--sun);
}
.footer_text a {
    display: inline-block;
    color: var(--sun);
}
.footer_gallery .row>div {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}
.footer_top .inner {
    max-width: 709px;
    background: rgba(255,255,255,.85);
    margin: 0 auto;
    padding: 20px;
}

/*------------------------------------*\
    PAGES
\*------------------------------------*/

.page_wrap * {
	background-repeat: repeat;
	background-position: center 100%;
	background-size: cover;
    background-position-x: left;
}
*::-webkit-input-placeholder {
   color: #009BBF;
}
*:-moz-placeholder { /* Firefox 18- */
   color: #009BBF;
}
*::-moz-placeholder {  /* Firefox 19+ */
   color: #009BBF;
}
*:-ms-input-placeholder {
   color: #009BBF;
}
::-webkit-input-placeholder:after{
}
:focus::-webkit-input-placeholder{
     color:transparent;
}
::-moz-placeholder:after{
}
:focus::-moz-placeholder{
     color:transparent;
}

ul.switch-links {
	padding: 0 !important;
	margin: 0;
	list-style: none;
}
ul.switch-links li {
	margin: 0 0 20px;
}
ul.switch-links a {
    font-size: 18px;
    line-height: 1;
    background-color: var(--grass);
    padding: 20px 50px 18px 20px;
    color: #fff;
    position: relative;
    -webkit-transition:  all 0.25s ease 0s;
    -moz-transition:  all 0.25s ease 0s;
    -o-transition:  all 0.25s ease 0s;
    transition:  all 0.25s ease 0s;
    display: block;
    text-decoration: none !important;
    font-weight: bold;
    text-transform: uppercase;
}
ul.switch-links a.active, ul.switch-links a:hover {
    color: #fff;
    background-color: var(--sun);
}
ul.switch-links a:before {
    display: none;
}
.switch-content {
    text-transform: none;
    padding: 20px 20px 0;
    display: none;
}
ul.switch-links a:after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -15px;
    font-size: 30px;
}
ul.switch-links a.active:after{
    transform: rotate(180deg);
}
ul.switch-links li:first-child .switch-content {
    display: block;
}

.hidden {
	display:none !important;
}
.tab_selector {
    padding-right: 0;
    list-style: none;
}
.tab_selector li {
    display: inline-block;
    margin:0 25px 10px;
}
.tab_selector li a {
    display: block;
    width: 128px;
    height: 40px;
    font-size: 18px;
    font-weight: 400;
    border: 1px solid var(--blue);
    line-height: 40px;
    border-radius: 4px;
    color: var(--blue);
}
.tab_selector li.ui-state-active a, .tab_selector li:hover a {
    border-color: var(--blue);
    background-color: var(--blue);
    color: #fff;
    text-decoration: none;
}

.outline-btn {
    display: inline-block;
    font-size: 16px;
    text-transform: uppercase;
    border: 1px solid var(--sun);
    padding: 15px 30px;
    line-height: 1;
    text-decoration: none !important;
    -webkit-transition: all 0.25s ease 0s;
    -moz-transition: all 0.25s ease 0s;
    -o-transition: all 0.25s ease 0s;
    transition: all 0.25s ease 0s;
    text-align: center;
    font-weight: 500;
    font-style: normal;
    border-radius: 0;
    line-height: 1;
    color: var(--sun);
    letter-spacing: 0;
    min-width: 200px;
    text-align: center;
}
.outline-btn:hover {
	background-color:  var(--sun) !important;
	color: #fff !important;
	border-color:  var(--sun) !important;
}
.outline-btn.white-btn {
    color: #fff;
    border-color: #fff;
}
.outline-btn.white-btn:hover {
    background-color:  #fff !important;
    color: var(--sun) !important;
    border-color:  #fff !important;
}
.outline-btn.gray-btn {
    border-color: #B4B4B4;
    color: var(--asphalt);
}
.outline-btn.solid-btn {
    background-color: var(--sun);
    color: #fff;
    border-color: var(--sun);
}
.outline-btn.solid-btn:hover  {
    background-color: #fff !important;
    color: var(--sun) !important;
    border-color: var(--sun) !important;
}
.outline-btn.solid-btn.btn-white {
    background-color: #fff;
    color: var(--sun);
    border-color: #fff;
}
.outline-btn.solid-btn.btn-white:hover  {
    background-color: var(--sun) !important;
    color: #fff !important;
    border-color:var(--sun) !important;
}
.rounded-btn {
    border-radius: 50px;
    font-family: 'Circular Std';
    text-transform: none;
    font-size: 20px;
}
section {
	padding: 8rem 0 6rem;
}
.hero {
    min-height: 10rem;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-flex-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    padding: 25px 0;
    background: #E5E5E5;
}
.hero article {
    color: #fff;
}
.hero h1 {
	color: #32969a;
    margin-bottom: 0;
}
.single-post .hero h1 {
    text-transform: capitalize;
}
.single-post .hero article {
    padding-top: 60px;
}
.breadcrumbs {
    font-size: 18px;
    text-transform: uppercase;
}
.region_page .hero article  {
    position: absolute;
    width: 307px;
    max-width: 100%;
    left: 0;
    right: 0;
    bottom: -50%;
    margin: 0 auto;
}
.region_page .hero {
    margin-bottom: 80px;
}
.slider ul {
    padding: 0;
    margin: 0;
}
.slider ul li {
    list-style: none;
}
.slide_txt  {
    display: flex;
    align-items: center;
}
.slide_txt .inner {
    text-align: center;
    color: #fff;
}
.slide_txt .inner p {
    font-size: 3.6rem;
    line-height: 1;
    margin: 0 0 6rem;
}
.slide_txt .inner h3 {
    font-size: 9.6rem;
    line-height: 1;
    margin-bottom: 3rem;
    color: #fff;
    font-weight: normal;
}
.slider .bx-pager {
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    text-align: center;
}
.slider .bx-pager .bx-pager-item {
    display: inline-block;
}
.slider .bx-pager a {
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    background: #fff;
    margin: 0 10px;
    text-indent: -99999px;
}
.slider .bx-pager a.active {
    background: var(--grass);
}

.section_title i {
    display: block;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    margin: 0 0 10px;
}
.callout_box p {
    font-size: 24px;
    margin-bottom: 10px;
}
.callout_box h2  {
    letter-spacing: 1rem;
}
.callout_box .outline-btn {
    position: relative;
    top: -17px;
    color: var(--asphalt) !important;
    padding: 15px 37px;
}
.callout_box .outline-btn:after {
    content: '';
    display: block;
    width: 40px;
    height: .5px;
    background: var(--sun);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8px;
    margin: 0 auto;
    opacity: .6;
}
.callout_box .outline-btn:hover:after {
    background: #fff;
}
.region_event ul {
    font-family: 'Bebas Neue';
    font-size: 4.5rem;
    padding: 0;
    list-style: none;
    padding-top: 35px;
    text-align: right;
}
.region_event ul li {
    margin-bottom: 25px;
}
.region_event ul li a {
    position: relative;
    display: block;
    padding-right: 20px;
    line-height: 1;
    text-decoration: none !important;
}
.region_event ul li a:after {
    content: '';
    display: inline-block;
    height: 35px;
    width: 5px;
    background: var(--sun);
    position: absolute;
    right: 0;
    top: 4px;
}
.region_event ul li:hover a:after {
    background: var(--grass);
    -webkit-transition:  all 0.25s ease 0s;
    -moz-transition:  all 0.25s ease 0s;
    -o-transition:  all 0.25s ease 0s;
    transition:  all 0.25s ease 0s;
}
.about_div h2 {
    font-size: 4.8rem;
    font-weight: 400;
}
.about_div h2 b.icon-machine {
    display: inline-block;
    width: 62px;
    height: 60px;
    background: url(img/icon-machine.png) no-repeat center;
    position: relative;
    top: 12px;
}
.watch_videos .btn-play {
    padding: 10px 0 10px 35px;
    background: url(img/icon-play.png) no-repeat left center;
}
.watch_videos h3 {
    font-size: 2.4rem;
}
.watch_videos h4 {
    color: var(--sun);
    font-weight: 400;
}
.about_div:before, .about_div:after {
    content: '';
    display: block;
    height: 8px;
    position: absolute;
    left: 0;
    right: 0;
    top: 50px;
    background: url(img/border-line.png) repeat-x center;
    z-index: 9;
}
.about_div:after {
    top: unset;
    bottom: 50px;
}
.get_involve h2.mb30 {
    margin-bottom: 50px;
}
.get_involve .img-cell {
    margin: 0;
}
.get_involve .bcstripe * {
    height: 100%;
}
.get_involve .bcstripe ul {
    padding: 0 45px 0 20px;
    list-style: none;
}
.get_involve .bcstripe ul li {
    height: 25%;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--asphalt);
    position: relative;
    margin: 0;
}
.get_involve .bcstripe ul li:last-child {
    border: 0;
}
.get_involve .bcstripe ul li:after {
    content: '';
    display: block;
    width: 47px;
    height: 47px;
    background: url(img/arrow-right.png) no-repeat right center;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -24px;
}
.get_involve .bcstripe ul li a {
    height: unset;
    font-size: 3rem;
    font-weight: bold;
    display: block;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    z-index: 1;
    text-orientation: none !important;
    padding-right: 47px;
}
.home .footer_gallery {
    display: none;
}
.add_carousel {
    text-align: center;
}
.owl-carousel .owl-stage {
    display: flex;
    align-items: center;
}
.add_carousel .owl-carousel .owl-item .item {
    padding: 0 25px;
}
.add_carousel .owl-carousel .owl-item img {
    width: auto;
    margin: 0 auto;
}
.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    margin-top: -34px;
    background: none !important;
    outline: none !important;
    font-size: 68px;
    color: var(--sun) !important;
    line-height: 68px;
}
.owl-carousel .owl-nav button.owl-prev {
    left: 0;
}
.owl-carousel .owl-nav button.owl-next {
    right: 0;
}
.add_carousel .slider {
    padding: 60px 0;
    border-top: 1px solid rgba(0,0,0,.3);
}
.add_carousel .slider:last-child {
    border-bottom: 1px solid rgba(0,0,0,.3);
}
.virtual_events h3 {
    color: var(--sun);
}
body .gform_wrapper.gravity-theme .gfield_label {
    font-size: 18px;
    font-weight: 400;
}
body .gform_wrapper.gravity-theme .gfield select, body .gform_wrapper.gravity-theme .gfield input, body .gform_wrapper.gravity-theme .gfield textarea {
    border: 1px solid #CFCFCF;
    border-radius: 4px;
    outline: none !important;
}
body .gform_wrapper.gravity-theme .gfield select {

  /*Clear the default select box style*/
  appearance:none;
  -moz-appearance:none;
  -webkit-appearance:none;

  /*Display a small arrow picture in the rightmost middle of the selection box*/
  background: url(img/select-arrow.png) no-repeat scroll 98% center transparent;


  /*Leave a little place for the small drop-down arrow to avoid being overwritten by text*/
  padding-right: 30px;
}

body #gform_wrapper_3.gform_wrapper.gravity-theme .gform_footer {
    text-align: center;
}

/*Clear the default selection box style of ie. Clear, hide the drop-down arrow*/
select::-ms-expand { display: none; }
body .gform_wrapper.gravity-theme .gform_footer input {
    background-color: var(--sun);
    border: 1px solid var(--sun);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 14px 46px;
    border-radius: 4px;
    line-height: 1 !important;
}
body .gform_wrapper.gravity-theme .gform_footer input:hover {
    background-color: transparent;
    color: var(--sun);
}
body .gform_wrapper.gravity-theme .gfield textarea.large {
    height: 203px;
}
body .gform_wrapper.gravity-theme .gfield {
    margin-bottom: 20px;
}
body .gform_wrapper.gravity-theme .gform_footer {
    padding: 10px 0;
    margin-top: 0;
    text-align: right;
}
.get_in_touch .gform_wrapper.gravity-theme .gform_footer {
    text-align: right;
}
.scroll_btns br {
    display: none;
}
.scroll_btns a {
    margin:0 25px 20px;
}
.become_sponsor .gform_footer {
    text-align: center;
}

#gform_wrapper_3.gform_wrapper.gravity-theme .gfield-choice-input+label {
    display: none;
}
#gform_wrapper_3.gform_wrapper.gravity-theme .gchoice {
    text-align: center;
}
#gform_wrapper_3.gform_wrapper.gravity-theme .gfield-choice-input {
    width: 34px;
    height: 30px;
    border: 1px solid #CFCFCF !important;
}
#gform_wrapper_3.gform_wrapper.gravity-theme .gfield.gfield--width-third {
    text-align: center;
}
#gform_wrapper_3.gform_wrapper.gravity-theme .gfield.gfield--width-third .d-flex {
    margin-bottom: 33px;
    min-height: 100px;
}
#gform_wrapper_3.gform_wrapper.gravity-theme .gfield.gfield--width-third .d-flex > b {
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%;
}
#gform_wrapper_3.gform_wrapper.gravity-theme .gfield.gfield--width-third .d-flex > h4 {
    color: var(--sun);
    font-size: 24px;
    font-weight: 500;
    margin:0;
    text-align: left;
}
#gform_wrapper_3.gform_wrapper.gravity-theme .gfield.gfield--width-third .d-flex > b {
    font-size: 24px;
    font-weight: 500;
    color: var(--grass);
    margin-left: 20px;
    border-left: 1px solid var(--asphalt);
    padding-left: 20px;
    text-align: left;
}
#gform_wrapper_3.gform_wrapper.gravity-theme .gfield.gfield--width-third .gfield_description {
    text-align: left;
    border: 1px solid #CFCFCF;
    padding: 20px;
    min-height: calc(100% - 60px);
    border-radius: 8px;
    margin-top: 30px;
    font-size: 18px;
    color: #000;
}
#gform_wrapper_3.gform_wrapper.gravity-theme .gfield.gfield--width-third .gfield_label {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1;
    min-height: 70px;
}
body .make_donation .gform_wrapper.gravity-theme .gform_footer, .become_volunteer .gform_wrapper.gravity-theme .gform_footer {
    text-align: right;
}
.learning_labs .gform_wrapper.gravity-theme .gform_footer{
    text-align: center;
}
.get_involve {
    padding-top: 80px;
}
.get_involve .img-cell img {
    width: 100%;
}
.virtual_events h2 {
    margin-bottom: 80px !important;
}
section.continue_tradition ul li {
    margin: 0 0 3rem;
}
.section_title.mb50 {
    margin-bottom: 70px !important;
}
.make_donation .row>div:first-child {
    max-width: 497px;
}
body .gform_wrapper.gravity-theme .gfield_list_header {
    display: none;
}
body .gform_wrapper.gravity-theme .gfield-choice-input+label {
    max-width: unset;
}
.gform_wrapper.gravity-theme .gform_fileupload_rules {
    display: none;
}
.ginput_container_fileupload {
    border: 1px solid #cfcfcf;
    border-radius: 4px;
    padding: 100px 10px;
}
.gform_wrapper.gravity-theme .gfield input[type="file"]{
    margin: 0 auto;
    display: block;
    width: auto !important;
    border: 0;
}
.get_involved_page .section_title.mb50 {
    margin-bottom: 100px !important;
}
#info-box {
    display: none;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    background-color: #ffffff;
    border: 2px solid #505050;
    padding: 3px 6px;
    font-size: 14px;
    min-width: 80px;
    text-align: center;
}
.region_btn:hover .cls-1 {
    fill: var(--grass);
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}
.home .add_carousel .slider:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.about_div {
    background-color: #505050;
}
.about_div a, .virtual_events a {
    text-decoration: underline;
}
.about_div a:hover, .virtual_events a:hover {
    color: var(--grass);
}
.about_div .fa, .about_div .fas {
    font-size: 3.2rem;
    margin-right: 10px;
}
.region_page .region_event ul li {
    margin-bottom: 10px;
    font-size: 3.2rem;
    position: relative;
    display: block;
    padding-right: 20px;
    line-height: 1;
    text-decoration: none !important;
}
.region_page .region_event ul li:after {
    content: '';
    display: inline-block;
    height: 25px;
    width: 5px;
    background: var(--grass);
    position: absolute;
    right: 0;
    top: 2px;
}
.region_page .region_event .img-cell img {
    width: 550px;
}
.form_popup {
    padding-top: 25px;
    padding-bottom: 25px;
}
.form_popup input[type="email"] {
    border: 1px solid #CFCFCF;
    border-radius: 4px;
    height: 40px;
    margin: 0 0 10px;
    width: 296px;
    max-width: 100%;
    text-align: center;
}
.form_popup input[type="submit"] {
    width: 166px;
}
.form_popup h2 {
    font-size: 3.2rem;
    color: var(--asphalt);
}
.form_popup .h_l._grass {
    background-size: 100px;
    background-position: 225px 28px;
}
.form_popup .section_title i {
    font-size: 12px;
}
.form_popup label {
    color: #000;
    font-size: 18px;
    font-weight: 400;
}
#formMessage {
    color: #FF0000;
    font-size: 12px;
    margin-bottom: 50px;
}
#formMessage a {
    text-decoration: underline;
}
body .gform_wrapper.gravity-theme .gfield input#input_3_17_1 {
    width: 30px;
    height: 30px;
    position: relative;
    top: 8px;
    margin-right: 8px;
}
.special_thanks .row>a:first-child img {
    width: 326px;
}
.special_thanks .row>a:last-child img {
    width: 260px;px;
}
.service_list .row>a {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    background: #fff;
    height: 176px;
    text-decoration: none !important;
}
.service_list .row>a:nth-child(odd) {
    background: #F1F1F1;
}
.service_list .row>a:hover  {
    background: #f7f7f7 !important;
    transform: scale(1.05);
    transition: all .3s;
}
.service_list h4 {
    font-size: 18px;
}
.service_list p {
    font-size: 13px;
    margin: 0;
}
.service_list img {
    margin-bottom: 20px;
}
.mid_banner .inner {
    height: 352px;
    display: flex;
    align-items: center;
}
.mid_banner h3 {
    color: #fff;
    font-weight: normal;
    margin-bottom: 0;
}
.mid_banner .row>div:last-child .inner {
    justify-content: flex-end;
}
.our_gallery_section .title {
    margin-bottom: 35px;
}
.photo_box a:hover img  {
    transform: scale(1.05);
    transition: all .3s;
}
.breadcrumbs a:hover  {
    color: var(--grass) !important;
}
.faq_page .content h5 {
    font-size: 18px;
    color: var(--asphalt);
    margin: 0 0 1rem;
    padding-top: 1rem;
}
.update_list .item {
    padding: 4rem 0 2rem;
    border-bottom: 2px solid var(--grass);
}
.update_list .item h5 a {
    color: var(--asphalt);
}
.contact_section h3 {
    text-align: center;
}
.boxedtitle {
    background: var(--sun);
    color: #fff;
    border-bottom: 5px solid #54d0d4;
    padding: 25px;
    display: inline-block;
    margin-bottom: 70px;
}
.boxedtitle h2 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 10px;
}
.boxedtitle p {
    font-size: 18px;
    font-style: italic;
    margin: 0;
}
.abr_contact_info {
    color: #000;
    max-width: 315px;
    width: 100%;
    margin: 0 auto;
    font-size: 16px;
}
.aboutronidiv {
    background-color: #fff;
    padding: 50px;
    border-radius: 20px;
    border-top: 5px solid var(--sun);
    position: relative;
}
.aboutroni>div:before {
    content: '';
    display: block;
    width: 297px;
    height: 297px;
    position: absolute;
    left: -81px;
    top: 86px;
    background:url(img/EllipseBg.png) no-repeat center / 100%;
}
.sm_add_social_media {
    font-size: 20px;
}
.sm_add_social_media h3 {
    font-size: 32px;
    color: #fff;
}
.sm_add_social_media .inner {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    height: 100%;
}
.footerlogo {
    font-family: 'Circular Std';
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 3px;
    display: block;
    margin: 0 0 30px;
}
.footer_bottom .add_social_media a {
    margin: 0 8px 20px;
    display: inline-block;
    font-size: 20px;
}
.footer_copyright {
    font-family: 'Circular Std';
    font-size: 18px;
    color: rgba(0,0,0,.5);
}
.blogs_list .inner {
    max-width: 398px;
    margin: 0 auto;
    padding: 6px;
    background: #fff;
    border-radius: 15px;
    height: 100%;
}
.blogs_list .inner img {
    border-radius: 15px 15px 0 0;
}
.bloginfo {
    padding: 30px 20px 5px;
    font-size: 16px;
    font-family: 'Circular Std';
}
.video_div {
    position: relative;
}
.bookinfo {
    padding: 30px 0 0;
    font-size: 16px;
    max-width: 247px;
    margin: 0 auto;
    color: #000;
}
.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
    background-color: var(--sun);
}
.book_list .inner {
    width: 392px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    height: 100%;
}
.buynowbtn .add_to_cart_inline {
    border: 0 !important;
    padding: 0 !important;
}
.buynowbtn .add_to_cart_inline a  {
    display: block;
    background: var(--sun);
    color: #fff;
    text-align: center;
    font-size: 20px;
    text-transform: uppercase;
    padding: 20px;
    border-radius: 0;
}
.book_list .outline-btn {
    display: block;
    padding: 20px;
    font-size: 20px;
}
.related.products {
    clear: both;
}
.book-inner-2 {
    display: flex;
}
.book-inner-2 a {
    padding: 0 20px 20px 0;
}
.woocommerce div.product form.cart .button {
    border: 2px solid var(--sun);
}
.woocommerce div.product form.cart .button:hover {
    color: var(--sun);
    background-color: transparent;
}
.fa-substack:before {
    content: url(img/substack.png);
    position: relative;
    top: 2px;
}
.news_pic span {
    display: inline-block;
    line-height: 1.3;
    font-size: 18px;
    color: #fff;
    background: #32969a;
    text-align: center;
    padding: 11px;
    position: absolute;
    left: 15px;
    top: 15px;
}
.news_list .inner {
    width: 344px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    height: 100%;
}
.owl-carousel .owl-stage {
    align-items: unset;
}
.single-product.woocommerce div.product p.price {
    display: none;
}
.single-product.woocommerce div.product div.images {
    margin-right: 2em;
}
.single-product.woocommerce div.product div.summary {
    width: 100%;
    float: none;
}
.single-product.woocommerce div.product div.summary ul {
    list-style-position: inside;
}
.testi_list .owl-carousel .owl-item {
    display: flex;
    align-items: center;
    justify-content: center;
}
.pgp_add_photos .img_caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 1.2;
    padding: 10px;
    background: rgba(0,0,0,.5);
    color: #fff;
    text-align: center;
    font-size: 16px;
}
#fancybox-title-over {
    background: rgba(0,0,0,.5);
    text-align: center;
    font-size: 16px;
    line-height: 1.4;
}

/*------------------------------------*\
    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 {
    padding: 0;
    -webkit-box-shadow: 0px 1px 17px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow:    0px 1px 17px 0px rgba(0, 0, 0, 0.3);
    box-shadow:         0px 1px 17px 0px rgba(0, 0, 0, 0.3);
}
.sticky .site_logo img {
    width: 200px;
}
.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;
	}
}








/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

/* Desktop */
.ForMobile {
    display:none !important;
}
@media screen and (min-width:0) and (max-width:1799px) {




} @media screen and (min-width:0) and (max-width:1599px) {




} @media screen and (min-width:0) and (max-width:1439px) {


} @media screen and (min-width:0) and (max-width:1365px) {



} @media screen and (min-width:0) and (max-width:1199px) {
.homehero .row>div:first-child img {
    width: 400px;
    max-width: 100%;
    margin: 0 auto;
    display: block;
}
.boxedtitle {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 450px;
    max-width: 100%;
}
ul.footer-nav li a {
    padding: 0 10px;
}
.main-nav > li {
    margin-right:20px;
}
.callout_box .outline-btn {
    position: relative;
    top: -10px;
}
#gform_wrapper_3.gform_wrapper.gravity-theme .gfield.gfield--width-third .d-flex > h4, #gform_wrapper_3.gform_wrapper.gravity-theme .gfield.gfield--width-third .d-flex > b {
    font-size: 18px;
}
#gform_wrapper_3.gform_wrapper.gravity-theme .gfield.gfield--width-third .gfield_description {
    font-size: 16px;
}
#gform_wrapper_3.gform_wrapper.gravity-theme .gfield.gfield--width-third .gfield_label {
    font-size: 20px;
}
html {
    font-size: 52.5%;
}
.tab_selector li {
    margin: 0 15px 10px;
}
.homehero.pt100 {
    padding-top: 20px;
}
.homehero .row>div:first-child {
    margin-bottom: 30px;
}

/* Mobile */
} @media screen and (min-width: 0) and (max-width: 991px) {
.ForMobile {
    display:block !important;
}
.ForDesktop {
    display:none !important;
}
header.active  {
    position: fixed;
}
body {
    min-width:320px;
}
header .row > div:first-child {
    width: 75%;
}
header .row > div:last-child {
    width: 25%;
}
.single-post .hero article {
    padding-top: 0;
}	
.mobile-nav li .sub-menu {
    display: none;
    text-align: center;
    margin: 10px auto;
}
.nav_btn  {
    padding-top: 10px !important;
}
.sub-menu li a {
    font-size: 18px !important;
}
.sub-menu li a:before {
    display: none;
}
section.welcome  ul {
    font-size: 18px;
}
.get_involve .bcstripe ul li a {
    font-size: 2.2rem;
    padding-right: 27px;
    line-height: 1;
}
.slide_txt .inner h3 {
    font-size: 60px;
}
.slide_txt .inner {
    padding: 50px 0 0;
}
.region_page .hero article {
    width: 257px;
}
.region_page .hero {
    margin-bottom: 60px;
}
.tab_selector li {
    margin: 0 15px 10px;
}
#gform_wrapper_3.gform_wrapper.gravity-theme .gfield.gfield--width-third {
    -ms-grid-column-span: 6;
    grid-column: span 6;
}
.get_involve .bcstripe ul li:after {
    width: 27px;
    height: 27px;
    margin-top: -14px;
    background-size: 100%;
}
.switch-content {
    font-size: 16px;
}
.site_logo img {
    max-width: 150px;
}
.header {
    padding: 5px 0;
}
.sticky .site_logo img {
    width: 100px;
    margin-top: -5px;
}
.service_list .row>a {
    -ms-flex: 0 0 33.33%;
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 15px;
}
.tab_selector li {
    margin: 0 5px 10px;
}
.tab_selector li a {
    width: 88px;
}
.update_list .text-right {
    text-align: left!important;
}
html {
    font-size: 42.5%;
}
.fs18 {
    font-size: 14px;
}


} @media screen and (min-width:0) and (max-width:767px) {
body {
    font-size: 16px;
}
h1, h2, h3 {
    font-size: 24px;
}
h4 {
    font-size: 18px;
}
.header .add_social_media {
    right: 20px;
    margin-top: 30px;
}
.drb_add_content h2 {
    text-align: center;
}
.homehero .row>div:last-child img {
    max-width: 40%;
}
.container, .container-fluid {
    padding-right: 20px;
    padding-left: 20px;
}
.get_involve .bcstripe ul li {
    padding: 20px 0;
}
.slide_txt .inner h3 {
    font-size: 40px;
}
.slide_txt .inner h4 {
    font-size: 28px;
}
.slide_txt .inner p {
    font-size: 18px;
}
.slider .bx-pager a {
    width: 10px;
    height: 10px;
   margin: 0 5px;
}
.section_title i {
    font-size: 12px;
}
.welcome {
    padding-top: 0;
}
.welcome .pr40 {
    padding-right: 15px;
}
.callout_box  {
    display: none;
}
.region_event ul {
    padding-top: 0;
}
.about_div h2 {
    font-size: 2.4rem;
    text-align: left !important;
    padding-left: 50px;
    position: relative;
}
.about_div h2 b.icon-machine {
    width: 42px;
    height: 40px;
    position: absolute;
    left: 0;
    top: 0;
    background-size: 100%;
}
.watch_videos {
    padding-top: 0;
}
.get_involve  .grid-1 {
    margin-bottom: 10px;
}
.get_involve .bcstripe ul li a {
    font-size: 2.4rem;
}
.get_involve .bcstripe ul {
    padding: 0;
}
.get_tips {
    padding-top: 0;
}
#gform_wrapper_3.gform_wrapper.gravity-theme .gfield.gfield--width-third {
    -ms-grid-column-span: 1/-1;
    grid-column: 1/-1;
    position: relative;
    padding-bottom: 60px;
    margin-bottom: 60px;
}
#gform_wrapper_3.gform_wrapper.gravity-theme .gfield.gfield--width-third .gfield_label {
    margin-bottom: 0;
    min-height: unset;
}
#gform_wrapper_3.gform_wrapper.gravity-theme .gfield.gfield--width-third .ginput_container_checkbox {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}
#gform_wrapper_3.gform_wrapper.gravity-theme .gfield.gfield--width-third .d-flex {
    min-height: unset;
}
.tab_selector li {
    margin: 0 5px 10px;
}
.tab_selector li a {
    width: 108px;
}
.region_page .hero article {
    width: 200px;
    bottom: -40%;
}
.region_page .hero {
    margin-bottom: 10px;
}
.fs24 {
    font-size: 1.8rem;
}
body .gform_wrapper.gravity-theme .gform_footer {
    text-align: center !important;
}
.h_l._grass, .h_l._stripe {
    background-size: 90px 12px;
    background-position: right 90%;
}
.become_sponsor  {
    padding-top: 0;
}
.outline-btn {
    font-size: 14px;
    padding: 12px 20px;
    min-width: 160px;
}
.slider .bx-pager {
    bottom: 0;
}
.mid_banner {
    background: none !important;
}
.mid_banner .row>div {
    background: url(img/banner1.png) !important;
    margin: 0 -5px;
}
.mid_banner .row>div:last-child {
    background: url(img/banner2.png) !important;
}
.mid_banner .inner {
    height: 212px;
    justify-content: center !important;
    text-align: center;
}
.service_list > .row {
    margin: 0;
}
.site_logo img {
    max-width: 130px;
}
.footer h3 {
    margin: 0 0 20px;
}
.single-post article img.alignleft {
    float: none;
    display: block;
    margin: 0 auto 20px !important;
}
.testi_list .full-slider {
    padding-left: 30px;
    padding-right: 30px;
}
	main.defaultpage article.hentry>p>img {
		max-width:50%;
	}

} @media screen and (min-width:0) and (max-width:575px) {
ul.footer-nav li {
    display: block;
    margin: 0 0 5px;
}
.boxedtitle h2 {
    font-size: 18px;
}
.boxedtitle p {
    font-size: 16px;
}
.homehero .row>div:last-child img {
    max-width: 80%;
    margin: 0 auto 30px !important;
    display: block;
    float: none;
}
.aboutronidiv {
    padding: 20px;
}
.sm_add_social_media h3 {
    font-size: 24px;
}
.sm_add_social_media {
    font-size: 16px;
}
.header {
    padding: 5px 0;
}
.site-nav {
    padding-top: 70px;
    padding-bottom: 70px;
}
.outline-btn {
    font-size: 16px;
}
.footer_gallery .row>div {
    -ms-flex: 0 0 33.33%;
    flex: 0 0 33.33%;
    max-width: 33.33%;
}
.footer_gallery .row>div:nth-child(-n+2) {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.home .footer_gallery {
    display: block;
}
.special_thanks .row>div {
    text-align: center !important;
}
h3 {
    font-size: 20px;
}
.breadcrumbs {
    font-size: 14px;
}
.welcome .row>div:first-child {
    padding: 0;
}
.welcome .outline-btn.solid-btn {
    display: block;
    border-radius: 0;
    margin-left: -20px;
    margin-right: -20px;
}
.welcome {
    padding-bottom: 0;
}
.welcome .row>div:last-child {
    margin-bottom: 0;
}
.image_content_head.pt50 {
    padding-top: 30px;
}
.region_event {
    padding-top: 0;
}
.about_div {
    padding: 40px 0 20px;
}
.about_div:before, .about_div:after {
    top: 10px;
    background-size: 100%;
}
.about_div:after {
    bottom: 10px;
}
.about_div .row>div {
    margin-bottom: 0;
}
.watch_videos h3 {
    margin-bottom: 5px;
}
.get_involve {
    padding-top: 0;
}
.get_involve .bcstripe {
    margin-right: 15px;
    margin-left: 15px;
}
.get_tips {
    padding-bottom: 0;
}
.footer .pt60 {
    padding-top: 30px;
    padding-bottom: 20px;
}
.footerlogo.mb30 {
    margin-bottom: 15px;
}
.footer_text {
    padding: 0 0 20px;
}
.footer_text p {
    margin-bottom: 0;
}
ul.footer-nav li a {
    font-weight: 200;
}
ul.footer-nav {
    margin-bottom: 40px;
}
.footer h3 {
    margin: 0 0 30px;
}
.header > .container {
    padding-left: 10px;
    padding-right: 10px;
}
.sticky .site_logo img {
    width: auto;
}
.hamburger {
    top: 3px;
}
.about_div .text-cell {
    font-size: 14px;
    font-weight: 300;
}
.image_content_head .mb50 {
    margin-bottom: 30px !important;
}
.tab_selector {
    margin-bottom: 30px !important;
}
.photo_galley h2.mb50 {
    margin-bottom: 0 !important;
}
.photo_galley .pt30 {
    padding-top: 10px;
}
.photo_galley.pb60 {
    padding-bottom: 10px;
}
.photo_box {
    display: flex;
}
.photo_box>div:not(.col-sm-12) {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 5px 10px;
    margin:0;
}
h2.section_title.mb50 {
    margin-bottom: 30px !important;
}
.continue_tradition {
    padding-top: 40px;
}
.continue_tradition .outline-btn.gray-btn {
    display: block;
    border-width: 1px;
}
.continue_tradition .scroll_btns {
    margin-bottom: 0;
}
.scroll_btns a {
    margin: 0 0 20px;
}
img.alignnone {
    margin: 5px 0 20px 0;
}
.continue_tradition .sun_heading  {
    margin-bottom: 0;
}
.continue_tradition .pt50 {
    padding-top: 0;
}
p {
    margin-bottom: 2rem;
}
.region_page .hero article {
    width: 128px;
    position: unset;
}
.virtual_events.pt100 {
    padding-top: 20px;
    padding-bottom: 0;
}
.virtual_events .img-cell {
    margin-left: -20px;
    margin-right: -20px;
}
.region_event ul li a {
    padding-right: 30px;
    font-size: 4.8rem;
    text-align: right;
}
.region_event ul li a:after {
    height: 25px;
    top: 2px;
}
.region_page .photo_galley.pb60 {
    padding-top: 0;
}
.outline-btn {
    border-width: 1px;
}
.region_page .get_involve {
    padding-bottom: 50px;
}
.region_page .region_event ul li a {
    font-size: 3.2rem;
}
html {
    font-size: 37.5%;
}
.site_logo img {
    max-width: 100px;
}
.header {
    padding: 0;
}
.service_list .row>a {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.slide_txt .inner h3 {
    font-size: 24px;
}
.slide_txt .inner p {
    font-size: 16px;
    margin: 0 0 10px;
}
.slide_txt .inner {
    padding: 0;
}
.footer_copyright  span {
    display: block;
}
.footer h3 {
    margin: 0 0 10px;
}
h1, h2, h3, h4, h5, h6 {
    line-height: 1.1;
}
.site_logo a {
    font-size: 15px;
}

} @media only screen and (min-device-width:320px) {
    body {padding:0;}
}