/* Buttons*/

.btn.btn-success {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--green);
    border: none;
    color: var(--white);
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: center;
    padding: 12px 16px;
    border-radius: 2px;
    transition: all .25s ease-in-out;
    cursor: pointer;
}

.btn.btn-success:hover,
.btn.btn-success:active,
.btn.btn-success:focus {
    background-color: #01664a;
    outline: none !important;
}

.btn.btn-outline-success {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--green);
    color: var(--green);
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: center;
    padding: 12px 16px;
    border-radius: 2px;
    transition: all .25s ease-in-out;
    cursor: pointer;
}

.btn.btn-outline-success:hover,
.btn.btn-outline-success:active,
.btn.btn-outline-success:focus {
    background-color: var(--green);
    color: var(--white);
    outline: none !important;
}

/* custom */

.custom .form-group {
    margin-bottom: 24px;
}

.custom .form-group .form-control {
    background-color: var(--light-green);
    border: 1px solid var(--green);
    font: 400 24px;
    height: 56px;
    font-size: 16px;
    padding: 14px 8px 14px 24px;
    line-height: 1.5;
    font-weight: 400;
    border-radius: 4px;
    color: var(--green);
    display: inline-block;
    outline: none !important;
    box-shadow: none;
}

.custom .form-group textarea.form-control {
    min-height: 200px;
}

.custom .form-group .form-control::placeholder {
    color: var(--green);
    font-size: 14.4px;
    font-weight: 400;
    line-height: 1.5;
}

/* home-Page .OK */

.home .carousel {
    background-color: #ebf5f1;
    padding: 64px 0;
    margin-bottom: 40px;
}

/* .home .carousel .carousel-indicators {
    position: absolute;
    right: unset;
    bottom: unset;
    top: 79%;
    left: 35%;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0 !important;
}

.home .carousel .carousel-indicators [data-bs-target] {
    border-radius: 50%;
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 16px;
    height: 16px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: transparent;
    background-clip: padding-box;
    border: 1px solid var(--green);
    opacity: 1;
    transition: 0.6s;
} */

.home .carousel .carousel-indicators .active {
    background-color: var(--green);
}

.home .carousel .carousel-inner .carousel-item {
    position: relative;
}

.home .carousel .carousel-inner .carousel-item figure {
    margin: 0;
}

.home .carousel .carousel-inner .carousel-item .carousel-caption {
    position: unset;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 24px 0 0;
    height: 100%;
}

.home .carousel .carousel-control-prev {
    right: 56px;
    left: unset;
}

.home .carousel .carousel-control-next {
    right: 24px;
}

.home .carousel .carousel-control-next,
.home .carousel .carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: unset;
    width: 32px;
    height: 32px;
    color: var(--black);
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: 1;
}

.home .carousel .carousel-control-next .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23007858'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.home .carousel .carousel-control-prev .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23007858'%3E%3Cpath d='M11.354 1.646a.5.5 0 0 0-.708 0l-6 6a.5.5 0 0 0 0 .708l6 6a.5.5 0 0 0 .708-.708L5.707 8l5.647-5.646a.5.5 0 0 0 0-.708z'/%3E%3C/svg%3E");
}

.home .carousel .carousel-inner .carousel-item .carousel-caption .text-wrapper {
    height: 193px;
    margin-bottom: 60px;
}

.home .carousel .carousel-inner .carousel-item .carousel-caption .text-wrapper h1 {
    color: var(--black);
    font-weight: 700;
    font-size: 28px;
    line-height: 1.33;
    text-align: left;
    margin-bottom: 26px;
}

.home .carousel .carousel-inner .carousel-item .carousel-caption .text-wrapper p {
    color: var(--black);
    font-weight: 200;
    font-size: 18px;
    line-height: 1.33;
    text-align: left;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home .carousel .carousel-inner .carousel-item .carousel-caption .btn-wrapper {
    width: 100%;
    display: flex;
    justify-content: start;
}

.home .carousel .carousel-inner .carousel-item .carousel-caption .btn-wrapper .btn-success {
    display: inline-flex;
}

.home .carousel .carousel-inner .carousel-item .carousel-caption .btn-wrapper .btn-success svg {
    margin-left: 24px;
}

.home .advantages {
    background-color: var(--light-gray);
    padding: 24px 0;
    margin-bottom: 40px;
}

.home .advantages h1 {
    color: var(--black);
    font-weight: 600;
    font-size: 26px;
    line-height: 1.33;
    text-align: center;
    margin-bottom: 16px;
}

.home .advantages .card {
    border: none;
    border-radius: 2px;
    padding: 32px 24px;
}

.home .advantages .card figure {
    margin-bottom: 24px;
}

.home .advantages .card .card-body {
    padding: 0;
}

.home .advantages .card .card-body .card-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.33;
    white-space: normal;
    text-align: center;
    margin-bottom: 2px;
}

.home .advantages .card .card-body .card-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.33;
    white-space: normal;
    text-align: center;
    margin-bottom: 2px;
}

.home .products {
    margin-bottom: 40px;
}

.home .products h1 {
    color: var(--black);
    font-weight: 600;
    font-size: 26px;
    line-height: 1.33;
    text-align: center;
    margin-bottom: 4px;
}

.home .products p {
    color: var(--black);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.33;
    text-align: center;
    margin-bottom: 18px;
}

.home .products .card {
    border: 1px solid #c6c6c6;
    border-radius: 0;
    padding: 0;
    text-decoration: none;
}

.home .products .card:hover {
    background-color: #ebf5f1;
    box-shadow: #00000033 0px 0px 114px 0px;
}

.home .products .card figure {
    margin-bottom: 0;
}

.home .products .card figure .card-img-top {
    border-radius: 0;
    max-height: 250px;
}

.home .products .card .card-body {
    padding: 16px;
    border-top: 1px solid #c6c6c6;
}

.home .products .card .card-body .card-title {
    font-size: 16px;
    line-height: 1.33;
    font-weight: 600;
    white-space: normal;
    text-align: left;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home .products .card .card-body .card-text {
    font-size: 14px;
    line-height: 1.33;
    font-weight: 400;
    white-space: normal;
    text-align: left;
    margin-bottom: 14px;
    height: 56px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home .products .card .card-body .card-link {
    color: #007858;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    white-space: normal;
    text-align: left;
    margin-bottom: 0;
    text-decoration: none;
}

.home .products .card .card-body .card-link:hover {
    color: var(--black);
}

.home .products .card .card-body .card-link svg {
    margin-left: 8px;
}

.home .products .btn-wrapper {
    margin: 24px 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.home .products .btn-wrapper .btn.btn-outline-success {
    width: 100%;
    max-width: 300px;
}

/* .home .product-search {
    margin-bottom: 40px;
}

.home .product-search .text-container h2 {
    color: var(--black);
    font-weight: 700;
    font-size: 29.6px;
    line-height: 28px;
    text-align: left;
    margin-bottom: 012px;
    max-width: 500px;
}

.home .product-search .text-container p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    white-space: normal;
    text-align: left;
    margin-bottom: 32px;
}

.home .product-search .search-form {
    padding: 0 75px 0 50px;
}

.home .product-search .search-form .form-control {
    background-color: var(--light-green);
    border: 16px;
    box-shadow: inset 0 -3px 0 var(--green);
    font: 400 24px;
    height: 56px;
    font-size: 16px;
    padding: 14px 8px 14px 24px;
    line-height: 1.5;
    font-weight: 400;
    border-radius: 2px;
    color: var(--green);
    display: inline-block;
}

.home .product-search .search-form .form-control::placeholder {
    color: var(--green);
    font-size: 14.4px;
    font-weight: 400;
    line-height: 1.5;
} */

/* about-Page .OK */

.banner {
    background-color: #ebf5f1;
    padding: 64px 0;
    margin-bottom: 40px;
}


.banner .banner-caption h1 {
    color: var(--black);
    font-weight: 600;
    font-size: 28px;
    line-height: 1.33;
    text-align: left;
    margin-bottom: 24px;
}

.banner .banner-caption p {
    color: var(--black);
    font-weight: 200;
    font-size: 16px;
    line-height: 1.33;
    text-align: left;
    margin-bottom: 0;
}

.banner figure {
    margin: 0;
    display: block;
    padding: 0;
}

.about .about-caption {
    margin-bottom: 40px;
}

.about .about-caption p {
    margin: 9.6px 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.33;
    white-space: normal;
}

/* categories-Page .OK */

.categories .product-categories {
    margin-bottom: 20px;
}

.categories .product-categories .card {
    border: 1px solid #c6c6c6;
    border-radius: 0;
    padding: 0;
    text-decoration: none;
    margin-bottom: 32px;
}

.categories .product-categories .card:hover {
    background-color: #ebf5f1;
    box-shadow: #00000033 0px 0px 114px 0px;
}

.categories .product-categories .card figure {
    margin-bottom: 0;
}

.categories .product-categories .card figure .card-img-top {
    border-radius: 0;
    max-height: 250px;
}

.categories .product-categories .card .card-body {
    padding: 16px;
    border-top: 1px solid #c6c6c6;
}

.categories .product-categories .card .card-body .card-title {
    font-size: 16px;
    line-height: 1.33;
    font-weight: 600;
    white-space: normal;
    text-align: left;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.categories .product-categories .card .card-body .card-text {
    font-size: 14px;
    line-height: 1.33;
    font-weight: 400;
    white-space: normal;
    text-align: left;
    margin-bottom: 14px;
    height: 56px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.categories .product-categories .card .card-body .card-link {
    color: #007858;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    white-space: normal;
    text-align: left;
    margin-bottom: 0;
    text-decoration: none;
}

.categories .product-categories .card .card-body .card-link:hover {
    color: var(--black);
}

.categories .product-categories .card .card-body .card-link svg {
    margin-left: 8px;
}

/* contact-Page .OK */

.contact .form-wrapper {
    margin-bottom: 40px;
}

.contact .form-wrapper h5 {
    font-size: 16px;
    line-height: 1.33;
    font-weight: 700;
    white-space: normal;
    text-align: left;
    margin-bottom: 12px;
}

.contact .form-wrapper h2 {
    font-size: 28px;
    line-height: 1.33;
    font-weight: 700;
    white-space: normal;
    text-align: left;
    margin-bottom: 8px;
}

.contact .form-wrapper p {
    font-size: 16px;
    line-height: 1.33;
    font-weight: 400;
    white-space: normal;
    text-align: left;
    margin-bottom: 32px;
}

.contact .form-wrapper ul {
    padding: 0 !important;
    margin: 0 !important;
}

.contact .form-wrapper ul li {
    margin: 0 0 24px;
    display: flex;
    align-items: center;
}

.contact .form-wrapper ul li figure {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-green);
    margin: 0;
    border-radius: 4px;
}

.contact .form-wrapper ul li .text-body {
    margin-left: 12px;
    max-width: 350px;
}

.contact .form-wrapper ul li .text-body h6 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    white-space: normal;
    text-align: left;
    margin-bottom: 4px;
}

.contact .form-wrapper ul li .text-body a {
    font-size: 14px;
    line-height: 12px;
    font-weight: 400;
    white-space: normal;
    text-align: left;
    margin-bottom: 0;
    color: var(--black);
    text-decoration: none;
    transition: 0.6s;
}

.contact .form-wrapper ul li .text-body a:hover {
    color: var(--green);
}

/* product-categories-Page .OK */

.product-categories .products-wrapper {
    margin-bottom: 8px;
}

.product-categories .products-wrapper .card {
    border: 2px solid var(--green);
    background-color: var(--white);
    border-radius: 0;
    padding: 0;
    text-decoration: none;
    margin-bottom: 32px;
    transition: 0.6s;
}

.product-categories .products-wrapper .card:hover {
    background: var(--light-gray);
    border: 2px solid transparent;
    border-radius: 0;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, .3);
}

.product-categories .products-wrapper .card figure {
    margin-bottom: 0;
}

.product-categories .products-wrapper .card figure .card-img-top {
    border-radius: 0;
}

.product-categories .products-wrapper .card .card-body {
    padding: 24px 22px;
}

.product-categories .products-wrapper .card .card-body .card-title {
    font-size: 14px;
    line-height: 1.33;
    font-weight: 700;
    white-space: normal;
    text-align: left;
    margin-bottom: 8px;
    height: 38px;
}

.product-categories .products-wrapper .card .card-body .card-text {
    font-size: 13px;
    line-height: 1.33;
    font-weight: 400;
    white-space: normal;
    text-align: left;
    margin-bottom: 0;
    height: 52px;
}

.product-categories .products-wrapper .card .card-body .card-link {
    color: #007858;
    font-size: 16px;
    line-height: 1.33;
    font-weight: 600;
    white-space: normal;
    text-align: left;
    margin-bottom: 0;
    text-decoration: none;
    transition: 0.6s;
}

.product-categories .products-wrapper .card .card-body .card-link:hover {
    color: var(--black);
}

.product-categories .products-wrapper .card .card-body .card-link svg {
    margin-left: 8px;
}

/* product-detail-Page .NOK */

.product-detail .product {
    margin-bottom: 40px;
}

/* replacement-filter-Page .NOK */

.replacement-filter .replacementFilter-caption table {
    float: left;
    margin-left: 20px;
    margin-bottom: 40px;
}

.replacement-filter .replacementFilter-caption table:first-of-type {
    margin-left: 0;
}

.replacement-filter .replacementFilter-caption .table-wrapper table tr td {
    padding: 4px 1px;
    border: 1px solid #CCC;
}

/*RESPONSIVE*/
/* Medium devices(md) (tablets, less than 992px)*/
@media (max-width: 991.98px) {
    .home .advantages .card {
        margin-bottom: 24px;
    }

    .home .products .card {
        margin-bottom: 24px;
    }

    .banner figure {
        margin: 0 0 24px;
        text-align: center;
    }

    .about .about-caption p {
        font-size: 14px;
    }

    .contact .form-wrapper h2 {
        font-size: 22px;
    }

    .contact .form-wrapper p {
        font-size: 14px;
    }

    .home .carousel .carousel-inner .carousel-item figure {
        margin: 0 0 24px;
        text-align: center;
    }

    .replacement-filter .replacementFilter-caption table {
        width: 100%;
        margin-left: 0;
    }
}

/* Small devices(sm) devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
    .contact .form-wrapper ul li .text-body {
        max-width: 300px;
    }
}

/* Extra small(xs) devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {}

/*#new add (only for desktop screens)*/
@media all and (min-width: 992px) {}

/* Large(lg) devices (desktops, 992px and up)*/
@media (min-width: 992px) and (max-width: 1199.98px) {}

/*Extra large(xl) devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) and (max-width: 1399.98px) {}

/*Extra extra large (xxl) devices (large desktops, 1200px and up)*/
@media (min-width: 1400px) and (max-width: 1920.98px) {}

/*#new add (full hd, 1920px and up)*/
@media all and (min-width: 1921px) {}