main {
    background: #ffffff;
}

/*////////////////////////*/
/*Image Slider CSS*/
/*////////////////////////*/

.index-slider-wrap {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.index-slider {
    z-index: 1;
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0;
}

.index-slider.active {
    opacity: 1;
}

.slider-media {
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.slider-media.one {
    background-image: url(../img/index1.jpg);
}

.slider-media.two {
    background-image: url(../img/index2.jpg);
}

.slider-media.three {
    background-image: url(../img/index3.jpg);
}

.slider-media img {
    height: 100%;
    min-width: 100%;
}

.slider-insider {
    position: absolute;
    padding: 15px 30px;
    background: #000000ad;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.slider-insider h1 {
    color: #ff6100;
    font-size: 70px;
    /*    letter-spacing: 3px;*/
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
}

.slider-insider h2 {
    color: #ffffff;
    font-size: 30px;
    font-weight: normal;
    letter-spacing: 5px;
    font-family: 'Bruno Ace SC', cursive;
}

.slider-insider h3 {
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: normal;
    font-family: 'Open Sans', sans-serif;
    text-transform: lowercase;
}

.slider-control {
    z-index: 2;
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    bottom: 30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.slider-control .slide-btn {
    background: rgba(255, 255, 255, 0.5);
    width: 25px;
    height: 10px;
    border-radius: 5px;
    margin: 10px;
    cursor: pointer;
}

.slider-control .slide-btn.active {
    background: #2696E9;
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}



/*============================*/
/* Media Query of IMAGE slider*/
/*============================*/
@media (max-width: 900px) {

    .slider-insider h1 {
        font-size: 40px;
    }

    .slider-insider h2 {
        font-size: 18px;
    }

    .slider-insider h3 {
        font-size: 12px;
    }

    .slider-control {
        bottom: 20px;
    }

    .slider-control .slide-btn {
        width: 10px;
        height: 10px;
        margin: 5px;
    }
}

@media (max-width: 550px) {
    .slider-insider {
        padding: 10px 20px;
    }

    .slider-insider h1 {
        font-size: 25px;
        letter-spacing: normal;
    }

    .slider-insider h2 {
        font-size: 15px;
        letter-spacing: normal;
    }

    .slider-insider h3 {
        font-size: 10px;
        letter-spacing: normal;
    }
}




/*============================================*/
/*============================================*/
/*          Index Execution Section           */
/*============================================*/
/*============================================*/
.execution-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.execution-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px;
}

.execution-card {
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    min-height: 250px;
}

.execution-card:hover {
    transform: translateY(-5px);
}
.card-description {
    grid-column: 1 / span 2;
    background-color: #f8f8f8;
    text-align: justify;
}

.card-description h3 {
    color: #000000;
}

.card-description .rt-button {
    color: var(--theme-color);
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
}

.card-description .rt-button i {
    margin-left: 8px;
    transition: margin-left 0.3s;
}

.card-description .rt-button:hover i {
    margin-left: 12px;
}

.execution-card.img {
    position: relative;
    overflow: hidden; /* Essential to crop the zoomed image */
    color: #fff; 
    padding: 0;
    display: flex;
    align-items: flex-end;
    /* Removed background-image properties from the main element */
    transition: transform 0.3s ease; /* Only keep transform transition here */
}

/* *** MODIFICATION START: Using ::before for the Zoomable Background Image *** */
.execution-card.img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0; /* Move behind the content and overlay */
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease-out; /* Smooth scale transition */
}

.execution-card.img:hover::before {
    transform: scale(1.1); /* Smooth zoom effect */
}

/* *** MODIFICATION START: Using ::after for the Dimming Overlay *** */
.execution-card.img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Initial overlay darkness */
    z-index: 1; 
    transition: background-color 0.4s ease-out;
}

.execution-card.img:hover::after {
    background-color: rgba(0, 0, 0, 0.2); /* Lighter overlay on hover */
}
/* *** MODIFICATION END *** */

.execution-card.img .card-content {
    position: relative;
    z-index: 2; /* Ensure content is above the image and overlay */
    padding: 20px;
    width: 100%;
    padding-bottom: 30px; 
}


.execution-card.img h3 {
    color: #fff;
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.2;
    transition: all linear 0.3s;
}
.execution-card.img h3:hover {
    color:var(--theme-color);
}

.execution-card.img .rt-button {
    position: absolute;
    bottom: 15px;
    right: 20px;
    z-index: 3; 
    background: var(--theme-color);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.execution-card.img .rt-button:hover {
    opacity: 1;
}

.execution-card.img .rt-button i {
    font-size: 1rem;
}

/* *** MODIFICATION START: Apply specific background images to ::before element *** */
.card-1::before { /* Power & Energy */
    background-image: url('../img/Generation.jpg'); 
}
.card-2::before { /* Solar & Renewables */
    background-image: url('../img/solar.jpg'); 
}
.card-3::before { /* Lift & Escalators */
    background-image: url('../img/Elevator.jpg');
}
.card-4::before { /* Manufacturing */
    background-image: url('../img/Automation.jpg');
}
.card-5::before { /* Laboratory Solution */
    background-image: url('../img/LabSolution.png');
}
.card-6::before { /* Trunkey Projects */
    background-image: url('../img/trunkey.png');
}
/* *** MODIFICATION END *** */


@media (max-width: 992px) {
    .execution-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .card-description {
        grid-column: 1 / span 2;
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .execution-grid {
        grid-template-columns: 1fr;
    }

    .execution-card {
        grid-column: 1 / -1 !important;
    }

    .execution-card.img {
        min-height: 200px;
    }
}

/*============================================*/
/*============================================*/
/*          Business Slider Section           */
/*============================================*/
/*============================================*/
.business-wrap {
    min-height: 100vh;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 80px 30px 80px 30px;
    background-image: url(../img/index4.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.busness-heading {
    width: 100%;
}

.busness-heading > h1 {
    color: #fbae17;
    font-size: 30px;
    margin: 20px 0;
    font-weight: bold;
    text-transform: uppercase;
}

.busness-heading > h1::after {
    color: #fbae17;
    content: "_";
    position: absolute;
    -webkit-animation: bsns-anim 2s infinite;
    animation: bsns-anim 2s infinite;
}


@-webkit-keyframes bsns-anim {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.1;
    }

    100% {
        opacity: 1;
    }
}


@keyframes bsns-anim {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.1;
    }

    100% {
        opacity: 1;
    }
}

.business-cover {
    position: relative;
    width: 700px;
    height: 350px;
    margin: 0 auto;
    overflow: hidden;
}

.business-slide {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    -webkit-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.business-slide.bsns {
    opacity: 1;
}

.business-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    padding: 15px;
    text-align: center;
    background-color: #321764;
    color: #cbb4f5;
}

.business-content.two {
    background: #ed193d;
    color: #ffc6cd;
}

.business-content.three {
    background: #13c79a;
    color: #b3ffec;
}

.business-content.four {
    background: #bc8e14;
    color: #ffe9ad;
}

.business-img {
    position: relative;
    height: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;

}

.business-img img {
    height: 100%;
    width: 100%;
}

.business-text {
    font-style: italic;
    font-size: 16px;
}


/*****************************/
.business-text i {
    font-size: 20px;
    margin: 0 10px;
}

.business-author {
    font-size: 25px;
    font-weight: bold;
}

.business-prev-btn,
.business-next-btn {
    position: absolute;
    top: 55%;
    font-size: 2rem;
    border: none;
    color: #ffbea1;
    background: transparent;
    cursor: pointer;
    z-index: 1;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.business-prev-btn:hover,
.business-next-btn:hover {
    color: #e9652a;
}

.business-prev-btn {
    left: 4%;
}

.business-next-btn {
    right: 4%;
}

/*Media for Business*/

@media (max-width: 900px) {
    .business-wrap {
        padding: 40px 20px 40px 20px;
    }

    .busness-heading > h1 {
        font-size: 25px;
    }

    .business-cover {
        width: 100%;
        height: 500px;
    }

    .business-slide {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .business-content {
        width: 250px;
        height: 250px;
    }

    .business-img {
        width: 250px;
        height: 250px;
    }

    .business-img img {
        width: 100%;
    }

    .business-text {
        font-size: 15px;
    }

    .business-text i {
        font-size: 10px;
        margin: 0 5px;
    }

    .business-author {
        font-size: 16px;
    }

    .business-prev-btn,
    .business-next-btn {
        top: 56%;
    }

}

/*============================================*/
/*============================================*/
/*           Our Solution Section              */
/*============================================*/
/*============================================*/
.our-solution {
    background: #fefaf8;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.solution-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.our-solution h1 {
    color: #2a1b3c;
    font-size: 35px;
    margin: 0 auto 50px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.our-solution h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #e9652a;
    border-radius: 2px;
    -webkit-transition: width 0.3s ease;
    transition: width 0.3s ease;
}

.our-solution h1:hover::after {
    width: 80px;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.solution-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid #ffe5d9;
    cursor: pointer;
}

.solution-card:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-shadow: 0 10px 25px rgba(233, 101, 42, 0.1);
    box-shadow: 0 10px 25px rgba(233, 101, 42, 0.1);
    border-color: #ffd4c2;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(233, 101, 42, 0.1);
    border-radius: 12px;
    margin: 0 auto 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.solution-card:hover .icon-wrapper {
    background: #e9652a;
    -webkit-transform: scale(1.1) rotate(5deg);
    transform: scale(1.1) rotate(5deg);
}

.icon-wrapper i {
    color: #e9652a;
    font-size: 1.8rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.solution-card:hover .icon-wrapper i {
    color: white;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.solution-card h3 {
    color: #2a1b3c;
    margin-bottom: 12px;
    font-size: 1.25rem;
    font-weight: 600;
}

.solution-card p {
    color: #5d4a6a;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.cta-button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 14px 40px;
    background: #e9652a;
    color: white !important;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    gap: 10px;
    border: 2px solid transparent;
}

.cta-button:hover {
    background: white;
    color: #e9652a !important;
    border-color: #e9652a;
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 5px 15px rgba(233, 101, 42, 0.2);
    box-shadow: 0 5px 15px rgba(233, 101, 42, 0.2);
}

.cta-button i {
    -webkit-transition: -webkit-transform 0.2s ease;
    transition: -webkit-transform 0.2s ease;
    transition: transform 0.2s ease;
    transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.cta-button:hover i {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .solution-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .our-solution h1 {
        font-size: 30px;
        margin-bottom: 40px;
    }
    
    .solution-card {
        padding: 25px 15px;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .icon-wrapper i {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .our-solution {
        padding: 60px 15px;
    }
    
    .our-solution h1 {
        font-size: 28px;
        padding-bottom: 8px;
    }
    
    .our-solution h1::after {
        height: 2px;
        width: 50px;
    }
    
    .cta-button {
        padding: 12px 35px;
        font-size: 0.95rem;
    }
}


/*============================================*/
/*============================================*/
/*           why ATMOS Section              */
/*============================================*/
/*============================================*/
.why-atmos {
    min-height: 100vh;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 30px;
}

.why-atmos h1{
    color: #e9652a;
    font-size: 35px;
    margin-bottom: 25px;
    text-transform: uppercase;
}
.why-atmos li{
    color: #000;
    font-size: 18px;
    position: relative;
    padding: 5px;
}
.why-atmos li:hover{
    cursor: pointer;
    color: #321764;
}

.why-atmos li::before{
    content: '';
    position: absolute;
    left: -15px;
    top: 10px;
    display: block;
    width: 10px;
    height: 10px;
    border-radius:50%;
    border: 2px solid #000;

}

.why-atmos > h1::after {
    color: #e9652a;
    content: "_";
    position: absolute;
    -webkit-animation: bsns-anim 2s infinite;
    animation: bsns-anim 2s infinite;
}

@media (max-width: 900px) {
    .why-atmos h1{
        font-size: 25px;
    }
    .why-atmos li{
        font-size: 12px;
    }
    .why-atmos li::before{
        top: 7px;
    }
}

/*============================================*/
/*============================================*/
/*           Our Commitment Section              */
/*============================================*/
/*============================================*/
.our-commitment {
/*    min-height: 100vh;*/
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 30px;
    text-align: justify;
}

.our-commitment h1{
    color: #e9652a;
    font-size: 35px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.our-commitment div{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.our-commitment img{
    width: 350px;
    height: 50vh;
}
.our-commitment img.slide-img{
    padding: 10px;
    border: 5px solid #f2f2f2;
    margin: 0 10px;
    border-radius: 10px;
}

@media (max-width: 900px) {
     .our-commitment div{
        flex-direction: column;
     }
    .our-commitment h1{
        font-size: 25px;
    }
    .our-commitment p{
        font-size: 14px;
        margin-bottom: 20px;
    }
    .our-commitment img{
        width: 80%;
        height: auto;
    }
}

/*============================================*/
/*============================================*/
/*            Client Slide Section            */
/*============================================*/
/*============================================*/

.clients-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 20px;
    position: relative;
}

.section-title {
    font-size: 35px;
    color: #e9652a;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-top: 60px;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.carousel-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition: -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(33.33% - 1.33rem);
    flex: 0 0 calc(33.33% - 1.33rem);
    padding: 20px;
    background: white;
    border-radius: 12px;
    display: grid;
    place-items: center;
    -webkit-box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    min-height: 180px;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.carousel-item img {
    width: 100%;
    height: auto;
    max-height: 100px;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.nav-arrows {
    position: absolute;
    top: 0;
    right: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    z-index: 2;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
}

.nav-arrow {
    background: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: grid;
    place-items: center;
    -webkit-box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: 2px solid #e9652a;
    font-size: 1.2rem;
    color: #e9652a;
}

.nav-arrow:hover {
    background: #e9652a;
    color: white;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .carousel-item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(25% - 1.5rem);
        flex: 0 0 calc(25% - 1.5rem);
        min-height: 200px;
    }
    .carousel-item img {
        max-height: 120px;
    }
}

@media (min-width: 1024px) {
    .carousel-item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(20% - 1.6rem);
        flex: 0 0 calc(20% - 1.6rem);
        min-height: 220px;
    }
    .carousel-item img {
        max-height: 140px;
    }
    .nav-arrows {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
    }
}

.preload-vc {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

/*=================*/
/*=================*/
/*=================*/
.contUs-wraper::before {
    background-color: #fff;
}/*=================*/
/*=================*/
/*=================*/