.chooseContentWrap {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;

    .chooseItem {
        width: 100%;
        max-width: 25%;
        flex: 0 0 25%;
        -ms-flex: 0 0 25%;
        padding: 15px;
        position: relative;

        &::after {
            width: 1px;
            height: 80%;
            position: absolute;
            content: "";
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.25);
        }

        &::before {
            width: 80%;
            height: 1px;
            position: absolute;
            content: "";
            right: auto;
            left: 50%;
            top: 100%;
            transform: translateX(-50%);
            background-color: rgba(0, 0, 0, 0.25);
        }

        &:last-child,
        &:nth-child(4n) {
            &:after {
                display: none;
            }
        }

        &:nth-last-child(1),
        &:nth-last-child(2),
        &:nth-last-child(3),
        &:nth-last-child(4) {
            &::before {
                display: none;
            }
        }

        .chooseInner {
            height: 100%;
            padding: 20px;
            border-radius: 15px;
            transition: 0.5s;

            .chooseIcon {
                width: 60px;
                height: 60px;
                border-radius: 10px;
                margin: 0 auto;
                margin-bottom: 10px;
            }

            .chooseTxt {
                text-align: center;
            }
        }

        &:hover {
            .chooseInner {
                background-color: #077745;

                .chooseTxt {
                    p {
                        color: #fff;
                    }
                }
            }
        }
    }
}

.slick-arrow {
    position: absolute;
    font-size: 0px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transform: translateX(-50%);
    transition: 0.5s;
    background-color: #D9D9D9;
    border: none;
    transform: translateX(-50%);
    transition: 0.5s;
    bottom: -90px;
    top: auto;

    &.slick-next {
        right: calc(50% - 60px);
        background: url(../images/right_arrow_icon_right.png) no-repeat center center #D9D9D9;
        background-size: 80%;
        transform: none;
    }

    &.slick-prev {
        left: calc(50% - 60px);
        background: url(../images/left_arrow_icon_black.png) no-repeat center center #D9D9D9;
        background-size: 80%;
        transform: none;
    }

    &:hover {
        &.slick-next {
            background: url(../images/right_arrow_icon.png) no-repeat center center #00B565;
            background-size: 80%;
        }

        &.slick-prev {
            background: url(../images/left_arrow_icon.png) no-repeat center center #00B565;
            background-size: 80%;
        }
    }
}

.projectSlider {
    & .slick-arrow {
        z-index: 2;
        bottom: 20px;

        &.slick-next {
            right: 30px;
        }

        &.slick-prev {
            left: auto;
            right: 100px;
        }
    }
}

.projectWrap {
    & .projectItem {
        & .projectImg {
            &::before {
                width: 100%;
                height: 100%;
                position: absolute;
                top: 0;
                left: 0;
                background-image: linear-gradient(180deg, transparent 0 57%, #000000 96% 100%);
                content: "";
                background-color: transparent;
            }
        }
    }
}

@media screen and (max-width: 1366px) {
    .detailsBoxWrap {
        .headingWrap {
            margin-bottom: 30px !important;
        }
    }
}

@media screen and (max-width: 1200px) {
    .detailsBoxWrap {
        .aboutImgWrap {
            top: 100px;
            position: sticky;
        }
    }
}

@media screen and (max-width: 1100px) {
    .chooseContentWrap {
        .chooseItem {
            width: 100%;
            max-width: 33.33%;
            flex: 0 0 33.33%;
            -ms-flex: 0 0 33.33%;

            &:nth-child(3),
            &:nth-child(6) {
                &::after {
                    display: none;
                }
            }

            &:nth-child(4) {
                &::after {
                    display: block;
                }
            }

            &:nth-child(5) {
                &::before {
                    display: block;
                }
            }
        }
    }
}

@media screen and (max-width: 991px) {
    .p_40 {
        padding: 20px;
    }

    .detailsBoxWrap {
        .headingWrap {
            margin-bottom: 10px !important;
        }

        .row {
            flex-direction: column-reverse;

            .col-md-6 {
                width: 100%;
                max-width: 100%;

                .aboutImgWrap {
                    padding-left: 0;
                    margin-bottom: 40px;
                }
            }
        }
    }

    .chooseContentWrap {
        & .chooseItem {
            .chooseInner {
                padding: 0px;
            }
        }
    }

    .projectWrap {
        & .projectItem {
            .projectImg {
                border-radius: 30px;
            }
        }
    }
}

@media screen and (max-width: 768px) {
    .chooseContentWrap {
        .chooseItem {
            max-width: 50%;
            flex: 0 0 50%;
            -ms-flex: 0 0 50%;

            &::before {
                display: block !important;
            }

            &:nth-child(even) {
                &::after {
                    content: normal;
                }
            }

            &:nth-child(3) {
                &::after {
                    display: block;
                }
            }

            &:nth-last-child(1),
            &:nth-last-child(2) {
                &::before {
                    display: none !important;
                }
            }
        }
    }

    .projectWrap {
        padding: 0 0 60px;

        & .projectItem {
            & .projectInner {
                a {
                    font-size: 20px;
                }
            }
        }
    }

    .slick-arrow {
        width: 40px;
        height: 40px;
        background-size: 70% !important;
    }

    .projectSlider {
        & .slick-arrow {
            bottom: -50px;

            &.slick-prev {
                left: calc(50% - 50px);
                right: auto;
            }

            &.slick-next {
                right: calc(50% - 50px);
            }
        }
    }    
    .chooseContentWrap {
        & .chooseItem {
            &:hover {
                .chooseInner {
                    background-color: transparent;
                    & .chooseTxt {
                        p {
                            color: #000;
                        }
                    }
                }
            }
        }
    }
}

@media screen and (max-width: 575px) {
    .chooseContentWrap {
        .chooseItem {
            max-width: 100%;
            flex: 0 0 100%;
            padding: 15px 0;
            -ms-flex: 0 0 100%;

            &::before {
                display: block !important;
            }

            &::after {
                content: normal;
            }

            &:nth-last-child(2) {
                &::before {
                    display: block !important;
                }
            }

            &:nth-last-child(1) {
                &::before {
                    display: none !important;
                }
            }
        }
    }

    .projectWrap {
        & .projectItem {
            .projectImg {
                border-radius: 28px;
            }

            & .projectInner {
                a {
                    font-size: 18px;
                }
            }
        }
    }
}