/* Customer Slider Widget */
.customer-wrapper {
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.customer-slider {
    width: 100vw;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.customer-slider ul.customer-brands {
    list-style: none;
    width: max-content;
    display: flex;
    align-items: center;
    animation: slideLeft calc(16 * 2s) linear infinite;
    padding: 0 !important;
    margin: 0 !important;
}

ul.customer-brands li.customer-brand-logo {
    margin-left: 120px;
}

li.customer-brand-logo img {
    object-fit: contain;
    max-width: 120px;
    height: 48px;
}

.customer-slider:nth-child(2) {
    margin-left: -100px;
    width: calc(100vw + 100px);
}

@keyframes slideLeft {
    100% {
        transform: translateX(calc(-100% / 2));
    }
}

/* Showcase Widget */
.swiper {
    padding-bottom: 3rem !important;
}

.showcase-swiper-slide {
    background-color: #000000;
    background-size: cover;
    background-position: center;
    height: 500px !important;
    border-radius: 12px;
    box-shadow: 0px 5px 5px 2px #d3d3d3;
    overflow: hidden;
}

.showcase-content {
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 3rem;
}

.showcase-swiper-slide:nth-child(1) .showcase-content,
.showcase-swiper-slide:nth-child(2) .showcase-content {
    background: linear-gradient(90deg, #1e9a8d 0%, rgba(31, 155, 142, 0) 100%);
}

.showcase-swiper-slide:nth-child(3) .showcase-content,
.showcase-swiper-slide:nth-child(4) .showcase-content {
    background: linear-gradient(90deg, #394764 0%, rgba(58, 72, 101, 0) 100%);
}

.showcase-type {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 120%;
}

.showcase-title {
    color: #ffffff !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    line-height: 36px !important;
}

.showcase-description {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
}

.showcase-detail {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.swiper-pagination {
    position: absolute !important;
    bottom: 5px !important;
}

.swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: #a6a6a6;
    opacity: 50%;
    transition: all 0.3s ease;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background-color: #000000;
    width: 120px;
    border-radius: 100px;
}

/* Milestone Timeline */
.milestone-wrapper {
    padding: 1rem 2.5rem;
    min-height: 550px;
}

.milestone-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.milestone-menu::before {
    content: "";
    border: 1px solid #d1eae8;
    width: calc(100% - 30px);
    position: absolute;
    bottom: 0;
    transform: translateY(-12.5px);
    margin-left: 12px;
}

.milestone-pin-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: content-box;
    z-index: 1;
}

.milestone-pin-box p {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    color: #18988b;
    margin-bottom: 0;
}

.milestone-pin {
    background-color: #d1eae8;
    outline: 20px solid transparent;
    width: 25px;
    height: 25px;
    border-radius: 100%;
    margin-top: 32px;
    transition: all 0.5s ease;
}

.milestone-pin.active {
    background-color: #18988b;
    outline: 20px solid #d1eae8;
}

.milestone-content {
    padding: 80px 0;
}

.milestone-content-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    height: 0;
    transition: all 0.5s ease;
}

.milestone-content-box.active {
    opacity: 1;
    visibility: visible;
}

.milestone-content-left img {
    border-radius: 8px !important;
    width: 400px;
    object-fit: cover;
}

.milestone-content-right {
    width: 60%;
    padding-right: 1rem;
}

.milestone-period {
    font-size: 24px;
    font-weight: 700;
    color: #707070;
    text-transform: uppercase;
}

.milestone-title {
    font-size: 32px;
    font-weight: 700;
    color: #333333;
    line-height: normal;
    margin-bottom: 20px;
}

/* Our work */
.work-wrapper {
    width: 100vw;
    padding: 72px 135px;
    display: flex;
    flex-direction: column;
    row-gap: 72px;
}

.work-title {
    text-align: center;
    margin-bottom: 32px !important;
    color: #202020;
    font-size: 32px;
    font-weight: 500;
}

.work-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 24px;
}

#service-full {
    grid-row: 1 / 4;
    grid-column: 3 / 5;
    height: 100%;
}

#service-half {
    grid-row: 1 / 3;
    grid-column: 1 / 3;
    aspect-ratio: 1 / 1;
}

#service-quart-left {
    grid-row: 3 / 4;
    grid-column: 1 / 2;
    aspect-ratio: 1 / 1;
}

#service-quart-right {
    grid-row: 3 / 4;
    grid-column: 2 / 3;
    aspect-ratio: 1 / 1;
}

#loyalty-full {
    grid-row: 1 / 4;
    grid-column: 1 / 3;
    height: 100%;
}

#loyalty-half {
    grid-row: 1 / 3;
    grid-column: 3 / 5;
    aspect-ratio: 1 / 1;
}

#loyalty-quart-left {
    grid-row: 3 / 4;
    grid-column: 3 / 4;
    aspect-ratio: 1 / 1;
}

#loyalty-quart-right {
    grid-row: 3 / 4;
    grid-column: 4 / 5;
    aspect-ratio: 1 / 1;
}

.work-card {
    border-radius: 12px;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.work-card .text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.3s;
    padding: 36px;
}

.work-card:hover .text-overlay {
    opacity: 1;
}

.text-overlay .work-name {
    font-size: 24px;
    font-weight: 500;
    margin: 0;
}

.text-overlay .work-type {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}
/* Our Team Widget */
.outer-container {
    display: flex;
    flex-direction: column;
    gap: 48px;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.inner-container {
    display: flex;
    flex-direction: row;
    gap: 12px;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.chip {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.5px;
    text-align: center;
    color: #a6a6a6;
    border: 1px solid #a6a6a6;
    border-radius: 100px;
    padding: 12px 24px 12px 24px;
    transition: background-color 0.3s ease-out;
    cursor: pointer;
}
.chip:hover {
    background-color: #1e9a8d;
    color: #ffffff;
    border-radius: 100px;
    padding: 12px 24px 12px 24px;
}
.image-frame {
    width: 100%;
}
.image-content {
    width: 100%;
}

/* Product Sub Menu */
.product-wrapper {
    display: flex;
    padding: 48px;
    gap: 8px;
}

.product-side-bar {
    position: sticky;
    top: 100px;
    height: 50vh;
    overflow-y: auto;
}

.product-side-bar-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 0 !important;
    padding: 0 !important;
}

.product-side-bar-list li a {
    color: #a6a6a6;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.product-side-bar-list li a:hover {
    color: #202020;
}

.product-side-bar-list li a.active {
    color: #202020;
}

.product-sub-menu {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 96px;
    padding-left: 48px;
    border-left: 1px solid #e9e9e9;
}

.product-sub-menu-con {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.product-sub-menu-title {
    color: #202020;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 0 !important;
}

.product-content-box {
    display: flex;
    gap: 48px;
}

.product-content-box-left {
    width: 30%;
}

.product-content-sub-menu-list {
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
    padding-right: 16px !important;
}

.product-content-sub-menu-list li {
    margin-bottom: 24px;
    color: #a6a6a6;
    font-size: 20px;
    font-weight: 500;
    border-left: 2px solid #ffffff;
    padding-left: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-content-sub-menu-list li:hover {
    border-left: 2px solid #a6a6a6;
}

.product-content-sub-menu-list li.active {
    color: #202020;
    border-left: 2px solid #000000;
}

.product-content-box-right {
    position: relative;
    width: 626px;
    height: 500px;
}

.product-content-group {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.product-content-group.active {
    opacity: 1;
    visibility: visible;
}

.product-content-image {
    width: 100%;
    height: 320px;
    border-radius: 12px;
    background-color: #ffffff;
    background-position: center;
    background-size: cover;
    margin-bottom: 24px;
}

.product-content-detail {
    color: #000;
    font-size: 16px;
    font-weight: 400;
}

.product-tooltip-box {
    display: flex;
    gap: 12px;
    align-items: center;
    cursor: pointer;
}

.product-tooltip-box h3 {
    color: #202020;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0 !important;
}

.product-tooltip-content-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 89;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.product-tooltip-content-wrapper.active {
    opacity: 1;
    visibility: visible;
}

.product-tooltip-content {
    width: 50%;
    background-color: #f4f4f4;
    border-radius: 12px;
    display: flex;
    padding: 24px;
    margin-top: 70px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    z-index: 90;
}

.tooltip-head {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.tooltip-head h3 {
    color: #000;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0 !important;
}

.tooltip-head-icon-close {
    background-color: #a6a6a6;
    border-radius: 100%;
    cursor: pointer;
}

.tooltip-detail-con {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-right: 24px;
}

.tooltip-detail {
    display: flex;
    gap: 24px;
    align-items: center;
}

.tooltip-detail-icon {
    width: 64px;
    height: 64px;
}

.tooltip-detail-head {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0 !important;
}

.tooltip-detail-text {
    color: #000;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 0 !important;
}
/* Case Study Slider Widget */
.case-study-swiper-slide {
    max-width: 1242px;
    display: flex;
    border-radius: 12px;
}
.case-study-img {
    border-radius: 12px 0px 0px 12px;
    width: 620px;
    height: 520px;
    background-size: cover;
    background-position: center center;
}
.case-study-content {
    width: full;
    min-width: 55%;
    max-width: 55%;
    height: full;
    background: #f2f2f2;
    padding: 40px 40px 32.7px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 0px 12px 12px 0px;
}
.case-study-industry {
    color: #18988b;
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 600;
    line-height: 16.8px;
    text-align: left;
    margin-bottom: 24px;
}
.case-study-name {
    font-family: Montserrat;
    font-size: 32px;
    font-weight: 700;
    line-height: 39.01px;
    text-align: left;
    color: #202020;
    text-wrap: wrap;
}
.case-study-description {
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    text-align: left;
    color: #202020;
    text-wrap: wrap;
}
.case-study-date {
    font-family: Montserrat;
    font-size: 12px;
    font-weight: 400;
    line-height: 21.6px;
    text-align: left;
    color: #202020;
}

.form-bg {
    background: #f4faf9;
    border-radius: 8px;
    padding: 40px;
    gap: 24px;
    display: flex;
    flex-direction: column;
}

.form-header-green {
    font-family: Montserrat;
    font-size: 32px;
    font-weight: 700;
    line-height: 39.01px;
    text-align: left;
    color: #1e9a8d;
}

.form-header {
    font-family: Montserrat;
    font-size: 32px;
    font-weight: 700;
    line-height: 39.01px;
    text-align: left;
    color: #202020;
    margin-bottom: 32px !important;
}

.form-div {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-div>input,
.form-div>textarea {
    height: 60px;
    gap: 8px;
    border-radius: 8px;
}

#form-response {
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    flex: 1;
    gap: 20px;
    min-height: 765px;
}

#form-response div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

#additional-button {
    margin-top: 20px;
}

input[type="submit"],
button {
    padding: 14px, 16px, 14px, 16px;
    background-color: #1e9a8d;
    height: 60px;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    text-align: center;
}

input[type="submit"]:hover,
button:hover {
    background-color: #202020;
}

input[type="submit"]:disabled {
    background-color: #E9E9E9;
    color: #A6A6A6;
    cursor: not-allowed;
}

input[type="submit"]:disabled:hover {
    background-color: #E9E9E9;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea[id="More-Detail"] {
    padding: 11px 12px 11px 12px;
    font-size: 16px;
    line-height: 24px;
    background: #ffffff;
    border: 1px solid #a6a6a6;
}

#Email.error,
input[type="tel"].error {
    border-color: #B40010;
}

.error-message {
    color: #B40010;
    font-size: 12px;
    margin-top: -14px;
    margin-bottom: -10px;
}

#More-Detail {
    height: 120px;
    resize: none;
}
#accept-term-and-condition {
    width: 24px;
    height: 24px;
}
#accept-terms-and-conditions-block {
    display: flex;
    gap: 8px;
}
a[href="/privacy"] {
    color: #1e9a8d;
    text-decoration: underline !important;
}
dialog > div > form > button {
    padding: 14px, 16px, 14px, 16px;
    background-color: #1e9a8d;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    text-align: center;
}
dialog > div > form > button:hover {
    background-color: #202020;
}
.dialog-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
}
.contact-us-dialog {
    min-width: 40vw;
    min-height: 22.5vh;
    padding: 16px 24px 16px 24px;
    z-index: 20;
}

.book-a-demo-form-header {
    font-family: Montserrat;
    font-size: 24px;
    font-weight: 700;
    line-height: 29.26px;
    text-align: left;
    color: #202020;
}

.book-a-demo-form-header-green {
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 700;
    line-height: 17.07px;
    text-align: left;
    color: #1e9a8d;
    margin-bottom: 32px !important;
}
