/*  
Aged Care Connect (25.03)  25th April 2025

      01    General 
      02    Back to Top
      03    Preloader
      04    Header
      05    Top Bar
      06    Navigation
      07    Hero
      08    Pages
      09    Sections General
      10    About 
      11    About Boxes
      12    Holiday Season Placement
      13    Royal Commission
      14    Facts
      15    CTA Urgent 
      16    Aged Care Reforms 
      17    Human Rights      
      18    Services 
      19    Testimonials      
      20    Contact
      21    Breadcrumbs
      22    Footer

      bootstrapmade.com/dewi 
*/

.map-style {
    border-radius: 30px;
    border: 3px solid #5b78a3;
    box-shadow: 5px 5px 5px #333333;
    width: 300px;  
    height: 350px;  
}

.chart-style {
    border-radius: 30px;
    border: 3px solid #5b78a3;
    box-shadow: 5px 5px 5px #333333;    
}

/* 01 General ********************************************************* */

    body { font-family: "Poppins", sans-serif; color: #000000; } 

    h1, h2, h3, h4, h5, h6 { font-family: "Poppins", sans-serif; font-weight: 550;   }
    h1 {font-size: 22px; color: #ffffff;}
    h2 {font-size: 22px; color: #000000;}
    h3 {font-size: 18px; color: #000000;}
    h4 {font-size: 16px; color: #000000;}
    
    a { color: #000000; text-decoration: none; } 
    a:hover { color: orange; text-decoration: none; }

    .dir-list a {color: #000000; text-decoration: none;}
    .dir-list a:hover {color: orange; text-decoration: none;}
    
    .cimg {display: block; margin-left: auto; margin-right: auto; width: 100%;}

     hr {border: 1px solid blue}   
     
/* 02 Back to Top ***************************************************** */

    .back-to-top {
      position: fixed;
      visibility: hidden;
      opacity: 0;
      right: 15px;
      bottom: 15px;
      z-index: 996;
      background: #5c76a9;
      color: white;
      width: 80px;
      height: 40px;
      border-radius: 20px;
      transition: all 0.5s;}

    .back-to-top i {
      font-size: 24px;
      color: #fff;
      line-height: 0;}

    .back-to-top:hover {
      background:  #72a0c1;
      color: orange;}

    .back-to-top.active {
      visibility: visible;
      opacity: 1;}

/* 03 Preloader ******************************************************* */

    #preloader {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 9999;
      overflow: hidden;
      background: #fff;}

    #preloader:before {
      content: "";
      position: fixed;
      top: calc(50% - 30px);
      left: calc(50% - 30px);
      border: 6px solid #ff4a17;
      border-top-color: #ffe9e3;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      -webkit-animation: animate-preloader 1s linear infinite;
      animation: animate-preloader 1s linear infinite;}

    @-webkit-keyframes animate-preloader {
      0% {
        transform: rotate(0deg);}

      100% {
        transform: rotate(360deg);}
    }

    @keyframes animate-preloader {
      0% {
        transform: rotate(0deg);}

      100% {
        transform: rotate(360deg);}
    }

    /*                                              Disable aos animation delay on mobile devices */

    @media screen and (max-width: 768px) {
      [data-aos-delay] {
        transition-delay: 0 !important;}
    }

/* 04 Header ********************************************************** */

    #header {
      transition: all 0.5s;
      z-index: 997;
      padding: 20px 0;}

    #header.header-scrolled,
    #header.header-inner-pages {
      background: rgba(21, 34, 43, 1.0);
      padding: 10px 0;}

        /* changes here */ 
    
        @media (max-width: 3000px) {

          #header .logo {
        
              /* size of logo text */
        
              font-size: 16px;
              color: wheat;
              margin: 0;
              padding: 0;
              line-height: 1;
              font-weight: 500;
              letter-spacing: 2px;}
          
        }    
    
    @media (max-width: 768px) {
    
      #header .logo {
    
          /* size of logo text */
    
          font-size: 12px;
          color: wheat;
          margin: 0;
          padding: 0;
          line-height: 1;
          font-weight: 500;
          letter-spacing: 2px;}
      
    }
    
        @media (max-width: 480px) {
    
          #header .logo {
    
          /* size of logo text */
    
          font-size: 10px;
          color: wheat;
          margin: 0;
          padding: 0;
          line-height: 1;
          font-weight: 500;
          letter-spacing: 2px;}
         
        }      

    #header .logo a {
      color: wheat;}

    #header .logo img {
      max-height: 20px;}

/* 05 Topbar **************************************************************** */

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-dark);
}

@media (max-width: 768px) {
    .topbar {
        display: none;    
    }
}


/* 06 Navigation **************************************************************** */

.sticky-top,
.sticky-top .container {
    transition: 0.5s;
}

.navbar .navbar-nav .nav-item.nav-link,
.navbar .navbar-nav .nav-link {
    color: var(--bs-dark);
}

.navbar .navbar-nav .nav-item {
    position: relative;
    margin: 0 5px;
}

.navbar .navbar-nav .nav-item::before,
.navbar .navbar-nav .nav-item::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border: 0px solid var(--bs-primary);
    transition: 0.5s;
}

.navbar .navbar-nav .nav-item::before {
    top: 0;
    left: 0;
}
.navbar .navbar-nav .nav-item::after {
    bottom: 0;
    right: 0;
}

.navbar .navbar-nav .nav-item:hover::after,
.navbar .navbar-nav .nav-item:hover::before,
.navbar .navbar-nav .nav-item.active::after,
.navbar .navbar-nav .nav-item.active::before {
    width: 100%;
    border-width: 1px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.sticky-top .navbar .navbar-nav .nav-link:hover,
.sticky-top .navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}
 
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}
 
@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        margin-top: 20px;
        transition: .5s;
        opacity: 0;
        z-index: 9;
    }
}

@media (max-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        margin-top: 15px;
        transition: 0.5s;
    }
}

@media (max-width: 991px) {
    .navbar .navbar-nav .nav-item.nav-link {
        margin: 15px 0;
    }

}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    margin-top: 20px;
    transition: .5s;
    opacity: 1;
}

.navbar .navbar-toggler {
    padding: 8px 15px;
    color: var(--bs-dark);
    background: var(--bs-primary);
}

#searchModal .modal-content {
    background: rgba(250, 250, 250, .6);
}
/*** Navbar End ***/

/* 07 Hero ************************************************************ */

    #hero {
      width: 100%;
      height: 70vh;


      /* background: url(/img/acc-hero-walking-through-door.avif); top centre; */
      /* background: url(/img/acc-hero-autumn-leaves.avif); top centre; */
      /* background: url(/img/aged-care-advice-reduced.jpg); top centre; */
      /* background: url(/img/aged-care-placement.jpg); top centre; */
      /* background: url(/img/senior-moves.jpg); top centre; */


      background: url(/img/aged-care-placement.jpg); top centre;
      background-size: cover;
      position: relative;
      padding: 0;}

    #hero:before {
      content: "";
      background: rgba(13, 20, 26, 0.40);
      position: absolute;
      bottom: 0;
      top: 0;
      left: 0;
      right: 0;}

    #hero .hero-container {
      position: absolute;
      bottom: 0;
      top: 0;
      left: 0;
      right: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      text-align: center;}

    #hero h1 {
      margin: 0 0 10px 0;
      font-size: 30px;
      font-weight: 400;
      line-height: 40px; 
      color: #fff;}

    #hero h2 {
      color: #eee;
      margin-bottom: 50px;
      font-size: 20px; 
      font-weight: 550;
    } 

@media (max-width: 768px) {
  #hero h1 {    
    font-size: 24px;
    line-height: 30px;}

  #hero h2 {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 20px;}
}

    @media (max-width: 480px) {
      #hero h1 {        
        font-size: 20px;
        line-height: 26px;}

      #hero h2 {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 20px;}
    }

    #hero .btn-get-started {
      font-family: "Open Sans", sans-serif;
      /*                                                    text-transform: uppercase; */
      font-weight: 500;
      font-size: 14px;
      display: inline-block;
      padding: 10px 35px 10px 35px;
      border-radius: 30px;
      transition: 0.5s;
      color: #fff;
      background: rgba(255, 255, 255, 0.1);
      border: 4px solid #ff4a17;}

    #hero .btn-get-started:hover {
      border-color: #fff;
      background: #ff4a17;}

    #hero .btn-watch-video {
      font-size: 16px;
      display: inline-block;
      transition: 0.5s;
      margin-left: 25px;
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;}

    #hero .btn-watch-video i {
      line-height: 0;
      color: #fff;
      font-size: 32px;
      transition: 0.3s;
      margin-right: 8px;}

    #hero .btn-watch-video:hover i {
      color: #ff4a17;}

    @media (min-width: 1024px) {
      #hero {
        background-attachment: fixed;}
    }

/* 08 Pages *********************************************************** */

    #pages {
      width: 100%;
      height: 70vh;

      

      background: url(/img/aged-care-placement.jpg); top centre;

      background-size: cover;
      position: relative;
      padding: 0;}

    #pages:before {
      content: "";
      background: rgba(13, 20, 26, 0.40);
      position: absolute;
      bottom: 0;
      top: 0;
      left: 0;
      right: 0;}

    #pages .pages-container {
      position: absolute;
      bottom: 0;
      top: 0;
      left: 0;
      right: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      text-align: center;}

    #pages h1 {
      margin: 0 0 10px 0;
      font-size: 30px;
      font-weight: 400;
      line-height: 40px; 
      color: #fff;}

    #pages h2 {
      color: #eee;
      margin-bottom: 50px;
      font-size: 20px; 
      font-weight: 550;
    }

@media (max-width: 768px) {
      #pages h1 {
        font-size: 24px;        
        line-height: 30px;}

      #pages h2 {
        font-size: 18px;
        font-weight: 550;
        line-height: 24px;
        margin-bottom: 30px;}
    }    

@media (max-width: 480px) {
      #hero h1 {        
        font-size: 20px;
        line-height: 26px;}

      #hero h2 {
        font-size: 18px;
        line-height: 20px;
        margin-bottom: 20px;}
    }    

    #pages .btn-get-started {
      font-family: "Open Sans", sans-serif;

      font-weight: 500;
      font-size: 14px;
      display: inline-block;
      padding: 10px 35px 10px 35px;
      border-radius: 4px;
      transition: 0.5s;
      color: #fff;
      background: #ff4a17;
      border: 2px solid #ff4a17;}

    #pages .btn-get-started:hover {
      border-color: #fff;
      background: rgba(255, 255, 255, 0.1);}

    #pages .btn-watch-video {
      font-size: 16px;
      display: inline-block;
      transition: 0.5s;
      margin-left: 25px;
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;}

    #pages .btn-watch-video i {
      line-height: 0;
      color: #fff;
      font-size: 32px;
      transition: 0.3s;
      margin-right: 8px;}

    #pages .btn-watch-video:hover i {
      color: #ff4a17;}

    @pages (min-width: 1024px) {
      #hero {
        background-attachment: fixed;}
    }

/* 09 Sections General ************************************************ */

    section {
      padding: 60px 0;
      overflow: hidden;}

    .section-bg {
      background-color: #d2b48c;}

    .section-title {
      padding-bottom: 10px;}

    .section-title h2 {

      /*                                                 Section Title H2 is smaller font-size than p */

      font-size: 14px;
      font-weight: 500;
      padding: 0;
      line-height: 1px;
      margin: 0 0 5px 0;
      letter-spacing: 2px;
       /*                                                text-transform: uppercase; */
      color: #5c8eb0;
      font-family: "Poppins", sans-serif;}

    .section-title h2::after {
      content: "";
      width: 120px;
      height: 1px;
      display: inline-block;
      background: #ff8664;
      margin: 4px 10px;}

    .section-title p {
      margin: 0;
      margin: 0;

      /*                                                  Section Title H2 is smaller font-size than p */

      font-size: 14px;
      font-weight: 500;
       /*                                                 text-transform: uppercase; */
      font-family: "Poppins", sans-serif;
      color: #263d4d;}

/* 10 About *********************************************************** */      

    .about .container {
      box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
      padding-bottom: 15px;}

    
     .about .about-btn {
        font-family: 'Poppins'; 
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 1px;
        display: inline-block;
        padding: 8px 15px;
        border-radius: 40px;
        transition: 0.5s;
        margin: 5px;
        background: #5c76a9;
        border: 1px solid black;
        color: white;
        text-decoration: none;
        }

     .about .about-btn:hover {
        font-family: 'Poppins'; 
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 1px;
        display: inline-block;
        padding: 8px 15px;
        border-radius: 40px;
        transition: 0.5s;
        margin: 5px;
        background: #72a0c1;
        border: 1px solid black;
        color: white;
        text-decoration: none;
        }  


    .about .count-box {
      padding: 60px 0;
      width: 100%;}

    .about .count-box i {
      display: block;
      font-size: 48px;
      color: #a1bdd1;
      float: left;
      line-height: 0;}

    .about .count-box span {
      font-size: 28px;
      line-height: 25px;
      display: block;
      font-weight: 500;
      color: #365870;
      margin-left: 60px;}

    .about .count-box p {
      padding: 5px 0 0 0;
      margin: 0 0 0 60px;
      font-family: "Poppins", sans-serif;
      font-weight: 500;
      font-size: 14px;
      color: #2e4b5e;}

    .about .count-box a {
      font-weight: 500;
      display: block;
      margin-top: 20px;
      color: #2e4b5e;
      font-size: 15px;
      font-family: "Poppins", sans-serif;
      transition: ease-in-out 0.3s;}

    .about .count-box a:hover {
      color: #477392;}

    .about .content {
      font-size: 15px;}

    .about .content h3 {
      font-weight: 500;
      font-size: 24px;
      color: #263d4d;}

    .about .content ul {
      list-style: none;
      padding: 0;}

    .about .content ul li {
      padding-bottom: 10px;
      padding-left: 28px;
      position: relative;}

    .about .content ul i {
      font-size: 24px;
      color: #ff4a17;
      position: absolute;
      left: 0;
      top: -2px;}

    .about .content p:last-child {
      margin-bottom: 0;}

    .about .play-btn {
      width: 94px;
      height: 94px;
      background: radial-gradient(#ff4a17 50%, rgba(255, 74, 23, 0.4) 52%);
      border-radius: 50%;
      display: block;
      position: absolute;
      left: calc(50% - 47px);
      top: calc(50% - 47px);
      overflow: hidden;}

    .about .play-btn::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translateX(-40%) translateY(-50%);
      width: 0;
      height: 0;
      border-top: 10px solid transparent;
      border-bottom: 10px solid transparent;
      border-left: 15px solid #fff;
      z-index: 100;
      transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);}

    .about .play-btn::before {
      content: "";
      position: absolute;
      width: 120px;
      height: 120px;
      -webkit-animation-delay: 0s;
      animation-delay: 0s;
      -webkit-animation: pulsate-btn 2s;
      animation: pulsate-btn 2s;
      -webkit-animation-direction: forwards;
      animation-direction: forwards;
      -webkit-animation-iteration-count: infinite;
      animation-iteration-count: infinite;
      -webkit-animation-timing-function: steps;
      animation-timing-function: steps;
      opacity: 1;
      border-radius: 50%;
      border: 5px solid rgba(255, 74, 23, 0.7);
      top: -15%;
      left: -15%;
      background: rgba(198, 16, 0, 0);}

    .about .play-btn:hover::after {
      border-left: 15px solid #ff4a17;
      transform: scale(20);}

    .about .play-btn:hover::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translateX(-40%) translateY(-50%);
      width: 0;
      height: 0;
      border: none;
      border-top: 10px solid transparent;
      border-bottom: 10px solid transparent;
      border-left: 15px solid #fff;
      z-index: 200;
      -webkit-animation: none;
      animation: none;
      border-radius: 0;}

    @-webkit-keyframes pulsate-btn {
      0% {
        transform: scale(0.6, 0.6);
        opacity: 1;}

      100% {
        transform: scale(1, 1);
        opacity: 0;}
    }

    @keyframes pulsate-btn {
      0% {
        transform: scale(0.6, 0.6);
        opacity: 1;}

      100% {
        transform: scale(1, 1);
        opacity: 0;}
    }

/* 11 About Boxes ***************************************************** */

    .about-boxes {
      background: url("/img/about-boxes-bg.jpg") center top no-repeat fixed;
      background-size: cover;
      padding: 60px 0 30px 0;
      position: relative;}

    .about-boxes::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      background: rgba(255, 255, 255, 0.92);
      z-index: 9;}

    .about-boxes .container,
    .about-boxes .container-fluid {
      position: relative;
      z-index: 10;}

    .about-boxes .card {
      border-radius: 3px;
      border: 0;
      box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
      margin-bottom: 30px;}

    .about-boxes .card-icon {
      text-align: center;
      margin-top: -32px;}

    .about-boxes .card-icon i {
      font-size: 32px;
      color: #fff;
      width: 64px;
      height: 64px;
      padding-top: 5px;
      text-align: center;
      background-color: #ff4a17;
      border-radius: 4px;
      text-align: center;
      border: 4px solid #fff;
      transition: 0.3s;
      display: inline-block;}

    .about-boxes .card-body {
      padding-top: 12px;}

    .about-boxes .card-title {
      font-weight: 500;
      text-align: center;}

    .about-boxes .card-title a {
      color: #15222b;}

    .about-boxes .card-title a:hover {
      color: #ff4a17;}

    .about-boxes .card-text {
      color: #5e5e5e;}

    .about-boxes .card:hover .card-icon i {
      background: #fff;
      color: #ff4a17;}

    @media (max-width: 1024px) {
      .about-boxes {
        background-attachment: scroll;}
    }

/* 12 Holiday Season Placement  *************************************** */

    #holiday-season-placement {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(/img/aged-care-planning-in-the-holiday-season-11.jpg) fixed center;
    background-size: cover;
    padding: 80px 0;
    }

    #holiday-season-placement .hsp-title {
    color: wheat;
    font-size: 28px;
    }

    #holiday-season-placement .hsp-text {
    color: wheat;
    }

    @media (min-width: 769px) {   
    #holiday-season-placement .hsp-btn-container {  
    display: flex;  
    align-items: center;  
    justify-content: flex-end;  
    }  
    }  

     

    #holiday-season-placement .hsp-btn {
        font-family: 'Poppins'; 
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 1px;
        display: inline-block;
        padding: 8px 15px;
        border-radius: 40px;
        transition: 0.5s;
        margin: 5px;
        background: #5c76a9;
        border: 1px solid black;
        color: white;
        text-decoration: none;
        }

     #holiday-season-placement .hsp-btn:hover {
        font-family: 'Poppins'; 
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 1px;
        display: inline-block;
        padding: 8px 15px;
        border-radius: 40px;
        transition: 0.5s;
        margin: 5px;
        background: #72a0c1;
        border: 1px solid black;
        color: white;
        text-decoration: none;
        }  


/* 13 Royal Commission ************************************************ */

    #royal-commission {
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), 
    url(/img/royal-commission-aged-care-recommendations.jpg) fixed center;
    background-size: cover;
    padding: 220px 0;
    }

    #royal-commission .rc-title {
    color: wheat;
    font-size: 40px;
    }

    #royal-commission .rc-text {
    color: wheat;
    }

    @media (min-width: 768px) {
    #royal-commission .rc-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    }
    }

     

    #royal-commission .rc-btn {
        font-family: 'Poppins'; 
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 1px;
        display: inline-block;
        padding: 8px 15px;
        border-radius: 40px;
        transition: 0.5s;
        margin: 5px;
        background: #5c76a9;
        border: 1px solid black;
        color: white;
        text-decoration: none;
        }

     #royal-commission .rc-btn:hover {
        font-family: 'Poppins'; 
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 1px;
        display: inline-block;
        padding: 8px 15px;
        border-radius: 40px;
        transition: 0.5s;
        margin: 5px;
        background: #72a0c1;
        border: 1px solid black;
        color: white;
        text-decoration: none;
        }  


/* 14 Facts *********************************************************** */

    #facts {
    background: #ccc;
    padding: 80px 0 60px 0;
    }

    #facts .counters span {
    font-family: 'Poppins', 'Helvetica', sans-serif; 
    font-size: 40px;
    display: block;
    color: #13283d;
    }

    #facts .counters p {
    padding: 0;
    margin: 0 0 20px 0;
    font-family: "Calibri", sans-serif;
    font-size: 20px;
    }

/* 15 CTA Urgent ****************************************************** */

    #ctaurgent {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(/img/urgent-aged-care-placement-2.jpg) fixed center center;
    background-size: cover;
    padding: 100px 0;
    }

    #ctaurgent .cta-title {
    color: wheat;
    font-size: 28px;
    }

    #ctaurgent .cta-text {
    color: wheat;
    }

    @media (min-width: 769px) {
    #ctaurgent .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    }
    }

    

    #ctaurgent .cta-btn {
        font-family: 'Poppins'; 
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 1px;
        display: inline-block;
        padding: 8px 15px;
        border-radius: 40px;
        transition: 0.5s;
        margin: 5px;
        background: #5c76a9;
        border: 1px solid black;
        color: white;
        text-decoration: none;
        }

      #ctaurgent .cta-btn:hover {
        font-family: 'Poppins'; 
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 1px;
        display: inline-block;
        padding: 8px 15px;
        border-radius: 40px;
        transition: 0.5s;
        margin: 5px;
        background: #72a0c1;
        border: 1px solid black;
        color: white;
        text-decoration: none;
        }  


/* 16 Aged Care Reforms *********************************************** */

    #agedcarereforms {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
    url(/img/aged-care-reforms-2022.jpg) fixed center;
    background-size: cover;
    padding: 100px 0;
    }

    #agedcarereforms .acr-title {
    color: wheat;
    font-size: 36px;
    }

    #agedcarereforms .acr-text {
    color: wheat;
    font-size: 24px;
    }

    @media (min-width: 769px) {
    #agedcarereforms .acr-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    }
    }

    

    #agedcarereforms .acr-btn {
        font-family: 'Poppins'; 
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 1px;
        display: inline-block;
        padding: 8px 15px;
        border-radius: 40px;
        transition: 0.5s;
        margin: 5px;
        background: #5c76a9;
        border: 1px solid black;
        color: white;
        text-decoration: none;
        }

      #agedcarereforms .acr-btn:hover {
        font-family: 'Poppins'; 
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 1px;
        display: inline-block;
        padding: 8px 15px;
        border-radius: 40px;
        transition: 0.5s;
        margin: 5px;
        background: #72a0c1;
        border: 1px solid black;
        color: white;
        text-decoration: none;
        }  


/* 17 Human Rights **************************************************** */

    #humanrights {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
    url(/img/human-rights-aged-care-act-reform.jpg) 
    fixed center center;
    background-size: cover;
    padding: 100px 0;
    }

    #humanrights .hr-title {
    color: wheat;
    font-size: 28px;
    }

    #humanrights .hr-text {
    color: wheat;
    }

    @media (min-width: 769px) {
    #humanrights .hr-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    }
    }

     

 #humanrights .hr-btn {
        font-family: 'Poppins'; 
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 1px;
        display: inline-block;
        padding: 8px 15px;
        border-radius: 40px;
        transition: 0.5s;
        margin: 5px;
        background: #5c76a9;
        border: 1px solid black;
        color: white;
        text-decoration: none;
        }

      #humanrights .hr-btn:hover {
        font-family: 'Poppins'; 
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 1px;
        display: inline-block;
        padding: 8px 15px;
        border-radius: 40px;
        transition: 0.5s;
        margin: 5px;
        background: #72a0c1;
        border: 1px solid black;
        color: white;
        text-decoration: none;
        }  


/* 18 Services ******************************************************** */

    .services .icon-box {
      margin-bottom: 20px;
      padding: 30px;
      border-radius: 6px;
      background: #fff;}

    .services .icon-box i {
      float: left;
      color: #5c8eb0;
      font-size: 40px;
      line-height: 0;}

    .services .icon-box h4 {
      margin-left: 70px;
      font-weight: 500;
      margin-bottom: 15px;
      font-size: 18px;}

    .services .icon-box h4 a {
      color: #365870;
      transition: 0.3s;}

    .services .icon-box .icon-box:hover h4 a {
      color: #ff4a17;}

    .services .icon-box p {
      margin-left: 70px;
      line-height: 24px;
      font-size: 14px;}

    .services .icon-box:hover h4 a {
      color: #ff4a17;}

/* 19 Testimonials **************************************************** */

    .testimonials {
      padding: 80px 0;
      background: url("/img/testimonials-bg.jpg") no-repeat;
      background-position: center center;
      background-size: cover;
      position: relative;}

    .testimonials::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      background: rgba(13, 20, 26, 0.7);}

    .testimonials .section-header {
      margin-bottom: 40px;}

    .testimonials .testimonials-carousel,
    .testimonials .testimonials-slider {
      overflow: hidden;}

    .testimonials .testimonial-item {
      text-align: center;
      color: #fff;}

    .testimonials .testimonial-item .testimonial-img {
      width: 100px;
      border-radius: 50%;
      border: 6px solid rgba(255, 255, 255, 0.15);
      margin: 0 auto;}

    .testimonials .testimonial-item h3 {
      font-size: 20px;
      font-weight: bold;
      margin: 10px 0 5px 0;
      color: #fff;}

    .testimonials .testimonial-item h4 {
      font-size: 14px;
      color: #ddd;
      margin: 0 0 15px 0;}

    .testimonials .testimonial-item .quote-icon-left,
    .testimonials .testimonial-item .quote-icon-right {
      color: rgba(255, 255, 255, 0.4);
      font-size: 26px;}

    .testimonials .testimonial-item .quote-icon-left {
      display: inline-block;
      left: -5px;
      position: relative;}

    .testimonials .testimonial-item .quote-icon-right {
      display: inline-block;
      right: -5px;
      position: relative;
      top: 10px;}

    .testimonials .testimonial-item p {
      font-style: italic;
      margin: 0 auto 15px auto;
      color: #eee;}

    @media (min-width: 992px) {
      .testimonials .testimonial-item p {
        width: 80%;}
    }

    .testimonials .swiper-pagination {
      margin-top: 20px;
      position: relative;}

    .testimonials .swiper-pagination .swiper-pagination-bullet {
      width: 12px;
      height: 12px;
      background-color: #a1bdd1;
      opacity: 0.5;}

    .testimonials .swiper-pagination .swiper-pagination-bullet-active {
      background-color: #ff4a17;
      opacity: 1;}

/* 20 Contact ********************************************************* */

    .contact .info-box {
      color: #444444;
      text-align: center;
      box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
      padding: 20px 0 30px 0;}

    .contact .info-box i {
      font-size: 32px;
      color: #ff4a17;
      border-radius: 50%;
      padding: 8px;}

    .contact .info-box h3 {
      font-size: 20px;
      color: #777777;
      font-weight: 500;
      margin: 10px 0;}

    .contact .info-box p {
      padding: 0;
      line-height: 24px;
      font-size: 14px;
      margin-bottom: 0;}

    .contact .php-email-form {
      box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
      padding: 30px;}

    .contact .php-email-form .error-message {
      display: none;
      color: #fff;
      background: #ed3c0d;
      text-align: left;
      padding: 15px;
      font-weight: 500;}

    .contact .php-email-form .error-message br+br {
      margin-top: 25px;}

    .contact .php-email-form .sent-message {
      display: none;
      color: #fff;
      background: #18d26e;
      text-align: center;
      padding: 15px;
      font-weight: 500;}

    .contact .php-email-form .loading {
      display: none;
      background: #fff;
      text-align: center;
      padding: 15px;}

    .contact .php-email-form .loading:before {
      content: "";
      display: inline-block;
      border-radius: 50%;
      width: 24px;
      height: 24px;
      margin: 0 10px -6px 0;
      border: 3px solid #18d26e;
      border-top-color: #eee;
      -webkit-animation: animate-loading 1s linear infinite;
      animation: animate-loading 1s linear infinite;}

    .contact .php-email-form input,
    .contact .php-email-form textarea {
      border-radius: 0;
      box-shadow: none;
      font-size: 14px;
      border-radius: 4px;}

    .contact .php-email-form input:focus,
    .contact .php-email-form textarea:focus {
      border-color: #ff4a17;}

    .contact .php-email-form input {
      padding: 10px 15px;}

    .contact .php-email-form textarea {
      padding: 12px 15px;}

    .contact .php-email-form button[type=submit] {
      background: #ff4a17;
      border: 0;
      padding: 10px 24px;
      color: #fff;
      transition: 0.4s;
      border-radius: 4px;}

    .contact .php-email-form button[type=submit]:hover {
      background: #ff5e31;}

    @-webkit-keyframes animate-loading {
      0% {
        transform: rotate(0deg);}

      100% {
        transform: rotate(360deg);}
    }

    @keyframes animate-loading {
      0% {
        transform: rotate(0deg);}

      100% {
        transform: rotate(360deg);}
    }

/* 21 Breadcrumbs ***************************************************** */

    .breadcrumbs {
      padding: 15px 0;
      background: #f0f4f8;
      min-height: 40px;
      margin-top: 78px;}

    .breadcrumbs h2 {
      font-size: 28px;
      font-weight: 400;}

    .breadcrumbs ol {
      display: flex;
      flex-wrap: wrap;
      list-style: none;
      padding: 0;
      margin: 0;}

    .breadcrumbs ol li+li {
      padding-left: 10px;}

    .breadcrumbs ol li+li::before {
      display: inline-block;
      padding-right: 10px;
      color: #263d4d;
      content: "/";}

    @media (max-width: 992px) {
      .breadcrumbs {
        margin-top: 52px;}

      .breadcrumbs .d-flex {
        display: block !important;}

      .breadcrumbs ol {
        display: block;}

      .breadcrumbs ol li {
        display: inline-block;}
    }

/* 22 Footer ********************************************************** */

    /*  footer: background color */
    #footer {
      background: #15222b;
      padding: 0 0 30px 0;
      color: #fff;
      font-size: 14px;}

    /*  footer-top: background color */
    #footer .footer-top {
      background: #15222b;
      border-bottom: 2px solid #15222b;
      padding: 60px 0 30px 0;}

    #footer .footer-top .footer-info {
      margin-bottom: 30px;}

    #footer .footer-top .footer-info h3 {
      font-size: 28px;
      margin: 0 0 15px 0;
      padding: 2px 0 2px 0;
      line-height: 1;
      font-weight: 500;}

    #footer .footer-top .footer-info p {
      font-size: 14px;
      line-height: 24px;
      margin-bottom: 0;
      font-family: "Poppins", sans-serif;
      color: #fff;}

    #footer .footer-top .social-links a {
      font-size: 18px;
      display: inline-block;
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
      line-height: 1;
      padding: 8px 0;
      margin-right: 4px;
      border-radius: 4px;
      text-align: center;
      width: 36px;
      height: 36px;
      transition: 0.3s;}

    #footer .footer-top .social-links a:hover {
      background: #ff4a17;
      color: #fff;
      text-decoration: none;}

    #footer .footer-top h4 {
      font-size: 16px;
      font-weight: 500;
      color: #fff;
      position: relative;
      padding-bottom: 12px;}

    #footer .footer-top .footer-links {
      margin-bottom: 30px;}

    #footer .footer-top .footer-links ul {
      list-style: none;
      padding: 0;
      margin: 0;}

    #footer .footer-top .footer-links ul i {
      padding-right: 2px;
      color: orange;
      font-size: 18px;
      line-height: 1;}

    #footer .footer-top .footer-links ul li {
      padding: 10px 0;
      display: flex;
      align-items: center;}

    #footer .footer-top .footer-links ul li:first-child {
      padding-top: 0;}

    #footer .footer-top .footer-links ul a {
      color: #fff;
      transition: 0.3s;
      display: inline-block;
      line-height: 1;}

    #footer .footer-top .footer-links ul a:hover {
      color: orange;}

    #footer .footer-top .footer-newsletter form {
      margin-top: 30px;
      background: #fff;
      padding: 6px 10px;
      position: relative;
      border-radius: 4px;}

    #footer .footer-top .footer-newsletter form input[type=email] {
      border: 0;
      padding: 4px;
      width: calc(100% - 110px);}

    #footer .footer-top .footer-newsletter form input[type=submit] {
      position: absolute;
      top: 0;
      right: -2px;
      bottom: 0;
      border: 0;
      background: none;
      font-size: 16px;
      padding: 0 20px;
      background: #ff4a17;
      color: #fff;
      transition: 0.3s;
      border-radius: 0 4px 4px 0;}

    #footer .footer-top .footer-newsletter form input[type=submit]:hover {
      background: #ff5e31;}

    #footer .copyright {
      text-align: center;
      padding-top: 30px;}

    #footer .credits {
      padding-top: 10px;
      text-align: center;
      font-size: 13px;
      color: #fff;}

    #footer .credits a {
      transition: 0.3s;}