section.offshore-development {
    padding: 60px 0 120px;
    position: relative;

    &.shine:before {
        content: '';
        position: absolute;
        bottom: -200px;
        right: 0;
        width: 100%;
        max-width: 900px;
        height: 1000px;
        background: url(../../img/offshore-development-shine.png) left 50% / contain no-repeat;
        filter: blur(112px);
        pointer-events: none;
    }

    .container {
        position: relative;
    }

    &.background-dark {
        color: #DADADA;

        .item-title,
        h2 {
            color: #FFFFFF;
        }
    }

    h2 {
        margin: 0;
    }

    .tabs {
        margin-top: 40px;
        display: flex;
        justify-content: space-between;
        gap: 10px;

        .item {
            font-size: 14px;
            font-weight: 700;
            line-height: 1.28em;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            padding: 16px 20px;
            border-radius: 8px;
            border: 1px solid #ADADAD;
            white-space: nowrap;
            cursor: url(../../assets/img/cursors/cursor-hover.svg) 6 6, auto;
            -webkit-touch-callout: none;
            -webkit-user-select: none;
            -khtml-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        .item.active {
            color: #FFFFFF;
            border-color: #F9371C;
        }

        .item:hover {
            color: #FFFFFF;
        }
    }

    .contents {
        margin-top: 40px;

        .content {
            display: flex;
            visibility: hidden;
            height: 0;
            opacity: 0;
            justify-content: space-between;
            gap: 28px;
            transition: opacity 0.2s linear;

            > div {
                flex: 1;
            }

            .item {
                display: flex;
                flex-direction: column;
                gap: 20px;
            }
        }

        .content.active {
            visibility: visible;
            height: auto;
            opacity: 1;
        }

        ul {
            margin: 0 0 0 10px;
        }
    }

    .item-title {
        font: 400 20px/1.6em "Benzin Bold", sans-serif;
        letter-spacing: 1.5px;
        text-transform: uppercase;
    }

    .item-description {
        font-size: 16px;
        line-height: 1.5em;
        margin-top: 4px;
    }

    .item-content {
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.06);
        padding: 24px;
        flex: 1;
    }

    .item-image {
        border-radius: 16px;
        overflow: hidden;
        height: 240px;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    .button-row {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-top: 40px;

        .button {
            padding: 0;
        }

        .button-pretext {
            font-size: 18px;
            font-weight: 700;
            line-height: 1.44em;
            letter-spacing: 1px;
            text-align: center;
            width: 100%;
            max-width: 464px;
            color: #fff;
        }

        .btn {
            font-weight: 700;
            text-transform: uppercase;
            white-space: nowrap;
            padding: 16px 48px;
        }
    }
}


/* MEDIA */

@media only screen and (max-width: 1100px) {
    section.offshore-development .tabs {
        .item {
            font-size: 13px;
            padding: 14px 10px;
        }
    }
}

/* ( < 1200 ) */


@media only screen and (max-width: 991px) {
    section.offshore-development {
        .title {
            max-width: 554px;
        }

        .tabs {
            margin-top: 32px;

            .item {
                font-size: 14px;
                padding: 16px;
            }

            .slick-list .slick-track {
                display: flex;
                gap: 20px;
            }

            .slick-slide .item {
                text-align: center;
            }

            .button-row {
                flex-wrap: wrap;
                margin-top: 32px;
                justify-content: center;
            }

            .btn {
                text-align: center;
            }
        }

        .item-title {
            font-size: 16px;
        }
    }
}

/* ( < 991 ) */


@media only screen and (max-width: 768px) {
    section.offshore-development {
        padding: 40px 0 80px;

        .contents {
            margin-top: 24px;

            .content {
                flex-wrap: wrap;
                row-gap: 24px;

                > div {
                    min-width: 100%;
                }

                .item {
                    gap: 12px;
                }
            }
        }

        .button-row {
            flex-wrap: wrap;

            > div {
                width: 100%;
            }
        }
    }
}

/* ( < 768 ) */


@media only screen and (max-width: 567px) {
    section.offshore-development {
        .title {
            max-width: 334px;
        }

        .button-row {
            margin-top: 32px;

            .btn {
                display: block;
                width: 100%;
            }
        }
    }
}

/* ( < 567 ) */
