.industries-block {
    --green-dark: #087f79;
    --green: #2d9f72;
    --green-light: #91c73e;

    width: 100%;
    margin: 0;
    padding: 0;

    background: #fff;

    font-family: Manrope, sans-serif;
    box-sizing: border-box;
}

.industries-block *,
.industries-block *::before,
.industries-block *::after {
    box-sizing: border-box;
}


/* =========================================================
   INTRO
   ========================================================= */

.industries-block__intro {
    width: 100%;

    background: linear-gradient(
            101.11deg,
            #006B82 -12.65%,
            #91C73E 126%
    );
}

.industries-block__intro-inner {
    width: 100%;
    max-width: 1440px;
    min-height: 220px;

    margin: 0 auto;
    padding: 76px 120px 32px;
}

.industries-block__title {
    margin: 0;

    color: #fff;

    font-family: Manrope, sans-serif;
    font-size: 48px;
    font-weight: 500;
    font-style: normal;
    line-height: 100%;
}

.industries-block__description {
    max-width: 700px;

    margin: 18px 0 0;

    color: #fff;

    font-family: Manrope, sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    line-height: 130%;
    letter-spacing: 0;
}


/* =========================================================
   CONTENT
   ========================================================= */

.industries-block__content {
    width: 100%;

    background: #fff;
}

.industries-block__columns {
    width: 100%;
    max-width: 1440px;
    min-height: 394px;

    margin: 0 auto;
    padding: 34px 120px 28px;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 44px;

    /*
     * Позволяет вертикальный scroll страницы,
     * но не блокирует горизонтальный swipe.
     */
    touch-action: pan-y;
}


/* =========================================================
   COLUMN
   ========================================================= */

.industries-block__column {
    min-width: 0;

    display: flex;
    flex-direction: column;
}


/* =========================================================
   INDUSTRY TITLE
   ========================================================= */

.industries-block__column-title {
    width: fit-content;

    margin: 0 0 24px;

    background: linear-gradient(
            101.11deg,
            #2ABCDC -12.65%,
            #91C73E 126%
    );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    font-family: Manrope, sans-serif;
    font-size: 12px;
    font-weight: 600;
    font-style: normal;
    line-height: 130%;
    letter-spacing: 2%;
    text-transform: uppercase;
}


/* =========================================================
   INDUSTRY DESCRIPTION
   ========================================================= */

.industries-block__column-description {
    height: 62px;
    min-height: 62px;

    margin: 0 0 18px;

    overflow: hidden;

    color: #050505;

    font-family: Manrope, sans-serif;
    font-size: 18px;
    font-weight: 500;
    font-style: normal;
    line-height: 125%;
    letter-spacing: -0.3px;
}


/* =========================================================
   ITEMS
   ========================================================= */

.industries-block__items {
    width: 100%;
}

.industries-block__item {
    width: 100%;

    padding: 7px 0;

    border-bottom: 1px solid #e1e5e5;

    color: #666;

    font-family: Manrope, sans-serif;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    line-height: 130%;
    letter-spacing: 0;
}

.industries-block__item:first-child {
    border-top: 1px solid #e1e5e5;
}


/* =========================================================
   CASES
   ========================================================= */

.industries-block__cases {
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 8px;

    margin-top: 20px;
}

.industries-block__case {
    position: relative;

    width: 100%;
    min-height: 55px;

    padding: 12px 38px 11px 14px;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    border: 1px solid #e1e5e5;

    color: inherit;
    text-decoration: none;

    background: #fff;

    transition:
            border-color 0.2s ease,
            box-shadow 0.2s ease;
}

.industries-block__case:hover {
    border-color: #2abcdc;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.industries-block__case-content {
    min-width: 0;
}

.industries-block__case-title {
    color: #14ad7b;

    font-family: Manrope, sans-serif;
    font-size: 18px;
    font-weight: 500;
    font-style: normal;
    line-height: 130%;
    letter-spacing: 0;
}

.industries-block__case-description {
    margin-top: 5px;

    color: #666;

    font-family: Manrope, sans-serif;
    font-size: 12px;
    font-weight: 400;
    font-style: normal;
    line-height: 130%;
    letter-spacing: 0;
}

.industries-block__case-arrow {
    position: absolute;

    top: 13px;
    right: 13px;

    color: #14ad7b;

    font-family: Manrope, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
}


/* =========================================================
   LEARN MORE
   ========================================================= */

.industries-block__learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    width: fit-content;

    margin-top: auto;
    padding-top: 26px;

    color: #111;

    font-family: Manrope, sans-serif;
    font-size: 18px;
    font-weight: 500;
    font-style: normal;
    line-height: 130%;
    letter-spacing: 0;

    text-decoration: none;
}

.industries-block__learn-more span:last-child {
    color: #14ad7b;

    font-size: 18px;
    line-height: 1;
}

.industries-block__learn-more:hover {
    color: #14ad7b;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.industries-block__navigation {
    display: none;

    width: 100%;
    height: 70px;

    padding: 0 16px;

    align-items: center;
    justify-content: space-between;

    background: linear-gradient(
            101.11deg,
            #087f79 -12.65%,
            #91C73E 126%
    );
}

.industries-block__navigation-button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    margin: 0;
    padding: 0;

    border: 0;
    outline: 0;

    color: #fff;
    background: transparent;

    font-family: Arial, sans-serif;
    font-size: 36px;
    font-weight: 300;
    line-height: 1;

    cursor: pointer;

    -webkit-tap-highlight-color: transparent;
}

.industries-block__navigation-button:focus {
    outline: none;
}

.industries-block__navigation-button:active {
    transform: scale(0.94);
}


/* =========================================================
   INTRO FOOTER
   ========================================================= */

.industries-block__intro-footer {
    display: none;

    width: 100%;

    background: linear-gradient(
            101.11deg,
            #006B82 -12.65%,
            #91C73E 126%
    );
}

.industries-block__intro-footer-inner {
    width: 100%;
    max-width: 1440px;
    min-height: 82px;

    margin: 0 auto;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .industries-block__intro-inner {
        min-height: 220px;

        padding: 64px 64px 28px;
    }

    .industries-block__title {
        max-width: 650px;

        font-size: 34px;
    }

    .industries-block__description {
        max-width: 560px;

        font-size: 16px;
    }


    /* -----------------------------------------------------
       Columns
       ----------------------------------------------------- */

    .industries-block__columns {
        min-height: 400px;

        padding: 32px 64px 28px;

        display: block;

        /*
         * JS устанавливает реальную одинаковую высоту.
         * Не задаём фиксированный height здесь.
         */
        overflow: hidden;

        touch-action: pan-y;
    }


    /* -----------------------------------------------------
       Columns visibility
       ----------------------------------------------------- */

    .industries-block__column {
        display: none;
    }

    .industries-block__column.is-active {
        display: flex;
    }


    /* -----------------------------------------------------
       Industry
       ----------------------------------------------------- */

    .industries-block__column-title {
        margin-bottom: 22px;
    }

    .industries-block__column-description {
        height: auto;
        min-height: 62px;

        max-width: 600px;

        font-size: 18px;
    }


    /* -----------------------------------------------------
       Items
       ----------------------------------------------------- */

    .industries-block__items {
        max-width: 600px;
    }

    .industries-block__item {
        font-size: 14px;
    }


    /* -----------------------------------------------------
       Cases
       ----------------------------------------------------- */

    .industries-block__cases {
        max-width: 600px;
    }


    /* -----------------------------------------------------
       Navigation
       ----------------------------------------------------- */

    .industries-block__navigation {
        display: flex;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .industries-block__intro-inner {
        min-height: 222px;

        padding: 58px 16px 26px;
    }

    .industries-block__title {
        max-width: 330px;

        font-size: 32px;
        line-height: 125%;
        letter-spacing: -0.3px;
    }

    .industries-block__description {
        max-width: 310px;

        margin-top: 12px;

        font-size: 16px;
        line-height: 135%;
    }


    /* -----------------------------------------------------
       Columns
       ----------------------------------------------------- */

    .industries-block__columns {
        min-height: 400px;

        padding: 30px 16px 24px;

        display: block;

        overflow: hidden;

        /*
         * JS устанавливает одинаковую высоту
         * для всех состояний.
         */
        touch-action: pan-y;
    }


    /* -----------------------------------------------------
       Industry
       ----------------------------------------------------- */

    .industries-block__column-title {
        margin-bottom: 20px;

        font-size: 12px;
        line-height: 130%;
        letter-spacing: 2%;
    }

    .industries-block__column-description {
        height: auto;
        min-height: 56px;

        max-width: 310px;

        margin-bottom: 18px;

        font-size: 16px;
        line-height: 125%;
    }


    /* -----------------------------------------------------
       Items
       ----------------------------------------------------- */

    .industries-block__item {
        padding: 7px 0;

        font-size: 14px;
        line-height: 130%;
    }


    /* -----------------------------------------------------
       Cases
       ----------------------------------------------------- */

    .industries-block__cases {
        gap: 8px;

        margin-top: 18px;
    }

    .industries-block__case {
        min-height: 55px;

        padding: 12px 34px 10px 10px;
    }

    .industries-block__case-title {
        font-size: 14px;
    }

    .industries-block__case-description {
        margin-top: 5px;

        font-size: 9px;
    }

    .industries-block__case-arrow {
        top: 13px;
        right: 12px;

        font-size: 17px;
    }


    /* -----------------------------------------------------
       Learn more
       ----------------------------------------------------- */

    .industries-block__learn-more {
        margin-top: auto;
        padding-top: 26px;

        font-size: 14px;
    }

    .industries-block__learn-more span:last-child {
        font-size: 17px;
    }


    /* -----------------------------------------------------
       Navigation
       ----------------------------------------------------- */

    .industries-block__navigation {
        height: 108px;

        padding: 0 16px;
    }

    .industries-block__navigation-button {
        width: 42px;
        height: 42px;

        font-size: 36px;
    }
}


/* =========================================================
   DESKTOP FOOTER
   ========================================================= */

@media (min-width: 1101px) {

    .industries-block__intro-footer {
        display: block;
    }
}