* {
    outline: none;
}

.products-slider {
    /*display: none;*/
}

.products-slider-product {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.product-slider-background {
    width: 100%;
    height: auto;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 84%);
}

.product-slider-background img {
    width: 100%;
}

.product-slider-info {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.product-slider-info-header {
    font-size: 62px;
    font-family: 'Lora', sans-serif;
    font-weight: 900;
    color: #3A3A3A;
    margin-bottom: 0;
}

.product-slider-info-paragraph {
    font-size: 17px;
    font-family: 'Roboto', cursive;
    color: #9C8D60;
    margin-bottom: 0;
}

.product-slider-info-button {
    border-radius: 80px;
    background-color: #AFA37D;
    border: none;
    width: 200px;
    margin-top: 45px;
    height: 50px;
    outline: none;
    color: #ffffff;
    font-family: 'Roboto', cursive;
    font-size: 16px;
    transition-duration: 0.6s;
}

.product-slider-info-button:hover {
    background-color: #ffd044;
}

.product-slider-info-button:focus {
    outline: none;
}

.catalog-preview-wrapper {
    background-color: #FCF8EF;
    width: 100%;
    padding: 50px 0;
}

.catalog-preview-content {
    margin-top: 66px;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;

}

.catalog-preview-item-name {
    text-align: center;
    font-size: 30px;
    font-family: 'Lora', sans-serif;
    font-weight: 700;
    color: #173651;
}

.catalog-preview-selectors {
    text-align: center;
}

.catalog-preview-selector {
    font-family: 'Lora', sans-serif;
    font-size: 19px;
    font-weight: 400;
    color: #82817E;
    cursor: pointer;
    overflow-x: none;
}

.catalog-preview-text > div {
    overflow-x: hidden !important;
}

.catalog-preview-text {
    max-width: 338px;
    color: #4B4B4B;
    font-family: 'Roboto', cursive;
    font-size: 14px;
}

.catalog-preview-text > div {
    height: 100%;
    padding: 8px;
    padding-top: 0px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.category {
    margin-top: 80px;
}

.category-name-text {
    color: #9C8D60;
    font-size: 37px;
    font-family: 'Roboto', cursive;
    position: absolute;
    bottom: -20px;
    margin-bottom: 0;
}

.category-items {
    margin-top: 60px !important;
}

.category-item {
    text-align: center;
    padding: 8px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5px;
    transition: 0.4s all;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
    margin-bottom: 18px;
}

.category-item:hover {
    -webkit-box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.2);
}

.category-item-name {
    line-height: 1.3;
    font-size: 16px;
    font-family: 'Roboto', cursive;
    font-weight: 700;
    color: #9C8D60;
    white-space: pre-wrap;
    word-break: break-all;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin-top: 8px;
}

.category-item-name:hover {
    color: #CFAE45;
}

.category-item-rating {
    font-size: 15px;
    font-family: 'Roboto', cursive;
    color: #5D5D5C;
    margin-bottom: 0 !important;
}

.parallax-div {
    background-size: cover;
    background-color: #fff;
    transition-duration: 0.4s;
    background-repeat: no-repeat;
    background-position: 50%;
    height: 537px;
    background-attachment: fixed;
    z-index: 9;
    margin-top: 60px;
    position: relative;
}

.parallax-div::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.35);
}

.parallax-div > div {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 100;
    transform: translate(-50%, -50%);
}

.parallax-info-header {
    color: #ffffff;
    font-family: 'Lora', sans-serif;
    font-size: 35px;
    font-weight: 700;
    text-shadow: 0px 2px 4px rgba(150, 150, 150, 1);
    margin-bottom: 25px !important;
}

.parallax-info-text {
    color: #ffffff;
    font-family: 'Roboto', cursive;
    font-size: 17px;
    line-height: 16px;
    text-shadow: 0px 2px 4px rgba(150, 150, 150, 1);
}

.blog {
    margin: 73px auto;
}

.blog-items {
    margin-top: 57px;
}

.blog-item {
    margin-bottom: 18px;
}

.blog-item-img {
    overflow: hidden;
    display: block;
    -webkit-transition: all .3s ease; /* Safari and Chrome */
    -moz-transition: all .3s ease; /* Firefox */
    -ms-transition: all .3s ease; /* IE 9 */
    -o-transition: all .3s ease; /* Opera */
    transition: all .3s ease;
}

.blog-item:hover img {
    -webkit-transform: scale(1.1); /* Safari and Chrome */
    -moz-transform: scale(1.1); /* Firefox */
    -ms-transform: scale(1.1); /* IE 9 */
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.blog-item-img img {
    -webkit-transition: all .6s ease; /* Safari and Chrome */
    -moz-transition: all .6s ease; /* Firefox */
    -ms-transition: all .6s ease; /* IE 9 */
    -o-transition: all .6s ease; /* Opera */
    transition: all .6s ease;
}

.blog-item-img img:hover {
    -webkit-transform: scale(1.1); /* Safari and Chrome */
    -moz-transform: scale(1.1); /* Firefox */
    -ms-transform: scale(1.1); /* IE 9 */
    -o-transform: scale(1.1); /* Opera */
    transform: scale(1.1);
}

.blog-item-title {
    font-size: 16px;
    font-family: 'Lora', sans-serif;
    font-weight: 700;
    color: #173651;
    display: block;
    margin-top: 10px;
    transition: 0.4s all;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
    height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    -webkit-box-orient: vertical;
}

.blog-item:hover a {
    color: #9C8D60;
}

.blog-item-title:hover {
    color: #9C8D60;
}

.blog-item-date, .blog-item-description {
    font-family: 'Roboto', cursive;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 700;
    color: #4B4B4B;
}

.blog-item-description {
    font-weight: 400;
    height: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.slick-dots {
    display: flex;
    align-items: center;
    position: absolute;
}

.slick-dots-wrappper {
    margin-top: 20px;
    position: relative;
}

.slick-dots li {
    border: 2px solid #AFA37D;
    height: 13px;
    width: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition-duration: 0.3s;
    margin-right: 5px;
}

.slick-dots li::marker {
    content: "";
}

.slick-dots li button {
    display: none;
    border: none;
    outline: none;
    transition-duration: 0.3s;
}

.slick-dots li.slick-active {
    width: 26px;
    height: 26px;
}

.slick-dots li.slick-active button {
    background-color: #AFA37D;
    display: block;
    width: 13px;
    height: 13px;
    border: none;
}

.parallax-info-text > p {
    width: 100%;
    white-space: pre-wrap;
    word-break: break-all;
}

.catalog-preview-image {
    width: 40%;
}

/*-------------------------*/

.about-block {
    display: flex;
    justify-content: space-between;
}

.about-group {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.content-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.block-name {
    position: absolute;
    font-size: 41px;
    font-weight: 700;
    font-family: 'Lora', sans-serif;
}

.block-description {
    font-size: 16px;
    color: #000;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 8px;
}

.about-image {
    max-width: 48%;
    margin-top: auto;
}

.block-description::-webkit-scrollbar {
    width: 4px;
}

.block-description::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.block-description::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.5);
}

@media (min-width: 992px) {
    .catalog-preview-text > div {
        overflow: auto;
    }

    .catalog-preview-text > div::-webkit-scrollbar {
        width: 6px;
    }

    .catalog-preview-text > div::-webkit-scrollbar-track {
        background-color: rgba(0, 0, 0, 0.3);
        border-radius: 10px;
    }

    .catalog-preview-text > div::-webkit-scrollbar-thumb {
        border-radius: 10px;
        background-color: rgba(0, 0, 0, 0.5);
    }

    .catalog-preview-selector:hover {
        color: #1966aa;
        font-size: 20px;
    }

    .selected, .selected:hover {
        font-weight: 700;
        font-size: 16px;
        color: #173651;
    }
}

@media (min-width: 993px) {
    .logo-small {
        width: 80px;
        height: 80px;
    }

    .catalog-preview-selectors {
        width: 300px;
        min-height: 300px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 1440px) {
    .block-name {
        font-size: 32px;
    }
}

@media (max-width: 1399px) {

}

@media (max-width: 991px) {
    .catalog-preview-wrapper {
        height: max-content;
        padding: 1px 0;
        box-sizing: border-box;
    }

    .catalog-preview-text > div {
        height: max-content;
        text-align: center;
    }

    .catalog-preview-text {
        max-width: 100%;
        margin-top: 16px;
    }

    .catalog-preview-selectors {
        text-align: left;
    }

    .catalog-preview-selector {
        background-color: rgb(175 163 125);
        text-align: center;
        border-radius: 8px;
        padding: 10px;
        box-sizing: border-box;
        color: #FCF8EF;
        font-weight: bold;
    }

    .selected {
        border: 3px solid rgb(175 163 125);
        color: #afa37d;
        background-color: #fcf8ef;
        font-weight: bold;
    }

    .product-slider-info {
        top: 35%;
    }

    .catalog-preview-selectors {
        width: 96%;
        margin: auto;
        box-sizing: border-box;
        display: flex;
        flex-direction: row;
        overflow-y: none;
        overflow-x: scroll;
    }

    .catalog-preview-selectors > p {
        margin-right: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .catalog-preview-selectors::-webkit-scrollbar {
        width: 2px !important;
        height: 2px !important;
    }

    .catalog-preview-selectors::-webkit-scrollbar-track {
        background-color: rgba(0, 0, 0, 0.3);
        /*width: 2px !important;*/
    }

    .catalog-preview-selectors::-webkit-scrollbar-thumb {
        background-color: rgb(111, 105, 85);
        /*width: 2px !important;*/
    }

    .catalog-preview-image {
        margin-top: 30px;
    }

    .product-slider-info-header {
        font-size: 47px;
    }

    .product-slider-info-paragraph {
        font-size: 15px;
    }

    .blog-item-title {
        font-size: 15px;
        margin-bottom: 6px;
        height: 19px;
    }

    .blog-item-date, .blog-item-description {
        margin-bottom: 6px;
    }

    .catalog-preview-image {
        margin-top: 10px !important;
        width: 70%;
        margin: auto;
    }

    .catalog-preview-content {
        margin-top: 30px;
        display: flex;
        flex-direction: column;
    }

    .catalog-preview-item-name {
        display: none !important;
    }

    .category-item-name {
        font-size: 14px;
    }

    .catalog-preview-wrapper {
        margin-top: 30px;
    }

    .category-item-rating {
        font-size: 13px;
    }

    .block-name {
        font-size: 30px;
    }
}

@media (max-width: 991px) {
    .category-name-image {
        width: 185px;
    }

    .category-name-text {
        font-size: 30px;
    }

    .catalog-preview-item-name {
        font-size: 21px;
    }

    .product-slider-info-header {
        font-size: 47px;
    }

    .product-slider-info-paragraph {
        font-size: 15px;
    }

    .product-slider-info-button {
        width: 161px;
        font-size: 16px;
        height: 40px;
        margin-top: 15px;
    }

    .slick-dots-wrappper {
        margin-top: 5px;
    }

    .slick-dots {
        padding-left: 5px;
    }

    .catalog-preview-selector {
        font-size: 12px;
    }

    .selected {
        font-size: 12px;
    }

    .category {
        margin-top: 40px !important;
    }

    .category-items {
        margin-top: 40px !important;
    }
}

@media (max-width: 576px) {
    .category-name-text {
        font-size: 20px;
        bottom: -10px;
    }

    .category-name-image {
        width: 145px;
        max-height: 60px;
    }

    .category-items {
        margin-top: 25px !important;
    }

    .product-slider-info-header {
        font-size: 24px;
    }

    .product-slider-info-paragraph {
        font-size: 13px;
    }

    .product-slider-info-button {
        width: 109px;
        font-size: 10px;
        height: 30px;
        margin-top: 10px;
    }

    .slick-dots li.slick-active {
        width: 16px;
        height: 16px;
    }

    .slick-dots li {
        width: 11px;
        height: 11px;
    }

    .slick-dots li.slick-active button {
        width: 7px;
        height: 8px;
        padding-left: 3px;
        padding-right: 5px;
    }

    .category {
        margin-top: 16px !important;
    }

    .category-items {
        margin-top: 16px !important;
    }

    .parallax-info-header {
        font-size: 24px;
    }

    .parallax-info-text {
        font-size: 15px;
    }

    .parallax-div {
        height: 500px;
        background-attachment: scroll !important;
    }

    .blog-item:last-child {
        margin-bottom: 0;
    }

    .catalog-preview-selector {
        padding: 5px;
        font-size: 13px;
    }

    .category-item-name {
        font-size: 12px;
    }

    .blog-items {
        margin-top: 25px !important;
    }

    .blog-item {
        margin-bottom: 8px;
    }

    .block-name {
        font-size: 24px;
    }

    .block-description {
        font-size: 13px;
    }
}