/* ------- Common Style  ------- */
:root {
    --barlow: "Inter", sans-serif;
    --primary: #095945;
    --black: #000000;
    --black24: #202124;
    --greyDC: #DCDCDC;
    --greyF9: #F9F9F9;
    --white: #FFFFFF;
    --blue: #163E84;
    --grey41: #414141;
    --lightBlueBG: #163E841A;
    --lightBlueF5: #F5F5F5;
    --lightBlueF3: #E8ECF3;
}

:focus-visible {
    outline: none;
}

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

body {
    font-family: var(--barlow);
    color: var(--black);
    padding: 0;
}

a,
span {
    display: inline-block;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: all 0.4s;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

ul,
ol {
    list-style-type: none;
    padding: 0;
}

.title-wrapper .title,
.title-wrapper p {
    margin-bottom: 43px;
}

.title-wrapper .title:last-child,
.title-wrapper p:last-child {
    margin-bottom: 0;
}

.light-blue-bg {
    background-color: var(--lightBlueBG);
}

/* ------- End Common Style  ------- */

/* ------- Typography Style  ------- */
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
    margin: 0 0 16px;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child,
ul:last-child,
ol:last-child {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
}

h1,
.h1 {
    font-size: 66px;
    font-weight: 800;
}

h2,
.h2 {
    font-size: 54px;
    font-weight: 700;
}

h3,
.h3 {
    font-size: 26px;
    font-weight: 700;
}

.text-44 {
    font-size: 44px;
}

.text-40 {
    font-size: 40px;
}

.text-38 {
    font-size: 38px;
}

.text-34 {
    font-size: 34px;
}

.text-24 {
    font-size: 24px;
}

.text-20 {
    font-size: 20px;
}

.text-18 {
    font-size: 18px;
}

.text-16 {
    font-size: 16px;
}

p {
    color: var(--grey41);
}

/* ------- End Typography Style  ------- */

/* ------- Spacing Style  ------- */
.pt-160 {
    padding-top: 160px;
}

.pb-160 {
    padding-bottom: 160px;
}

.pt-100 {
    padding-top: 100px;
}

.pt-80 {
    padding-top: 80px;
}

.pb-100 {
    padding-bottom: 100px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mt-60 {
    margin-top: 60px;
}

.mb-60:last-child {
    margin-bottom: 0;
}

.mt-60:first-child {
    margin-top: 0;
}

/* ------- End Spacing Style  ------- */

/* ------- Button Style  ------- */
.solid-btn,
.border-btn {
    font-size: 20px;
    line-height: 1.077;
    font-weight: 500;
    text-align: center;
    border-radius: 16px;
    padding: 18px 30px;
    background-color: var(--primary);
    border: 1px solid transparent;
    color: var(--white);
    cursor: pointer;
    transition: all 0.4s;
}

.solid-btn:hover,
.border-btn {
    color: var(--primary);
    background-color: transparent;
    border-color: var(--primary);
}

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

.btn-white-outline {
    font-size: 20px;
    line-height: 1.077;
    font-weight: 500;
    text-align: center;
    border-radius: 16px;
    padding: 18px 30px;
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    cursor: pointer;
    transition: all 0.4s;
    display: inline-block;
}

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

/* ------- End Button Style  ------- */

/* ------- Header Style  ------- */
.site-header {
    position: sticky;
    padding: 22px 0;
    z-index: 9;
    border-bottom: 1px solid #0000001A;
}

.site-header.sticky {
    animation: HeaderSticky 1s ease forwards;
    background: var(--white);
    box-shadow: 0 10px 10px rgb(0 0 0 / 6%);
}

@keyframes HeaderSticky {
    0% {
        top: -100px;
    }

    100% {
        top: 0;
    }
}

.mobile-menu-head,
.mobile-toggle {
    display: none;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.menu a {
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
    color: var(--black24);
}

.menu a:hover,
.menu a.active {
    color: var(--primary);
}

.menu a.active {
    font-weight: 700;
}

.header-logo img {
    max-width: 232px;
    max-height: 47px;
}

/* ------- End Header Style  ------- */

/* ------- Hero Banner Style  ------- */
.hero-banner {
    background-color: #09594533;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 0 0 60px 60px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.banner-inner {
    max-width: 1860px;
    margin: 0 auto;
    min-height: 812px;
    height: 400px;
}

.banner-inner .content-wrapper h1 {
    margin-bottom: 20px;
}

.banner-inner .content-wrapper p {
    margin-bottom: 40px;
}

.banner-inner .content-wrapper h1:last-child,
.banner-inner .content-wrapper p:last-child {
    margin-bottom: 0;
}

.banner-inner .banner-btn-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.banner-inner .img-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    z-index: -1;
    padding: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.mouse-wrapper {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    margin: auto;
    width: 275px;
    height: 73px;
    background-position: bottom center;
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
}

.mouse-wrapper svg {
    max-width: 24px;
    max-height: 24px;
    animation: 1.5s infinite alternate bounce-animate-x;
}

@keyframes bounce-animate-x {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(10px);
    }
}

/* ------- End Hero Banner Style  ------- */

/* ------- About Style  ------- */
.about-wrapper .image-wrapper img {
    border-radius: 30px;
    width: 100%;
}

/* ------- End About Style  ------- */

/* ------- End-to-End Retrofit Project Management  ------- */
.retrofit-wrapper .head {
    text-align: center;
}

.retrofit-wrapper .head h2 {
    margin-bottom: 20px;
}

.retrofit-wrapper .head p {
    max-width: 1024px;
    margin-inline: auto;
}

.retrofit-wrapper .image-wrapper {
    height: 100%;
}

.retrofit-wrapper .image-wrapper img {
    margin: auto;
}

.retrofit-card {
    padding: 30px;
    border: 1px solid transparent;
    background-color: #F1F1F1;
    border-radius: 30px;
    height: 100%;
    transition: all 0.3s;
}

.retrofit-card:hover {
    border-color: var(--primary);
}

.retrofit-card .top {
    margin-bottom: 52px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.retrofit-card .icon {
    background: #0959451A;
    flex-shrink: 0;
    border-radius: 20px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.retrofit-card:hover .icon {
    background: var(--primary);
}

.retrofit-card .icon img,
.retrofit-card .icon svg {
    max-width: 50px;
    max-height: 50px;
}

.retrofit-card .icon svg path {
    transition: all 0.3s;
}

.retrofit-card:hover svg path {
    fill: var(--white);
}

.retrofit-card h3 {
    margin: 0;
}

/* ------- End End-to-End Retrofit Project Management  ------- */

/* ------- Our Features  ------- */
.feature-card {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    z-index: 1;
}

.feature-card,
.feature-card .conten-wrapper {
    border-radius: 40px;
}

.feature-card .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card .image-wrapper {
    max-height: 515px;
}

.feature-card .conten-wrapper {
    position: absolute;
    bottom: 1px;
    left: 1px;
    right: 1px;
    text-align: center;
    background: #F1F1F1;
    padding: 40px;
}

.feature-card .conten-wrapper,
.feature-card .conten-wrapper h3,
.feature-card .conten-wrapper p {
    transition: all 0.4s;
}

.feature-card:hover .conten-wrapper {
    background: var(--primary);
}

.feature-card:hover .conten-wrapper h3,
.feature-card:hover .conten-wrapper p {
    color: var(--white);
}

.feature-card .conten-wrapper h3 {
    margin-bottom: 10px;
}

/* ------- End Our Features  ------- */

/* ------- How EcohatchWorks  ------- */
.works-card {
    text-align: center;
    z-index: 0;
}

.works-card .icon {
    width: 160px;
    height: 160px;
    border-radius: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #0000004D;
    box-shadow: 0px 0px 30px 0px #00000026;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    position: relative;
}

.works-col:nth-child(1) .works-card .icon::before,
.works-col:nth-child(2) .works-card .icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: calc(100% + 55px);
    bottom: 0;
    margin: auto;
    background-size: contain !important;
    width: 270px;
    height: 38px;
}

.works-col:nth-child(1) .works-card .icon::before {
    background: url('../images/cuv-arrow-right-down.svg') no-repeat center;
}

.works-col:nth-child(2) .works-card .icon::before {
    background: url('../images/cuv-arrow-right-up.svg') no-repeat center;
}

.works-card .icon img,
.works-card .icon svg {
    width: 58px;
    height: 58px;
}

.works-card h3 {
    margin-bottom: 10px;
}

/* ------- End How EcohatchWorks  ------- */

/* ------- Testimonials  ------- */
.testimonials-wrapper {
    overflow: hidden;
}

.testimonial-slider {
    overflow: visible;
}

.testimonial-item {
    background: var(--lightBlueF5);
    border-radius: 20px;
    padding: 50px;
    height: auto;
}

.testimonial-item .head,
.testimonial-item .user,
.testimonial-item .user .user-inner {
    display: flex;
    align-items: center;
    gap: 12px
}

.testimonial-item .user .user-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.testimonial-item .user .sub-text {
    font-weight: 400;
}

.testimonial-item .head {
    justify-content: space-between;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 32px;
    gap: 32px;
}

.testimonial-item .head:last-child {
    margin-bottom: 0;
}

.testimonial-item .head .star {
    max-width: 160px;
    max-height: 24px;
}

.testimonial-item .user {
    font-size: 24px;
    margin: 0;
}

.testimonial-item .user img {
    width: 72px;
    height: 72px;
    border-radius: 100%;
    object-fit: cover;
}

.testimonial-slider-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.testimonial-button-prev,
.testimonial-button-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    position: static;
    border: 1px solid var(--greyDC);
    margin: 0 !important;
    transform: none;
    transition: all 0.3s;
}

.testimonial-button-prev .swiper-navigation-icon,
.testimonial-button-next .swiper-navigation-icon {
    display: none;
}

.testimonial-button-prev svg,
.testimonial-button-next svg {
    width: 30px;
    height: 30px;
}

.testimonial-button-prev svg path,
.testimonial-button-next svg path {
    transition: all 0.2s;
}

.testimonial-button-prev:hover svg path,
.testimonial-button-next:hover svg path {
    fill: var(--white);
}

.testimonial-button-prev:hover,
.testimonial-button-next:hover {
    background-color: var(--primary);
    border-color: var(--white);
}

/* ------- End Testimonials  ------- */

/* ------- Video  ------- */
.video-image {
    position: relative;
    display: inline-flex;
    max-width: 1920px;
    width: 100%;
    z-index: 1;
}

.video-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    opacity: 0.3;
    z-index: -2;
}

.video-image .youtube-video-image {
    margin: auto;
    width: 100%;
    object-fit: cover;
    min-height: 300px;
}

.video-image .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background: var(--primary);
    padding-left: 4px;
    z-index: 0;
}

.video-image .play-btn:hover {
    background: var(--blue);
}

.video-image .play-btn svg {
    max-width: 30px;
    max-height: 30px;
}

/* ------- End Video  ------- */

/* ------- Faqs  ------- */
.faq-item {
    margin-bottom: 40px;
    border-bottom: 1px solid #E5E5E5;
}

.faq-item .faq-title {
    position: relative;
    font-weight: 700;
    padding: 24px 0;
    padding-right: 24px;
    cursor: pointer;
    margin: 0;
    z-index: 1;
}

.faq-item .faq-title::before,
.faq-item .faq-title::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 20px;
    height: 2px;
    background: var(--black);
}

.faq-item .faq-title::after {
    transform: rotate(90deg);
}

.faq-item.active .faq-title::after {
    display: none;
}

.faq-item:last-child {
    margin-bottom: 0;
    border: none;
}

.faq-item .faq-body {
    display: none;
}

.faq-item .faq-body {
    padding-bottom: 24px;
}

/* ------- End Faqs  ------- */

/* ------- Download Now  ------- */
.download-wrapper {
    background: var(--primary);
    color: var(--white);
    border-radius: 40px;
    margin: 0;
}

.download-wrapper .content-wrapper {
    padding: 10px 0 10px 85px;
}

.download-wrapper .content-wrapper h2 {
    margin-bottom: 10px;
}

.download-wrapper .content-wrapper p {
    max-width: 598px;
    color: var(--white);
    margin-bottom: 50px;
}

.download-wrapper .content-wrapper .btn-group {
    gap: 8px;
}

.download-wrapper .image-wrapper img {
    margin-left: auto;
}

/* ------- End Download Now  ------- */

/* ------- Blog  ------- */
.blog-item {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid #00000033;
    height: 100%;
}

.blog-item .image-wrapper {
    overflow: hidden;
}

.blog-item .content-wrapper {
    padding: 20px;
}

.blog-item .image-wrapper:last-child,
.blog-item .content-wrapper .date:last-child,
.blog-item .content-wrapper .title:last-child {
    margin: 0;
}

.blog-item .image-wrapper img {
    width: 100%;
    max-height: 358px;
    object-fit: cover;
    transition: all 0.4s;
}

.blog-item:hover .image-wrapper img {
    transform: scale(1.1);
}

.blog-item .content-wrapper .date,
.blog-item .content-wrapper .title {
    margin-bottom: 10px;
}

.blog-item .content-wrapper .date {
    color: var(--black24);
}

.blog-item .content-wrapper .date strong,
.blog-item .content-wrapper .date b {
    font-weight: 700;
}

.blog-item .content-wrapper .link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--black24);
    font-weight: 500;
}

.blog-item .content-wrapper .link svg path,
.blog-item .content-wrapper .link svg {
    transition: all 0.3s;
}

.blog-item .content-wrapper .link:hover {
    color: var(--primary);
}

.blog-item .content-wrapper .link:hover svg path {
    stroke: var(--primary);
}

.blog-item .content-wrapper .link:hover svg {
    margin-left: 6px;
}

.site-pagination,
.site-pagination li,
.site-pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-pagination {
    gap: 8px;
    flex-wrap: wrap;
}

.site-pagination li a {
    font-size: 20px;
    font-weight: 600;
    width: 48px;
    height: 48px;
    border: 1px solid #F1F1F1;
    color: var(--black);
    border-radius: 100%;
}

.site-pagination li a.active,
.site-pagination li a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.site-pagination li a.dots {
    border-color: transparent;
    pointer-events: none;
}

.site-pagination li a svg path {
    transition: all 0.3s;
}

.site-pagination li a:hover svg path {
    fill: var(--white);
}

.search-bar {
    position: relative;
    max-width: 758px;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: flex-end;
    gap: 10px
}

.search-bar-inner {
    max-width: 498px;
    width: 100%;
}

.search-bar input,
.search-bar .btn-group .search-btn {
    font-size: 18px;
    font-weight: 500;
}

.search-bar input {
    color: var(--black24);
    width: 100%;
    height: 100%;
    border-radius: 16px;
    border: 1px solid #0000001A;
    padding-left: 48px;
    padding-right: 16px;
}

.search-bar input::placeholder {
    opacity: 1;
    color: var(--black24);
}

.search-bar svg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    width: 24px;
    height: 24px;
}

.search-bar svg path {
    stroke: var(--black24);
}

.search-bar .btn-group {
    gap: 10px;
}

.search-bar .btn-group .search-btn {
    padding: 2px 20px;
    border-radius: 16px;
    border: 1px solid var(--primary);
    background: var(--primary);
    color: var(--white);
    height: 100%;
    transition: all 0.3s;
}

.search-bar .btn-group .search-btn:hover {
    background: transparent;
    color: var(--primary);
}

.search-bar .btn-group .clear-btn {
    border-color: #0000001A;
    background: transparent;
    color: var(--black24);
}

.search-bar .btn-group .clear-btn:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.blog-detail-wrapper .content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    height: 100%;
    border: 1px solid #00000033;
    border-radius: 30px;
    background: var(--greyF9);
    padding: 60px;
}

.blog-detail-wrapper .content-wrapper .date {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--black24);
    border-radius: 50px;
    background: var(--white);
    padding: 8px 20px;
}

.blog-detail-wrapper .content-wrapper .date img {
    max-height: 24px;
}

.blog-detail-wrapper .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}


.main-heading {
    font-weight: 600 !important;
    font-size: 54px !important;
}

.conten-wrapper h3 {
    font-weight: 600 !important;
    font-size: 22px !important;
}

.blog-detail-content {
    color: var(--black);
    font-size: 16px;
    line-height: 1.6;
}

.blog-detail-content h1,
.blog-detail-content h2,
.blog-detail-content h3,
.blog-detail-content h4,
.blog-detail-content h5,
.blog-detail-content h6 {
    color: var(--black);
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-detail-content h1 {
    font-size: 32px;
}

.blog-detail-content h2 {
    font-size: 28px;
}

.blog-detail-content h3 {
    font-size: 24px;
}

.blog-detail-content h4 {
    font-size: 20px;
}

.blog-detail-content h5 {
    font-size: 18px;
}

.blog-detail-content h6 {
    font-size: 16px;
}

.blog-detail-content p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.blog-detail-content ul {
    list-style-type: disc;
}

.blog-detail-content ol {
    list-style-type: decimal;
}

.blog-detail-content li {
    font-size: 16px;
    margin-bottom: 8px;
}

.blog-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
    display: block;
}

.blog-detail-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 15px 20px;
    margin: 20px 0;
    background-color: #f9f9f9;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    font-size: 18px;
}

.blog-detail-content a {
    color: var(--primary);
    text-decoration: underline;
}

.blog-detail-content a:hover {
    text-decoration: none;
}

.blog-detail-content *:first-child {
    margin-top: 0;
}

.blog-detail-content *:last-child {
    margin-bottom: 0;
}

/* ------- End Blog  ------- */

/* ------- Our Commitment  ------- */
.our-commitment-wrapper .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 60px;
    min-height: 270px;
}

/* ------- End Our Commitment  ------- */

/* ------- Our Mission & Our Vision  ------- */
.blue-card {
    padding: 60px 45px;
    text-align: center;
    border-radius: 40px;
    height: 100%;
    background: url('../images/blue-card-bg.webp') no-repeat center;
    background-size: cover;
    border: 1px solid #0000001A;
}

.blue-card .icon {
    width: 126px;
    height: 126px;
    border-radius: 100%;
    background: var(--primary);
    margin-inline: auto;
}

.blue-card .icon img {
    max-width: 76px;
    max-height: 76px;
}

.blue-card .title,
.blue-card.contact-card .icon,
.blue-card .icon {
    margin-bottom: 24px;
}

.blue-card.contact-card .icon {
    background: var(--primary);
    border-radius: 30px;
}

.blue-card.contact-card {
    background: #CEDEDA;
    border: 1px solid #00000033;
    border-radius: 30px;
}

.blue-card.contact-card p a {
    color: var(--black);
}

.blue-card.contact-card p a:hover {
    color: var(--primary);
}

/* ------- End Our Mission & Our Vision  ------- */

/* ------- Team  ------- */
.team-card {
    display: flex;
    gap: 40px;
    background: #FAFAFA;
    border: 1px solid #0000004D;
    padding: 30px;
    border-radius: 30px;
}

.team-card .content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.team-card .head,
.s-list,
.s-list li a {
    display: flex;
    align-items: center;
}

.s-list li a path {
    transition: all 0.2s;
}

.s-list li a:hover {
    border-color: var(--primary);
    background: var(--primary);
}

.s-list li a:hover path {
    fill: var(--white);
}

.team-card .top p,
.team-card .head {
    margin-bottom: 30px;
}

.info-list {
    list-style-type: revert;
    padding-left: 20px;
}

.info-list li {
    margin-bottom: 10px;
}

.team-card .top p:last-child,
.team-card .head:last-child {
    margin-bottom: 0;
}

.team-card .head {
    flex-wrap: wrap;
    justify-content: space-between;
}

.team-card .top .head .title {
    margin-bottom: 10px;
}

.team-card .top .head p {
    margin: 0;
}

.team-card .head,
.s-list,
.team-card .content-wrapper {
    gap: 20px;
}

.s-list {
    list-style-type: none;
    padding: 0;
}

.s-list li a {
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 100%;
    border: 1px solid #0000004D;
}

.s-list li {
    margin: 0;
}

.s-list li a svg {
    max-width: 20px;
    max-height: 20px;
}

.team-card .image-wrapper {
    width: 474px;
    height: 474px;
    flex-shrink: 0;
}

.team-card .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.team-modal .modal-dialog {
    max-width: 1224px;
    padding: 0 4px;
}

.team-modal .s-list li a.modal-close svg {
    width: 14px;
    height: 14px;
}

.team-modal .modal-content {
    border-radius: 30px;
}

.team-modal .team-card {
    background: transparent;
    border: none;
}

.team-modal .team-card .image-wrapper {
    display: inline-flex;
    flex-direction: column;
    gap: 24px;
    width: auto;
    height: auto;
}

.team-modal .team-card .image-wrapper img {
    width: 304px;
    height: 304px;
}

.leader-card {
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid #0000001A;
}

.leader-card .image-wrapper,
.leader-card .image-wrapper img {
    width: 100%;
    height: 100%;
    max-height: 462px;
    object-fit: cover;
    border-radius: 30px;
}

.leader-card .content-wrapper {
    padding: 30px;
}

.leader-card .content-wrapper .name {
    margin-bottom: 14px;
}

.leader-card .content-wrapper .top,
.leader-card .content-wrapper .bottom .data-2 {
    margin-bottom: 30px;
}

.leader-card .content-wrapper .bottom .data-2 {
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.leader-card .content-wrapper .top {
    padding-bottom: 30px;
    border-bottom: 1px solid #0000001A;
}

.leader-card .content-wrapper .card-btn {
    width: 100%;
}

/* ------- End Team  ------- */

/* ------- Contacr Us  ------- */
.contact-us-wrapper .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.form-wrapper {
    background: #CEDEDA;
    padding: 60px;
    height: 100%;
    border-radius: 30px;
}

.input-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.input-wrapper label {
    display: block;
    font-weight: 700;
    margin-bottom: 14px;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    font-size: 18px;
    background: var(--white);
    color: var(--black24);
    border: 1px solid transparent;
    border-radius: 16px;
    padding: 14px 30px;
    display: block;
    width: 100%;
}

.input-wrapper input,
.input-wrapper select {
    height: 60px;
}

.input-wrapper textarea:focus,
.input-wrapper input:focus,
.input-wrapper select:focus {
    border-color: var(--primary);
}

.input-wrapper input[type="date"]::-webkit-calendar-picker-indicator,
.input-wrapper select {
    appearance: none;
    background-position: right 20px center;
    background-repeat: no-repeat;
}

.input-wrapper select {
    background-image: url('../images/icon-arrow-down.svg');
    background-size: 24px 24px;
}

.input-wrapper input[type="date"]::-webkit-calendar-picker-indicator {
    background: url('../images/icon-calendar.svg');
    cursor: pointer;
    background-size: contain !important;
}

.input-wrapper select {
    cursor: pointer;
    padding-right: 44px;
}

.input-wrapper textarea {
    border-radius: 10px;
    min-height: 170px;
    resize: vertical;
}

.error {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 1px;
    font-size: 14px;
    line-height: 1.2;
    color: red;
}

/* ------- End Contacr Us  ------- */

/* ------- Login  ------- */
.login-wrapper {
    display: flex;
    height: 100dvh;
}

.login-wrapper .login-left {
    padding: 30px;
    padding-right: 0;
    width: 60%;
}

.login-wrapper .login-right {
    width: 40%;
    max-height: 100dvh;
    overflow-y: auto;
    padding: 60px;
}

.login-wrapper .login-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 60px;
}

.login-wrapper .login-right .login-form {
    max-width: 560px;
    margin: auto;
    width: 100%;
}

.login-wrapper .login-right .head,
.login-wrapper .login-right .logo {
    margin-bottom: 40px;
}

.login-wrapper .login-right .head {
    text-align: center;
}

.login-wrapper .login-right .logo img {
    max-width: 280px;
    max-height: 56px;
}

.login-wrapper .login-right .head .title {
    margin-bottom: 4px;
}

.login-wrapper .login-right .head:last-child,
.login-wrapper .login-right .head .title:last-child {
    margin: 0;
}

.login-wrapper .login-right .input-wrapper {
    margin-bottom: 24px;
}

.login-wrapper .login-right .input-wrapper:last-child {
    margin-bottom: 0;
}

.login-wrapper .login-right .input-wrapper input {
    border-color: #00000033;
    padding-left: 60px;
}

.input-wrapper.password-wrapper input {
    padding-right: 46px;
}

.login-wrapper .login-right .input-wrapper label {
    margin-bottom: 10px;
}

.login-wrapper .login-right .input-wrapper svg,
.password-wrapper .icon-eye {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.login-wrapper .login-right .input-wrapper svg {
    left: 20px;
}

.password-wrapper .icon-eye {
    right: 20px;
    cursor: pointer;
}

.password-wrapper .icon-eye .icon-eye-open,
.password-wrapper.show .icon-eye .icon-eye-close {
    display: none;
}

.password-wrapper.show .icon-eye .icon-eye-open {
    display: block;
}

.login-wrapper .login-right .input-wrapper input:focus {
    border-color: var(--primary);
}

.login-wrapper .login-right .form-btn {
    padding-top: 16px;
}

/* ------- End Login  ------- */

/* ------- Our Culture  ------- */
.our-culture-wrapper .image-wrapper {
    padding: 0;
}

.our-culture-wrapper .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.our-culture-wrapper .image-wrapper img,
.our-culture-row {
    border-radius: 30px;
}

.our-culture-row {
    background: #0959451A;
    border: 1px solid var(--black);
    margin: 0;
}

.our-culture-wrapper .title-wrapper {
    padding: 60px;
}

.banner-wrapper .image-wrapper,
.banner-wrapper .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-wrapper .image-wrapper img {
    border-radius: 30px;
}

/* ------- End Our Culture  ------- */

/* ------- Retrofits Are Critical - But the Process Is Broken  ------- */
.retrofits-content-wrapper.title-wrapper .center-data {
    margin-bottom: 43px;
}

.retrofits-content-wrapper.title-wrapper p {
    margin-bottom: 24px;
}

.retrofits-content-wrapper.title-wrapper .center-data:last-child,
.retrofits-content-wrapper.title-wrapper p:last-child,
.retrofits-content-wrapper.title-wrapper ul li:last-child {
    margin-bottom: 0;
}

.retrofits-content-wrapper.title-wrapper ul li {
    position: relative;
    color: var(--grey41);
    padding-left: 36px;
    margin-bottom: 16px;
}

.retrofits-content-wrapper.title-wrapper ul li::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    background: url('../images/icon-arrow-right.svg') no-repeat center;
    background-size: contain;
    width: 24px;
    height: 24px;
}

/* ------- End Retrofits Are Critical - But the Process Is Broken  ------- */

/* ------- Award  ------- */
.award-content {
    text-align: center;
}

.award-content img,
.award-content svg {
    max-width: 100px;
    max-height: 100px;
    margin-bottom: 24px;
}

.award-content .title {
    margin-bottom: 14px;
}

.award-content img,
.award-content svg,
.award-content p {
    margin-left: auto;
    margin-right: auto;
}

.award-content p {
    max-width: 457px;
}

/* ------- End Award  ------- */

/* ------- Footer  ------- */
.site-footer {
    background: var(--black);
    color: var(--white);
}

.footerlogo {
    width: 100%;
    margin-bottom: 40px;
}

.footerinfo {
    width: 100%;
    max-width: 570px;
    padding-right: 25px;
}

.site-footer h4 {
    font-size: 24px;
    font-weight: 600;
    text-transform: none;
    color: var(--white);
    margin-bottom: 20px;
}

.site-footer ul li {
    font-size: 18px;
    margin-bottom: 10px;
}

.site-footer ul li a {
    color: var(--white);
}

.site-footer ul li a:hover,
.site-footer ul li a.active {
    text-decoration: underline;
}

.footercopyinfo {
    border-top: 1px rgba(255, 255, 255, 0.2) solid;
    padding: 24px 0;
}

.social-list {
    display: block;
    margin-bottom: 0 !important;
}

.social-list li {
    display: inline-flex;
    margin-left: 20px;
    margin-bottom: 0;
    vertical-align: middle;
}

.social-list li:first-child {
    margin-left: 0;
}

.social-list li {
    margin-bottom: 0;
}

.social-list li a {
    display: block;
}

.social-list li img {
    width: 40px;
    height: auto;
}

.site-footer .social-list li {
    margin-bottom: 0;
}

.site-footer .social-list {
    text-align: right;
}

/* ------- End Footer  ------- */

/* ------- Responsive Style  ------- */
@media (min-width: 1600px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1600px;
    }
}

@media (max-width: 1600px) {

    .text-24,
    .text-20,
    .solid-btn,
    .border-btn {
        font-size: 18px;
    }

    .menu {
        gap: 30px;
    }

    .menu a {
        font-size: 16px;
    }

    .text-44 {
        font-size: 40px;
    }

    .pt-160 {
        padding-top: 120px;
    }

    .pb-160 {
        padding-bottom: 120px;
    }

    .mb-60 {
        margin-bottom: 50px;
    }

    .mt-60 {
        margin-top: 50px;
    }

    .banner-inner .content-wrapper p {
        margin-bottom: 30px;
    }

    .solid-btn,
    .border-btn {
        padding: 16px 30px;
    }

    .banner-inner {
        min-height: calc(100dvh - 100px);
    }

    .mouse-wrapper {
        width: 218px;
        height: 62px;
    }

    .title-wrapper .title,
    .title-wrapper p,
    .retrofits-content-wrapper.title-wrapper .center-data {
        margin-bottom: 30px;
    }

    .retrofits-content-wrapper.title-wrapper p {
        margin-bottom: 20px;
    }

    .retrofits-content-wrapper.title-wrapper ul li {
        margin-bottom: 10px;
    }

    .retrofit-card {
        padding: 20px;
    }

    .retrofit-card .top {
        margin-bottom: 24px;
        gap: 16px;
    }

    .retrofit-card .icon,
    .works-card .icon {
        width: 80px;
        height: 80px;
    }

    .retrofit-card .icon img,
    .works-card .icon img,
    .retrofit-card .icon svg,
    .works-card .icon svg {
        width: 40px;
        height: 40px;
    }

    .testimonial-item {
        padding: 40px;
    }

    .testimonial-item .head {
        margin-bottom: 28px;
        gap: 28px;
    }

    .testimonial-slider-arrows {
        gap: 10px;
    }

    .testimonial-button-prev,
    .testimonial-button-next {
        width: 50px;
        height: 50px;
    }

    .testimonial-button-prev svg,
    .testimonial-button-next svg {
        width: 20px;
        height: 20px;
    }

    .download-wrapper .content-wrapper {
        padding: 10px 0 10px 40px;
    }

    .download-wrapper .content-wrapper p {
        margin-bottom: 30px;
    }

    .blog-detail-wrapper .content-wrapper {
        padding: 40px;
    }

    .form-wrapper {
        padding: 40px;
    }

    .login-wrapper .login-right {
        padding: 40px;
    }

    .login-wrapper .login-right .login-form {
        max-width: 100%;
    }

    .login-wrapper .login-right .head,
    .login-wrapper .login-right .logo {
        margin-bottom: 24px;
    }

    .feature-card .conten-wrapper {
        padding: 30px;
    }

    .works-card .icon {
        margin-bottom: 20px;
    }

    .works-col:nth-child(1) .works-card .icon::before,
    .works-col:nth-child(2) .works-card .icon::before {
        width: 245px;
        height: 35px;
    }

    .leader-card .content-wrapper {
        padding: 16px;
    }

    .leader-card .content-wrapper .top,
    .leader-card .content-wrapper .bottom .data-2 {
        margin-bottom: 16px;
    }

    .leader-card .content-wrapper .top {
        padding-bottom: 16px;
    }

    .leader-card .content-wrapper .name {
        margin-bottom: 10px;
    }

    .our-culture-wrapper .title-wrapper {
        padding: 30px;
    }

    .blue-card {
        padding: 30px;
    }
}

@media (max-width: 1400px) {

    .text-24,
    .text-20,
    .solid-btn,
    .border-btn,
    .text-18 {
        font-size: 16px;
    }

    h1,
    .h1 {
        font-size: 50px;
    }

    h2,
    .h2 {
        font-size: 46px;
    }

    .text-44,
    .text-40 {
        font-size: 36px;
    }

    .text-38 {
        font-size: 34px;
    }

    .text-34 {
        font-size: 30px;
    }

    h3,
    .h3 {
        font-size: 24px;
    }

    .pt-160 {
        padding-top: 100px;
    }

    .pb-160 {
        padding-bottom: 100px;
    }

    .mb-60 {
        margin-bottom: 40px;
    }

    .mt-60 {
        margin-top: 40px;
    }

    .site-header {
        padding: 20px 0;
    }

    .menu {
        gap: 24px;
    }

    .title-wrapper .title,
    .title-wrapper p,
    .retrofits-content-wrapper.title-wrapper .center-data {
        margin-bottom: 24px;
    }

    .retrofits-content-wrapper.title-wrapper p {
        margin-bottom: 16px;
    }

    .retrofits-content-wrapper.title-wrapper ul li {
        margin-bottom: 6px;
    }

    .testimonial-item {
        padding: 20px;
    }

    .testimonial-item .head {
        margin-bottom: 16px;
        gap: 16px;
    }

    .testimonial-slider-arrows,
    .testimonial-item .user {
        gap: 8px;
    }

    .testimonial-item .user {
        font-size: 20px;
    }

    .testimonial-button-prev,
    .testimonial-button-next {
        width: 40px;
        height: 40px;
    }

    .testimonial-button-prev svg,
    .testimonial-button-next svg {
        width: 18px;
        height: 18px;
    }

    .testimonial-item .user img {
        width: 54px;
        height: 54px;
    }

    .testimonial-item .head .star {
        max-width: 110px;
        max-height: 18px;
    }

    .faq-item {
        margin-bottom: 16px;
    }

    .faq-item .faq-title {
        padding: 16px 0;
        padding-right: 18px;
    }

    .faq-item .faq-title::before,
    .faq-item .faq-title::after {
        width: 12px;
    }

    .faq-item .faq-body {
        padding-bottom: 16px;
    }

    .download-wrapper .content-wrapper p {
        margin-bottom: 20px;
    }

    .download-wrapper .content-wrapper .btn-group img {
        max-width: 150px;
    }

    .site-footer h4 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .site-footer ul li a br {
        display: none;
    }

    .site-pagination li a {
        font-size: 14px;
        width: 36px;
        height: 36px;
    }

    .site-pagination {
        gap: 4px;
    }

    .site-pagination li a svg {
        max-height: 20px;
    }

    .blog-detail-wrapper .content-wrapper {
        padding: 24px;
        gap: 10px;
    }

    .blog-detail-wrapper .content-wrapper .date {
        padding: 8px 14px;
        gap: 6px;
        margin-bottom: 10px;
    }

    .blog-detail-content p {
        font-size: 16px;
    }

    .blog-detail-content h3,
    .blog-detail-content h4,
    .blog-detail-content h5,
    .blog-detail-content h6,
    .blog-detail-content p,
    .blog-detail-content ul,
    .blog-detail-content ol {
        margin-bottom: 10px;
    }

    .blog-detail-content ul li,
    .blog-detail-content ol li {
        margin-bottom: 6px;
    }

    .blog-detail-content h3:last-child,
    .blog-detail-content h4:last-child,
    .blog-detail-content h5:last-child,
    .blog-detail-content h6:last-child,
    .blog-detail-content p:last-child,
    .blog-detail-content ul:last-child,
    .blog-detail-content ol:last-child,
    .blog-detail-content ul li:last-child,
    .blog-detail-content ol li:last-child {
        margin-bottom: 0;
    }

    .blue-card {
        padding: 20px;
    }

    .team-card {
        padding: 24px;
        gap: 24px;
    }

    .team-card .head,
    .s-list,
    .team-card .content-wrapper {
        gap: 10px;
    }

    .team-card .top p,
    .team-card .head {
        margin-bottom: 16px;
    }

    .team-card .top .head .title {
        margin-bottom: 4px;
    }

    .s-list li a {
        width: 36px;
        height: 36px;
    }

    .s-list li a svg {
        width: 16px;
        height: 16px;
    }

    .team-card .image-wrapper {
        width: 350px;
        height: 350px;
    }

    .blue-card.contact-card .title,
    .blue-card.contact-card .icon {
        margin-bottom: 16px;
    }

    .blue-card.contact-card .icon {
        width: 100px;
        height: 100px;
    }

    .blue-card.contact-card .icon img {
        width: 30px;
        height: 30px;
    }

    .input-wrapper input,
    .input-wrapper select,
    .input-wrapper textarea {
        font-size: 16px;
        padding: 12px 20px;
    }

    .input-wrapper input,
    .input-wrapper select {
        height: 51px;
    }

    .form-wrapper {
        padding: 30px;
    }

    .error {
        font-size: 13px;
    }

    .input-wrapper label {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .input-wrapper select {
        background-position: right 14px center;
        background-size: 20px 20px;
        padding-right: 32px;
    }

    .login-wrapper .login-left {
        padding: 12px;
        padding-right: 0;
    }

    .login-wrapper .login-left img {
        border-radius: 30px;
    }

    .login-wrapper .login-right {
        padding: 30px;
    }

    .login-wrapper .login-right .form-btn {
        padding-top: 6px;
    }

    .hero-banner {
        border-radius: 0 0 30px 30px;
    }

    .feature-card,
    .feature-card .conten-wrapper {
        border-radius: 30px;
    }

    .feature-card .conten-wrapper {
        padding: 20px;
    }

    .feature-card .conten-wrapper h3 {
        font-size: 20px;
    }

    .works-col:nth-child(1) .works-card .icon::before,
    .works-col:nth-child(2) .works-card .icon::before {
        width: 180px;
        height: 30px;
    }

    .search-bar {
        height: 50px;
        gap: 6px;
    }

    .search-bar .btn-group {
        gap: 6px;
    }

    .our-culture-wrapper .title-wrapper {
        padding: 20px;
    }
}

@media (max-width: 1199px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 100%;
    }

    h1,
    .h1 {
        font-size: 46px;
    }

    h2,
    .h2 {
        font-size: 40px;
    }

    .text-44,
    .text-40 {
        font-size: 30px;
    }

    .text-38 {
        font-size: 28px;
    }

    .text-34 {
        font-size: 26px;
    }

    .pt-160,
    .pt-100 {
        padding-top: 80px;
    }

    .pb-160,
    .pb-100 {
        padding-bottom: 80px;
    }

    .mb-60 {
        margin-bottom: 24px;
    }

    .mt-60 {
        margin-top: 24px;
    }

    .header-logo img {
        max-width: 160px;
        max-height: 33px;
    }

    .menu {
        gap: 16px;
    }

    .menu a {
        font-size: 15px;
    }

    .site-header {
        padding: 12px 0;
    }

    .solid-btn,
    .border-btn {
        padding: 16px 20px;
    }

    .banner-inner {
        min-height: calc(100dvh - 85px);
        text-align: center;
    }

    .banner-inner .banner-btn-group {
        justify-content: center;
        gap: 6px;
    }

    .title-wrapper .title,
    .title-wrapper p,
    .retrofits-content-wrapper.title-wrapper .center-data {
        margin-bottom: 20px;
    }

    .retrofit-card {
        padding: 16px;
    }

    .download-wrapper .content-wrapper {
        padding: 10px 0 10px 30px;
    }

    .blog-item .content-wrapper .date,
    .blog-item .content-wrapper .title {
        margin-bottom: 6px;
    }

    .blog-item .content-wrapper {
        padding: 14px;
    }

    .site-footer ul li {
        font-size: 16px;
    }

    .our-commitment-wrapper .image-wrapper img {
        border-radius: 30px;
    }

    .blue-card .title {
        margin-bottom: 8px;
    }

    .blue-card .icon {
        margin-bottom: 10px;
    }

    .blue-card .icon {
        width: 80px;
        height: 80px;
    }

    .blue-card .icon img {
        width: 40px;
        height: 40px;
    }

    .blue-card {
        padding: 24px;
        border-radius: 30px;
    }

    .input-wrapper input,
    .input-wrapper select,
    .input-wrapper textarea {
        font-size: 14px;
    }

    .input-wrapper {
        margin-bottom: 20px;
    }

    .form-wrapper {
        padding: 20px;
    }

    .login-wrapper .login-left,
    .login-wrapper .login-right {
        width: 50%;
    }

    .login-wrapper .login-right .logo img {
        max-width: 180px;
    }

    .banner-inner .img-wrapper {
        opacity: 0.3;
    }

    .retrofit-card .icon,
    .works-card .icon {
        width: 60px;
        height: 60px;
    }

    .retrofit-card .icon img,
    .works-card .icon img,
    .retrofit-card .icon svg,
    .works-card .icon svg {
        width: 30px;
        height: 30px;
    }

    .retrofit-card .top {
        gap: 10px;
        margin-bottom: 16px;
    }

    .works-col:nth-child(1) .works-card .icon::before,
    .works-col:nth-child(2) .works-card .icon::before {
        display: none;
    }

    .award-content img,
    .award-content svg {
        margin-bottom: 16px;
    }
}

@media (max-width: 991px) {

    .text-24,
    .text-20,
    .solid-btn,
    .border-btn,
    .text-18,
    .menu a {
        font-size: 14px;
    }

    h1,
    .h1 {
        font-size: 40px;
    }

    h2,
    .h2 {
        font-size: 36px;
    }

    .text-44,
    .text-40 {
        font-size: 24px;
    }

    .text-38 {
        font-size: 22px;
    }

    .text-34 {
        font-size: 20px;
    }

    h3,
    .h3 {
        font-size: 20px;
    }

    .pt-160,
    .pt-100,
    .pt-80 {
        padding-top: 60px;
    }

    .pb-160,
    .pb-100 {
        padding-bottom: 60px;
    }

    .mb-60 {
        margin-bottom: 20px;
    }

    .mt-60 {
        margin-top: 20px;
    }

    .menu-col {
        width: 0;
        max-width: 0;
        position: absolute;
    }

    .menu-open {
        overflow: hidden;
    }

    .header-action {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .solid-btn,
    .border-btn {
        padding: 11px 24px;
        line-height: 1.143;
    }

    .mobile-toggle {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 100%;
        background: var(--primary);
    }

    .mobile-toggle::before,
    .mobile-toggle::after {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 50%;
        height: 2px;
        background: var(--white);
    }

    .mobile-toggle::before {
        top: 11px;
    }

    .mobile-toggle::after {
        bottom: 11px;
    }

    .mobile-toggle i {
        width: 50%;
        height: 2px;
        background: var(--white);
    }

    .menu-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        margin: 0;
        background: var(--white);
        max-width: 320px;
        width: 100%;
        height: 100dvh;
        z-index: 9;
        transition: all 0.4s;
    }

    .menu-open .menu-wrapper {
        left: 0;
    }

    .menu-wrapper::before {
        content: '';
        position: fixed;
        top: 0;
        left: 320px;
        bottom: 0;
        width: calc(100% - 320px);
        background-color: var(--black);
        opacity: 0;
        visibility: hidden;
        transition: all 0s;
        z-index: -1;
    }

    .menu-open .menu-wrapper::before {
        opacity: 0.3;
        visibility: visible;
        transition: all 3.6s;
    }

    .mobile-menu-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px;
        border-bottom: 1px solid #dfdfdf;
    }

    .mobile-menu-logo img {
        max-width: 140px;
        max-height: 33px;
    }

    .mobile-menu-close {
        position: relative;
        width: 24px;
        height: 24px;
        cursor: pointer;
    }

    .mobile-menu-close::before,
    .mobile-menu-close::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        width: 100%;
        height: 2px;
        background-color: var(--primary);
    }

    .mobile-menu-close::before {
        transform: rotate(-45deg);
    }

    .mobile-menu-close::after {
        transform: rotate(45deg);
    }

    .menu {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
        justify-content: flex-start;
        max-height: calc(100dvh - 57px);
        overflow-y: auto;
    }

    .menu a {
        display: block;
        width: 100%;
        padding: 10px 16px;
        border-bottom: 1px solid #dfdfdf;
    }

    .banner-inner {
        height: auto;
        min-height: 400px;
    }

    .banner-inner .content-wrapper h1,
    .banner-inner .content-wrapper p {
        margin-bottom: 16px;
    }

    .title-wrapper .title,
    .title-wrapper p,
    .retrofits-content-wrapper.title-wrapper .center-data {
        margin-bottom: 16px;
    }

    .download-wrapper .content-wrapper {
        padding: 16px 16px 0
    }

    .download-wrapper .image-wrapper img {
        margin: auto;
    }

    .retrofit-card h3 {
        font-size: 16px;
    }

    .testimonial-item .user {
        font-size: 18px;
    }

    .footerlogo {
        margin-bottom: 24px;
    }

    .site-footer ul li {
        font-size: 14px;
    }

    .footercopyinfo {
        padding: 12px 0;
    }

    .search-bar {
        max-width: 100%;
    }

    .search-bar input,
    .search-bar .btn-group .search-btn {
        font-size: 14px;
    }

    .search-bar {
        height: 46px;
    }

    .search-bar svg {
        left: 14px;
        width: 18px;
        height: 18px;
    }

    .search-bar-inner {
        max-width: 100%;
    }

    .search-bar input {
        padding-left: 36px;
        padding-right: 188px;
    }

    .blog-detail-wrapper .content-wrapper {
        padding: 20px
    }

    .blog-detail-content p {
        font-size: 14px;
    }

    .team-card .head {
        flex-direction: column;
        align-items: flex-start;
    }

    .team-card .top p,
    .team-card .head {
        margin-bottom: 10px;
    }

    .team-card {
        padding: 16px;
        gap: 16px
    }

    .team-card .image-wrapper {
        width: 300px;
        height: 300px;
    }

    .team-modal .team-card .head {
        flex-direction: row;
        align-items: center;
    }

    .team-modal .team-card .image-wrapper img {
        width: 250px;
        height: 250px;
    }

    .team-modal .team-card .image-wrapper {
        gap: 10px;
    }

    .input-wrapper input,
    .input-wrapper select {
        height: 44px;
    }

    .login-wrapper .login-right {
        padding: 16px 24px;
    }

    .leader-card .content-wrapper {
        padding: 14px;
    }

    .leader-card .content-wrapper .top,
    .leader-card .content-wrapper .bottom .data-2 {
        margin-bottom: 10px;
    }

    .leader-card .content-wrapper .top {
        padding-bottom: 10px;
    }

    .leader-card .content-wrapper .name {
        margin-bottom: 6px;
    }

    .award-content img,
    .award-content svg,
    .award-content .title {
        margin-bottom: 10px;
    }

    .award-content .title {
        font-size: 18px;
    }

}

@media (max-width: 767px) {

    h1,
    .h1 {
        font-size: 34px;
    }

    h2,
    .h2 {
        font-size: 28px;
    }

    .text-44,
    .text-40 {
        font-size: 22px;
    }

    .text-38,
    .text-34 {
        font-size: 20px;
    }

    .pt-160,
    .pt-100,
    .pt-80 {
        padding-top: 40px;
    }

    .pb-160,
    .pb-100 {
        padding-bottom: 40px;
    }

    .mb-60 {
        margin-bottom: 16px;
    }

    .mt-60 {
        margin-top: 16px;
    }

    .header-logo img {
        max-width: 120px;
        max-height: 30px;
    }

    .banner-inner {
        position: relative;
        padding: 50px 10px;
        background-position: right -112px center;
        min-height: 400px;
        overflow: hidden;
        z-index: 1;
    }

    .site-banner .banner-inner {
        min-height: 220px;
    }

    .mouse-wrapper {
        width: 148px;
        height: 40px;
    }

    .mouse-wrapper svg {
        max-width: 16px;
        max-height: 16px;
    }

    .banner-inner .content-wrapper {
        text-align: center;
    }

    .banner-inner .content-wrapper h1,
    .banner-inner .content-wrapper p {
        margin-bottom: 8px;
    }

    .title-wrapper .title,
    .title-wrapper p,
    .retrofits-content-wrapper.title-wrapper .center-data,
    .retrofits-content-wrapper.title-wrapper p {
        margin-bottom: 14px;
    }

    .testimonial-item .user img {
        width: 40px;
        height: 40px;
    }

    .testimonial-item .head {
        margin-bottom: 10px;
        gap: 10px;
    }

    .testimonial-item .head .star {
        max-width: 90px;
    }

    .video-image .play-btn {
        width: 46px;
        height: 46px;
    }

    .video-image .play-btn svg {
        width: 20px;
        height: 20px;
    }

    .video-image .youtube-video-image {
        min-height: 250px;
    }

    .faq-item .faq-title {
        padding-top: 10px;
        padding-bottom: 10px;
        line-height: 1.3;
    }

    .faq-item .faq-body {
        padding-bottom: 10px;
    }

    .download-wrapper .content-wrapper p,
    .download-wrapper .content-wrapper h2 {
        margin-bottom: 8px;
    }

    .download-wrapper .content-wrapper .btn-group img {
        max-width: 120px;
        max-height: 40px;
    }

    .blog-item .content-wrapper {
        padding: 10px;
    }

    .site-footer .social-list,
    .footercopyinfo {
        text-align: center;
    }

    .site-footer ul li {
        margin-bottom: 4px;
    }

    .site-pagination li a {
        font-size: 12px;
        width: 24px;
        height: 24px;
    }

    .site-pagination li a svg {
        max-height: 16px;
    }

    .search-bar .btn-group .search-btn {
        padding: 2px 10px;
        font-size: 12px;
    }

    .search-bar input {
        padding-right: 136px;
    }

    .social-list li {
        margin-left: 12px;
    }

    .blog-detail-wrapper .content-wrapper {
        padding: 16px;
    }

    .blog-detail-wrapper .content-wrapper .date img {
        max-height: 18px;
    }

    .blog-detail-wrapper .content-wrapper .date {
        padding: 4px 12px;
        gap: 2px;
    }

    .social-list li img {
        width: 30px;
    }

    .blog-detail-content h3 {
        font-size: 20px;
    }

    .blog-detail-content h4 {
        font-size: 18px;
    }

    .blog-detail-content h5,
    .blog-detail-content h6 {
        font-size: 16px;
    }

    .blog-detail-content h3,
    .blog-detail-content h4,
    .blog-detail-content h5,
    .blog-detail-content h6,
    .blog-detail-content p,
    .blog-detail-content ul,
    .blog-detail-content ol {
        margin-bottom: 8px;
    }

    .blog-detail-content ul li,
    .blog-detail-content ol li {
        margin-bottom: 4px;
    }

    .blue-card {
        padding: 16px;
    }

    .team-card {
        flex-direction: column-reverse;
        padding: 10px;
    }

    .team-card .image-wrapper {
        width: 100%;
        height: auto;
    }

    .team-modal .team-card {
        flex-direction: column;
        padding: 16px;
    }

    .team-modal .s-list li a.modal-close {
        position: absolute;
        top: 10px;
        right: 10px;
        background: var(--white);
    }

    .team-modal .s-list li a.modal-close path {
        fill: var(--black);
    }

    .team-modal .team-card .head {
        gap: 0;
    }

    .team-modal .team-card .image-wrapper img {
        width: 100%;
        height: 300px;
        object-position: top;
    }

    .blue-card.contact-card .title,
    .blue-card.contact-card .icon {
        margin-bottom: 6px;
    }

    .blue-card.contact-card .icon {
        width: 60px;
        height: 60px;
    }

    .blue-card.contact-card .icon img {
        width: 26px;
        height: 26px;
    }

    .form-wrapper {
        padding: 16px;
    }

    .input-wrapper label {
        font-size: 12px;
    }

    .login-wrapper .login-left {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 0;
        z-index: -1;
    }

    .login-wrapper {
        padding: 16px;
    }

    .login-wrapper .login-left img {
        border-radius: 0;
    }

    .login-wrapper .login-right {
        max-width: 100%;
        width: 100%;
        margin: auto;
        background: var(--white);
        border-radius: 30px;
        padding: 14px;
        max-height: inherit;
        overflow-y: hidden;
    }

    .login-wrapper .login-right .head {
        margin-bottom: 20px;
    }

    .login-wrapper .login-right .logo {
        margin-bottom: 16px;
    }

    .login-wrapper .login-right .logo img {
        max-width: 140px;
    }

    .login-wrapper .login-right .input-wrapper {
        margin-bottom: 20px;
    }

    .login-wrapper .login-right .input-wrapper svg {
        left: 14px;
        width: 18px;
        height: 18px;
    }

    .password-wrapper .icon-eye {
        right: 14px;
    }

    .password-wrapper .icon-eye img {
        max-width: 18px;
    }

    .login-wrapper .login-right .input-wrapper input {
        padding-left: 38px;
    }

    .input-wrapper.password-wrapper input {
        padding-right: 36px;
    }

    .login-wrapper .login-right .input-wrapper label {
        margin-bottom: 6px;
    }

    .header-action .solid-btn {
        padding: 11px 10px;
        font-size: 11px;
    }

    .mobile-toggle {
        width: 36px;
        height: 36px;
    }

    .header-action {
        gap: 4px;
    }

    .solid-btn,
    .border-btn,
    .input-wrapper input,
    .input-wrapper select {
        border-radius: 10px;
    }

    .retrofit-wrapper .head h2,
    .title-wrapper .title,
    .title-wrapper p,
    .retrofits-content-wrapper.title-wrapper .center-data,
    .retrofits-content-wrapper.title-wrapper p {
        margin-bottom: 10px;
    }

    .feature-card .conten-wrapper {
        padding: 14px;
    }

    .feature-card .conten-wrapper h3 {
        margin-bottom: 6px;
    }

    .works-card .icon {
        margin-bottom: 16px;
    }

    .leader-card .content-wrapper .name {
        font-size: 16px;
    }

    .award-content img,
    .award-content svg,
    .award-content .title {
        margin-bottom: 6px;
    }

    .award-content img,
    .award-content svg {
        max-width: 70px;
        max-height: 70px;
    }
}

@media (max-width: 575px) {
    .banner-inner .banner-btn-group {
        align-items: stretch;
        flex-direction: column;
    }

    .retrofit-card {
        text-align: center;
    }

    .retrofit-card .top {
        flex-direction: column;
    }

    .search-bar {
        flex-direction: column;
        height: auto;
    }

    .search-bar .btn-group .search-btn,
    .search-bar input {
        height: 40px;
    }

    .search-bar .btn-group .search-btn {
        width: 50%;
    }

    .our-culture-wrapper .title-wrapper {
        padding: 14px;
    }

    .retrofits-content-wrapper.title-wrapper ul li::before {
        width: 18px;
        height: 18px;
    }

    .retrofits-content-wrapper.title-wrapper ul li {
        padding-left: 24px;
    }
}

/* ------- End Responsive Style  ------- */
/* ------- Legal Content Style ------- */
.legal-content ul,
.legal-content ol {
    list-style-type: disc;
    padding-left: 40px;
    margin-bottom: 20px;
}

.legal-content ol {
    list-style-type: decimal;
}

.legal-content ul li,
.legal-content ol li {
    margin-bottom: 10px;
}

.legal-content ul ul {
    list-style-type: circle;
    margin-top: 10px;
}

/* ------- End Legal Content Style ------- */

/* ------- Legal Indentation Style ------- */
.legal-indent {
    padding-left: 3rem;
}

@media (max-width: 767px) {
    .legal-indent {
        padding-left: 1.5rem;
    }
}

/* ------- End Legal Indentation Style ------- */