:root {
  --accentColor: #b59981;
  --secondaryColor: #374248;
}

body,
html {
  color: var(--secondaryColor);
  font-family: "Noto Serif", serif;
  font-weight: 400;
  font-size: 14px;
}

a {
  color: #394651 !important;
  text-decoration: none !important;
  font-weight: 700;
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}

a:hover {
  opacity: 0.8;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--secondaryColor);
  font-family: "Comfortaa", cursive;
  font-weight: 700;
  line-height: 1.5;
}

b,
strong {
  font-weight: 700;
}

small {
  font-size: 80%;
}

p {
  padding-bottom: 0;
}

p:last-of-type {
  margin-bottom: 0;
}

.accent {
  color: var(--accentColor) !important;
}

.accentBg {
  background: var(--accentColor) !important;
}

.secondaryBg {
  background: var(--secondaryColor) !important;
}
.main_title{
  margin-top:20px;
}

.fancy {
  font-family: "Comfortaa", cursive;
  font-weight: 700;
}

.container {
  width: 100%;
}

@media (min-width: 576px) {
  .container {
/*    max-width: 540px;*/
max-width:90%;
  }
}

@media (min-width: 768px) {
  .container {
/*    max-width: 720px;*/
max-width:90%;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.container:before {
  content: none !important;
}

#et-main-area {
  position: relative;
  z-index: 2;
  background: #fff;
  overflow-x: hidden;
}

#main-content {
  width: 100%;
}

#main-content > .container {
  padding-top: 0 !important;
}

.actionButton {
  display: inline-block;
  position: relative;
  padding: 0.5em 1em;
  background: #fff;
  border-radius: 8px;
  color: var(--accentColor) !important;
  font-family: "Comfortaa", cursive;
  font-weight: 700;
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
}

.actionButton.inverted {
  background: var(--accentColor);
  color: #fff !important;
}

.actionButton.secondary {
  background: var(--secondaryColor);
  color: #fff !important;
}

.actionButton.third {
  background: #fff;
  color: var(--secondaryColor) !important;
}

.actionButton:hover {
  opacity: 0.8;
}

.large {
  font-size: 150%;
}

.larger {
  font-size: 200%;
}

.largest {
  font-size: 250%;
}

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

.canWrap {
  overflow-wrap: break-word;
}

.chopOff {
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
}

.infront {
  z-index: 2;
}

.shadowed {
  box-shadow: 0 0 20px 10px #aaa;
  z-index: 1;
}

.white {
  color: #fff !important;
}

.img-wrap {
 display: flex;
 justify-content: center;
}

.whiteLineBefore:before,
.whiteLineAfter:after {
  content: "";
  position: relative;
  display: block;
  width: 100%;
  height: 20px;
  margin-bottom: -10px;
  background-position: center;
  background-repeat: repeat no-repeat;
  background-size: contain;
  z-index: 1;
}

.whiteLineAfter.transformed:after,
.whiteLineBefore.bothTransformed:before {
  transform: translateY(-50%);
}

.whiteLineAfter.bothTransformed:after {
  transform: translateY(50%);
}

.whiteLineBefore:before {
  margin-top: -10px;
  margin-bottom: 0;
  z-index: 2;
}

.whiteLineBefore:before,
.whiteLineAfter:after {
  background-image: url(/assets/whiteLine.png);
}


#header {
  background: #fff;
  box-shadow: 0 -4px 20px 10px #0004;
}

#menuCall {
  font-family: "Comfortaa", cursive;
  font-weight: 700;
  color: var(--secondaryColor) !important;
  width: 220px;
  max-width: 100%;
  box-sizing: content-box;
}

#menuCall small {
  font-size: 50%;
}

@media (max-width: 768px) {
  #rootMenu {
    font-size: 60%;
  }
  #menuCall {
    width: 140px;
  }
}

#headerLogo {
  width: 100%;
  max-width: 220px;
}

#mainMenu a i,
#toggleMenu {
  color: var(--accentColor);
  font-size: 150%;
}

#mainMenu a {
  font-family: "Comfortaa", cursive;
  font-weight: 700;
}

#mainMenu li.active > a {
  color: var(--accentColor) !important;
}

#mainMenu .accentBg a,
#mainMenu .accentBg.active a {
  color: #fff !important;
}

#mainMenu li {
  position: relative;
}

#mainMenu ul.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 240px;
  padding: 1em;
  background: #fff;
  border: none;
  box-shadow: 0 0 8px 0 #00000044;
  z-index: 99;
}

#mainMenu ul.submenu ul.submenu {
  top: 0;
  left: 100%;
}

#mainMenu li:hover > ul.submenu {
  display: inline-block;
}

#mainMenu ul.submenu > li:not(:last-of-type) {
  border-bottom: 1px solid var(--secondaryColor);
}

#mainMenu ul.submenu > li a {
  display: block;
}

#mainMenu .white i {
  color: #fff !important;
  font-size: 90%;
}

@media (min-width: 768px) {
  #mainMenu {
    font-size: 90%;
  }
  #mainMenu > li > a.children:after {
    content: "\f0d7";
    font-family: "FontAwesome";
    font-weight: 900;
    padding-left: 6px;
  }
}

@media (max-width: 768px) {
  #mainMenu > li:after {
    content: none !important;
  }

  #mainMenu > li.accentBg {
    margin-left: 1rem;
  }

  #mainMenu ul.submenu {
    display: block;
    position: relative;
    top: auto !important;
    left: 0 !important;
    width: 100%;
    padding: 0 1em;
    border: none;
    box-shadow: none;
    transform: none;
  }

  #mainMenu ul.submenu > li:not(:last-of-type) {
    border-bottom: none;
  }

  #menuContainer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    background: #00000088;
    transition: opacity 0.2s ease-in-out;
    pointer-events: none;
    overflow: auto;
    z-index: 999;
  }

  #header.open #menuContainer {
    opacity: 1;
    pointer-events: initial;
  }

  #menuContainer #mainMenu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    transform: translateX(-100%);
    transition: transform 0.2s ease-in-out;
    background: #fff;
  }

  #header.open #menuContainer #mainMenu {
    transform: none;
  }
}

#pageHeader {
  position: relative;
}

#pageHeader img {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  z-index: 1;
}

#pageHeader .container {
  z-index: 2;
}

#pageHeader h1 {
  color: #fff;
  font-weight: 700;
  font-size: 250%;
  /*text-shadow: 0 0 4px #0008;*/
}

/*** contact page**/


@media (min-width: 768px) {
  .iconPatternedBg {
    background: url(/assets/iconPatternBg.jpg) no-repeat center center / cover;
  }
}

#footer {
  background: var(--accentColor);
  color: #fff;
}

#mainFooter,
.patternedBg {
  background: url(/assets/repeatableBackgroundPattern.jpg);
}

#rootFooter,
#mainFooter {
  color: #fff;
}

#mainFooter i {
  font-size: 200%;
}

#rootFooter a:not(.actionButton) {
  color: #fff !important;
}

#mainFooter a {
  color: #fff !important;
}

#footerMenu li {
  display: block;
  width: 100%;
}

#footerMenu li a {
  padding: 0 !important;
}

#footerCopyright {
  background: var(--accent);
  color: #fff;
}

#footerCopyright a {
  color: #fff !important;
}

.squared {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  overflow: hidden;
}

.squared img,
.absPos {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#sidebar {
  display: none;
}

@media (min-width: 981px) {
  #left-area {
    width: 100%;
    padding-right: 0px !important;
  }
}

.et_post_meta_wrapper {
  display: none;
}

.single .et_pb_post {
  margin: 0;
  padding: 0;
}

input#childcarecrm-form__submit-button {
    background: #fff;
    padding: 6px 20px;
    border-radius: 13px;
    border: 0;
}
.childcarecrm-form__control {
    
    padding: 10px;
    border-radius: 14px;
}
.managementRow {
  background: #eeecf5;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  padding: 2em;
}

@media (max-width: 980px) {
  .managementRow {
    border-radius: 12px;
    margin-bottom: 1em !important;
  }
}

.locationContainer {
  overflow: hidden;
}

.locationRow {
  width: 66%;
}

.locationMap {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 100%;
  overflow: hidden;
}

@media (max-width: 1080px) {
  .locationRow {
    width: calc(100% + 30px);
  }

  .locationContainer {
    padding-bottom: 200px !important;
  }

  .locationMap {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 200px;
  }
}

.gform_fields .gfield:not(.showLabel) .gfield_label {
  display: none !important;
}

.gform_fields input,
.gform_fields textarea,
.gform_fields input:focus,
.gform_fields textarea:focus {
  font-weight: 700;
  border: 1px solid var(--accentColor) !important;
  padding: 0.5em 1em !important;
}

.gform_fields input::placeholder,
.gform_fields textarea::placeholder {
  font-weight: 400;
}

.gform_footer {
  margin-top: 0 !important;
}

.gform_button[type="submit"] {
  all: unset;
  font-weight: 700;
  color: #fff;
  background: var(--accentColor);
  padding: 0.5em 3em !important;
  cursor: pointer;
  text-align: center;
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}

.formSecondary .gform_button[type="submit"] {
  background: var(--secondaryColor);
}

.gform_button[type="submit"]:hover {
  opacity: 0.8;
}

.gform_wrapper ul.gform_fields li.gfield:not(.gf_left_half) {
  padding-right: 0 !important;
}

.gform_wrapper ul li.gfield {
  margin-top: 0 !important;
  margin-bottom: 1em !important;
}

.gform_wrapper.gf_browser_chrome .gfield_checkbox li input,
.gform_wrapper.gf_browser_chrome .gfield_checkbox li input[type="checkbox"],
.gform_wrapper.gf_browser_chrome .gfield_radio li input[type="radio"] {
  margin-top: 0 !important;
}

body .gform_wrapper ul li.field_description_below div.ginput_container_checkbox,
body .gform_wrapper ul li.field_description_below div.ginput_container_radio {
  margin-top: 0 !important;
}

.gform_wrapper .field_description_below .gfield_description {
  padding-top: 4px !important;
}

.gform_wrapper .description_above .gfield_description {
  padding-bottom: 0 !important;
}

.roundImage {
  position: relative;
}

.roundImage .et_pb_image_wrap {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  border-radius: 50%;
  overflow: hidden;
}

.roundImage .et_pb_image_wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-link {
  font-weight: 700;
  color: var(--accentColor) !important;
}

.ageGrid .et_pb_column,
.ageGridItem .inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 0 20px 10px #aaa;
}

.ageGrid .et_pb_column:before,
.ageGridItem .inner:before {
  content: "";
  position: absolute;
  display: block;
  top: 0.5em;
  left: 0.5em;
  width: calc(100% - 1em);
  height: calc(100% - 1em);
  border: 2px dashed #fff;
  pointer-events: none;
}


/** 2025 Nov update  */

.map-iframe iframe{
    width:100%;
    
}
.blogs-banner{
    
    background-position: 30% 20%;
    background-size: cover;
    background-repeat: no-repeat;
     padding:4% 0;
    
    
}
.blogs-banner *{
    color:#fff;
    
}
.custom-blog-row {
    display: block;
    padding-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
  width: 29%;
    margin-right: 4%;
    display: block !important;
}
.custom-blog-col-left {
    width: 100%;
}
.custom-blog-image {
    height: 250px;
    border-radius: 20px;
}
.custom-blog-image img {
    height: 100%;
  width:100%;
    object-fit: cover;
    border-radius: 20px;
}
/* .custom-blog-col-right {
    width: 100%;
    float: left;
    height: 170px;
    position: relative;
} */
.custom-blog-col-right h4 {
    font-size: 16px;
  display:none;
}

.custom-blog-col-right h2 {
    padding: 10px 0;
}
.blog-section {
    display: flex;
    flex-flow: wrap;
}


.custom-single-post img{
    border-radius: 30px;
}

.blog-section{
    padding-top: 20px;
    padding-bottom: 50px;
}
.blog-section h2{
    font-size: 25px !important;
}

.blog-section ul li{
    font-size: 14px !important;
    padding-bottom: 6px !important;
}

/** blog **/
.blogs-banner{
    background: url(https://expeditionselj.com.au/wp-content/uploads/2020/11/Banner_1.jpg);
      background-position: 30% 20%;
    background-size: cover;
    background-repeat: no-repeat;
     padding:4% 0;
    
    
}
.blogs-banner *{
    color:rgb(57, 70, 81);
    
}
.custom-blog-row {
    display: block;
    padding-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
  width: 29%;
    margin-right: 4%;
    display: block !important;
}
.custom-blog-col-left {
    width: 100%;
}
.custom-blog-image {
    height: 250px;
    border-radius: 20px;
}
.custom-blog-image img {
    height: 100%;
  width:100%;
    object-fit: cover;
    border-radius: 20px;
}
/* .custom-blog-col-right {
    width: 100%;
    float: left;
    height: 170px;
    position: relative;
} */
.custom-blog-col-right h4 {
    font-size: 16px;
  display:none;
}

.custom-blog-col-right h2 {
    padding: 10px 0;
}
.blog-section {
    display: flex;
    flex-flow: wrap;
}

.custom-blog-col-right h3{
    padding-bottom: 0 !important;
    margin-bottom: 0;
}
.excerpt-content {
    padding:5px 0 15px 0;
}

.single-post-row h1 {
    
    padding-top: 10px;
}


@media only screen and (max-width:1200px){
	.custom-contact iframe{
	height:1400px;
}
	.custom-contact .col-xs-offset-1 {
    width: 100%;
    margin: 0 auto;
}
}

@media only screen and (max-width:980px){
  .custom-blog-image {
    height: 200px;
  
}
.custom-blog-col-right h3 {
   
    font-size: 20px;
    line-height: 30px;
}
}

@media (max-width: 768px) {
  body div.et_pb_section.noMobileBg {
    background-image: none !important;
  }
  .custom-blog-row {
   
    width: 47%;
    margin-right: 3%;
   
}
.container{
  width:90%;

}
.single-post-row h1 {
    font-size: 30px;
    line-height: 35px;
    padding-top: 10px;
}
}


@media (max-width: 768px) { 
 .custom-blog-row {
   
    width: 100%;
   
   
}
.custom-blog-row{
  padding-top:0;
}
}