
/* ---- colours ---- */
:root{
    --green: #2c993e;
    --light-blue: #b0c6ce;
    --grey: #b0c6ce;
    --purple: #331832;
    --black: #000000;
    --text-grey: #898989;
    
}
body{
    margin: 0px;
    overflow-x: hidden;
}  

h1,h2,h3,h4,h5,h6{
    font-family: 'merriweather', serif;
    color: var(--black);
    font-weight: 500;
}
h1{
    font-size: 4rem;
}
h2{
    font-size: 3.16rem;
    font-weight: 100;
}
h3{
    font-size: 2.9rem;
    font-weight: 100;
}
p,ul,ol,li,blockquote,a{
    font-family: 'open-sans', sans-serif;
    font-size: 1rem;
}
li::marker {
    color: #ffffff;
    font-size: 0.8rem;
}
ul {
    padding-left: 20px;
}
b, strong{
    font-weight: 700;
}
a{
    color: var(--green);
    text-decoration: underline;
    transition: all ease-in-out 0.5s;
}
a:hover{
    color:var(--green);
}
table {
    width: auto;
    border-collapse: collapse;
}
th, td {
    border: 1px solid black;
    padding: 8px;
    text-align: left;
}
th {
    background-color: var(--grey);
    color: #ffffff;
}
.white-text,.white-text h1, .white-text h2, .white-text h3, .white-text.white-text h4, .white-text h5, .white-text h6, .white-text p, .white-text a {
    color: #ffffff;
}
a.green-btn{
    padding: 10px 30px;
    color: #ffffff;
    font-weight: bold;
    border-radius: 25px;
    background: var(--green);
    text-decoration: none;
    transition: all ease-in-out 0.5s;
}
a.green-btn:hover{
    color: #000000;
    background: var(--light-blue);
}

a.light-blue-btn {
     padding: 10px 30px;
    color: #000000;
    font-weight: bold;
    border-radius: 25px;
    background: var(--light-blue);
    text-decoration: none;
    transition: all ease-in-out 0.5s;
}
a.light-blue-btn:hover{
    color: #ffffff;
    background: var(--green);
}
/*--- main styles start ---*/

/*--- header ---*/
.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}
ul#menu-top-nav {
    display: flex;
    justify-content: flex-end;
    margin: 0px;
}
ul#menu-top-nav li {
    list-style: none;
}
ul#menu-top-nav a {
    text-decoration: none;
    color: var(--grey);
    padding: 20px 35px;
    display: block;
}
ul#menu-top-nav a:hover {
    color: var(--green);
}
.full-width-top-nav {
    border-bottom: 1.5px solid #8c8a9357;
}
.talk-btn a {
    background-color: var(--yellow);
    transition: all ease-in-out 0.5s;
}
ul#menu-top-nav .talk-btn a {
    color: var(--black);
}
ul#menu-top-nav .talk-btn a:hover {
    color: #ffffff;
    background-color: var(--green);
}
.main-nav-area-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0px;
}
nav#desktop-menu ul li {
    list-style: none;
}
.main-nav-area-wrapper ul {
    padding: 0px;
}
nav#desktop-menu ul {
    display: flex;
    gap: 40px;
}
#header {
    width: 70%;
    display: flex;
    justify-content: flex-end;
    padding-top: 20px;
}
nav#desktop-menu li a {
    color: var(--text-grey);
    text-decoration: none;
}
nav#desktop-menu li a:hover{
    color:var(--light-blue);
}
nav#desktop-menu ul.sub-menu {
    display: none;
}
.menu-item-has-children {
    position: relative;
}
.menu-item-has-children::before {
    content: url(/wp-content/uploads/2025/09/arrow.png);
    position: absolute;
    left: -15px;
    top: -2px;
    transition: all ease-in-out 0.2s;
}
.menu-item-has-children:hover::before{
    rotate: 180deg;
}
ul.sub-menu {
    position: absolute;
    width: 250px;
}
#desktop-menu li.main-menu-btn a {
    color: #ffffff;
    background: var(--green);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
}
#desktop-menu li.main-menu-btn a:hover{
    color: var(--black);
    background: var(--light-blue);
}


/*----- hero-section -----*/
.hero-wrapper {
    position: relative;
}
.hero-bgimage-wrapper {
    height: 100%;
    background-size: contain;
    width: 100%;
    background-repeat: no-repeat;
    background-position: right;
    position: absolute;
    z-index: -1;
}
.inner-hero-wrapper {
    display: flex;
    gap: 10%;
    padding: 6% 10% 8% 10%;
    margin-top: 2%;
}
.hero-left-wrapper  {
    width: 55%;
}
.hero-right-wrapper{
    width: 45%;
}
.hero-left-wrapper h1 {
    font-weight: 100;
    padding: 0px;
    margin: 0px;
}
.hero-left-wrapper h1, .hero-left-wrapper h2{
    padding: 0px;
    margin: 0px;
    font-size: 3.1rem;
}
.hero-left-wrapper h1{
    font-weight: 100;
}
.hero-left-wrapper h2{
    font-weight: 600;
}
.hero-right-wrapper {
    background: linear-gradient(120deg,rgba(44, 153, 62, 1) 5%, rgba(51, 24, 50, 1) 94%);
    border-radius: 50px;
    padding: 25px;
}
.hero-right-wrapper h3 {
    color: #ffffff;
    font-weight: 100;
    margin-top: 10px;
}
.hero-left-wrapper p {
    margin-bottom: 40px;
}
.inner-slider-wrapper {
    margin: 10px 10px 110px 10px;
}

.top-phrase {
    color: var(--green);
    background: #fff;
    padding: 10px  15px;
    font-weight: bold;
    border-radius: 20px;
    text-transform: uppercase;
    display: inline-block;
}
/*--- all slider styles -----*/
.hero-right-wrapper, .testimonials-slider-wrapper{
    position: relative;
}
.hero-right-wrapper  ul.slick-dots {
    position: absolute;
    bottom: 50px;
    text-align: left;
    left: 7%;
}
.hero-right-wrapper .slick-dots li.slick-active button:before, .testimonials-slider-wrapper .slick-dots li.slick-active button:before{
    background: #ffffff;
    opacity: 1;
    height: 3px;
}
.hero-right-wrapper button.slick-next.slick-arrow {
    right: 15%;
    bottom: 4%;
    top: unset;
    z-index: 888;
    height: 40px;
    width: 40px;
}

.hero-right-wrapper button.slick-prev.slick-arrow{
    right: 24%;
    bottom: 4%;
    top: unset;
    left: unset;
    z-index: 888;
    height: 40px;
    width: 40px;
}
.hero-right-wrapper i, .testimonials-slider-wrapper i{
    transition: all ease-in-out 0.3s;
}

.hero-right-wrapper button.slick-prev.slick-arrow i:hover, .hero-right-wrapper button.slick-next.slick-arrow i:hover{
    opacity: 0.75;
}
.testimonials-slider-wrapper button.slick-prev.slick-arrow i:hover, .testimonials-slider-wrapper button.slick-next.slick-arrow i:hover {
    opacity: 0.6;
}


.hero-right-wrapper .slick-prev:before, .hero-right-wrapper .slick-next:before, .testimonials-slider-wrapper .slick-prev:before , .testimonials-slider-wrapper .slick-next:before{
    display: none;
}

.hero-right-wrapper .slick-dots li button:before, .testimonials-slider-wrapper .slick-dots li button:before  {
    font-family: unset;
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    opacity: 0.75;
}

.hero-right-wrapper .slick-dots li, .hero-right-wrapper .slick-dots li button:before, .hero-right-wrapper .slick-dots li button {
    width: 60px;
    height: 2px;
}
.testimonials-slider-wrapper .hero-right-wrapper .slick-dots li button, .testimonials-slider-wrapper .slick-dots li, .testimonials-slider-wrapper  .slick-dots li button:before{
    width: 40px;
    height: 2px;
}

.hero-right-wrapper i.fa-arrow-left-long, .hero-right-wrapper i.fa-arrow-right-long, .testimonials-slider-wrapper i.fa-arrow-left-long , .testimonials-slider-wrapper i.fa-arrow-right-long {
    color: var(--green);
    font-size: 20px;
    padding: 9px 10px;
    background: #ffffff;
    border-radius: 64%;
}
.hero-right-wrapper::before {
    content: '';
    height: 100%;
    width: 100%;
    background: url('/wp-content/uploads/2025/09/chevron-lines-grey.png');
    position: absolute;
    left: -45px;
    bottom: -45px;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
}
 .testimonials-slider-wrapper ul.slick-dots {
    position: absolute;
    bottom: -80px;
    text-align: left;
    left: 0%;
}
.testimonials-slider-wrapper button.slick-next.slick-arrow {
    right: 15%;
    bottom: -80px;
    top: unset;
    z-index: 888;
}

 .testimonials-slider-wrapper button.slick-prev.slick-arrow{
    right: 24%;
    bottom: -80px;
    top: unset;
    left: unset;
    z-index: 888;
}
.testimonials-slider-wrapper .slick-dots li button:before  {
    content: '';
    background: #000000;
    opacity: 0.50;
}
.testimonials-slider-wrapper .slick-dots li.slick-active button:before{
    background: #000000;
    height: 3.5px;
}
.testimonial-wrapper p{
    padding-right: 22%;
}
.testimonials-slider-wrapper i.fa-arrow-left-long , .testimonials-slider-wrapper i.fa-arrow-right-long {
    color: #000000;
    font-size: 16px;
    padding: 9px 10px;
    background: #ffffff;
    border-radius: 64%;
}
p.testimonial-job-title {
    margin-top: 0px;
    font-size: 0.85rem;
}
h5.testimonial-name {
    margin-bottom: 0px;
}
/*---- homepage styles ------*/
.green-black-gradient {
   background: #2C993E;
   background: linear-gradient(66deg, rgba(44, 153, 62, 1) 5%, rgba(51, 24, 50, 1) 84%);
}

.line-bg-wrapper {
    padding: 3%;
}
.right-bg-block-lines {
    position: absolute;
    right: -57%;
    bottom: 0px;
    width: 100%;
    height: 100%;
    z-index: -2;
}
.home-sponsor-text h3{
    font-size: 2.5rem;
    font-weight: 500;
}
a.underline-link {
    color: #000000;
    text-decoration: none;
    position: relative;
}
a.underline-link::after {
    content: "";
    display: flex;
    flex-wrap: nowrap;
    position: absolute;
    bottom: -5px;
    background: var(--text-grey);
    left: 0px;
    height: 1px;
    width: 100%;
    transition: all ease-in-out 0.5s;

}
a.underline-link:hover{
    color: var(--light-blue);
}
a.underline-link:hover:after{
    background: var(--light-blue);

}
.get-in-tough-wrapper h3 {
    font-size: 2rem;
    font-weight: 500;
}
.for-enquiries-wrapper {
    border-bottom: 1px solid var(--text-grey);
    width: 50%;
}
.left-bg-img {
    position: absolute;
    left: -54%;
    bottom: -47%;
}
.page-id-26 .left-bg-img {
    bottom: -30%;
}
.for-enquiries-wrapper p {
    padding-bottom: 16px;
}
.get-in-tough-wrapper a {
    color: #000000;
    text-decoration: none;
}
.get-in-tough-wrapper a:hover {
    text-decoration: underline;
}
/*-----  footer form overlap section  ------*/
.overlap-wrapper {
    position: relative;
}
div#form-bottom-overlap {
    position: absolute;
    right: 0px;
    top: 75px;
    z-index: 3;
    padding: 25px 50px 40px 50px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 0 14px 1px var(--text-grey);
    width: 75%;
    font-family: 'open-sans';

}
.overflow-form {
    overflow: visible !important;
}
p.gform_required_legend {
    display: none;
}
body .gform_wrapper .gform_footer input[type="submit"] {
    background: var(--green) !important;
    border-radius: 30px !important;
    padding: 10px 50px !important;
    font-size: 1rem !important;
    font-family: 'open-sans'!important;
    transition: all ease-in-out 0.5s !important;
}
body .gform_wrapper .gform_footer input.button:hover,
body .gform_wrapper .gform_footer input[type="submit"]:hover {
    background: var(--light-blue) !important;
}
.gform-theme--foundation .gform_fields {
    gap: 30px !important;
}
body .gform_wrapper .gform_body .gform_fields .gfield input[type=text]:focus,
body .gform_wrapper .gform_body .gform_fields .gfield input[type=email]:focus,
body .gform_wrapper .gform_body .gform_fields .gfield input[type=tel]:focus,
body .gform_wrapper .gform_body .gform_fields .gfield input[type=number]:focus,
body .gform_wrapper .gform_body .gform_fields .gfield input[type=file]:focus,
body .gform_wrapper .gform_body .gform_fields .gfield select:focus,
body .gform_wrapper .gform_body .gform_fields .gfield textarea:focus {
    border: 1px solid var(--green) !important;
    box-shadow: 0em 0.5em 2em 0em rgba(0,0,0,0.1) !important;
    outline: none !important;
}

/*------ contact page form styles ------*/
.form-wrapper{
    padding: 50px 25px !important;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 0 14px 1px var(--text-grey);
    font-family: 'open-sans';
    margin-top: 50px;
}


/*---- footer ----*/
.purple-wrapper {
    background-color: #331832;
    background-image: url(/wp-content/uploads/2025/09/footer-circle.png);
    background-position: top center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}
.purple-wrapper p, .purple-wrapper a {
    color: #ffffff;
}
footer#footer {
    width: 50%;
    padding: 6%  0 15% 0;
}
.footer-top-row {
    display: flex;
    gap: 25px;
}
.footer-top-row p{
    margin-top: 0px;
}
.footer-top-row > img{
    border: 1px solid #ffffff;
}
footer .contact-details {
    display: grid;
    grid-template-columns: 50% 50%;
    margin-top: 15%;
}
.london-address p {
    margin-top: 0px;
}
.phone-email-details a, .footer-nav ul a {
    text-decoration: none;
}
.phone-email-details a:hover, .footer-nav ul a:hover {
    text-decoration: underline;
}
.footer-nav ul a{
    color: var(--text-grey);
}
.footer-nav ul {
    list-style: none;
    padding: 0px;
    margin-top: 15%;
}
.registered-info p {
    color: var(--text-grey);
}
.registered-info{
    margin-top: 15%;
}
/*---- inner pages  ----*/

.services-highlight-card {
    background: #2C993E;
    background: linear-gradient(155deg,rgba(44, 153, 62, 1) 5%, rgba(51, 24, 50, 1) 94%);
    padding: 35px;
    border-radius: 25px;
    color: #fff;
    width: 80%;
}
.top-phrase {
    color: var(--green);
    background: #fff;
    padding: 10px  25px;
    font-weight: bold;
    border-radius: 20px;
    text-transform: uppercase;
}
.services-list {
    padding: 10px 10px 10px 0;
}
.page-top-right-image {
    background: url(/wp-content/uploads/2025/09/homepage-bg-circle.png);
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
}
.testimonial-slider{
    font-family: 'open-sans';
    color: var(--text-grey);
    font-size: 1rem;
}
.team-card {
    box-shadow: rgba(149, 157, 165, 0.2) 2px 10px 11px;
    border-radius: 20px;
    width: 30% !important;
    position: relative;
    padding-bottom: 40px;
    min-width: 320px;
}
.team-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.team-area-wrapper .team-card {
    margin: 15px;
}

.team-card p {
    margin-top: 0px;
    max-width: 260px;
    margin: 0 auto;
}
.team-card h4 {
    margin-bottom: 0px;
    max-width: 260px;
    margin: 25px auto 0px;
}
span.light-blue-text {
    color: var(--text-grey);
    display: block;
}
a.team-email {
    font-size: 0.8rem;
    text-decoration: none;
    display: block;
    max-width: 260px;
    margin: 0 auto 25px;
}
.bio-button {
    color: #ffffff;
    background-color: var(--green);
    padding: 5px 20px;
    border-radius: 28px;
    text-decoration: none;
    transition: all ease-in-out 0.5s;
    display: inline;
    cursor: pointer;
    font-family: 'open-sans', sans-serif;
    margin-left: 50px;
}
.bio-button:hover{
    background: var(--light-blue);
}
p.main-bio-container {
    margin-bottom: 0px;
}
.bio-expand {
    display: none;
}

.vc_row.wpb_row.vc_inner.vc_row-fluid.team-area-wrapper.vc_row-o-content-middle.vc_row-flex {
    justify-content: center;
}
.bio-expand.open {
    position: absolute;
    width: 89%;
    top: 0%;
    left: 0px;
    display: block;
    background: var(--grey);
    border-radius: 20px;
    z-index: 9999;
    padding: 20px;
    max-height: 466px;
    height: 92%;
    font-family: 'open-sans'
}
.bio-expand.open h4 {
    margin: 10px 0px;
    font-size: 2rem;
}
.bio-expand.bio-smaller-text.open p {
    font-size: .95rem;
}
.close-profile {
    text-align: right;
    cursor: pointer;
    display: inline-block;
    position: absolute;
    right: 25px;
}
p.about-intro-text {
    font-size: 2rem;
}

.profile-image {
    height: 260px;
    width: 260px;
    background-position: center;
    background-size: cover;
    margin: 0 auto;
    margin-top: 35px;
}

.page-id-28  .left-bg-img {
    bottom: -30%;
}
h3 span.slider-title {
    color: #fff;
    font-size: 2.5rem;
}
.services-highlight-card h3{
    margin: 0px;
}
.servcie-page .services-highlight-card {
    width: 60%;
    position: absolute;
    right: 0;
}
.servcie-page .services-highlight-card::before {
    content: '';
    height: 100%;
    width: 100%;
    background: url('/wp-content/uploads/2025/09/chevron-lines-grey.png');
    position: absolute;
    left: -35px;
    bottom: -32px;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    border-radius: 25px;
}
.error-contiainer {
    margin-bottom: 10%;
}
.error-contiainer p{
    margin-bottom: 30px;
}
a.home-btn {
    color: #ffffff;
    background: var(--green);
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: all ease-in-out 0.5s;
}
a.home-btn:hover{
    background: var(--light-blue);
}
.team-card.wpb_column.vc_column_container.vc_col-sm-4 {
    min-width: 360px;
}
.team-card .bio-extract {
    max-width: 100%;
    font-size: 0.95rem;
}
/*--- mob menu styles ----*/
.mob-icon-open {
    display: none;
}
.mobile-menu {
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 99999;
    top: 0px;
    right: -100%;
    transition: all ease-in-out 0.5s;
    display: grid;
    grid-template-columns: 50% 50%;
}

.mobile-menu.active {
    right: 0;
}
nav#mob-menu {
    background: #ffffff;
}

nav#mob-menu {
    background: #ffffff;
    padding-top: 70px;
    box-shadow: 0px 0px 10px 0px #222923;
}
.mob-menu-close {
    text-align: right;
    padding-right: 42px;
}
.mob-menu-close i, .mob-icon-open i{
    cursor: pointer;
}
#mob-menu a{
    text-decoration: none;
}
#mob-menu ul li a {
    color: var(--text-grey);
    padding: 5px 0px;
    border-bottom: 1px solid var(--text-grey);
    display: block;
}
#mob-menu ul{
    margin-right: 20px;
}
span.no-call {
    text-decoration: none;
    color: var(--text-grey);
}
div#cmplz-document {
    max-width: 100%;
    font-family: 'open-sans';
}


/*----- Resonsive code -------*/
/* Device = laptop, desktops */

@media(min-width: 1025px) and (max-width: 1480px) {
  
.inner-hero-wrapper {
    padding:0; 
}
.bio-expand.open p, .bio-expand.bio-smaller-text.open p {
    font-size: 0.9rem;
}    
.gform-theme--foundation .gform_fields {
    gap: 10px !important;
}    
.left-bg-img {
   left: -13%;
}  
.hero-right-wrapper h3 {
    font-size: 2.3rem;
}   
.right-bg-block-lines {
    right: -23%;
    bottom: -15px;
}    
.contact-headding-wrapper h1 {
    font-size: 3.1rem;
}  
.contact-headding-wrapper h3 {
    font-size: 2rem;
}  
.inner-hero-wrapper {
    margin-top: 40px;
}  
.servcie-page .services-highlight-card, div#form-bottom-overlap {
    right: 8%;
}
.team-card {
    min-height: 475px;
}    

    
}/* large ipad pro */
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) {
.container {
    width: 100%;
    max-width: 1000px;
    padding: 0 20px;
    margin: 0 auto;
}
.hero-right-wrapper button.slick-prev.slick-arrow {
    right: 28%;
}  
.hero-right-wrapper h3 {
    font-size: 2.4rem;
}  
    
.hero-left-wrapper {
    padding-bottom: 6%;
}    
.inner-hero-wrapper.container {
    margin-top: 3%;
}    
.left-bg-img {
    left: -40%;
    bottom: -37%;
}    
.right-bg-block-lines {
    right: -40%;
}   
.testimonials-slider-wrapper ul.slick-dots {
    bottom: -45px;
}    
.testimonials-slider-wrapper button.slick-prev.slick-arrow {
    right: 26%;
}  
.slick-initialized .slick-slide {
    margin-right: 5px;
}
.team-card {
    width: 37% !important;
}    
.team-card {
    min-height: 475px;
}    
}/*  normal Ipads */
@media(min-width:820px) and (max-width: 1240px) {   
.container {
    width: 100%;
    max-width: 880px;
    padding: 0 20px;
    margin: 0 auto;
}   
.wpb_text_column.wpb_content_element.service-intro-text h3 {
    font-size: 2.5rem;
} 
.hero-right-wrapper h3 {
    font-size: 2rem;
}   
.hero-left-wrapper h1 {
    font-size: 2.7rem;
}    
.hero-left-wrapper h2 {
    font-size: 2.2rem;
}
.hero-right-wrapper  ul.slick-dots {
    bottom: 90px;
}  
.hero-right-wrapper button.slick-prev.slick-arrow {
    right: 29%;
    bottom: 2%;
}
.hero-right-wrapper button.slick-next.slick-arrow {
    bottom: 2%;
}
.hero-right-wrapper::before {
    content: '';
    height: 100%;
    width: 100%;
    background: url('/wp-content/uploads/2025/09/chevron-lines-grey.png');
    position: absolute;
    left: -25px;
    bottom: -23px;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
}    
.right-bg-block-lines {
    display: none;
}    
div#form-bottom-overlap {
    position: absolute;
    right: unset;
    left: 0;
    top: unset;
    z-index: 3;
    padding: 25px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 0 14px 1px var(--text-grey);
    width: 90%;
    font-family: 'open-sans';
}
footer#footer {
    padding: 15%  0 15% 0;
}

.hero-wrapper {
    margin-top: 5%;
}
.left-bg-img {
    left: -40%;
}  
.team-card {
    min-height: 475px;
}    
}/* Device = Tablets, Ipads, (portrait) */

@media(min-width:768px) and (max-width: 1024px) {
nav#desktop-menu {
    display: none;
} 
.container {
    width: 100%;
    max-width: 700px;
    padding: 0 20px;
    margin: 0 auto;
}    
.hero-right-wrapper h3, .service-intro-text h3, .services-highlight-card .slider-title, .home-sponsor-text h3 {
    font-size: 2rem;
}   
.hero-left-wrapper h1 {
    font-size: 2.7rem;
}    
.hero-left-wrapper h2 {
    font-size: 2.2rem;
} 
.hero-right-wrapper  ul.slick-dots {
    bottom: 90px;
} 
.hero-right-wrapper button.slick-prev.slick-arrow {
    right: 32%;
    bottom: 2%;
    top: unset;
    left: unset;
    z-index: 888;
}    
.hero-right-wrapper button.slick-next.slick-arrow {
    bottom: 2%;
}    
  .hero-right-wrapper::before {
    content: '';
    height: 100%;
    width: 100%;
    background: url('/wp-content/uploads/2025/09/chevron-lines-grey.png');
    position: absolute;
    left: -25px;
    bottom: -23px;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
}  
.inner-hero-wrapper {
    margin-top: 30px;
}    
div#form-bottom-overlap {
    right: unset;
    padding: 20px;
    width: 90%;
    left: 0;
}    
 .purple-wrapper {
    padding-top: 10%;
}  
.servcie-page .services-highlight-card {
    width: 76%;
    right: unset;
    left: 0;
}    
.tablet-hide.wpb_column.vc_column_container.vc_col-sm-6 {
    display: none;
}    
.white-text.full-col-tablet.wpb_column.vc_column_container.vc_col-sm-6, .full-col-tablet.wpb_column.vc_column_container.vc_col-sm-6 {
    width: 90%;
}    
.mob-icon-open {
    display: block;
    font-size: 3rem;
}   
.mobile-menu {
    grid-template-columns: 40% 60%;
}    
.testimonials-slider-wrapper .hero-right-wrapper .slick-dots li button, .testimonials-slider-wrapper .slick-dots li, .testimonials-slider-wrapper  .slick-dots li button:before {
    width: 20px;
    height: 2px;
}    
   
.testimonials-slider-wrapper button.slick-next.slick-arrow {
    right: 10%;
} 
.team-card .bio-extract {
    font-size: 0.92rem;
}   
.bio-button {
  margin-left: 30px;
}
footer .contact-details {
    display: block;
}   
.phone-email-details a {
    display: block;
}   
.form-wrapper {
    padding: 19px 2px !important;
}   
.contact-headding-wrapper h1 {
    font-size: 3.5rem;    
} 
.contact-headding-wrapper h3{
    font-size: 2rem        
}    
.overlap-wrapper.careers-form-page.wpb_column.vc_column_container.vc_col-sm-6 {
    margin-top: 8%;
} 
.team-card {
    min-height: 475px;
}    
    
}/* Device = Tablets, Ipads (landscape) */
@media (min-width: 786px) and (max-width: 1024px) and (orientation: landscape) {
   nav#desktop-menu {
    display: none;
} 
    .container {
    width: 100%;
    max-width: 700px;
    padding: 0 20px;
    margin: 0 auto;
}   
.team-card {
    min-height: 475px;
}    
}/*  Device = Low Resolution Tables, Moblies (landscape) */
@media (min-width: 481px) and (max-width: 767px) {
 nav#desktop-menu {
    display: none;
} 
    .container {
    width: 100%;
    max-width: 700px;
    padding: 0 20px;
    margin: 0 auto;
}      
.hero-right-wrapper h3, .service-intro-text h3, .services-highlight-card .slider-title, .home-sponsor-text h3 {
    font-size: 2rem;
}   
.hero-left-wrapper h1 {
    font-size: 2.7rem;
}    
.hero-left-wrapper h2 {
    font-size: 2.2rem;
} 
.hero-right-wrapper  ul.slick-dots {
    bottom: 90px;
} 
.hero-right-wrapper button.slick-prev.slick-arrow {
    right: 32%;
    bottom: 2%;
    top: unset;
    left: unset;
    z-index: 888;
}    
.hero-right-wrapper button.slick-next.slick-arrow {
    bottom: 2%;
}    
  .hero-right-wrapper::before {
    content: '';
    height: 100%;
    width: 100%;
    background: url('/wp-content/uploads/2025/09/chevron-lines-grey.png');
    position: absolute;
    left: -25px;
    bottom: -23px;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
}  
.inner-hero-wrapper {
    margin-top: 30px;
}    
div#form-bottom-overlap {
    right: unset;
    padding: 20px;
    width: 90%;
    left: 0;
}    
 .purple-wrapper {
    padding-top: 10%;
}  
.servcie-page .services-highlight-card {
    width: 76%;
    right: unset;
    left: 0;
}    
.tablet-hide.wpb_column.vc_column_container.vc_col-sm-6 {
    display: none;
}    
.white-text.full-col-tablet.wpb_column.vc_column_container.vc_col-sm-6, .full-col-tablet.wpb_column.vc_column_container.vc_col-sm-6 {
    width: 90%;
}    
.mob-icon-open {
    display: block;
    font-size: 3rem;
}   
.mobile-menu {
    grid-template-columns: 40% 60%;
}    
.testimonials-slider-wrapper .hero-right-wrapper .slick-dots li button, .testimonials-slider-wrapper .slick-dots li, .testimonials-slider-wrapper  .slick-dots li button:before {
    width: 20px;
    height: 2px;
}    
   
.testimonials-slider-wrapper button.slick-next.slick-arrow {
    right: 10%;
} 
.team-card .bio-extract {
    font-size: 0.92rem;
}   
.bio-button {
  margin-left: 30px;
}
footer .contact-details {
    display: block;
}   
.phone-email-details a {
    display: block;
}   
.form-wrapper {
    padding: 19px 2px !important;
}   
.contact-headding-wrapper h1 {
    font-size: 3.5rem;    
} 
.contact-headding-wrapper h3{
    font-size: 2rem        
}    
.overlap-wrapper.careers-form-page.wpb_column.vc_column_container.vc_col-sm-6 {
    margin-top: 8%;
} 
.wpb_single_image.wpb_content_element.vc_align_left.left-bg-img, .right-bg-block-lines {
    display: none;
}    
.line-bg-wrapper .vc_column_container {
    width: 50%;
}    
div#form-bottom-overlap {
    right: unset;
    width: 76%;
    left: unset;
    position: relative;
    margin: 0 auto;
    top: 0px;  
}    
.servcie-page .services-highlight-card {
    width: 50%;
    right: unset;
    left: 0;
    position: relative;
    margin: 0 auto 50px;
}
.form-wrapper {
    width: 75% !important;
    margin: 0 auto 50px;
}    

}/*  Device = Most smartphones (portrait) */
@media (min-width: 320px) and (max-width: 480px){
.container {
    width: 100%;
    max-width: 310px;
    padding: 0 20px;
    margin: 0 auto;
} 
nav#desktop-menu {
    display: none;
}   
.wpb_single_image.wpb_content_element.vc_align_left.left-bg-img {
    display: none;
}    
.logo-wrapper img {
    height: 75px;
}    
.mob-icon-open {
    display: block;
    font-size: 2rem;
}
.inner-hero-wrapper {
    display: block;
} 
.hero-left-wrapper {
    width: 100%;
    margin: 30px 0 50px 0;
}    
.hero-right-wrapper {
    width: 100%;
}    
h3.slide-content {
    font-size: 1.5rem;
}    
  
.hero-right-wrapper::before {
    left: -11px;
    bottom: -16px;
}    
.hero-right-wrapper button.slick-next.slick-arrow {
    right: 9%;
}    
.hero-right-wrapper button.slick-prev.slick-arrow {
    right: 23%;
}  
div#form-bottom-overlap {
    width: auto;
    position: relative;
    padding: 25px;
    top: 0;
}    
.gform-theme--foundation .gform_fields {
    gap: 20px !important;
}    
.wpb_single_image.wpb_content_element.vc_align_right.right-bg-block-lines {
    display: none;
}    
.hero-left-wrapper p {
    font-size: 1.2rem;
}  
.hero-right-wrapper  ul.slick-dots {
    bottom: 90px;
}    
.hero-left-wrapper h1 {
    font-size: 2.8rem;
}  
.hero-left-wrapper h2{
    font-size: 2.1rem; 
}    
.hero-bgimage-wrapper {
    height: 18%;
}   
.mobile-menu {
    grid-template-columns: 25% 75%;
}    
.page-top-right-image {
    background-position: bottom;
}    
  footer .contact-details {
    display: block;
}   
.testimonial-wrapper p {
    padding: 0px 25px 25px 25px;
    margin-top: 0px;
}
    h5.testimonial-name {
    padding-left: 25px;
}
.testimonials-slider-wrapper button.slick-prev.slick-arrow {
    right: unset;
    bottom: unset;
    top: 45%;
    left: -35px;
}
.testimonials-slider-wrapper button.slick-next.slick-arrow {
    right: -35px;
    bottom: unset;
    top: 45%;
    z-index: 888;
    left: unset;
} 
.servcie-page .services-highlight-card {
    width: 80%;
    right: unset;
    left: 0;
    position: relative;
    margin: 0 auto 50px;
}    
.hero-right-wrapper h3, .service-intro-text h3, .services-highlight-card span.slider-title, .home-sponsor-text h3, p.about-intro-text, h3 {
    font-size: 1.5rem;
}     
.form-wrapper {
    margin: 10px 0 50px 0;
}   
h1{
    font-size:2.1rem
}    
.team-card .bio-extract {
    font-size: 0.91rem;
}
.wpb_text_column.wpb_content_element.testimonials-slider-wrapper {
    margin-bottom: -40px;
}    
#mob-menu ul li a {
    padding: 8px 0px;
    font-size: 1.1rem;
}
.team-card {
    min-height: 475px;
}    
    
}

