@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

/* Global */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    min-height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    background-color: #fff;
    line-height: 24px;
    font-family: "Figtree", sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    color: #777;
    transition: padding 0.2s ease-in-out;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    overflow-x: hidden;
}

.content-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 9999;
}

a, input, button {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none !important;
    margin: 0;
}

/* Hide arrows in Firefox */
input[type=number] {
    -moz-appearance: textfield !important;
    -webkit-appearance: textfield !important;
    appearance: textfield !important;
}

/* Optionally, hide arrows in Internet Explorer */
input[type=number] {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

textarea:focus, input:focus, select:focus, a:focus {
    outline: none;
}

a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

a:hover {
    color: rgba(51, 51, 51, 0.65);
}

img, picture {
    max-width: 100%;
    max-height: 100%;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 600;
    color: #333;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

p {
    margin: 0;
}

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

.container {
    width: 100%;
    max-width: 1220px;
    padding: 0 15px;
    margin: 0 auto;
}

@media screen and (max-width: 1350px) {
    .container {
        max-width: 100%;
        padding: 0 50px;
    }
}

@media screen and (max-width: 991px) {
    .container {
        padding: 0 30px;
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

.btn {
    display: inline-flex;
    justify-content: center;
    padding: 14px 28px;
    background-color: transparent;
    color: #fff;
    line-height: normal;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.btn.has-arrow {
    gap: 0 8px;
}

.btn.has-arrow::after {
    content: "";
    width: 16px;
    height: 18px;
    background: url("../images/icons/btn-arrow.svg") right center no-repeat;
}

.btn.btn-primary {
    background-color: #F28621;
}

.btn.btn-primary:hover {
    background-color: rgb(211.6085106383, 108.6638297872, 12.3914893617);
    color: #fff;
}

.btn.btn-secondary {
    border: 2px solid #DD7718;
    color: #DD7718;
}

.btn.btn-secondary:hover {
    background-color: #DD7718;
    color: #fff;
}

form label {
    display: block;
    margin: 0 0 6px 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 22.4px;
    color: #251F1F;
    text-align: left;
}

form .form-row {
    margin-bottom: 20px;
}

form .form-row label {
    margin: 0 0 9px 0;
    font-size: 15px;
    font-weight: 400;
}

form .form-row label .required {
    color: #C0080B;
}

.form-control, .input-text {
    height: 42px;
    width: 100%;
    padding: 0 15px;
    background: #F9F9F9;
    border: 1px solid #C6C6C6;
    color: #000;
    font-size: 14px;
    text-transform: none;
    box-shadow: none;
    transition: all 0.3s ease-in-out;
    border-radius: 35px;
}

.form-control::-webkit-input-placeholder, .input-text::-webkit-input-placeholder {
    color: rgba(37, 31, 31, 0.7);
}

.form-control::-moz-placeholder, .input-text::-moz-placeholder {
    color: rgba(37, 31, 31, 0.7);
}

.form-control:-ms-input-placeholder, .input-text:-ms-input-placeholder {
    color: rgba(37, 31, 31, 0.7);
}

.form-control:-moz-placeholder, .input-text:-moz-placeholder {
    color: rgba(37, 31, 31, 0.7);
}

.form-control.error, .input-text.error {
    background: #EB5757;
    color: #EB5757;
}

.form-control:focus, .input-text:focus {
    color: #C0080B;
    border-color: #C0080B !important;
}

textarea.form-control,
textarea.input-text {
    padding: 15px 20px;
    min-height: 145px;
    max-width: 100%;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.page-heading, .entry-title {
    position: relative;
    margin: 0 0 40px 0;
    line-height: 1.3;
    font-size: 30px;
}

.block-heading, .section-heading {
    font-size: 33px;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: -0.02em;
}

.block-heading-holder, .section-heading-holder, .page-heading-holder {
    margin: 0 0 48px 0;
}

@media screen and (max-width: 768px) {
    .block-heading-holder, .section-heading-holder, .page-heading-holder {
        margin: 0 0 32px 0;
    }
}

.block-heading-holder .block-heading, .block-heading-holder .section-heading, .block-heading-holder .page-heading, .section-heading-holder .block-heading, .section-heading-holder .section-heading, .section-heading-holder .page-heading, .page-heading-holder .block-heading, .page-heading-holder .section-heading, .page-heading-holder .page-heading {
    margin: 0;
}

.block-heading-holder .short-text, .section-heading-holder .short-text, .page-heading-holder .short-text {
    display: block;
    margin: 0 0 3px 0;
    line-height: normal;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #737373;
}

.block-heading-holder p, .section-heading-holder p, .page-heading-holder p {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    color: #5A5552;
}

.block-heading-holder p a, .section-heading-holder p a, .page-heading-holder p a {
    color: #f28621;
    font-weight: 600;
    text-decoration: underline;
}

.block-heading-holder p a:hover, .section-heading-holder p a:hover, .page-heading-holder p a:hover {
    text-decoration: none;
}

.block-heading-holder .mw-55, .section-heading-holder .mw-55, .page-heading-holder .mw-55 {
    max-width: 55%;
    margin: 0 auto;
}

@media screen and (max-width: 991px) {
    .block-heading-holder .mw-55, .section-heading-holder .mw-55, .page-heading-holder .mw-55 {
        max-width: 70%;
    }
}

@media screen and (max-width: 768px) {
    .block-heading-holder .mw-55, .section-heading-holder .mw-55, .page-heading-holder .mw-55 {
        max-width: 100%;
    }
}

.block-heading-holder p, .section-heading-holder p, .page-heading-holder p {
    padding-top: 5px;
}

@media screen and (max-width: 575px) {
    .block-heading-holder.text-center, .section-heading-holder.text-center, .page-heading-holder.text-center {
        text-align: left;
    }
}

.block-heading-holder.has-btn, .section-heading-holder.has-btn, .page-heading-holder.has-btn {
    display: flex;
    align-items: center;
}

@media screen and (min-width: 641px) {
    .block-heading-holder.has-btn, .section-heading-holder.has-btn, .page-heading-holder.has-btn {
        justify-content: space-between;
        gap: 0 50px;
    }
}

@media screen and (max-width: 640px) {
    .block-heading-holder.has-btn .btn, .section-heading-holder.has-btn .btn, .page-heading-holder.has-btn .btn {
        display: none;
    }
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 0;
    background: transparent;
    transition: all 0.2s ease-in-out;
    z-index: 9999;
}

.site-header .header-lang-bar {
    position: relative;
    text-transform: uppercase;
}

.site-header .header-lang-bar__toggle {
    display: flex;
    align-items: center;
    gap: 0 5px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
}

.site-header .header-lang-bar__toggle::after {
    content: "";
    width: 12px;
    height: 8px;
    background: url("../images/icons/lang-bar-arrow.svg") center center no-repeat;
    transition: all 0.3s ease-in-out;
}

.site-header .header-lang-bar .dropdown-menu {
    position: absolute;
    top: calc(100% + 28px);
    right: 0;
    width: 100px;
    padding: 10px 0;
    background-color: #fff;
    border: 1px solid #d9d9d9;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
}

.site-header .header-lang-bar .dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 0 10px;
    padding: 8px 20px;
    line-height: normal;
    color: #838383;
}

.site-header .header-lang-bar .dropdown-menu li a:hover {
    color: #373737;
}

.site-header .header-lang-bar.show .header-lang-bar__toggle::after {
    transform: rotate(-180deg);
}

.site-header .header-lang-bar.show .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}

.site-header .header-top-navigation .menu {
    display: flex;
    align-items: center;
}

.site-header .header-contacts {
    display: flex;
    align-items: center;
}

@media screen and (min-width: 769px) {
    .site-header .header-contacts {
        margin-left: auto;
    }
}

@media screen and (max-width: 991px) {
    .site-header .header-top-navigation {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .site-header .header-contacts {
        justify-content: space-between;
        width: 100%;
    }
}

.site-header .header-top-navigation .menu li {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.site-header .header-contacts li {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

@media screen and (min-width: 769px) {
    .site-header .header-top-navigation .menu li:not(:last-child)::after {
        content: "";
        width: 1px;
        height: 18px;
        margin: 0 10px;
        background-color: #3c3c3c;
    }

    .site-header .header-contacts li:not(:last-child)::after {
        content: "";
        width: 1px;
        height: 18px;
        margin: 0 10px;
        background-color: #3c3c3c;
    }
}

.site-header .header-top-navigation .menu li a {
    display: flex;
    align-items: center;
    gap: 0 10px;
    color: #fff;
}

.site-header .header-contacts li a {
    display: flex;
    align-items: center;
    gap: 0 10px;
    color: #fff;
}

.site-header .header-contacts li a div {
    display: inline;
}

@media screen and (max-width: 768px) {
    .site-header .header-contacts li a div {
        display: none;
    }
}

.site-header .header-top-navigation .menu li a:hover {
    color: #f28621;
}

.site-header .header-contacts li a:hover {
    color: #f28621;
}

.site-header .top-bar {
    background-color: #262626;
    color: #fff;
}

.site-header .top-bar .container {
    display: flex;
    align-items: center;
    height: 32px;
}

.site-header .main-bar .container {
    display: flex;
    align-items: center;
    font-size: 16px;
}

@media screen and (min-width: 992px) {
    .site-header .main-bar .container {
        justify-content: space-between;
        height: 72px;
    }
}

@media screen and (max-width: 991px) {
    .site-header .main-bar .container {
        height: 60px;
    }
}

.site-header .site-logo {
    position: relative;
    display: flex;
    flex-shrink: 0;
    margin: 0;
}

.site-header .site-logo img {
    max-height: 58px;
    width: auto;
}

@media screen and (max-width: 991px) {
    .site-header .site-logo img {
        max-height: 48px;
        width: auto;
    }
}

.site-header .menu-toggle {
    flex-shrink: 0;
    position: relative;
    top: 0;
    right: 0;
    width: 18px;
    height: 16px;
    margin: 0 20px 0 0;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    outline: none;
    border-radius: 0;
    z-index: 99999;
}

@media screen and (min-width: 992px) {
    .site-header .menu-toggle {
        display: none;
    }
}

.site-header .menu-toggle .icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 18px;
    height: 2px;
    background: #b5b4b8;
    backface-visibility: hidden;
    border-radius: 0;
    transition: all 0.3s ease-in-out;
}

.site-header .menu-toggle .icon::before, .site-header .menu-toggle .icon::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: #b5b4b8;
    backface-visibility: hidden;
    border-radius: 0;
    transition: all 0.3s ease-in-out;
}

.site-header .menu-toggle .icon::before {
    top: -6px;
}

.site-header .menu-toggle .icon::after {
    top: 6px;
}

.site-header .menu-toggle.opened .icon {
    background-color: transparent;
}

.site-header .menu-toggle.opened .icon::before {
    transform: rotate(45deg) translate(4px, 4px);
}

.site-header .menu-toggle.opened .icon::after {
    transform: rotate(-45deg) translate(5px, -5px);
}

.site-header #site-navigation {
    position: static;
    height: 100%;
}

.site-header #site-navigation #primary-menu-list {
    display: flex;
    align-items: center;
    gap: 0 48px;
    height: 100%;
}

@media screen and (max-width: 991px) {
    .site-header #site-navigation #primary-menu-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px 0;
        padding: 0;
        height: auto;
    }
}

.site-header #site-navigation #primary-menu-list > li {
    position: relative;
    height: 100%;
    margin-bottom: 0;
}

@media screen and (max-width: 1120px) {
    .site-header #site-navigation #primary-menu-list > li {
        width: 100%;
    }
}

.site-header #site-navigation #primary-menu-list > li > a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    font-family: "Figtree", Arial, Helvetica, sans-serif;
    /*font-family: "Metropolis 500";*/
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    text-align: center;
    border-radius: 0;
}

.site-header #site-navigation #primary-menu-list > li > a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.site-header #site-navigation #primary-menu-list > li.menu-current-item a {
    color: #F28621;
    text-decoration-color: #F28621;
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
    pointer-events: none;
}

@media screen and (max-width: 991px) {
    .site-header #site-navigation {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 400px;
        height: auto;
        padding: 0;
        padding-top: 40px;
        padding-bottom: 50px;
        background-color: #fff;
        overflow: auto;
        transform: translateX(120%);
        transition: all 0.3s ease-in-out;
        border-radius: 0;
        z-index: 99999;
    }
}

@media screen and (max-width: 575px) {
    .site-header #site-navigation {
        width: 100%;
    }
}

.site-header .buttons {
    display: flex;
    align-items: center;
    gap: 0 20px;
}

@media screen and (max-width: 991px) {
    .site-header .buttons {
        margin-left: auto;
    }
}

.site-header .buttons__cart {
    display: flex;
    align-items: center;
    gap: 0 8px;
    color: #fff;
}

.site-header .buttons__cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: #dd7718;
    border-radius: 50%;
}

.site-header .buttons__cart-badge {
    position: absolute;
    top: -3px;
    right: -7px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background-color: #fff;
    color: #373737;
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.17);
    border-radius: 50%;
}

.site-header .buttons__cart:hover {
    color: rgba(255, 255, 255, 0.8);
}

@media screen and (max-width: 991px) {
    .site-header .buttons .header-lang-bar {
        display: none;
    }
}

.site-header.on-scroll {
    background-color: #212121;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

body:not(.home) .site-header {
    background-color: #fff;
}

/* Hero section */
@media screen and (min-width: 841px) {
    .home-hero {
        background: url("../images/home-hero-desktop-1.webp") center top/cover no-repeat;
    }
}

@media screen and (max-width: 840px) {
    .home-hero {
        background: url("../images/home-hero-mobile-1.webp") center center/cover no-repeat;
    }
}

.home-hero .container {
    display: flex;
}

.home-hero__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-basis: 50%;
    gap: 20px 0;
    padding: 210px 0 95px 0;
    font-size: 20px;
    line-height: 30px;
    color: #fff;
}

@media screen and (max-width: 991px) {
    .home-hero__text {
        padding: 120px 0 90px 0;
    }
}

@media screen and (max-width: 840px) {
    .home-hero__text {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        flex-basis: 100%;
        min-height: 560px;
        padding: 0 0 30px 0;
    }
}

.home-hero__text h1 {
    font-size: 48px;
    font-weight: 600;
    line-height: 54px;
    color: #fff;
    text-transform: uppercase;
}

@media screen and (max-width: 991px) {
    .home-hero__text h1 {
        font-size: 36px;
        line-height: 42px;
    }
}

@media screen and (max-width: 768px) {
    .home-hero__text h1 {
        font-size: 26px;
        line-height: 34px;
    }
}

@media screen and (max-width: 840px) {
    .home-hero__text .btn {
        width: 100%;
        justify-content: center;
    }
}

.home-hero__categories {
    position: absolute;
    display: flex;
    gap: 20px;
    justify-content: end;
    top: 400px;
    width: 50%;
    right: 200px;
}

.home-hero__categories .category img {
    width: 200px;
    height: auto;
}

.home-hero__categories .category h2 {
    color: #fff;
}

.home-hero__categories .category span {
    color: #fff;
}

.home-hero__reviews {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    color: #A3A3A3;
    backdrop-filter: blur(10px);
}

.home-hero__reviews .container {
    display: flex;
    align-items: center;
    min-height: 60px;
}

@media screen and (max-width: 840px) {
    .home-hero__reviews .container > span {
        display: none;
    }
}

.home-hero__reviews span {
    text-transform: uppercase;
}

.home-hero__reviews .reviews-list {
    display: flex;
}

@media screen and (min-width: 841px) {
    .home-hero__reviews .reviews-list {
        margin-left: 75px;
    }
}

@media screen and (max-width: 840px) {
    .home-hero__reviews .reviews-list {
        width: 100%;
    }
}

.home-hero__reviews .reviews-list li {
    display: flex;
    align-items: center;
    gap: 0 20px;
    padding: 0 85px;
    margin-bottom: 0;
}

@media screen and (max-width: 991px) {
    .home-hero__reviews .reviews-list li {
        padding: 0 40px;
    }
}

@media screen and (max-width: 840px) {
    .home-hero__reviews .reviews-list li {
        flex: 1;
        justify-content: center;
        gap: 0 10px;
        padding: 0 20px;
    }
}

@media screen and (min-width: 841px) {
    .home-hero__reviews .reviews-list li:not(:last-child) {
        border-right: 1px solid #4b4540;
    }
}

.home-hero__reviews .reviews-list li img {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    pointer-events: none;
    max-height: 24px;
    width: auto;
}

.home-hero__reviews .reviews-list__rate {
    display: flex;
    align-items: center;
    gap: 0 5px;
    font-size: 16px;
    font-weight: 600;
    color: #F5F5F5;
}

.home-hero__reviews .reviews-list__rate::after {
    content: "";
    width: 16px;
    height: 16px;
    background: url("../images/hero-review-star.png") center center no-repeat;
    background-size: contain;
    transform: translateY(-2px);
}

/* Benefits section */
.benefits {
    background-color: #FAFAFA;
    overflow: hidden;
    margin-bottom: 55px;
}

.benefits .container {
    display: flex;
    align-items: center;
    min-height: 56px;
}

.benefits__benefits-list {
    display: flex;
    align-items: center;
    gap: 0 65px;
    height: 100%;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 500;
    color: #262626;
}

@media screen and (max-width: 991px) {
    .benefits__benefits-list {
        animation: scroll-left 15s linear infinite;
    }
}

.benefits__benefits-list li {
    display: none;
    align-items: center;
    gap: 0 8px;
    white-space: nowrap;
    margin-bottom: 0;
}

@media screen and (min-width: 992px) {
    .benefits__benefits-list li:nth-child(1), .benefits__benefits-list li:nth-child(2), .benefits__benefits-list li:nth-child(3), .benefits__benefits-list li:nth-child(4) {
        display: flex;
    }
}

@media screen and (max-width: 991px) {
    .benefits__benefits-list li {
        display: flex;
    }
}

.benefits__benefits-list li img {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    pointer-events: none;
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
