/* Reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
u,
i,
center,
dl,
dt,
dd,
/*
ol,
ul,
li,
*/
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
    display: block;
}


/*
select {
  -webkit-appearance: auto !important;
  
  -moz-appearance: auto !important;

  appearance: auto !important;

  border-radius: 0;
   

}
*/



select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent !important;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>") !important;
  background-repeat: no-repeat !important;
  background-position-x: 98% !important;
  background-position-y: 10px !important;
/*  border: 1px solid #dfdfdf !important;*/
  border-radius: 2px !important;
  margin-right: 2rem !important;
  padding-right: 2rem !important;
}







/*
ol,
ul {
    list-style: none;
}
*/

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Fonts */
:root {
    --font-default: Open Sans, system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, Liberation Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    --font-primary: 'Jost', sans-serif;
    --font-secondary: 'DM Sans', sans-serif;
}

/* 

    font-family: "Jost", sans-serif;
    font-family: "DM Sans", sans-serif;

    font-family: "Imperial Script", cursive;
*/

/* Colors */
:root {
    --color-default: #555;
    --color-primary: #2E2381;
    --color-secondary: #009B44;
    --color-white: #fff;
}

/* Smooth scroll behavior */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: var(--font-secondary);
    color: var(--color-default);
    background: url(../images/body-bg.jpg) fixed repeat;
}

.exclude_tea_leavs {
    background: none !important;
}

small {
    font-size: 13px;
}

.light-bg-inner {
    background-color: #f3f3f3;
}


a {
    font-family: var(--font-secondary);
    color: var(--color-secondary);
    text-decoration: none;
    transition: all ease-in-out 0.3s;
}

a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

p,
ul li,
ol li {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: normal;
    line-height: 2rem;
}

/*p b,*/
p span,
/*li b,*/
li span {
    color: var(--color-secondary);
    font-weight: bold;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    color: var(--color-primary);
    font-weight: 600;
}

.rev-color h1,
.rev-color h2,
.rev-color h3,
.rev-color h4,
.rev-color h5,
.rev-color h6,
.rev-color p {
    color: var(--color-white);
}

h2.csr-hdr {
    font-family: "Imperial Script", cursive !important;
    font-size: 2.5rem;
}


h1 {
    font-size: 2.2rem;
}

h2 {
    font-size: 1.8rem;
}


.sec-pad {
    padding-top: 60px;
    padding-bottom: 75px;
}


.section-divider {
    border-top: 1px solid rgba(0, 0, 0, .07);
}

.sec-header {
    margin-bottom: 20px;
}

.sec-header {
    color: var(--color-secondary);
    font-size: 48px;
    position: relative;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.sec-header h2 > span {
    color: var(--color-default);
}

.sec-header h2 {
    max-width: 80%;
    /*    padding: 0 30px;*/
    display: block;
    font-size: 48px;
}

.sec-header span {
    font-family: var(--font-sp);
    font-size: 45px;

}

.intro-text {
    padding: 60px;
}




@media screen and (max-width: 480px) {

    .sec-header,
    .sec-header h2,
    .sec-header span,
    .sec-header h2 > span {
        font-size: 32px;
    }

    .sec-header {
        justify-content: center !important;
    }
    
    .sec-header h2{
        max-width: 100%;
    }
}

.button {
    background: var(--color-primary);
    color: #fff;
    padding: 14px 20px;
    letter-spacing: 2px;
    font-size: 18px;
    border: 1px solid transparent;
    border-radius: 0;
    transition: all 0.3s ease-in-out;
}

.button:hover,
.button:focus,
.button:active {
    color: var(--color-primary);
    background: none;
    border: 1px solid var(--color-primary);
    text-decoration: none;
    transition: all ease-in-out 0.3s;
}

/* Sweep To Right */
.hvr-sweep-to-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.hvr-sweep-to-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-sweep-to-right:hover,
.hvr-sweep-to-right:focus,
.hvr-sweep-to-right:active {
    color: var(--color-secondary);
}

.hvr-sweep-to-right:hover:before,
.hvr-sweep-to-right:focus:before,
.hvr-sweep-to-right:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}



/************************************* Marquee *******************************/

@-webkit-keyframes marquee {
    0% {
        transform: translateX(0);
    }

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

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

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

.marquee {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.marquee span {
    text-transform: uppercase;
    will-change: transform;
    transform: translateX(0);
    white-space: nowrap;
    -webkit-animation: marquee 300s linear infinite;
    animation: marquee 300s linear infinite;
    font-size: 200px;
    font-family: var(--font-primary);
    font-weight: 700;
    color: #98C9FF;
}



/*--------------------------------------------------------------
# Home Services area
--------------------------------------------------------------*/
.hover {
    overflow: hidden;
    position: relative;
    padding-bottom: 60%;
    box-shadow: 0 1px 3px rgba(42, 90, 169, 0.12), 0 1px 2px rgba(0, 152, 214, 0.24);
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    min-height: 550px;
}

@media screen and (max-width: 1366px) {
    .hover {
        min-height: 420px;
    }
}

@media screen and (max-width: 480px) {
    .hover {
        min-height: 360px;
    }
}

.hover:hover {
    box-shadow: 0 10px 20px rgba(42, 90, 169, 0.10), 0 10px 20px rgba(42, 90, 169, 0.10)
}

.hover-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 90;
    transition: all 0.4s;
}

.hover img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s;
}

.hover-content {
    position: relative;
    z-index: 99;
}

.hover-1 img {
    width: 105%;
    position: absolute;
    top: 0;
    /*    left: -5%;*/
    transition: all 0.3s;
}

.hover-1-title {
    font-size: 1.75rem;
    color: #fff;
    text-shadow: 2px 10px 20px rgba(0, 0, 0, 0.5);
}

.hover-1-content {
    position: absolute;
    left: 0;
    z-index: 99;
    transition: all 0.4s;
    bottom: 15%;
    margin: auto;
    padding: 2rem !important;
}

@media screen and (max-width: 768px) {
    .hover-1-content {
        top: inherit;
        bottom: 0;
    }
}

.hover-1 .hover-overlay {
    /*    background-image: linear-gradient(45deg, rgba(83, 122, 21, 0.4), rgba(152, 201, 255, 0.4));*/
}

.hover-1-description {
    transform: translateY(0.5rem);
    transition: all 0.4s;
    opacity: 1;
}

.hover-1:hover .hover-1-content {
    bottom: 2rem;
}

.hover-1:hover .hover-1-description {
    opacity: 1;
    transform: none;
}

.hover-1:hover img {
    left: 0;
    transform: scale(1.1);
}

.hover-1:hover .hover-overlay {
    background-image: linear-gradient(45deg, rgba(83, 122, 21, 0.9), rgba(255, 255, 255, 0.2));
    transition: all ease-in-out 0.3s;
}


/********************************************************************************/

.parallax {
    background: url(../images/counter-bg.jpg) fixed;
    background-size: cover;
    color: #fff;
}


.tea-parallax {
    background: url(https://myechoproject.com/MLD-new/wordpress/wp-content/uploads/2025/04/tea-plantation.jpg) fixed;
    background-size: cover;
    color: #fff;
}


.counter-area {
    font-family: var(--font-primary);
    display: flex;
    align-items: start;
    justify-content: center;
    height: 50vh;
    overflow: hidden;
    margin: 0;
    padding-top: 50px;

}

.counter-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin: 30px 50px;
    width: 16%;
    transition: all ease-in-out 0.5s;
}

.counter {
    font-size: 60px;
    margin-top: 10px;
    position: relative;
}

.counter-container span {
    font-size: 24px;
}

.counter:after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    content: '\f067';
    font-size: 30px;
    top: 28%;
    right: 0;
}

.counter.cls-plus:after {
    right: 12%;
}

.counter.cls-plus-csr:after {
    right: -8%;
}

.counter.cls-plus-csr2:after {
    right: -14%;
}

.counter-container:hover .counter {
    font-size: 72px;
    transition: all ease-in-out 0.5s;
}

@media (max-width: 580px) {
    .counter-area {
        flex-direction: column;
        height: auto;
    }

    .counter-container {
        width: 65%;
    }
}

/**************************************************************/

.clients {
    padding: 50px 0;
}

.box {
    display: grid;
    align-items: center;
    justify-items: center;
    width: 60%;
    height: auto;
    transition: transform 0.5s ease-in;
    margin: 8px auto;
}

.box img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    mix-blend-mode: darken !important;
}

.box:hover {
    transform: scale(1.2);
}


/* Bootstrap 5 Card Styles https://codepen.io/cvbijoy */
.card-effects .card-effect {
    border: none;
    background: #dee2e6;
}

.card-effects .card-effect .card-body {
    box-shadow: 0px 5px 24.25px 0.75px rgba(0, 0, 0, 0.2);
    background: #fff;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px
}

.card-effects .card-effect .card-img {
    position: relative;
    overflow: hidden;
}

.card-effects .card-effect:hover .card-img {
    border-top-left-radius: 5px !important;
    border-top-right-radius: 5px !important
}

.card-effects .card-effect .card-img img {
    width: 100%;
    transition: .6s;
}

.card-effects .card-effect:hover .card-img img {
    transform: scale(1.2);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.card-effects .img-hover {
    position: relative;
    overflow: hidden
}

.card-effects .img-hover img {
    transition: all 2s ease;
    transform: scale(1.5)
}

.card-effects .img-hover:after {
    content: "";
    position: absolute;
    pointer-events: none;
    opacity: 1;
    z-index: 3
}

.card-effects .img-hover:before {
    content: "";
    position: absolute;
    pointer-events: none;
    opacity: 1;
    z-index: 3;
    top: -10%;
    right: 51%;
    bottom: -10%;
    left: 50%;
    background: rgba(255, 255, 255, 0.3)
}

.card-effects .img-hover:after {
    top: 50%;
    right: -10%;
    bottom: 50%;
    left: -10%;
    background: rgba(255, 255, 255, 0.6)
}

.card-effects .card-effect:hover .img-hover:before {
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 900ms linear
}

.card-effects .card-effect:hover .img-hover:after {
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: all 900ms linear
}

.card-effects .card-effect:hover .img-hover img {
    transform: scale(1.2)
}

.card-effects .card-btn {
    display: inline-block;
    padding: 14px 25px 14px 55px;
    position: relative;
    background-color: var(--color-primary);
    color: #ffffff;
    text-transform: capitalize;
    border-radius: 5px;
    font-size: 15px;
    /*    text-transform: uppercase;*/
    font-weight: 800;
    cursor: pointer;
    border: none;
    transition: all ease-in-out 0.5s;
    background-image: linear-gradient(to right, var(--color-primary), var(--color-primary));
}

.card-effects .card-btn:hover {
    background-image: linear-gradient(to right, var(--color-primary), var(--color-primary));
    transition: all ease-in-out 0.5s;
}

.card-effects .card-btn .icon-arrow {
    color: #ffffff;
    top: 16px;
    transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1), opacity 0.4s cubic-bezier(0.86, 0, 0.07, 1);
    font-size: 18px;
    backface-visibility: hidden;
    transform: translateZ(0);
    perspective: 1000
}

.card-effects .card-btn .icon-arrow.before {
    left: 20%;
    position: absolute;
    transform-origin: left center
}

.card-effects .card-btn .icon-arrow.after {
    opacity: 0;
    position: absolute;
    right: 48px;
    transform: translateX(75%) scaleX(0.1);
    transform-origin: right center
}

.card-effects .card-btn.secondary {
    background-color: #ff7029
}

.card-effects .card-btn.secondary:hover,
.card-effects .card-btn.secondary:active,
.card-effects .card-btn.secondary:focus {
    background-color: #2fbfa7
}

.card-effects .card-btn.white .icon-arrow {
    color: #2fbfa7
}

.card-effects .card-btn.white:hover .icon-arrow,
.card-effects .card-btn.white:active .icon-arrow,
.card-effects .card-btn.white:focus .icon-arrow {
    color: #fff
}

.card-effects .card-btn.md .icon-arrow {
    top: 22px;
}

.card-effects .card-btn.sm {
    padding: 10px 25px 10px 50px !important;
    font-size: 14px !important
}

.card-effects .card-btn .label {
    display: inline-block;
    transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
    backface-visibility: hidden;
    transform: translateZ(0);
    perspective: 1000
}

.card-effects .card-btn.white {
    background-color: #ffffff;
    color: #2fbfa7
}

.card-effects .card-btn .icon-arrow.white {
    color: #2fbfa7;
    top: 16px
}

.card-effects .card-btn:hover,
.card-effects .card-btn:active,
.card-effects .card-btn:focus {
    background-color: #ff7029;
    color: #ffffff
}

.card-effects .card-btn:hover .icon-arrow.before,
.card-effects .card-btn:active .icon-arrow.before,
.card-effects .card-btn:focus .icon-arrow.before {
    opacity: 0;
    transform: translateX(-75%) scaleX(0.1)
}

.card-effects .card-btn:hover .icon-arrow.after,
.card-effects .card-btn:active .icon-arrow.after,
.card-effects .card-btn:focus .icon-arrow.after {
    opacity: 1;
    transform: translateX(0) scaleX(1)
}

.card-effects .card-btn:hover .label,
.card-effects .card-btn:active .label,
.card-effects .card-btn:focus .label {
    transform: translateX(-32px)
}

.card-effects .text-tb-lines {
    display: grid;
    align-items: center;
    text-align: center;
    gap: 10px;
    color: var(--color-primary);
}

.card-effects .text-tb-lines::before,
.text-tb-lines::after {
    content: '';
    /*    border-top: 6px double;*/
    color: #ffe5f4;
}

/* Bootstrap 5 Card Styles https://codepen.io/cvbijoy */


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
    background: url(../images/ftr-bg.jpg);
    padding: 60px 0 0;
    background-attachment: fixed;
    background-position: top;
    background-size: cover;
}

.ftr-head {
    color: #dddddd;
    font-size: 24px;
    margin: 10px 0;
    font-weight: 500;
    letter-spacing: 1px;
}

@media screen and (max-width: 480px) {
    .ftr-head {
        font-size: 26px;
        margin: 20px 0 10px;
    }
}

.link-list li {
    word-break: break-all;
    line-height: 1.4;
    padding: 5px 0;
    list-style: none;
}

.link-list li:before {
    content: '\f105';
    font-family: FontAwesome;
    font-size: 14px;
    margin-right: 10px;
    color: #e6e0cf;
}

.link-list li a {
    color: #e6e0cf;
    font-size: 14px;
    font-family: var(--font-optional);
    transition: all 0.2s ease 0s;
}

@media screen and (max-width: 480px) {
    .link-list li {
        padding: 8px 0;
    }

    .link-list li a {
        font-size: 16px;
    }
}

.link-list li:hover a,
.link-list li:focus a {
    text-decoration: none;
    color: #aaa;
    padding-left: 5px;
}

.link-list li.indent {
    margin-left: 25px;
}

.connect {
    color: #e6e0cf;
    font-size: 14px;
    line-height: 28px;
    font-family: var(--font-optional);
}

@media screen and (max-width: 480px) {
    .connect {
        font-size: 16px;
        line-height: 30px;
    }
}

.social-icon-area {
    width: 100%;
    float: left;
    margin: 0;
    padding: 0;
    display: block;
}

.social-icon-area ul li {
    float: left;
    padding: 0 7px;
    list-style: none;
}

.social-icon-area ul li a {
    font-size: 20px;
    color: #e6e0cf;
    transition: all ease-in-out 0.3s;
}

.social-icon-area ul li:hover a {
    color: #aaa;
}

.cpyr8-area {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.cpyr8-area p {
    text-align: center;
    color: #fff;
    line-height: normal;
    font-size: 14px;
    font-family: var(--font-optional);
    margin: 0 auto;
    letter-spacing: 0.1rem;
}


@media screen and (max-width: 480px) {
    footer {
        text-align: center;
    }

    .social-icon-area {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-center {
        text-align: center;
    }
}

.bottom-shadow {
    box-shadow: 0px 17px 26px -25px rgba(0, 0, 0, 0.4);
}


.bottom-shadow img {
    mix-blend-mode: darken;
}


/*CSS for form pages */
.form-control {
    padding: 10px 15px;
    height: 46px;
    border-radius: 2px;
    border: 1px solid #c1c1c1;
    font-size: 16px;
    color: #616161;
    background: #fff;
    border-radius: 2px;
}

.form-group {
    margin-bottom: 15px;
}

.form-control-captcha {
    padding: 10px 15px;
    height: 46px;
    border-radius: 2px;
    border: 1px solid #c1c1c1;
    font-size: 13px;
    color: #616161;
    background: #fff;
    width: 80%;
    border-radius: 2px;
}

.wpcf7-submit {
    background: var(--color-primary);
    color: #fff;
    padding: 14px 20px;
    letter-spacing: 2px;
    font-size: 18px;
    border: 1px solid transparent;
    border-radius: 0;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

/*CSS for form pages */



/********************************/
/*  timeline css
********************************/

.timeline-bg {
    background: #1d1e22;
}

.timeline-bg h2 {
    color: #fff;
}

.timeline:before {
    content: '';
    position: absolute;
    height: 100%;
    left: 50%;
    width: 2px;
    top: -20px;
    background: #fff;
    z-index: 1;
}

.timeline {
    position: relative;
    margin: 50px auto;
    /*
    width: 1000px;
    padding: 50px 0;
*/
}


.timeline ul {
    margin: 0;
    padding: 0;
}

.timeline ul li {
    list-style: none;
    box-sizing: border-box;
    line-height: normal;
    position: relative;
    width: 50%;
    padding: 40px;
    color: #fff;
}

.timeline ul li .right_content h2 {
    color: var(--color-secondary);
    padding: 0px 2px 18px 0px;
}

.timeline ul li h3 {
    color: var(--color-secondary);
}

.timeline ul li:nth-child(odd) {
    float: left;
    text-align: right;
    clear: both;
}

.timeline ul li:nth-child(even) {
    float: right;
    text-align: left;
    clear: both;
}

.left_content {
    padding-bottom: 20px;
}

.timeline ul li:nth-child(odd):before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(59, 112, 239, 1);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(58, 112, 239, 0.2);
    right: -6px;
    top: 24px;
    z-index: 1;
}

.timeline ul li:nth-child(even):before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(59, 112, 239, 1);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(58, 112, 239, 0.2);
    left: -4px;
    top: 24px;
    z-index: 99;
}

.timeline ul li:nth-child(odd) .left_content {
    position: absolute;
    top: 12px;
    right: -90px;
    margin: 0;
    padding: 8px 16px;

    color: #fff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    border-radius: 18px;

}

.timeline ul li:nth-child(even) .left_content {
    position: absolute;
    top: 12px;
    left: -90px;
    margin: 0;
    padding: 8px 16px;

    color: #fff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    border-radius: 18px;

}


@media (max-width: 1000px) {

    .timeline {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .timeline {
        width: 100%;
    }

    .timeline:before {
        left: 20px;
    }

    .timeline ul li:nth-child(odd),
    .timeline ul li:nth-child(even) {
        width: 100%;
        text-align: left;
        padding-left: 50px;
    }

    .timeline ul li:nth-child(odd):before {
        top: -18px;
        left: 16px;

    }

    .timeline ul li:nth-child(even):before {
        top: -18px;
        left: 16px;
    }

    .timeline ul li:nth-child(odd) .left_content,
    .timeline ul li:nth-child(even) .left_content {
        top: -30px;
        left: 50px;
        right: inherit;
    }


    .timeline ul li {
        margin: 20px auto;
    }

}



.lc-block .card-title {
    font-family: var(--font-primary);
    font-size: 18px;
}


.pack-parralax {
    background: url(https://myechoproject.com/MLD-new/wordpress/wp-content/uploads/2025/04/pack-parallax.jpg) fixed;
    background-size: cover;
    color: #fff;
}

.pack-parralax h2 {
    color: var(--color-white);
}

.grp-parralax {
    background: url(https://myechoproject.com/MLD-new/wordpress/wp-content/uploads/2025/04/grp-parallax.jpg) fixed;
    background-size: cover;
    color: #fff;
}

.core-values{
    background: url(https://myechoproject.com/MLD-new/wordpress/wp-content/uploads/2025/05/core-values-bg.jpg) fixed;
    background-size: cover;
    color: #fff;
}

.core-values *{
    color: #fff !important;
    text-align: center;
}

.lc-block h5 strong {
    font-size: 24px;
    font-weight: bold;
/*    color: var(--color-secondary);*/
}

.robo-wrapper .react-photo-album--track .grid figure.effect-sadie{
    background-color: #000 !important;
}

.blue_link { color:#2e2381 ; font-weight:bold;}




/**********************************************************************/

footer ul.link-list,
footer ul{
    padding: 0;
}


.pack-block h5{
    font-size: 24px;
}


.card-area .card .card-body{
    min-height: 164px;
}
