.line-wrapper {
    padding-bottom: 59px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.events-slider-wrapper {
    margin-top: 60px;
    margin-left: 96px !important;
    margin-right: 96px !important;

    h2 {
        color: #000;
        font-size: 40px;
        font-weight: normal;
    }

    .link {
        margin-bottom: 40px !important;
        
        a {
            text-decoration: none !important;
            color: #000 !important;

            &:after {
                content: "";
                display: inline-block; 
                width: 16px;
                height: 12px; 
                background-image: url(../icons/link-arrow.svg);
                background-size: cover;
                background-repeat: no-repeat;
                margin-left: 10px; 
                transition: transform 0.3s ease;
            }

            &:hover:after {
                transform: translateX(5px);
            }
        }
    }

    .over-slider {
        z-index: 2;
    }

    .slick-prev {
        left: -25px;
        z-index: 2;
    }

    .slick-prev {
        border-radius: 0;
        box-shadow: none;
        left: -100px;
        top: 0;
        margin-top: 9px;

        &::before {
            content: '' !important;
            background-image: url(../icons/slider-button-2.svg);
            display: inline-block; 
            width: 60px;
            height: 60px; 
            background-size: cover;
            background-repeat: no-repeat;
            opacity: 0.9;
        }

        &:hover {
            opacity: 0.8;
        }

        &:focus {
            opacity: 0.8;
        }
    }

    .slick-next {
        border-radius: 0;
        box-shadow: none;
        left: -100px;
        top: 0;
        margin-top: 75px;

        &::before {
            content: '' !important;
            background-image: url(../icons/slider-button-1.svg);
            display: inline-block; 
            width: 60px;
            height: 60px; 
            background-size: cover;
            background-repeat: no-repeat;
            opacity: 0.9;
        }

        &:hover {
            opacity: 0.8;
        }

        &:focus {
            opacity: 0.8;
        }
    }

    .slick-next.slick-disabled {
        &::before {
            background-image: url(../icons/slider-button-1-gray.svg);
            opacity: 1;
        }

        &:hover {
            opacity: 1;
        }

        &:focus {
            opacity: 1;
        }
    }

    .slick-disabled {
        &::before {
            background-image: url(../icons/slider-button-2-grey.svg);
            opacity: 1;
        }

        &:hover {
            opacity: 1;
        }

        &:focus {
            opacity: 1;
        }
    }
    
    .slick-slide {
        margin: 0 32px 0 0;
    }

    .slick-list {
        margin: 0 -32px 0 0;
    }
    
    .slick-list::after {
        content: ' ';
        position: absolute;
        top: 0px;
        bottom: 0px;
        width: 4000px;
        right: 100%;
        background-color: white;
    }

    .item {
        a {
            text-decoration: none;
            color: #000;

            &:hover {
                .item-title {
                    text-decoration: underline;
                }
            }
        }

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

        .item-category {
            font-size: 14px;
            margin-bottom: 16px;
        }

        .item-category .title {
            background-color: rgba(158, 121, 77, 0.10);
            padding: 5px 7px 5px 7px;
            color: #041F33;
        }

        .item-day, .item-month, .item-time {
            font-size: 20px;
        }

        .item-time {
            margin-bottom: 36px;
        }

        .item-location {
            font-size: 14px;
            margin-bottom: 16px;
            
            .title {
                padding: 5px 7px 5px 7px;
                color: #041F33;
            }
        }

        .item-link {
            height: 40px;

            a {
                text-decoration: none;
                font-size: 14px;
                color: #041F33;
                border: 1px solid #041F33;
                padding: 10px;
        
                &:after {
                    content: "";
                    display: inline-block; 
                    width: 16px;
                    height: 12px; 
                    background-image: url(../icons/news-item-link.svg);
                    background-size: cover;
                    background-repeat: no-repeat;
                    margin-left: 10px; 
                }
        
                &:hover {
                    content: "";
                    background-color: #041F33;
                    color: #fff;
                    transition: all .2s linear;
                }
        
                &:hover::after {
                    background-image: url(../icons/news-item-link-white.svg);
                    transition: all .2s linear;
                }
            }
        }
    }
}

@media (max-width: 768px) {
    .events-slider-wrapper {
      margin-left: 0 !important;
      margin-right: 0 !important;
    }
}