:root {
    --page-text-color: #0B0C0D;
    --page-secondary-bg: #003054;
    --page-primary-bg: #F6F8F9;
    --fade-blue: #E4F1FF;
    --fade-purple: #E4E7FF;
    --fade-yellow: #FAF1E3;
    --fade-orange: #FFE7D9;
}

.page-text-color {
    color: var(--page-text-color);
}

.page-secondary-bg {
    background-color: var(--page-secondary-bg);
}

.page-primary-bg {
    background: var(--page-primary-bg);
}

/* Hero Section */

.hero-section {
    background-image: url(../images/mlops-images/banner-intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
}

.circle-icon,
.border-0 {
    border: none;
}

/* Counter */

.counter {
    padding: 60px 0;
    color: var(--white-color);
}

.counter-theme {
    color: var(--page-text-color);
    border-right: 1px solid #dddddd50;
}

.counter-text {
    color: var(--primary-color-600);
}

/* Services Wrapper */

.consulting-intro {
    background-color: var(--page-primary-bg);
}

.bordered-card {
    padding: 30px 30px;
    border: 1px solid #00305420;
}

.img-wrap {
    width: 100%;
    max-width: 55px;
    margin: 0 0 30px;
}

.process-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    padding: 30px 30px;
    border: 1px solid #00305420;
}


/* Process Wrapper */

.develop-card {
    padding: 30px 30px 0;
    background: var(--fade-blue);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.develop-card.fade-blue {
    color: #2A496B;
}

.develop-card.fade-purple {
    color: #5D66AB;
    background: var(--fade-purple);
}

.develop-card.fade-yellow {
    color: #4F340A;
    background: var(--fade-yellow);
}

.develop-card.fade-blue ul li::before {
    border-bottom: 9px solid #2A496B;
}

.develop-card.fade-purple ul li::before {
    border-bottom: 9px solid #5D66AB;
}

.develop-card.fade-yellow ul li::before {
    border-bottom: 9px solid #4F340A;
}

.develop-card ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.develop-card ul li {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 0 0 28px;
}

.develop-card ul li::before {
    content: '';
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    inset: 0;
    position: absolute;
    width: 0;
    height: 0;
    rotate: 90deg;
    margin: 12px 0 auto;
}

/* Tech Stack */

.tech-stack {
    background-image: url(../images/mlops-images/tech-bg.webp);
    background-color: var(--page-text-color);
    background-position: center;
    background-size: cover;
}

.tech-wrappper {
    background-color: var(--white-color);
    padding: 30px 30px;
    text-align: center;
    transition: all 0.3s;
    width: 100%;
}

.tech-wrappper:hover {
    transform: translateY(-5px);
}

.tech-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    text-align: -webkit-match-parent;
}

.tech-list li {
    text-align: center;
}

.tech-list li p {
    font-size: 14px;
}

.tech-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    min-width: 70px;
    border: 1px solid #DEDEDE;
    border-radius: 50px;
    margin: 0 auto 8px;
}

/* Tiles */

.tiles-card {
    padding: 30px 30px;
    background: #E8F0FF;
}

.tiles-card.tile-2 {
    background: #E5F8FF;
}

.tiles-card.tile-3 {
    background: #F4F2FF;
}

.tiles-card.tile-4 {
    background: #FAF1E3;
}

.tiles-card.tile-5 {
    background: #FFE7D9;
}

.tiles-card.tile-6 {
    background: #E0EDFF;
}

/* Cta Section */

.cta-theme {
    background-color: var(--page-secondary-bg);
    padding: 80px 80px;
    position: relative;
    background-image: url(../images/mlops-images/cta-shape.webp);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 400px;
}

.cta-theme.shape-2 {
    background-image: url(../images/mlops-images/cta-shape-2.webp);
    background-size: 700px;
}

.cta-theme.shape-3,
.cta-theme.shape-4 {
    background-image: unset;
}

.cta-theme.shape-4 img {
    margin: -200px 0 0;
}

/* Responsive */


@media (max-width: 1599px) {
    .padding-left {
        --page-width: 1200px;
        padding-left: calc(50% - (var(--page-width) / 2) + 12px);
    }
}

@media only screen and (max-width: 1599px) {

    .cta-theme {
        padding: 50px 50px;
        background-size: 350px;
    }

    .cta-theme.shape-2 {
        background-size: 500px;
    }

    .tech-img {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .tech-wrappper,
    .tiles-card,
    .process-card,
    .bordered-card {
        padding: 20px 20px;
    }

    .develop-card {
        padding: 20px 20px 0;
    }

    .tech-list {
        gap: 10px;
    }
}

@media only screen and (max-width: 1200px) {

    .cta-theme.shape-4 img {
        margin: -130px 0 0;
    }
}

@media only screen and (max-width: 992px) {

    .tech-img {
        width: 50px;
        height: 50px;
        min-width: 50px;
        padding: 4px;
    }

    .cta-theme.shape-4 img {
        margin: auto;
    }
}

@media only screen   and (max-width: 767px) {

    .border-end {
        border: none !important;
    }

    .cta-theme {
        padding: 30px 30px;
    }

    .cta-theme.shape-2,
    .cta-theme {
        background-image: unset;
    }
}

@media only screen and (max-width: 600px) {

}