/* SECTION ORM HERO */
.service-orm-page .orm-hero {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.service-orm-page .orm-hero .container {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    gap: 10px;
}

.service-orm-page .container h1 span{
    color: #FF6600;
}

.service-orm-page .orm-hero .container .orm-hero-title h1, 
.service-orm-page .orm-hero .container .orm-hero-title p, 
.service-orm-page .orm-hero .container .orm-hero-title a {
    text-align: start;
}

.service-orm-page .orm-hero .container .orm-hero-title h1 {
    margin-bottom: 20px;
}

.service-orm-page .orm-hero .container .orm-hero-image {
    position: relative;
    z-index: 1 !important;
    width: 90%;
    max-width: 450px;
    justify-self: center;
    aspect-ratio: 1 / 1;
    margin-top: 40px;
}
.service-orm-page .orm-hero .container .orm-hero-image::before {
    content: '';
    position: absolute;
    width: 90%;
    height: 60%;
    background-color: #ff6f3c;
    top: -7%;
    right: -7%;
    z-index: -1;
}
.service-orm-page .orm-hero .container .orm-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media only screen and (max-width: 1024px) {
    .service-orm-page .orm-hero .container {
        grid-template-columns: auto;
    }
}


/* --- ORM SERVICES SECTION --- */
.orm-services {
    background: radial-gradient(circle at 10% 90px, rgba(255, 102, 0, 0.3), transparent 300px), radial-gradient(circle at 100% 250px, rgba(255, 102, 0, 0.3), transparent 300px), #1a3e5c;
    padding: 16px 0 96px 0;
    display: flex;
    justify-content: center;
}
.orm-services .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    color: white;
}

.orm-services .container .orm-services-title h1 {
    margin: 10px;
}

.orm-services .container .block {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
}
.orm-services .container .block .items {
    padding-top: 23px;
    justify-self: start;
}

.orm-services .container .block .title h2 {
    margin: 0;
}

.orm-services .container .block .items .item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.orm-services .container .block .items .item .item-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

@media only screen and (max-width: 768px) {
    .orm-services .container .orm-services-title h1 {
        margin-bottom: 32px;
    }
}

@media only screen and (max-width: 520px) {
    .orm-services .container .block .title h2 {
        font-size: 24px;
    }
}

/* --- SVG STYLING FOR ORM SERVICES SECTION --- */

.orm-services .container .block {
    position: relative;
    padding: 0 15px;
}

.line-decorator {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #FF6600;
}

.line-decorator.left-decorator {
    left: -2px;
}
.orm-services .container .b-first {
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    left: -3px;
}
.orm-services .container .b-even {
    border-right: 3px solid #FF6600;
    border-left: 3px solid transparent;
    border-top: 3px solid #FF6600;
}
.orm-services .container .b-odd {
    border-right: 3px solid transparent;
    border-left: 3px solid #FF6600;
    border-top: 3px solid #FF6600;
}
.line-decorator.right-decorator {
    right: -3px;
}

.line-decorator .decorator-svg {
    overflow: visible;
    position: absolute;
    left: 50%;
    width: 24px;
    height: 24px;
}

.left-decorator-square .decorator-svg {
    top: 0;
    transform: translate(-50%, -50%);
}

.left-decorator .decorator-svg {
    bottom: 0;
    transform: translate(-50%, calc(100% - 1px));
}

.right-decorator .decorator-svg {
    bottom: 0;
    transform: translate(-50%, calc(100% - 1px));
}

@media only screen and (max-width: 1024px) {
    .orm-tools-training .container .orm-tools h2 {
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 768px) {
    .orm-services .container .block {
        grid-template-columns: auto;
    }
    .orm-services .container .block .title {
        padding: 15px 10px 0 10px;
    }
    .orm-services .container .block .items ul {
        padding: 0;
    }
}

/* --- ORM FEATURES SECTION --- */
.orm-amenex-features {
    display: flex;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(circle at 10% 90px, rgba(255, 102, 0, 0.3), transparent 300px), radial-gradient(circle at 100% 250px, rgba(255, 102, 0, 0.3), transparent 300px), #1a3e5c;
}

.orm-amenex-features .container {
    display: grid;
    grid-template-columns: 50% 50%;
    color: white;
}

.orm-amenex-features .container .orm-amenex-features-title {
    align-self: start;
    position: relative;
    padding-top: 10em !important; 
}

.orm-amenex-features .container .orm-amenex-features-title h2 {
    text-wrap: balance !important;
}

/* arrow ad break */
.orm-amenex-features .scroll-down-arrow-container {
    position: absolute;
    left: calc(100% + 50%);
    transform: translateX(-50%);
    bottom: -100px;
    width: 40px;
    height: 40px;
    opacity: 1;
    z-index: 10;
}

.orm-amenex-features .scroll-down-arrow-container .scroll-down-arrow-svg {
    width: 70%;
    height: 70%;
    transform: rotate(180deg);
    fill: white;
}

.orm-amenex-features .scroll-down-arrow-container.hidden {
    opacity: 0;
    pointer-events: none;
}

@media only screen and (max-width: 1536px) {
    .orm-amenex-features .scroll-down-arrow-container {
        left: calc(100% + 50%);
        bottom: -160px;
    }
}
/* arrow end ad break */

.orm-amenex-features .container .orm-amenex-features-scrollable {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px 10px 30px 0;
    max-height: 480px; 
    overflow-y: auto;

    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent,
        black 50px,
        black calc(100% - 50px),
        transparent
    );
    mask-image: linear-gradient(
        to bottom,
        transparent,
        black 50px,
        black calc(100% - 50px),
        transparent
    );
}
/* .orm-amenex-features .container .orm-amenex-features-scrollable:hover {
    overflow-y: auto; 
} */
.orm-amenex-features .container .orm-amenex-features-scrollable .card {
    padding: 30px;
    border: 1px solid #FF6600;
}
.orm-amenex-features .container .orm-amenex-features-scrollable .card .card-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 20px;
}
.orm-amenex-features .container .orm-amenex-features-scrollable .card h2,
.orm-amenex-features .container .orm-amenex-features-scrollable .card p {
    color: white;
    margin-bottom: 12px;
}

/* --- Responsive --- */
@media only screen and (max-width: 1024px) {
    .orm-amenex-features .container {
        display: grid;
        grid-template-columns: auto;
        color: white;
    }

    .orm-amenex-features .container .orm-amenex-features-title {
        text-align: center;
    }

    .orm-amenex-features .container .orm-amenex-features-scrollable {
        padding-top: 100px;
        padding-bottom: 32px;
        max-height: none;
        overflow-y: visible;

        -webkit-mask-image: none;
        mask-image: none;
    }
}
@media only screen and (max-width: 768px) {
    .orm-amenex-features .container .orm-amenex-features-scrollable .card {
        padding: 10px;
    }
    .orm-amenex-features .container .orm-amenex-features-scrollable .card .card-icon {
        width: 50px;
        height: 50px;
    }
    
    .orm-amenex-features .container .orm-amenex-features-title h2 {
        margin: auto;
        width: 280px;
    }
}



/* ------------WHY BUSINESSESS CHOOSE SECTION-------------- */
/* --------Overlay arrow over the businesses text---------- */
.orm-amenex-features .business-arrow-svg-container {
    position: absolute;
    top: 14rem;
    left: -15em;
    width: 800px;
    height: 450px;
    z-index: 0;
    pointer-events: none;
}

.orm-amenex-features .business-arrow-svg-container .arrow-svg {
    width: 100%;
    height: 100%;
}

.orm-amenex-features .business-arrow-svg-container .arrow-svg .line-3 {
    stroke-dasharray: 580;
    stroke-dashoffset: 260;
}

.orm-amenex-features .business-arrow-svg-container .arrow-svg .arrowhead {
    transform: translate(390px, 0);
}

@media (min-width: 521px) {
    .business-arrow-svg-container .arrow-svg polygon {
        transform-origin: 12.5px 11px;
        transform: translate(460px, 147px) rotate(-90deg) scale(0.75);
    }
}

@media only screen and (max-width: 1536px) {
    .orm-amenex-features .business-arrow-svg-container {
        top: 10rem;
        left: -12em;
    }

    .orm-amenex-features .business-arrow-svg-container .arrow-svg .arrowhead {
        transform: translate(190px, 0);
    }
}

@media only screen and (max-width: 1024px) {
    .orm-amenex-features .business-arrow-svg-container {
        top: 1rem;
        left: -12em;
    }
    .orm-amenex-features .container .orm-amenex-features-title {
        padding-top: 2em !important; 
    }
}
@media only screen and (max-width: 768px) {
    .orm-amenex-features .business-arrow-svg-container {
        top: 1rem;
        left: -8em;
    }
}

@media only screen and (max-width: 520px) {
    .orm-amenex-features .business-arrow-svg-container .arrow-svg .line-3 {
        stroke-dashoffset: 360;
    }
    .orm-amenex-features .business-arrow-svg-container .arrow-svg .arrowhead {
        transform: translate(30px, 0);
    }

    .orm-amenex-features .business-arrow-svg-container {
        top: 60px;
        left: -87px;
        width: 100%;
    }

    .orm-amenex-features .business-arrow-svg-container .arrow-svg {
        height: 300px;
        width: auto;
    }
    .orm-amenex-features .business-arrow-svg-container .arrow-svg path {
        stroke-width: 4.5px;
    }
}

/* ---------------------------------- */
/* ----------- THREE CARDS ---------- */
/* ---------------------------------- */
.three-cards {
    display: flex;
    justify-content: center;
    padding: 64px 0;
}

.three-cards .container {
    width: 100%;
}

.three-cards .container .three-cards-title .button.full {
    display: block;
}
.three-cards .container .button.mobile {
    display: none;
}

.three-cards .container .three-cards-title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
}

.three-cards .container .three-cards-title .title {
    align-self: center;
}
.three-cards .container .three-cards-title .title h1 {
    text-align: center;
    margin: 0;
}
.three-cards .container .three-cards-title .title h1 span {
    color: #FF6600;
}

.three-cards .container .three-cards-packages {
    display: grid;
    grid-template-columns: 33% 33% 33%;
    justify-content: center;
    gap: 20px;
}

.three-cards .container .three-cards-packages .card-container {
    padding: 20px;
}

.three-cards .container .three-cards-packages .card-container.package-1 {
    border: 1px solid #adadad;
    border-top: 8px solid #adadad;
}
.three-cards .container .three-cards-packages .card-container.package-2 {
    border: 1px solid #FF6600;
    border-top: 8px solid #FF6600;
}
.three-cards .container .three-cards-packages .card-container.package-3 {
    border: 1px solid #1a3e5c;
    border-top: 8px solid #1a3e5c;
}

.three-cards .container .three-cards-packages .card-container .card-icon-wrapper {
    margin-bottom: 20px;
}
.three-cards .container .three-cards-packages .card-container h4{
    margin-bottom: 15px;
}
.three-cards .container .three-cards-packages .card-container h4 span{
    color: #FF6600;
}
.three-cards .container .three-cards-packages .card-container .card-icon-wrapper img {
    width: 72px;
    height: 72px; 
}

@media only screen and (max-width: 768px) {
    .three-cards {
        padding: 64px 0 0 0;
    }

    .three-cards .container .three-cards-packages {
        grid-template-columns: auto;
    }
    .three-cards .container .three-cards-packages .card-container {
        padding: 10px;
    }

    .three-cards .container .three-cards-title .button.full {
        display: none;
    }

    .three-cards .container .three-cards-title {
        display: flex;
        justify-content: center;
        margin-bottom: 32px;
    }

    .three-cards .container .button.mobile {
        display: flex;
        margin-top: 32px;
        justify-content: center;
    }
}

/* ---------------------------------- */
/* --------- IMAGE BANNER 2 --------- */
/* ---------------------------------- */
.banner-2 .container .image-bnr-div {
    top: 64px
}

/* ---------------------------------- */
/* --------- PROCESS SECTION -------- */
/* ---------------------------------- */
.orm-process {
    background-color: #1A3E5C;
    padding: 96px 0 112px 0;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
}

.orm-process .section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.process-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
    margin: 0 auto;
    max-width: 1100px;
    width: 100%;
}


.process-vertical-line-right {
    position: absolute;
    top: 40px;
    right: 0;
    width: 3px;
    height: 281px;
    background-color: #FF6600;
    z-index: 1;
}

.process-horizontal-line-bottom {
    position: absolute;
    top: calc(40px + 281px);
    right: 0;
    height: 3px;
    width: 90%;
    background-color: #FF6600;
    z-index: 1;
}

.process-vertical-line-left {
    position: absolute;
    top: calc(40px + 281px);
    left: 10%;
    width: 3px;
    height: 220px;
    background-color: #FF6600;
    z-index: 1;
}

.process-final-line-wrapper {
    position: absolute;
    top: calc(40px + 281px + 120px);
    left: 10%;
    display: flex;
    align-items: center;
    height: 200px;
    width: 80%;
    z-index: 2;
}

.process-final-line {
    flex-grow: 1;
    height: 3px;
    background-color: #FF6600;
}

.process-final-arrowhead {
    width: 20px;
    height: 16px;
}

.process-line {
    position: absolute;
    top: 40px; 
    left: -110px;
    width: calc(100% + 110px);
    right: 0; 
    height: 3px;
    background-color: #FF6600;
    z-index: 1;
}

.process-start-shape {
    position: absolute;
    top: -10px;
    left: -7.5px;
    z-index: 0;
    transform: scaleY(-1);
}

.process-start-shape svg {
    overflow: visible;
}

.process-end-shape {
    display: none;
    position: absolute;
    right: -10px;
    top: 0;
    z-index: 2;
    transform: translateY(-32%);
}


.process-end-shape svg {
    overflow: visible;
}

.process-connector-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 1;
    padding: 0 1rem; 
    box-sizing: border-box;
}

.process-timeline {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    padding: 0 1rem;
}

.process-step {
    flex-basis: calc(30% - 2rem);
    min-width: 300px;
}

.process-icon-wrapper {
    margin-bottom: 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: start;
}

.process-icon-wrapper img {
    background-color: #1A3E5C;
    width: 72px;
    height: 72px;
}

.process-step h3 {
    color: #FFFFFF;
    margin-bottom: 15px;
    font-size: 24px;
}

.process-step p {
    font-size: 18px;
    color: #FFFFFF;
}


/* --------- Responsive Behavior --------- */
@media only screen and (max-width: 1300px) {
    .orm-process .container {
        width: 90%;
        max-width: 90%;
    }
    .orm-process .container .process-wrapper .process-line {
        left: -55px;
        width: 110%;
        right: 0; 
        height: 3px;
        background-color: #FF6600;
        z-index: 1;
    }
    .orm-process .container .process-wrapper .process-line {
        width: 105%;
    }
}
@media only screen and (max-width: 1200px) {
    .orm-process .section-title {
        margin-bottom: 2rem;
    }

    .process-vertical-line-right,
    .process-horizontal-line-bottom,
    .process-vertical-line-left,
    .process-final-line-wrapper {
        display: none;
    }
    .process-end-shape {
        display: initial;
    }

    .process-horizontal-line-bottom {
        width: 100%;
    }

    .process-wrapper {
        display: block;
        overflow-x: auto; 
        padding-bottom: 1rem;
    }

    .process-wrapper::-webkit-scrollbar {
        height: 6px;
    }
    .process-wrapper::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.2);
        border-radius: 10px;
    }

    .orm-process .container .process-wrapper .process-line {
        left: -110px;
        width: 1740px;
        right: 0; 
        height: 3px;
        background-color: #FF6600;
        z-index: 1;
    }

    .process-timeline {
        gap: 0;
        padding-left: 48px;
    }

    .process-wrapper .process-line {
        width: 1185px;
    }

    .process-start-shape {
        top: -10.5px;
        left: 110px;

    }

    .process-timeline {
        justify-content: flex-start;
        width: 1100px;
        flex-wrap: nowrap;
    }

    .process-connector-svg {
        width: 1100px;
    }
}

@media only screen and (max-width: 1024px) {
    .orm-process {
        padding: 96px 0 48px 0;
    }

    .orm-process .section-title {
        text-align: start;
    }
}

@media only screen and (max-width: 768px) {
    .orm-process .container {
        width: 100%;
        max-width: 100%;
    }

    .process-icon-wrapper img {
        width: 50px;
        height: 50px;
    }

    .orm-process .section-title {
        margin-bottom: 10px;
    }
}

/* --------------------------------------------- */
/* --------- TOOLS AND TRAINING SECTION -------- */
/* --------------------------------------------- */
.orm-tools-training {
    display: flex;
    justify-content: center;
}

.orm-tools-training .container {
    margin: 32px 0 64px 0;
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    gap: 10px;
}

.orm-tools-training .container .orm-tools h2 {
    margin: 0;
}

.orm-tools-training .container .orm-tools h2 span{
    color: #FF6600;
}

.orm-tools-training .container.orm-hero .container .orm-hero-title h1, 
.orm-tools-training .container.orm-hero .container .orm-hero-title p, 
.orm-tools-training .container.orm-hero .container .orm-hero-title a {
    text-align: start;
}

.orm-tools-training .container.orm-hero .container .orm-hero-title h1 {
    margin-bottom: 20px;
}

.orm-tools-training .container .orm-tools .items {
    padding: 10px 0;
    justify-self: center;
}
.orm-tools-training .container .orm-tools .items ul {
    padding: 0 5px;
    margin: 0;
}

.orm-tools-training .container .orm-tools .items .item {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.orm-tools-training .container .orm-tools .items .item .item-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.orm-tools-training .container .orm-tools-image {
    position: relative;
    z-index: 1 !important;
    width: 90%;
    max-width: 450px;
    justify-self: center;
    aspect-ratio: 1 / 1;
    margin-top: 20px;
}
.orm-tools-training .container .orm-tools-image::before {
    content: '';
    position: absolute;
    width: 90%;
    height: 60%;
    background-color: #ff6f3c;
    bottom: -7%;
    right: -7%;
    z-index: -1;
}
.orm-tools-training .container .orm-tools-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
p.price-show {
    color: #1A3E5C;
    font-weight: 600;
    font-size: 20px;
} 

@media only screen and (max-width: 1024px) {
    .orm-tools-training .container {
        display: flex;
        flex-direction: column-reverse;
    }
    .orm-tools-training .container .orm-tools-image {
        margin-top: 0;
        margin-bottom: 48px;
    }
}

@media only screen and (max-width: 768px) {
    .orm-tools-training .container {
        margin-bottom: 32px;
    }
}


/* --------------------------------------------- */
/* ---------- IMAGE COMPARISON SECTION --------- */
/* --------------------------------------------- */

.orm-transformation {
    background: radial-gradient(circle at 10% 90px, rgba(255, 102, 0, 0.3), transparent 300px), radial-gradient(circle at 100% 250px, rgba(255, 102, 0, 0.3), transparent 300px), #1a3e5c;
    padding: 64px 0 32px 0;
    display: grid;
    place-items: center;
}

.orm-transformation .container{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.orm-transformation .container h2{
    text-wrap: balance;
    text-align: center;
    color: white;
}

.orm-transformation .container .orm-transformation-container{
    position: relative;
    display: grid;
    place-content: center;
    overflow: hidden;    
    --position: 40%;
    max-width: 800px;
    max-height: 80vh;
    aspect-ratio: 16/9;
}

.orm-transformation .slider-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.orm-transformation .image-before {
    position: absolute;
    inset: 0;
    width: var(--position);
    object-position: left;
}

.orm-transformation .slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    cursor: ew-resize;
    opacity: 0;
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
}

.orm-transformation .slider-line {
    position: absolute;
    inset: 0;
    width: 0.2rem;
    height: 100%;
    border: 2px dashed white;
    background-color: transparent;
    left: var(--position);
    transform: translateX(-50%);
    pointer-events: none;
}

.orm-transformation .transformation-slider-button {
    position: absolute;
    border-radius: 50%;
    display: grid;
    place-items: center;
    top: 50%;
    left: var(--position);
    transform: translate(-50%, -50%);
    pointer-events: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
/* ---------connected with img comparison------- */
/* -------- THREE CARDS UNDER COMPARISON ------- */
/* --------------------------------------------- */
.orm-transformation-cards-container {
    display: flex;
    justify-content: center;
}

.orm-transformation-cards-container .inner-container-cards {
    margin: 24px 0;
    display: grid;
    grid-template-columns: 33.6% 33.6% 33.6%;
    position: relative;
}

.timeline-square {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background-color: #FF6600;
    transform: translateY(-50%);
}

.timeline-arrow {
    position: absolute;
    top: 1px;
    right: 1px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 30px solid #FF6600;
    transform: translate(100%, -50%);
}

.orm-transformation-cards-container .inner-container-cards .card.card-1,
.orm-transformation-cards-container .inner-container-cards .card.card-3 {
    border-top: 3px solid #FF6600;
}
.orm-transformation-cards-container .inner-container-cards .card.card-2 {
    border-top: 3px solid transparent;
    border-left: 3px solid #FF6600;
    border-right: 3px solid #FF6600;
    border-bottom: 3px solid #FF6600;
}

.orm-transformation-cards-container .inner-container-cards .card .card-container {
    padding: 15px;
    padding-top: 10px;
    margin: 20px;
}

.orm-transformation-cards-container .inner-container-cards .card .card-container.c-3 {
    background-color: rgba(255, 255, 255, 0.05);
}

.orm-transformation-cards-container .inner-container-cards .card .card-icon-wrapper {
    margin-bottom: 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: start;
}

.orm-transformation-cards-container .inner-container-cards .card .card-icon-wrapper img {
    background-color: #1A3E5C;
    width: 72px;
    height: 72px;
}

.orm-transformation-cards-container .inner-container-cards .card h2 {
    margin-bottom: 15px;
    font-size: 24px;
    text-align: start;
    color: white;
}

.orm-transformation-cards-container .inner-container-cards .card p {
    font-size: 18px;
    color: white;
}

@media only screen and (max-width: 1200px) {
    .orm-transformation-cards-container .inner-container-cards .card .card-container {
        padding: 15px;
        padding-top: 10px;
        margin: 10px;
    }
}

@media only screen and (max-width: 1024px) {
    .orm-transformation-cards-container .inner-container-cards .card .card-container {
        padding: 10px 15px 0 15px;
    }

    .orm-transformation-cards-container .inner-container-cards .card .card-container.c-3 {
        padding: 10px 15px 15px 15px;
    }

    .orm-transformation-cards-container .inner-container-cards .card .card-icon-wrapper img {
        width: 64px;
        height: 64px;
    }

    .orm-transformation-cards-container .inner-container-cards {
        grid-template-columns: auto;
    }

    .timeline-square {
        position: absolute;
        top: 0;
        left: -9px;
    }

    .timeline-arrow {
        position: absolute;
        top: initial;
        bottom: -10px;
        left: 0;
        right: initial;
        width: 0;
        height: 0;
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-top: 30px solid #FF6600;
        border-bottom: none;
        transform: translate(-43%, 50%);
    }

    .orm-transformation-cards-container .inner-container-cards .card.card-1,
    .orm-transformation-cards-container .inner-container-cards .card.card-3 {
        border-top: 3px solid transparent;
        border-left: 3px solid #FF6600;
    }
    .orm-transformation-cards-container .inner-container-cards .card.card-2 {
        border-left: 3px solid transparent;
        border-top: 3px solid #FF6600;
        border-right: 3px solid #FF6600;
        border-bottom: 3px solid #FF6600;
    }
}







