/* Примеры проектов */

.d-none {
    display: none;
}

.examples {
    background: #20212E;
    color: #fff;
}

.examples .container {
    max-height: 475px;
    overflow: hidden;
}

div.h2 {
    color: #fff;
}

.title__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 68px;

    max-width: 1366px;
    width: 100%;
    padding: 0 20px;
}

.arrows__container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider__arrow {
    padding: 24px;
    color: #fff;
    background: #36c0c2;
    display: inline-block;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: .3s;
}

.slider__arrow:hover {
    background: #33afb1;
}

.slider__arrow.slick-disabled {
    cursor: wait;
    background: #E4E5EA;
    color: #000;
}

.slider__arrow_left::before {
    content: "\2039";
    position: absolute;
    top: 0;
    right: 42%;
    font-size: 35px;
    transition: .3s;
}

.slider__arrow_right::before {
    content: "\203A";
    position: absolute;
    top: 0;
    right: 36%;
    font-size: 35px;
    transition: .3s;
}

.project-examples__slider_item {
    max-width: 1346px;
    display: flex !important;
    justify-content: space-between;
    gap: 24px;
}

.images__container {
    max-width: 616px;
    width: 100%;
}

.images__container img {
    border-radius: 16px;
    width: 100%;
}

.description__container {
    max-width: 610px;
    width: 100%;
}

.description__title {
    text-transform: none;
    color: #f5f5f5;
    font-size: 34px;
    font-weight: 400;
    line-height: 47px;
    margin-bottom: 32px;
}

.description__text {
    color: #f5f5f5;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}

.description__content {
    margin-bottom: 30px;
}

.buttons__container {
    max-width: 480px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.buttons__container a {
    position: relative;
    color: #f5f5f5;
    margin-left: 24px;

    font-size: 16px;
    font-weight: 500;
}

.buttons__container a:before {
    content: '';
    width: 14px;
    height: 14px;
    background: #36C0C2;
    position: absolute;
    top: 4px;
    left: -24px;
}

ul li {
    position: relative;
    color: #f5f5f5;

    font-size: 16px;
    font-weight: 400;
}

ul li:before {
    content: '';
    width: 12px;
    height: 12px;
    background: #36C0C2;
    border-radius: 50%;
    position: absolute;
    top: 4px;
    left: 0px;
}

@media screen and (max-width: 1000px) {
    .examples .container {
        max-height: 100%;
        overflow: hidden;
    }

    .project-examples__slider_item {
        flex-direction: column;
    }

    .images__container {
        max-width: 100%;
    }

    .description__container {
        max-width: 100%;
    }

    .buttons__container {
        max-width: 100%;
    }

    .description__title {
        font-size: 18px;
        line-height: 24px;
    }

    .description__text {
        font-size: 14px;
    }
}


/* Стоимость и сроки разработки */

.cost .container .tr {
    text-align: left;
}

.cost .container .h2,
.cost .container-nogrid .h2
{
    color: #000;
    margin-bottom: 26px;
}

.cost .container-nogrid {
    max-width: 1366px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.cost.stages .caption_desc {
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 28px;
}

.cost__list {
    position: relative;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    margin-left: 36px;
    margin-bottom: 12px;
}

.cost__list:before {
    content: '';
    background: #36C0C2;
    width: 27px;
    height: 27px;
    position: absolute;
    top: 0;
    left: -36px;
}

.cost__image {
    object-fit: cover;
    max-width: 553px;
    width: 100%;
    max-height: 623px;
    height: 100%;
}

@media screen and (max-width: 1000px) {
    .cost.stages .container {
        grid-template-columns: 1fr;
    }
    .cost__image {
        display: none;
    }
}