.side-by-side-lg {
    max-width: 1260px;
    margin: 0 auto 35px;
}

.side-by-side-lg .slides {
    position: relative;
    max-width: 1175px;
    margin: 0 auto;
}

.side-by-side-lg .arrows {
    position: absolute;
    padding-top: 95%;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.side-by-side-lg .arrows > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 25px;
    height: 50px;
    background-color: var(--yellow);
    pointer-events: all;
}

.side-by-side-lg .arrows button {
    padding: 0;
    margin: 0;
    background-color: transparent;
    color: white;
    font-size: 38px;
}

.side-by-side-lg .arrows span {
    font-family: var(--font-montserrat);
    color: white;
    font-weight: bold;
    font-size: 16px;
    line-height: 19px;
}

.side-by-side-lg .arrows span:nth-child(2) {
    display: block;
    margin: 0 5px;
}

.side-by-side-lg .arrows .counter {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.side-by-side-lg .widget-title {
    position: relative;
    display: inline-block;
    font-family: var(--font-montserrat);
    color: var(--black);
    font-size: 24px;
    line-height: 29px;
    font-weight: bold;
    padding: 0 15px 15px;
    margin-bottom: 20px;
}

.side-by-side-lg .widget-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% + 25px);
    height: 3px;
    background-color: var(--yellow);
}

.side-by-side-lg .slide .img-cont {
    position: relative;
    padding: 0 25px 0 10px;
    margin-bottom: 75px;
}

.side-by-side-lg .slide .img-cont::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 15px);
    background-color: var(--green);
    z-index: -1;
}

.side-by-side-lg .slide .img-cont img {
    min-width: 100%;
}

.side-by-side-lg .slide .content-section {
    padding: 0 15px 15px;
}

.side-by-side-lg .slide .content-section h4 {
    font: normal bold 20px/24px var(--font-montserrat);
    color: var(--black);
    margin-bottom: 15px;
}

.side-by-side-lg .slide .content-section .desc {
    font: normal normal 16px/19px var(--font-montserrat);
    color: var(--black);
    margin-bottom: 15px;
}

.side-by-side-lg .slide .cats {
    font: normal normal 16px/19px var(--font-montserrat);
    color: var(--gray);
    margin-bottom: 20px;
}

.side-by-side-lg .slide .read-more {
    display: inline-block;
    font: normal bold 18px/22px var(--font-montserrat);
    color: white;
    text-decoration: underline;
    text-transform: uppercase;
    padding: 12px 36px;
    background-color: var(--black);
}

@media (min-width: 800px) {
    .side-by-side-lg .slide .inner {
        display: grid;
        grid-template-columns: 4fr 6fr;
    }

    .side-by-side-lg .slides {
        padding: 0 40px;
    }

    .side-by-side-lg .slides .slide:not(.slick-current) {
        opacity: 0;
    }

    .side-by-side-lg .arrows {
        padding: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .side-by-side-lg .arrows .counter {
        display: none;
    }

    .side-by-side-lg .arrows > div {
        background-color: transparent;
        padding: 0 5px;
    }

    .side-by-side-lg .arrows button {
        padding: 12px 8px;
        background-color: var(--yellow);
    }

    .side-by-side-lg .slide .inner {
        max-width: 1075px;
        margin: 0 auto;
    }

    .side-by-side-lg .slide .img-cont::after {
        height: calc(100% - 5px);
        top: 30px;
        left: 30px;
    }

    .side-by-side-lg .slide .content-section {
        max-width: 560px;
        margin: 0 auto;
        padding: 20px;
    }

    .side-by-side-lg .widget-title {
        display: block;
        max-width: 1175px;
        margin: 0 auto 45px;
        padding-left: 50px;
    }

    .side-by-side-lg .widget-title::after {
        left: -150px;
        width: calc(65% + 150px);
    }
}

@media (min-width: 1250px) {
    .side-by-side-lg .widget-title {
        font-size: 30px;
        line-height: 37px;
    }

    .side-by-side-lg .slide .content-section h4 {
        font-size: 24px;
        line-height: 29px;
    }

    .side-by-side-lg .slide .content-section .desc {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 25px;
    }

    .side-by-side-lg .arrows button {
        width: 65px;
        height: 85px;
    }

    .side-by-side-lg .arrows {
        width: calc(100% + 40px);
        transform: translateX(-50%);
        left: 50%;
        top: 35%;
    }
}