/*Features category*/

h1.homepage_title {
    text-align: center;
    font-weight: 700;
}


/* custom grid */

.home_featured_category:not(.is-active) .spletnik-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 24px;
    grid-template-areas: "grid-1 grid-2 grid-2" "grid-1 grid-3 grid-4";
}

.home_featured_category:not(.is-active) .grid-1 {
    grid-area: grid-1;
}

.home_featured_category:not(.is-active) .grid-2 {
    grid-area: grid-2;
}

.home_featured_category:not(.is-active) .grid-3 {
    grid-area: grid-3;
}

.home_featured_category:not(.is-active) .grid-4 {
    grid-area: grid-4;
}


/* custom grid end */

.home_featured_category .btn-product {
    background-color: var(--WB_green);
    text-align: center;
    max-width: 270px;
    width: 100%;
    padding: 14px 24px;
    outline: none;
    border: none;
    font-weight: 700;
    color: #060606;
    margin-top: 20px;
    display: inline-block;
}

.home_featured_category img {
    max-width: 100%;
    width: 100%;
    height: 100%;
}

.banner_featured_cat_caption {
    position: absolute;
    z-index: 9;
    bottom: 0;
    padding: 20px;
}

.home_featured_category a {
    position: relative;
    display: block;
    height: 100%;
}

.home_featured_category a:before {
    transition: 0.3s;
    content: "";
    position: absolute;
    box-shadow: inset 0 100px 120px 5px hsl(0deg 0% 0% / 70%);
    z-index: 9;
    width: 100%;
    height: 100%;
}

.banner_featured_cat_caption p:first-child {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 900;
    font-size: clamp( 2.2rem, calc(2.2rem + (3.2 - 2.2) * ((100vw - 32rem) / (192 - 32))), 3.2rem);
    /* font-size: 18px; */
    color: #fff;
    text-transform: uppercase;
}

.banner_featured_cat_caption p {
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    color: #fff;
}

.home_featured_category a:hover::before {
    box-shadow: inset 0 700px 120px 5px hsl(0deg 0% 0% / 70%);
}

.home_featured_category [class*="col"] {
    margin-bottom: 30px;
}

.home_featured_category:not(.is-active) {
    width: 100% !important;
    overflow: hidden;
}


/*Brands row homepage*/

.brands_homepage {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

.brands_homepage img {
    width: 100%;
    filter: grayscale(100%);
    transition: 0.2s;
    opacity: 0.6;
    object-fit: contain;
    height: 100%;
    max-height: 45px;
}

.brands_homepage a:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.brands_homepage .brand_item {
    padding: 10px;
    width: calc(100% / 14);
}


/*Category list homepage*/

.fw_cat_list {
    background: #000;
    padding-top: 60px;
    padding-bottom: 60px;
}

h1.homepage_title {
    color: #FFF;
    font-size: 48px;
    font-style: italic;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.category_list_wrapper:not(.is-active) .category_list {
    display: flex !important;
    justify-content: center;
    flex-wrap: wrap;
}

.category_list_wrapper:not(.is-active) .category_list .cat_items {
    width: calc(100% / 6);
    padding: 15px;
}

.category_list {
    padding-top: 40px;
    padding-bottom: 0;
}

.category_list h2 {
    color: var(--WB_green);
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
    margin-top: 24px;
    text-transform: uppercase;
}

.category_list img {
    /* border: 1px solid #e3e3e3; */
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
    transform: scale(1.05);
}

.category_list img {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    transition: 0.25s;
}

.category_list img:hover {
    filter: none;
    -webkit-filter: grayscale(0);
}

.category_list p {
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    color: #636363;
}

.category_list a>div {
    position: relative;
    display: block;
    overflow: hidden;
}


/* 
.category_list a>div:before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient( left, rgba(255, 255, 255, 0) 0%, rgb(255 0 0 / 20%) 100%);
    background: linear-gradient( to right, rgba(255, 255, 255, 0) 0%, rgb(255 0 0 / 20%) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.category_list a>div:hover:before {
    -webkit-animation: shine 0.75s;
    animation: shine 0.75s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
} */


/*Product tabs homepage*/

.product_tabs_home .nav-tabs {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
}

.product_tabs_home .nav-tabs a {
    flex: 1 0;
    text-align: center;
}

.product_tabs_home .nav-tabs a {
    color: var(--black-color);
}

.product_tabs_home .nav-tabs a {
    background: #f4f4f4;
    font-family: Montserrat;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    padding: 15px;
    border: none;
    border-radius: 0px;
}

.product_tabs_home .nav-tabs a.active {
    color: var(--WB_green);
    background: #060606;
}

.product_tabs_home {
    padding-top: 40px;
    padding-bottom: 60px;
}

.product_tabs_home .tab-content {
    padding-top: 50px;
}

.slick-dots {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 1rem 0;
    list-style-type: none;
}

.slick-dots li {
    margin: 0 0.25rem;
}

.slick-dots button {
    display: block;
    width: 1rem;
    height: 1rem;
    padding: 0;
    border: none;
    border-radius: 100%;
    text-indent: -9999px;
}

button.slick-prev,
button.slick-next {
    display: none !important;
}


/*General product style for list/ tabs*/


/* new css */

.hp_product_list .spletnik-product {
    padding-bottom: 70px;
}

.hp_product_list .splide__pagination button.splide__pagination__page {
    background: #D9D9D9 !important;
    border-radius: 50% !important;
    margin-left: 8px !important;
    margin-right: 8px !important;
    width: 25px;
    height: 25px;
    opacity: 1 !important;
}

.hp_product_list .splide__pagination button.splide__pagination__page:hover {
    background: #ff0000 !important;
}

.hp_product_list .splide__pagination button.splide__pagination__page.is-active {
    background: #000 !important;
    opacity: 1;
    transform: scale(1);
    transform: translateY(0);
}

.prod_list_heading {
    font-size: 48px;
    font-style: italic;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.pl--subtitle {
    color: #060606;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.pl--subtitle:after {
    content: "";
    width: 100%;
    height: 1px;
    display: inline-block;
    background: rgba(99, 99, 99, 0.40);
    margin-left: 28px !important;
}


/* new css */

img.product_block_image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

a.button.add_to_cart_button.ajax_add_to_cart,
a.button.product_type_variable {
    display: none;
}

.homepage_product_filter_list {
    margin-top: -15px;
    margin-right: -15px;
    padding-left: 0 !important;
}

.homepage_product_filter {
    padding-left: 0;
}

ul.products.columns-4 {
    padding-left: 0px;
}

.add_to_with_wishlist {
    display: none;
}


/* new blog css */

#blogTabs {
    gap: 24px;
    margin-bottom: 24px;
    border: 0;
}

.blog_tabs_heading {
    font-size: 48px;
    font-style: italic;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    color: #fff;
}

.blog_tabs .nav-item {
    flex-basis: calc(100% / 3);
    background: #fff;
}

.blog_tabs .nav-item button {
    color: #000;
    text-align: center !important;
    width: 100%;
    background: #fff;
    border: 0;
    padding: 20px 10px;
    color: #006;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    height: 100%;
}

.blog_tabs .nav-item button:not(.active):hover {
    opacity: 0.7;
    background: var(--WB_green) !important;
}

.blog_tabs .nav-item button.active {
    background: var(--WB_green);
}

.blog_slider:not(.is-active) .bp_wrap {
    gap: 24px;
    grid-template-columns: repeat(3, 1fr) !important;
}

.blog_tabs .bp_single_cont {
    padding: 40px;
}

.blog_tabs .blog_post_title {
    color: #FFF;
    text-align: center;
    font-size: 28px;
    font-style: italic;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
}

.blog_tabs .post-excerpt {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    word-break: break-word;
}

.blog_tabs .bp_button {
    color: var(--WB_green);
    font-size: 18px;
    font-weight: 700;
}

.blog_tabs .post-thumbnail img {
    width: 100%;
}

.blog_tabs .post-thumbnail:after {
    content: "";
    opacity: 0.45;
    background: #060606;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    transition: .3s;
}

.blog_tabs .blog-post:hover .post-thumbnail:after {
    opacity: 0;
}

.blog_tabs .accordion-item {
    border: 0 !important;
    background: transparent !important;
}

.blog_tabs .accordion-body {
    padding: 0 !important;
}

@media (max-width: 991px) {
    .blog_tabs .tab-content>.tab-pane {
        display: block;
        opacity: 1;
    }
    .blog_tabs .bp_single_cont {
        padding: 30px 30px 65px;
    }
    .blog_tabs button.accordion-button::after {
        width: 26px;
        padding: 10px;
        color: #fff !important;
        fill: #fff !important;
        background-color: #fff;
        text-align: center;
        background-position: center center;
        background-size: 1.45rem;
        background-image: url("data:image/svg+xml,%3Csvg width='28' height='15' viewBox='0 0 28 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L14 14L26.9999 1' stroke='%23B2E665' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
        background-repeat: no-repeat no-repeat;
        background-position: center center;
        background-size: contain;
        background-color: transparent;
    }
    .blog_tabs .accordion-button[aria-expanded="true"]::after {
        background-image: url("data:image/svg+xml,%3Csvg width='28' height='15' viewBox='0 0 28 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M27 14L14 1.00004L1.00009 14' stroke='%23B2E665' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    }
    .blog_tabs .accordion-button:not(.collapsed)::after {
        transform: unset !important;
    }
    .blog_tabs #myTabContent button.accordion-button {
        box-shadow: none !important;
        border-bottom: 1px solid #ffffff8c !important;
    }
    .blog_tabs #myTabContent button.accordion-button:not(.collapsed),
    .blog_tabs #myTabContent button.accordion-button:hover {
        /* background:var(--WB_green) !important;*/
        background: transparent !important;
    }
    .blog_tabs button.accordion-button {
        padding: 15px !important;
        font-size: 17px;
        font-style: italic;
        font-weight: 900;
        text-transform: uppercase;
    }
    .blog_tabs .blog-post {
        padding: 10px;
    }
    .blog_tabs .post-excerpt {
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 14px !important;
    }
    .blog_tabs .blog_post_title {
        font-size: 17px !important;
    }
}


/* new blog css */


/*Features bottom page*/

.features_homepage .feature_item {
    margin-bottom: 20px;
}

.features_homepage .feature_item h2 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 15px;
}

.features_homepage .feature_heading {
    font-size: 48px;
    font-style: italic;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.features_homepage .feature_item img {
    aspect-ratio: 4/2;
    object-fit: cover;
}


/*BENEFITS homepage*/

.benefits {
    padding-top: 20px;
    padding-bottom: 20px;
}

.benefits .benefits-column {
    display: flex;
    margin-bottom: 0;
}

.benefits .benefits-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.benefits .benefits-left img {
    max-height: 35px;
    height: auto;
    object-fit: contain;
    height: 50px;
    width: 50px
}

.benefits .benefits-right {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
    font-size: 14px;
    text-align: left;
    color: #636363;
    justify-content: center;
}


/* .benefits .benefits-right h3 {
  font-size: 15px;
  font-weight: 700;
  color: #636363;
  margin-bottom: 0px;
} */

.benefits .benefits-right p {
    font-size: 15px;
    font-weight: 500;
    color: #636363;
    margin-bottom: 0px;
}


/* grid */

@media (max-width: 1240px) {
    .home_featured_category:not(.is-active) .spletnik-grid {
        grid-auto-columns: 1fr;
        grid-auto-rows: 1fr;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 24px 38px;
        grid-template-areas: "grid-1 grid-2" "grid-3 grid-4";
    }
    .home_featured_category a {
        height: 100%;
    }
    .home_featured_category img {
        height: 100%;
        object-fit: cover;
    }
    /* BRAND ITEMS */
    .brands_homepage .brand_item {
        width: calc(100% / 3);
    }
    /* BRAND ITEMS END */
    /* CART ITEM */
    .cat_items {
        width: 50%;
    }
    /* CART ITEM END */
    /* BLOG */
    .blog_homepage .post:not(:last-child) {
        margin-bottom: 20px;
    }
    /* BLOG END */
    /*BENEFITS */
    .benefits .benefits-right {
        text-align: left;
        margin-left: 15px;
    }
    .benefits .benefits-column {
        align-items: flex-start;
    }
    .benefits .benefits-left img {
        width: 40px;
    }
    /*BENEFITS END */
    img.product_block_image {
        object-fit: cover;
    }
}

@media (max-width: 1024px) {
    .brands_homepage img {
        height: 100%;
        max-height: 100%;
    }
}

@media (max-width: 991px) {
    .homepage_product_filter_list {
        margin-left: -15px;
    }
    .spletnik-product {
        margin-top: 1.6rem;
    }
    .benefits {
        max-width: 100%;
        width: 100%;
    }
    .block_title_absolute {
        width: 100%;
    }
}

@media (min-width:768px) {
    .home_featured_category .hf_title {
        font-size: 24px !important;
    }
}

@media (max-width: 767px) {
    .home_featured_category:not(.is-active) .spletnik-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        gap: 24px 38px;
        grid-template-areas: "grid-1" "grid-2" "grid-3" "grid-4";
    }
    /* grid end */
    /* CART ITEM */
    .cat_items {
        width: 100%;
    }
    /* CART ITEM END */
    /* PRODUCT TABS HOME */
    .product_tabs_home .nav-tabs a {
        flex: 0 0 50%;
    }
    /* PRODUCT TABS HOME END */
    /* BTN PRODUCT */
    .btn-product {
        display: none;
    }
    .outofstock a.button {
        display: none;
    }
    .banner_featured_cat_caption p.hf_desc {
        display: none !important;
    }
    .banner_featured_cat_caption {
        text-align: center !important;
        width: 100%;
        padding: 60px 30px 75px 30px;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    .home_featured_category .btn-product {
        display: block !important;
        margin: 0 auto;
        max-width: 220px;
        margin-top: auto;
        font-size: 18px;
    }
    .banner_featured_cat_caption p.hf_title {
        margin-top: 130px;
        font-size: 30px;
	display: block;
    }
    /* new css */
    .mb_hp_pag .splide__pagination {
        bottom: 32px;
    }
    .mb_hp_pag .splide__pagination button.splide__pagination__page {
        border: 1px solid #fff !important;
        background: transparent !important;
        border-radius: 50% !important;
        margin-left: 10px !important;
        margin-right: 10px !important;
        width: 12px;
        height: 12px;
    }
    .mb_hp_pag .splide__pagination button.splide__pagination__page.is-active {
        background: #fff !important;
        opacity: 1;
        transform: scale(1);
        transform: translateY(0);
    }
    .mb_hp_pag .splide__arrows button.splide__arrow {
        bottom: 32px;
        top: unset !important;
        background-color: transparent !important;
        opacity: 1;
        transform: translateY(5px) !important;
    }
    .mb_hp_pag .splide__arrow svg {
        fill: #fff !important;
    }
    .mb_hp_pag .splide__arrow--prev {
        left: calc(50% - 105px);
    }
    .mb_hp_pag .splide__arrow--next {
        right: calc(50% - 105px);
    }
    h1.homepage_title {
        font-size: 24px;
        margin-bottom: 20px;
        display: none;
    }
    .fw_cat_list {
        padding: 20px 0 30px;
    }
    .category_list h2 {
        font-size: 16px;
    }
    .fw_cat_list .splide__arrows button.splide__arrow {
        background-color: transparent !important;
        opacity: 1;
        width: 24px;
        height: 51px;
        transform: translateY(-100%) !important;
    }
    .fw_cat_list .splide__arrow svg {
        display: none;
    }
    .fw_cat_list button.splide__arrow.c_big_arrow.splide__arrow--prev.c_big_arrow-prev {
        left: 7%;
        background-image: url("data:image/svg+xml,%3Csvg width='32' height='56' viewBox='0 0 32 56' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M29.4775 54L1.99965 28.0001L29.4775 2.00012' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") !important;
        background-repeat: no-repeat no-repeat !important;
        background-position: center center !important;
        background-size: contain !important;
    }
    .fw_cat_list button.splide__arrow.c_big_arrow.splide__arrow--next.c_big_arrow_next {
        right: 7%;
        background-image: url("data:image/svg+xml,%3Csvg width='32' height='56' viewBox='0 0 32 56' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.52148 2L29.9994 27.9999L2.52148 53.9999' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") !important;
        background-repeat: no-repeat no-repeat !important;
        background-position: center center !important;
        background-size: contain !important;
    }
    .prod_list_heading {
        color: #FFF;
        font-size: 12px;
        font-style: normal;
        line-height: 24px;
        text-align: left !important;
        margin: 0 !important;
        font-weight: 500 !important;
        font-style: normal !important;
    }
    .pl--subtitle {
        color: #FFF;
        font-size: 28px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%;
        margin: 0 !important;
        /* 33.6px */
    }
    .pl--subtitle:after {
        display: none !important;
    }
    .hp_product_list .spletnik-product {
        padding-bottom: 40px;
    }
    .pl_mb_caption .btn-product {
        background-color: var(--WB_green);
        text-align: center;
        max-width: 220px;
        width: 100%;
        padding: 14px 24px;
        outline: none;
        border: none;
        font-weight: 700;
        color: #060606;
        margin-top: 20px;
        display: inline-block;
        font-size: 18px;
    }
    .pl_mb_caption {
        position: absolute;
        left: 0;
        bottom: 50%;
        padding: 35px;
        transform: translateY(65%);
        z-index: 2;
        width: 100%;
    }
    .pl_mobile_view:after {
        content: "";
        position: absolute;
        display: block;
        height: 100%;
        width: 100%;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.40) 100%), url(<path-to-image>), #d3d3d338 -209.82px -25.615px / 197.949% 118.587% no-repeat;
        z-index: 1;
        top: 0;
        bottom: 0;
    }
    .container.benefits {
        background: #000;
    }
    .container.benefits p {
        color: #fff;
    }
    .container.benefits img {
        filter: contrast(1);
    }
    p.benefits_desc {
        max-width: 250px;
        opacity: 0.6;
    }
    p.benefits_title {
        color: var(--WB_green) !important;
        text-align: center !important;
        font-size: 20px !important;
        font-weight: 700 !important;
        line-height: 120%;
        /* 24px */
    }
    .benefits .benefits-column {
        margin-bottom: 45px;
    }
    .hp_product_list {
        display: none !important;
    }
    .page_wrapper.main_content.homepage {
        display: flex;
        flex-direction: column;
    }
    .prod_list_heading:after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='119' height='16' viewBox='0 0 119 16' fill='none'%3E%3Cpath d='M117.907 8.70711C118.298 8.31658 118.298 7.68342 117.907 7.29289L111.543 0.928932C111.153 0.538408 110.52 0.538408 110.129 0.928932C109.739 1.31946 109.739 1.95262 110.129 2.34315L115.786 8L110.129 13.6569C109.739 14.0474 109.739 14.6805 110.129 15.0711C110.52 15.4616 111.153 15.4616 111.543 15.0711L117.907 8.70711ZM0.200195 9H117.2V7H0.200195V9Z' fill='white'/%3E%3C/svg%3E");
        background-repeat: no-repeat no-repeat;
        background-position: center right;
        background-size: contain;
        content: "";
        width: 100px;
        height: 24px;
        margin-left: 15px;
    }
    .prod_list_heading {
        display: flex;
        align-items: center;
    }
    .product_tabs_home {
        display: none;
    }
    .blog_tabs_heading {
        font-size: 32px;
    }
    .features_homepage .feature_heading {
        font-size: 40px;
    }
    .features_homepage .feature_item img {
        aspect-ratio: 4/3;
    }
    .features_homepage {
        padding-bottom: 20px !important;
    }
    /* new css */
}

@media (max-width: 500px) {
    .product_tabs_home .nav-tabs a {
        flex: 0 0 100%;
    }
}

@media (min-width:768px) {
    .benefits .benefits-left img {
        filter: brightness(0.4);
    }
}

.top_brands_homepage {
    background: #000 !important;
}

.top_brands_heading {
    font-size: 48px;
    font-style: italic;
    font-weight: 700;
    margin-bottom: 0;
    text-align: center;
    color: #fff;
    padding-top: 60px;
}

.top_brands_homepage .brands_wrapper {
    padding-top: 90px;
    padding-bottom: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width:991px) {
    .top_brands_homepage .brands_wrapper .brand_item {
        width: calc(100% / 3);
        padding: 10px 15px;
    }
}

@media (max-width:767px) {
    .top_brands_heading {
        font-size: 32px;
        padding-top: 30px;
    }
    .top_brands_homepage .brands_wrapper {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}
