@font-face {
    font-family: "Sebenta-MediumItalic";
    src: url("../fonts/Sebenta-MediumItalic.eot");
    src: url("../fonts/Sebenta-MediumItalic.eot?#iefix") format("embedded-opentype"),
        url("../fonts/Sebenta-MediumItalic.svg#Sebenta-MediumItalic") format("svg"),
        url("../fonts/Sebenta-MediumItalic.ttf") format("truetype"),
        url("../fonts/Sebenta-MediumItalic.woff") format("woff"),
        url("../fonts/Sebenta-MediumItalic.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-family: "Rubik", sans-serif;
    --secondary-font-family: "Sebenta-MediumItalic";

    --accent: #bf6a48;
    --text: #222222;
    --text-opacity: rgba(34, 34, 34, 0.6);
    --light-text: #f8f8f8;

    --page-background: #ffffff;
    --light-background: #ebe7e5;
    --dark-background: #222222;

    --primary-button: #bf6a48;
    --primary-button-hover: #954d30;

    --primary-outline-button: #bf6a48;
    --primary-outline-button-hover: #954d30;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    padding: 0;
    margin: 0;
    position: relative;
    min-height: 100%;
}

body {
    margin: 0;
    color: var(--text);
    font-size: 18px;
    line-height: 25.2px;
    font-weight: 400;
    font-family: var(--font-family);
    background: var(--page-background);
    overflow-x: hidden;
}

.admin-bar .header {
    top: 32px;
}

#billing_company_field {
    display: none;
}

html:lang(et) .whatsapp-label,
html:lang(lt-LT) .whatsapp-label {
    display: none;
}

input:focus-visible,
input:focus,
input:active,
textarea:focus-visible,
textarea:focus,
textarea:active {
    outline: none;
}

p:empty {
    margin-bottom: 0px;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    transition: all 0.2s ease;
    color: var(--accent);
}

.d-flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.d-inline-flex {
    display: inline-flex;
}

.flex-wrap {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-column {
    flex-direction: column;
}

.justify-content-start {
    justify-content: flex-start;
}

.justify-content-end {
    justify-content: flex-end;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.align-items-start {
    align-items: flex-start;
}

.align-items-end {
    align-items: flex-end;
}

.align-items-center {
    align-items: center;
}

.d-flex-stretch {
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0px;
    margin-bottom: 0px;
    font-weight: 700;
}

h1 {
    font-size: 60px;
    line-height: 63px;
}

h2 {
    font-size: 36px;
    line-height: 43.2px;
}

h3 {
    font-size: 30px;
    line-height: 35.55px;
}

h4 {
    font-size: 26px;
    line-height: 34px;
}

h5 {
    font-size: 18px;
    line-height: 21.33px;
}

h6 {
    font-size: 16px;
    line-height: 22.4px;
}

strong,
b {
    font-weight: 400;
}

label {
    font-weight: 300;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

p {
    font-size: 18px;
    line-height: 25.2px;
}

input:not[type="radio"],
input:not[type="checkbox"] {
    height: 52px;
    line-height: 52px;
    padding: 0px 17px;
}

textarea,
select,
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="reset"],
input[type="search"],
input[type="password"],
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    padding: 0 15px;
    border-radius: 8px;
    border: 1px solid var(--text);
    width: 100%;
    min-height: 52px;
}

textarea {
    padding: 17px;
}

img:focus-visible,
img:focus,
a:focus-visible,
a:focus {
    outline: none;
    box-shadow: none;
}

.text-center {
    text-align: center;
}

.p-reg-lg {
    font-size: 20px;
    line-height: 32px;
}

.p-reg-sm {
    font-size: 16px;
    line-height: 22px;
}

.p-reg-xs {
    font-size: 13px;
    line-height: 15px;
}

.row {
    --bs-gutter-x: 30px;
    display: flex;
    flex-wrap: wrap;
    margin-right: calc(var(--bs-gutter-x) * -0.5);
    margin-left: calc(var(--bs-gutter-x) * -0.5);
}

.row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
}

.col-6 {
    flex: 0 0 auto;
    width: 50%;
}

.col-2 {
    width: 16.66666667%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.33333333%;
}

.col-5 {
    width: 41.66666667%;
}

.col-7 {
    width: 58.33333333%;
}

.col-8 {
    width: 66.66666667%;
}

.col-9 {
    width: 75%;
}

.col-lg-3 {
    width: 25%;
}

.product-badge {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    position: absolute;
    right: 10px;
    top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    font-size: 24px;
    line-height: 26.4px;
    font-family: var(--secondary-font-family);
    letter-spacing: -1px;
    z-index: 2;
}

.product-badge span {
    display: block;
}

.product-badge.sale {
    background: var(--accent);
    color: var(--light-text);
}

input {
    outline: none;
    box-shadow: none;
}

main {
    padding-top: 162px;
}

.btn,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt,
input[type="submit"],
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button,
.wc-block-checkout-empty .wp-block-button a,
.wc-block-cart__submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 34px;
    padding: 0px 35px;
    height: 47px;
    line-height: 47px;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
}

.btn.small {
    height: 37px;
    line-height: 37px;
    border-radius: 34px;
}

.btn-primary,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt,
input[type="submit"],
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button,
.woocommerce div.product form.cart .button,
.wc-block-cart__submit-button {
    background: var(--primary-button);
    color: #fff;
}

.btn-primary:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:hover,
input[type="submit"]:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover,
.woocommerce div.product form.cart .button:hover,
.wc-block-cart__submit-button:hover {
    background: var(--primary-button-hover);
}

:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button {
    background: var(--primary-button) !important;
    color: #fff !important;
}

:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:hover {
    background: var(--primary-button-hover) !important;
}

.btn-primary-outline {
    border: 1px solid var(--primary-outline-button);
    color: #fff;
    padding: 0px 22px;
}

.btn-primary-outline:hover {
    background: var(--primary-outline-button-hover);
    border: 1px solid var(--primary-outline-button-hover);
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding-right: 120px;
    padding-left: 120px;
}

.woocommerce .action .button {
    background: transparent;
    font-size: 14px;
    color: var(--text);
    height: 33px;
    line-height: 33px;
    padding: 0px 10px;
    border-radius: 36px;
    min-width: 160px;
    margin-left: 5px;
    transition: all 0.2s ease;
    margin-left: auto;
    font-weight: 500;
    text-transform: uppercase;
}

.wc-block-cart__empty-cart__title {
    margin-top: 50px;
}

.woocommerce .action .quantity-wrapper {
    display: flex;
}

.woocommerce .action .button:hover {
    background: var(--accent);
    color: var(--light-text);
}

.dark-bg {
    background: var(--dark-background);
}

.light-bg {
    background: var(--light-background);
}

.mobile-toggle {
    display: none;
}

.header {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    font-size: 16px;
    z-index: 2;
}

.header a {
    color: #fff;
}

.logo {
    width: 116px;
    text-align: center;
}

.header .logo {
    position: absolute;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    top: 18px;
    z-index: 3;
}

.header .logo .icon {
    margin-bottom: 5px;
}

.top-bar .nav a {
    position: relative;
    padding: 18px 0px 18px;
    display: block;
}

.top-bar .nav .btn a {
    padding: 0px;
}

.top-bar .nav .btn a:hover {
    color: var(--light-text);
}

.top-bar .nav-bar > ul > li > a::after {
    content: "";
    height: 5px;
    width: 0%;
    position: absolute;
    top: 0px;
    left: 0;
    right: 0px;
    background: var(--accent);
    margin: 0 auto;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.top-bar .nav a:hover::after,
.top-bar .nav-bar .current-menu-item > a::after,
.top-bar .nav-bar .current_page_ancestor > a::after,
.menu-item:has(.sub-menu .current-menu-item) > a::after {
    width: 100%;
}

.top-bar .nav a:hover,
.top-bar .nav-bar .current-menu-item > a,
.top-bar .nav-bar .current_page_ancestor > a,
.menu-item:has(.sub-menu .current-menu-item) > a {
    color: var(--accent);
}

.top-bar .nav > li + li {
    margin-left: 51px;
}

.sub-menu {
    display: flex;
}

.top-bar .nav > li > .sub-menu {
    position: absolute;
    bottom: 36px;
    left: 0px;
    width: 100%;
    align-items: center;
    padding-right: 117px;
}

.logged-in .top-bar .nav > li > .sub-menu {
    padding-right: 168px;
}

.account-btn {
    position: absolute;
    right: 0px;
    bottom: 48px;
}

.sub-menu .sub-menu {
    display: none;
    transition: all 0.2s ease;
}

.top-bar .nav > li > .sub-menu > li + li {
    margin-left: 37px;
}

.top-bar .nav > li > .sub-menu > li.dropdown-submenu + li {
    margin-left: 16px;
}

.top-bar .dropdown-submenu:hover > a {
    color: var(--accent);
}

.sub-menu .menu-item-has-children:hover::after,
.sub-menu .current-menu-parent.menu-item-has-children::after {
    background-image: url(../images/carrot-accent.svg);
}

.sub-menu {
    text-transform: uppercase;
}

.nav-bar {
    height: 162px;
}

.header .right a {
    text-transform: uppercase;
}

.header .right .btn {
    margin-left: 22px;
}

.right-menu {
    padding-top: 22px;
}

.header .container {
    position: relative;
}

.top-bar .to-right {
    margin-left: auto !important;
}

.navigation {
    position: relative;
    width: 100%;
}

.sub-menu .menu-item-has-children .sub-menu {
    position: absolute;
    background: #313131;
    min-width: 287px;
    border-radius: 0px 16px 16px 16px;
    padding: 20px 29px 28px 29px;
    left: 0px;
    z-index: 1;
}

.sub-menu .menu-item-has-children .sub-menu li + li {
    margin-top: 14px;
}

.sub-menu .menu-item-has-children .sub-menu a {
    padding: 0px;
}

.sub-menu .menu-item-has-children {
    position: relative;
    padding: 0px 42px 0px 28px;
    border-radius: 16px 16px 0px 0px;
}

.sub-menu .menu-item-has-children::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    background: url(../images/carrot.svg);
    width: 16px;
    height: 9px;
    background-size: 16px 9px;
    margin-top: -4px;
}

.sub-menu .menu-item-has-children.dropdown-submenu {
    margin-left: -28px;
}

.sub-menu .menu-item-has-children.dropdown-submenu + li {
    margin-left: 17px;
}

.sub-menu .menu-item-has-children:hover {
    background: #313131;
}

.sub-menu .menu-item-has-children:hover .sub-menu {
    display: block;
}

.hero {
    color: #fff;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right center;
    background-color: var(--dark-background);
}

.hero .wrapper {
    width: 463px;
    max-width: 100%;
    padding-bottom: 60px;
}

.hero .wrapper.text-center {
    margin-left: 74px;
    text-align: center;
    width: 427px;
}

.hero .wrapper p {
    opacity: 0.6;
}

.hero .wrapper.text-center p {
    padding: 0px 60px;
    opacity: 1;
}

.hero .small-title {
    font-size: 18px;
    line-height: 25.2px;
    color: var(--light-text);
    margin-bottom: 30px;
}

.hero h1 {
    text-transform: uppercase;
    letter-spacing: -1.5px;
    margin-bottom: 28px;
    font-size: 48px;
    line-height: 50.4px;
}

.hero h2 {
    font-size: 36px;
    line-height: 43px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.home .hero h1 {
    font-size: 60px;
    line-height: 63px;
    margin-bottom: 14px;
}

.hero .container {
    padding-top: 111px;
    position: relative;
    min-height: 503px;
}

.hero .small-space {
    padding-top: 69px;
}

.home .hero .container {
    padding-top: 77px;
}

.hero .badge {
    position: absolute;
    right: 202px;
    bottom: -85px;
    z-index: 1;
}

.hero .btn-wrapper .btn {
    margin-top: 40px;
    display: block;
    width: fit-content;
    margin-left: auto;
}

.section-title {
    font-weight: 500;
    margin-bottom: 32px;
    position: relative;
    font-family: var(--secondary-font-family);
    font-size: 26px;
    line-height: 33.8px;
}

.section-title span {
    position: relative;
    display: inline-block;
}

.section-title span::before,
.section-title span::after {
    content: "";
    position: absolute;
    top: 16px;
    width: 41px;
    background: var(--text);
    height: 1px;
}

.section-title span::before {
    left: -61px;
}

.section-title span::after {
    right: -61px;
}

.product-list .product .image-wrapper {
    background: var(--light-background);
    border-radius: 18px;
    display: block;
    margin-bottom: 15px;
    padding: 19px 0px 19px;
    position: relative;
    min-height: 322px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products {
    padding: 100px 0px 60px;
}

.product-list .product .product-title {
    color: var(--text);
}

.product-list .product {
    /*text-align: center;*/
    padding-bottom: 52px;
}

.product-list img {
    height: auto;
    max-height: 284px;
    width: auto;
    margin: 0 auto;
    display: block;
}

.product-list .image-wrapper img {
    mix-blend-mode: multiply;
}

.product-list .product .title {
    font-size: 16px;
    line-height: 22.4px;
    font-weight: 400;
    transition: all 0.2s ease;
}

.product-list .product .price {
    margin-bottom: 13px;
    font-size: 20px;
    line-height: 26px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
}

.product-list .product .price del {
    color: var(--accent);
}

.product-list .product .price ins {
    text-decoration: none;
}

.product-list .product .price del,
.product-list .product .price ins {
    padding: 0px 5px;
}

.product-list {
    --bs-gutter-x: 21px;
}

.product-list .product .product-title:hover .title {
    color: var(--accent);
}

.left-right-blocks {
    padding: 102px 0px 154px;
}

.left-right-blocks h2 {
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 22px;
    padding-top: 22px;
}

.left-right-blocks p {
    max-width: 490px;
    margin-bottom: 20px;
}

.left-right-blocks .item {
    padding: 0px 33px;
}

.left-right-blocks .item + .item {
    margin-top: 142px;
}

.left-right-blocks .item:nth-child(odd) .img {
    display: block;
    margin-left: 28px;
}

.left-right-blocks .item:nth-child(even) {
    flex-direction: row-reverse;
}

.left-right-blocks .item:nth-child(even) .img {
    display: block;
    margin-right: 28px;
}

.left-right-blocks img {
    width: 100%;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.left-right-blocks .img:hover img {
    opacity: 0.9;
}

.left-right-blocks .content {
    padding-left: 28px;
}

.left-right-blocks .content ol {
    font-size: 16px;
    list-style-type: decimal;
    list-style-position: inside;
    margin-bottom: 20px;
}

.left-right-blocks .content ol li::marker {
    font-weight: 700;
}

.left-right-blocks .content strong {
    font-weight: 700;
}

.left-right-blocks.dark {
    padding: 102px 0px 70px;
}

.left-right-blocks.dark h2 {
    text-align: center;
    font-size: 48px;
    max-width: 60%;
    margin: 0 auto 40px;
    line-height: 50px;
}

.popular-models {
    padding: 75px 0 32px;
}

.popular-models h2 {
    font-size: 48px;
    line-height: 50px;
    text-transform: uppercase;
    max-width: 50%;
}

.popular-models h3 {
    font-size: 48px;
    line-height: 50px;
    font-family: var(--secondary-font-family);
}

.popular-models .subtitle {
    font-style: italic;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 24px;
}

.popular-models .title-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 32px;
}

.popular-models .content-wrapper {
    padding-right: 32px;
}

.popularModelsSlider .swiper-wrapper {
    height: 339px;
    background: var(--dark-background);
    border-radius: 18px;
}

.popularModelsSlider {
    position: relative;
    padding: 0 0 65px 0;
}

.popularModelsSlider .swiper-slide {
    background: var(--dark-background);
    border-radius: 18px;
}

.popularModelsSlider .swiper-button-next,
.popularModelsSlider .swiper-button-prev {
    position: absolute !important;
    bottom: 36px;
    top: auto !important;
    width: 60px;
    height: 60px;
    background-color: var(--accent);
    border-radius: 100%;
    z-index: 10;
}

.popularModelsSlider .swiper-button-next {
    left: auto !important;
    right: 30% !important;
}
.popularModelsSlider .swiper-button-prev {
    left: auto !important;
    left: 30% !important;
}

.popularModelsSlider .swiper-button-next::after,
.popularModelsSlider .swiper-button-prev::after {
    color: white;
    font-size: 32px !important;
    font-weight: 600;
}

.popularModelsSlider img {
    margin: 50px auto 0;
}

.left-right-blocks.dark h3 {
    text-transform: uppercase;
    font-size: 38px;
    letter-spacing: -0.6px;
    line-height: 45px;
}

.left-right-blocks.dark .row {
    --bs-gutter-x: 0px;
}

.left-right-blocks.dark .container .item {
    background: var(--dark-background);
    border-radius: 16px;
    color: var(--light-text);
    padding: 0;
}

.left-right-blocks.dark .col-6.image {
    padding: 0px;
}

.left-right-blocks.dark .image .img {
    height: 100%;
}

.left-right-blocks.dark .image img {
    object-fit: cover;
    height: 100%;
}

.left-right-blocks.dark p {
    font-size: 16px;
    color: #f8f8f8;
    margin-bottom: 10px;
}

.left-right-blocks.dark .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 40px;
    height: 100%;
}

.left-right-blocks.dark .item + .item {
    margin-top: 40px;
}

.locations {
    padding: 51px 0px 108px;
}

.locations h2 {
    text-transform: uppercase;
    max-width: 540px;
    font-size: 30px;
    line-height: 35.55px;
}

.tab-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.tab-content img {
    border-radius: 12px;
}

.tab-list li {
    cursor: pointer;
    padding: 2px 5px 10px 20px;
}

.tab-content {
    padding: 32px 20px 20px 20px;
}

.tab-item {
    display: none;
}

.tab-item.active {
    display: block;
}

#map {
    margin-top: 78px;
    width: 100%;
    height: 416px;
    border-radius: 12px;
}

.locations .map {
    width: 688px;
}

.locations .tabs {
    flex-grow: 1;
}

.locations .tab-container > .row {
    flex-wrap: nowrap;
}

.locations .tab-list {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
}

.locations .tab-list li {
    color: #bdbdbd;
    transition: all 0.2s ease;
}

.locations .tab-list li.active,
.locations .tab-list li:hover {
    color: var(--text);
}

.locations .tab-list li span {
    display: block;
    border-bottom: 1px solid #bdbdbd;
    padding: 0px 15px 8px;
    transition: all 0.2s ease;
}

.locations .tab-list li.active span,
.locations .tab-list li:hover span {
    border-color: var(--text);
}

.locations p {
    font-size: 14px;
    line-height: 16.59px;
}

.locations p + p {
    margin-top: 3px;
}

.locations .tab-item h5 {
    text-transform: uppercase;
    margin-bottom: 13px;
}

.locations .tab-item .col-9 {
    padding-left: 47px;
}

.locations .tab-item .item + .item {
    margin-top: 44px;
}

footer {
    padding: 84px 0px 114px;
    color: #fff;
    font-size: 16px;
    line-height: 22.4px;
}

footer .wrapper {
    padding-top: 65px;
}

footer .btn-wrapper .wrapper {
    padding-top: 51px;
}

footer .spacer {
    padding-left: 34px;
}

footer .logo-wrapper {
    padding-left: 29px;
}

footer .logo .icon {
    margin-bottom: 7px;
}

footer .title {
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 13px;
}

footer p {
    opacity: 0.6;
    font-size: 16px;
    line-height: 22.4px;
}

footer li a {
    text-transform: uppercase;
    color: #fff;
}

footer p a {
    color: #fff !important;
    text-decoration: underline !important;
}

footer a:hover:not(.btn) {
    color: var(--accent) !important;
}

footer .text {
    padding-left: 117px;
}

footer .text .wrapper {
    max-width: 283px;
}

footer .links {
    padding-left: 30px;
}

footer .btn-wrapper {
    flex: 1;
    padding-top: 5px;
}

footer li + li {
    margin-top: 10px;
}

footer .soc-links {
    padding-top: 48px;
}

footer .soc-links a {
    display: block;
}

footer .soc-links a + a {
    margin-left: 10px;
}

footer .soc-links svg path {
    transition: all 0.2s ease;
}

footer .soc-links a:hover svg path {
    fill: var(--accent);
}

.left-right-blocks-with-slider .list {
    padding: 97px 0px 50px;
}

.left-right-blocks-with-slider .row {
    margin: 0px;
}

.left-right-blocks-with-slider .item {
    background: var(--dark-background);
    color: var(--light-text);
    border-radius: 16px;
    min-height: 357px;
    position: relative;
}

.left-right-blocks-with-slider h2 {
    text-transform: uppercase;
    margin-bottom: 8px;
    line-height: 50.4px;
    letter-spacing: -2px;
}

.left-right-blocks-with-slider .col-6 {
    padding: 0px;
}

.left-right-blocks-with-slider .content {
    padding: 71px 136px 30px 82px;
    height: 100%;
}

.left-right-blocks-with-slider .item:nth-child(even) {
    flex-direction: row-reverse;
}

.left-right-blocks-with-slider .item + .item {
    margin-top: 99px;
}

.left-right-blocks-with-slider .item + .item::before {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    top: -85.26px;
    background: url(../images/arrow.svg);
    width: 40px;
    height: 66.26px;
    margin: 0 auto;
}

.left-right-blocks-with-slider .gallery img {
    max-width: 100%;
    -webkit-border-top-right-radius: 16px;
    -webkit-border-bottom-right-radius: 16px;
    -moz-border-radius-topright: 16px;
    -moz-border-radius-bottomright: 16px;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.left-right-blocks-with-slider .swiper-slide {
    padding-top: 61%;
}

.left-right-blocks-with-slider .item .gallery img {
    object-fit: cover;
}

.left-right-blocks-with-slider .item:nth-child(even) .gallery img {
    border: none;
    -webkit-border-top-left-radius: 16px;
    -webkit-border-bottom-left-radius: 16px;
    -moz-border-radius-topleft: 16px;
    -moz-border-radius-bottomleft: 16px;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}

.left-right-blocks-with-slider .swiper-pagination-bullet {
    background: #fffdfd;
    opacity: 0.5;
    width: 57px;
    height: 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.left-right-blocks-with-slider .swiper-pagination-bullet + .swiper-pagination-bullet {
    margin-left: 2px;
}

.left-right-blocks-with-slider .swiper-pagination-bullet-active,
.left-right-blocks-with-slider .swiper-pagination-bullet:hover {
    opacity: 1;
}

.left-right-blocks-with-slider .item:nth-child(odd) .swiper-pagination {
    width: auto;
    padding-left: 27px;
}

.left-right-blocks-with-slider .item .swiper-pagination {
    bottom: 17px;
}

.left-right-blocks-with-slider .gallery {
    position: relative;
}

.left-right-blocks-with-slider .caption {
    position: absolute;
    left: 18px;
    top: 18px;
    padding: 2px 1px;
    background: var(--dark-background);
    font-size: 16px;
    line-height: 16px;
    z-index: 2;
    max-width: 90%;
}

.award-block {
    padding: 149px 0px 109px;
}

.award-block .text {
    padding-left: 80px;
    padding-right: 36px;
}

.award-block h2 {
    text-transform: uppercase;
    font-size: 36px;
    line-height: 50.4px;
    letter-spacing: -2px;
    margin-bottom: 10px;
}

.award-block strong {
    display: block;
    margin-bottom: 30px;
}

.award-block p {
    opacity: 0.6;
}

.award-list {
    padding-top: 64px;
}

.award-list .item img {
    max-width: 100%;
    max-height: 90px;
    mix-blend-mode: multiply;
}

.award-list .item {
    border-radius: 50%;
    width: 126px;
    height: 126px;
    background: var(--light-background);
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-block .image {
    padding-top: 90px;
}

.award-block .box {
    display: flex;
    justify-content: center;
    background: var(--light-background);
    border-radius: 18px;
    padding-bottom: 24px;
    margin-bottom: 45px;
}

.award-block .box img {
    margin-top: -38px;
}

.award-block h4 {
    opacity: 0.61;
    font-weight: 400;
    text-align: center;
    font-size: 18px;
    line-height: 25.2px;
}

.card {
    color: var(--light-text);
    padding: 71px 0px 102px;
}

.card h2 {
    text-transform: uppercase;
    font-size: 30px;
    line-height: 35.55px;
    letter-spacing: -2px;
    margin-bottom: 61px;
}

.card h3 {
    text-transform: uppercase;
    font-size: 25px;
    line-height: 28.78px;
    margin-bottom: 28px;
}

.card img {
    border-radius: 8px;
}

.card p {
    opacity: 0.6;
    max-width: 419px;
}

.card .image {
    padding-right: 73px;
}

.card .text {
    padding-left: 71px;
    padding-top: 3px;
}

.card .btn {
    margin-top: 24px;
}

.single .page-content {
    padding-top: 162px;
}

.woocommerce div.product .product_title {
    font-size: 32px;
    line-height: 44.8px;
    text-transform: uppercase;
}

.gallery-wrapper .item,
.single-equipment .gallery-wrapper .item {
    background: var(--light-background);
    border-radius: 12px;
}

.main-gallery .item {
    padding: 20px;
}

.main-gallery .item img {
    max-height: 459px;
    display: block;
    margin: 0 auto;
}

.single-equipment .gallery-wrapper img {
    mix-blend-mode: multiply;
}

.slider-thumbnail {
    padding-top: 16px;
}

.slider-thumbnail .thumb-item {
    width: 132px;
    height: 120px;
    background-color: var(--light-background);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
}

.woocommerce .woocommerce-breadcrumb,
.single-equipment .woocommerce-breadcrumb {
    padding-top: 80px;
}

.woocommerce-breadcrumb,
.single-equipment .woocommerce-breadcrumb {
    font-size: 16px;
    line-height: 22.4px;
    color: var(--text);
    opacity: 0.6;
}

.single-equipment .woocommerce-breadcrumb {
    margin: 0 0 26px;
}

/*.product-type-variable p.price {
display: none;
}*/

.about-product {
    background: rgb(235 231 229 / 40%);
    border-radius: 8px;
    margin-top: 18px;
    padding: 9px 0px 32px;
    justify-content: center;
}

.about-product .item {
    width: 20%;
    text-align: center;
}

.about-product .item .icon {
    height: 47px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 14px;
}

.about-product .item h5 {
    font-size: 12px;
    line-height: 16.8px;
    text-transform: uppercase;
}

.about-product .item p {
    font-size: 13px;
    line-height: 16.8px;
}

.about-product .item + .item {
    border-left: 1px solid var(--accent);
}

.single_variation_wrap {
    border-top: 1px solid var(--text);
    border-bottom: 1px solid var(--text);
    padding: 52px 0px 48px 36px;
}

.woocommerce-variation-add-to-cart {
    display: flex;
}

.woocommerce div.product form.cart div.quantity,
.woocommerce div.product form.cart .button {
    float: none;
}

.soc-links.dark svg path {
    fill: var(--text);
    transition: all 0.2s ease;
}

.soc-links.dark a:hover svg path {
    fill: var(--accent);
}

.our-journey-block {
    padding: 147px 0px 130px;
}

.our-journey-block h2 {
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-top: 25px;
    letter-spacing: -1px;
}

.our-journey-block .text p {
    opacity: 0.61;
    max-width: 381px;
    margin-bottom: 27px;
}

.our-journey-block iframe {
    border-radius: 16px;
    max-width: 100%;
}

.our-journey-block .soc-links a + a {
    margin-left: 12px;
}

.woocommerce .woocommerce-result-count,
.woocommerce-page .woocommerce-result-count,
.woocommerce .woocommerce-ordering,
.woocommerce-page .woocommerce-ordering {
    float: none;
}

.archive .product-list .product .price,
.related .product-list .product .price {
    justify-content: flex-end;
}

.archive .product-list .product .product-title,
.related .product-list .product .product-title {
    text-align: left;
    opacity: 0.6;
    font-size: 18px;
    line-height: 21.6px;
}

.services {
    padding: 97px 0px 35px;
}

.services .service-list {
    row-gap: 30px;
}

.services .section-title {
    margin-bottom: 50px;
}

.services .item {
    height: 194px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.services .col-2 {
    width: 20%;
}

.services .item::after {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.services .item .bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    position: absolute;
    transition: transform 0.3s ease;
}

.services .item:hover .bg {
    transform: scale(1.2);
}

.services .item .title {
    font-size: 18px;
    line-height: 21.33px;
    color: var(--light-text);
    text-transform: uppercase;
    padding: 0px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.featured-block {
    padding: 35px 0px 30px;
}

.featured-block .item {
    background: var(--dark-background);
    min-height: 641px;
    color: var(--light-text);
    text-align: center;
    border-radius: 16px;
    padding: 12px 20px 20px;
}

.featured-block h3 {
    text-transform: uppercase;
    font-size: 36px;
    line-height: 43.2px;
    letter-spacing: -2px;
    margin-bottom: 16px;
}

.featured-block p {
    font-size: 18px;
    line-height: 25.2px;
    max-width: 404px;
    margin: 0 auto;
}

.featured-block .btn {
    margin-top: 23px;
}

.featured-block img {
    max-height: 411px;
    margin: 0 auto;
}

.icon-block {
    padding: 98px 0px 56px;
}

.icon-block h3 {
    margin-bottom: 20px;
    font-size: 26px;
    line-height: 33.8px;
    font-weight: 500;
    min-height: 67px;
    display: flex;
    align-items: flex-end;
    font-style: italic;
    max-width: 150px;
    font-family: var(--secondary-font-family);
}

.icon-block p {
    opacity: 0.61;
    max-width: 332px;
}

.icon-block .icon {
    min-height: 87px;
    max-height: 87px;
    margin-bottom: 17px;
    display: block;
}

.icon-block .icon img {
    width: 100%;
    height: 100%;
}

.bg-colored-icon-block h2 {
    text-transform: uppercase;
    font-size: 36px;
    line-height: 43.2px;
    letter-spacing: -1px;
    margin-bottom: 35px;
    padding-left: 50px;
    max-width: 50%;
}

.bg-colored-icon-block {
    padding: 98px 0px 56px;
}

.bg-colored-icon-block .wrapper {
    gap: 20px;
    flex-direction: row;
    justify-content: space-around;
}

.bg-colored-icon-block .item {
    background-color: var(--light-background);
    padding: 50px 38px 40px;
    border-radius: 18px;
    max-width: 383px;
    width: 33%;
}

.bg-colored-icon-block h3 {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 21px;
    font-weight: 500;
}

.bg-colored-icon-block p {
    opacity: 0.61;
    font-size: 18px;
    line-height: 21px;
}

.bg-colored-icon-block .icon {
    min-height: 87px;
    margin-bottom: 30px;
}

.reviews {
    padding: 50px 0px 43px;
}

.reviews .item {
    background: var(--light-background);
    border-radius: 18px;
    padding: 34px 24px 31px;
    height: 100%;
    width: 100%;
}

/*.reviewsSlider{
	height:580px;
}*/

.reviewsSlider .swiper-slide {
    display: flex;
    height: auto;
}

.reviewsSlider .swiper-pagination {
    position: relative;
    bottom: 0px;
    margin-top: 20px;
}

.reviewsSlider .swiper-pagination-bullet {
    background: #7a7a7a;
    opacity: 0.5;
    width: 22px;
    height: 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.reviewsSlider .swiper-pagination-bullet + .swiper-pagination-bullet {
    margin-left: 2px;
}

.reviewsSlider .swiper-pagination-bullet-active,
.reviewsSlider .swiper-pagination-bullet:hover {
    opacity: 1;
    background: #bf6a48;
}

.reviews .item p {
    opacity: 0.7;
    font-size: 16px;
}

.reviews .img-wrapper {
    width: 95px;
    height: 95px;
}

.reviews .author {
    margin-bottom: 30px;
    gap: 30px;
}

.reviews .author img {
    border-radius: 50%;
    width: 95px;
    height: 95px;
    min-width: 95px;
}

.reviews .author .name {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
}

.reviews .author .company {
    font-size: 16px;
    line-height: 22px;
}

.reviews .section-desc {
    max-width: 354px;
    margin: 0 auto;
    opacity: 0.61;
    text-align: center;
}

.review-list {
    padding-top: 80px;
}

.reviews .section-desc p {
    font-size: 16px;
    line-height: 22px;
}

body:not(.custom-for-business) .reviews .section-desc {
    max-width: 434px;
}

body:not(.custom-for-business) .reviews {
    padding-bottom: 60px;
}

.featured-bg-block {
    padding: 57px 0px 62px;
}

.featured-bg-block .btn {
    white-space: nowrap;
}

.featured-bg-block .icon {
    margin-bottom: 20px;
}

.featured-bg-block .item {
    border-radius: 12px;
    background-size: cover;
    background-position: left center;
    min-height: 425px;
    color: var(--light-text);
    padding: 69px 70px 40px 70px;
    background-color: var(--dark-background);
}

.featured-bg-block h2 {
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.featured-bg-block p {
    opacity: 0.6;
}

.featured-bg-block .wrapper {
    max-width: 478px;
}

.featured-bg-block .info {
    padding-top: 46px;
}

.featured-bg-block .info p {
    margin-left: 53px;
}

.partner-list {
    border-radius: 18px;
    padding: 27px 30px 30px;
    background: var(--light-background);
}

.partner-list .item {
    width: 16.666666666666668%;
    padding: 14px 20px 9px;
}

.partner-list img {
    max-height: 81.67px;
    max-width: 165px;
    width: 100%;
    mix-blend-mode: multiply;
}

.partners {
    padding: 40px 0px 40px;
}

.simple-content-block {
    padding: 46px 0px 86px;
}

.simple-content-block .text {
    max-width: 516px;
    padding-top: 51px;
}

.simple-content-block h2 {
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.simple-content-block p {
    opacity: 0.6;
}

.simple-content-block .btn {
    margin-top: 26px;
}

.simple-content-block img {
    border-radius: 8px;
}

footer .business-footer .title {
    font-size: 16px;
    line-height: 18.96px;
}

footer .business-footer .links {
    padding-left: 8px;
}

footer .business-footer p {
    line-height: 22.4px;
}

footer .business-footer .bottom .wrapper {
    padding-top: 49px;
}

footer .business-footer .soc-links {
    padding-top: 43px;
    margin-left: -18px;
}

.articles img {
    height: auto;
}

.blog {
    padding: 178px 0px 241px;
}

.article {
    background: var(--light-background);
    border-radius: 16px;
    padding: 18px 20px 18px 49px;
}

.article .title {
    color: var(--text);
    text-transform: uppercase;
    margin-bottom: 26px;
    display: block;
}

.article .title:hover {
    color: var(--accent);
}
.article p {
    opacity: 0.6;
}

.article + .article {
    margin-top: 30px;
}

.article .date {
    font-size: 15px;
    line-height: 21px;
    margin-bottom: 58px;
}

.article h2 {
    font-size: 38px;
    line-height: 39.9px;
    letter-spacing: -1px;
    margin: 0px;
}

.article .col-6:first-child {
    padding-right: 50px;
}

.article .text {
    display: flex;
    flex-direction: column;
}

.article .text .see-more {
    margin-top: auto;
    margin-bottom: 11px;
    display: flex;
    align-items: center;
}

.article .text p {
    margin-bottom: 20px;
}

.article .text .see-more svg {
    margin-left: 21px;
}

.article .image {
    padding-left: 26px;
}

.article .image .featured-image {
    overflow: hidden;
    border-radius: 8px;
}

.article .image .featured-image img {
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.article .image .featured-image:hover img {
    transform: scale(1.2);
}

.more-posts {
    margin-top: 65px;
}

.post {
    padding: 194px 0px 241px;
}

.post p,
.post h1,
.post h2,
.post h3,
.post h4,
.post h5,
.post h6 {
    max-width: 558px;
}

.post p:not(:has(strong)),
.post h2,
.post h3,
.post h4,
.post h5,
.post h6 {
    opacity: 0.7;
}

.post p {
    line-height: 27px;
    margin-bottom: 29px;
}

.post h2 {
    font-size: 18px;
    line-height: 27px;
}

.post h1 {
    text-transform: uppercase;
    margin-bottom: 46px;
    font-size: 38px;
    line-height: 39.9px;
    letter-spacing: -1px;
}

.post figure {
    margin: 88px auto 29px;
}

.post img {
    border-radius: 8px;
    height: auto;
}

.post p a {
    text-decoration: underline;
    color: var(--text);
}

.post p a:hover {
    color: var(--accent);
}

.post .featured-image {
    margin-bottom: 73px;
}

.post strong {
    font-weight: 400;
}

.post .row {
    padding: 0px 49px;
}

.post .date {
    font-size: 15px;
    line-height: 21px;
}

.post .featured-image .caption,
figcaption {
    display: flex;
    justify-content: flex-end;
    color: var(--text);
    opacity: 0.6;
    margin-top: 6px;
    font-size: 12px;
    line-height: 16.8px;
}

.share {
    padding-top: 18px;
    max-width: 591px;
}

.share .text {
    text-transform: uppercase;
    color: var(--accent);
    font-size: 18px;
    line-height: 23.4px;
}

.share .text svg {
    margin-left: 19px;
}

.share a {
    display: block;
}

.share a svg path {
    transition: all 0.2s ease;
}

.share a:hover svg path {
    fill: var(--primary-button-hover);
}

.share a + a {
    margin-left: 14px;
}

.card-list {
    padding: 84px 0px 240px;
}

.card-list .title {
    max-width: 365px;
}

.card-list .article {
    padding: 18px 20px 18px 60px;
    background: transparent;
}

.card-list .article h2 {
    font-size: 36px;
    line-height: 43.2px;
}

.card-list .article .title:hover {
    color: var(--text);
}

.card-list .article .title {
    padding-top: 32px;
}

.card-list .article + .article {
    margin-top: 64px;
}

.team .member {
    display: none;
}

.team .show {
    display: block;
}

.team {
    padding: 60px 0px 99px;
}

.team .members h2 {
    margin-bottom: 70px;
    text-align: center;
    font-style: italic;
    font-weight: 500;
}

.team .filter-item {
    text-transform: uppercase;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    margin: 0px 22px;
    border-bottom: 1px solid var(--text);
    padding: 0px 0px 2px;
    transition: all 0.2s ease;
    min-width: 129px;
    text-align: center;
    cursor: pointer;
}

.team .filter-item.active {
    color: var(--accent);
}

.team .filter-item.active {
    border-color: var(--accent);
}

.team #team-filter {
    padding-bottom: 64px;
}

.team .members img {
    border-radius: 8px;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.team .members .img-wrapper {
    height: 360px;
}

.team .row {
    --bs-gutter-x: 90px;
    padding: 0px 78px;
}

.team .member h3 {
    text-transform: uppercase;
    font-size: 25px;
    line-height: 28.78px;
    margin-bottom: 5px;
    margin-top: 29px;
}

.team .member .role {
    font-size: 18px;
    line-height: 20.7px;
    opacity: 0.6;
    margin-bottom: 18px;
}

.team .member p {
    font-size: 16px;
    line-height: 21.8px;
    opacity: 0.6;
}

.team .member {
    padding-bottom: 75px;
}

.team .intro {
    text-align: center;
    padding-bottom: 84px;
}

.team .intro h2 {
    margin-bottom: 14px;
    text-transform: uppercase;
    font-size: 30px;
    line-height: 35.55px;
}

.team .intro p {
    max-width: 367px;
    margin: 0 auto 33px;
    font-size: 18px;
    line-height: 25.2px;
    opacity: 0.6;
}

.team .intro img {
    border-radius: 16px;
    width: 100%;
}

.form-block {
    padding: 116px 0px 72px;
}

.form-block .title {
    font-size: 30px;
    line-height: 35.55px;
    text-transform: uppercase;
    margin-bottom: 37px;
}

.form-block p {
    opacity: 0.6;
    font-size: 18px;
    line-height: 25.2px;
}

.form-block .wrapper {
    margin-bottom: 59px;
}

.form-block h5 {
    text-transform: uppercase;
    margin-bottom: 59px;
}

.form-block .form-field h5 {
    margin-bottom: 15px;
}

.form-block form {
    padding-top: 40px;
    max-width: 551px;
}

.form-block form label {
    display: block;
}

.form-block form br {
    display: none;
}

.form-block form label {
    padding-bottom: 17px;
    position: relative;
}

.form-block form label .text {
    position: absolute;
    font-size: 14px;
    color: #9c9c9c;
    top: 1px;
    left: 17px;
    z-index: 1;
}

.form-block .box {
    background: var(--light-background);
    padding: 45px 28px 26px;
    border-radius: 8px;
}

.form-block ul {
    list-style: disc;
    padding-left: 16px;
    margin-bottom: 45px;
}

.form-block .box h5 {
    margin-bottom: 16px;
}

.form-block form p {
    opacity: 1;
}

.form-block form .wpcf7-submit {
    width: auto;
    border: none;
    cursor: pointer;
    margin-top: 28px;
}

.form-block form textarea {
    height: 168px;
    resize: vertical;
}

.archive .site-main {
    padding-top: 234px;
}

.archive h1,
.page-template-page-equipment .page-content h2,
.custom-products .section-line .title {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -1px;
    font-size: 36px;
    line-height: 50.4px;
    margin-bottom: 23px;
}

.product-filters .form-control-radio input {
    display: none;
}

.product-filters .form-control-radio .text {
    border: 1px solid var(--text);
    font-size: 14px;
    padding: 4px 14px 2px;
    border-radius: 52px;
    font-weight: 400;
    cursor: pointer;
    display: block;
}

.product-filters .form-control-radio :checked + .text {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--light-text);
}

.product-filters .form-control-radio {
    margin: 0px 6px 17px;
}

.service-type-content {
    padding: 26px 0px 60px;
}

.service-type-content .item {
    border-top: 1px solid var(--text);
    padding: 49px 0px 53px 0px;
}

.service-type-content .item:last-child {
    border-bottom: 1px solid var(--text);
}

.service-type-content .img-box img {
    max-height: 244px;
}

.service-type-content .img-box {
    background: var(--light-background);
    padding: 30px 20px;
}

.service-type-content.new-service-type-content .img-box img {
    max-height: 400px;
}

.service-type-content.new-service-type-content .img-box {
    background: transparent;
    padding: 0;
}

.service-type-content.new-service-type-content .row {
    flex-direction: row-reverse;
}

.service-type-content.new-service-type-content h2,
.service-type-content.new-service-type-content p,
.service-type-content.new-service-type-content .wrapper {
    max-width: none;
}

.service-type-content.new-service-type-content .btn {
    display: block;
    width: fit-content;
    margin-left: auto;
}

.service-type-content p {
    opacity: 0.6;
}

.service-type-content p,
.service-type-content h2 {
    max-width: 367px;
}

.service-type-content h2 {
    text-transform: uppercase;
    margin-bottom: 25px;
    padding-top: 17px;
    letter-spacing: -1px;
}

.service-type-content .wrapper {
    padding-left: 44px;
}

.service-type-content .btn {
    margin-top: 44px;
}

.service-type-content .blog-list .img {
    height: 220px;
    background-size: cover;
}

.service-type-content .blog-list h3 {
    text-transform: uppercase;
    color: var(--text);
    font-size: 16px;
    line-height: 22.4px;
    padding: 36px 16px 42px;
}

.service-type-content .blog-list a {
    border-radius: 12px;
    overflow: hidden;
    display: block;
    background: var(--light-background);
    height: 100%;
}

.rent-content-list {
    padding: 50px 70px 40px;
}

.rent-content-list .item {
    background-color: var(--light-background);
    padding: 30px 50px 30px 50px;
    border-radius: 18px;
    margin-bottom: 15px;
}

.rent-content-list .item .wrapper {
    gap: 20px;
}

.rent-content-list img {
    max-height: 300px;
    margin: 0 auto;
}

.rent-content-list .item h2 {
    text-transform: uppercase;
    font-size: 36px;
    line-height: 43.2px;
    letter-spacing: -1px;
    max-width: 380px;
}

.rent-content-list .item p {
    font-size: 18px;
    line-height: 25px;
    opacity: 0.6;
    max-width: 500px;
}

.rent-content-list .item .with-img h2 {
    margin-bottom: 20px;
}

.offices-service {
    padding: 80px 0px 180px;
}

.offices-service h2 {
    text-transform: uppercase;
    font-size: 36px;
    line-height: 43.2px;
    letter-spacing: -1px;
    margin-bottom: 30px;
    max-width: 509px;
    text-align: center;
}

.offices-service .content {
    position: relative;
    width: 100%;
    max-width: 788px;
    margin: 40px auto 0;
    height: 475px;
}

.offices-service p {
    position: absolute;
    opacity: 0.6;
    max-width: 270px;
}

.offices-service .description-one {
    top: 18%;
    left: -15%;
}

.offices-service .description-two {
    bottom: -8%;
    right: -15%;
}

.offices-service .content img {
    height: auto;
    margin: 0 auto;
}

.faq-section {
    padding: 60px;
}

.faq-section h2 {
    max-width: 50%;
    text-align: start;
    text-transform: uppercase;
    margin-bottom: 30px;
    padding-left: 70px;
}

.faq-section .block-header {
    font-weight: 500;
    padding: 0 120px 0 70px;
    cursor: pointer;
}

.faq-section .block-header svg {
    display: block;
}

.faq-section .block-content {
    font-size: 18px;
    opacity: 0.6;
    line-height: 25px;
    padding-left: 70px;
    width: 50%;
    margin-top: 20px;
    margin-bottom: 10px;
}

.faq-section .block-item .block-content {
    display: none;
}

.faq-section .block-item.active .block-content {
    display: block;
}

.faq-section .block-item svg {
    transition: all 0.3s ease-in-out;
}

.faq-section .block-item.active svg {
    transform: rotate(180deg);
}

.faq-section .block-item:nth-of-type(1) {
    border-top: solid 1px #7a7a7a;
}

.faq-section .block-item {
    padding: 25px 0 20px;
    border-bottom: solid 1px #7a7a7a;
}

.faq-section .btn-wrapper .btn {
    margin-top: 40px;
    display: block;
    width: fit-content;
    margin-left: auto;
}

.banner {
    color: var(--light-text);
    padding: 60px 0px 60px;
}

.banner .wrapper {
    border-radius: 12px;
    padding: 66px 20px 57px;
    text-align: center;
    max-width: 963px;
    margin: 0 auto;
}

.banner h2 {
    text-transform: uppercase;
    font-size: 36px;
    line-height: 43.2px;
    letter-spacing: -1px;
    margin-bottom: 18px;
    max-width: 609px;
}

.banner p {
    max-width: 429px;
    opacity: 0.6;
}

.banner .btn {
    margin-top: 32px;
}

.banner .info {
    margin-top: 25px;
    display: block;
}

.blog-banner {
    padding: 20px 0 80px;
    margin: 0 auto;
    color: var(--light-text);
    text-align: center;
}

.blog-banner .wrapper {
    max-width: 738px;
    margin: 0 auto;
    border-radius: 12px;
    padding: 66px 20px;
    background-repeat: no-repeat;
    background-size: cover;
}

.blog-banner h2 {
    text-transform: uppercase;
    font-size: 36px;
    line-height: 43.2px;
    letter-spacing: -1px;
    margin-bottom: 18px;
    max-width: 300px;
}

.blog-banner p {
    font-size: 18px;
    line-height: 25.2px;
    margin-bottom: 18px;
    max-width: 490px;
}

.full-width-banner {
    color: #fff;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right center;
    background-color: var(--dark-background);
}

.full-width-banner .wrapper {
    width: 463px;
    max-width: 100%;
}

.full-width-banner .wrapper p {
    opacity: 0.6;
}

.full-width-banner h2 {
    font-size: 36px;
    line-height: 43px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.full-width-banner .container {
    padding-top: 154px;
    padding-bottom: 145px;
    position: relative;
    min-height: 503px;
}

.tech-support-section {
    background-color: var(--dark-background);
}

.tech-support-section .container {
    padding-top: 75px;
    padding-bottom: 75px;
    position: relative;
    min-height: 440px;
}

.tech-support-section h2,
.tech-support-section p {
    color: var(--light-text);
}

.tech-support-section h2 {
    font-size: 48px;
    line-height: 50px;
    letter-spacing: -0.3px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 24px;
}

.tech-support-section p {
    font-size: 18px;
    line-height: 27px;
}

.tech-support-section .item-wrapper {
    display: flex;
    gap: 64px;
    justify-content: flex-end;
}

.tech-support-section .item-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.tech-support-section .first-column {
    justify-content: flex-start;
}

.tech-support-section .second-column {
    justify-content: center;
    height: 100%;
}

.tech-support-section .item {
    position: relative;
    height: fit-content;
    max-width: 215px;
    padding-bottom: 18px;
}

.tech-support-section .item p {
    font-weight: 500;
    text-align: center;
    padding: 0 8px;
}

.tech-support-section .item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 15px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    background: url(../images/under-line.svg) no-repeat;
    background-size: 100% 15px;
}

.single-services .form-block .wrapper {
    border-top: 1px solid var(--text);
    padding-top: 66px;
}

.single-services .form-block {
    padding: 17px 0px 72px;
}

.single-services .form-block .title {
    font-size: 36px;
    line-height: 43.2px;
}

.single-services .form-block h4 {
    font-size: 24px;
    line-height: 31.2px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.single-services .form-block form {
    padding-top: 78px;
}

.form-block .after-info {
    padding-top: 36px;
    text-align: center;
}

.form-block .after-info h5 {
    margin-bottom: 6px;
}

.form-block .after-info p {
    opacity: 1;
}

.single-services main ul {
    font-size: 16px;
    line-height: 26.72px;
    margin-bottom: 11px;
}

.single-services .form-block .box {
    margin-top: 140px;
}

.product-select-filter .product-select,
.product-select-filter .orderby {
    border: none;
    border-radius: 0px;
    border-top: 1px solid var(--text);
    border-bottom: 1px solid var(--text);
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: -1px;
    padding: 16px 25px 12px 0px;
    width: 283px;
    max-width: 100%;
    margin: 0px 10px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url(../images/select-arrow.svg);
    background-size: 18px 18px;
    background-position: 98% center;
    background-repeat: no-repeat;
}

.product-select-filter {
    padding: 35px 0px 81px;
}

.product-select-categories {
    max-width: 720px;
    margin: 0 auto;
}

.products-not-found {
    text-align: center;
    padding: 0px 0px 60px;
    font-size: 30px;
}

.archive .product-list .product .title,
.related .product-list .product .title {
    min-height: 44px;
    margin-bottom: 22px;
}

.related {
    padding: 60px 0px 60px;
}

.related .section-title {
    margin-bottom: 51px;
}

.single-product .page-content .product {
    padding-bottom: 75px;
}

.product-list .product .quantity,
.single-product .quantity {
    width: 119px;
    border: 1px solid #d9d9d9;
    border-radius: 30px;
    min-width: 70px;
}

.product-list .product .quantity button,
.single-product .quantity button {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-input {
    text-align: center;
}

.product-list .product .quantity input,
.single-product .quantity input {
    border: none;
    height: 33px;
    line-height: 33px;
    min-height: auto;
}

.product-list .product .quantity button,
.product-list .product .quantity input,
.single-product .quantity button,
.single-product .quantity input {
    width: 33.333333% !important;
}

.single-product .quantity .quantity-wrapper {
    display: flex;
}

.promotion-banner .wrapper {
    max-width: 1200px;
    margin: 0 auto;
    color: var(--light-text);
    border-radius: 12px;
    padding: 66px 65px 30px 90px;
}

.promotion-banner {
    padding: 31px 0px 120px;
}

.promotion-banner h2 {
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 27px;
    max-width: 411px;
}

.promotion-banner p {
    opacity: 0.6;
    max-width: 411px;
}

.promotion-banner .btn {
    margin-top: 37px;
}

.woocommerce-tabs p {
    opacity: 0.6;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 22.4px;
}

.product-info {
    padding: 22px 0px 42px;
    font-size: 16px;
    line-height: 22.4px;
    color: #7a7a7a;
}

.product-info strong {
    font-weight: 600;
    color: #222222;
    opacity: 1;
}

.single-product .subtitle {
    font-size: 24px;
    line-height: 33.6px;
    padding-top: 1px;
    font-weight: 400;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb {
    color: var(--text);
    opacity: 0.6;
}

.woocommerce .woocommerce-breadcrumb {
    margin: 0 0 26px;
}

#load-more {
    cursor: pointer;
}

.page-template-default .page-content .page-title {
    padding-top: 60px;
}

.page-template-default .page-content {
    padding-bottom: 120px;
}

.breadscumb-line {
    color: #f8f8f8;
    font-size: 16px;
    line-height: 22.4px;
    text-transform: uppercase;
    opacity: 0.4;
    margin-top: -98px;
    padding-bottom: 48px;
}

.page-template-page-equipment .product-list .product {
    text-align: left;
}

.page-template-page-equipment .brand {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 22.4px;
    display: block;
    padding-bottom: 1px;
}

.page-template-page-equipment .page-content {
    padding-top: 70px;
}

.page-template-page-equipment .product-list .product .image-wrapper {
    margin-bottom: 27px;
}

.page-template-page-equipment .product-list .product-title h3 {
    font-size: 18px;
    line-height: 25.2px;
}

.brands {
    padding-top: 12px;
}

.brands h3 {
    text-transform: uppercase;
    text-align: center;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -1px;
    margin-bottom: 11px;
}

.page-template-page-equipment .product-select-categories {
    max-width: 770px;
}

.product-brand {
    font-weight: 700;
    font-size: 32px;
    line-height: 44.8px;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.single-equipment .product_title {
    font-size: 24px;
    line-height: 33.6px;
    font-weight: 400;
    max-width: 285px;
}

.single-equipment .page-content {
    padding-bottom: 80px;
}

.file-dwl {
    display: inline-block;
    margin: 39px 0px 0px;
    font-size: 16px;
    line-height: 22.4px;
}

.file-dwl span {
    text-decoration: underline;
    color: var(--text);
    display: inline-block;
    margin-left: 7px;
    transition: all 0.2s ease;
}

.file-dwl:hover span {
    color: var(--accent);
}

.product-text-tabs .tabcontent {
    display: none;
    padding: 31px 0px 0px;
}

.product-text-tabs .tab {
    display: flex;
    padding-top: 37px;
}

.product-text-tabs .tablinks {
    text-transform: uppercase;
    font-size: 16px;
    line-height: 22.4px;
    opacity: 0.3;
    letter-spacing: -0.5px;
    font-weight: 700;
    margin-right: 34px;
    cursor: pointer;
    border-bottom: 1px solid rgba(34, 34, 34, 0.3);
    padding-bottom: 8px;
}

.product-text-tabs .tablinks.active {
    opacity: 1;
    border-bottom: 1px solid rgba(34, 34, 34, 1);
}

.product-text-tabs .tabcontent p {
    color: rgba(34, 34, 34, 0.6);
    font-size: 16px;
    line-height: 22.4px;
    margin-bottom: 23px;
    padding-right: 14%;
}

.product-text-tabs .tabcontent iframe {
    width: 100%;
}

.product-text-tabs .tabcontent b {
    font-weight: 500;
}

.single-equipment .product-list .product {
    text-align: left;
}

.link-btn {
    color: var(--text);
    text-decoration: underline;
    font-size: 16px;
    line-height: 22.4px;
}

.link-btn:hover {
    color: var(--accent);
}

.single-equipment .action-list {
    padding: 42px 35px 0px 0px;
}

.equipment-description {
    border-top: 1px solid var(--text);
    padding: 67px 0px 30px;
    margin-top: 20px;
}

.equipment-description h3 {
    margin-bottom: 17px;
}

.equipment-description p {
    max-width: 590px;
    margin: 0 auto;
    text-align: center;
    color: rgba(34, 34, 34, 0.6);
    font-size: 16px;
    line-height: 22.4px;
}

.page-template-page-equipment .products {
    padding: 21px 0px 60px;
}

.clear-filter-btn {
    margin: 7px 0px 2px;
    cursor: pointer;
}

.option-list h4 {
    font-size: 16px;
    line-height: 22.4px;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.option-list .item .form-check-label {
    display: block;
    border: 1px solid rgba(126, 119, 116, 1);
    border-radius: 52px;
    font-size: 14px;
    font-weight: 400;
}

.option-list .img-item .form-check-label {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-list .item:not(.img-item) .form-check-label {
    padding: 4px 14px;
}

.option-list .form-check-input:checked ~ .form-check-label {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--light-text);
}

.option-list .form-check-input:disabled ~ .form-check-label {
    opacity: 0.3;
    border-color: rgba(126, 119, 116, 1);
}

.form-wrapper {
    position: relative;
}

.ground-more-info {
    position: absolute;
    left: 0px;
    display: none;
    font-size: 13px;
    bottom: -30px;
    font-weight: bold;
}

.option-list .form-check-input:disabled ~ .ground-more-info {
    opacity: 0.3;
}

.option-list .form-check-input:checked ~ .ground-more-info {
    display: block;
}

.option-list .img-item .form-check-input:checked ~ .form-check-label svg path {
    fill: var(--light-text);
}

.option-list .form-check .form-check-input {
    display: none;
}

.option-list .form-check {
    margin-right: 13px;
}

.option-list .form-check .form-check-label {
    cursor: pointer;
}

.option-list .item + .item {
    margin-top: 25px;
}

.single_variation_wrap .price-wrapper {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

.single_variation_wrap .price-wrapper {
    font-size: 20px;
    line-height: 26px;
    font-weight: 400;
}

.single_variation_wrap .price-wrapper bdi {
    display: flex;
    flex-direction: row-reverse;
}

.single_variation_wrap .price-wrapper .strike {
    color: var(--accent);
    margin-left: 25px;
}

.single_variation_wrap .price-wrapper .highlight {
    text-decoration: none;
}

.product-price-info .quantity {
    margin: 0px 27px 0px auto !important;
}

.single_variation_wrap .single_add_to_cart_button,
.single-add-wrapper .single_add_to_cart_button {
    height: 35px !important;
    line-height: 38px !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    padding: 0px 25px !important;
    display: block !important;
}

.minus-btn,
.plus-btn {
    cursor: pointer;
}

.main-wrapper,
.block-section {
    position: relative;
}

.loading-btn {
    width: 100%;
    position: absolute;
    top: 0px;
    bottom: 0px;
    background: var(--page-background);
    display: flex;
    justify-content: center;
}

.loading-btn .spinner svg {
    animation: spin 1s linear infinite;
    width: 45px;
    height: 45px;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.woocommerce-message::before {
    color: var(--accent);
}

.woocommerce-message {
    background: transparent;
    border: 1px solid var(--accent);
    border-top-width: 3px;
    display: flex;
    align-items: center;
    /*    flex-direction: row-reverse;*/
    justify-content: flex-end;
}

.woocommerce-message .button {
    margin-left: auto !important;
    border-radius: 34px !important;
    font-weight: 400 !important;
}

.woocommerce-message .button:hover,
.woocommerce-account .woocommerce-info .wc-forward:hover,
.wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button:hover {
    color: var(--light-background) !important;
    background: var(--primary-button-hover) !important;
}

.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
    top: 24px;
}

.woocommerce .pswp__item img,
.woocommerce-page .pswp__item img {
    max-width: inherit;
}

.single-product .space-wrapper {
    padding-left: 34px;
}

.woocommerce div.product form.cart .variations {
    margin-left: 34px;
}

.woocommerce-account .woocommerce-info,
.woocommerce-account .woocommerce-info::before {
    border-top-color: #bf6a48;
}

.wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button {
    border-radius: 34px;
    background: var(--primary-button);
    color: #fff;
    border: none;
}

.woocommerce-account .woocommerce-info .wc-forward {
    border-radius: 34px;
    padding: 0px 35px;
    height: 47px;
    line-height: 47px;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    background: var(--primary-button);
    color: #fff;
}

.woocommerce form.login .form-row:nth-last-child(2) {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.woocommerce form.login .form-row .woocommerce-form-login__submit {
    width: fit-content;
}

.woocommerce-account .woocommerce-info::before {
    color: #bf6a48;
}

.option-list {
    padding: 7px 0px 48px 0px;
}

.option-list .small-wrap + .small-wrap {
    padding-left: 29px;
}

.option-list .small-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.woocommerce div.product form.cart {
    margin-bottom: 0px;
}

.single_variation_wrap,
.single-add-wrapper,
.single-add-wrapper .right,
.product-type-simple .product-price-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.single_variation_wrap .price,
.product-type-simple .price {
    color: var(--text) !important;
}

.single_variation_wrap .price bdi,
.product-type-simple .price bdi {
    display: flex;
    flex-direction: row-reverse;
}

.product-type-variable .product-price-info > .price {
    display: none;
}

.woocommerce-variation-add-to-cart,
.single-add-wrapper .right {
    margin-left: auto;
}

.product-type-simple .product-price-info {
    border-bottom: 1px solid var(--text);
    padding: 32px 0px 48px 36px;
}

.product-summary .line {
    border-bottom: 1px solid var(--text);
    margin-bottom: 20px;
}

.woo-selected-variation-item-name {
    display: none !important;
}

.variations .label {
    text-transform: uppercase;
    font-size: 16px;
    line-height: 22.4px;
    letter-spacing: -0.5px;
    margin-bottom: 0px;
}

.woo-variation-swatches .wvs-style-squared.variable-items-wrapper .variable-item::before,
.woo-variation-swatches .wvs-style-squared.variable-items-wrapper .variable-item::after {
    display: none;
}

.woo-variation-swatches .wvs-style-squared.variable-items-wrapper .variable-item:not(.radio-variable-item) {
    padding: 8px 12px;
    display: block;
    border: 1px solid rgba(126, 119, 116, 1) !important;
    border-radius: 52px !important;
    font-size: 14px;
    font-weight: 400;
    box-shadow: none;
    height: auto;
    line-height: initial !important;
}

.woo-variation-swatches .wvs-style-squared.variable-items-wrapper .variable-item {
    margin: 0px;
}

.woo-variation-swatches .wvs-style-squared.variable-items-wrapper .variable-item + .variable-item {
    margin-left: 13px;
}

.woo-variation-swatches .wvs-style-squared.variable-items-wrapper .variable-item span {
    padding: 0px !important;
}

.woo-variation-swatches .wvs-style-squared.variable-items-wrapper .variable-item.selected {
    background: var(--accent) !important;
    color: var(--light-text) !important;
    border-color: var(--accent) !important;
}

.add_to_cart_button {
    font-weight: 500 !important;
    font-family: var(--font-family);
}

.wcb2b-quantity {
    justify-content: space-between;
    width: 100%;
}

.thumb-arrows::after {
    display: none;
}

.thumb-arrows svg {
    fill: var(--text);
}

.swiper-button-next,
.swiper-button-prev {
    width: 40px;
    height: 40px;
}

.swiper-button-next svg,
.swiper-button-prev svg {
    width: 14px;
    height: 24px;
}

.lang-wrapper {
    padding-top: 7px;
    margin-right: -16px;
}

.wpml-ls-legacy-dropdown a.wpml-ls-item-toggle {
    padding: 16px 46px 0px 34px;
}

.wpml-ls {
    padding: 0px;
    width: auto;
}

.wpml-ls a {
    color: var(--light-text);
    opacity: 0.6;
}

.wpml-ls a:hover {
    opacity: 1;
}

.wpml-ls-legacy-dropdown a {
    border: none;
    background: transparent;
    font-weight: 400;
}

.wpml-ls-legacy-dropdown a.wpml-ls-item-toggle:after {
    background-image: url(../images/carrot-grey.svg);
    width: 12px;
    height: 12px;
    background-size: 12px 12px;
    border: none;
    right: 23px;
    top: 19px;
}

.wpml-ls a {
    transition: none;
}

.wpml-ls-legacy-dropdown .wpml-ls-item:hover a.wpml-ls-item-toggle:after {
    background-image: url(../images/carrot-accent.svg);
}

.wpml-ls-legacy-dropdown .wpml-ls-item:hover {
    background: #313131;
}

.wpml-ls-legacy-dropdown .wpml-ls-item:hover a {
    opacity: 1;
}

.wpml-ls-legacy-dropdown .wpml-ls-current-language:hover > a,
.wpml-ls-legacy-dropdown a:focus,
.wpml-ls-legacy-dropdown a:hover {
    background: transparent;
    color: var(--accent);
}

.wpml-ls-sub-menu {
    background: #313131;
}

.wpml-ls-legacy-dropdown .wpml-ls-sub-menu {
    border: none;
}

.wpml-ls-sub-menu {
    padding: 18px 10px 55px 24px !important;
    -webkit-border-bottom-right-radius: 12px;
    -webkit-border-bottom-left-radius: 12px;
    -moz-border-radius-bottomright: 12px;
    -moz-border-radius-bottomleft: 12px;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
}

.wpml-ls-sub-menu a {
    color: var(--light-text);
    opacity: 1;
}

.wpml-ls-sub-menu li + li {
    margin-top: 10px !important;
}

.wpml-ls-legacy-dropdown .wpml-ls-item {
    -webkit-border-top-left-radius: 12px;
    -webkit-border-top-right-radius: 12px;
    -moz-border-radius-topleft: 12px;
    -moz-border-radius-topright: 12px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.visible-mobile {
    display: none;
}

.woocommerce form .form-row .input-text,
.woocommerce-page form .form-row .input-text {
    padding: 0px 17px;
}

.page-title + .woocommerce {
    padding-top: 30px;
}

.error-page .error-text {
    padding-top: 200px;
    padding-bottom: 170px;
    text-align: center;
}

.error-page .error-text h1 {
    font-size: 11.25em;
    color: var(--accent);
    line-height: 198px;
    margin-bottom: 0;
}

.error-page .error-text h2 {
    margin-bottom: 17px;
}

.error-page .error-text p {
    margin-bottom: 36px;
}

.custom-contacts .locations {
    background: var(--page-background);
    padding: 115px 0px 0px;
}

.custom-products .banner .wrapper {
    max-width: 613px;
}

.business-products .product {
    text-align: left;
}

.business-products {
    padding-bottom: 0px !important;
}

.business-products .product .product-title {
    color: var(--text-opacity);
}

.business-products .section-line {
    padding: 0px 0px 34px;
    border-bottom: 1px solid var(--text);
}

.business-product-header {
    padding: 66px 0px 65px;
    text-align: center;
    font-family: var(--secondary-font-family);
}

.business-product-header h2 {
    font-size: 26px;
    line-height: 34px;
    font-weight: 500;
    margin-bottom: 10px;
}

.business-product-header p {
    font-size: 20px;
    line-height: 26px;
    font-style: normal;
}

.custom-products .products {
    padding: 63px 0px 60px;
}

.product-parent-category-for-business-products .product-price-info,
.product-parent-category-for-business-products .product-info,
.product-parent-category-for-business-products .related .price,
.product-parent-category-for-business-products .related .action,
.business-products .product .price,
.business-products .product .action {
    display: none !important;
}

.product-parent-category-for-business-products .product-summary .line {
    border: none;
}

body:not(.product-parent-category-for-business-products) .action-list {
    display: none;
}

.page-template-default p {
    line-height: 27px;
    margin-bottom: 29px;
}

.page-template-default p:not(:has(strong)),
.page-template-default h2,
.page-template-default h3,
.page-template-default h4,
.page-template-default h5,
.page-template-default h6 {
    opacity: 0.7;
}

.page-template-default.page h2,
.page-template-default.page h3,
.page-template-default.page h4,
.page-template-default.page h5,
.page-template-default.page h6 {
    opacity: 1;
    margin-bottom: 15px;
    padding-top: 15px;
}

.page-template-default .page-title {
    text-transform: uppercase;
    margin-bottom: 46px;
    font-size: 38px;
    line-height: 39.9px;
    letter-spacing: -1px;
}

.single-equipment .banner {
    padding: 0px 0px 106px;
}

.single-equipment .banner .wrapper {
    max-width: 613px;
}

.woocommerce-breadcrumb a {
    color: var(--text-opacity);
}

.form-img img,
.simple-under-img img {
    border-radius: 15px;
}

.simple-under-img img {
    display: block;
    margin: 0 auto;
}

.simple-under-img {
    padding: 30px 0px 30px;
}

.fade {
    opacity: 0;
    transition: opacity 0.15s linear;
}

.modal-backdrop {
    content: "";
    opacity: 0;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    display: none;
}

.modal-backdrop.show {
    display: block;
    opacity: 0.5;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.fade.show {
    opacity: 1;
}

.modal.show {
    display: block;
}

.modal-open .modal {
    z-index: 9999999;
}

.modal .modal-content {
    background-color: var(--page-background);
    color: var(--text);
    margin: 55px auto;
    padding: 51px 85px;
    border-radius: 8px;
    width: 834px;
    max-width: 100%;
    z-index: 5;
    position: relative;
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    -webkit-transform: translate(0, -25%);
    transform: translate(0, -25%);
}

.modal.show .modal-content {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.modal-open {
    overflow: hidden;
}

#modal-btn {
    cursor: pointer;
}

.modal-content p,
.modal-content .form-block form {
    max-width: 100%;
}

.modal-content .form-block form {
    padding-top: 50px;
}

.modal-content .form-block {
    padding-bottom: 0px;
}

.modal-content .close svg {
    width: 30px;
    height: 30px;
}

.modal-content .close {
    position: absolute;
    right: 85px;
    top: 50px;
    cursor: pointer;
}

.tax-equipment-categories .page-content {
    padding-top: 232px;
}

.product-select option {
    font-size: 16px;
}

.in-icon {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.in-icon svg {
    width: 100%;
    max-height: 25px;
}

.in-icon path {
    fill: var(--light-text);
}

.cart-count {
    color: #fff;
    background: var(--accent);
    font-size: 11px;
    width: 15px;
    height: 15px;
    line-height: 15px;
    border-radius: 50%;
    text-align: center;
    display: block;
    position: absolute;
    right: 108px;
    /*    right: -9px;*/
    bottom: 68px;
}

.cart-count-logged.cart-count {
    right: 161px;
    /*    right: -9px;*/
}

.custom-for-business .cart-count,
.parent-pageid-32 .cart-count,
.page-id-7778 .cart-count,
.parent-pageid-7778 .cart-count,
.parent-pageid-6764 .cart-count,
.page-id-1254 .cart-count,
.parent-pageid-1223 .cart-count,
.single-services .cart-count {
    display: none;
}

.product-price-info:has(.price:empty) {
    display: none;
}

.woocommerce-pagination {
    padding: 16px 0 30px;
}

.woocommerce-pagination li .page-numbers.current {
    background: var(--accent) !important;
    color: #fff !important;
    text-decoration: none;
}

.woocommerce-pagination ul.page-numbers {
    display: flex !important;
    border: none !important;
    justify-content: center;
}

.woocommerce-pagination li {
    float: none !important;
    border: none !important;
}

.woocommerce-pagination li .page-numbers {
    font-size: 1em;
    color: #000;
    display: block;
    width: 42px;
    height: 42px;
    line-height: 42px !important;
    border-radius: 50%;
    text-align: center;
    border: none !important;
    padding: 0px !important;
}

.custom-contacts .contact-label {
    display: none;
}

.contact-label {
    position: fixed;
    top: 170px;
    right: 0px;
    background-color: #bf6a48;
    color: #fff;
    padding: 15px 10px 15px 20px;
    border-radius: 25px 0 0 25px;
    cursor: pointer;
    z-index: 1;
}

.whatsapp-label {
    position: fixed;
    top: 240px;
    right: 0px;
    background-color: #bf6a48;
    color: #fff;
    padding: 0px 10px 0px 20px;
    height: 50px;
    border-radius: 25px 0 0 25px;
    cursor: pointer;
    z-index: 1;
}

.whatsapp-label .whatsapp-icon {
    margin-top: 10px;
    width: 25px;
    height: 20px;
}

.contact-label .envelope-icon {
    display: flex;
    width: 25px;
    height: 20px;
}

.contact-form-wrapper .close-form {
    position: absolute;
    right: 30px;
    top: 10px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.contact-form-wrapper {
    position: fixed;
    top: 170px;
    right: -100%;
    width: 70%;
    max-width: 840px;
    /*   height: 500px; */
    background-color: #bf6a48;
    transition: right 0.3s ease;
    z-index: 999;
    border-radius: 8px 0 0 8px;
    padding: 25px 15px 35px 25px;
}

.contact-form-wrapper.visible {
    right: 0;
}

.contact-form-content {
    display: flex;
    flex-direction: row;
    height: 100%;
    gap: 20px;
}

.contact-form-content .form-wrapper {
    width: 65%;
}

.contact-form-content .text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 35%;
    padding-right: 70px;
    padding-bottom: 60px;
}

.contact-form-content .text-wrapper p,
.contact-form-content .text-wrapper a {
    text-transform: uppercase;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -3%;
}

.contact-form-content .text-wrapper .text {
    padding-bottom: 15px;
}

.contact-form-content .form-wrapper label {
    position: relative;
}

.contact-form-content .form-wrapper label input,
.contact-form-content .form-wrapper label textarea {
    margin-bottom: 10px;
    background-color: #bf6a48;
    min-height: 50px;
}

.contact-form-content .form-wrapper label textarea {
    height: 105px;
}

.contact-form-content .form-wrapper label .text {
    position: absolute;
    font-size: 14px;
    color: #222222;
    left: 17px;
    z-index: 1;
}

.contact-form-content .wpcf7-submit {
    background-color: #222222;
    color: #bf6a48;
    border: 1px solid #bf6a48;
    cursor: pointer;
}

.contact-form-content .wpcf7-submit:hover {
    background-color: #bf6a48;
    color: #222222;
    border: 1px solid #222222;
}

.select2-container .select2-selection--single,
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 52px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 52px;
    font-weight: normal;
}

.Input,
.p-FauxInput {
    height: 52px !important;
}

.woocommerce-info {
    border-top-color: #bf6a48;
}

.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before,
#add_payment_method #payment div.payment_box::before,
.woocommerce-cart #payment div.payment_box::before,
.woocommerce-checkout #payment div.payment_box::before {
    display: none;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
    padding: 1em 2em 1em 1em;
}

.select2-container--default .select2-selection--single {
    border: 1px solid var(--text);
}

.checkout .cart_item .product-name {
    font-size: 16px;
}

.checkout .cart_item .product-name .variation,
.checkout .cart_item .product-name .variation p {
    font-size: 14px;
    line-height: 1.5;
}

.woocommerce ul#shipping_method li {
    display: flex;
    align-items: flex-start;
}

.wc_payment_methods.payment_methods {
    background: transparent;
    border-radius: 4px;
    box-shadow: inset 0 0 0 2px currentColor;
}

#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box,
#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
    background: transparent;
}

.woocommerce form .form-row {
    padding: 0px;
}

.woocommerce-terms-and-conditions-wrapper p {
    font-size: 14px;
    line-height: 1.5;
}

#place_order {
    border: none !important;
}

iframe input {
    padding: 20px;
}

.summary-wrapper-ct {
    border: 1px solid hsla(0, 0%, 7%, 0.11);
    border-radius: 5px;
    padding: 16px;
}

#order_review_heading {
    font-weight: 500;
    font-size: 18px;
    padding-top: 0px;
}

.summary-wrapper-ct table.shop_table,
.summary-wrapper-ct table.shop_table td {
    border: none;
}

.summary-wrapper-ct .product-total {
    font-weight: bold;
    text-align: right;
    vertical-align: top !important;
}

.summary-wrapper-ct table.shop_table td {
    padding-left: 0px;
}

.woocommerce-checkout input::-webkit-input-placeholder,
.woocommerce-checkout input:-ms-input-placeholder,
.woocommerce-checkout input::placeholder,
.woocommerce-checkout textarea::-webkit-input-placeholder,
.woocommerce-checkout textarea:-ms-input-placeholder,
.woocommerce-checkout textarea::placeholder,
.woocommerce-checkout label,
.woocommerce-checkout textarea,
.woocommerce-checkout input,
.woocommerce-checkout select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row .input-text,
.woocommerce-page form .form-row .input-text,
.woocommerce-form__label,
.woocommerce form .form-row label,
.woocommerce-page form .form-row label {
    font-family: var(--font-family) !important;
}

.woocommerce-checkout input::-webkit-input-placeholder,
.woocommerce-checkout input:-ms-input-placeholder,
.woocommerce-checkout input::placeholder,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row .input-text,
.woocommerce-page form .form-row .input-text {
    color: hsla(0, 0%, 7%, 0.7);
}

.woocommerce-checkout textarea {
    padding: 15px !important;
    height: auto !important;
}

:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button {
    border: none;
    cursor: pointer;
}

.form-row-last {
    position: relative;
}

.form-row-last::after {
    content: "";
    clear: both;
}

.shop-wrapper .woocommerce-pagination {
    display: none !important;
}

.all-filter-btn {
    cursor: pointer;
}

input[type="checkbox"] {
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    border: 1px solid rgba(25, 23, 17, 0.48);
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1em;
    margin: 0;
    min-height: 24px !important;
    min-width: 24px !important;
    width: 24px !important;
    height: 24px !important;
    overflow: hidden;
    position: static;
    vertical-align: middle;
    width: 1.5em;
    cursor: inherit;
}

input[type="checkbox"]:focus {
    outline: 1px solid hsla(0, 0%, 7%, 0.8);
    outline-offset: 2px;
}

input[type="checkbox"]:checked {
    background-image: url(../images/checkbox-img.png);
    background-size: 17px 17px;
    background-repeat: no-repeat;
    background-position: center 1px;
}

.woocommerce-cart-form__cart-item .minus-btn,
.woocommerce-cart-form__cart-item .plus-btn {
    display: none;
}

.woocommerce-cart-form__cart-item img {
    max-height: 60px;
    max-width: 60px;
}

.out-of-stock-message {
    font-size: 16px;
    line-height: 15.4px;
    background: var(--accent);
    color: var(--light-text);
}

.woo-variation-items-wrapper .color-variable-items-wrapper li {
    width: 30px !important;
    height: 30px !important;
    padding: 0px !important;
    border-radius: 50% !important;
    overflow: hidden;
}

#coupon_code {
    min-width: 140px;
}

html:lang(lt-LT) .footer-item .btn {
    padding: 13px 10px 10px;
    font-size: 16px;
    height: auto;
    line-height: 1.5;
}

.select2-container .select2-selection--single {
    display: flex;
    align-items: center;
}

#ship-to-different-address-checkbox {
    margin-right: 8px;
}

label[for="payment_method_stripe"] {
    display: flex;
    align-items: center;
}

.product-price-info {
    flex-wrap: wrap;
}

.deposit-info {
    flex-basis: 100%;
    width: 100%;
}

.page-content ol,
.page-content ul {
    padding-left: 15px;
}

.page-content ul {
    list-style: disc;
}

.page-content ol {
    list-style: decimal;
}

.page-content ol + p,
.page-content ul + p {
    padding-top: 15px;
}

.what-is-marzocco {
    background-color: var(--dark-background);
    color: var(--light-text);
    padding: 55px 0 75px;
}

.what-is-marzocco .container {
    display: flex;
    flex-direction: column;
    gap: 55px;
}

.what-is-marzocco .row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.what-is-marzocco .row h2 {
    grid-column: 1;
    text-transform: uppercase;
    letter-spacing: -0.3px;
}

.what-is-marzocco .row .content {
    grid-column: 2 / span 2;
}

.what-is-marzocco .content-wrapper {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.what-is-marzocco .gallery {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: space-between;
}

.what-is-marzocco .content-wrapper p {
    font-size: 16px;
    line-height: 22px;
}

.value-compatibility-list {
    padding-top: 75px;
}

.value-compatibility-list span {
    max-width: 411px;
}

.value-compatibility-list .content-wrapper {
    padding-top: 28px;
    gap: 20px;
    flex-direction: row;
    justify-content: space-around;
}

.value-compatibility-list .item {
    background: var(--light-background);
    border-radius: 8px;
    padding: 59px 46px;

    max-width: 383px;
    width: 33%;
    gap: 9px;
}

.value-compatibility-list h3 {
    text-transform: uppercase;
}

.virsi-coffee .container {
    padding-top: 55px;
}

.virsi-coffee .wrapper {
    background-color: var(--dark-background);
    color: var(--light-text);
    min-height: 480px;
    border-radius: 12px;
    margin-bottom: 55px;
}

.virsi-coffee .row-one {
    max-width: 956px;
    width: 80%;
    margin: 0 auto;
    padding: 50px 15px;
}

.virsi-coffee .row-one .title {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 28px;
    font-size: 48px;
    line-height: 50.4px;
}

.virsi-coffee .row-two .content-wrapper{
    padding-left: 15px;
    margin-bottom: 70px;
}

.virsi-coffee .row-one .title span {
    font-size: 128px;
}

.virsi-coffee .row-one .content {
    max-width: 750px;
    margin: 41px auto 0;
}

.virsi-coffee .name {
    font-size: 25px;
    line-height: 30px;
    text-transform: uppercase;
    font-weight: 700;
}

.virsi-coffee .img {
  margin-bottom: 15px;
  padding-right: 15px;
  border-radius: 8px;
}

.virsi-coffee .img img{
 border-radius: 8px;
}

#parcelmachine_omniva_field {
    max-width: 100%;
    width: 100% !important;
}

.select2-container {
    width: 100% !important;
}

.wp-block-woocommerce-cart-order-summary-totals-block {
    display: none;
}
