.itemculinary{
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    margin: 0 -45px;
    margin-bottom: 110px;
}
.itemculinary > div{
    padding: 0 45px;
}
.itemculinary .coll{
    width: calc(100% - 500px);
}
.itemculinary .colr{
    width: 500px;
}
.itemculinary:nth-child(even) .coll{
    order: 2;
}
.itemculinary .thumb{
    position: relative;
}
.itemculinary .thumb::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #f6f6f6;
    -webkit-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
    pointer-events: none;
}
.itemculinary .thumb:hover::before{
    background-color: #dddddd;
}
.itemculinary:nth-child(odd) .thumb::before{
    top: 45px;
    right: 45px;
}
.itemculinary:nth-child(even) .thumb::before{
    top: 45px;
    left: 45px;
}
.itemculinary .thumb a{
    display: block;
    overflow: hidden;
    position: relative;
}
.itemculinary .thumb a img{
    width: 100%;
    -ms-transition: transform 0.8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -webkit-transition: transform 0.8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -moz-transition: transform 0.8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -o-transition: transform 0.8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    transition: transform 0.8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
}
.itemculinary .thumb a:hover img{
    transform: scale(1.05);
}
.itemculinary .dstitle{
    margin-bottom: 10px;
}
.itemculinary .dstitle h3{
    font-size: 35px;
    line-height: 45px;
    font-family: 'Minion';
    font-weight: 400;
}
.itemculinary .dstend{
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
}
.itemculinary .dslink li{
    margin-bottom: 10px;
}
.itemculinary .dslink li a{
    display: inline-block;
    position: relative;
    padding-left: 20px;
    font-size: 18px;
    line-height: 27px;
}
.itemculinary .dslink li a::before{
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    border: 1px solid var(--primary-color);
    -webkit-transition: all 0.1s linear;
    -o-transition: all 0.1s linear;
    transition: all 0.1s linear;
}
.itemculinary .dslink li a:hover::before{
    background-color: var(--primary-color);
}

@media all and (max-width: 1200px){
    .itemculinary{
        margin: 0 -20px;
        margin-bottom: 100px;
    }
    .itemculinary > div{
        padding: 0 20px;
    }
    .itemculinary .coll{
        width: calc(100% - 420px);
    }
    .itemculinary .colr{
        width: 420px;
    }
}

@media all and (max-width: 991px){
    .itemculinary .dstitle h3{
        font-size: 25px;
        line-height: 35px;
    }
    .itemculinary .dstend{
        font-size: 14px;
        line-height: 22px;
    }
    .itemculinary .dslink li a{
        font-size: 16px;
        line-height: 24px;
    }
    .itemculinary .dslink li a::before{  
        top: 6px;
    }
    .itemculinary{
        margin-bottom: 50px;
    }
    .itemculinary .coll{
        width: calc(100% - 350px);
    }
    .itemculinary .colr{
        width: 350px;
    }
    .itemculinary:nth-child(odd) .thumb::before{
        top: 20px;
        right: 20px;
    }
    .itemculinary:nth-child(even) .thumb::before{
        top: 20px;
        left: 20px;
    }
}

@media all and (max-width: 767px){
    .itemculinary{
        margin-bottom: 20px;
    }
    .itemculinary .coll{
        width: 100%;
        margin-bottom: 10px;
    }
    .itemculinary .colr{
        width: 100%;
    }
    .itemculinary:nth-child(even) .coll{
        order: unset;
    }
    .itemculinary .thumb::before{
        display: none;
    }
}