body.no-scroll,
html.no-scroll {
  position: fixed;
  height: 100%;
}
/* banner */
.homepage-banner {
    width: 100%;

    .owl-carousel {
        position: relative;
    }

    .item {
        position: relative;
        height: 100vh;
        width: 100%;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .video-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        overflow: hidden;
        z-index: -1;

        .bg-img-video {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100vh;
            object-fit: cover;
            pointer-events: none;
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
			background: linear-gradient(180deg,
    rgba(67, 102, 143, 0.68) 0%,
    rgba(55, 82, 114, 0.55) 51.01%,
    rgba(21, 35, 55, 1) 93.08%,
    rgba(21, 35, 55, 1) 100%);
            z-index: 1;
        }
    }

    .slide-content {
        position: absolute;
        left: 3.34%;
        right: 10.42%;
        bottom: 21.75%;
        z-index: 1;

        .client-logo {
            width: 21.29%;
            display: flex;
            margin-bottom: 0.5em;

            .client-logo-img {
                width: auto;
            }
        }

        button {
            background-color: var(--adro-electric-blue);
            color: var(--adro-deep-blue);
			border-color: var(--adro-electric-blue); !important
        }

        button:hover {
			background-color: #1A2C47;
            color: var(--adro-electric-blue);
        }

        .banner-main-header {
            margin: 0;
        }

        .banner-description {
            margin: 0.5em 0 0.25em;
        }
		.banner-text-below-subheading{
			margin-bottom: 2em;
			color: var(--adro-electric-blue);
		}
    }

    @media screen and (max-width: 1680px) {
        .slide-content {
            .client-logo {
                width: 20%;
            }
        }
    }

    @media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
        .slide-content {
            top: 18%;
            left: 4.5%;
            width: 75%;

            .banner-description {
                margin: 1.34em 0;
                width: 50%;
            }

            .client-logo {
                width: 20.29%;
            }
        }

        @media screen and (max-height: 650px) {
            .slide-content {
                width: 91%;
                top: 16%;

                .client-logo {
                    width: 15%;
                }

                .banner-description {
                    margin: 1em 0;
                    width: 75%;
                }
            }
        }
    }

    @media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
        .slide-content {
            left: 4.8%;
            top: 20%;
            width: 55.8%;

            .banner-description {
                margin: 1.33em 0;
                width: 79.55%;
            }
        }
    }

    @media screen and (max-width: 767.5px) {
        .slide-content {
            left: 6.15%;
            right: 6.15%;
            width: auto;
            top: 17%;

            .client-logo {
                width: 42.47%;
                margin-bottom: 1em;
            }

            .banner-description {
                width: auto;
                margin: 1em 0;
            }
        }

        @media (orientation: landscape) {
            .slide-content {
                min-width: 87.7%;
                width: auto;
                right: 40px;

                .client-logo {
                    width: 15.78%;
                }

                .banner-description {
                    margin: 0.75em 0;
                }
            }
        }
    }
}

.headline {
        transform: scale(0.94);
    }

.headline.animated {
        animation: scale 3s forwards cubic-bezier(0.5, 1, 0.89, 1);
    }

/* Animation styles */
@keyframes scale {
    100% {
        transform: scale(1);
    }
}

.headline .word-span {
    display: inline-block;
    opacity: 0;
    filter: blur(4px);
}

@supports (-webkit-touch-callout: none) {
    .headline .word-span {
        filter: none !important;
    }
}

@keyframes fade-in {
    100% {
        opacity: 1;
        filter: blur(0);
    }
}

/* Slide up animation with blur effect */
#animated-desc,
#animated-button {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(4px);
}

#animated-desc.slide-up {
    animation: slide-up-blur 1s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

#animated-button.slide-up {
    animation: slide-up-blur 1s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

#animated-logo {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(4px);
}

#animated-logo.slide-up {
    animation: slide-up-blur 1s 0s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

@keyframes slide-up-blur {
    0% {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(4px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.below-homepage-banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    text-align: center;
    position: relative;
    margin: -5.5%;

    .text-below-homepage-banner {
        width: 45.84%;
    }
}

@media (max-height: 650px) {
    .below-homepage-banner {
        margin: -4.3%;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .below-homepage-banner {
        margin: -10%;

        .text-below-homepage-banner {
            width: 69.69%;
            margin-bottom: 0.875em;
        }
    }

    @media (max-height: 650px) {
        .below-homepage-banner {
            margin: -4.3%;
        }
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .below-homepage-banner {
        margin: -12%;

        .text-below-homepage-banner {
            width: 71.23%;
            margin-bottom: 1.125em;
        }
    }
}

@media screen and (max-width: 767.5px) {
    .below-homepage-banner {
        padding: 6.2%;
        margin: -28.5%;

        .text-below-homepage-banner {
            margin-bottom: 5em;
            width: 100%;
        }
    }

    @media (max-height: 650px) and (orientation: landscape) {
        .below-homepage-banner {
            transform: translateY(-49%);
        }
    }
}

/* ANIMATION PART */

    #banner-animatedParagraph {
        display: inline-block;
    }

    #banner-animatedParagraph .word {
        display: inline-block;
        color: #FFFFFF5C;
    }

    .animated-text-transition .word {
        animation: wordColorTransition 0.35s ease-out calc(var(--n) * 0.18s) forwards;
    }

    .animated-text-transition .color-dea .word {
        animation-name: colorDeaTransition;
    }

    @keyframes wordColorTransition {
        to {
            color: #FFFFFF;
        }
    }

    @keyframes colorDeaTransition {
        to {
            color: var(--adro-electric-blue);
        }
    }

/* DESCRIPTIOM : COUNTER SECTION */

.counter-section {
        width: 100%;
        height: 15.94vh;
        background-color: var(--adro-electric-blue);
        color: var(--adro-deep-blue);
        padding: 1.41% 3.34%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-direction: row;

        .event-start-title {
            width: auto;
            font-weight: 500;
            text-align: left;
            color: var(--adro-deep-blue);
            margin: 0;
            margin-left: unset !important;
            margin-right: unset !important;
        }

        .counter {
            color: var(--adro-deep-blue);
            display: flex;
            align-items: center;
            flex-direction: row;
            margin-left: 9.27%;
            width: 62.51%;
            justify-content: space-between;
			font-family: "Roboto";

            .counter-style {
                display: flex;
                align-items: center;
                justify-content: center;
                flex-direction: column;
                min-width: 11.08%;

                span:nth-child(1) {
                    font-weight: 700;
                    font-family: Roboto !important;
                }

                span:nth-child(2) {
                    font-weight: 400;
                }
            }
        }

        &.event-started {
            justify-content: center;

            .event-start-title {
                width: 100%;
                text-align: center;
                margin: 0 !important;
            }

            .counter {
                display: none;
            }
        }
    }

    @media screen and (max-width: 1024px) {
        .counter-section {
            height: 16.05vh;
            padding: 1.92% 4.08%;
            flex-direction: column;
            align-items: center;

            .event-start-title {
                margin-bottom: 2.1%;
                text-align: center;
            }

            .counter {
                width: 100%;
                flex-direction: row;
                justify-content: space-between;
                margin-left: 0 !important;
                margin-right: 0 !important;

                .counter-style {
                    text-align: center;
                    min-width: 16.19%;
                }
            }

            &.event-started {
                justify-content: center;

                .event-start-title {
                    margin-bottom: 0;
                    width: 100%;
                    text-align: center;
                }
            }

            @media screen and (orientation: landscape) {

                height: 20.94vh;
                padding: 1.41% 3.34%;
                flex-direction: row;
                align-items: center;

                .event-start-title {
                    margin-bottom: 0;
                    text-align: left;
                }

                .counter {
                    width: 62.51%;
                    flex-direction: row;
                    justify-content: space-between;
                    margin-left: 9.27% !important;
                    margin-right: 0 !important;
                    height: auto;
                    display: flex;
                    grid-template-columns: none;
                    grid-template-rows: none;
                    gap: 0;

                    .counter-style {
                        text-align: center;
                        min-width: 11.08%;

                    }
                }

                &.event-started {
                    justify-content: center;

                    .event-start-title {
                        text-align: center;
                        width: 100%;
                    }
                }
            }
        }
    }

    @media screen and (max-width: 767.5px) and (orientation: portrait) {
        .counter-section {
            height: 34.38vh;
            padding: 4.62% 6.16%;
            flex-direction: column;
            align-items: center;

            .event-start-title {
                margin-bottom: 5.27%;
                text-align: center;
				font-size: 1.3rem;
            }

            .counter {
                width: 100%;
                height: 100%;
                display: grid;
                grid-template-columns: 1fr 1fr;
                grid-template-rows: 1fr 1fr;
                gap: 3%;
                margin-left: 0 !important;
                margin-right: 0 !important;

                .counter-style {
                    text-align: center;
                    min-width: 16.19%;
					span:nth-child(1) {
                        font-size: 2rem;
                    }
                }
            }

            &.event-started {
                height: 15.94vh;
                justify-content: center;

                .event-start-title {
                    margin-bottom: 0;
                    width: 100%;
                    text-align: center;
                }
            }
        }
    }

/* our expertise */

.our_expertise_container {
    .portrait-only-header {
        display: none;
    }

    display: flex;
    align-items: start;
    background-color: white;
    padding: 2.11% 3.37%;
    padding-top:4vw;
    position: relative;
    justify-content: space-between;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;

    .video-container {
        width: 66.66%;
        aspect-ratio: 1.72;
        position: relative;
        overflow: hidden;
        border-radius: 20px;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box;
    }

    .video-container video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .content {
        width: 30.63%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box;

        align-self: stretch;
        display: flex;
        flex-direction: column;
        align-items: flex-start;

        .main-header {
            margin-bottom: 1.17em;
        }

        .main-header,
        .description {
            color: var(--adro-deep-blue);
        }

        .expertise-copy {
            align-self: stretch;
            
            margin-bottom: 0;
        }

        .expertise-cta-link {
            
            margin-top: clamp(1.5rem, 2vw, 2.5rem);
            max-width: 100%;
        }

        .expertise-cta {
            background-color: var(--adro-electric-blue);
            color: var(--adro-deep-blue);
            border-color: var(--adro-electric-blue);
            max-width: 100%;
            white-space: normal;
        }

        .expertise-cta:hover {
            background-color: #1A2C47;
            color: var(--adro-electric-blue);
        }
    }

}

/* Animation Styles */
.animate-on-scroll {
    opacity: 1;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll:not(.in-view) {
    opacity: 0;
}

.slide-in-left {
    transform: translateX(-100px);
}

.slide-in-right {
    transform: translateX(100px);
}

.slide-in-top {
    transform: translateY(-50px);
}

.slide-in-left.in-view {
    opacity: 1 !important;
    transform: translateX(0);
    transition: transform 1.5s ease, opacity 1.5s ease;
}

.slide-in-right.in-view {
    opacity: 1 !important;
    transform: translateX(0);
    transition: transform 1.5s ease, opacity 1.5s ease;
}

.slide-in-top.in-view {
    opacity: 1 !important;
    transform: translateY(0);
    transition: transform 1.2s ease, opacity 1.2s ease;
}

.our_expertise_container .video-container,
.our_expertise_container .content,
.our_expertise_container .portrait-only-header {
    position: relative;
    z-index: 1;
}

@media screen and (min-width:768px) and (max-width:1024px) and (orientation:landscape) {
    .our_expertise_container {
        padding: 3.4%;
        padding-top: 8vw;

        .portrait-only-header {
            margin-bottom: 1em;
        }

        .video-container {
            width: 62.82%;
            aspect-ratio: 1.39;
        }

        .content {
            width: 34.32%;

            .main-header {
                margin-bottom: 1.4em;
            }
        }
    }
}

@media screen and (max-width:767.5px),
screen and (min-width:768px) and (max-width:1024px) and (orientation:portrait) {
    .our_expertise_container {
        flex-direction: column;
        align-items: center;
        padding: 10.7% 6.41%;
        padding-top: 15vw;

        .portrait-only-header {
            display: block;
            color: var(--adro-deep-blue);
            margin-bottom: 1.34em;
        }

        .content {
            width: 100%;

            .main-header {
                display: none;
            }

            .expertise-copy {
                margin-bottom: clamp(1.25rem, 5vw, 2rem);
            }

            .expertise-cta-link {
                margin-top: 0;
                margin-bottom: clamp(1.5rem, 6vw, 2.5rem);
            }
        }

        .video-container {
            width: 100%;
            aspect-ratio: 1.15;
            margin-bottom: 2em;
        }
    }

    .portrait-only-header.slide-in-top.in-view {
        transition-delay: 0.3s;
    }

    @media screen and (min-width:768px) and (max-width:1024px) {
        .our_expertise_container {
            padding: 4.89%;
            padding-top: 8vw;

            .portrait-only-header {
                margin-bottom: 1em;
            }

            .video-container {
                aspect-ratio: 1.72;
                margin-bottom: 2.5em;
            }
        }
    }
}

/* counter */
.counters-container {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 224 / 67;
    background: var(--adro-deep-blue);
    position: relative;
    margin-left: 3.33% !important;
    margin-right: 3.33% !important;
}

.counters-container {
    .gradients {
        opacity: 0;
        transform: scaleX(0);
        
        transform-origin: left;
        
        transition: transform 1s ease, opacity 1s ease;
    }

    .gradients.active {
        opacity: 1;
        transform: scaleX(1);

    }

    .gradient1,
    .gradient2,
    .gradient3 {
        transition-delay: 0s;
    }

    .background {
        position: absolute;
        width: 100%;
        height: 100%;
        display: flex;
        z-index: 1;
		padding-top: 1.3%;
    }

    .gradients {
        height: 100%;
        position: absolute;
        opacity: 1;
    }

    .gradient1 {
        width: 57.6%;
        height: 78%;
        background: linear-gradient(90deg,
                rgba(44, 121, 166, 0.48) 0.35%,
                rgba(22, 61, 83, 0) 99.56%);
        left: 0;
        top: 22.5%;
        z-index: 1;
    }

    .gradient2 {
        width: 66.1%;
        height: 70.21%;
        background: linear-gradient(267deg,
                rgba(0, 204, 255, 0.34) 14.92%,
                rgba(0, 102, 128, 0.08) 97.48%);
        top: 10.4%;
        left: 8.5%;
        z-index: 2;
    }

    .gradient3 {
        width: 50.59%;
        height: 70%;
        top: 20.8%;
        left: 49.2%;
        z-index: 3;
		background: linear-gradient(270deg, rgb(0 204 255 / 100%) 0%, rgb(2 67 67 / 9%) 100%);
		filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
    }

    .content {
        z-index: 2;
        width: 100%;
    }

    .number-container {
        display: flex;
        justify-content: space-evenly;
        align-items: start;
    }

    .items {
        width: 23.66%;
        text-align: center;
		 opacity: 0;
    transform: scale(0.75);

    transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);

    will-change: transform, opacity;
    }
	.items.active {
    opacity: 1;
    transform: scale(1);
}
	
.counter {
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.items.active .counter {
    opacity: 1;
    transform: scale(1);
}

/* TEXT animation  */
.counter-text {
    color: white;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 75.5%;
    margin: auto;

    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.items.active .counter-text {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

    .counter {
        color: var(--ADROSONIC-White-Base, #fff);
        text-align: center;
        font-family: Roboto !important;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        text-wrap: nowrap;
    }

    .counter-text {
        color: white;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        width: 75.5%;
        margin: auto;
    }
}

@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
    .counters-container {
        margin: 0 !important;
        overflow: hidden !important;
        aspect-ratio: 199 / 64 !important;
    }

    .counters-container {
        .counter-text {
          width:100%;
        }

        .background {
            height: 100%;
        }

        .gradient1 {
            width: 61.14% !important;
            height: 83.59% !important;
            top: 16.7% !important;
        }

        .gradient2 {
            width: 72.36% !important;
            height: 81.25% !important;
            top: 0 !important;
            left: 4.5% !important;
            rotate: 0deg;
        }

        .gradient3 {
            width: 61.14% !important;
            height: 79.42% !important;
            top: 14.4% !important;
        }

        .items {
            width: 22.27% !important;
        }
    }
}

@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
    .counters-container {
        margin: 0 !important;
        overflow: hidden !important;
        aspect-ratio: 417/344 !important;
    }

    .counters-container {
        .counter-text {
            width: 44.2vw;
			padding-bottom: 17%;
        }

        .items {
            margin-top: 6%;
        }

        .gradient1 {
            width: 87.69% !important;
            height: 43.7% !important;
            left: 6.2% !important;
            top: 7% !important;
            background: linear-gradient(267deg,
                    rgba(0, 204, 255, 0.34) 14.92%,
                    rgba(0, 102, 128, 0.08) 97.48%);
        }

        .gradient2 {
            width: 57.43% !important;
            height: 77.33% !important;
            top: 13.4% !important;
            left: 0 !important;
            rotate: 0deg;
            z-index: 2;
            background: linear-gradient(90deg,
                    rgba(44, 121, 166, 0.48) 0.35%,
                    rgba(22, 61, 83, 0) 99.56%);
        }

        .gradient3 {
            width: 52.1% !important;
            height: 68.9% !important;
            top: 16%;
            left: 49.2%;
            z-index: 3;
        }
    }
}

@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait),
screen and (max-width: 767.5px) {
    .counters-container {
        .number-container {
            flex-wrap: wrap;
        }

        .items {
            width: 41.79% !important;
        }

        .background {
            height: 100%;
            flex-wrap: wrap;
        }
    }
}

@media screen and (max-width: 768px) {
    .counters-container {
        margin: 0 !important;
        overflow: hidden !important;
        aspect-ratio: 195 / 212 !important;
    }

    .counters-container {
        .counter-text {
            width: 42vw;
        }

        .gradient1 {
            width: 87.69% !important;
            height: 51% !important;
            left: 6.2% !important;
            top: 5.8% !important;
            background: linear-gradient(267deg,
                    rgba(0, 204, 255, 0.34) 14.92%,
                    rgba(0, 102, 128, 0.08) 97.48%);
        }

        .gradient2 {
            width: 57.43% !important;
            height: 86.79% !important;
            top: 13.3% !important;
            left: 0 !important;
            z-index: 2;
            rotate: 0deg;
            background: linear-gradient(90deg,
                    rgba(44, 121, 166, 0.48) 0.35%,
                    rgba(22, 61, 83, 0) 99.56%);
        }

        .gradient3 {
            width: 52.82% !important;
            height: 73.6% !important;
            top: 20.8%;
            left: 49.2%;
            z-index: 3;
        }

        .items {
            margin-top: 20%;
        }
    }
}

@media screen and (min-width: 1921px) {
    .counter-text {
        font-size: 24px !important;
    }
}

@media screen and (min-width: 1441px) and (max-width: 1920.5px) {
    .counter-text {
        font-size: 24px !important;
    }
}

@media screen and (min-width: 1195px) and (max-width: 1440.5px) {
    .counter-text {
        font-size: clamp(1.25rem, 0.031rem + 1.633vw, 1.5rem) !important;
    }
}

@media screen and (min-width: 835px) and (max-width: 1194.5px) {
    .counter-text {
        font-size: clamp(1.125rem, 0.834rem + 0.557vw, 1.25rem) !important;
    }
}

@media screen and (min-width: 391px) and (max-width: 834.5px) {
    .counter-text {
        font-size: clamp(1rem, 0.89rem + 0.451vw, 1.125rem) !important;
    }
}

@media screen and (min-width: 391px) and (max-width: 900px) and (orientation: landscape) {
    .counter-text {
        font-size: 18px !important;
    }
}

@media screen and (max-width: 390.5px) {
    .counter-text {
        font-size: 16px !important;
        padding-left: 0;
        padding-right: 0;
    }
}

/* OUR INDUSTRIES CARDS - APPEXCHANGE INSTANCE (page-scoped copy, plugin untouched) */
.appexchange-cards-container .section-central-heading {
    text-align: center;
    align-self: center;
    
    color: var(--adro-deep-blue);
}
@media screen and (min-width: 768px) {
    .appexchange-cards-container .section-central-heading {
        text-align: center;
        align-self: flex-start;
        width: 100%;
    }
}
/* Desktop */
@media screen and (min-width: 1025px) {
    .appexchange-cards-container .section-central-heading {
        padding-bottom: 2.3%; 
		text-align:left;
    }
}

/* Tab Landscape */
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
    .appexchange-cards-container .section-central-heading {
        padding-bottom: 4.3%; 
		text-align:left;
    }
}

/* Tab Portrait */
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
    .appexchange-cards-container .section-central-heading {
        padding-bottom: 5.34%; 
    }
}

/* Mobile */
@media screen and (max-width: 767.5px) {
    .appexchange-cards-container .section-central-heading {
        padding-bottom: 6.15%;
    }
}
.appexchange-cards-container {
  
  width: 100%;
  padding: 0 3.33%;
  background-color: white;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}
 
.appexchange-cards-container .card {
  opacity: 1;
  transform: translateY(0);
  will-change: transform, opacity;
  transition: none;
}
 
.appexchange-cards-container .card.show {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
 
.appexchange-cards-container .container {
  display: flex;
  flex-direction: column;

  width: 100%;
}
 
.appexchange-cards-container .card-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 49.12%;
}
 
.appexchange-cards-container .card {
  background: radial-gradient(
      50% 50% at 50% 50%,
      rgba(0, 204, 255, 0.05) 0%,
      rgba(0, 102, 128, 0.01) 100%
    ),
    radial-gradient(50% 65.83% at 50% 50%, #1c638d 16.5%, #1b4466 100%);
  border-radius: 1.5rem;
  width: 48.2%;
  aspect-ratio: 53/45;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;

  transition: top ease 0.5s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid transparent;
}
 
.appexchange-cards-container .icon-container {
  width: 51%;
  aspect-ratio: 27/23;
  margin-left: auto;
  margin-right: auto;
  margin-top: 9.4%;
  max-width: 100%;
  transition: transform 2s ease-in-out, margin-bottom 2s ease-in-out,
    max-height 2s ease-in-out;
}
 
.appexchange-cards-container .icon {
     width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
 
.appexchange-cards-container .card-title {
  margin: 0;
  text-align: center;
  margin-top: 5.6%;
  font-weight: 500;
}
 
.appexchange-cards-container .toggle-arrow {
  display: none;
}
 
.appexchange-cards-container .card-desc {
  line-height: normal;
  display: none;
}

.appexchange-cards-container .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: var(--bg-position, center center);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
 
.appexchange-cards-container .card:hover::before {
  opacity: 1;
}
 
.appexchange-cards-container .card > * {
  position: relative;
  z-index: 1;
}

.appexchange-cards-container .desktop-only {
  display: none;
}
.appexchange-cards-container .tablet-only {
  display: block;
}

@media screen and (min-width: 1025px) {
  .appexchange-cards-container .desktop-only {
    display: block;
  }
  .appexchange-cards-container .tablet-only {
    display: none;
  }
 
  .appexchange-cards-container .container {
    display: flex;
    flex-direction: row;
    gap: 5.4rem;
    align-items: stretch;
  }

  .appexchange-cards-container .card-column--right .card,
  .appexchange-cards-container .card-column--left .card {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;

  }

  .appexchange-cards-container .card-column--right .card .icon-container,
  .appexchange-cards-container .card-column--left .card .icon-container {
    margin: 0;
    flex-shrink: 0;
    margin-top: 0%;
    width: 31%;
    height: 89%;
  }

  .appexchange-cards-container .card-column--right .card .card-title,
  .appexchange-cards-container .card-column--left .card .card-title {
    width: clamp(150px, calc(365 / 698 * 100%), 365px);
    height: clamp(20px, calc(40 / 209 * 100%), 40px);
    text-align: center;
    margin: 0;
    transform: none;
    display: flex;
    align-items: center;
    justify-content: center;

  }

  .appexchange-cards-container .card-column--left {
    flex: none;
    width: calc(1009 / 1794 * 100%);
    display: flex;
    min-width: 0;
  }

  .appexchange-cards-container .card-column--left .card {
    width: 100%;
    aspect-ratio: 1009 / 747;
    height: unset;
    min-height: unset;
    flex: 1;
  }

  .appexchange-cards-container .card-column--right {
    flex: none;
    width: calc(698 / 1794 * 100%);
    display: flex;
    flex-direction: column;
    gap: 4rem;
    min-width: 0;
  }

  .appexchange-cards-container .card-column--right .card {
    width: 100%;
    aspect-ratio: 698 / 209;
    min-height: unset;
    height: unset;
    flex: none;
  }

  .appexchange-cards-container .card-column--left .card .icon-container {
    position: absolute;
    top: 4%;
    left: 0%;
    width: 42.9%;
    height: 46.5%;
    aspect-ratio: unset;
    margin: 0 !important;
    transform: none !important;
    z-index: 2;
  }

  .appexchange-cards-container .card-column--left .card .card-title {
    position: absolute;
    top: 20%;
    left: 65%;
    translate: -50% 0;
    bottom: unset;
    width:37.6%;
    transform: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 7%;
	font-size: 2.4vw !important;
  }

  .appexchange-cards-container .card-column--left .card .card-desc {
    display: block;
    width: 84%;
    height: 26.5%;
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    translate: -50% 0;
    text-align: center;
    padding: 0;
    margin: 0;
	font-size: 1.67vw !important;
  }

  .appexchange-cards-container .card-column--left .card::before {
    opacity: 1;
  }

  .appexchange-cards-container .card-column--right .card:hover::before {
    opacity: 0;
  }

  .appexchange-cards-container .card-column--left .card,
  .appexchange-cards-container .card-column--right .card {
    transition: opacity 0.25s ease;
  }

  .appexchange-cards-container .card-column--left .card.swap-fade,
  .appexchange-cards-container .card-column--right .card.swap-fade {
    opacity: 0;
  }
	.appexchange-cards-container .card-column--left > .card {
    border: 2px solid var(--adro-electric-blue);;
  }

  .appexchange-cards-container .card-column--right .card {
    border-color: transparent;
  }
} 

@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .appexchange-cards-container {
    
    width: 100%;
    padding: 0 3.35%;
    margin: auto;
  }
 
  .appexchange-cards-container .card {
    display: flex;
    flex-direction: row;
    aspect-ratio: 17/3;
    align-items: center;
    width: 100%;
    margin-bottom: 1rem;
  }
 
  .appexchange-cards-container .card-title {
    width: 54.4%;
    aspect-ratio: 30/7;
    margin-bottom: 0 !important;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
 
  .appexchange-cards-container .card.active {
    aspect-ratio: 68/31;
  }
 
  .appexchange-cards-container .card.active .card-title {
    width: 48% !important;
    aspect-ratio: 30/7;
    transform: translateY(-152%);
  }
 
  .appexchange-cards-container .card.active .card-desc {
    padding-left: 8.4%;
    padding-right: 8.4%;
    transform: translateY(-182%);
    margin-top: 10%;
	  padding-top:7%;
  }
 
  .appexchange-cards-container .icon-container {
    width: 11.9%;
    aspect-ratio: 1 / 1;
    margin: 2.4% 2.4% 2.4% 10.4%;
  }
 
  .appexchange-cards-container .card.active .icon-container {
    animation: moveUpLandscape 1s linear both;
    margin-top: 15%;
  }
 
  @keyframes moveUpLandscape {
    0% {
      width: 53%;
      transform: translateY(0%) translateX(0%);
    }
    100% {
      aspect-ratio: 13 / 11;
      width: 19.7%;
      transform: translateY(-78%) translateX(-209%);
    }
  }
 
  .appexchange-cards-container .toggle-arrow {
    font-size: 54px;
  }
}
 
@media screen and (min-width: 950px) and (max-width: 1024px) and (orientation: landscape) {
  .appexchange-cards-container .card.active {
    min-height: 240px !important;
  }
}
 
@media screen and (min-width: 768px) and (max-width: 949px) and (orientation: landscape) {
  .appexchange-cards-container .card.active {
    min-height: 210px !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .appexchange-cards-container {
    
    width: 100%;
    padding: 0 4.8%;
    margin: auto;
  }
 
  .appexchange-cards-container .card {
    display: flex;
    flex-direction: row;
    aspect-ratio: 23/6;
    align-items: center;
    width: 100%;
    margin-bottom: 1rem;
  }
 
  .appexchange-cards-container .card-title {
    width: 54.4%;
    aspect-ratio: 31/8;
    margin-bottom: 0 !important;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
 
  .appexchange-cards-container .container .column {
    width: 44.2%;
  }
 
  .appexchange-cards-container .card.active {
    aspect-ratio: 23 / 18;
  }
 
  .appexchange-cards-container .card.active .card-title {
    transform: translateY(-73%);
  }
 
  .appexchange-cards-container .card.active .card-desc {
    padding-left: 5%;
    padding-right: 5%;
    transform: translateY(-30%);
  }
 
  .appexchange-cards-container .icon-container {
    width: 18.7%;
    aspect-ratio: 1/1;
    margin: 2.4%;
  }
 
  .appexchange-cards-container .card.active .icon-container {
    animation: moveUpPortrait 1s linear both;
    margin-top: 15%;
  }
 
  @keyframes moveUpPortrait {
    0% {
      width: 53%;
      transform: translateY(0%) translateX(0%);
    }
    100% {
      aspect-ratio: 13 / 11;
      width: 30.1%;
      transform: translateY(-30%) translateX(-100%);
    }
  }
 
  .appexchange-cards-container .toggle-arrow {
    font-size: 54px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .appexchange-cards-container .container {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: flex-start;
    width: 100%;
  }
 
  .appexchange-cards-container .card-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    min-width: 0;
  }
 
  .appexchange-cards-container .card-column .card {
    width: 100%;
    min-height: 0;
  }
 
  .appexchange-cards-container .card-row {
    display: block;
    width: 100%;
  }
 
  .appexchange-cards-container .card.active {
    background: radial-gradient(
        50% 50% at 50% 50%,
        rgba(0, 204, 255, 0.05) 0%,
        rgba(0, 102, 128, 0.01) 100%
      ),
      radial-gradient(50% 65.83% at 50% 50%, #1c638d 16.5%, #1b4466 100%);
    border-radius: 1.5rem;
    box-sizing: border-box;
    flex-direction: column;
    position: relative;
    color: #fff;
    overflow: hidden;
    transition: all 0.5s ease;
    border-color: var(--adro-electric-blue);
  }
 
  .appexchange-cards-container .icon-container {
    transition: transform 2s ease-in-out, margin-bottom 2s ease-in-out,
      max-height 2s ease-in-out;
  }
 
  .appexchange-cards-container .icon {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }
 
  .appexchange-cards-container .toggle-arrow {
    display: block;
    color: #00ccff;
    width: 22.3%;
    text-align: center;
  }
 
  .appexchange-cards-container .card.active .toggle-arrow {
    display: none;
  }

  .appexchange-cards-container .card.active .icon-container {
    animation: moveUp 1s linear both;
    margin-top: 15%;
  }
 
  @keyframes moveUp {
    0% {
      width: 53%;
      transform: translateY(0%) translateX(0%);
    }
    100% {
      aspect-ratio: 13 / 11;
      width: 30.1%;
      transform: translateY(-30%) translateX(-100%);
    }
  }
 
  .appexchange-cards-container .card.active .card-title {
    margin-left: 28%;
    margin-right: auto;
    margin-top: -19%;
    transform: translateY(-73%);
	  text-align:left;
	  padding-left:8%;
	  width:auto;
  }
 
  .appexchange-cards-container .card.active .card-desc {
    display: block;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding-left: 5%;
    padding-right: 5%;
    transform: translateY(-30%);
	  margin-top:auto;
  }
 
  .appexchange-cards-container .card.active::before {
    opacity: 1;
  }
 
  .appexchange-cards-container .card:not(.active)::before {
    opacity: 0 !important;
  }
}

@media screen and (max-width: 767.5px) {
  .appexchange-cards-container {
    width: 100%;
    
    padding: 0;
    margin: auto;
  }
 
  .appexchange-cards-container .container {
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
  }
 
  .appexchange-cards-container .card {
    display: flex;
    flex-direction: row;
    width: 87.7%;
    aspect-ratio: 171/40;
    margin-bottom: 1rem !important;
    align-items: center;
    margin: 0 auto;
    min-height: 0;
  }
 
  .appexchange-cards-container .card-row {
    display: block !important;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 1.6%;
    width: 100%;
  }
 
  .appexchange-cards-container .card.active {
    background: radial-gradient(
        50% 50% at 50% 50%,
        rgba(0, 204, 255, 0.05) 0%,
        rgba(0, 102, 128, 0.01) 100%
      ),
      radial-gradient(50% 65.83% at 50% 50%, #1c638d 16.5%, #1b4466 100%);
    padding: 1.34%;
    border-radius: 1.5rem;
    aspect-ratio: 19/16;
    box-sizing: border-box;
    flex-direction: column;
    position: relative;
    color: #fff;
    overflow: hidden;
    transition: all 0.5s ease;
    border-color: var(--adro-electric-blue);
  }
 
  .appexchange-cards-container .icon-container {
    width: 18.7%;
    aspect-ratio: 1/1;
    margin: 2.4%;
    transition: transform 2s ease-in-out, margin-bottom 2s ease-in-out,
      max-height 2s ease-in-out;
  }
 
  .appexchange-cards-container .icon {
    object-fit: contain;
    height: 100%;
  }
 
  .appexchange-cards-container .card-title {
    width: 54.4%;
    aspect-ratio: 31/8;
    margin-bottom: 0 !important;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
 
  .appexchange-cards-container .toggle-arrow {
    display: block;
    color: #00ccff;
    font-size: 54px;
    width: 22.3%;
    text-align: center;
  }
 
  .appexchange-cards-container .card.active .toggle-arrow {
    display: none;
  }
 
  .appexchange-cards-container .card.active .card-title {
    margin-left: 28%;
    margin-right: auto;
    margin-top: -21%;
    transform: translateY(-73%);
  }
 
  .appexchange-cards-container .card.active .icon-container {
    animation: moveUpMobile 1s linear both;
    margin-top: 15%;
  }
 
  @keyframes moveUpMobile {
    0% {
      width: 53%;
      transform: translateY(0%) translateX(0%);
    }
    100% {
      aspect-ratio: 13 / 11;
      width: 31.5%;
      transform: translateY(-30%) translateX(-100%);
    }
  }
 
  .appexchange-cards-container .card.active .card-desc {
    display: block;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding-left: 10.6%;
    padding-right: 10.6%;
    transform: translateY(-30%);
	  margin-top:15%;
  }
 
  .appexchange-cards-container .card.active::before {
    opacity: 1;
  }
 
  .appexchange-cards-container .card:not(.active)::before {
    opacity: 0 !important;
  }
}

.appexchange-cards-container .card {
  opacity: 1;
  transform: translateY(0);
  will-change: transform, opacity;
  transition: none;
}
@media screen and (min-width: 1025px) {
    .appexchange-cards-container .card-column--left,
    .appexchange-cards-container .card-column--right {
        transition: opacity 2s ease-out, transform 2s ease-out;
    }

    .appexchange-cards-container .card-column--left {
        opacity: 0;
        transform: translateX(-150px);
    }

    .appexchange-cards-container .card-column--right {
        opacity: 0;
        transform: translateX(150px);
    }

    .appexchange-cards-container .card-column--left.in-view {
        opacity: 1;
        transform: translateX(0);
    }

    .appexchange-cards-container .card-column--right.in-view {
        opacity: 1;
        transform: translateX(0);
    }
}

.appexchange-cards-container .card-column--right .card {
  cursor: default;
}

.appexchange-cards-container .card-column--left > .card {
  cursor: default;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  padding: 6% 7%;
  box-sizing: border-box;
}

.appexchange-cards-container .card-column--left > .card::before {
  content: none;
}

.appexchange-cards-container .card-column--left > .card .card-title,
.appexchange-cards-container .card-column--left > .card .card-desc {
  position: static;
  translate: none;
  transform: none;
  width: 100%;
  height: auto;
  left: auto;
  top: auto;
  bottom: auto;
  margin: 0;
  display: block;
  text-align: left;
  justify-content: flex-start;
}

.appexchange-cards-container .card-column--left > .card .card-desc {
  margin-top: 1.25em;
}

.appexchange-cards-container .card-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1.5rem;
  margin-top: auto;
  padding-top: 2em;
}

.appexchange-cards-container .card-actions > a:first-child button {
  background-color: var(--adro-electric-blue);
  color: var(--adro-deep-blue);
}

.appexchange-cards-container .card-actions > a:first-child button:hover {
  background-color: var(--adro-deep-blue);
  color: var(--adro-electric-blue);
}

.appexchange-cards-container .card-column--left > .card .icon-container,
.appexchange-cards-container .card-column--left > .card .toggle-arrow {
  display: none;
}

@media screen and (min-width: 1025px) {
  
  .appexchange-cards-container {
    --appexchange-card-ratio: 698 / 167;
    --appexchange-card-gap: 3.2rem;
  }

  .appexchange-cards-container .card-column--left > .card .card-title {
    font-size: 2.4vw !important;
  }

  .appexchange-cards-container .card-column--left > .card .card-desc {
    font-size: 1.5vw !important;
  }

  .appexchange-cards-container .card-column--right {
    gap: var(--appexchange-card-gap);
    justify-content: space-between;
  }

  .appexchange-cards-container .card-column--right .card {
    aspect-ratio: var(--appexchange-card-ratio);
  }

  .appexchange-cards-container .card-column--left > .card {
    aspect-ratio: auto;
  }
}

@media screen and (max-width: 1024px) {
  .appexchange-cards-container .toggle-arrow {
    display: none;
  }

  .appexchange-cards-container .card-column--left > .card {
    aspect-ratio: auto;
    padding: 8% 7%;
  }

  .appexchange-cards-container .card-actions {
    gap: 1rem;
    margin-top: 1.5em;
    padding-top: 0;
  }
}

/* CONTACT US POPUP */

.dreamforce-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  padding: 2vh 4vw;
  box-sizing: border-box;
}

.dreamforce-popup-overlay.active {
  display: flex;
}

.dreamforce-popup {
  background-color: var(--adro-deep-blue);
  border-radius: 8px;
  position: relative;
  width: 74.25%;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.dreamforce-popup .popup-close {
  position: absolute;
  top: 2.5%;
  right: 2.5%;
  background: none;
  border: none;
  padding: 0;
  min-width: 0;
  min-height: 0;
  line-height: 0;
  cursor: pointer;
  z-index: 2;
}

.dreamforce-popup .popup-close:hover,
.dreamforce-popup .popup-close:active,
.dreamforce-popup .popup-close:focus,
.dreamforce-popup .popup-close:focus-visible {
  background-color: transparent !important;
  border-color: transparent !important;
}

.dreamforce-popup-body {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 3% 3.5%;
}

.dreamforce-popup-body::-webkit-scrollbar {
  width: 4px;
}

.dreamforce-popup-body::-webkit-scrollbar-thumb {
  background: var(--adro-electric-blue);
  border-radius: 20px;
}

.dreamforce-popup-body::-webkit-scrollbar-track {
  background: var(--adro-mid-blue);
}

.dreamforce-popup .form-heading {
  color: var(--adro-electric-blue);
  margin-bottom: 1em;
}

.dreamforce-popup .custom-form .form-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 1%;
}

.dreamforce-popup .custom-form .form-row .form-group {
  display: flex;
  flex-direction: column;
  width: 49%;
}

.dreamforce-popup .custom-form .form-row.full-width {
  flex-direction: column;
}

.dreamforce-popup .custom-form input,
.dreamforce-popup .custom-form select {
  accent-color: var(--adro-electric-blue);
  border-radius: clamp(1.5rem, 1.175rem + 1.625vw, 3.125rem);
  height: clamp(2.875rem, 2.65rem + 1.125vw, 4rem);
  border: 2px solid var(--adro-electric-blue);
  background: rgba(53, 74, 96, 0.6);
  color: white;
  padding-left: 1.25em;
  box-sizing: border-box;
}

.dreamforce-popup .custom-form input:focus-visible {
  outline: none !important;
}

.dreamforce-popup .custom-form input:-webkit-autofill,
.dreamforce-popup .custom-form input:-webkit-autofill:hover,
.dreamforce-popup .custom-form input:-webkit-autofill:focus {
  color: white;
  background-color: transparent !important;
  transition: background-color 9999s ease-in-out 0s;
}

.dreamforce-popup .custom-form label {
  margin: 0.16em 1.25em;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

.dreamforce-popup .custom-form input[type="radio"] {
  width: clamp(1rem, 0.887rem + 0.563vw, 1.563rem) !important;
  height: clamp(1rem, 0.887rem + 0.563vw, 1.563rem) !important;
  margin-right: 4px;
  padding-left: 0;
}

.dreamforce-popup .custom-form button[type="submit"] {
  max-width: fit-content;
  background-color: var(--adro-deep-blue);
}

.dreamforce-popup .custom-form button[type="submit"]:disabled {
  background-color: #c6c6c6;
  border-color: #c6c6c6;
  color: #8a8a8a;
  cursor: not-allowed;
  transition: all 0.3s ease;
}

.dreamforce-popup .custom-form button[type="submit"]:not(:disabled):hover {
  color: var(--adro-deep-blue) !important;
  border-color: var(--adro-electric-blue) !important;
  background: var(--adro-electric-blue) !important;
  transition: 0.3s ease;
}

.dreamforce-popup .custom-form .error-message {
  padding: 4px 1.34em;
  color: #e84944;
}

.dreamforce-popup .custom-form input.error-border {
  border-color: #e84944;
}

.dreamforce-popup .custom-form .form-row .custom-dropdown.error-border {
  border-color: #e84944 !important;
}

.dreamforce-popup .custom-form .privacy-statement a {
  text-decoration: none !important;
  color: #ffffff;
}

.dreamforce-popup .df-hp-wrap {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.dreamforce-popup .df-recaptcha-row.df-recaptcha-invisible {
  margin: 0;
  padding: 0;
}

.dreamforce-popup .df-recaptcha-row.df-recaptcha-invisible .g-recaptcha {
  display: block;
  height: 0;
  overflow: hidden;
}

body.page-template-Dreamforce .entry-content {
  overflow-x: clip;
  max-width: 100%;
}

@supports not (overflow-x: clip) {
  body.page-template-Dreamforce .entry-content {
    overflow-x: hidden;
  }
}

.dreamforce-popup .form-popup-overlay {
  display: none;
}

.dreamforce-popup .custom-dropdown.open .form-popup-overlay {
  display: flex;
}

.dreamforce-popup .form-group.service-dropdown .custom-dropdown {
  accent-color: var(--adro-electric-blue);
  border-radius: clamp(1.5rem, 1.175rem + 1.625vw, 3.125rem);
  height: clamp(2.875rem, 2.65rem + 1.125vw, 4rem);
  border: 2px solid var(--adro-electric-blue);
  background: rgba(53, 74, 96, 0.6);
  color: white;
  width: 100%;
  position: relative;
}

.dreamforce-popup .custom-dropdown .custom-selected {
  margin: 12px 16px;
  height: 58%;
  align-content: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}

.dreamforce-popup .custom-dropdown .custom-selected.grey-text {
  color: rgba(255, 255, 255, 0.6);
}

.dreamforce-popup .custom-dropdown::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.2s ease;
  width: clamp(0.938rem, 0.825rem + 0.563vw, 1.5rem);
  height: clamp(0.938rem, 0.825rem + 0.563vw, 1.5rem);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='19' viewBox='0 0 22 19' fill='none'><path d='M12.3951 18C11.6253 19.3333 9.70084 19.3333 8.93104 18L0.270782 3C-0.499018 1.66666 0.463234 -2.11562e-06 2.00283 -1.98102e-06L19.3233 -4.66815e-07C20.8629 -3.32219e-07 21.8252 1.66667 21.0554 3L12.3951 18Z' fill='%23D9D9D9'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

.dreamforce-popup .custom-dropdown.rotated::after {
  transform: translateY(-50%) rotate(180deg);
}

.dreamforce-popup .custom-dropdown .contactUsPopup {
  max-height: 24.36vh;
  margin: 0;
  border-radius: 15px;
  border: 2px solid var(--adro-electric-blue);
  background: #2b5472;
  padding: clamp(0.5rem, 0.35rem + 0.75vw, 1.25rem) clamp(0.75rem, 0.5rem + 1.25vw, 2rem);
  width: 100%;
  position: absolute;
  top: 105%;
  left: 0;
  z-index: 10;
  box-sizing: border-box;
}

.dreamforce-popup .custom-dropdown .contactUsPopup .popup-header {
  display: none;
}

.dreamforce-popup .custom-dropdown .custom-options {
  position: relative;
  z-index: 10;
  -webkit-overflow-scrolling: touch;
  max-height: 20.36vh;
  list-style: none;
  overflow-y: auto;
  width: 100%;
  margin: 0;
  padding: 0 16px 0 0;
}

.dreamforce-popup .custom-dropdown .custom-options li {
  margin-bottom: 1em;
  display: flex;
  align-items: center;
  cursor: pointer;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.dreamforce-popup .custom-dropdown .custom-options li::after {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-radius: 3px;
  display: flex;
  flex-shrink: 0;
  margin-right: 16px;
}

.dreamforce-popup .custom-dropdown .custom-options li.selected::after {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='12' viewBox='0 0 14 12' fill='none'><path d='M0.799805 6.80005L5.49546 10.8L12.7998 0.800049' stroke='white' stroke-width='1.6' stroke-linecap='round'/></svg>") no-repeat center;
  background-size: 80%;
  pointer-events: none;
}

.dreamforce-popup .custom-dropdown .custom-options li.selected {
  font-weight: 700;
}

.dreamforce-popup .custom-dropdown .custom-options::-webkit-scrollbar {
  width: 4px;
}

.dreamforce-popup .custom-dropdown .custom-options::-webkit-scrollbar-thumb {
  background: white;
  border-radius: 20px !important;
}

.dreamforce-popup .custom-dropdown .custom-options::-webkit-scrollbar-track {
  background: var(--adro-mid-blue);
}

.dreamforce-popup .thankyou-success {
  padding: 4% 0 2%;
}

.dreamforce-popup .thankyou-success h2 {
  color: var(--adro-electric-blue);
  margin-bottom: 0.75em;
}

.dreamforce-popup .thankyou-success .thankyou-desc {
  color: #fff;
  margin-bottom: 2em;
}

@media screen and (max-width: 767.5px),
screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .dreamforce-popup {
    width: 90%;
    max-height: 88vh;
  }

  .dreamforce-popup-body {
    padding: 8% 6%;
  }

  .dreamforce-popup .custom-form .form-row .form-group {
    width: 100%;
  }

  .dreamforce-popup .custom-form .form-row {
    margin-bottom: 3%;
  }

  .dreamforce-popup .popup-close {
    top: 1.5%;
    right: 5%;
    width: 24px;
    height: 24px;
  }

  .dreamforce-popup .popup-close svg {
    width: 100%;
    height: 100%;
  }
}

@media screen and (max-width: 767.5px) {
  .dreamforce-popup .custom-dropdown .contactUsPopup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-height: 60vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .dreamforce-popup .custom-dropdown .custom-options {
    max-height: none;
    flex: 1 1 auto;
    min-height: 0;
  }

  .dreamforce-popup .custom-dropdown .contactUsPopup .popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1em;
  }

  .dreamforce-popup .custom-dropdown .contactUsPopup .popup-header .service-close-popup {
    cursor: pointer;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .dreamforce-popup {
    width: 86%;
    max-height: 90vh;
  }

  .dreamforce-popup .popup-close {
    top: 2%;
    right: 3%;
    width: 24px;
    height: 24px;
  }

  .dreamforce-popup .popup-close svg {
    width: 100%;
    height: 100%;
  }
}

.dreamforce-ymbi {
    padding: 0 3.34%;
    box-sizing: border-box;

    margin-bottom: 3.3vw;

    a {
        text-decoration: none !important;
    }

    .section-central-heading {
        margin-bottom: 2.7%;
    }

    .related-carousel:not(.owl-loaded) {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .related-item {
        position: relative;

        img {
            width: 100%;
            aspect-ratio: 72/43;
            object-fit: cover;
            border-radius: 20px;
        }
    }

    .post-type-label {
        position: absolute;
        top: 5.5%;
        left: 4.2%;
        z-index: 10;
        font-weight: 500;
        width: 43.1%;
    }

    .post-title-with-icon {
        width: 81.3%;
        margin-top: 0;
        margin-bottom: 7%;
    }

    .related-item .post-title-with-icon:hover {
        color: var(--adro-electric-blue);
    }

    .reading-time {
        color: var(--adro-yellow);
        margin: 1.4% 0;
        width: 81.3%;
    }

    .title-icon {
        vertical-align: text-top;
        margin-left: 1%;
    }

    .carousel-controls {
        display: none !important;
    }

    @media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
        padding: 0;
        margin-bottom: 7.8vw;

        .section-central-heading {
            margin: 0 6.2%;
            margin-bottom: 4.8%;
        }

        .related-carousel:not(.owl-loaded) {
            display: flex;
            grid-template-columns: none;
            gap: 2rem;
            padding: 0 6.2%;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }

        .related-carousel:not(.owl-loaded)::-webkit-scrollbar {
            display: none;
        }

        .related-carousel:not(.owl-loaded) > .related-item {
            flex: 0 0 46%;
            scroll-snap-align: center;
        }

        .post-type-label {
            top: 5.5%;
            left: 4.8%;
            width: 78.3%;
        }

        .post-title-with-icon {
            width: 100%;
            margin-bottom: 11%;
        }

        .reading-time {
            width: 100%;
            margin: 4.4% 0 2.3% 0;
        }
    }

    @media screen and (max-width: 767.5px) {
        padding: 0;
        margin-bottom: 6.6vw;

        .section-central-heading {
            margin: 0 6.32%;
            margin-bottom: 10.3%;
        }

        .related-carousel:not(.owl-loaded) {
            display: flex;
            grid-template-columns: none;
            gap: 1.5rem;
            padding: 0 6.32%;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }

        .related-carousel:not(.owl-loaded)::-webkit-scrollbar {
            display: none;
        }

        .related-carousel:not(.owl-loaded) > .related-item {
            flex: 0 0 70%;
            scroll-snap-align: center;
        }

        .post-type-label {
            top: 4.5%;
            left: 4.5%;
            width: 67.5%;
        }

        .post-title-with-icon {
            width: 100%;
            margin-bottom: 15%;
        }

        .reading-time {
            width: 100%;
            margin: 6% 0 2.1% 0;
        }
    }
}

/* SPACER SECTION */

.space-homepage-below-banner-text {
    height: 13vw;
}

.space-dreamforce-below-our-expertise {
	height: 4vw;
	background-color: white;
}

.space-dreamforce-below-appexchange-cards {
	height: 7.92vw;
	background-color: white;
}

.space-dreamforce-below-counter2-text {
	height: 7.92vw;
}

.space-dreamforce-below-our-industries {
	height: 6.1vw;
}

@media screen and (max-width: 767.5px) {
    .space-dreamforce-below-our-expertise {
        height: 15vw;
    }

    .space-dreamforce-below-appexchange-cards {
        height: 20.5vw;
    }

    .space-dreamforce-below-counter2-text {
        height: 20.5vw;
    }

    .space-dreamforce-below-our-industries {
        height: 12.3vw;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .space-dreamforce-below-our-expertise {
        height: 8vw;
    }

    .space-dreamforce-below-appexchange-cards {
        height: 12vw;
    }

    @media (orientation: portrait) {
        .space-dreamforce-below-counter2-text {
            height: 9.5vw;
        }

        .space-dreamforce-below-our-industries {
            height: 14.4vw;
        }
    }

    @media (orientation: landscape) {
        .space-dreamforce-below-counter2-text {
            height: 14vw;
        }

        .space-dreamforce-below-our-industries {
            height: 5.2vw;
        }
    }
}