/* Theme Name: LiteSite One Author: JE Consulting Author URI: https://www.je-consulting.co.uk/ Version: 1.0.0 */
 .wp-admin .notice {
     display: none!important;
}
/* Header Styles */
 .navbar {
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 50px;
     padding: 20px 30px;
}
/* .navbar .menu-main-menu-container {
     width: 65%;
}
 */
 .navbar .sitelogo {
     width: 100%;
     max-width: 300px;
}
 .navSocial {
     display: flex;
     justify-content: end;
     gap: 10px;
     margin-bottom: 15px;
}
 .navSocial a {
     color: var(--textcolour);
     font-size: 30px;
}
 .navSocial a:hover{
     color: var(--blue);
}
 .navbar .menu-main-menu-container .menu {
     justify-content: flex-end;
}
 .navbar .menu-main-menu-container .menu li {
     padding: 7px 15px;
     border-radius: 10px;
     text-align: center;
}
 .navbar .menu-main-menu-container .menu li.button {
     font-weight: 400;
}
 .navbar .menu-main-menu-container .menu li.button:hover a {
     color: #fff;
}
 .navbar .menu-main-menu-container .menu li.menu-item-has-children {
}
 .navbar .menu-main-menu-container .menu li:hover {
}
 .navbar .menu-main-menu-container .menu li a {
     color: var(--black);
}
 .navbar .menu-main-menu-container .menu li:hover a {
     color: var(--green);
}
 .navbar .menu-main-menu-container .menu li ul.sub-menu {
     left: 0;
     background-color: transparent;
}
 .navbar .menu-main-menu-container .menu li ul.sub-menu li {
     border-radius: 0;
     background-color: var(--blue);
     border-top: 1px solid var(--white);
     max-width: 100%;
     padding: 5px 15px;
     font-size: 16px;
     text-align: left;
}
 .navbar .menu-main-menu-container .menu li ul.sub-menu li:hover {
     background-color: var(--green);
}
 .hamburger, .closeMenu, .overlay {
     display: none;
}
 .navbar .menu-main-menu-container .menu li ul.sub-menu li a {
     font-size: 16px;
     color: #fff 
}
 .navbar .menu-main-menu-container .menu li ul.sub-menu li:hover a {
     font-weight: 400;
     color: #fff 
}
/* Main Header Content Styles */
 .headerWrap .contentWrapper {
     background-color: var(--lightblue);
     box-shadow: var(--boxshadow);
     border-radius: 0 0 30px 30px;
     margin-bottom: 50px;
}
 .header {
     height: 100%;
     display: flex;
     flex-direction: row;
     flex-wrap: nowrap;
     justify-content: space-between;
     align-items: center;
     align-content: stretch;
     gap: 60px;
     padding: 20px 30px 40px 30px;
}
 .mainHeaderContent {
     display: flex;
     flex-direction: column;
     gap: 25px;
     width: 40%;
}
 .mainHeaderContent h1 {
     margin-bottom: 0;
     letter-spacing: 0.7px;
}
 .mainHeaderContent p {
     font-size: 20px;
     line-height: 30px;
     margin-bottom: 5px;
     font-weight: 500;
}
 .mainHeaderContactBtns {
     width: fit-content;
     display: flex;
     gap: 20px;
}
/* Logos Slider */
 .marquee {
     display: flex;
     align-items: center;
     block-size: var(--marquee-item-height);
     position: relative;
     overflow-x: hidden;
     mask-image: linear-gradient( to right, hsl(0 0% 0% / 0.5), hsl(0 0% 0% / 1) 20%, hsl(0 0% 0% / 1) 80%, hsl(0 0% 0% / 0.5) );
     background-color: var(--background);
}
 .marquee--8 {
     --marquee-item-width: 100px;
     --marquee-item-height: 100px;
     --marquee-duration: 36s;
     --marquee-items: 8;
}
 .marquee--3 {
     --marquee-item-width: 150px;
     --marquee-item-height: 150px;
     --marquee-duration: 24s;
     --marquee-items: 3;
}
 .marquee--6 {
     --marquee-item-width: 166px;
     --marquee-item-height: 100px;
     --marquee-duration: 32s;
     --marquee-items: 6;
}
 .marquee--5 {
     --marquee-item-width: 166px;
     --marquee-item-height: 100px;
     --marquee-duration: 30s;
     --marquee-items: 5;
}
 .marquee__item {
     --marquee-item-offset: max( calc(var(--marquee-item-width) * var(--marquee-items)), calc(100% + var(--marquee-item-width)) );
     --marquee-delay: calc( var(--marquee-duration) / var(--marquee-items) * (var(--marquee-items) - var(--marquee-item-index)) * -1 );
     position: absolute;
     inset-inline-start: var(--marquee-item-offset);
     transform: translateX(-50%);
     animation: go linear var(--marquee-duration) var(--marquee-delay, 0s) infinite;
}
 .marquee__item:nth-child(4n) {
     border-top-right-radius: 1rem;
}
 .marquee__item:nth-child(4n + 1) {
     border-bottom-right-radius: 1rem;
}
 .marquee__item:nth-child(4n + 2) {
     border-bottom-left-radius: 1rem;
}
 .marquee__item:nth-child(4n + 3) {
     border-top-left-radius: 1rem;
}
 .marquee--5 .marquee__item:nth-of-type(1) {
     --marquee-item-index: 1;
}
 .marquee--5 .marquee__item:nth-of-type(2) {
     --marquee-item-index: 2;
}
 .marquee--5 .marquee__item:nth-of-type(3) {
     --marquee-item-index: 3;
}
 .marquee--5 .marquee__item:nth-of-type(4) {
     --marquee-item-index: 4;
}
 .marquee--5 .marquee__item:nth-of-type(5) {
     --marquee-item-index: 5;
}
 @keyframes go {
     to {
         inset-inline-start: calc(var(--marquee-item-width) * -1);
    }
}
/* Text Section */
 .textSectionWrapper {
     margin-top: 100px;
}
 .textSectionWrapper .featuredImg img {
     max-width: 500px;
     margin: 0 auto;
     display: block;
}
 .textSectionWrapper .contentWrapper {
     display: grid;
     grid-template-columns: repeat(2,1fr);
     gap: 100px;
     align-items: center;
}
 .textSection {
     display: flex;
     flex-direction: row;
     flex-wrap: nowrap;
     justify-content: center;
     align-items: stretch;
     align-content: stretch;
     padding: 20px 50px;
}
 .featuredUSPWrapper {
     padding: 30px 0 30px 30px;
     width: 50%;
     display: flex ;
     flex-direction: row;
     flex-wrap: nowrap;
     justify-content: flex-start;
     align-items: stretch;
}
 .featuredUSPInner {
     width: 50%;
     display: flex;
     flex-direction: row;
     flex-wrap: nowrap;
     justify-content: center;
     align-items: center;
     align-content: stretch;
     gap: 25px;
}
 .counternum {
     color: var(--white);
     font-weight: bold;
     font-size: 46px;
}
 .counter-txt {
     color: var(--white);
     font-size: 20px;
}
/* Card Section */
 .home h2.focusedHeading {
     font-size: 24px;
     margin-bottom: 5px;
}
 .introTxt {
     font-size: 34px;
     line-height: 40px;
     font-weight: bold;
}
 .cardWrap .cardSlider {
     padding: 30px 0;
     margin-bottom: 0;
}
 .cardSlider .card {
     padding: 0 30px;
}
 .cardUpper {
     background-image: url('/wp-content/uploads/2026/02/LitesiteOne-Image-2.jpg');
     height: 350px;
     background-repeat: no-repeat;
     background-position: 58% 12%;
     padding: 0 30px;
     display: flex;
     align-items: end;
}
 .ourServices {
     background-color: var(--lightblue);
     border-radius: 20px;
     overflow: hidden;
     box-shadow: var(--boxshadow);
}
 .cardWrap {
     margin: 100px 0;
}
 .SliderTitle {
     width: 100%;
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 30px;
}
 .ourServices .SliderTitle h3 {
     color: #fff;
     text-shadow: 0 0 7px #333;
}
 .SliderTitle h3{
     font-size: 40px;
     margin-bottom: 0;
     color: var(--textcolour);
}
 .cardArrows i {
     background-color: #fff;
     border-radius: 50%;
     width: 30px;
     height: 30px;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 0 7px #333;
     color: var(--blue);
     cursor: pointer;
}
 .cardArrows {
     display: flex;
     gap: 10px;
}
 .cardDots .slick-dots {
     position: relative;
     bottom: 0;
}
 .cardDots {
     margin-bottom: 30px;
}
 .cardDots .slick-dots li button::before {
     display: none;
}
 .cardDots .slick-dots li button {
     background-color: rgba(53,72,78,.6);
     border-radius: 50%;
     width: 100%;
     height: 100%;
     transition: all .5s ease-in-out;
}
 .cardDots .slick-dots li.slick-active button, .cardDots .slick-dots li:hover button{
     background-color: rgba(53,72,78,1);
}
 .cardDots .slick-dots li {
     padding: 0;
     width: 10px;
     height: 10px;
     margin: 0 5px;
}
 .cardSlider .card h4{
     position: relative;
}
 .cardSlider .card h4 a {
     color: var(--textcolour);
     display: block;
}
 .cardSlider .card h4 a:hover i{
     background-color: var(--green);
     color: var(--textcolour);
}
 .cardSlider .card h4 i {
     color: #fff;
     background-color: var(--blue);
     font-size: 17px;
     width: 25px;
     height: 25px;
     position: absolute;
     right: 0;
     top: 2px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     box-shadow: 0 0 4px #333;
}
 .cardSlider .card:nth-child(2n) h4 i{
     background-color: var(--green);
     color: var(--textcolour);
}
 .cardSlider .card:nth-child(2n) h4 a:hover i{
     color: #fff;
     background-color: var(--blue);
}
 .ctaWrap .contentWrapper {
     display: flex;
     gap: 30px;
     align-items: center;
     justify-content: space-between;
}
 .ctaText {
     max-width: 50%;
     width: 100%;
}
/* Call to action */
 .ctaWrap {
     background-color: var(--blue);
     padding: 75px 0;
}
 .ctaWrap h5 {
     color: #fff;
     font-size: 40px;
}
 .ctaWrap p{
     color: #fff;
}
/* event Styles */
 .eventSection {
     padding: 60px 50px;
     display: flex;
     flex-direction: row;
     flex-wrap: nowrap;
     justify-content: space-between;
     align-items: center;
     align-content: stretch;
     width: 100%;
     gap: 100px;
}
 .eventSection introTxt {
}
 .counter-wrapper {
     width: 40%;
}
 .countdown {
     display: flex;
     gap: 15px;
     justify-content: flex-end;
}
 .time-unit {
     background: white;
     border-radius: 12px;
     padding: 20px 25px;
     text-align: center;
     min-width: 100px;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
 .time-value {
     font-size: 45px;
     font-weight: bold;
     color: #1e3777;
     display: block;
     line-height: 1;
}
 .time-label {
     font-size: 14px;
     color: #1e3777;
     margin-top: 8px;
     text-transform: capitalize;
     font-weight: 500;
}
/* end event Styles */
/* Blog Styles */
 .blogSection {
     padding: 90px 50px;
     margin-bottom: 325px;
}
 .blogHeading {
     display: flex;
     flex-direction: row;
     flex-wrap: nowrap;
     justify-content: space-between;
     align-items: center;
     align-content: stretch;
     gap: 20px;
     width: 100%;
}
 .blogHeadingtxt {
     width: 80%;
}
 .blogHeadingbtn {
     width: 20%;
     text-align: right;
}
 .blogHeading > p {
     max-width: 50%;
     text-align: center;
}
 .blogDate {
     color: var(--blue);
     font-size: 17px;
     font-weight: 500;
     font-style: italic;
     margin-bottom: 10px;
}
 .blogTitle {
     font-size: 22px;
     margin-bottom: 10px;
     color: #1f387a;
}
 .blogTitle a {
     color: var(--black);
}
 .blogTitle a:hover {
     color: var(--green);
}
 .latestnews-wrapper .blogTitle a:hover {
     color: var(--blue);
}
 .blogDesc {
     font-size: 17px;
     margin-bottom: 20px;
}
 .archiveItem .btnContainer {
     margin-top: auto;
}
 .archive .button {
     padding: 13px 30px;
     font-size: 16px;
     font-weight: 400;
}
/* Featured Blogs */
 .blogsContainer {
     display: flex;
     gap: 30px;
     margin-top: 50px;
}
 .featuredBlog {
     display: flex;
     flex-direction: column;
     background-color: #ebfbec;
}
 .featuredBlog-inner {
     padding: 30px;
}
 .blogsContainer.container {
     padding: 0;
}
 .featuredBlog .button {
     margin-top: 20px;
     padding: 15px 40px;
     display: block;
     width: fit-content;
}
 .featuredBlog .imgContainer {
     width: 100%;
     margin-bottom: 30px;
}
 .featuredBlog .featuredImg {
     margin-bottom: 15px;
     min-height: 265px;
     text-align: center;
     display: flex;
     flex-direction: column;
     flex-wrap: nowrap;
     justify-content: flex-end;
     align-items: stretch;
}
 .featuredBlog .featuredImg img {
     display: block;
}
 .featuredImg a img {
     transform: rotateY(0deg);
     transition: transform 0.4s cubic-bezier(0.455, 0.030, 0.515, 0.955);
     transform-style: preserve-3d;
}
 .featuredImg a:hover img {
     transform: rotateY(180deg);
}
 .featuredBlogBtn {
     margin-top: 25px;
}
 .error404 .PageTitle {
     text-align: center;
     margin-top: 50px;
}
 .ErrorWrap {
     margin-bottom: 400px;
     text-align: center;
}
/* Footer Styles */
 .footer {
     background-color: var(--background);
     padding: 100px 50px;
}
 .footerContact a {
     font-size: 16px;
}
 .footerContact a:hover {
     color: var(--white);
}
 .footerContact .gform_fields {
     grid-row-gap: 12px !important;
}
 .footerContact .gfield input.large, .footerContact .gfield textarea{
     font-size: 16px;
     border-radius: 5px;
     border: 2px solid #c1c9c6;
}
 .footerContact .gform-body {
     position: relative;
}
 .footerContact .gfield--type-text, .footerContact .gfield--type-email, .footerContact .gfield--type-phone {
     width: 35%;
}
 .footerContact .gfield--type-textarea {
     right: 0;
     position: absolute;
     width: 62%;
}
 .footerContact .gform-theme--foundation .gfield textarea.small {
     height: 138px;
}
 .footerContact .gfield_checkbox label {
     font-size: 16px;
}
 .footerContact .gfield_checkbox input[type="checkbox"] {
     border: 2px solid #c1c9c6;
}
 .footerTwo {
     background-color: #35484e;
     padding: 30px 0;
}
 .footerTwo .contentWrapper {
     display: grid;
     grid-template-columns: repeat(4,1fr);
     gap: 60px;
}
 .footerTwo p, .footerTwo h6{
     color: #fff;
}
 .footerTwo p, .footerTwo li, .footerTwo a{
     font-size: 14px;
}
 .footerTwo .footerTwoColumn:first-child {
     padding-top: 0px;
}
 .footerTwo .footerTwoColumn {
     padding-top: 40px;
}
 .footer .gfield--type-html {
     font-size: 16px;
}
 .footerLogo {
     margin-bottom: 30px;
}
 .footerContact .gform-theme--framework #gform_1_validation_container.gform_validation_errors {
     background-color: transparent;
     border: 0;
     border-radius: 0;
     box-shadow: none;
     margin-block: 0;
     padding-block: 0;
     padding-inline: 0;
}
 .footerTwoColumn .menu {
     display: block;
}
 .footerThree .contentWrapper {
     display: flex;
     justify-content: space-between;
}
 .footerThree {
     background-color: #000;
     padding: 20px 0;
}
 .footerThree p {
     color: #fff;
     margin-bottom: 0;
     font-size: 14px;
}
 .footerThree p a{
     color: inherit;
     font-size: inherit;
}
 .contactText h2 {
     margin-bottom: 30px;
     color: var(--textcolour);
}
 .contactCTA {
     padding-top: 10px;
}
 .footerSocials {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin: 50px 0;
}
 .socialIcons {
     display: flex;
     justify-content: space-evenly;
     gap: 20px;
     cursor: pointer;
}
 .footerLinks {
     display: flex;
     justify-content: space-between;
     margin-bottom: 50px;
     margin-right: 50px;
}
 .footerLinks h5 {
     font-style: normal;
}
 .footerLinks ul {
     list-style-type: none;
     padding-left: 0px;
}
 .footerLinks li a {
     color: var(--white);
     line-height: 1.6em;
}
 .footerLinks li a:hover {
     text-decoration: underline;
}
 .contactPods {
     display: flex;
     flex-direction: column;
     gap: 20px;
}
 #email, #phoneNo, #location {
     display: flex;
     align-items: center;
     gap: 15px;
}
 #email p, #phoneNo p, #location p {
     color: var(--white);
     line-height: 1em;
}
 .termsContainer {
     display: flex;
     justify-content: space-between;
     margin-top: 30px;
}
 .termsContainer a, .termsContainer p, .termsLinks {
     color: var(--white);
}
 .termsContainer a {
     padding: 0 5px;
}
 .termsLinks a:hover {
     text-decoration: underline;
}
 .pagehero.heroimage-overlap {
     max-width: 50%;
     padding-left: 150px;
}
 .reveal {
     position: relative;
     opacity: 0;
}
 .reveal.active {
     opacity: 1;
}
 .reveal {
     position: relative;
     opacity: 0;
}
 .reveal.active {
     opacity: 1;
}
 .active.fade-in {
     -webkit-animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) 1s both;
     animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) 1s both;
}
 .active.fade-in-top {
     -webkit-animation: fade-in-top 1.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.4s both;
     animation: fade-in-top 1.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.4s both;
}
 .active.fade-in-top2 {
     -webkit-animation: fade-in-top 1.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.7s both;
     animation: fade-in-top 1.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.7s both;
}
 .active.fade-in-top3 {
     -webkit-animation: fade-in-top 1.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) 1s both;
     animation: fade-in-top 1.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) 1s both;
}
 .active.fade-in-left {
     -webkit-animation: fade-in-left 1.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.2s both;
     animation: fade-in-left 1.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.2s both;
}
 .active.fade-in-right {
     -webkit-animation: fade-in-right 1.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.2s both;
     animation: fade-in-right 1.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.2s both;
}
 .active.text-animate {
     -webkit-animation: text-animate 1.2s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
     animation: text-animate 1.2s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}
 .active.scale-in-ver-bottom {
     -webkit-animation: scale-in-ver-bottom 2.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
     animation: scale-in-ver-bottom 2.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
 .active.scale-in-ver-bottom-days {
     -webkit-animation: scale-in-ver-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.2s both;
     animation: scale-in-ver-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.2s both;
}
 .active.scale-in-ver-bottom-hours {
     -webkit-animation: scale-in-ver-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.3s both;
     animation: scale-in-ver-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.3s both;
}
 .active.scale-in-ver-bottom-mins {
     -webkit-animation: scale-in-ver-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.4s both;
     animation: scale-in-ver-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.4s both;
}
 .active.scale-in-ver-bottom-secs {
     -webkit-animation: scale-in-ver-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s both;
     animation: scale-in-ver-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s both;
}
 @-webkit-keyframes fade-in {
     0% {
         opacity: 0;
    }
     100% {
         opacity: 1;
    }
}
 @keyframes fade-in {
     0% {
         opacity: 0;
    }
     100% {
         opacity: 1;
    }
}
 @-webkit-keyframes fade-in-left {
     0% {
         -webkit-transform: translateX(-50px);
         transform: translateX(-50px);
         opacity: 0;
    }
     100% {
         -webkit-transform: translateX(0);
         transform: translateX(0);
         opacity: 1;
    }
}
 @keyframes fade-in-left {
     0% {
         -webkit-transform: translateX(-50px);
         transform: translateX(-50px);
         opacity: 0;
    }
     100% {
         -webkit-transform: translateX(0);
         transform: translateX(0);
         opacity: 1;
    }
}
 @-webkit-keyframes fade-in-right {
     0% {
         -webkit-transform: translateX(50px);
         transform: translateX(50px);
         opacity: 0;
    }
     100% {
         -webkit-transform: translateX(0);
         transform: translateX(0);
         opacity: 1;
    }
}
 @keyframes fade-in-right {
     0% {
         -webkit-transform: translateX(50px);
         transform: translateX(50px);
         opacity: 0;
    }
     100% {
         -webkit-transform: translateX(0);
         transform: translateX(0);
         opacity: 1;
    }
}
 @-webkit-keyframes fade-in-top {
     0% {
         -webkit-transform: translateY(-20px);
         transform: translateY(-20px);
         opacity: 0;
    }
     100% {
         -webkit-transform: translateY(0);
         transform: translateY(0);
         opacity: 1;
    }
}
 @keyframes fade-in-top {
     0% {
         -webkit-transform: translateY(0px);
         transform: translateY(0px);
         opacity: 0;
    }
     100% {
         -webkit-transform: translateY(0);
         transform: translateY(0);
         opacity: 1;
    }
}
 @-webkit-keyframes text-animate {
     0% {
         letter-spacing: -0.5em;
         opacity: 0;
    }
     40% {
         opacity: 0.6;
    }
     100% {
         opacity: 1;
    }
}
 @keyframes text-animate {
     0% {
         letter-spacing: -0.5em;
         opacity: 0;
    }
     40% {
         opacity: 0.6;
    }
     100% {
         opacity: 1;
    }
}
 @keyframes shadow-pop-br {
     0% {
         -webkit-box-shadow: 0 0 #beddbe, 0 0 #beddbe, 0 0 #beddbe, 0 0 #beddbe, 0 0 #beddbe, 0 0 #beddbe, 0 0 #beddbe, 0 0 #beddbe;
         box-shadow: 0 0 #beddbe, 0 0 #beddbe, 0 0 #beddbe, 0 0 #beddbe, 0 0 #beddbe, 0 0 #beddbe, 0 0 #beddbe, 0 0 #beddbe;
         -webkit-transform: translateX(0) translateY(0);
         transform: translateX(0) translateY(0);
    }
     100% {
         -webkit-box-shadow: 1px 1px #beddbe, 2px 2px #beddbe, 3px 3px #beddbe, 4px 4px #beddbe, 5px 5px #beddbe, 6px 6px #beddbe, 7px 7px #beddbe, 8px 8px #beddbe;
         box-shadow: 1px 1px #beddbe, 2px 2px #beddbe, 3px 3px #beddbe, 4px 4px #beddbe, 5px 5px #beddbe, 6px 6px #beddbe, 7px 7px #beddbe, 8px 8px #beddbe;
         -webkit-transform: translateX(-8px) translateY(-8px);
         transform: translateX(-8px) translateY(-8px);
    }
}
 @-webkit-keyframes scale-in-ver-bottom {
     0% {
         -webkit-transform: scaleY(0);
         transform: scaleY(0);
         -webkit-transform-origin: 0% 100%;
         transform-origin: 0% 100%;
         opacity: 1;
    }
     100% {
         -webkit-transform: scaleY(1);
         transform: scaleY(1);
         -webkit-transform-origin: 0% 100%;
         transform-origin: 0% 100%;
         opacity: 1;
    }
}
 @keyframes scale-in-ver-bottom {
     0% {
         -webkit-transform: scaleY(0);
         transform: scaleY(0);
         -webkit-transform-origin: 0% 100%;
         transform-origin: 0% 100%;
         opacity: 1;
    }
     100% {
         -webkit-transform: scaleY(1);
         transform: scaleY(1);
         -webkit-transform-origin: 0% 100%;
         transform-origin: 0% 100%;
         opacity: 1;
    }
}
/** end reveal animation **/
 .page-introtxt {
     margin-bottom: 20px;
}
 .pageheading {
     margin-bottom: 40px;
}
 .page-template-page-events .pageheading {
     margin-bottom: 0;
}
 .pageheadinginner {
     padding: 20px 50px;
     display: flex;
     flex-direction: row;
     flex-wrap: nowrap;
     justify-content: space-between;
     align-items: center;
     align-content: stretch;
     gap: 30px;
}
 .pageheadinginner-img {
     width: 55%;
     text-align: right;
}
 .pageheadinginner-img .single-thumbnail img {
     min-width: 480px;
}
 .page-introtxt h6 {
     font-size: 20px;
     line-height: 25px;
     font-weight: 600;
     color: rgb(254, 187, 132);
     margin-bottom: 5px;
}
 .memberInfo .page-introtxt h5 {
     margin: 20px 0;
}
 .teamMemberBanner h1 {
     margin-bottom: 5px;
}
 .page-introtxt h5, .teamMemberBanner h2 {
     font-size: 23px;
     line-height: 28px;
     font-weight: 600;
     color: var(--blue);
     margin-bottom: 5px;
}
 .breadcrumbs {
     font-size: 16px;
     color: #333;
}
 .breadcrumbs a {
     font-size: 16px;
}
 .breadcrumbs a:hover {
}
 .innerContentWrapper {
     display: flex;
     flex-direction: row;
     flex-wrap: nowrap;
     justify-content: flex-start;
     align-items: stretch;
     gap: 60px;
}
 .page-template-page-team .innerContentWrapper {
     display: block;
}
 .team-content-wapper {
     margin-bottom: 80px;
}
 .pagecontent-wrapper {
     width: 70%;
}
 .breadcrumbs-wrap {
     margin-bottom: 10px;
}
 .pageWrap.mainWrap {
     margin-bottom: 50px;
}
 .pagecontent-wrapper ul {
     list-style: none;
}
 .pagecontent-wrapper li::before {
     content: "";
     padding-left: 20px;
     background-image: url('/wp-content/uploads/2026/02/bullet-img.png');
     background-repeat: no-repeat;
     background-position: 0 7px;
     background-size: 8px 8px;
}
 .latestnews-wrapper {
     width: 30%;
}
 .latestnews-wrapper .blogTitle {
     color: var(--textcolour);
     font-size: 18px;
     font-weight: 600;
     line-height: 21px;
     margin-bottom: 5px;
}
 .latestnews-wrapper .featuredBlog-inner {
     padding: 25px;
     border-bottom: 1px solid #fff;
}
 .latestnews-wrapper .featuredBlog {
     background-color: var(--lightblue);
}
 .latestnews-wrapper .blogDate {
     font-size: 16px;
}
 .latestnews-header {
     background-color: var(--blue);
     padding: 20px 30px;
     color: #fff;
     font-weight: bold;
     font-size: 23px;
     border-radius: 20px 20px 0 0;
}
 footer .socialMediaIcon i::before {
     font-size: 18px;
}
 #cmplz-document ul, .editor-styles-wrapper .cmplz-unlinked-mode ul {
     list-style: none;
     margin-left: 0;
     margin-bottom: 0;
}
.archiveLoop .featuredImg {
	height: 200px;
	background-repeat: no-repeat;
	background-size: cover;
	margin-bottom: 30px;
	border-radius: 10px;
}
 @media only screen and (max-width: 1450px) {
     .navbar .menu-main-menu-container .menu li {
         width: 140px;
    }
}
 @media only screen and (max-width: 1300px) {
     .menu {
         gap: 10px;
    }
}
 @media only screen and (max-width: 1280px) {
    .navbar .sitelogo {
		width: 100%;
		max-width: 244px;
		text-align: center;
		margin: 0 auto;
	}
     .navbar .menu-main-menu-container {
         width: 75%;
    }
}
 @media only screen and (max-width: 1200px) {
/*
	 .headerWrap {
	overflow: hidden;
}
*/
     body.no-scroll {
         overflow: hidden;
         position: fixed;
         width: 100%;
    }
     .navbar {
		position: relative;
		flex-wrap: wrap;
	}
     .menu-main-menu-container {
         display: none;
         position: fixed;
         top: 0;
         right: 0;
         width: 100%;
         background: var(--white);
         z-index: 1001;
         height: auto;
         max-height: 80vh;
         overflow-y: auto;
         -ms-overflow-style: none;
         scrollbar-width: none;
    }
     .menu-main-menu-container::-webkit-scrollbar {
         display: none;
    }
    .menu-main-menu-container .menu {
		flex-direction: column;
		align-items: flex-start;
		padding-top: 80px;
		padding-bottom: 30px;
		gap: 0;
		background: var(--green);
	}
     .menu-main-menu-container .menu li {
         width: 100%;
         text-align: left;
         padding: 15px 30px;
         position: relative;
    }
     .navbar .menu-main-menu-container .menu > li {
	max-width: 1090%;
	width: 100%;
	border-bottom: 1px solid var(--light-background);
	border-radius: 0 !important;
	text-align: left;
}
     .navbar .menu-main-menu-container .menu li ul.sub-menu li {
         width: 100%;
    }
     .navbar .menu-main-menu-container.mobile .menu li.open {
         background-color: var(--background);
    }
     .navbar .menu-main-menu-container.mobile .menu li.open a {
         color: var(--white);
    }
     .navbar .menu-main-menu-container.mobile .menu li.open i {
         color: var(--white);
    }
     .navbar .menu-main-menu-container.mobile .menu li > a {
         padding: 15px 15px 20px;
    }
     .navbar .menu-main-menu-container .menu > li:last-child {
         border-bottom: none;
    }
    .navbar .menu-main-menu-container .menu li i {
	position: absolute;
	right: 20px;
	top: 15px;
	padding: 10px;
	background-color: var(--red);
	cursor: pointer;
}
     .navbar .menu-main-menu-container .menu li ul.sub-menu {
         position: static;
    }
     .hamburger {
         display: block;
         top: 30px;
         right: 30px;
         z-index: 1002;
         cursor: pointer;
         font-size: 2rem;
		  order: 2;
    }
     .closeMenu {
         display: none;
         position: absolute;
         top: 30px;
         right: 30px;
         z-index: 1002;
         cursor: pointer;
         font-size: 2rem;
    }
     .overlay {
         display: none;
         position: fixed;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         background: rgba(0, 0, 0, 0.5);
         z-index: 1000;
    }
	 .navSocial {
		margin-bottom: 0;
	}
	 .mainHeaderContactBtns {
	display: grid;
	grid-template-columns: 48% 48%;
	gap: 2%;
	width: 100%;
}
}
/* Device = Tablets, Ipads (portrait) */
 @media only screen and (max-width: 1024px) {
     .header {
         background-image: none;
         background-color: #fff;
         height: 600px;
         margin-top: 0px;
    }
     .mainHeaderContent {
         width: 70%;
         max-width: 70%;
    }
     .mainHeaderContent h1 {
         letter-spacing: 1px;
         font-size: 48px;
    }
     .latestnews-header {
         padding: 20px 25px;
    }
     .latestnews-wrapper .featuredBlog-inner {
         padding: 25px 25px;
    }
     .pageheadinginner-img {
         width: 50%;
    }
     .logosSliderPrimary {
         gap: 20px;
    }
     .headerContentWrapper {
         background: #ebfbec;
    }
     .featuredUSPInner img {
         width: 80px;
    }
     .introTxt {
         font-size: 30px;
         line-height: 35px;
    }
     .contactText h2 {
         margin-top: 25px;
    }
     .footerContact {
         gap: 10%;
    }
     .footerLinks {
         display: grid;
         grid-template-columns: repeat(3, 3fr);
         grid-template-rows: 120px 260px;
         margin-right: 0px;
    }
     .contactPods {
         flex-direction: row;
         justify-content: start;
         gap: 40px;
    }
     #footerLinksOne {
         grid-column: 1 / 4;
         grid-row: 1 / 2;
    }
     #footerLinksTwo {
         grid-column: 1 / 2;
         grid-row: 2 / 3;
    }
     #footerLinksThree {
         grid-column: 2 / 3;
         grid-row: 2 / 3;
    }
     #footerLinksFour {
         grid-column: 3 / 4;
         grid-row: 2 / 3;
    }
     .termsContainer {
         flex-direction: column;
    }
}
 @media only screen and (max-width: 900px) {
     .pageheadinginner {
         display: block;
    }
     .pageheadinginner-header {
         width: 100%;
         margin-bottom: 30px;
    }
     .innerContentWrapper {
         display: block;
    }
     .latestnews-wrapper {
         width: 100%;
    }
     .copyright {
         padding-left: 5px;
    }
     .navbar .contentWrapper {
         display: block;
         padding: 40px 50px 20px;
    }
     .header {
         height: auto;
    }
     .headerContentWrapper {
         display: block;
    }
     .mainHeaderContent {
         width: 100%;
         max-width: 100%;
         padding-top: 50px;
    }
     .textSectionWrapper {
         background: none;
    }
     .textSection {
         display: block;
         padding: 0;
    }
     .featuredUSPWrapper {
         padding: 30px 0 30px 30px;
         width: 100%;
         background: var(--green);
    }
     .eventSection {
         display: block;
    }
     .counter-wrapper {
         width: 100%;
    }
     .countdown {
         justify-content: flex-start;
         margin-top: 40px;
    }
     .blogHeading {
         display: block;
    }
     .blogHeadingtxt {
         width: 100%;
    }
     .blogHeadingbtn {
         width: 100%;
         text-align: left;
         margin-top: 20px;
    }
     .blogsContainer {
         display: block;
    }
     .featuredBlog {
         display: block;
    }
     .footerContact .gfield--type-text, .footerContact .gfield--type-email, .footerContact .gfield--type-phone {
         width: 100%;
    }
     .footerContact .gfield--type-textarea {
         position: relative;
         width: 100%;
    }
     .page-template-page-team .archiveLoop {
         grid-template-columns: repeat(2, 1fr);
    }
     .archiveLoop {
         grid-template-columns: repeat(1, 1fr);
    }
     .webinarItem, .webinarItem:last-child {
         max-width: 100%;
    }
}
 @media only screen and (max-width: 870px) {
     .contactPods {
         flex-direction: column;
         gap: 20px;
    }
	 .archiveItem > .imgContainer {
	display: block;
}
     .pageheading {
         margin-bottom: 0px;
    }
     .pageheading.pageheadingimg {
         margin-bottom: 10px;
    }

     .footerLinks {
         grid-template-rows: 250px 260px;
    }
     .innerContentWrapper {
         display: block;
    }
     .pagecontent-wrapper {
         width: 100%;
         margin-bottom: 60px;
    }
     .latestnews-wrapper {
         width: 100%;
    }
     .page-template-page-team .archiveLoop {
         grid-template-columns: repeat(1, 1fr);
    }
     .teamMemberBanner .container {
         display: block;
    }

     .introTxt br {
         display: contents;
    }
     .container {
         padding: 0 40px;
    }
     .footer {
         padding: 100px 40px;
    }
     .navbar .contentWrapper {
         padding: 40px 40px 20px;
    }
}
/* Device = Low Resolution Tablets, Mobiles (Landscape) */
 @media only screen and (max-width: 767px) {
	 .footerThree .contentWrapper {
		padding: 0 20px;
		display: block;
	}
	 .footerTwo {
		padding: 30px 20px;
	}
	.footerTwo .contentWrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}
	 .textSectionWrapper {
	margin-top: 50px;
}
     .textSectionWrapper .contentWrapper {
         grid-template-columns: repeat(1,1fr);
    }
     .textSection .imgContainer {
         display: none;
    }
     .cardHeader {
         flex-direction: column;
         padding-right: 0;
         align-items: flex-start;
    }
.archiveImage {
	max-width: none;
	float: none;
	margin: 0 0 20px 0px;
	border-radius: 0;
	width: 100%;
}
     .blogsContainer {
         flex-direction: column;
    }
     .featuredImg {
         width: 100%;
         margin: auto;
    }
     .textSectionWrapper .featuredImg img {
         max-width: 100%;
    }
     .footerContact {
         flex-direction: column;
    }
     .featuredBlogBtn .button {
         position: relative;
         left: 50%;
         transform: translateX(-50%);
         padding: 10px 40px;
    }
	 .pagehero.heroimage-overlap {
	display: none;
}
	 .cardUpper {
	height: 210px;
	background-size: cover;
}
	 .ctaWrap .contentWrapper {
	flex-wrap: wrap;
}
	 .ctaText {
	max-width: unset;
}
}
 @media only screen and (max-width: 612px) {
     header {
         height: 650px;
    }
}
 @media only screen and (max-width: 575px) {
     .time-value {
         font-size: 32px;
    }
     .time-unit {
         padding: 20px 20px;
         min-width: 90px;
    }
    .button, #searchsubmit {
	padding: 15px 20px;
}
     ul {
         padding-left: 0;
    }

}
/* Device = Most of the Smartphones Mobiles (Portrait) */
 @media only screen and (max-width: 480px) {
     h1 {
         font-size: 40px;
    }
     h2 {
         font-size: 36px;
    }
     .navbar img {
         max-width: 80%;
    }
     .blogHeading > p {
         max-width: 70%;
    }

     .footerSocials {
         flex-direction: column;
         justify-content: flex-start;
         align-items: flex-start;
    }
     .footerLinks {
         display: flex;
         flex-direction: column;
         gap: 20px;
    }
     .featuredUSPInner img {
         width: 60px;
    }
     .counternum {
         font-size: 32px;
    }
     .counter-txt {
         font-size: 13px;
    }
     .mainHeaderContent h1 {
         font-size: 38px;
    }
     .mainHeaderContent p {
         font-size: 20px;
         line-height: 24px;
    }
     .introTxt {
         font-size: 28px;
         line-height: 32px;
    }
     .time-unit {
         min-width: 60px;
    }
     .time-value {
         font-size: 26px;
    }
     .featuredBlog .featuredImg {
         min-height: auto;
    }
     .contactText h2 {
         font-size: 32px;
    }
     .image-overlap {
         margin-top: -128px;
         min-height: 135px;
    }
     .blogSection {
         margin-bottom: 260px;
    }
     .home h2.focusedHeading {
         font-size: 22px;
    }
     .single-post .postTitle h1 {
         font-size: 28px;
         line-height: 32px;
    }
     .pageheadinginner-img .single-thumbnail img {
         min-width: 320px;
    }
     .pageheading h1, .teamMemberBanner h1 {
         font-size: 48px;
    }
     .page-introtxt h5, .teamMemberBanner h2 {
         font-size: 21px;
         line-height: 25px;
    }
	 .headerWrap {
	overflow: hidden;
}
	 .memberPhoto {
	width: 100%;
	height: auto;
}
}
 @media only screen and (max-width: 360px) {
     .mainHeaderContent h1 {
         font-size: 32px;
    }
     .featuredUSPInner {
         width: 50%;
         display: block;
    }
     .time-unit {
         min-width: 50px;
         padding: 15px 15px;
    }
     .time-value {
         font-size: 18px;
    }
     .time-label {
         font-size: 12px;
    }
}
 