/*
Theme Name: Briighter Care
Author: Freerange Future
Author URI: http://freerangefuture.com/
Version: 1.0
Text Domain: briic
*/

* {
  padding: 0;
  margin: 0;
}

body{
  font-size: 18px;
  line-height: 26px;
  font-family: var(--body);
  font-weight: 400;
  font-style: normal;
  color: var(--text);
}

a{
  color: var(--dark_blue);
  text-decoration: underline;
}
header a, footer a{
  text-decoration: none;
}
.related-post-news a, .text-card a:hover, .text-card a{
  text-decoration: none;
}
.related-post-news a:hover{
  color: inherit;
  text-decoration: underline!important;
}
.toolbar a:hover{
  text-decoration: underline;
}
a.button, .button a, .icon-card a{
  text-decoration: none!important;
  color: #fff;
}

.dark_blue{
  background: var(--dark_blue);
}
.yellow{
  background: var(--yellow);
}
.green{
  background: var(--green);
}
.pink{
  background: var(--pink);
}
.sky_blue{
  background: var(--sky_blue);
}
.light_blue{
  background: var(--light_blue);
}
.black{
    background: #000;
}
.white{
    background: #fff;
}
.filter-dark_blue{
  filter: var(--filter-dark_blue);
}
.filter-yellow{
  filter: var(--filter-yellow);
}
.filter-pink{
  filter: var(--filter-pink);
}
.filter-green{
  filter: var(--filter-green);
}
.filter-sky_blue{
  filter: var(--filter-sky_blue);
}
.filter-light_blue{
  filter: var(--filter-light_blue);
}

h1, h2, h3, h4{
  font-family: var(--heading);
  font-weight: 700;
  font-style: normal;
  margin: 0 0 10px;
}

h5, h6{
  font-family: var(--body);
  font-weight: 700;
  font-style: normal;
  margin: 0 0 10px;
}

p, li{
  font-size: 1em;
  line-height: 1.44em;
}

p.lg{
  font-size: var(--font-sm);
}

footer li, footer p, footer a{
  font-family: greycliff-cf, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.site-footer{
  margin-top: -30px;
}

.site-footer hr{
  margin-top: 30px;
}

footer *{
  color: var(--text);
}

li li, li li li{
  font-size: 1em;
}

li ul, li ol, .post-content li ul, .post-content li ol{
  margin-bottom: 0;
}

ul ul ul, ol ol ol{
  list-style: none;
  padding-left: 0!important;
}

ul ul ul li, ol ol ol li{
  position: relative;
  padding-left: 20px;
}

ul ul ul li:before, ol ol ol li:before{
  display: inline-block;
  content: '-';
  position: absolute;
  left: 0;
}

h1{
  font-size: 3.33em;
  line-height: 1.056em;
  margin: 0 0 25px;
}

h2{
  line-height: var(--line-height-1);
  font-size: 2.66em;
  margin-bottom: 15px;
}

h3{
  font-size: 2em;
  line-height: 1.1667em;
}

h4{
  font-size: var(--font-md);
  line-height: var(--line-height-2);
  font-weight: normal;
  font-family: var(--heading);
}

h5{
  font-size: var(--font-xs);
  line-height: var(--line-height-2);
}

h6{
  font-size: 1em;
  margin-bottom: 5px;
}

.button{
  background: var(--dark_blue);
  color: var(--white);
  font-size: 1em;
  line-height: 1.222em;
  border-radius: 27px;
  padding: 14px 30px 12px;
  min-width: 210px;
  transition: all 0.2s ease-in-out;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.button:hover{
  background: var(--yellow);
  color: var(--dark_blue);
}
.yellow .button:hover, .dark_blue .button:hover{
  background: var(--sky_blue);
}
.dark_blue .button{
  background: var(--yellow);
  color: #000;
}
.dark_blue *{
  color: #fff;
}
.white .button{
  background: var(--yellow);
  color: #000;
}
.white .button:hover{
  background: var(--dark_blue);
}
.button.txt{
  background: transparent;
  color: #000;
  padding: 0;
  border-radius: 0;
  margin-top: 0;
  font-weight: 600;
  position: relative;
  display: flex;
  min-width: 50px;
  align-items: center;
  justify-content: flex-end;
}
.button.txt:after{
  content: '';
  display: inline-block;
  background: url('assets/images/txt-arrow.svg') no-repeat;
  width: 35px;
  height: 24px;
  background-size: contain;
  position: relative;
  margin-left: 10px;
  right: 0;
  margin-bottom: 4px;
  filter: var(--filter-pink);
  transition: all 0.2s ease-in-out;
}

.button.txt:hover:after, a:hover .button.txt:after{
  margin-left: 20px;
}

input, textarea{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@keyframes gform_ajax_spinner {
  to {transform: rotate(360deg);}
}
 
.gform_ajax_spinner{
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 17px;
  right: 13px;
  display: block;
  width: 22px!important;
  height: 22px!important;
  margin-top: 0;
  margin-left: 0;
  border-radius: 50%;
  border: 2px solid var(--white);
  border-top-color: var(--yellow);
  animation: gform_ajax_spinner .6s linear infinite;
}


form.load-spinner .gform_footer input.button{
  background-image: none!important;
}

.gtranslate_wrapper select{
  width: 100px;
  text-overflow: ellipsis;
  border: 0!important;
  font-weight: 400!important;
}

.gtranslate_wrapper select:focus{
  border: 0!important;
  outline: none!important;
}

.nice-select{
  border-radius: 4px!important;
  border: 1px solid var(--text)!important;
  height: 49px!important;
  width: 100%!important;
  font-size: 1em!important;
  padding-left: 15px!important;
  line-height: 50px!important;
  color: var(--text);
  background-color: #fff!important;
}

.nice-select:after{
  border-bottom: 3px solid var(--text)!important;
  border-right: 3px solid var(--text)!important;
  border-radius: 1px;
  width: 9px!important;
  height: 9px!important;
  right: 20px!important;
  top: 47%!important;
}
.nice-select .current{
  font-size: 16px!important;
}
.nice-select .list li{
  padding-left: 15px!important;
  padding-right: 15px!important;
  margin-bottom: 0!important;
  font-size: 16px!important;
}
.nice-select .list li:before{
  content: none!important;
}
.nice-select .list{
  border-radius: 0!important;
  margin-top: -8px!important;
  width: 100%!important;
  border: 1px solid var(--dark_blue)!important;
  border-top: 0!important;
  left: 0!important;
  border-bottom-right-radius: 10px!important;
  border-bottom-left-radius: 10px!important;
  box-shadow: 0 4px 8px -1px rgba(0,0,0,0.2)!important;
  -webkit-transform: scale(0.75) translateY(0)!important;
  -moz-transform: scale(0.75) translateY(0)!important;
  transform: scale(0.75) translateY(0)!important;
}
.nice-select span{
  color: var(--text)!important;
}

select .gf_placeholder{
  font-style: italic;
}

.nice-select.open .list{
  -webkit-transform: scale(1) translateY(0)!important;
  -moz-transform: scale(1) translateY(0)!important;
  transform: scale(1) translateY(0)!important;
}

.nice-select .option.selected{
  font-weight: normal!important;
}

.nice-select .option:hover{
  background-color: var(--dark_blue)!important;
  color: #fff!important;
}

.nice-select .option.selected.focus{
  background-color: #00000020!important;
}
.nice-select .option.selected.focus:hover{
  color: var(--dark_blue)!important;
}

.ginput_container.ginput_container_text{
  position: relative;
  z-index: 1;
}

.ginput_container.ginput_container_select{
  position: relative;
  z-index: 2;
}

.gform_wrapper li.gfield.gfield_error.gfield_contains_required div.gfield_description {
  color: #FF2B09!important;
  font-weight: bold!important;
  font-style: normal!important;
  padding-left: 24px!important;
  position: relative!important;
}

.gform_wrapper li.gfield.gfield_error.gfield_contains_required div.gfield_description:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  width: 18px;
  height: 20px;
  background: url('assets/images/error.svg') no-repeat center;
  background-size: contain;
}

.gform_wrapper .top_label li .gfield_checkbox, .gform_wrapper .top_label li .gfield_radio{
  padding-left: 0!important;
  width: 100%!important;
}

legend.gform-field-label, .gfield_description{
  font-size: 16px!important
}

.gsection_title{
  font-size: 1em;
  font-family: var(--body);
}

.gfield--type-section{
  border-bottom: 0!important;
  padding-bottom: 0!important;
}

.gform_wrapper .gfield_radio .gchoice input{
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.gform_wrapper .gfield_radio .gchoice label:before{
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 2px solid var(--text);
  border-radius: 50%;
}

.gform_wrapper .flex .gfield_radio{
  flex-direction: row!important;
}

.gform_wrapper .gfield_radio .gchoice input:checked ~ label:before{
  background-color: #fff;
}

.gform_wrapper .gfield_radio .gchoice input:checked ~ label,
.gform_wrapper .gfield_checkbox .gchoice input:checked ~ label{
  font-weight: normal!important;
}

.gform_wrapper .gfield_radio .gchoice label:after{
  content: '';
  position: absolute;
  display: none;
  top: 5px;
  left: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text);
}

.gform_wrapper .gfield_radio .gchoice input:checked ~ label:after{
  display: block;
}

.gform_wrapper .gfield_radio .gchoice label, .gform_wrapper .gfield_checkbox .gchoice label{
  margin: 0!important;
  padding-left: 3px!important;
}

.gform_wrapper .gfield_checkbox, .gform_wrapper .gfield_radio{
    margin: 0!important;
    float: left;
    width: 100%;
}

.gform_wrapper.gravity-theme .gfield_checkbox label, .gform_wrapper.gravity-theme .gfield_radio label{
  max-width: 100%!important;
}

.gform_wrapper .gfield_checkbox .gchoice input{
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.gform_wrapper .gfield_checkbox .gchoice label:before{
  content: '';
  display: block;
  position: absolute;
  top: 3px;
  left: 0;
  height: 24px;
  width: 24px;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 0;
}

.gform_wrapper .gfield_checkbox .gchoice input:checked ~ label:before{
  background-color: #000;
  border-color: #000;
}

.gform_wrapper .gfield_checkbox .gchoice label:after{
  content: '';
  position: absolute;
  display: none;
  left: 8px;
  top: 6px;
  width: 8px;
  height: 14px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
  transform: rotate(40deg);
}

.gform_wrapper .gfield_checkbox .gchoice input:checked ~ label:after{
  display: block;
}

.gform_wrapper .gfield_checkbox .gchoice, .gform_wrapper .gfield_radio .gchoice{
  line-height: 1.5em!important;
  margin: 0 0 12px!important;
  padding-left: 25px;
  position: relative;
}
.page-theme-dark header .navrow{
  border-color: #fff;
}
header{
  padding: 25px 0 15px;
}
.menu{
  list-style: none;
  padding: 0;
}
header .toolbar, header .navrow{
  position: relative;
  z-index: 9999999999999;
}
header .social-menu{
  width: auto!important;
  float: left;
  top: auto!important;
  position: relative;
}
header .menu li{
  display: inline-block;
}
header .toolbar-menu li a{
  padding: 4px 10px;
  display: block;
}
header .gtranslate_wrapper{
  float: left;
  margin-right: 30px;
  margin-left: 20px;
}
header .navrow-wrapper{
  width: 100%;
}
header .navrow-wrapper .menu{
  display: flex;
  justify-content: space-between;
}
header .nav-wrapper .toolbar, header .nav-wrapper .navrow{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header .toolbar{
  overflow: hidden;
}
header .toolbar .contacts-menu{
  float: left;
}
header .toolbar .toolbar-menu{
  float: right;
  position: relative;
}
header .toolbar .toolbar-menu .menu-toolbar-container{
  float: left;
}
header .search-toggle, header .site-search .button{
  filter: var(--filter-dark_blue);
}
.page-theme-dark header .search-toggle, .page-theme-dark header .site-search .button{
  filter: invert(1);
}
header .site-search{
  background: var(--dark_blue);
}
header.white .site-search{
  background: #fff;
}
header.white .site-search .search-field{
  border: 1px solid #fff!important;
  color: var(--dark_blue)!important;
}
header.white .untoggle-search:before, header.white .untoggle-search:after{
  background: var(--dark_blue);
}
header .toolbar-menu li{
  font-size: var(--font-xs);
  margin-right: 20px;
}
header .toolbar li:last-child{
  margin-right: 0;
}
header .logo-wrapper{
  width: 360px;
  padding-top: 15px;
  float: left;
}
header .nav-wrapper{
  width: calc(100% - 400px);
  float: right;
}
header .nav-wrapper .navrow{
  float: right;
  border-top: 1px solid var(--yellow);
}
header .toolbar, header .navrow{
  min-width: 780px;
}
header .toolbar{
  float: right;
  justify-content: space-between!important;
}
.page-theme-dark header a{
  color: #fff;
}
.page-theme-dark header a:hover{
  color: #fff;
}
.toolbar li.tel a:before{
  content: '';
  display: inline-block;
  width: 17px;
  height: 17px;
  background: url('assets/images/phone.svg') no-repeat center;
  background-size: contain;
  filter: invert(1);
  position: relative;
  top: 2px;
  margin-right: 8px;
}
.toolbar li.mail a:before{
  content: '';
  display: inline-block;
  width: 18px;
  height: 12px;
  background: url('assets/images/mail.svg') no-repeat center;
  background-size: contain;
  filter: invert(1);
  position: relative;
  top: 1px;
  margin-right: 3px;
  margin-right: 8px;
}
header .toolbar li.label a{
  pointer-events: none;
}
header .toolbar li.label a:hover{
  text-decoration: none;
  pointer-events: none;
}
header .logo{
  display: block;
}
#header-menu ul:not(.sub-menu) li a{
  padding: 18px 0 10px;
  display: block;
}
.site-header .menu li a:not(.button):focus{
  color: inherit!important;
}
#header-menu ul:not(.sub-menu) li.menu-item-has-children > a{
  padding-right: 18px;
  position: relative;
  pointer-events: none;
}
#header-menu li.menu-item-has-children > a:after{
  content: '';
  border: solid var(--dark_blue);
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 2.5px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  position: absolute;
  right: 0;
  top: 24px;
}
.page-theme-dark header #header-menu li.menu-item-has-children > a:after{
  border: solid white;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 2.5px;
}
#header-menu li.menu-item-has-children:hover .sub-menu{
  display: block;
}
header .menu li.menu-item-has-children{
  position: relative;
}
#header-menu .sub-menu{
  display: none;
  position: absolute;
  width: calc(100% + 100px);
  left: -20px;
  border: 1px solid var(--dark_blue);
  min-width: 174px;
  border-radius: 10px;
  background: #fff;
  padding: 18px 0;
  box-shadow: 0px 4px 4px rgba(76, 34, 35, 0.2);
}
.page-theme-light #header-menu .sub-menu{
  border-color: var(--dark_blue);
}
.page-theme-light #header-menu .sub-menu li > a{
  border-bottom: 0;
  color: var(--dark_blue)!important;
}
#header-menu .lg-sub-menu .sub-menu{
  min-width: 240px;
}
#header-menu li:last-child .sub-menu{
  width: calc(100% + 61px);
}
#header-menu .sub-menu li{
  display: block;
  width: 100%;
  float: left;
  margin: 0!important;
  font-size: 16px!important;
}
#header-menu li:menu-item-has-children > a:hover{
  text-decoration: none;
}
#header-menu .sub-menu li a{
  color: var(--dark_blue);
  padding: 8px 20px 5px 20px!important;
  border-bottom: 0;
}
#header-menu .sub-menu li:last-child a{
  border-bottom: 0;
}
#header-menu .sub-menu li a i{
  color: var(--dark_blue);
}
#header-menu .sub-menu li a:hover{
  background: transparent;
  text-decoration: underline;
  color: var(--dark_blue)!important;
}
#header-menu .sub-menu li.current-menu-item a{
  background-color: var(--light_grey);
}
#header-menu ul.sub-menu li.current-menu-item > a{
  background-color: var(--dark_blue);
  color: #fff!important;
}
#donation .nav-tabs li a, .post-item a{
  text-decoration: none!important;
}
header.dark_blue #header-menu ul.sub-menu li.current-menu-item > a{
	background: var(--yellow);
	text-decoration: none;
  color: var(--dark_blue)!important;
}
.txt-right{
  text-align: right;
}
.txt-left{
  text-align: left;
}
.txt-center{
  text-align: center;
}

.flex{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.flex-center{
  align-items: center;
}
.flex-sb{
  justify-content: space-between;
}
.flex-justify-center{
  justify-content: center;
}

.flex-col-reverse{
  flex-direction: row-reverse;
}

.arrow{
  border: solid black;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}
  
.arrow.down{
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.arrow.up{
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.arrow.left{
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.arrow.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.gform_wrapper label{
  font-size: var(--font-xs);
  line-height: 1.33em;
  margin: 0 0 5px!important;
  font-weight: normal!important;
}
.gform_wrapper .gfield_required_text{
  font-size: 0!important;
  line-height: 1em!important;
}
/*
.gform_wrapper .gfield_required_text:before{
  content: '*';
  display: inline-block;
  font-size: 16px!important;
  color: #343434;
  line-height: 1em!important;
}*/
.gform_wrapper.gravity-theme .gform_footer, .gform_wrapper.gravity-theme .gform_page_footer{
  position: relative;
}
#field_submit{
  position: relative;
}
.gform_footer .button{
  padding: 14px 20px 13px!important;
  border-radius: 27px!important;
  min-width: 216px!important;
  background: var(--dark_blue)!important;
  margin-top: 20px!important;
  color: #fff!important;
  font-weight: 600!important;
  font-size: 18px!important;
}
.sky_blue .gform_footer .button, .dark_blue .gform_footer .button{
  background: var(--yellow)!important;
  color: #000!important;
}
footer .form-wrapper .gform-body{
  width: calc(100% - 210px);
  float: left;
}
footer .form-wrapper .gform_footer{
  width: 180px;
  float: right;
  margin-top: 10px!important;
  padding: 0!important;
}
input, form button, select, textarea{
  border: 1px solid var(--text)!important;
  border-radius: 4px!important;
  padding: 13px 17px 12px!important;
  background: #fff;
  color: var(--black)!important;
  font-size: 16px!important;
  line-height: 22px!important;
  height: auto!important;
  font-weight: 600!important;
}
.gfield_error input, .gfield_error textarea{
  border-color: var(--yellow)!important;
}
input:focus, button:focus, select:focus, textarea:focus{
  outline: none!important;
  border: 1px solid var(--dark_blue)!important;
  box-shadow: none!important;
}
button.accordion-button:focus{
  border: 0!important;
}
.gform_validation_errors{
  display: none!important;
}
.gform_wrapper.gravity-theme .gfield_error .gfield_repeater_cell label, .gform_wrapper.gravity-theme .gfield_error label, .gform_wrapper.gravity-theme .gfield_error legend, .gform_wrapper.gravity-theme .gfield_validation_message, .gform_wrapper.gravity-theme .validation_message, .gform_wrapper.gravity-theme [aria-invalid=true]+label, .gform_wrapper.gravity-theme label+[aria-invalid=true]{
  color: inherit!important;
}
.gform_wrapper.gravity-theme .gfield_error [aria-invalid=true]{
  border-color: var(--yellow)!important;
}
.gform_wrapper.gravity-theme .gfield textarea, .gfield textarea{
  display: block;
}
.gform_wrapper.gravity-theme .gfield_validation_message, .gform_wrapper.gravity-theme .validation_message, .gfield_validation_message{
  border: 0!important;
  padding: 12px 15px 8px!important;
  margin: -7px 0 0!important;
  color: var(--dark_blue)!important;
  background: var(--yellow)!important;
  line-height: 1.3em!important;
  border-radius: 0 0 10px 10px!important;
  position: relative!important;
}
.gfield.gfield_error .ginput_container{
  padding-bottom: 0!important;
}
.gfield.gfield_error input, .gfield.gfield_error textarea{
  position: relative;
  z-index: 3;
}
#menu-footer{
  float: left;
  width: 100%;
}
#menu-footer li.menu-item-has-children{
  width: 24%;
  float: left;
}
#menu-footer li.column-group{
  width: 28%;
}
#menu-footer li.column-group > a{
  font-size: 0;
  opacity: 0;
  pointer-events: none;
  margin-bottom: 0;
}
.footer-menu li.column-group .sub-menu{
  margin-top: 3px;
}
#menu-footer li{
  width: 100%;
  float: left;
  font-weight: 300;
  margin-bottom: 10px;
  font-size: var(--font-xs);
  line-height: var(--line-height-3);
}
#menu-footer li li{
  width: 100%!important;
}
.footer-menu, #menu-footer li li{
  width: 100%;
  float: left;
  padding-right: 0;
  font-size: 1em;
}
.social-menu{
  width: auto;
  float: left;
}
.social-menu li a{
  width: 32px!important;
  height: 32px!important;
}
.sub-menu{
  list-style: none;
}
footer .logo img{
  width: 298px;
  height: auto;
  margin: 0 0 30px;
}
footer a:hover{
  color: #fff;
  text-decoration: underline;
}
footer p{
  font-size: var(--font-xs);
  line-height: 1.5em;
  margin-bottom: 12px;
}
footer p.web-dev{
  margin-bottom: 0;
}
footer .site-contact p{
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}
footer .site-contact p a{
  display: flex;
  align-items: center;
}
footer .site-contact p span{
  font-weight: 600;
}
footer .site-contact .icon{
  min-width: 35px;
  float: left;
  text-align: center;
  margin-right: 10px;
}

.footer-menu li.menu-item-has-children > a{
  font-weight: 600;
  pointer-events: none;
}
.web-dev a{
  font-family: var(--body);
  font-weight: 600;
  text-decoration: underline;
}
#menu-terms li:not(:last-child):after{
  content: '';
  display: inline-block;
  width: 1px;
  height: 17px;
  margin: 0 7px;
  background: #000;
}
hr{
  border-color: #D8D8D8;
}
.footer-menu li.bold > a {
  font-weight: 700;
}
.footer-menu .sub-menu{
  margin-top: 10px;
}
.footer-menu li a:hover{
  color: var(--text);
}
.footer-menu .sub-menu li{
  margin-bottom: 10px;
}
.social-menu li{
  display: flex;
  justify-content: flex-end;
  float: left;
  margin: 5px;
}
.social-menu li a{
  font-size: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.social-menu li.fb a:before{
  content: '';
  background: url('assets/images/fb.svg') no-repeat center;
  background-size: contain;
  display: block;
  filter: var(--filter-yellow);
}
.social-menu li.ig a:before{
  content: '';
  background: url('assets/images/ig.svg') no-repeat center;
  background-size: contain;
  display: block;
  filter: var(--filter-yellow);
}
.social-menu li a:hover:before{
  filter: var(--filter-light_blue)!important;
}
.page-theme-light .social-menu li a:hover:before{
  filter: var(--filter-dark_blue)!important;
}
header .social-menu li a, header .social-menu li a:hover{
  background: transparent;
}
.social-menu li a:before{
  height: 28px!important;
  width: 28px!important;
}
header .social-menu li.li a:before{
  position: relative;
  top: -1px;
}
header .social-menu li{
  margin: 0 10px 0 0;
}
header .social-menu{
  margin-right: 40px;
  margin-bottom: 10px;
}
footer .ack{
  padding-top: 0;
  padding-bottom: 20px;
}
footer .social-menu li a:before{
  filter: unset!important;
}
footer .social-menu li a:hover:before,
.page-theme-light footer .social-menu li a:hover:before{
  filter: var(--filter-sky_blue)!important;
}
footer .copyright{
  float: left;
  font-size: var(--font-xs);
  margin-bottom: 0;
}
footer .terms-menu{
  float: left;
}
footer .terms-menu li{
  display: inline-block;
  font-size: var(--font-xs);
}
footer .terms-menu li:after{
  content: '';
  width: 1px;
  height: 15px;
  background: #fff;
  display: inline-block;
  margin: 0 8px 0 10px;
  position: relative;
  top: 2px;
}
footer .terms-menu li:last-child:after{
  content: normal;
}
footer .terms-menu li.accessibility span:hover{
  text-decoration: underline;
  cursor: pointer;
}
footer .social-menu{
  float: right;
}
footer .ack .sm-flex-col-reverse{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.close{
  font-size: 0;
  position: absolute;
  right: 15px;
  top: -30px;
  display: block;
  width: 34px;
  height: 34px;
}
.close:hover{
  cursor: pointer;
}
.close:before, .close:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 34px;
  width: 4px;
  background-color: var(--dark_blue);
  border-radius: 3px;
}
.close:before {
  transform: rotate(45deg);
}
.close:after {
  transform: rotate(-45deg);
}
.close:hover:before, .close:hover:after{
  background-color: var(--yellow);
  cursor: pointer;
}
#banner h1{
  margin-bottom: 20px;
}
#banner p{
  font-size: 1em;
  line-height: 1.34em;
}
#banner.full-content-width .content p{
  max-width: 1200px;
}
.text-image.img-pos-right-rectangle{
  overflow: hidden;
}
.wp-block-columns{
  padding-left: 80px;
  padding-right: 80px;
}
.wp-block-columns .wp-block-columns{
  padding-left: 0;
  padding-right: 0;
}
.wp-block-columns.is-layout-flex{
  gap: 50px;
}
.wp-block-columns.box{
  border-radius: 60px 60px 60px 0;
  padding: 50px 40px;
}
.gform_fields{
  display: block!important;
}
.display-grid_wrapper .gform_fields{
  display: grid!important;
}
.gform_wrapper .gform_fields .gfield{
  margin-bottom: 25px!important;
}
.gform_wrapper .gform_fields .gfield.gfield--type-section{
  margin-bottom: 0!important;
  margin-top: 15px!important;
}
.gform_button_select_files{
  background-color: var(--dark_blue)!important;
  color: #fff!important;
  border-radius: 25px!important;
}
.gform-theme--framework .gfield:where(.gfield--type-fileupload,.gfield--input-type-fileupload) .gform_drop_area::before{
  color: var(--dark_blue)!important;
}
.gfield.bold-label label, .bold-desc .gfield_description{
  font-weight: bold!important;
  margin-top: 20px!important;
}
.bold-desc .gform_fileupload_rules{
  font-weight: normal!important;
  margin-top: 10px!important;
}
.gfield textarea{
  border-radius: 6px!important;
}
.gfield--type-choice.gfield_error .ginput_container{
  position: relative;
  z-index: 99;
}
.gform_fields .gfmc-field{
  width: 50%;
  float: left;
}
.gform_wrapper .gfield_html p{
  font-size:var(--font-xs);
}
.gform_wrapper .right-desc.gfield_html{
  padding-top: 40px!important;
}
.gform_wrapper .gform_fields{
  grid-row-gap: 0!important;
  grid-column-gap: 30px!important;
}
.gform_wrapper.gravity-theme .ginput_complex:not(.ginput_container_address) fieldset:not([style*="display:none"]):not(.ginput_full), .gform_wrapper.gravity-theme .ginput_complex:not(.ginput_container_address) span:not([style*="display:none"]):not(.ginput_full){
  padding-right: 5px!important;
}
.gform_wrapper.gravity-theme .ginput_complex:not(.ginput_container_address) span:not([style*="display:none"]):not(.ginput_full)~span:not(.ginput_full){
  padding-left: 20px!important;
  padding-right: 0!important;
}
.gform_wrapper .gfield.highlight{
  background-color: var(--dark_blue);
  border-radius: 20px;
  margin-left: -30px;
  margin-right: -30px;
  padding: 30px;
  margin-top: 15px;
  margin-bottom: 15px;
}
.gform_wrapper .gfield.highlight.gfield--has-description label{
  clear: both;
  float: left;
  width: 100%;
}
.gform_wrapper .gfield.highlight.gfield--has-description .ginput_container{
  float: left;
  width: calc(50% - 20px);
  clear: none;
}
.gform_wrapper .gfield.highlight.gfield--has-description .gfield_description{
  float: right;
  width: calc(50% - 20px);
  clear: none;
  padding-top: 3px;
  font-style: italic;
  line-height: 1.4em;
}
.gform_wrapper .gfield_required:before{
  color: var(--dark_blue)!important;
}
.contact-list li a{
  display: block;
  color: #000;
  font-weight: 400;
}
.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor, .wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor svg, .wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:active, .wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:hover, .wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:visited{
  fill: #000;
}
.contact-list li.phone a:before{
    content: '';
    background: url('assets/images/phone-base.svg') no-repeat center;
    background-size: contain;
    width: 20px;
    height: 20px;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 2px;
}

.contact-list li.email a:before{
    content: '';
    background: url('assets/images/mail.svg') no-repeat center;
    background-size: contain;
    width: 20px;
    height: 20px;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 3px;
}
.contact-list li.map-pin a:before{
    content: '';
    background: url('assets/images/map-pin.svg') no-repeat center;
    background-size: contain;
    width: 20px;
    height: 20px;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 3px;
}
.contact-list li.map-pin{
  max-width: 240px;
}
.wp-block-social-links{
  padding-left: 0!important;
}
.line-separator{
  width: 100%;
  height: 1px;
  background: var(--dark_blue);
}
.post-banner{
  padding: 50px 0 0;
}
.post-banner .wrapper{
  max-width: 768px;
  margin: 0 auto;
}
.post-banner .excerpt{
  font-size: var(--font-md);
  padding: 0 55px;
}
.single .post-banner .post-meta{
  justify-content: center;
}
.single .post-item a .button.txt:after{
  position: relative;
  right: 0;
  transition: all 0.2s ease-in-out;
}
.single .line-separator.first{
  margin-bottom: 60px;
}
.single .line-separator.end{
  margin-top: 100px;
}
.single .entry-content .button{
  margin-top: 20px;
}
.single .entry-content .sidebar .job p{
  margin-bottom: 10px;
  font-size: var(--font-xs);
}
.single .entry-content .sidebar .button{
  margin-top: 0;
  margin-bottom: 0;
}
.single .sidebar .job{
  border: 1px solid var(--dark_blue);
  padding: 20px;
  border-radius: 20px;
}
.single h1{
  font-size: var(--font-lg);
  line-height: var(--line-height-2);
  margin: 0 0 15px;
}
.single h4{
  font-size: 1.11em;
  line-height: var(--line-height-3);
}
.single .featured-image + h2{
  margin-bottom: 50px;
}
.single .date{
  margin-bottom: 5px;
}
.single-post .featured-image-wrapper{
  margin: -200px auto 60px;
  max-width: 844px;
}
.single .post-content .wp-block-column{
  max-width: 625px;
  margin: 0 auto;
}
.single .post-content .wp-block-image img{
  border-radius: 20px;
  margin-bottom: 40px;
}
.single .post-terms{
  margin-top: 40px;
}
.single-staff .post-banner .featured-image{
  margin-bottom: -150px;
}
.single-staff .post-banner + .graphic-spacer{
  /*margin-top: -100px;*/
  margin-bottom: 50px;
}
.single-staff .post-banner .excerpt{
  padding: 0;
  max-width: 500px;
}
.tags{
  list-style: none;
  padding: 0;
}
.tags li{
  border-radius: 30px;
  background: var(--sky_blue);
  color: var(--text);
  padding: 10px 20px 9px;
  float: left;
  margin: 0 10px 10px 0;
}
.single-staff .post-banner{
  padding-top: 100px;
  position: relative;
}
.single-staff .post-banner .m{
  position: absolute;
  top: -60px;
  left: 0;
}
.single-staff .post-banner .star{
  position: absolute;
  top: -20px;
  left: 100px;
  width: 108px;
}
.single-staff .post-banner .cc{
  position: absolute;
  bottom: 0;
  right: 0;
	z-index: 999;
}
.single-staff .post-content h4:not(.accordion-header){
  font-family: var(--heading);
  font-weight: 700;
  font-size: var(--font-sm);
  margin: 0 0 15px;
}
.single-staff .overview{
  padding-right: 50px;
}
.single-staff .overview h4{
  text-transform: uppercase;
  font-family: var(--body);
  margin-bottom: 5px!important;
}
.single-staff .overview ul, .single-staff .overview ol{
  padding-left: 20px;
  margin-bottom: 20px;
}
.single-staff .overview a{
  color: var(--text);
}
.single-staff .module.gform .shape{
  position: absolute;
}
.single-staff .module.gform .icon{
  position: absolute;
  right: 0;
  top: 40px;
  z-index: 1;
}
.single-staff .module.gform .shape.asterisk{
  top: 110px;
  left: 160px;
}
.single-staff .module.gform .shape.u{
  bottom: 60px;
  left: 0;
}
.single-staff .module.gform .shape.c.left{
  bottom: 110px;
  left: 140px;
}
.single-staff .module.gform .shape.c.right{
  left: 150px;
  bottom: -100px;
}
.page-theme-light header .nav-wrapper .navrow{
  border-top-color: var(--dark_blue);
}
.page-theme-light header .social-menu li a:before{
  filter: var(--filter-dark_blue);
}
.page-theme-light .gt_selector{
  color: var(--dark_blue)!important;
}
.button.light-blue{
  background-color: var(--dark_blue);
}
.button.xs{
  padding: 8px 18px;
  font-size: 16px;
  line-height: 20px;
  margin: 0 10px 10px 0;
  min-width: 0;
}
.static{
  position: static;
}
.module.text-image.img-pos-left-rectangle .container-fluid{
  padding-left: 0!important;
  margin-left: -5%;
}
.module.text-image.img-pos-right-rectangle .container-fluid{
  padding-right: 0!important;
  margin-right: -5%;
}
.sidebar-nav li.active a{
  color: var(--dark_blue);
  text-decoration: underline;
}
.sidebar h4{
  font-size: var(--font-sm);
  margin-top: 10px;
}
.sidebar-nav li:last-child{
  margin-bottom: 40px!important;
}
.gt_selector{
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0!important;
  font-size: 0.88em!important;
}
header .toolbar li{
  font-size: 0.88em;
}
.page-theme-dark .gt_selector{
  color: #fff!important;
}
header .toolbar .toolbar-menu li:last-child{
  margin-right: 0!important;
}
body:not(.block-editor-page) .posts-carousel .container-fluid{
  overflow: hidden;
  padding-right: 0!important;
}
body:not(.block-editor-page) .posts-carousel .controls{
  right: 80px;
}
body.page-child #child-pages{
  display: none;
}
.gform_footer{
  position: relative;
  padding: 0!important;
  margin-bottom: 0!important;
  margin-top: 20px!important;
  float: left;
  width: 100%;
}
.gform_footer img.gform_ajax_spinner{
  float: right;
  position: absolute;
  right: 12px;
  top: 16px;
}
.text-image h4{
  line-height: 1.35em;
}
.gform_wrapper.gravity-theme .gform_footer, .gform_wrapper.gravity-theme .gform_page_footer{
  padding: 0!important;
}
.gform_wrapper.gravity-theme .gform_page_footer{
  margin-top: 20px!important;
}
.multi-step-gform .gform_next_button, .wp-block-columns .gform_wrapper .button.gform_next_button,
.multi-step-gform .gform_button[type="submit"]{
  padding-left: 40px!important;
  padding-right: 40px!important;
}
.gform_footer .button:hover{
  background: var(--yellow)!important;
  color: #000!important;
}
.yellow .gform_footer .button:hover, .sky_blue .gform_footer .button:hover{
  background: var(--dark_blue)!important;
  color: #fff!important;
}
.gfmc-field div:not(.gchoice){
  padding-bottom: 0!important;
}
.gfield textarea.medium{
  height: 252px!important;
}
.gfield textarea.large{
  height: 304px!important;
}
.gfield textarea.large{
  height: 354px!important;
}
.gfield.medium-large textarea{
  height: 304px!important;
}
.sticky {
  position: fixed;
  top: 0;
  z-index: 9999999;
}
.site-search{
  max-width: 75px!important;
}
.site-search.show{
  max-width: 100%!important;
}
.search #banner p, .error404 #banner p{
  margin-bottom: 5px;
}
.search #banner .searchform, .error404 #banner .searchform{
  margin-top: 20px;
  margin-bottom: 40px;
}
.search-no-results #banner, .error404 #banner{
  padding-bottom: 120px;
  padding-top: 70px;
}
#searchsubmit{
  background-color: var(--yellow)!important;
  color: #fff!important;
  border-top-left-radius: 0!important;
  border-bottom-left-radius: 0!important;
  float: left;
  min-width: 150px;
  font-size: 18px!important;
  font-weight: 400!important;
  border-radius: 28px!important;
  color: #000!important;
  transition: all 0.2s ease-in;
  float: right;
  border: 0!important;
  padding: 14px 17px 13px!important;
}
#searchsubmit:hover{
  background-color: var(--dark_blue)!important;
  color: #fff!important;
}
#searchform input[type="text"]{
  float: left;
  width: calc(100% - 160px);
}

.module-spacer.size-small{
  height: 40px;
}
.module-spacer.size-medium{
  height: 70px;
}
.module-spacer.size-large{
  height: 100px;
}
.clear-fix{
  clear: both;
}
.gfield.flex-center.col .gfield_radio{
  flex-direction: row!important;
}
.gfield .nice-select:after{
  top: 22px!important;
}
.module.gform.white .gform_footer .gform_button{
  background-color: var(--dark_blue)!important;
  color: #fff!important;
}
.gform_wrapper.gravity-theme #field_submit .gform-button--width-full, .gform_wrapper.gravity-theme .gform_footer .gform-button--width-full{
  max-width: calc(50% - 25px);
  min-width: 200px;
}
.slide-in, .wp-block-column{
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(80px);
  -moz-transform: translateY(80px);
  -ms-transform: translateY(80px);
  -o-transform: translateY(80px);
  transform: translateY(80px);
  -webkit-transition: -webkit-transform .7s ease 0s,opacity .7s ease 0s;
  -moz-transition: -moz-transform .7s ease 0s,opacity .7s ease 0s;
  -ms-transition: -ms-transform .7s ease 0s,opacity .7s ease 0s;
  -o-transition: -o-transform .7s ease 0s,opacity .7s ease 0s;
  transition: transform .7s ease 0s,opacity .7s ease 0s;
}

.slide-in.animate, .wp-block-column.animate{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: -webkit-transform 1.4s ease 0s,opacity 1.4s ease 0s;
  -moz-transition: -moz-transform 1.4s ease 0s,opacity 1.4s ease 0s;
  -ms-transition: -ms-transform 1.4s ease 0s,opacity 1.4s ease 0s;
  -o-transition: -o-transform 1.4s ease 0s,opacity 1.4s ease 0s;
  transition: transform 1.4s ease 0s,opacity 1.4s ease 0s;
}
.gravity-theme.ui-datepicker .ui-datepicker-calendar td, .gravity-theme.ui-datepicker .ui-datepicker-calendar th span,
.gravity-theme.ui-datepicker .ui-datepicker-header select{
  font-size: 14px!important;
}
.gravity-theme.ui-datepicker .ui-datepicker-header select{
  padding-right: 20px!important;
  background-size: 18px!important;
  background-position: right 12px!important;
}
.gfield_html{
  font-size: 16px;
  line-height: 1.33em;
}
.post-item.search-item{
  padding-bottom: 20px;
  border-bottom: 1px solid var(--dark_blue);
}
.search-item .button.text{
  text-align: left;
}
.cards .card-item .desc h5{
  margin-bottom: 5px;
  font-family: 'corisande-ot-bold', sans-serif;
}
.cards .card-item .desc h4{
  margin-bottom: 12px;
  font-size: 20px;
  font-family: 'corisande-ot-bold', sans-serif;
}
.post-item.service .content-wrapper{
  position: relative;
  padding-bottom: 80px;
}
.post-item.service .button{
  position: absolute;
  bottom: 0;
}
.gform_wrapper .flex-2 .gfield_radio, .gform_wrapper .flex-2 .gfield_checkbox{
  display: block;
}
.gform_wrapper .flex-2 .gchoice{
  width: 50%;
  float: left;
}
.inline-form-button .gform_footer{
  position: absolute;
  right: 0;
  bottom: 50px;
  position: relative;
  bottom: 0;
  float: left;
  width: 100%;
  margin-top: 0!important;
}
.inline-form-button .gform_footer .gform_button{
  margin-top: 0!important;
}
.post-item.event a{
  position: relative;
}
.post-item.event .date-wrapper{
  position: relative;
  z-index: 99;
}
#searchform input::-webkit-input-placeholder { /* Edge */
  color: var(--dark_blue);
}
#searchform input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: var(--dark_blue);
}
#searchform input::placeholder {
  color: var(--dark_blue);
}
::-webkit-input-placeholder { /* Edge */
  font-style: italic!important;
  font-weight: 400!important;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
  font-style: italic!important;
  font-weight: 400!important;
}
::placeholder {
  font-style: italic!important;
  font-weight: 400!important;
}
#header-menu .sub-menu li.back{
  display: none;
}
.modal-body *:not(.button){
  color: var(--text);
}
.post-actions{
  float: left;
  width: 100%;
  margin-bottom: 30px;
}
.post-actions .note{
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  margin-top: 30px;
  float: left;
  width: 100%;
}
.post-actions .note h3{
  font-size: 1em;
  line-height: 1.5em;
  margin-bottom: 15px;
}
.post-actions .note .button{
  margin-top: 0;
  margin-bottom: 0;
}
.single .entry-content .content-wrap{
  padding-right: 30px;
}
.sidebar .related-post-news{
  float: left;
  width: 100%;
}

.share-this{
  float: left;
  width: 100%;
  margin-bottom: 30px;
}

.single .share-this{
  max-width: 625px;
  margin: 0 auto;
  float: none;
}

.share-this ul{
  padding-left: 0!important;
}

.share-this p{
  margin-bottom: 10px;
  font-weight: 600;
  float: left;
  margin-right: 15px;
}

.share-this li a{
  display: block;
  width: 29px;
  height: 29px;
}

.share-this li{
  float: left;
  margin-right: 10px;
  margin-bottom: 10px!important;
  position: relative;
}

.share-this li:last-child{
  margin-right: 0;
}

.share-this li a.facebook{
  background-image: url('assets/images/fb.svg');
  background-size: contain;
  background-repeat: no-repeat;
  filter: var(--filter-blue);
  height: 25px;
  width: 25px;
}

.share-this li a.twitter{
  background-image: url('assets/images/tt.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: var(--filter-blue);
}

.share-this li a.email{
  background-image: url('assets/images/mail.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: var(--filter-blue);
  position: relative;
  top: -2px;
}

.share-this li .clipboard{
  background-image: url('assets/images/link.svg');
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: center;
  filter: var(--filter-blue);
  font-size: 0;
  width: 29px;
  height: 26px;
}

.single #related-post .intro .button{
  background-color: var(--yellow);
  color: #000;
}

.post-item a:hover{
  color: #000;
}

.single footer{
  padding-top: 0;
}

#related-post{
  float: left;
}

#related-post .intro{
  margin-top: 15px;
}

.share-this li a:hover, .share-this li .clipboard:hover{
  cursor: pointer;
}

.clipboard-tooltip{
  display: none;
  color: var(--text)!important;
  border-radius: 5px;
  padding: 4px 7px 2px;
  position: absolute;
  font-size: 0.7em;
  width: 200px;
  top: 0;
  line-height: 1.4em;
  margin-left: 40px;
  background: var(--yellow)!important;
}
.links-group{
  padding-left: 0!important;
}
.links-group .button{
  margin-top: 0;
}

/* Custom */

.module, .graphic-spacer, .wp-block-columns, .module-spacer. #footer-wave, .site-footer{
  float: left;
  width: 100%;
}
.graphic-spacer{
  overflow: hidden;
	width: 100%;
}
.graphic-spacer img{
  width: calc(100% + 20px);
  position: relative;
  left: -10px;
}
.post-item h4{
  font-weight: 700;
  font-family: 'Bitter', sans-serif;
}

.fill{
  display: block;
  padding: 35px 40px;
  border-radius: 20px;
}

.wp-block-columns.is-layout-flex.display-grid{
  align-items: flex-start!important;
}
.display-grid.with-shapes{
  position: relative;
}
.display-grid.with-shapes:before{
  content: '';
  display: block;
  position: absolute;
  bottom: -120px;
  left: 0;
  background: url('assets/images/curl_long.svg') no-repeat;
  height: 175px;
  width: 500px;
  background-size: contain;
  z-index: 99;
}
.module.gform .shape{
  position: absolute;
}
.module.gform .icon{
  position: absolute;
  right: 0;
  top: 40px;
  max-width: 320px;
	max-height: 320px;
}
.module.gform .shape.asterisk{
  top: 110px;
  left: 160px;
}
.module.gform .shape.u{
  bottom: 60px;
  left: 0;
}
.module.gform .shape.c.left{
  bottom: 110px;
  left: 140px;
}
.module.gform .shape.c.right{
  left: 150px;
  bottom: -100px;
}
.module.gform .shape.swirl{
  left: 0;
  bottom: 30px;
  top: auto;
  max-height: 400px;
}
#menu-footer li li{
  padding-right: 20px;
}
.gform_confirmation_message{
  min-height: 120px;
}
.gfield.gfmc-column.gfmc-field{
  margin-bottom: 10px!important;
}
.box-link{
	text-decoration: none;
    color: var(--text);
}
a.box-link:hover *{
  color: #000;
}

.dark_blue a.box-link:hover *, .black a.box-link:hover *{
  color: #fff;
}
.gform_wrapper .gform_fields .gfield.gfield--type-fileupload{
  overflow: hidden;
}
footer .ndis{
	width: 125px;
  margin-top: 20px;
}
.rel-z-index-9999{
  position: relative;
  z-index: 9999;
}
.contact-details-block:after{
  content: '';
  display: block;
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 280px;
  height: 350px;
  background: url('assets/images/contact-icon.png');
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.gform .full-star{
  width: 109px;
  left: 113px;
  top: 170px;
}
.single-staff .post-banner .slant-swirl{
  width: 315px;
  top: 80px;
  left: 0;
  position: absolute;
  z-index: 99999;
}
.single-staff .post-banner .double-waves{
  width: 185px;
  bottom: -100px;
  right: 0;
  z-index: 99;
  position: absolute;
}
.gform .full-star{
  width: 109px;
  left: 113px;
  top: 170px;
}
.module.gform .shape.swirl {
  left: 0;
  bottom: 30px;
  top: auto;
  max-height: 400px;
}


@media screen and (max-width: 1600px){
  .contact-details-block:after{
    width: 260px;
    height: 330px;
  }
}

@media screen and (max-width: 1420px){
  .single-staff .overview{
    padding-right: 10px;
  }
  .single-staff .post-banner .featured-image {
    margin-bottom: -80px;
  }
  /*.single-staff .post-banner + .graphic-spacer{
    margin-top: -80px;
  }*/
  .single h1{
    font-size: 1.85em;
  }
  .single-staff .post-banner .excerpt{
    font-size: 20px;
  }
  .module.gform .icon{
    max-width: 290px;
  }
  .single-staff .post-banner .slant-swirl{
    width: 260px;
  }
  .single-staff .post-banner .double-waves{
    width: 150px;
  }
  .contact-details-block:after{
    width: 230px;
    height: 300px;
  }
}

@media screen and (max-width: 1380px){
  .single .post-item .post-meta .date{
    display: none;
  }
  header .toolbar, header .navrow{
    min-width: 700px;
  }
}

@media screen and (max-width: 1320px){
  h1{
    font-size: 2.5em;
  }
  h2{
    font-size: 2em;
  }
  h3{
    font-size: 1.75em;
  }
  .single-post .featured-image-wrapper{
    margin-top: -150px;
  }
  .single-post .post-banner .intro{
    margin-bottom: 0;
  }
  .module.gform .flag{
        max-width: 250px;
        margin-right: 20px;
  }
  body:not(.block-editor-page) .container-fluid:not(.no-pad) {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
  .text-image.shape_4 .leaf{
    right: -30px!important;
  }
  header .logo-wrapper{
    width: 350px;
  }
  header .logo-wrapper img{
    width: 100%;
  }
  .single-staff .post-banner .slant-swirl{
    width: 220px;
  }
  .single-staff .post-banner .double-waves{
    width: 120px;
  }
  .contact-details-block:after{
    width: 210px;
    height: 280px;
  }
}

@media screen and (max-width: 1199px){
  header .nav-wrapper{
    width: calc(100% - 350px);
  }
  .single-staff .post-banner .featured-image {
    margin-bottom: -30px;
  }
  header .logo-wrapper{
    width: 320px;
  }
  header .logo-wrapper img{
    width: 100%;
  }
  header .toolbar, header .navrow{
    min-width: 630px
  }
  footer .site-contact p{
    float: left;
    width: 24%;
  }
  .single-staff .post-banner .m{
    width: 70px;
  }
  .single-staff .post-banner .star{
    width: 90px;
    top: 0;
  }
  .single-staff .post-banner .cc{
    width: 100px;
  }
  .single h1{
    margin-bottom: 10px;
  }
  .module.gform .shape.asterisk{
    left: 100px;
    width: 100px;
  }
  .module.gform .icon{
    max-width: 250px;
  }
  .post-item h4{
    font-size: var(--font-sm);
  }
  .post-item .button{
    float: left!important;
    justify-content: flex-start;
    text-align: left;
  }
  .single-post .featured-image-wrapper{
    margin-top: -120px;
  }
  .post-banner .excerpt{
    font-size: var(--font-sm);
  }
  .display-grid.with-shapes:before{
    width: 400px;
    height: 140px;
    bottom: -80px;
  }
  footer .ack .flex{
    display: block;
  }
  footer .social-menu{
    float: left;
    width: 100%;
    margin-bottom: 15px;
  }
  footer .copyright{
    margin-bottom: 20px;
  }
  .web-dev{
    text-align: right;
  }
  header .menu li{
    font-size: 16px;
  }
  #header-menu li.menu-item-has-children > a:after{
    top: 22px;
  }
  #header-menu ul:not(.sub-menu) li a{
    padding-top: 14px;
  }
  #header-menu li.menu-item-has-children > a:after{
    top: 18px;
  }
	footer .ndis{
		margin-top: -15px;
	}
	.module.gform .flag{
		max-width: 200px;
	}
  .fill{
    padding: 25px;
  }
  .contact-list li{
    font-size: 16px;
  }
  .contact-details-block:after{
    width: 210px;
    height: 245px;
    right: -50px;
    bottom: -50px;
  }
  .gform .full-star{
    width: 80px;
    left: 60px;
    top: 140px;
  }
  .single-staff .post-banner .slant-swirl{
    width: 180px;
    top: 120px;
  }
}

@media screen and (max-width: 1099px){
  body:not(.block-editor-page) .container-fluid:not(.no-pad) {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .text-image.shape_4 .leaf {
    right: -10px !important;
  }
  header .logo-wrapper{
    width: 280px;
    padding-top: 22px;
  }
  header .toolbar, header .navrow{
    min-width: 600px;
  }
  header .nav-wrapper{
    width: calc(100% - 280px);
  }
  header .menu li{
    margin-right: 15px;
    font-size: 16px;
  }
  header .menu li:last-child{
    margin-right: 0;
  }
  #header-menu ul:not(.sub-menu) li.menu-item-has-children > a{
    padding-right: 14px;
  }
}

@media screen and (max-width: 991px){
  #header-menu li ul.sub-menu li{
    font-size: 18px!important;
  }
  header.dark_blue #header-menu ul.sub-menu li.current-menu-item > a{
    background: transparent;
    color: var(--yellow) !important;
  }
  .page-theme-light #header-menu .sub-menu li > a{
    color: #fff!important;
  }
  .text-image.shape_4 .leaf{
    right: 0!important;
  }
  #header-menu ul:not(.sub-menu) li.menu-item-has-children > a{
    pointer-events: auto;
  }
  .single-staff .post-banner .flex{
    display: block;
  }
  .single-staff .post-banner .featured-image {
    margin-bottom: 0;
  }
  /*.single-staff .post-banner + .graphic-spacer {
    margin-top: -50px;
  }*/
  .mm-shapes{
    position: absolute;
    right: 0;
    bottom: 0;
    display: none;
    visibility: hidden;
  }
  .page-theme-light .icon-bar{
    background: var(--dark_blue);
  }
  .navbar-header .button:focus, .navbar-toggle:focus{
    outline: none!important;
    border: 0!important;
  }
  #header-menu .sub-menu li a{
    padding-left: 25px!important;
  }
  #header-menu .sub-menu li a:hover{
    background-color: transparent;
    color: #fff!important;
  }
  #header-menu li.menu-item-has-children > a:after{
    border-color: #fff;
  }
  .page-theme-light .gt_selector{
    color: #fff!important;
  }
  .page-theme-light header .social-menu li a:before, .page-theme-light .social-menu li a:hover:before{
    filter: var(--filter-yellow)!important;
  }
  .site-search.show{
    z-index: 999999;
  }
  .site-search fieldset:last-child{
    position: relative;
    top: 7px;
    right: 10px;
  }
  .untoggle-search{
    right: 20px;
    width: 30px;
    height: 40px;
  }
  header{
    padding: 20px 0;
  }
  header .logo-wrapper{
    padding-top: 0;
  }
  header .nav-wrapper .navrow{
    border-top: 0;
  }
  header .toolbar, header .navrow{
    min-width: 50px;
  }
  header .search-toggle{
    display: block;
    float: left;
    top: 0;
    margin: 20px 0;
    width: calc(100% - 40px);
    text-align: left;
    background-position: 20px 0!important;
    padding-left: 20px!important;
  }
  header .search-toggle:after{
    content: 'Search'!important;
    display: inline-block;
    margin-left: 35px;
    color: #000!important;
    font-size: 16px;
  }
  .page-theme-dark header .search-toggle, .page-theme-dark header .site-search .button{
    filter: unset;
  }
  .search-toggle{
    filter: invert(1)!important;
  }
  .footer-menu li{
     border-bottom: 1px solid var(--light_blue);
     position: relative;
  }
  .footer-menu li li{
    border-bottom: 0;
  }
  .footer-menu li.menu-item-has-children{
    width: 100%;
  }
  .footer-menu li.menu-item-has-children:after{
    content: '';
    border: solid black;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 2.5px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transition: all 0.2s ease-in-out;
    position: absolute;
    right: 10px;
    top: 18px;
  }
  .footer-menu li, .footer-menu li a{
    font-weight: 600;
  }
  .footer-menu li a{
    padding: 10px 0;
    display: block;
  }
  .footer-menu li .sub-menu{
    display: none;
    margin-top: 0!important;
    margin-bottom: 10px;
  }
  .footer-menu li .sub-menu li, .footer-menu li .sub-menu li a{
    font-weight: 400!important;
    margin-bottom: 0;
  }
  .footer-menu li .sub-menu li a{
    padding: 5px 0;
  }
  .footer-menu li.active .sub-menu{
    display: block;
  }
  .footer-menu li.menu-item-has-children.active:after{
    transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  }
  footer hr{
    display: none;
  }
  .module {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  body:not(.block-editor-page) .container-fluid:not(.no-pad) {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .wp-block-columns{
    padding-left: 20px;
    padding-right: 20px;
  }
  h1{
    font-size: 2.2em;
    line-height: 1.1em;
  }
  h2{
    font-size: 1.75em;
  }
  h3{
    font-size: 1.65em;
  }
  .single-staff .post-banner .m {
    width: 60px;
    top: -30px;
  }
  .single-staff .post-banner .star{
    width: 70px;
    left: 70px;
  }
  .single-staff .post-banner{
    padding-top: 70px;
  }
  .single-staff .post-banner .cc {
    width: 80px;
    bottom: -40px;
  }
  .module.gform .shape.asterisk{
    left: 0;
    top: 20px;
    width: 80px;
  }
  .module.gform .shape.u{
    width: 120px;
  }
  .module.gform .shape.c.left {
    width: 70px;
    left: 85px;
    bottom: 85px;
  }
  .module.gform .shape.c.right {
    width: 100px;
    bottom: 100px;
    transform: rotate(10deg);
    left: 100px;
  }
  .module.gform .icon, .module.gform .shape.swirl{
    max-width: 150px;
    top: 0;
  }
  .module.gform .shape.swirl{
    top: auto;
    bottom: 0;
  }
  .gform.module .intro p{
    max-width: 480px;
  }
  .single-staff .module.gform .shape.asterisk{
    left: 0;
    top: 20px;
  }
  .single-staff .module.gform .shape.c.left{
    left: 85px;
    bottom: 85px;
  }
  .single-staff .module.gform .shape.u{
    bottom: 50px;
  }
  .single-staff .module.gform .shape.c.right{
    bottom: -80px;
    left: 100px;
  }
  .single-staff .module.gform .icon{
    top: 0;
  }
  .single-post .featured-image-wrapper{
    margin-top: -100px;
  }
  .post-banner .excerpt{
    font-size: 1em;
  }
  legend.gfield_label{
    display: block!important;
  }
  .gfmc-field.gfield .gfield:last-child{
    margin-bottom: 0!important;
  }
  #gform_3 .gform_footer, #gform_3 .gform_footer .gform_button{
    margin-top: 0!important;
  }
  .fill{
    padding: 25px 20px;
  }
  .contact-list li{
    font-size: 16px;
  }
  .display-grid.with-shapes:before{
    width: 300px;
    height: 105px;
  }
  footer .social-menu{
    margin-top: 15px;
    margin-bottom: 10px;
  }
  .web-dev{
    text-align: left;
    margin-top: 7px;
  }
  footer .copyright{
    margin-bottom: 8px;
  }
  footer .site-contact p{
    width: auto;
    margin-right: 50px;
  }
  footer .site-contact .site-phone .icon{
    min-width: 28px;
  }
  footer .logo img{
    width: 200px;
    margin-bottom: 20px;
  }
  .site-footer{
    padding-top: 30px;
  }
  .gt_selector{
    font-size: 1em!important;
  }
  header .gtranslate_wrapper{
    margin-left: 16px;
  }
  #page-content .module:first-child{
    margin-top: -1px;
  }
  .graphic-spacer{
    margin-top: -1px;
    margin-bottom: -1px;
	width: 100%;
  }
  footer .ack .flex{
		position: relative;
  }
  footer .ndis {
    margin-top: 0;
    position: absolute;
    right: 20px;
    bottom: 35px;
    width: 110px;
  }
  .module.gform .shape.swirl{
    bottom: 0;
  }
  .contact-details-block:after{
    width: 150px;
    height: 180px;
    right: -10px;
    bottom: -30px;
  }
  .gform .full-star{
    width: 60px;
    left: 10px;
    top: 0px;
  }
  .single-staff .post-banner .slant-swirl{
    width: 130px;
  }
  .single-staff .post-banner .double-waves{
    width: 90px;
    bottom: -50px;
  }
}

@media screen and (max-width: 820px){
  .contact-details-block:after{
    width: 140px;
    height: 160px;
  }
}

@media screen and (max-width: 767px){
	.xs-no-gap{
		gap: 0!important;
	}
  .graphic-spacer img{
    margin-top: -1px;
  }
  .adaptive-height:not(.mob-flexi-height), .adaptive-height-1, .adaptive-height-2, .adaptive-height-3{
    height: auto!important;
  }
  #page-content .module.no-pad-top:first-child{
    padding-top: 40px!important;
  }
  .module.shape_2.text-image.no-pad-top.no-pad-bottom{
    padding-top: 40px!important;
    padding-bottom: 40px!important;
  }
  body{
    font-size: 16px;
  }
  .flex{
    display: block;
  }
  .flex-mobile-col-reverse{
    display: flex;
    flex-direction: column-reverse;
  }
  h1{
    margin-bottom: 10px;
  }
  h3{
    font-size: 1.45em;
  }
  h4{
    font-size: 1.25em;
  }
  .wp-block-columns.is-layout-flex{
    gap: 20px;
  }
  .module-spacer.size-small{
    height: 20px;
  }
  .module-spacer.size-medium{
    height: 35px;
  }
  .module-spacer.size-large{
    height: 50px;
  }
  .curved, .post-item .image-wrapper:not(.rounded){
    border-radius: 12px;
  }
  .site-footer {
    margin-top: 0;
  }
  .module.gform .icon{
    top: auto;
    bottom: -50px;
    max-width: 220px;
  }
  .module.gform .icon.flag{
    bottom: -50px;
  }
  .module.gform{
    padding-bottom: 200px;
  }
  .gform_fields .gfmc-field{
    width: 100%;
    margin-bottom: 0!important;
  }
  .gform_wrapper .gform_fields .gfield.gfmc-field{
    margin-bottom: 0!important;
  }
  .gfmc-field:nth-child(odd){
    padding-right: 0;
  }
  .gform_footer{
    text-align: center!important;
    float: left;
    width: 100%;
    margin-top: 0!important;
    margin-bottom: 20px;
  }
  .gform_footer .button{
    margin: 0 auto!important;
    float: none;
  }
  .gfmc-field:nth-child(even){
    padding-left: 0;
  }
  .module.gform .shape.c.right{
    width: 150px;
    bottom: -80px;
    left: 100px;
    transform: rotate(25deg);
  }
  .module.gform .shape.c.left{
    width: 100px;
    left: 80px;
  }
  .module.gform .shape.u{
    width: 150px;
    left: -30px;
    bottom: 40px;
  }
  .module.gform .shape.asterisk{
    width: 50px;
  }
  .single-staff .module.gform .icon{
    top: auto;
  }
  .single-staff .post-banner .featured-image{
    margin-bottom: 20px;
    width: calc(100% - 50px);
    max-width: 480px;
  }
  .single-staff .post-banner{
    padding-top: 30px;
  }
  .single-staff .post-banner .m {
    width: 50px;
    top: -20px;
  }
  .single-staff .post-banner .star {
    width: 40px;
    left: 60px;
  }
  .single h1{
    font-size: 1.65em;
  }
  .single-staff .post-banner .excerpt{
    font-size: 16px;
  }
  .post-item h4{
    font-size: 1.125em;
  }
  .post-banner{
    padding-top: 0;
  }
  .single-post .featured-image-wrapper{
    margin-top: -75px;
    margin-bottom: 30px;
  }
  .post-banner .excerpt{
    padding-left: 20px;
    padding-right: 20px;
  }
  .single .share-this{
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
    margin-bottom: 30px;
    float: left;
  }
  .single #related-post .intro p{
    margin-bottom: 10px;
  }
  .single .post-item h4{
    margin-bottom: 0;
  }
  .single .post-item a .button.txt{
    margin-bottom: 0!important;
  }
  .single .post-item{
    margin-bottom: 20px;
  }
  .single .post-item .image-wrapper {
    width: 127px;
    float: left;
  }
  .single .post-item .content-wrapper{
    width: calc(100% - 127px);
    float: left;
    padding-left: 15px !important;
    padding-top: 0 !important;
    padding-bottom: 0;
    height: auto !important;
  }
  #related-post.no-pad-bottom{
    padding-bottom: 50px!important;
  }
  .mobile-div-graphic{
    position: relative;
    left: -20px;
    min-height: 150px;
  }
  .mobile-div-graphic:before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background: url(assets/images/curl_long.svg) no-repeat;
    height: 105px;
    width: 300px;
    background-size: contain;
    z-index: 99;
  }
  .display-grid.with-shapes:before{
    display: none;
  }
  .gfmc-field.gfield .gfield:last-child{
    margin-bottom: 25px!important;
  }
  header .logo-wrapper{
    width: 220px;
  }
  header .logo-wrapper img{
    height: auto;
  }
  #footer-wave{
    margin-top: -1px;
  }
  #footer-wave img{
    margin-bottom: -1px;
  }
  .module.gform .shape.swirl{
    max-height: 240px;
    max-width: 120px;
    bottom: 20px;
  }
  .contact-details-block:after{
    width: 200px;
    height: 260px;
    bottom: -50px;
  }
  .custom-rp-icon img{
    max-width: 50%;
  }
  .custom-rp-icon.push-right img, .custom-rp-icon-25.push-right img{
    float: right;
  }
  .custom-rp-icon-25 img{
    max-width: 25%;
  }
  #wpadminbar{
    position: fixed!important;
  }
}

@media screen and (max-width: 480px){
  .module.gform{
    padding-bottom: 160px;
  }
  .module.gform .icon{
    max-width: 180px;
    bottom: -20px;
  }
  .module.gform .shape.u{
    width: 110px;
    left: -30px;
    bottom: 30px;
  }
  .module.gform .shape.c.left{
    left: 55px;
    width: 75px;
    bottom: 60px;
  }
  .module.gform .shape.c.right{
    width: 100px;
    left: 60px;
    bottom: -50px;
  }
  .module.gform .icon.flag{
    bottom: -20px;
    right: 0;
    max-width: 70%;
	  max-width: 140px;
	  max-height: 180px;
  }
  .module.gform .shape.swirl{
    max-width: 90px;
    max-height: 200px;
  }
  .single-post .featured-image-wrapper{
    margin-top: -50px;
  }
  .mobile-div-graphic{
    min-height: 120px;
  }
  .mobile-div-graphic:before{
    width: 250px;
    height: 120px;
  }
  .site-footer{
    background: #fff;
    position: relative;
    z-index: 999;
  }
	.single-staff .post-banner .slant-swirl{
    width: 110px;
  }
  .single-staff .post-banner .double-waves{
    width: 80px;
    bottom: 0;
  }
}

@media screen and (max-width: 379px){
  h1{
    font-size: 1.75em;
  }
  .contact-details-block:after{
    width: 180px;
    height: 240px;
  }
}