@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --white: #fff;
    --black: #000;
    --green: #93967A;
    --darkgreen: #747759;
    --yellow: #EB9A02;
    --light-grey: #D9D9D9;
    --dark-grey: #343332;
    --body-font: "Poppins", sans-serif;
    --heading-font: "Nokora", sans-serif;
}


body,
html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    font-size: 13px;
    font-family: var(--body-font);
    color: var(--dark-grey);
}

p {
    font-size: 13px;
    font-family: var(--body-font);
    color: var(--dark-grey);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    letter-spacing: 0;
}

a,
a:focus {
    text-decoration: none !important;
}
p:last-child{
    margin-bottom: 0 !important;
}
button:focus {
    outline: none !important;
    border: none !important;
}

.btn {
    height: 48px;
    line-height: 48px;
    min-width: 120px;
    font-size: 13px;
    border-radius: 4px;
    text-align: center;
    padding: 0 24px;
    flex-shrink: 0;
    text-transform: capitalize;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--yellow);
    color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.btn-primary:hover .bi,
.btn-primary:focus .bi,
.btn-primary:active .bi {
    color: var(--yellow);
}

.btn-outline {
    background: transparent;
    color: var(--darkgreen);
    border-color: var(--darkgreen);
}

.btn-outline:hover,
.btn-outline:focus,
.btn-outline:active {
    background: var(--darkgreen);
    color: var(--white) !important;
    color: var(--darkgreen);
}
.btn-line{
    height: auto;
    line-height: 1;
    width: fit-content;
    text-decoration: underline !important;
    text-underline-offset: 4px;
    color: var(--green);
    font-weight: 500;
    margin-top: 20px;
}
.btn-round{
    height: 42px;
    line-height: 42px;
    min-width: fit-content;
    padding: 0 !important;
    transition: 0.3s ease-in-out;
}
.btn-round:hover, .btn-round:focus, .btn-round:active{
    transform: rotate(45deg);
}
.btn-round .bi{
    transition: 0.3s ease-in-out;
}
.btn-round:hover .bi, .btn-round:focus .bi, .btn-round:active .bi{
    color: var(--darkgreen) !important;
}

.form-control, select.form-control {
    font-size: 14px;
    background: transparent;
    border-radius: 4px;
    border: 1px solid #a5a5a5;
    min-height: 43px;
    padding: 10px 20px;
    color: var(--black);
    font-weight: 500;
}
.form-control::placeholder, textarea::placeholder{
    color: #8C8C8C;
    text-transform: capitalize;
    font-weight: 400;
    font-size: 13px;
}
textarea {
    width: 100%;
    height: 80px;
    background: transparent;
    border: 1px solid #a5a5a5;
    border-radius: 4px;
    padding: 8px 20px;
    color: var(--orange);
}
.form-control:focus, textarea:focus{
    border-color: var(--orange) !important;
    background: #F5F5F5;
    box-shadow: none;
    outline: none;
}
.form-group{
    position: relative;
    margin-bottom: 1rem;
}
.form-row{
    row-gap: 0 !important;
}

.sec-space {
    padding: 98px 0;
}

.navbar-brand img {
    height: 60px;
    width: auto;
    object-fit: contain;
}
.navbar .menu-item {
    margin-right: 20px;
}
.navbar .menu-item a {
    font-weight: 500;
    margin-right: 12px;
    color: rgb(0 0 0 / 50%);
}

.navbar .menu-item.active a {
    color: var(--black);
}

.section-heading {
    max-width: 80%;
    margin-bottom: 40px;
}

.banner-img {
    position: relative;
    padding-top: 50%;
    z-index: 1;
}

.banner-img img {
    filter: grayscale(1);
}

.banner-img::before,
.myFooter:before {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(92deg, #000000bd, #0000004f);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.banner-img img,
.about-img img,
.service-img img {
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.6s ease-in-out;
}

.banner-wrap {
    width: 100%;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.banner-text {
    max-width: 44%;
    padding-left: 28px;
    border-left: 8px solid var(--yellow);
}

.banner-text h1 {
    font-size: 50px;
    font-weight: 700;
    color: var(--white);
}

.banner-text h1 strong {
    color: var(--yellow);
    font-weight: 700;
}

.banner-text p {
    color: var(--white);
    font-size: 14px;
}
.banner-text .btn-primary:hover, .banner-text .btn-primary:focus, .banner-text .btn-primary:active{
    border-color: var(--yellow);
}
.banner-text .btn-outline{
    border-color: var(--yellow);
    color: var(--yellow);
}
.banner-text .btn-outline:hover, .banner-text .btn-outline:focus, .banner-text .btn-outline:active{
    border-color: var(--darkgreen);
    color: var(--white);
}


/* Stat Bar  */
.stat-bar {
    background: #ffffff40;
    backdrop-filter: blur(8px);
    padding: 28px 0px;
    bottom: 0;
    left: 0;
    z-index: 2;
}

.stat-icon img {
    height: 54px;
    width: 54px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    margin-right: 20px;
}

.stat-box h4 {
    font-size: 28px;
    font-weight: 600;
    font-family: var(--body-font);
    color: var(--white);
    margin-bottom: 2px;
}

.stat-box h4 strong {
    color: var(--yellow);
    font-weight: 500;
}

.stat-box p {
    color: var(--white);
    margin-bottom: 0;
}

/* About  */
.ab-home {
    background: #F6F4F0;
}
.ab-home::before {
    content: "";
    width: 20%;
    height: 100%;
    background: #DFDFD4;
    position: absolute;
    top: 0;
    left: 0;
}
.about-img {
    padding-top: 84%;
    border-radius: 40px;
    overflow: hidden;
}
.ab-home .about-img {
    border-radius: 40px 210px 40px 40px;
}
.about-text h2,
.section-heading h2 {
    font-weight: 700;
    font-size: 42px;
}
.about-text h2 {
    padding-left: 20px;
    border-left: 8px solid var(--yellow);
    margin-bottom: 20px;
}
.ab-home .about-text h2 strong {
    display: block;
}
.about-text h2 strong,
.section-heading h2 strong {
    font-weight: 700;
    color: var(--green);
}
.about-text h6,
.section-heading h6 {
    color: var(--green);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}
.sameheight.owl-carousel .owl-stage {
    display: flex;
    justify-content: center;
}
.sameheight .item {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    padding: 1px;
}

/* Services  */
.service .about-text h2{
    margin-bottom: 0;
}
.service-box,
.project-box {
    border-radius: 12px;
    overflow: hidden;
    background: #F6F4F0;
}
.service-img {
    padding-top: 70%;
    overflow: hidden;
}
.service-img::before{
    content: "";
    height: 120%;
    width: 164px;
    background: #ffffff00;
    filter: blur(4px);
    transform: skewX(-45deg);
    position: absolute;
    top: -2%;
    left: -20%;
    z-index: 1;
    transition: 0.8s ease-in-out;
}
.service-box:hover .service-img::before,
.project-box:hover .service-img::before{
    background: #ffffff40;
    left: 132%;
}
.service-box:hover .service-img img, .project-box:hover .service-img img{
    transform: scale(1.1);
}
.serv-text {
    padding: 20px;
}
.desc {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.serv-text .serv-title,
.project-text .serv-title {
    color: var(--black);
    font-family: var(--heading-font);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 6px;
}


/* Why US  */
.whyus {
    background: #F7F5F1;
}

.whyus-box {
    background: var(--white);
    padding: 32px 16px 26px;
    border: 1px solid #D5D6CB;
    border-radius: 12px;
    transition: 0.3s ease-in-out;
}

.why-icon {
    height: 60px;
    width: 60px;
    z-index: 1;
}

.why-icon img {
    object-fit: contain;
}

.why-icon:before {
    content: "";
    width: 60px;
    height: 60px;
    background: #F7F5F1;
    border-radius: 50%;
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: -1;
}

.why-row {
    margin: 0 -4px;
}

.why-row [class*="col-"] {
    padding: 0 4px;
}

.whyus-box h5 {
    font-size: 15px;
    margin: 20px 0 0;
}

.whyus-box:hover {
    background: var(--green);
}

.whyus-box:hover h5 {
    color: var(--white);
}

.whyus-box:hover .why-icon img {
    filter: brightness(0) invert(1);
}

.whyus-box:hover .why-icon:before {
    background: #F7F5F120;
}

/* Mission  */
.mission.ab-home::before {
    left: auto;
    right: 0;
}

/* projects  */
.projects {
    background: #F7F5F1;
}

.projects .about-text h2 {
    max-width: 70%;
    flex: 0 0 70%;
}

.pro-flex {
    padding: 20px 0 0;
}

.project-box .service-img {
    border-radius: 20px;
    overflow: hidden;
    padding-top: 57%;
}

.pro-flex .bi {
    font-size: 45px;
    color: var(--green);
    flex-shrink: 0;
}

.project-text {
    margin-right: 20px;
}

.badge,
.cat-list li a {
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
    background: var(--yellow);
    padding: 10px 20px;
    border-radius: 40px;
    display: inline-block;
    position: absolute;
    top: 24px;
    right: 24px;
}




.testimonials {
    background: #B8BAA5;
}

.testimonials .section-heading h6 {
    color: var(--white);
}

.quote {
    height: 80px;
    width: 80px !important;
    object-fit: contain;
    object-position: left;
    filter: brightness(0) invert(1);
    opacity: 0.2;
    margin-bottom: 40px;
}

.client-img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}

.test-box {
    background: var(--green);
    padding: 32px 28px;
    border-radius: 12px;
    transition: 0.3s ease-in-out;
}

.test-box h4 {
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
}

.test-box p {
    color: var(--white);
    font-weight: 300;
}

.test-box h5 {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
}

.testimonial-slider .test-box:hover {
    background: var(--white);
}

.testimonial-slider .test-box:hover .quote {
    filter: none;
    opacity: 1;
}

.testimonial-slider .test-box:hover h4,
.testimonial-slider .test-box:hover h5,
.testimonial-slider .test-box:hover p {
    color: var(--black);
}

.testimonial-slider .test-box:hover h4 {
    font-weight: 700;
}

/* .testimonials::before{
    content: "";
    width: 100%;
    height: 82px;
    background: url(../images/line.png) top;
    background-repeat: repeat-x;
    background-size: contain;
    position: absolute;
    top: -6px;
    left: 0;
} */


/* Blogs  */
.blog-box {
    background: #F7F5F1;
    border-radius: 20px;
    padding: 20px;
}

.blog-img {
    position: relative;
    padding-top: 92%;
    border-radius: 12px;
    overflow: hidden;
    z-index: 1;
}

.blog-img img {
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.3s ease-in-out;
}

.blog-img h6 {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.4;
    text-align: center;
    font-family: var(--heading-font);
    color: var(--white);
    background: var(--yellow);
    padding: 20px 12px;
    max-width: 96px;
    position: absolute;
    top: 0;
    right: 20px;
}

.blog-title {
    font-size: 22px;
    line-height: 1.3;
    color: var(--black) !important;
    font-weight: 700;
    font-family: var(--heading-font);
}
.blog-date{
    gap: 8px;
}
.cat-list li a {
    background: #B8BAA542;
    font-size: 10px;
    color: var(--darkgreen);
    position: static;
    padding: 6px 10px;
}

.cat-list li {
    margin-right: 4px;
}

.cat-list {
    row-gap: 8px;
}

.blog-btn::before {
    content: "";
    width: 86%;
    height: 1px;
    background: #B8BAA5;
    position: absolute;
    top: 20px;
    left: 0;
}

/* Support   */
.support::before {
    content: "";
    width: 54%;
    height: 100%;
    background: url(../images/canada-map.png) no-repeat left;
    background-size: contain;
    position: absolute;
    top: 0;
    right: -14%;
}

/* Footer   */
.myFooter .navbar-brand img {
/*     filter: brightness(0) invert(1); */
	height: 100px;
}

.myFooter {
    background-size: cover !important;
    background-attachment: fixed !important;
    padding-top: 90px;
    z-index: 1;
}

.myFooter:before {
    z-index: -1;
    background: #000000de;
}

.myFooter hr {
    background: #ffffff20;
    margin: 60px 0;
}

.myFooter h3 {
    font-family: var(--heading-font);
    color: var(--white);
    font-weight: 500;
    font-size: 20px;
}

.myFooter,
.myFooter p,
.myFooter a {
    color: #969696;
    font-size: 13px;
    font-weight: 400;
}

.myFooter .navbar-nav a {
    padding: 0;
}

.myFooter .navbar-nav .menu-item {
    margin: 4px 0;
}

.myFooter .navbar-nav .menu-item.active a {
    color: var(--yellow);
}

.con-box .bi,
.social-list li .bi {
    display: inline-block;
    flex-shrink: 0;
    height: 40px;
    width: 40px !important;
    background: #ffffff20;
    border-radius: 40px;
    font-size: 16px;
    color: var(--white);
    text-align: center;
    line-height: 40px;
    margin-right: 12px;
}

.con-box h5 {
    font-size: 14px;
    font-family: var(--body-font);
    margin-bottom: 0;
}

.myFooter .contact-list li {
    margin-bottom: 12px;
}

button.send-btn {
    background: var(--yellow);
    border: none;
    font-size: 20px;
    height: 40px;
    width: 40px;
    border-radius: 40px;
    position: absolute;
    top: 3px;
    right: 4px;
}

.myFooter input.form-control {
    background: transparent;
    border-radius: 40px;
    height: 46px !important;
    padding: 0 50px 0 20px;
}

.copyright {
    padding: 20px 0;
    border-top: 1px solid #ffffff20;
    margin-top: 60px;
}

.copyright p {
    margin-bottom: 0;
}

/* Inner Pages  */
.inner-banner {
    padding: 75px 0;
}

.inner-banner {
    background-size: cover !important;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.inner-banner::before {
    content: "";
    background: #0e243ae8;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.inner-banner h2, .inner-banner h1 {
    color: var(--white);
    font-size: 40px;
    font-weight: 700;
}

.inner-banner .breadcrumb {
    background: transparent;
    color: var(--white);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--white);
    content: " // ";
}

.inner-banner .breadcrumb-item a {
    color: var(--white);
    text-decoration: underline !important;
}

.inner-banner .breadcrumb-item {
    color: var(--orange);
}

.banner_area_text_box.text-center {
    max-width: 60%;
    margin: 0 auto;
}

.banner_area_text_box.text-center p {
    color: #fbfbfb87;
}

.product-row {
    row-gap: 20px;
}
.serv-row {
    row-gap: 40px;
}

/* About Page  */
.mission-box{
    background: var(--white);
    padding: 40px 32px;
    border-radius: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    gap: 24px;
}
.serv-icon{
    height: 84px;
    width: 84px;
    flex-shrink: 0;
}
.mission-box .serv-text {
    padding: 0 0 0 20px;
    border-left: 1px solid var(--yellow);
}
.mission-box .serv-text h4{
    font-size: 24px;
    font-weight: 700;
    font-family: var(--heading-font);
    color: var(--yellow);
}
.mission-box:not(:last-child){
    margin-bottom: 20px;
}
.values {
    background: var(--green);
}
.values .section-heading h6::before, .mid-banner .section-heading h6::before{
    filter: brightness(0) invert(1);
}
.value-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 49%;
    height: 100%;
    z-index: 1;
}
.mask1 {
    -webkit-mask-image: url(../images/why-shape.png);
    mask-image: url(../images/why-shape.png);
    mask-size: cover;
    mask-repeat: no-repeat;
    mask-position: right;    
}
.values::before{
    content: "";
    background: url(../images/why-shape.png) no-repeat right;
    background-size: cover;
    filter: brightness(0) invert(1);
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.value-box{
    gap: 12px;
    align-items: center;
}
.value-icon{
    width: 75px;
    height: 75px;
    background: #ffffff24;
    border-radius: 50%;
}
.value-icon img {
    object-fit: contain;
    padding: 16px;
    filter: brightness(0) invert(1);
}
.value-box h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--white);
    font-family: var(--body-font);
}
.values .section-heading h2, .values .section-heading h6,  .value-box p{
    color: var(--white);
}
.value-list .value-box:not(:last-child){
    padding-bottom: 12px;
    border-bottom: 1px solid #ffffff20;
    margin-bottom: 12px;
}
.about-text .con-box .bi {
    color: var(--yellow);
    background: #eb9a022e;
}
.about-text .con-box h5{
    color: var(--black);
}


/* Blog  */
.blog-details-box img {
    border-radius: 10px;
}
.blog-cms .blog-title {
    font-size: 42px;
    margin-bottom: 20px;
}
.blog-content p {
    margin-bottom: 20px;
}
.sidebar-box {
    background: #fff;
}

/* .related-post img {
    height: 220px;
    object-fit: cover;
}
.related-post h5 {
    font-size: 22px;
    line-height: 1.4;
} */
.blog-navigation {
    margin-top: 40px;
}
.blog-navigation a {
    text-decoration: none;
    font-weight: 600;
}
.blog-featured-image{
    position: relative;
    padding-top: 60%;
    border-radius: 20px;
    overflow: hidden;
}
.blog-featured-image img{
    position: absolute;
    top: 0;
    left: 0;
    object-position: center;
}


/* Gallery Page  */
.gallery-img {
    position: relative;
    padding-top: 68%;
    border-radius: 12px;
    overflow: hidden;
    z-index: 1;
}

.gallery-img img {
    position: absolute;
    top: 0;
    left: 0;
    transition: .3s ease-in-out;
}

.gallery-img:hover img {
    transform: scale(1.1);
}

.gallery-img::before {
    content: "";
    width: 100%;
    height: 100%;
    background: #0a24464f;
    backdrop-filter: blur(9px);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 1;
    transition: 0.3s ease-in-out;
}

.gallery-img::after {
    content: "\F4FC";
    font-size: 36px;
    font-family: 'Bootstrap-icons';
    color: var(--white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 1;
    transition: 0.3s ease-in-out;
}

.gallery-img:hover::before,
.gallery-img:hover::after {
    opacity: 1;
}

/* Team */
.team-img{
  position: relative;
  padding-top: 120%;
}
.team-img img{
  position: absolute;
  top: 0;
  left: 0;
}
.team-text {
    background: #747759;
    backdrop-filter: blur(8px);
    padding:20px;
    text-align: center;
    color: var(--white);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 22%;
    transition: 0.3s ease-in-out;
}
.team-box{
    overflow: hidden;
}
.team-box:hover .team-text{
  height: 100%;
  background: #020202c7;
  padding: 26px;
}
.team-text h3{
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  font-family: var(--heading-font);
}
.team-text h6{
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--white);
}
.team-text p{
  color: var(--grey);
  height: 70%;
  overflow-y: auto;
}
.social-list li .bi, .con-box .bi{
    display: block;
    color: var(--white);
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--dark-green);
    font-size: 18px;
}
.social-list li:not(:last-child){
    margin-right: 12px;
}
.social-list li:hover .bi{
    background: var(--orange);
}
.corp-list{
    gap: 20px;
    row-gap: 20px;
}
.corp-list li span{
    display: block;
    color: var(--yellow);
    margin-bottom: 4px;
}
.corp-list li h5{
    font-size: 14px;
}
/* .corp-list li:first-child{
    margin-right: 20px;
    padding-right: 20px;
    border-right: 1px solid var(--green);
} */
.corp-list .con-box .corp-icon{
    height: 60px;
    width: 60px;
    object-fit: contain;
    margin-right: 12px;
    padding-right: 20px;
    border-right: 1px solid var(--yellow);
}
.myFooter .contact-list .corp-icon{
    filter: brightness(0) invert(1);
}

/* Support Page  */
.support-box{
    gap: 20px;
}
.support-icon img{
    height: 60px;
    width: 60px;
    object-fit: contain;
}
.support-text{
    border-left: 1px solid var(--yellow);
    padding-left: 20px;
}
.support-text h5{
    font-size: 18px;
    font-weight: 700;
    font-family: var(--heading-font);
    color: var(--black);
}
.support-list {
    row-gap: 20px;
}
.support-list .support-box{
    padding: 28px 20px;
    background: #F6F4F0;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
}
.support-bg{
    background: #f6f4f0;
}
/*.single-cms,
.single-cms .container,
.single-cms .row,
.single-cms .col-md-6 {
    overflow: visible !important;
}

 .single-cms .sticky-box.stickybar{
    position: fixed !important; 
    width: 43.5%;
    top: 80px;
    transition: 0.3s ease-in-out;
} */
.make-me-sticky {
    position: sticky;
    top: 100px;
}
.make-me-sticky .about-img{
	padding-top: 75%;
	width: 100%;
    display: block;
}
body,
section,
.container,
.row,
.col-md-6,
.sidebar-item,
.make-me-sticky{
    overflow: visible !important;
    transform: none !important;
}