.hero_area.traceability_hero_area {
    background-image: url(../assets/img/US_Apparel/USALandingPage.webp);
    background-repeat: round;
    background-size: cover;
    max-width: 1500px;
    height: 680px;
    margin: 0 auto;
}

.hero_area.traceability_hero_area .hero_content {
    margin-top: 55px;
    width: 525px;
}

.hero_area.traceability_hero_area .hero_content {
    margin-top: 55px;
    width: 525px;
}

.tag {
    display: flex;
    width: 203px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.99);
    color: #0E0E0E;
    text-align: center;
    font-family: "Open Sans";
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero_text {
    color: rgba(14, 14, 14, 0.70);
    font-family: "Open Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    padding: 14px 0px;
    width: 94%;
}

.hero_btns .btn.global-btn {
    width: 194px;
    height: 52px;
    border-radius: 8px;
    background: linear-gradient(90deg, #0099C4 0%, #00D1CF 100%);
    color: #FFF;
    font-family: "Open Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    box-shadow: none
}

.trusted_by_area {
    margin-top: -75px !important;
}

.trusted_by_area h3 {
    font-size: 40px;
}

.data-text {
    display: none;
}

.data-text.active {
    display: block;
}

.category-lists-slider {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 1%;
}

.bg-diffrent.key-modules-section {
    background: #F7F7F8;
    padding: 30px;
}

.category-lists-slider .category-button {
    display: flex;
    width: max-content;
    padding: 10px 22px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 20px;
    background: #fff;
    color: rgba(51, 51, 51, 0.60);
    font-family: "Open Sans";
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 15px;
    cursor: pointer;
}

.category-lists-slider .category-button.active {
    border-radius: 20px;
    background: #0099C4;
    color: #ffffff;
}

.key_pointers {
    margin-top: 30px;
}

.key_pointers .data-text.active .row {
    justify-content: center;
}

.key_pointers .data-text.active .col-lg-6.mr-auto.d-none.d-md-none.d-lg-block {
    width: 49%;
    padding-top: 50px;
}

.design-inspiration h3 {
    color: #0099C4;
    font-family: "Open Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.design-inspiration p {
    color: rgba(51, 51, 51, 0.85);
    font-family: "Open Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    /* 156.25% */
}

.design-inspiration ul {
    padding: 0;
    margin-top: 38px;
}

.design-inspiration ul li {
    list-style: none;
    display: flex;
    gap: 6px;
    color: #000;
    font-family: "Open Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
}

.design-inspiration ul li span {
    color: rgba(51, 51, 51, 0.85);
    font-family: "Open Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    /* 266.667% */
}

.section-head {
    color: #000;
    text-align: center;
    font-family: "brandon";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.section-head-subtext {
    color: #0E0E0E;
    text-align: center;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 163.9%;
    width: 700px;
    margin: 0 auto;
    opacity: 0.7;
    margin-bottom: 45px;
}

.btn-primary {
    border: none;
    border-radius: 8px;
    border-radius: 8px;
    background: linear-gradient(90deg, #0099C4 0%, #00D1CF 100%);
    /* box-shadow: 3px 4px 10px 2px rgba(239, 166, 74, .2); */
    padding: 10px 36px;
    border-radius: 5px;
    font-family: "brandon";
    font-size: 18px;
}

.animate__animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.animate__fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__animated.animate__delay-1s {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-delay: var(--animate-delay);
    animation-delay: var(--animate-delay)
}

.button--calypso:hover span {
    animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.3s forwards 0.3s;
    color: #02BACE;
    /* background: #fff !important; */
}

@keyframes MoveScaleUpInitial {
    to {
        transform: translate3d(0, -105%, 0) scale3d(1, 2, 1);
        opacity: 0;
    }
}

@keyframes MoveScaleUpEnd {
    from {
        transform: translate3d(0, 100%, 0) scale3d(1, 2, 1);
        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.button--calypso::before {
    content: "";
    background: #fff;
    width: 192%;
    height: 0;
    padding-bottom: 90%;
    top: -134%;
    left: -40%;
    border-radius: 50%;
    transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
    position: absolute;
}


.button--calypso:hover::before {
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.button--calypso span {
    display: block;
    position: relative;
    color: #fff;
    width: 100%;
    color: #FFF;
    font-family: "Open Sans";
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    /* z-index: 10; */
}

.button--calypso::after {
    content: "";
    background: #000;
    transform: translate3d(0, -100%, 0);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.button--calypso:hover::after {
    transform: translate3d(0, 0, 0);
    transition-duration: 0.05s;
    transition-delay: 0.4s;
    transition-timing-function: linear;
}

.button--calypso {
    overflow: hidden;
    position: relative;
}

.faq_area .reviews_heading {
    color: #000;
    text-align: center;
    font-family: "brandon";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.faq_area .faq-text {
    display: flex;
    width: 613px;
    height: 34px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    color: #0E0E0E;
    text-align: center;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 214%;
    /* 34.24px */
    margin: 0 auto;
    margin-bottom: 40px;
}

.faq_area .faq-text span {
    color: #0E0E0E;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 214%;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;

}

.faq_area .faq-text span:hover {
    cursor: pointer;
    color: #0099C4;
    text-decoration-line: underline;
}

.faq-header .faqss {
    color: #081F2C;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    /* 21.6px */
}

.learnmore button {
    display: flex;
    width: 142px;
    height: 44px;
    padding: 11px 25px 12px 25px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    border-radius: 8px;
    border: 1px solid #0099C4;
    background: none;
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    background: linear-gradient(90deg, #0099C4 0%, #00D1CF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.offer_card {
    display: flex;
    justify-content: end;
    gap: 37px;
}

.advantage_img {
    width: 37%;

}

.advantage_img img {
    width: 100%;
    object-fit: contain;
    height: 490px;
}

.design-inspiration {
    width: 100%;
    padding: 24px 7px;
}

.offer_card .design-inspiration {
    width: 52%;
    padding: 24px 7px;
}

.design-inspiration p.subHeading {
    color: #242733;
    text-align: center;
    font-family: "brandon";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.faq-text {
    color: rgba(51, 51, 51, 0.85);
    text-align: center;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    width: 867px;
    margin: 0 auto;
    margin-bottom: 36px;
}

.Wfx_advantage {
    background: #F7F7F8;
    padding: 30px;
}

.casestudy-tesimoni-div {
    display: flex;
    gap: 3%;
    align-items: center;
    position: relative;
}

.testimonial_area {
    margin: 56px 0;
}

.casestudy-tesimoni-div .logo {
    position: absolute;
    right: 0px;
    bottom: 34px;
    width: 85px;
    height: 29px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.casestudy-tesimoni-div .logo img {
    height: 20px;
    width: 85px;
    object-fit: contain;
    /* filter: invert(1); */
}

.casestudy-tesimoni-div img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
}

/* .casestudy-tesimoni-div .logo img {
    width: 65px;
    height: 65px;
    object-fit: cover;
} */

.casestudy-tesimoni-title h3 {
    text-align: justify;
    color: #242733;
    font-family: 'brandon';
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 71%;
}

.casestudy-tesimoni-title p {
    color: #242733;
    font-family: "Open Sans";
    font-size: 9px;
    font-style: normal;
    font-weight: 400;
    line-height: 136%;
    margin: 0;
    text-align: left;
}

.casestudy-tesimoni figcaption p {
    color: rgba(36, 39, 51, 0.85);
    font-family: "Open Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    text-align: left;
}

.case-study-description h2 {
    color: #242733;
    font-family: 'brandon';
    font-size: 49px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}

.case-study-description p {
    color: rgba(0, 0, 0, 0.69);
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 209%;
    /* 33.44px */
}

.case-study-description-section {
    margin-top: 40px;
}

.case-study-description-section .row {
    justify-content: space-between;
    align-items: center;
}

.row.ser-row {
    justify-content: space-between;
}

.case-study-description-section-left,
.case-study-description-section-right {
    width: 31%;
    height: 273px;
    flex-shrink: 0;
}

.case-study-description-section-right .casestudy-tesimoni {
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    box-shadow: 6px 7px 29px 0px rgba(100, 100, 111, 0.20);
    padding-bottom: 8px;    min-height: 259px;
}

.case-study-description-section-left {
    border-bottom: 1px solid rgba(0, 0, 0, 0.20);
    padding-bottom: 10px;
}

.case-study-challenges {
    margin: 6% 0;
}

.case-study-description-section-left::after {
    border-bottom: rgb(255 0 0 / 20%);
    contain: "";
    width: 100%;
    height: 1px;
    display: block;
}

.case-study-challenges h2 {
    color: #242733;
    font-family: "brandon";
    font-size: 49px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 73.5px */
}

.case-study-challenges p {
    color: rgba(0, 0, 0, 0.69);
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 209%;
    /* 33.44px */
}

.case-study-implementing h2 {
    color: #242733;
    font-family: "brandon";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    text-align: center;
    /* 60px */
}

.signup-limited-slots {
    display: none;
}

.insightful_text {
    color: #0E0E0E;
    text-align: center;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 214%;
    /* 34.24px */
    text-align: center;
    margin-bottom: 50px;
    opacity: 0.7;

}

.reviews_heading.blogs_heading {
    font-size: 40px;
}

.blog_content_area {
    margin-top: 17px;
}

.blog_content_area .card.blog_cards {
    padding: 10px;
}

.blog_area .reviews_heading.blogs_heading {
    margin-bottom: 0px;
}

.blog_cards>img {
    border-radius: 10px 0px 0px 0px !important;
}

.card.blog_cards .tag {
    display: inline-flex;
    padding: 6px 14px 8px 13px;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    border: 1px solid #FFF;
    background: #FFF;
    backdrop-filter: blur(15px);
    left: 20px;
    top: 20px;
    position: absolute;
    width: 72px;
    color: #0099C4;
    font-family: "Open Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
    text-transform: capitalize;
}

.blog_titles {
    font-size: 15px;
    margin-bottom: 20px;
}

.blog_description {
    color: #333333;
    font-size: 13px;
    margin-bottom: 10px;
    margin-top: 5px;
}

.blog_cards .card-body .blog_link {
    font-size: 16px;
}

.blog_cards .card-body {
    flex-grow: 1;
    display: flex;
    padding-left: 5px;
    flex-direction: column;
    padding-right: 5px;
}

.blog_link {
    font-weight: 500;
    background: linear-gradient(90deg, #00D1CF 0%, #0099C4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.case-study-form-main-div {
    display: flex;
    justify-content: center;
}

.downloaddivlogo {
    width: 38%;
    height: 467px;
    padding: 10px;
    border-radius: 30px;
    background: #FFF;
}

.downloaddivlogo .logo {
    width: 100%;
}

.downloaddivlogo .logo p {
    color: #242733;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-top: 26px;
    /* 175% */
}

#download-story-mob {
    width: 47%;
}

#download-story-mob .form {
    width: 473px;
}

#download-story-mob h3 {
    color: #242733;
    font-family: "brandon";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 51px;
    /* 127.5% */
}

#download-story-mob p {
    color: rgba(51, 51, 51, 0.85);
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    width: 500px;
    /* 200% */
}

.form_download_btn {
    text-align: center;
}

#download-story-mob .form_download_btn {
    width: 100%;
    display: block;
}

#download-story-mob .form_download_btn button {
    width: 100%;
    border: 1px solid #0099C4;
}

.downloaddivlogo .logo img {
    width: 100%;
}

.case-study-form {
    padding: 89px 0px;
    padding-bottom: 0;
}

.downloaddivlogo {
    width: 38%;
    height: 467px;
    padding: 10px;
    border-radius: 30px;
    background: #FFF;
}

.form-control::placeholder {
    color: rgba(138, 138, 138, 0.80);
    font-family: "Open Sans";
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    padding-left: 6px;
    line-height: 144%;
    /* 20.16px */
    /* 21px */
}

.service_lable.text-white {
    display: none;
}

.case-study-logo {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 43px;
    border-radius: 3px;
    text-align: center;
    padding: 7px;
    display: flex;
    align-items: center;
    filter: blur(-9px);
    justify-content: center;
 
}

.IndustriesImgBox {
    position: relative;
    width: 23%;
}

.case-study-logo p {

    color: #FFF;
    text-align: center;
    font-family: "Open Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    margin: 0;
    line-height: 25px;
    /* 156.25% */

}

.why_choose_heading {
    margin-top: 75px;
}

.are_strugling_area {
    margin-top: 43px;
}

.ser-section {
    padding-bottom: 40px;
}

.ser-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.ser-row {
    justify-content: center;
    padding: 5px 0;
}

.ser-img {
    border-radius: 10px;
    transition: transform 0.3s ease;
    /* Add animation for hover */
}

.ser-img:hover {
    transform: scale(1.05);
    border-radius: 10px;
    /* Slight zoom effect on hover */
}

.ser-text {
    font-family: "brandon";
    font-size: 20px;
    line-height: 24px;
    color: #333;
    margin-top: 10px;
}

.carousel-control-prev i,
.carousel-control-next i {
    color: black;
    font-size: 15px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5px;
}

.container {
    position: relative;
}

.carousel-control-next,
.carousel-control-prev {
    top: -16px;
}

.carousel-control-next {
    right: 27px;
}

.carousel-control-prev {
    left: 18px;
}

.blog_titles {
    text-align: left;
    margin-bottom: 8px;
}

.blog_cards .card-body .blog_link {
    font-size: 14px;
    text-align: left;
}

.blog_cards {
    padding: 8px;
    width: 100%;
}

.testimonial_area.Our_blogs {
    background: #F7F7F8;
    padding: 55px;
    margin-top: 0;
}

.hide_for_lg {}
.cookies-setting div{
    right: -31px !important;
}

@media only screen and (min-width: 1024px) and (max-width: 1390px) {
    .category-lists-slider {

        width: 100%;

    }

    .hero_text {
        font-size: 13px;
    }

    .key-modules-section .design-inspiration {
        padding: 11px 0px;
    }

    .design-inspiration p {
        font-size: 13px;
    }

    .key-modules-section .design-inspiration p {
        margin-bottom: 0;
        text-align: left;
    }

    .container {
        max-width: 1110px !important;
    }

    .faq-text {
        width: 663px;
        font-size: 13px;
    }

    /* .offer_card .design-inspiration p {
        font-size: 13px;
    } */
    .downloaddivlogo {
        width: 38%;
        height: 442px;
        padding: 10px;
        border-radius: 30px;
        background: #FFF;
    }

    .case-study-description-section-left,
    .case-study-description-section-right {
        width: 31%;
        height: 286px;
        flex-shrink: 0;
    }
}

@media screen and (max-width: 767px) {
    .blog_titles {
            font-size: 20px;
            margin-bottom: 20px;   }
    .hide_for_lg {
        margin-bottom: 0;
    }

    .ser-section {
        padding-bottom: 17px;
    }

    .carousel-control-next,
    .carousel-control-prev {
        display: none;
    }

    .carousel-control-next,
    .carousel-control-prev {
        top: -80px;
    }

    #serCarousel2 .carousel-inner {
        padding: 27px 10px;
    }

    .carousel-control-next {
        right: -4px;
    }

    .carousel-control-prev {
        left: -10px;
    }

    .hero_area.traceability_hero_area {
        background-image: url(../assets/img/US_Apparel/USALandingPageMob.webp);
        height: 978px;
    }

    .container {
        padding: 0 15px !important;
    }

    .faq-text {
        width: 100%;
    }

    .hero_area.traceability_hero_area .hero_content {
        padding: 35px 14px;
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: center;
        margin-top: 0;
    }

    .hero_heading {
        color: #0E0E0E;
        text-align: center;
        font-size: 25.485px;
        font-style: normal;
        font-weight: 700;
        line-height: 37.62px;
        width: 358px;
    }

    .hero_text {
        text-align: center;
    }

    .hero_area.traceability_hero_area .hero_content .hero_btns {
        width: 100%;
        border-radius: 66px;
        background: linear-gradient(90deg, #00D1CF 0%, #0099C4 100%);
    }

    .hero_btns .btn.global-btn {
        max-width: 100%;
        width: 100%;
        border-radius: 0px;
        background: none;
        font-size: 12px;
        height: 40px;
    }

    .trusted_by_area {
        margin-top: -106px !important;
    }

    .trusted_by_area h3 {
        font-size: 25px;
    }

    .faq_area .faq-text {
        width: 100%;
        font-size: 14px;
        display: none;
    }

    .tab-container {
        margin-bottom: 40px;
    }

    .tab-box {
        display: flex;
        justify-content: left;
        margin-bottom: 0px;
    }

    .custom-select {
        position: relative;
    }

    .custom-select select {
        display: none;
    }

    select {
        word-wrap: normal;
    }

    .select-selected {
        display: flex;
        width: 262px;
        height: 43px;
        padding: 7.161px;
        justify-content: flex-start;
        align-items: center;
        gap: 64px;
        color: #FFF;
        font-family: "Open Sans";
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        cursor: pointer;
        user-select: none;
        border-radius: 6px;
        background: #0099C4;
    }

    .select-selected:after {
        position: absolute;
        content: "";
        top: 17px;
        right: 13px;
        width: 0;
        height: 0;
        border: 6px solid transparent;
        border-color: #fff transparent transparent;
    }

    .select-hide {
        display: none;
    }

    .select-items {
        position: absolute;
        background-color: #fff;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 99;
        box-shadow: 3px 3px 3px #dedede;
    }

    .tab-content {
        margin-top: 10px;
    }

    .row.key-modules-section {
        flex-direction: column-reverse;
    }

    .design-inspiration p {
        font-size: 16px;
        margin-top: 20px;
    }

    .design-inspiration h3 {
        font-size: 16px;
    }

    .design-inspiration ul li {
        color: #000;
        font-family: "Open Sans";
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px;
        margin: 10px 0;
    }

    .section-head-subtext {
        width: 100%;
        font-size: 13px;
    }

    .bg-diffrent.key-modules-section .container {
        padding: 0 0px !important;
    }

    .design-inspiration ul li span {
        line-height: 22px;
    }

    .learnmore button {
        margin-top: 17px;
        width: 123px;
        height: 39px;
        font-size: 11px;
    }

    .select-items div,
    .select-selected {
        padding: 8px 16px;
        cursor: pointer;
        user-select: none;
        font-size: 13px;
    }

    #download-story-mob h3,
    #download-story-mob p {
        font-size: 25px;
        text-align: center;
    }

    #download-story-mob p,
    #download-story-mob .form,
    #download-story-mob {
        width: 100%;
    }

    .downloaddivlogo {
        display: none;
    }

    .offer_card {
        flex-direction: column;
    }

    .advantage_img {
        width: 100%;
    }

    .offer_card .design-inspiration {
        width: 100%;
        padding: 24px 0px;
    }

    .offer_card .design-inspiration p {
        font-size: 12px;
    }

    .offer_card .design-inspiration ul li p {
        font-size: 16px;

    }

    .design-inspiration p {
        font-size: 13px;
        margin-top: 0px;
        text-align: center;
    }

    .design-inspiration ul li span {
        font-size: 13px;
    }

    .contetn_area {
        padding: 40px 20px;
    }

    .col-md-2.col-6 {
        position: relative;
    }


    .section-head {
        font-size: 25px;
    }

    .key-modules-section .design-inspiration {
        padding: 11px 0px;
    }

    .key-modules-section .design-inspiration h3 {
        color: #0099C4;
        font-family: "Open Sans";
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }

    .key-modules-section .design-inspiration p {
        margin-bottom: 0;
        text-align: left;
    }

    .Real_people .row.ser-row {
        justify-content: space-between;
        width: 93%;
        margin: 0 auto !important;
        padding: 23px 17px;
        box-shadow: 0px 6.217px 25.754px 0px rgba(100, 100, 111, 0.20);
              height: 247px;
        border-radius: 27px;

    }

    .testimonial_area {
        margin-bottom: 30px;
    }

    .Wfx_advantage {
        padding: 30px 0px;
    }

    .advantage_img img {
        height: 425px;
    }

    .casestudy-tesimoni-div .logo {
        position: absolute;
        right:  29px;
        top: 0;
        width: 98px;
        height: 68px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .carousel-indicators {
        margin-top: -8px;
    }

    .testimonial_area .container {
        padding: 0 0 !important;
    }

    .case-study-form {
        padding: 37px 0px;
        padding-bottom: 0;
    }

    #download-story-mob p {
        font-family: "Open Sans";
        font-size: 12px;
    }

    .bg-diffrent.key-modules-section {
        padding: 30px 17px;
    }

    .reviews_heading {
        font-size: 25px;
    }

    .casestudy-tesimoni-div {
        position: static;
    }

    .casestudy-tesimoni {
        /* display: flex;
        flex-direction: column-reverse; */
    }

    .why_choose_heading {
        margin-top: 22px;
        margin-bottom: 3px;
        font-size: 25px;
    }

    .reviews_heading.blogs_heading {
        font-size: 28px;
    }

    .testimonial_area.Our_blogs {
        padding: 20px 8px;
    }
}