@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Bricolage Grotesque", sans-serif;
}

:root {
    --theme-primary: #01293a;
    --theme-second: #04577d;
    --theme-third: #49a70d;
    --theme-fourth: #076cb1;
    --theme-white: #fff;
    --theme-grey: #aaa;
    --theme-black: #000;
}

html {
    scroll-behavior: smooth;
}

ol,
ul {
    list-style: none;
}

a {
    text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 15px 0px 0px 0px;
    padding: 0;
}

h1 {
    font-size: clamp(2rem, 4.2vw, 3.6rem);
    font-weight: 900;
}

h2 {
    font-size: clamp(1.8rem, 3.8vw, 2.5rem);
    font-weight: 900;
}

p {
    font-size: 22px;
}



.container{
    max-width: 90%!important;
  }





/* button css */
.custom-btn {
    width: 130px;
    height: 45px;
    color: #fff;
    border-radius: 50px;
    /* padding: 10px 25px; */
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
        7px 7px 20px 0px rgba(0, 0, 0, .1),
        4px 4px 5px 0px rgba(0, 0, 0, .1);
    outline: none;
    text-align: center;
    overflow: hidden;
}

.theme_btn {
    background: var(--theme-fourth);
    border: none;
    z-index: 1;
}

.theme_btn:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 5px;
    background-color: var(--theme-third);
    /* background-image: linear-gradient(315deg, #eaf818 0%, #f6fc9c 74%); */
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
        7px 7px 20px 0px rgba(0, 0, 0, .1),
        4px 4px 5px 0px rgba(0, 0, 0, .1);
    transition: all 0.3s ease;
}

.theme_btn:hover {
    color: #fff;
}

.theme_btn:hover:after {
    top: auto;
    bottom: 0;
    height: 100%;
}

.theme_btn:active {
    top: 2px;
}

/* Keyframes css animation */





 .dropdown-menu{
    left: 0px!important;
  }



/* header css */
.theme_header {
    box-shadow: 0px 1px 1px rgba(209, 209, 209, 0.25);
    position: relative;
    z-index: 99;
}

.top_bar {
    background-color: var(--theme-primary);
}

.search_input input {
    border: none;
    background: transparent;
    padding-left: 10px;
}

.search_input input::placeholder {
    color: var(--theme-primary);
}

.search_input input:focus,
.search_input input:active {
    border: none;
    outline: none;
}

.search_input {
    border-radius: 50px;
    /* border: 1px solid var(--theme-white); */
    overflow: hidden;
    background-color: var(--theme-white);
    box-shadow: inset 4px 4px 8px #bebebe, -2px -2px 5px #cba3e7a6;
}

.searc_icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: var(--theme-fourth);
    width: 30px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: var(--theme-white);
    transition: .3s ease-in-out;

    /* border: 1px solid var(--theme-primary); */
}

.searc_icon i {
    font-size: 22px;
    color: var(--theme-white);
}

.searc_icon:hover i {
    color: var(--theme-third);
    scale: .95;
    transition: .3s ease-in-out;
}

a.login_btn {
    color: var(--theme-white);
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 18px;
    transition: .3s ease-in-out;
    position: relative;
}

a.login_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -12px;
    width: 1px;
    height: 100%;
    background-color: var(--theme-white);
}

a.login_btn i {
    color: var(--theme-third);
    transition: .3s ease-in-out
}

a.login_btn:hover i {
    scale: .9;
    transition: .3s ease-in-out
}

.top_icon img {
    filter: brightness(0) saturate(100%) invert(22%) sepia(96%) saturate(2638%) hue-rotate(1deg) brightness(99%) contrast(89%);
}

.topbar_left a:hover .top_icon img {
    scale: .8;
    transition: .3s ease-in-out
}

.topbar_left a h6 {
    color: var(--theme-white);
}

.header_book_btn .custom-btn {
    width: 200px;
    font-size: 22px;
    border-radius: 50px;
    overflow: hidden;
}

.navbar {
    background-color: #49a70d;
    border-top: 1px solid var(--theme-fourth);
}
/* .navbar-brand img{
	width: 200px;
} */







/*--
.navbar-brand h2 {
    background: linear-gradient(90deg,
            rgba(255, 153, 51, 1) 0%,

            rgba(255, 255, 255, 1) 50%,
          
            rgba(19, 136, 8, 1) 100%
            
        );
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
    font-size: 34px;
    font-weight: 900;
}

@keyframes shine {
    from {
        background-position: 0% center;
    }

    to {
        background-position: 200% center;
    }
}
--*/



/*  .logo-wrapper {
    position: relative;
    width: 200px;
    display: inline-block;
    background: linear-gradient(90deg, #ff9933, #ffffff, #138808);
    background-size: 200% auto;
    animation: shine 3s linear infinite;
}
 */
.logo-wrapper img {
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
    /* ensures logo is on top */
}

/* Animation */
@keyframes shine {
    from {
        background-position: 0% center;
    }

    to {
        background-position: 200% center;
    }
}


.logo img{
	width: 200px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.wpcf7 form .wpcf7-response-output {
    color: red!important;
}

.logo-wrapper {
    position: relative;
    display: inline-block;
    width: 200px;
}
.logo-wrapper img {
    display: block;
    width: 100%;
    visibility: hidden; 
}

.logo-wrapper::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(
        90deg,
        #ff9933,
        #ffffff,
        #138808
    );
    background-size: 200% auto;
    animation: shine 3s linear infinite;

    -webkit-mask-image: url('https://regulo.ca/wp-content/uploads/2025/09/regulologom-scaled.png');
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;

    mask-image: url('https://regulo.ca/wp-content/uploads/2025/09/regulologom-scaled.png');
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
}
@keyframes shine {
    from { background-position: 0% center; }
    to { background-position: 200% center; }
}


.navbar-expand-lg .navbar-nav .nav-link,
.navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item {
    color: var(--theme-white);
    font-size: 22px;
    font-weight: 500;
    transition: .3s ease-in-out;
    position: relative;
}

.navbar-expand-lg .navbar-nav .nav-link:hover{
	color: #076cb1!important;
}


.navbar-expand-lg .navbar-nav .dropdown-menu {
    background-color: var(--theme-primary);
    box-shadow: 0 4px 18px rgb(119 119 119 / 50%);

}

.navbar-expand-lg .navbar-nav .dropdown-menu.show {
    display: inline;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    left: 50%;
    transform: translateX(-55%);
    padding: 15px;
}

.navbar-expand-lg .navbar-nav .nav-link:hover,
.navbar-expand-lg .navbar-nav .nav-link.active,
.navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item:hover,
.navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item.active {
    color: #075ac7;
    transition: .3s ease-in-out;
}
.nav-item{
	display: flex;
	align-items: center;
}
/* Horo Banner */
#hero_banner {
    background-color: var(--theme-primary);
}

.slider-container {
    display: flex;
    width: 100%;
    height: 90vh;
    background-size: cover;
    background-position: center;
    transition: background-image 1s ease-in-out;
}

/* Left side: 3D cards */
.l-realise-slider-card-block {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    perspective: 800px;
    position: relative;
}

.card-block-wrap {
    position: relative;
    width: 80%;
    /* height: 350px; */
    aspect-ratio: 1/.7;
    transform-style: preserve-3d;
}

.card {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: all .6s;
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: none;
}

.card.a {
    transform: translate3d(70px, -110px, -50px);
    opacity: .6;
}

.card.b {
    transform: translate3d(130px, 65px, -60px);
    opacity: .2;
}

.card.c {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

.btn-wrap {
    position: absolute;
    bottom: -25%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.btn-wrap .dot_btn {
    width: 25px;
    /* height: 12px; */
    aspect-ratio: 1/1;
    border-radius: 50px;
    background: #aaa;
    opacity: 0.5;
    cursor: pointer;
    transition: .3s;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 17px;
    color: var(--theme-white);
}

.btn-wrap .dot_btn.active {
    background: var(--theme-third);
    opacity: 1;
    transform: scale(1.2);
}

/* Right side: text */
.text-slider {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    backdrop-filter: blur(5px);
}

.text-content {
    max-width: 95%;
    transition: opacity .6s;
}

.text-content h1 {
    /* font-size: 2rem; */
    margin-bottom: 15px;
    color: var(--theme-third);
}

.text-content p {
    /* font-size: 1.1rem; */
    line-height: 1.6;
    color: var(--theme-white);
}

.hidden {
    opacity: 0;
    position: absolute;
    pointer-events: none;
}

.text-slider .custom-btn {
    width: 200px;
    border-radius: 50px;
    white-space: nowrap;
	font-size: 22px;
}

/* footer section */
#footer {
    background-color: var(--theme-primary);
}

.footer_lower {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-social-icon ul {
    /* background-color: var(--theme-fourth); */
}

.footer-social-icon ul li a i {
    font-size: 32px;
    color: var(--theme-third);
    transition: all .3s ease-in-out;
}

.footer-social-icon ul li a i:hover {
    color: var(--theme-white);
    scale: .9;
}

.footer_lower .lower_part ul li a {
    color: var(--theme-white);
    text-decoration: none;
    font-size: 22px;
    position: relative;
    transition: all .3s ease-in-out;

}

.footer_lower .lower_part ul li a::after {
    content: "\f1d8";
    font-family: "Font Awesome 6 Free";
    position: absolute;
    top: 0;
    left: -20px;
    /* transform: translateY(-50%); */
    width: 0;
    height: 2px;
    background: var(--theme-white);
    transition: width 0.3s;
    font-size: 14px;
    font-weight: 900;
    color: var(--theme-third);
    transition: all .3s ease-in-out;
}

.footer_lower .lower_part ul li a:hover::after {
    scale: 1.2;
}

.footer_lower .lower_part ul li a:hover {
    color: #75d438;
}

/* trsuted by */
.trusted_by__card {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 15px;
    transition: all .3s ease-in-out;
    cursor: pointer;
}
#brands-slider .owl-nav {
    width: 103%;
    justify-content: space-between;
    display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 80px;
}
.trusted_by__card:hover {
    transform: translateY(-10px);
    box-shadow: rgba(100, 100, 111, 0.3) 0px 12px 30px 0px;
    border: 1px solid var(--theme-third);
}

.trusted_by__card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    padding: 0px;
    border-radius: 10px;
    /* background-blend-mode: color-burn; */
}

.section__heading a.custom-btn {
    width: 200px;
    border-radius: 50px;
    white-space: nowrap;
	font-size: 22px;
}

/* why us section */
#why_us {
    background-color: var(--theme-primary);
	overflow: hidden;
}

.why_us__card {
    box-shadow: rgba(97, 97, 107, 0.781) 0px 4px 12px 0px;
    border-radius: 15px;
    transition: all .6s ease-in-out;
    cursor: pointer;
    padding: 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.why_us__card:hover,
.why_us__card.active {
    box-shadow: rgba(206, 206, 209, 0.788) 0px 5px 18px 0px;
}

.why_us__card__icon {
    width: 70px;
    height: 70px;
    background-color: var(--theme-third);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    color: var(--theme-white);
    margin: auto;
}

.why_us__card__icon i {
    font-size: 40px;
    font-weight: 900;
}

.card__color {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background-color: var(--theme-third);
    z-index: -1;
    border-radius: 50%;
    transition: all .6s ease-in-out;
}

.why_us__card:hover .card__color,
.why_us__card.active .card__color {
    top: -20%;
    left: 0;
    transform: translate(0, 0);
    width: 200%;
    height: 200%;
    border-radius: 50px;
}

.why_us__card__content {
    transition: all .6s ease-in-out;
}

.why_us__card .why_us__card__content {
color: var(--theme-white);
}
.why_us__card .why_us__card__content p{
    color: var(--theme-white);
    min-height: 100px;
    font-size: 22px;
}
.why_us__card__content h3 {
    min-height: 70px;
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section__heading h2 {
    color: var(--theme-third);
    text-transform: capitalize;
}

/* client testimonial */
#client_testimonials .testimonial {
    margin: 0 10px;
}

#client_testimonials .testimonial .testimonial-content {
    margin: 20px 0 50px 0;
    position: relative;
}

#client_testimonials .testimonial .testimonial-content:after {
    content: "";
    width: 20px;
    height: 20px;
    border-top: 20px solid var(--theme-third);
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    margin: 0 auto;
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
}

#client_testimonials .testimonial .description {
    padding: 25px 35px;
    margin: 0;
    background: var(--theme-third);
    border-radius: 15px;
    color: #fff;
    position: relative;
}

#client_testimonials .testimonial .description:before,
#client_testimonials .testimonial .description:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 8px;
    text-align: center;
    background: var(--theme-third);
    position: absolute;
}

#client_testimonials .testimonial .description:before {
    content: "\f10d";
    top: -18px;
    left: 25px;
}

#client_testimonials .testimonial .description:after {
    content: "\f10e";
    bottom: -18px;
    right: 25px;
}

#client_testimonials .testimonial .testimonial-profile {
    display: table;
    padding: 15px;
    border: 1px solid var(--theme-third);
    border-radius: 20px;
    margin: 0 auto;
    position: relative;
    background-color: var(--theme-primary);
}

#client_testimonials .testimonial .pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid var(--theme-third);
    float: left;
    overflow: hidden;
}

#client_testimonials .testimonial .title {
    display: inline-block;
    margin: 0 0 0 30px;
    /* font-size: 19px; */
    font-weight: bold;
    color: var(--theme-third);
    position: relative;
    top: 22px;
}

#client_testimonials .testimonial .title:before {
    content: "";
    width: 1px;
    height: 70px;
    background: var(--theme-third);
    position: absolute;
    top: -8px;
    left: -15px;
}

#client_testimonials .testimonial .post {
    display: block;
    font-size: 14px;
    font-weight: normal;
    margin-top: 10px;
}

#client_testimonials .owl-theme .owl-controls {
    margin-top: 30px;
}

#client_testimonials .owl-theme .owl-controls .owl-page span {
    background: transparent;
    border: 1px solid var(--theme-third);
    opacity: 1;
}

#client_testimonials .owl-theme .owl-controls .owl-page.active span {
    background: var(--theme-third);
    border: 1px solid var(--theme-third);
}

#client_testimonials .section__heading {
    background-color: var(--theme-primary);
    border-radius: 15px;
    padding: 25px 15px;
}

/* process step */
#process_slide {
    background-color: var(--theme-primary);
	overflow: hidden;
}

.process-step {
    padding: 15px;
    border-radius: 12px;
    background: #f8f9fa;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease-in-out;
    z-index: 1;
    opacity: .8;
}

.process-step::after {
    content: "\f04e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 24px;
    position: absolute;
    bottom: 10px!important;
    right: 5%;
    color: var(--theme-fourth);
    z-index: -1;
    display: none;
    transition: 0.5s ease-in-out;
}

.process-step.active::after {
    display: block;
    transition: 0.5s ease-in-out;
}

.process-step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--theme-third);
    z-index: -1;
    transform: translateX(-100%);
    /* start hidden */
}
#process_slide .theme_btn{
	width: 170px;
	font-size: 22px;
}
/* Active → slide in left → right */
.process-step.active::before {
    animation: slideIn 0.8s forwards;
}

/* Deactivating → continue slide out left → right */
.process-step.deactivating::before {
    animation: slideOut 0.8s forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(100%);
    }
}

.process-step.active {
    color: #fff;
    scale: 1.1;
    opacity: 1;
}

@media (max-width: 991px) {
    .process-step::before {
        transform: translateY(-100%);
    }

    .process-step.active::before {
        animation: slideInY 0.8s forwards;
    }

    .process-step.deactivating::before {
        animation: slideOutY 0.8s forwards;
    }

    @keyframes slideInY {
        from {
            transform: translateY(-100%);
        }

        to {
            transform: translateY(0);
        }
    }

    @keyframes slideOutY {
        from {
            transform: translateY(0);
        }

        to {
            transform: translateY(100%);
        }
    }
}

.process-step .pro_icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid var(--theme-third);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    background-color: var(--theme-second);
}

.process-step .pro_icon i {
    color: var(--theme-white);
    font-size: 36px;
}

.process-step h3 {
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-step p {
    min-height: 170px;
	font-size: 17px;
}

/* accessibility */
.accessibility_img {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

.accessibility_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* trust count */
#trust_count {
    background-color: var(--theme-primary);
}

#trust_count .custom-btn {
    width: 300px;
	font-size: 22px;
}
#trust_count .why_us__card__content p {
  color: var(--theme-white);
  min-height: auto;
  font-size: 22px;
}



/* blogs section */
.blog_card {
    padding: 0 1.7rem;
    /* width: 50%; */
}

.blog_card .wrapper {
    background-color: transparent;
    min-height: 350px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 1.7rem 0;
}

.blog_card .data {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(117, 212, 56, 0) 10%, rgba(117, 212, 56, 0.2) 50%, rgba(117, 212, 56, 0.8) 100%);
    transform: translateY(calc(70px + 1em));
    transition: transform 0.3s;
}

.blog_card .data .content {
    padding: 1em;
    position: relative;
    z-index: 1;
}

.blog_card .author {
    font-size: 14px;
}

.blog_card .title {
    margin-top: 10px;
}

.blog_card .text {
    height: 70px;
    margin: 0;
}
.blog_card .content .text {
  height: auto;
  margin: 0;
}


/* ===== Example 2 styles ===== */
/* .example-2 .wrapper {
    background: url(https://tvseriescritic.files.wordpress.com/2016/10/stranger-things-bicycle-lights-children.jpg) center / cover no-repeat;
} */
.wrappwer_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -5;
}

.wrappwer_image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.65) 80%);
}

.wrappwer_image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.example-2 .wrapper:hover .menu-content span {
    transform: translate(-50%, -10px);
    opacity: 1;
}


.example-2 .data {
    color: var(--theme-white);
    transform: translateY(calc(90px + 3em));
}

.example-2 .title {
    color: var(--theme-white);
    margin-bottom: 20px;
}

.blog_card:hover .data,
.blog_card.active .data {
    transform: translateY(0);
}

/* footer bottom */
.footer_bottom {
    background-color: var(--theme-fourth);
}

.footer_bottom p {
    cursor: pointer;
}

.footer_bottom p a {
    color: #fff;
}

.footer_bottom p:hover a {
    color: var(--theme-white);
    text-decoration: underline !important;
}

/* breadcrumb */
#bread_crumbs {
    background-color: var(--theme-primary);
}

.crumb_wrap h2 {
    color: var(--theme-third);
}

#bread_crumbs .btn__wrap .custom-btn {
    width: 200px;
	font-size: 22px;
}

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* PAGE SERVICES */
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
#accessibility.challanges ul li {
    list-style: disc;
}

#client_testimonials.service_page_testi .section__heading {
    background-color: var(--theme-white);
}

#accessibility.understanding {
    background-color: var(--theme-primary);
}

#all_services .service_details_wrap {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 5px 18px 0px;
    border-radius: 15px;
    transition: all .3s ease-in-out;
}

#all_services .service_details_wrap.active,
#all_services .service_details_wrap:hover {
    box-shadow: rgba(252, 149, 81, 0.2) 0px 7px 29px 0px;
    background-color: var(--theme-third);
    color: var(--theme-white);
}

#all_services .service_details_wrap h3 {
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

#all_services .service_details_wrap p {
    height: 150px;
}

.resources_card {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 5px 18px 0px;
    border-radius: 15px;
    transition: all .3s ease-in-out;
    padding: 15px 20px;
}

.resources_card:hover {
    box-shadow: rgba(252, 149, 81, 0.2) 0px 10px 29px 0px;
    transform: translateY(-10px);
}

.resources_card figure {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.resources_card figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease-in-out;
}

.resources_card:hover figure img {
    transform: scale(1.1);
}

.resources_card h4 {
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center
}

.resources_card p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden
}

/* details page */
.aside_more_services {
    position: sticky;
    top: 10px;
}

.aside_more_services ul li {
    background-color: var(--theme-main-color);
}

.aside_more_services ul li a figure {
    /* flex: 1; */
    width: 100px;
}

.aside_more_services .more_services {
    background-color: var(--theme-primary);
    margin-bottom: 20px;
	font-size: 2dvw;
    padding: 15px 20px;
    color: var(--theme-third);
    border-radius: 15px 15px 0 0;
}

.aside_more_services ul li a figure img {
    width: 100%;
    display: block;
}

.aside_more_services ul li a .text_con {
    flex: 1;
}

.aside_more_services ul li a .text_con h5 {
    height: 60px;
    color: var(--theme-black);
    display: flex;
    align-items: center;
}

.aside_more_services a .text_con p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}

.aside_more_services ul li {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.aside_more_services ul li:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    scale: .98;
    background: var(--theme-third) !important;
    color: var(--theme-white) !important;
}



.aside_more_services ul li:hover a .text_con h5 {
    color: var(--theme-white);

}

.aside_more_services ul li a .text_con p {
    color: var(--theme-black);

}

.aside_more_services ul li:hover a .text_con p {
    color: var(--theme-white);
    font-weight: 400;
}





#neewdhelp{
	padding: 5% 0px;
	background-color: #076cb1;
}
#neewdhelp a{
	color: #8be63c;
}
#neewdhelp h2{
	color: #8be63c;
}
#neewdhelp p{
	font-size: 25px;
	color: #fff;
}
.page_services_detailscontent ul,
.page_services_detailscontent ul li {
    list-style: disc !important;
}

.page_services_detailscontent ul li::marker {
    color: var(--theme-third);
    font-size: 30px;
}


.page_service_image {
    width: 100%;
    height: 100%;
}

.page_service_image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
   margin-bottom: 5%;
}

/* contact us */
.contact_inputs input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.contact_inputs textarea {
    width: 100%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 5px 18px 0px;
}

.contact_inputs input,
.contact_inputs textarea {
    padding: 8px 15px;
    border-radius: 5px;
    border: none;

    transition: all .3s ease-in-out;
    outline: none;
}

.contact_inputs {
    background-color: var(--theme-primary);
    border-radius: 15px;
}

.contact_inputs h2,
.contact_details_wrap h2 {
    color: var(--theme-third);
}

.contact_inputs .custom-btn {
    width: 100%;
}

.contact_inputs input:hover,
.contact_inputs textarea:hover,
.contact_inputs input:focus,
.contact_inputs textarea:focus,
.contact_inputs input:active,
.contact_inputs textarea:active {
    box-shadow: rgba(252, 149, 81, 0.39) 0px 10px 29px 0px;
}

.form-check-label {
    color: var(--theme-white);
    padding-left: 15px;
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
    border: 2px solid var(--theme-third);
    border-radius: 50%;

}



.dropdown-item img {
    filter: brightness(0) saturate(100%) invert(21%) sepia(63%) saturate(3955%) hue-rotate(2deg) brightness(108%) contrast(87%);
    width: 70%;
    height: 70%;
    object-fit: contain;
    /* border-radius: 50%; */
    /* border: 2px solid var(--theme-white); */
}
.l-realise-slider-card-block .btn-wrap{
	bottom: -18%;
}

/* search field */
.serch_row{
	border-bottom: 1px solid #000;
}
.perspectives_card{
	border: 2px solid #d9d9d9;
	padding: 15px;
	border-radius: 15px;
	transition: all .4s ease-in-out;
	
}
.perspectives_card h5{
	color: var(--theme-third);
	transition: all .4s ease-in-out;
	height: 50px;
		display: flex;
	align-items: center;
	margin-top: 0;
}
.perspectives_card:hover{
	transform: translateY(-5px);
	background-color: var(--theme-third);
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	border: none;
}
.perspectives_card:hover h5{
	color: #fff;
}
.search_field inputp{
	width: 70% !important;
	margin: auto;
}
.search_field input, .search_field input:focus{
	outline: none;
	box-shadow: none;
}
.perspectives_card .seperator{
	width:100%;
	height: 1px;
	margin: 5px 0;
	background-color: #d9d9d9;
}
.action-btn{
	color: var(--theme-fourth);
	font-weight: 600;
}
.perspectives_card:hover .action-btn i{
	color: #fff;
}
.form-check-input  {
	border: none !important;
}
.wpcf7-list-item.first.last label{
	display: inline-flex !important;
}




/* responssove */
@media (max-width: 1120px) and (min-width: 992px) {
	.navbar-expand-lg .navbar-nav .nav-link, .navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item{
		font-size: 14px;
	}
	.header_book_btn .custom-btn {
		width: 150px;
	}
}
/* media991 */
@media (max-width: 991px){
	.nav-item {
		display: flex;
		align-items: self-start;
		flex-direction: column;
	}
	.navbar-expand-lg .navbar-nav .dropdown-menu.show{
		display: flex;
		flex-direction: column;
		left: 0;
    transform: translateX(0);
		box-shadow: none;
	}
	#hero_banner {
		overflow: hidden;
	}
	.slider-container{
		flex-direction: column;
		justify-content: space-between;
	}
	.l-realise-slider-card-block {
		width: 100%;
		padding-top: 106px;
		z-index: 99;
	}
	.card-block-wrap {
		height: 390px;
	}
	.text-slider {
		position: relative;
		bottom: 34%;
		z-index: 99;
		left: 10%;
		padding: 15px;
        width: 80%;
	}
	.footer_lower {
		grid-template-columns: repeat(3, 1fr);
	}
	.footer_lower .lower_part ul li a {
		font-size: 15px;
	}
.text-content h1 {
  margin-bottom: 15px;
  color: var(--theme-third);
}







}



/* media767 */
@media (max-width: 767px){
	.footer_lower {
		grid-template-columns: repeat(2, 1fr);
	}
	.designed.d-flex.gap-2.justify-content-end{
		justify-content: center !important;
	}
	.copyright p{
		text-align: center !important;
	}
	.card-block-wrap {
		width: 95%;
	}
	.text-slider .btn__wrap{
		display: none !important;
	}
	#hero_banner {
        height: 80vh;
    }
	#trusted_by .p-3{
		padding: .5rem 1rem !important;
	}
	#trusted_by figure{
		margin: 0;
	}
	#accessibility .section__heading .w-75, #trust_count .section__heading .w-75, #news_section .section__heading .w-75{
		width: 100% !important;
	}
	.text-slider {
        z-index: 99;
        left: 15%;
		width: 80%;
    }
	.l-realise-slider-card-block .btn-wrap {
    	bottom: -30%;
	}
	#bread_crumbs.py-5, .crumb_wrap.py-5 {
		padding-top: 1.5rem !important;
		padding-bottom: 1.5rem !important;
	}
	.bottom-menu {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #f1f1f1;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        display: block;
        /* justify-content: center; */
        z-index: 9999;
    }
	.bottom-menu .bottom_menu_btn, .bottom-menu .bottom_menu_btn2 {
        flex: 1;
        text-align: center;
        font-size: 1rem;
        padding: 10px;
        color: #fff;
        font-weight: 600;
    }
	.bottom-menu .bottom_menu_btn{
		background: var(--theme-fourth);
		border-right: 1px solid #fff;
	}
	.bottom-menu .bottom_menu_btn2{
		background-color: var(--theme-third);
		border-left: 1px solid #fff;
	}
	.bottom-menu .bottom_menu_btn i, .bottom-menu .bottom_menu_btn2 i{
		color: #fd7e14;
	}
	.bottom-menu .bottom_menu_btn:hover, .bottom-menu .bottom_menu_btn2:hover{
		color: #000;
	}
	#bread_crumbs .btn__wrap {
		display: none !important;
	}
	#contact_details .col-lg-6.px-5{
		padding-right: 1rem !important;
    	padding-left: 1rem !important;
	}
	.footer_bottom {
		padding-bottom: 30px;
	}
}

/*  */
.navbar-toggler-icon{
	filter: brightness(0) saturate(100%) invert(44%) sepia(73%) saturate(1841%) hue-rotate(346deg) brightness(120%) contrast(135%);
	width: 2em;
    height: 2em;
}
span.wpcf7-list-item-label {
    width: 400px;
    display: inline-block;
/*     margin-bottom: 30px; */
    position: relative;
    top: 0;
    left: 20px;
    color: #fff;
    font-size: 14px;
}
.form-check {
	margin-bottom: 2rem;
}
.form-check-input{
	background-color: transparent !important;
}

.dropdown-item:focus, .dropdown-item:hover {
    color: var(--bs-dropdown-link-hover-color);
    background-color: transparent;
    scale: 1.05;
}
@media (max-width: 575px){
	
.page_service_image img{
    width: 100%;
    height: 250px;
}

	#hero_banner {
        height: 70vh;
    }
	    .footer_lower {
        grid-template-columns: 1fr;
    }
	.navbar-toggler-icon {
		width: 1.5em;
		height: 1.5em;
	}
}
@media (max-width: 479px){
	#client_testimonials .testimonial .pic{
		width: 70px;
		height: 70px;
	}
	#client_testimonials .testimonial .title{
		top: 7px;
	}
}
.theme_header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
/*   box-shadow: 0 2px 6px rgba(0,0,0,0.1); */
}
.navbar-toggler {
	background: #fff;
}
#contact_details .contact_inputs textarea {
    height: 140px;
}
