@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
    font-display: swap;
    font-family: HoratioMedium;
    src: url(../fonts/Horatio_D_Medium.woff2) format("woff2"), url(../fonts/Horatio_D_Medium.woff) format("woff"), url(../fonts/Horatio_D_Medium.ttf) format("truetype")
}

@font-face {
    font-display: swap;
    font-family: "Montserrat", sans-serif;
    src: url(../fonts/Horatio_D_Bold.woff2) format("woff2"), url(../fonts/Horatio_D_Bold.woff) format("woff"), url(../fonts/Horatio_D_Bold.ttf) format("truetype")
}

@font-face {
    font-display: swap;
    font-family: HoratioLight;
    src: url(../fonts/Horatio_D_Light.woff2) format("woff2"), url(../fonts/Horatio_D_Light.woff) format("woff"), url(../fonts/Horatio_D_Light.ttf) format("truetype")
}


@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-dark: #0d0d0d;
    --paragraph-gray: #6f6f6f;
    --primary: #fb7914;
    --light-gray: #f9f9fa;
    --white: white;
    --gray: #e9e9e9;
    --dark-gray-50: rgba(175, 175, 175, .5);
    --dark-gray: #afafaf;
    --error: #ffdede;
    --search: #292929;
    --white-50: rgba(255, 255, 255, .5);
    --color--primary: #fb7914;
    --color--secondary: #1d1d1b;
    --color--secondary-light: #cecccc;
    --color--accent-green: #3fa535;
    --color--accent-light-blue: #007982;
    --color--accent-purple: #48338b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: #FFFFFF;
    color: #0d0d0d;
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    position: relative;

}

a,
input,
button {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color .5s;
}

*,
a {
    transition: all .25s ease;
}

a:hover,
a:focus,
input:hover,
input:focus,
button:hover,
button:focus {
    outline: 0;
}

a:hover {
    color: var(--primary-dark);
}

b,
strong {
    font-weight: bold;
}



h1 {
    color: var(--primary-dark);
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 55px;
    font-weight: 500;
    line-height: 1.1em;
}

h2 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(3.125rem, 2.472826087rem + 2.1739130435vw, 4.375rem);
    font-style: Inter, sans-serif;
    font-weight: 300;
    letter-spacing: -2px;
    line-height: clamp(3rem, 2.3152173913rem + 2.2826086957vw, 4.3125rem);
}

h3 {
    color: var(--primary-dark);
    margin-top: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1em;
}

h4 {
    color: var(--primary-dark);
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.1em;
}

h5 {
    color: var(--primary-dark);
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3em;
}

h6 {
    color: var(--primary-dark);
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5em;
}

p {
    color: #000000;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

section,
main {
    position: relative;
    overflow: hidden;
}

/* Header */
.navbar-brand {
    padding: 0 0 1px;
    margin: 0;
}

.header {
    background-color: #ffffff;
    position: fixed;
    top: 0;
    bottom: auto;
    left: 0;
    right: 0;
    z-index: 9999;
    color: #ffffff;
    padding: 0px 60px;
}

.header.sticky svg {
    width: 80%;
}

.navbar-expand-lg .navbar-nav .nav-link,
.head_call a {
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 8px 0;
}

.navbar-expand-lg .navbar-nav .nav-link:after {
    position: absolute;
    background-color: var(--color--primary);
    content: '';
    height: 2px;
    bottom: 0;
    left: 0;
    right: 0;
    width: 0;
    transition: .3s all ease-in-out;
}

button.navbar-toggler {
    border: none !important;
    margin: 0;
    padding-left: 0;
}

button.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-expand-lg .navbar-nav .nav-item {
    margin: 0 20px;
}

.navbar-expand-lg .navbar-nav .nav-link:hover:after {
    width: 100%;
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
    color: var(--color--primary);
}

.head_call a {
    background: linear-gradient(216deg, #fe4905, #fa8a19);
    padding: 10px 15px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 13px;
    color: #ffffff;
}

/* .header.sticky {
    padding: 8px 60px;
} */

.header.sticky .navbar-brand {
    padding: 0;
}

/* Header End */
/* Banner */
.banner_sec {
    margin-top: 86px;
}

body.scrolling .banner_sec {
    margin-top: 71px;
}

.page-header__swiper {
    height: 680px;
    position: relative;
}

.page-header__swiper .swiper-slide {
    background-position: 50%;
    background-size: cover;
    overflow: hidden;
    position: relative;
    z-index: 0
}

.overlay {
    background-color: rgba(29, 29, 27, .5);
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

.page-header__swiper .swiper-slide .overlay {
    background-blend-mode: multiply;
}

.page-header__swiper .swiper-slide img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    width: 100%;
    z-index: -1;
}

.page-header__swiper .swiper-slide__container {
    align-items: center;
    display: flex;
    flex-flow: column wrap;
    height: 100%;
    justify-content: center;
    z-index: 1
}

.page-header__swiper .swiper-slide__container h1 {
    font-size: clamp(2.5rem, 1.5217391304rem + 3.2608695652vw, 4.375rem);
    line-height: clamp(3.0625rem, 2.0842391304rem + 3.2608695652vw, 4.9375rem);
    margin-bottom: 45px;
    text-align: center;
    width: 65%
}

.page-header__swiper .swiper-pagination {
    bottom: 75px !important;
    left: 50% !important;
    position: relative;
    transform: translateX(-50%);
    transition: none !important;
    width: -moz-fit-content !important;
    width: fit-content !important
}

.page-header__swiper .swiper-pagination:before {
    background-color: #fff;
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    top: 50%;
    transition: none !important;
    width: 100%
}

.page-header__swiper .swiper-pagination-bullet {
    background-color: #fff;
    height: 10px;
    margin: 0 35px !important;
    opacity: 1 !important;
    transition: none !important;
    width: 10px
}

.page-header__swiper .swiper-pagination-bullet:first-child {
    margin-left: 0 !important
}

.page-header__swiper .swiper-pagination-bullet:last-child {
    margin-right: 0 !important
}

.page-header__swiper .swiper-pagination-bullet-active {
    background-color: #fb7914;
    position: relative;
    transition: none !important
}

.page-header__swiper .swiper-pagination-bullet-active:after {
    border: 1px solid #fb7914;
    border-radius: 22px;
    content: "";
    display: block;
    height: 22px;
    left: 50%;
    position: absolute;
    top: 50%;
    transition: none !important;
    translate: -50% -50%;
    width: 22px
}

.long-arrow {
    height: 210px;
    left: 6%;
    position: absolute;
    top: 575px;
    width: auto;
    z-index: 999;
}

/* Banner End */
/* Intro Sec */
.home__intro {
    padding: 75px 0 0;
}

.home__intro:after {
    background-image: url(../images/bg-design.svg);
    background-repeat: no-repeat;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    right: -100vw;
    top: 500px;
    transform: scaleX(-1);
    width: 200%;
    z-index: -1
}

.home__intro p {
    font-size: 32px;
    font-weight: 700;
    line-height: clamp(2.25rem, 1.9565217391rem + .9782608696vw, 2.8125rem);
    margin-bottom: 40px;
    width: 100%;
}

.home__intro a,
.home__intro p strong {
    color: #fb7914;
}

.home__intro a {
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-size: 14px;
}

.home__intro a svg {
    height: 10px;
    margin-left: 25px;
    width: 50px;
}

.home__intro a:hover svg {
    transform: translateX(10px);
    transition: all .5s ease
}

.home__intro a:hover svg g {
    stroke: #fb7914;
}

.home__intro__categories {
    align-items: center;
    display: flex;
    margin-top: 100px;
    padding-bottom: 150px
}

.home__intro__categories__block {
    background-size: cover;
    border-radius: 30px 0 30px 30px;
    height: 220px;
    position: relative;
    width: 185px;
    z-index: 0
}

.home__intro__categories__block:hover.accent-red:before {
    background-color: var(--color--primary)
}

.home__intro__categories__block:hover.accent-green:before {
    background-color: var(--color--accent-green)
}

.home__intro__categories__block:hover.accent-purple:before {
    background-color: var(--color--accent-purple)
}

.home__intro__categories__block:hover.accent-teal:before {
    background-color: var(--color--accent-light-blue)
}

.home__intro__categories__block:hover a {
    opacity: 1;
    transition: all .25s ease
}

.home__intro__categories__block:after,
.home__intro__categories__block:before {
    content: "";
    height: 20px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    transition: all .25s ease;
    width: 2px;
    z-index: 1
}

.home__intro__categories__block:before {
    background-color: #fff;
    border-radius: 3px 3px 0 0;
    bottom: 0
}

.home__intro__categories__block:after {
    border-radius: 0 0 3px 3px;
    bottom: -20px
}

.home__intro__categories__block:last-child .block-content {
    margin-top: 20px !important
}

.home__intro__categories__block.accent-red:after {
    background-color: #f25230
}

.home__intro__categories__block.accent-green:after {
    background-color: var(--color--accent-green)
}

.home__intro__categories__block.accent-purple:after {
    background-color: var(--color--accent-purple)
}

.home__intro__categories__block.accent-teal:after {
    background-color: var(--color--accent-light-blue)
}

.home__intro__categories__block .overlay {
    border-radius: 30px 0 30px 30px
}

.home__intro__categories__block .block-content {
    margin-top: 35px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%
}

.home__intro__categories__block p {
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.5rem, 1.3043478261rem + .652173913vw, 1.875rem);
    font-style: normal;
    font-weight: 700;
    letter-spacing: -.32px;
    line-height: clamp(1.875rem, 1.6793478261rem + .652173913vw, 2.25rem);
    margin: 0 auto;
    text-align: center;
    width: 80%
}

.home__intro__categories__block a {
    color: #fff;
    font-size: 16px;
    font-weight: 600 !important;
    margin: 10px auto 0;
    min-width: 150px !important;
    padding: 0 10px;
    text-decoration: none;
    transition: all .25s ease
}

.home__intro__categories__block svg {
    bottom: -110px;
    height: 60px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 60px
}

.home__intro .swiper-button-next,
.home__intro .swiper-button-prev {
    display: flex;
    top: calc(50% - 20px);
    background: #ffffff;
    width: calc(var(--swiper-navigation-size) / 44 * 40);
    height: calc(var(--swiper-navigation-size) / 44 * 40);
    border-radius: 50%;
}

.home__intro .swiper-button-next:after,
.home__intro .swiper-button-prev:after {
    color: var(--color--primary);
    font-size: 22px
}

.home__intro .swiper-button-prev {
    left: 0
}

.home__intro .swiper-button-next {
    right: 0
}



/* Intro Sec End */
/* Benfit */
.section-benefits {
    padding-top: 80px;
    padding-bottom: 0;
    position: relative;
}

.benefit-item-wrapper {
    flex-direction: column;
    align-items: center;
    width: 18%;
    padding-bottom: 80px;
    display: flex;
    position: relative;
}

.content-info {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.benefit-title {
    color: var(--primary);
    margin-top: 0;
    font-size: 62px;
}

.benefit-text {
    color: var(--primary-dark);
    margin-top: 0;
    margin-bottom: 0;
}

.benefit-line {
    background-color: var(--primary);
    width: 100%;
    height: 4px;
    position: absolute;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.benefits-line {
    background-color: rgba(13, 13, 13, .3);
    width: 100%;
    height: 1px;
    position: absolute;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

/* Benfit End */
/* Featured */
.home__featured-products {
    background-color: var(--primary-dark);
    padding: 250px 0 200px;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.home__featured-products:before {
    background-color: #fff;
    border-radius: 0 0 50% 50%/0 0 100% 100%;
    content: "";
    height: 200px;
    left: -88px;
    position: absolute;
    top: -50px;
    width: calc(100% + 176px);
    z-index: 10;
}

.home__featured-products__wrapper {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    position: relative;
}

.home__featured-products__header {
    margin: 0 auto 25px;
    margin-bottom: 0;
    width: calc(30% - 70px);
    z-index: 2;
}

.home__featured-products__header h2 {
    margin-bottom: 20px;
    width: 100%;
    font-weight: 200;
}

.text-primary {
    color: var(--primary) !important;
}

.home__featured-products__header p {
    font-size: 20px;
    /* font-weight: 700; */
    line-height: 24px;
    width: 100%;
    letter-spacing: 1px;
}

.home__featured-products__swiper {
    margin: 10px auto 0;
    margin-right: 0 !important;
    width: 70%;
}

.product-card {
    max-width: 340px;
    margin: 0 20px;
    /* width: 340px !important; */
}

.product-card .hover-block {
    background-color: var(--primary);
    border-radius: 50px 0 50px 50px;
    height: 50px;
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
}

.product-card .hover-block svg {
    height: 15px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
}

.product-card:hover .hover-block {
    height: 75px;
    width: 75px;
}

.product-card .hover-block svg g {
    stroke-width: 2;
}

.product-card .product-badge,
.product-card .product-badge--image,
.product-card .product-badge--text {
    height: 72px;
    left: 20px;
    position: absolute;
    top: 20px;
    width: 72px;
}

.product-card .product-badge--text {
    background-color: var(--primary);
    border-radius: 72px;
    color: #fff;
}

.product-card .product-badge--text p {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    left: 50%;
    line-height: 24px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.product-card .image-container {
    background-color: #fff;
    border-radius: 50px 0 50px 50px;
    height: 405px;
    overflow: hidden;
    padding: 40px;
}

.product-card .image-container img {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    width: 100%;
}

.product-card .product-name {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    margin-top: 20px;
    width: 100%;
    text-align: center;
}

.home__featured-products__wrapper .swiper-buttons,
.home__highlight-department__wrapper .swiper-buttons,
.home__sustainability__wrapper .swiper-buttons {
    bottom: -83px;
    max-width: 900px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 75% !important;
}

.home__featured-products__wrapper .swiper-buttons .swiper-button-prev,
.home__highlight-department__wrapper .swiper-buttons .swiper-button-prev,
.home__sustainability__wrapper .swiper-buttons .swiper-button-prev {
    left: -75px;
}

.home__featured-products__wrapper .swiper-buttons .swiper-button-next,
.home__highlight-department__wrapper .swiper-buttons .swiper-button-next,
.home__sustainability__wrapper .swiper-buttons .swiper-button-next {
    right: -75px;
}

.home__featured-products__wrapper .swiper-buttons .swiper-button-next:after,
.home__featured-products__wrapper .swiper-buttons .swiper-button-prev:after,
.home__highlight-department__wrapper .swiper-buttons .swiper-button-next:after,
.home__highlight-department__wrapper .swiper-buttons .swiper-button-prev:after,
.home__sustainability__wrapper .swiper-buttons .swiper-button-next:after,
.home__sustainability__wrapper .swiper-buttons .swiper-button-prev:after {
    color: var(--primary);
    font-size: 28px;
    transition: all .25s ease;
}

.swiper-pagination-progressbar {
    max-width: 850px;
}

.home__featured-products__wrapper .swiper-pagination,
.home__highlight-department__wrapper .swiper-pagination,
.home__sustainability__wrapper .swiper-pagination {
    background: #cecccc;
    border-radius: 5px;
    height: 3px !important;
    overflow: hidden;
    position: absolute;
    top: unset !important;
    left: 50% !important;
    transform: translateX(-50%);
    bottom: -85px;
    width: 100% !important;
}

.home__featured-products__wrapper .swiper-pagination span,
.home__highlight-department__wrapper .swiper-pagination span,
.home__sustainability__wrapper .swiper-pagination span {
    background: var(--primary);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-weight: 700;
}

.home__featured-products__wrapper .swiper-buttons .swiper-button-next:hover:after,
.home__featured-products__wrapper .swiper-buttons .swiper-button-prev:hover:after,
.home__highlight-department__wrapper .swiper-buttons .swiper-button-next:hover:after,
.home__highlight-department__wrapper .swiper-buttons .swiper-button-prev:hover:after,
.home__sustainability__wrapper .swiper-buttons .swiper-button-next:hover:after,
.home__sustainability__wrapper .swiper-buttons .swiper-button-prev:hover:after {
    color: #fff;
    transition: all .25s ease;
}

/* Featured End */
/* Department */
.home__highlight-department {
    overflow: hidden;
    padding: 100px 0 175px;
    position: relative;
}

.home__featured-products__wrapper,
.home__highlight-department__wrapper,
.home__sustainability__wrapper {
    position: relative;
}

.home__highlight-department:after {
    background-color: var(--primary);
    border-radius: 0 0 50% 50%/0 0 100% 100%;
    content: "";
    position: absolute;
    height: 100%;
    left: -50%;
    top: -25%;
    width: 200%;
    z-index: -1;
}

.home__highlight-department__header {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin: 0 auto;
    width: calc(100% - 60px);
    z-index: 0;
}

.home__highlight-department__header:before {
    background-image: url(../images/bg-design.svg);
    background-repeat: no-repeat;
    content: "";
    display: block;
    opacity: .5;
    position: absolute;
    height: 1430px;
    right: -32vw;
    top: -60%;
    width: 1695px;
    z-index: 0;
}

.home__highlight-department__header .department-icon {
    width: 12.5%;
    z-index: 1;
}

.home__highlight-department__header .department-icon svg {
    /* width: 50px; */
    width: 200px;
}

.home__highlight-department__header .department-text {
    margin-top: 0;
    width: 44.5%;
    margin-bottom: 40px;
    z-index: 1;
}

.home__highlight-department__header .department-text p {
    color: var(--primary-dark);
    font-size: 34px;
    font-weight: 700;
    line-height: 44px;
    width: 80%;
}

.home__highlight-department__header .department-text strong {
    color: #fff;
}

.home__highlight-department__header .department-text .btn {
    margin-top: 50px;
}

.btn,
button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 50px;
    color: #fff;
    display: block;
    font-size: 18px;
    font-weight: 700;
    height: 50px;
    line-height: 48px;
    margin: 15px 0;
    padding: 0 40px;
    text-align: center;
    transition: all .25s ease;
    width: -moz-fit-content;
    width: fit-content;
}

.btn__dark {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}

.btn__dark:hover {
    background-color: #fff;
    border-color: #fff;
    color: var(--primary-dark);
}

.home__highlight-department__header .department-image {
    margin-top: 0;
    text-align: left;
    width: calc(43% - 25px);
    z-index: 1;
}

.home__highlight-department__slider {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin-top: 100px;
    position: relative;
}

.home__highlight-department__slider h2 {
    color: #fff !important;
    margin: 0 auto;
    margin-left: 30px;
    width: calc(30% - 60px);
    font-weight: 200;
    font-size: 60px;
}

.home__highlight-department__swiper {
    margin-top: 10px;
    margin-bottom: 0;
    overflow: hidden;
    width: 70%;
}

.home__highlight-department__swiper .swiper-wrapper {
    /* left: -220px; */
    width: 75%;
}

.feature-card {
    background-color: var(--primary-dark);
    border-radius: 50px 0 50px 50px;
    display: flex;
    flex-flow: row wrap;
    height: 410px;
    margin: 0 20px;
    padding: 40px;
    width: 342px;
}

.home__highlight-department__swiper .feature-card {
    flex-flow: column wrap;
    justify-content: space-between;
    height: 370px;
    margin: 0 20px;
    padding: 40px;
    width: 340px !important;
}

.home__highlight-department__swiper .feature-card .icon-container {
    width: 100%;
}

.home__highlight-department__swiper .feature-card .icon-container svg {
    height: 60px;
    width: 60px;
}

.feature-card h4 {
    color: var(--primary);
}

.feature-card p {
    color: #fff;
}

.home__highlight-department__swiper .feature-card p {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 10px;
}

.home__highlight-department__swiper .feature-card p:last-child {
    margin-bottom: 0;
}

.home__highlight-department .swiper-buttons .swiper-button-next:hover:after,
.home__highlight-department .swiper-buttons .swiper-button-prev:hover:after {
    color: var(--primary-dark);
}

/* Department End*/
/* About  */
.block__brands {
    padding: 100px 0 0;
    position: relative;
    overflow: visible;
}

.block__brands:before {
    background-image: url(../images/bg-design.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    content: "";
    display: block;
    position: absolute;
    transform: scaleX(-1);
    height: 1430px;
    left: -38vw;
    top: -40%;
    width: 1695px;
    z-index: -1;
}

.container--1650 {
    margin: 0 auto;
    max-width: calc(100% - 60px);
    width: 1650px;
}

.block__brands__wrapper {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.block__brands__header {
    display: flex;
    position: relative;
    width: calc(30% - 60px);
}

.block__brands__header h2 {
    width: 100%;
    font-weight: 200;
}

.block__brands__header .swiper-buttons {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    width: 70px;
}

.block__brands .swiper-buttons {
    display: none;
}

.block__brands__controls {
    display: block;
    width: 33%;
}

.block__brands__controls .swiper-wrapper {
    max-height: 550px;
}

.block__brands__controls .swiper-slide p {
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 40px;
    margin-bottom: 0;
    transition: none !important;
    color: #000000;
    margin-top: 0;
    cursor: pointer;
    border-bottom: 1px solid #000000;
    padding-bottom: 10px;
}

.block__brands__controls .swiper-slide:nth-child(3) {
    min-height: 100px;
}

.block__brands__controls .swiper-slide.swiper-slide-thumb-active p {
    color: var(--primary);
}

.block__brands__list {
    flex-flow: row wrap;
    justify-content: space-between;
    display: flex;
    width: 33%;
}

.block__brands__list .swiper-wrapper {
    max-height: 650px;
}

.block__brands__list .swiper-slide .image-container {
    height: 70px;
    margin: 0 0 50px;
    width: 200px;
}

.block__brands__list .swiper-slide .image-container img {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.block__brands__list .swiper-slide p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding: 0 0 25px;
    width: 90%;
    color: #000000;
    margin: 0;
}

.block__brands__list .swiper-slide p:first-child {
    border-top: 1px solid #747473;
    padding: 25px 0;
}

.btn__primary--outline,
.btn__red--outline,
.search-submit__primary--outline,
.search-submit__red--outline,
button__primary--outline,
button__red--outline {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.block__brands__list .swiper-slide .btn {
    font-weight: 600;
}

/* About End */
/* Why Us */
.home__why {
    background-color: var(--primary-dark);
    position: relative;
    z-index: 0;
    padding-bottom: 180px;
    padding-top: 120px;
}

.home__why:before {
    background-color: var(--primary);
    background-image: url(../images/bg-design.svg);
    background-position-y: 90%;
    background-repeat: no-repeat;
    bottom: 0;
    content: "";
    left: -200px;
    position: absolute;
    z-index: -1;
    background-position-x: 130%;
    background-size: 68%;
    border-radius: 50% 50% 0 0/100% 100% 0 0;
    height: 450px;
    left: -250px;
    width: calc(100% + 520px);
}

.home__why__wrapper {
    display: flex;
    flex-flow: row wrap;
    position: relative;
}

.home__why__header {
    margin-bottom: 0;
    margin-top: 0;
    width: 30%;
}

.home__why__header h2 {
    width: 85%;
    font-weight: 200;
}

.home__why .swiper {
    overflow: visible;
    width: 70%;
}

.home__why .swiper-wrapper {
    display: grid;
    gap: 0 30px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.home__why .swiper-slide {
    background-color: #fff;
    border-radius: 35px 0 35px 35px;
    margin-bottom: -10px;
    height: 280px;
    padding: 30px;
}

.home__why .swiper-slide img,
.home__why .swiper-slide svg {
    height: 50px;
    margin-bottom: 20px;
    -o-object-fit: contain;
    object-fit: contain;
    width: 50px;
}

.home__why .swiper-slide .card-title {
    margin-bottom: 5px;
}

.home__why .swiper-slide p {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    width: 100%;
}

.home__why .swiper-slide:nth-child(2),
.home__why .swiper-slide:nth-child(5) {
    margin-top: 50px;
}

/* Why Us End */
/* Testimonial Sec */
.home__testimonials {
    background-color: var(--color--primary);
    padding: 25px 0;
    position: relative;
    z-index: 3;
}

.home__testimonials__header,
.home__testimonials__wrapper {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between
}

.home__testimonials__header {
    position: relative;
    width: 100%
}

@media screen and (min-width: 1024px) {
    .home__testimonials__header {
        margin-bottom: 40px
    }
}

@media screen and (min-width: 1200px) {
    .home__testimonials__header {
        display: block;
        margin-bottom: 0;
        width: 30%
    }

    .home__testimonials__header .btn {
        min-width: -moz-fit-content !important;
        min-width: fit-content !important
    }
}

@media screen and (min-width: 1200px) and (min-width:1200px) {
    .home__testimonials__header .btn {
        margin-top: 30px
    }
}

.home__testimonials__header .btn {
    margin-top: 30px
}

.home__testimonials__header h2 {
    width: calc(100% - 70px)
}

@media screen and (min-width: 1200px) {
    .home__testimonials__header h2 {
        margin-bottom: 20px;
        width: 100%
    }
}

.home__testimonials__header .swiper-buttons {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    width: 70px
}

@media screen and (min-width: 1200px) {
    .home__testimonials__header .swiper-buttons {
        display: none
    }
}

.home__testimonials__header .swiper-buttons .swiper-button-next,
.home__testimonials__header .swiper-buttons .swiper-button-prev {
    margin: 0;
    position: unset;
    width: 50%
}

.home__testimonials__header .swiper-buttons .swiper-button-next:hover:after,
.home__testimonials__header .swiper-buttons .swiper-button-prev:hover:after {
    color: #fff !important
}

.home__testimonials__header .swiper-buttons .swiper-button-next:after,
.home__testimonials__header .swiper-buttons .swiper-button-prev:after {
    color: var(--color--secondary);
    font-size: 22px !important
}

.home__testimonials__controls {
    background-color: var(--color--primary);
    bottom: unset;
    display: none;
    height: 465px;
    padding-left: 6%;
    padding-right: 75px;
    position: relative;
    text-align: left;
    width: 100%
}

@media screen and (min-width: 1024px) {
    .home__testimonials__controls {
        display: block;
        width: calc(50% - 25px)
    }
}

@media screen and (min-width: 1200px) {
    .home__testimonials__controls {
        width: 33%
    }
}

.home__testimonials__controls .swiper-wrapper {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    padding-right: 75px
}

.home__testimonials__controls .swiper-slide {
    border-top: 1px solid var(--color--secondary);
    padding: 25px 0;
    width: calc(100% - 75px)
}

@media screen and (min-width: 1024px) {
    .home__testimonials__controls .swiper-slide {
        width: 100%
    }
}

@media screen and (min-width: 1200px) {
    .home__testimonials__controls .swiper-slide {
        width: calc(100% - 75px)
    }
}

.home__testimonials__controls .swiper-slide.swiper-slide-thumb-active,
.home__testimonials__controls .swiper-slide:hover {
    cursor: pointer
}

.home__testimonials__controls .swiper-slide.swiper-slide-thumb-active h3,
.home__testimonials__controls .swiper-slide.swiper-slide-thumb-active p,
.home__testimonials__controls .swiper-slide:hover h3,
.home__testimonials__controls .swiper-slide:hover p {
    color: #fff
}

.home__testimonials__controls .swiper-slide h3 {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 8px
}

.home__testimonials__controls .swiper-slide p {
    font-family: myriad-pro, sans-serif;
    font-size: clamp(1.125rem, 1.0597826087rem + .2173913043vw, 1.25rem);
    font-weight: 700;
    line-height: clamp(1.375rem, 1.3097826087rem + .2173913043vw, 1.5rem)
}

.home__testimonials__controls .swiper-slide--active h3,
.home__testimonials__controls .swiper-slide--active p {
    color: #fff
}

.home__testimonials__controls .swiper-buttons {
    display: none
}

@media screen and (min-width: 1200px) {
    .home__testimonials__controls .swiper-buttons {
        display: flex;
        flex-flow: column wrap;
        justify-content: space-between;
        left: calc(100% - 50px);
        position: relative;
        top: -50%;
        transform: translateY(-50%);
        z-index: 10
    }
}

.home__testimonials__controls .swiper-buttons .swiper-button-next,
.home__testimonials__controls .swiper-buttons .swiper-button-prev {
    position: relative
}

.home__testimonials__controls .swiper-buttons .swiper-button-next:after,
.home__testimonials__controls .swiper-buttons .swiper-button-prev:after {
    color: var(--color--secondary);
    font-size: 25px;
    height: 25px;
    top: 0;
    transition: all .25s ease;
    width: 25px
}

.home__testimonials__controls .swiper-buttons .swiper-button-next:hover:after,
.home__testimonials__controls .swiper-buttons .swiper-button-prev:hover:after {
    color: #fff !important;
    transition: all .25s ease
}

.home__testimonials__controls .swiper-buttons .swiper-button-prev {
    left: 0
}

.home__testimonials__controls .swiper-buttons .swiper-button-prev:after {
    rotate: 90deg
}

.home__testimonials__controls .swiper-buttons .swiper-button-next {
    right: 0;
    top: 30px
}

.home__testimonials__controls .swiper-buttons .swiper-button-next:after {
    rotate: 90deg
}

.home__testimonials__swiper {
    display: flex;
    flex-flow: row wrap;
    margin-left: 0 !important;
    margin-top: 25px;
    position: relative;
    width: 100%
}

@media screen and (min-width: 1024px) {
    .home__testimonials__swiper {
        margin-top: 0;
        width: calc(50% - 25px)
    }
}

@media screen and (min-width: 1200px) {
    .home__testimonials__swiper {
        width: calc(33% - 50px)
    }
}

.home__testimonials__swiper .swiper-wrapper {
    height: 465px
}

.home__testimonials__swiper .swiper-slide {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    width: 100% !important
}

.home__testimonials__swiper .swiper-slide__content {
    color: #fff;
    font-family: myriad-pro, sans-serif;
    font-size: clamp(1.75rem, 1.5217391304rem + .7608695652vw, 2.1875rem);
    font-weight: 700;
    line-height: clamp(2.25rem, 1.9565217391rem + .9782608696vw, 2.8125rem);
    width: 90%;
    margin: 0;
}

@media screen and (min-width: 1px) and (max-width:768px) {
    .home__testimonials__swiper .swiper-slide__content {
        min-height: 180px;
        width: 100%
    }
}

.home__testimonials__swiper .swiper-slide__number {
    align-self: flex-end;
    font-family: HoratioMedium;
    font-size: clamp(9.375rem, 7.7445652174rem + 5.4347826087vw, 12.5rem);
    font-style: normal;
    font-weight: 500;
    opacity: .3;
    width: 100%;
    margin: 0;
    line-height: 1;
}

.home__testimonials__swiper .swiper-slide__author {
    border-top: 1px solid var(--color--secondary);
    width: 100%
}

@media screen and (min-width: 1024px) {
    .home__testimonials__swiper .swiper-slide__author {
        display: none
    }
}

.home__testimonials__swiper .swiper-slide__author h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 700
}

.home__testimonials__swiper .swiper-slide__author p {
    font-family: myriad-pro, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    width: 100%
}

@media screen and (min-width: 1200px) {
    .home__testimonials__swiper .swiper-slide__author p {
        width: 60%
    }
}

/* Testimonial end */
/* Sustainability Sec */
.home__sustainability {
    background-color: #ffffff;
    padding-bottom: 75px;
    padding-top: 50px;
    position: relative;
}

.home__sustainability:before {
    background-color: #fb7914;
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    content: "";
    height: 200px;
    left: -88px;
    position: absolute;
    top: -75px;
    width: calc(100% + 176px);
    z-index: 2;
}

@media screen and (min-width: 1200px) {
    .home__sustainability {
        padding-bottom: 250px;
        padding-top: 180px
    }
}

.home__sustainability__wrapper {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    position: relative
}

.home__sustainability__wrapper .swiper-pagination {
    background-color: #cecccc;
    height: 3px
}

@media screen and (min-width: 1024px) {
    .home__sustainability__wrapper .swiper-pagination {
        left: 50% !important;
        margin: 0 auto;
        top: calc(100% + 80px) !important;
        transform: translateX(-50%)
    }
}

.home__sustainability__wrapper .swiper-pagination .swiper-pagination-progressbar-fill {
    background-color: var(--primary);
}

.home__sustainability__wrapper .swiper-buttons {
    width: 80%
}

.home__sustainability__wrapper .swiper-buttons .swiper-button-next:after,
.home__sustainability__wrapper .swiper-buttons .swiper-button-prev:after {
    color: var(--primary) !important
}

.home__sustainability__wrapper .swiper-buttons .swiper-button-next:hover:after,
.home__sustainability__wrapper .swiper-buttons .swiper-button-prev:hover:after {
    color: var(--color--secondary)
}

.home__sustainability__header {
    margin: 0 auto;
    width: calc(100% - 60px)
}

@media screen and (min-width: 1024px) {
    .home__sustainability__header {
        margin-left: 130px;
        width: calc(30% - 130px)
    }
}

@media screen and (min-width: 1200px) {
    .home__sustainability__header {
        margin-left: 30px;
        width: calc(30% - 60px)
    }
}

@media screen and (min-width: 1600px) {
    .home__sustainability__header {
        margin-left: 130px;
        width: calc(30% - 130px)
    }
}

@media screen and (min-width: 2000px) {
    .home__sustainability__header {
        margin-left: 17.5vw;
        width: calc(30% - 17.5vw)
    }
}

.home__sustainability__header h2 {
    margin-bottom: 25px
}

.home__sustainability__header p {
    font-family: myriad-pro, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 40px;
    width: 85%
}

@media screen and (min-width: 1200px) {
    .home__sustainability__header p {
        width: 80%
    }
}

.home__sustainability__header a {
    min-width: -moz-fit-content;
    min-width: fit-content
}

.home__sustainability__slider {
    width: calc(100% - 60px)
}

@media screen and (min-width: 1024px) {
    .home__sustainability__slider {
        overflow: hidden;
        width: 70%
    }
}

.home__sustainability__swiper {
    margin-top: 40px;
    overflow: visible !important;
    z-index: -1
}

@media screen and (min-width: 1200px) {
    .home__sustainability__swiper {
        margin-top: 10px;
        width: 70%
    }
}

@media screen and (min-width: 1800px) {
    .home__sustainability__swiper {
        width: 70%
    }
}

.home__sustainability__swiper .swiper-wrapper {
    left: 30px
}

@media screen and (min-width: 1200px) {
    .home__sustainability__swiper .swiper-wrapper {
        left: -220px
    }
}

@media screen and (min-width: 1400px) {
    .home__sustainability__swiper .swiper-wrapper {
        left: -320px
    }
}

@media screen and (min-width: 1600px) {
    .home__sustainability__swiper .swiper-wrapper {
        left: -365px
    }
}

@media screen and (min-width: 1800px) {
    .home__sustainability__swiper .swiper-wrapper {
        left: -490px
    }
}

@media screen and (min-width: 2000px) {
    .home__sustainability__swiper .swiper-wrapper {
        left: -24vw
    }
}

.home__sustainability__swiper .feature-card {
    flex-flow: column wrap;
    height: 340px;
    justify-content: space-between;
    margin-left: 0;
    width: 283px
}

@media screen and (min-width: 1200px) {
    .home__sustainability__swiper .feature-card {
        height: 410px;
        margin: 0 20px;
        width: 340px !important
    }
}

.home__sustainability__swiper .feature-card .icon-container {
    width: 100%
}

.home__sustainability__swiper .feature-card .icon-container svg {
    height: 55px;
    width: 55px
}

@media screen and (min-width: 1200px) {
    .home__sustainability__swiper .feature-card .icon-container svg {
        height: 65px;
        width: 65px
    }
}

.home__sustainability__swiper .feature-card p {
    color: #fff;
    font-family: myriad-pro, sans-serif;
    font-size: clamp(1rem, .9347826087rem + .2173913043vw, 1.125rem);
    font-weight: 400;
    line-height: clamp(1.3125rem, 1.214673913rem + .3260869565vw, 1.5rem);
    margin-bottom: 10px;
    width: 100%
}

@media screen and (min-width: 1200px) {
    .home__sustainability__swiper .feature-card p {
        width: 90%
    }
}

.home__sustainability__swiper .feature-card p:last-child {
    margin-bottom: 0
}

@media screen and (min-width: 1px) and (max-width:767px) {
    .home__sustainability__swiper .feature-card h4 {
        margin-bottom: 10px
    }
}

.home__sustainability .swiper-pagination {
    display: none;
    height: 3px
}

@media screen and (min-width: 1024px) {
    .home__sustainability .swiper-pagination {
        display: block
    }
}

@media screen and (min-width: 1024px) and (max-width:1199px) {
    .home__sustainability .swiper-pagination {
        top: calc(100% + 40px) !important
    }

    .home__sustainability .swiper-buttons {
        bottom: -40px !important
    }
}

@media screen and (min-width: 1px) and (max-width:1023px) {
    .home__sustainability .swiper-buttons {
        bottom: 170px;
        left: calc(50% + 5px);
        position: absolute;
        top: unset;
        width: 100% !important;
        z-index: 1
    }

    .home__sustainability .swiper-buttons .swiper-button-disabled {
        opacity: 0
    }

    .home__sustainability .swiper-buttons .swiper-button-next {
        background-color: #fff;
        border-radius: 50px;
        height: 50px;
        right: 60px;
        width: 50px
    }

    .home__sustainability .swiper-buttons .swiper-button-next:after {
        color: var(--color--primary) !important;
        font-size: 22px
    }

    .home__sustainability .swiper-buttons .swiper-button-prev {
        display: none
    }
}

.home__sustainability .swiper-buttons .swiper-button-next:hover:after,
.home__sustainability .swiper-buttons .swiper-button-prev:hover:after {
    color: var(--color--secondary) !important
}

/* Sustainability End */
/* Counter Start */
.home__stats {
    background: var(--color--secondary);
    padding-bottom: 150px;
    padding-top: 50px
}

@media screen and (min-width: 768px) {
    .home__stats {
        padding-top: 75px
    }
}

@media screen and (min-width: 1200px) {
    .home__stats {
        background: linear-gradient(0deg, hsla(0, 0%, 100%, 0) 10%, #1d1d1b 0);
        padding-bottom: 210px;
        padding-top: 60px
    }
}

.home__stats__wrapper {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between
}

.home__stats__item {
    width: 100%;
    text-align: center;
}

@media screen and (min-width: 1px) and (max-width:767px) {
    .home__stats__item {
        display: grid;
        gap: 0 0;
        grid-template-areas: "stat-icon stat-title" "stat-icon stat-text";
        grid-template-columns: 90px 1fr;
        grid-template-rows: 1fr 1fr
    }

    .home__stats__item svg {
        margin-right: 35px;
        margin-top: 12px
    }
}

@media screen and (min-width: 1200px) {
    .home__stats__item .stat-icon-wrapper {
        height: 100px
    }
}

@media screen and (min-width: 768px) {
    .home__stats__item {
        margin-bottom: 30px;
        padding: 0 30px;
        width: calc(50% - 1px)
    }
}

@media screen and (min-width: 1200px) {
    .home__stats__item {
        margin-bottom: 0;
        padding: 0;
        width: calc(25% - 40px)
    }
}

@media screen and (min-width: 1600px) {
    .home__stats__item {
        width: calc(25% - 80px)
    }
}

.home__stats__item:last-child {
    border-right: 0
}

.home__stats__item svg {
    grid-area: stat-icon
}

.home__stats__item .stat-title {
    color: var(--color--primary);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2.8125rem, 2.3233695652rem + 1.6304347826vw, 3.75rem);
    font-style: normal;
    font-weight: 700;
    grid-area: stat-title;
    line-height: clamp(3.375rem, 2.8858695652rem + 1.6304347826vw, 4.3125rem)
}

.home__stats__item .stat-text {
    color: #fff;
    font-family: myriad-pro, sans-serif;
    font-size: clamp(1rem, .8695652174rem + .4347826087vw, 1.25rem);
    font-weight: 400;
    grid-area: stat-text;
    line-height: clamp(1.3125rem, 1.214673913rem + .3260869565vw, 1.5rem)
}

@media screen and (min-width: 1200px) {
    .home__stats__item .stat-text {
        font-family: myriad-pro, sans-serif;
        font-weight: 700
    }
}

.home__stats__item:first-child svg {
    height: 50px;
    width: 50px
}

@media screen and (min-width: 1200px) {
    .home__stats__item:first-child svg {
        height: 63px;
        width: 34px
    }
}

.home__stats__item:nth-child(3) svg {
    height: 50px;
    width: 60px
}

@media screen and (min-width: 1200px) {
    .home__stats__item:nth-child(3) svg {
        height: 42px;
        margin-top: 10px;
        width: 74px
    }
}

.home__stats__item:nth-child(5) svg {
    height: 50px;
    width: 50px
}

@media screen and (min-width: 1200px) {
    .home__stats__item:nth-child(5) svg {
        height: 56px;
        width: 45px
    }
}

.home__stats__item:nth-child(7) svg {
    height: 50px;
    width: 50px
}

@media screen and (min-width: 1200px) {
    .home__stats__item:nth-child(7) svg {
        height: 52px;
        width: 52px
    }
}

.home__stats .separator {
    background-color: var(--color--primary);
    display: block;
    height: 1px;
    margin: 5px 0 20px;
    width: 100%
}

@media screen and (min-width: 768px) {
    .home__stats .separator {
        height: auto;
        margin: 0 0 50px;
        width: 1px
    }
}

@media screen and (min-width: 1200px) {
    .home__stats .separator {
        margin-bottom: 0
    }
}

.home__stats .separator:last-child {
    display: none
}

/* Counter End */
/* Footer */
.footer-cta {
    align-items: center;
    display: flex;
    flex-flow: row wrap;
    height: 540px;
    justify-content: space-between;
    overflow: hidden;
    /* padding: 25px 0; */
    padding: 15px;
    text-align: center
}

@media screen and (min-width: 1024px) {
    .footer-cta {
        background-color: #fff;
        border: 2px solid #cecccc;
        border-radius: 25px;
        height: 200px;
        margin: 100px auto 0;
        width: calc(100% - 60px)
    }
}

@media screen and (min-width: 1200px) {
    .footer-cta {
        left: 50%;
        margin-top: 0;
        position: absolute;
        transform: translate(-50%, -50%);
        width: 1100px;
        z-index: 1;
    }
}

.footer-cta>div {
    width: 100%
}

@media screen and (min-width: 1px) and (max-width:1023px) {

    .footer-cta>div:first-child,
    .footer-cta>div:last-child {
        padding: 20px 0
    }

    .footer-cta>div:first-child:after,
    .footer-cta>div:last-child:after {
        border: 2px solid #cecccc;
        content: "";
        display: block;
        height: 350px;
        left: 50%;
        position: absolute;
        top: calc(50% - 75px);
        translate: -50% -50%;
        width: calc(100% + 300px);
        z-index: -1
    }

    .footer-cta>div:first-child:after {
        border-radius: 0 0 50% 50%/0 0 50% 50%;
        top: calc(50% - 90px)
    }

    .footer-cta>div:last-child:after {
        border-radius: 50% 50% 0 0/50% 50% 0 0;
        top: calc(50% + 90px)
    }
}

@media screen and (min-width: 1024px) {
    .footer-cta>div {
        width: 50%;
    }

    /* .footer-cta>div:first-child:after,
    .footer-cta>div:last-child:after {
        border: 2px solid #cecccc;
        border-radius: 200px;
        content: "";
        display: block;
        height: 350px;
        left: 50%;
        position: absolute;
        top: 50%;
        translate: -50% -50%;
        width: 425px;
        z-index: -1
    } */
}

.footer-cta>div:first-child,
.footer-cta>div:last-child {
    position: relative
}

.footer-cta>div p {
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    margin: 0 auto;
    width: 55%
}

@media screen and (min-width: 1200px) {
    .footer-cta>div p {
        width: 65%
    }
}

.footer-cta>div a,
.footer-cta>div button {
    margin: 10px auto 0;
    min-width: -moz-fit-content !important;
    min-width: fit-content !important
}

@media screen and (min-width: 1200px) {

    .footer-cta>div a,
    .footer-cta>div button {
        margin: 25px auto 0
    }
}

/* @media (min-width:320px) and (max-width:600px){
    .footer-cta__center-content img {
        width: 100px !important;
    }
} */

.footer-cta__center-content img {
    width: 150px;

}

footer {
    background-color: var(--primary-dark);
    color: #fff;
    position: relative;
    width: 100%;
    /* z-index: -1; */
}

.brand-box {
    width: 100% !important;
    display: flex;
    justify-content: space-between;
}

.brand-img img {
    width: 90%;
}

.brand-img {
    width: 20%;
}

.why-chooseus h2 strong {
    color: #fb7914;
}



.why-chooseus2 h2 strong {
    color: #fb7914;
}

footer .footer_upper {
    padding: 160px 60px 50px;
}


footer .brand-section .brand-logo {
    margin-bottom: 20px;
    display: block;
}

.footer .brand-section p {
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 0.75px;
    font-weight: 200;
}

.social-section {
    display: flex;
    align-items: center;
    gap: 0 15px;
    margin-top: 26px;
}

.social-section li a {
    border: 1px solid #ffffff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    text-decoration: none !important;
}

.social-section li a:hover {
    border-color: #fb7914;
    background-color: #fb7914;
}

footer .menu-section h5 {
    color: #cecccc;
    margin-bottom: 20px;
}

footer .menu-section ul li {
    margin-bottom: 10px;
}

footer .menu-section ul li a,
.contact_sec ul li p {
    font-size: 14px;
    letter-spacing: 0.5px;
}

footer .menu-item a {
    text-decoration: none;
}

footer .menu-item a:hover {
    color: var(--primary) !important;
    text-decoration: none;
}

footer .menu-section {
    padding-left: 40px;
    padding-top: 0;
}

.contact_sec ul li {
    display: flex;
    align-items: baseline;
    color: #ffffff;
}

.contact_sec ul li i {
    margin-right: 15px;
}

.contact_sec ul li p {
    color: #ffffff;
}

.footer_bottom {
    border-top: 1px solid #fff3;
    padding: 15px 60px;
    position: relative;
}

.footer_bottom p {
    font-size: 12px;
    font-weight: 200;
    letter-spacing: 0.75px;
}

footer a {
    color: #fff;
}

footer a:hover {
    color: #fff !important;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Footer End */
.btn:hover,
button:hover {
    background-color: var(--color--secondary);
    border-color: var(--color--secondary);
    color: #fff
}

.btn__primary,
.btn__red {
    background-color: #f25230;
    border-color: #f25230
}

.btn__primary:hover,
.btn__red:hover {
    background-color: #fff;
    border-color: #fff;
    color: var(--color--secondary)
}

.btn__primary--outline,
.btn__red--outline {
    background-color: #f25230;
    border-color: #f25230;
    color: #fff
}

.btn__primary--outline:hover,
.btn__red--outline:hover {
    background-color: transparent;
    border-color: #f25230;
    color: #f25230
}

.btn__dark {
    background-color: var(--color--secondary);
    border-color: var(--color--secondary);
    color: #fff
}

.btn__dark:hover {
    background-color: #fff;
    border-color: #fff;
    color: var(--color--secondary)
}

.btn__dark--outline {
    background-color: var(--color--secondary);
    border-color: var(--color--secondary);
    color: #fff
}

.btn__dark--outline:hover {
    background-color: transparent;
    border-color: var(--color--secondary);
    color: var(--color--secondary)
}

.btn__light {
    background-color: #fff;
    border-color: #fff;
    color: var(--color--secondary)
}

.btn__light:hover {
    background-color: var(--color--primary);
    border-color: var(--color--primary);
    color: #fff
}

.btn__light--outline {
    background-color: #fff;
    border-color: #fff;
    color: var(--color--secondary)
}

.btn__light--outline:hover {
    background-color: transparent;
    border-color: #fff;
    color: #fff
}

.btn__purple {
    background-color: var(--color--accent-purple);
    border-color: var(--color--accent-purple);
    color: #fff
}

.btn__purple:hover {
    background-color: #fff;
    border-color: #fff;
    color: var(--color--secondary)
}

.btn__green {
    background-color: var(--color--accent-green);
    border-color: var(--color--accent-green);
    color: #fff
}

.btn__green:hover {
    background-color: #fff;
    border-color: #fff;
    color: var(--color--secondary)
}

.btn__teal {
    background-color: var(--color--accent-light-blue);
    border-color: var(--color--accent-light-blue);
    color: #fff
}

.btn__teal:hover {
    background-color: #fff;
    border-color: #fff;
    color: var(--color--secondary)
}

.bootom_shape {
    position: relative;
    z-index: 0;
    margin-bottom: 150px;
}

.bootom_shape:before {
    background: #fff;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    content: "";
    height: 150px;
    left: -275px;
    position: absolute;
    top: -100px;
    width: calc(100% + 550px);
    z-index: -2;
}

@media screen and (min-width: 1200px) {
    .bootom_shape:before {
        background: linear-gradient(0deg, hsla(0, 0%, 100%, 0), #fff 29%);
        top: -125px;
    }
}

.block__brands__controls .swiper-slide {
    margin-bottom: 50px !important;
}


.about__intro {
    font-size: 35px;
    font-weight: 700;
    line-height: 45px;
    margin-bottom: 50px;
    position: relative;
    text-align: center;
    z-index: 1;
    padding-top: 50px;
}

.about__sections:before {
    /* background-color: #fff;
    border-radius: 0 0 50% 50%/0 0 100% 100%;
    bottom: -75%;
    content: "";
    height: 275px;
    left: -55%;
    position: absolute;
    transform: scaleX(-1);
    width: 210%;
    z-index: -1; */

    background-color: #fff;
    border-radius: 0px 0px 50% 50% / 0px 0px 100% 100%;
    content: "";
    position: absolute;
    height: 460px;
    left: -50%;
    top: -18%;
    width: 200%;
    z-index: 1;
}

.home_about.about__sections:before {
    height: 270px;
    border-radius: 0px 0px 25% 25% / 0px 0px 100% 100%;
    content: unset;
}

/* .about__intro:before {
    background-color: #fff;
    border-radius: 0 0 100% 100%/0 0 35% 35%;
    bottom: -75%;
    content: "";
    height: 275px;
    left: 0%;
    position: absolute;
    transform: scaleX(-1);
    width: 100%;
    z-index: -1;
} */

.about__intro h2 {
    /* color: var(--primary); */
    color: #ed4747;
    font-size: 34px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about__intro p {
    font-size: 14px;
    margin: 15px auto;
    width: 70%;
    letter-spacing: 0.5px;
    color: #000000;
    text-align: justify;
}

.about__intro p strong {
    color: var(--primary);
}

.container--1150 {
    margin: 0 auto;
    max-width: calc(100% - 60px);
    width: 1150px;
}

.about__sections {
    /* background-color: var(--primary); */
    background-color: #f2f2f2;
    padding: 50px 0;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.about__sections__header {
    display: none;
}

.container--1380 {
    margin: 0 auto;
    max-width: calc(100% - 60px);
    width: 1380px;
}

.about__sections__section {
    align-items: center;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    /* margin-bottom: 50px; */
}

.about__sections__section__left {
    border-left: 1px solid var(--primary-dark);
    height: -moz-fit-content;
    height: fit-content;
    order: 2;
    padding-left: 15px;
    width: 100%;
}

.about__sections__section__left .section-title {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 15px;
    color: #000000;
}

.about__sections__section__left .section-text {
    color: #000;
    font-size: 14px;
    line-height: 22px;
    width: 100%;
    margin: 0 0 12px;
    letter-spacing: 0.5px;
}

.about__sections__section__right {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    order: 1;
    width: 100%;
}

.about__sections__section__right img {
    border-radius: 65px 0 65px 65px;
    height: 293px;
    max-width: 355px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}

.about__values {
    overflow: hidden;
    padding: 100px 0;
    position: relative;
    z-index: 0;
}

.about__values__wrapper {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    z-index: 0;
}

.about__values__header {
    width: 100%;
}

.about__values__header h2 {
    margin-bottom: 15px;
    margin-top: 0;
}

.about__values__header .slide-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 100px;
    width: 85%;
    color: #000000;
    margin-top: 0;
}

.about__values__header .slide-number {
    display: none;
}

.about__values__controls {
    bottom: unset;
    display: none;
    height: 465px;
    padding-right: 75px;
    position: relative;
    text-align: left;
    width: 100%;
}

.about__values__controls .swiper-wrapper {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    padding-right: 75px;
}

.about__values__controls .swiper-slide {
    align-items: center;
    border-top: 1px solid var(--primary-dark);
    display: flex;
    padding: 25px 0;
    width: calc(100% - 75px);
}

.about__values__controls .swiper-slide.swiper-slide-thumb-active,
.about__values__controls .swiper-slide:hover {
    cursor: pointer;
}

.about__values:after {
    background-image: url(../images/bg-design.svg);
    background-repeat: no-repeat;
    content: "";
    display: block;
    height: 500px;
    position: absolute;
    right: -50vw;
    top: -8vh;
    transform: scaleX(-1);
    width: calc(100% + 250px);
    z-index: -2;
}

.about__values__controls .swiper-slide h3 {
    font-family: myriad-pro, sans-serif;
    font-size: clamp(1.75rem, 1.5217391304rem + .7608695652vw, 2.1875rem);
    font-weight: 700;
    line-height: clamp(2.25rem, 1.9565217391rem + .9782608696vw, 2.8125rem);
    margin-bottom: 0;
}

.about__values__controls .swiper-slide.swiper-slide-thumb-active h3,
.about__values__controls .swiper-slide.swiper-slide-thumb-active p,
.about__values__controls .swiper-slide:hover h3,
.about__values__controls .swiper-slide:hover p {
    color: var(--primary);
}

.about__values__swiper {
    display: flex;
    flex-flow: row wrap;
    margin-top: 50px;
    position: relative;
    width: 100%;
}

.about__values__swiper .swiper-wrapper {
    height: 465px;
}

.about__values__swiper .swiper-slide {
    align-content: flex-start;
    display: flex;
    flex-flow: row wrap;
    width: 100% !important;
}

.about__values__swiper .swiper-slide__title {
    color: var(--primary);
    font-size: clamp(1.75rem, 1.5217391304rem + .7608695652vw, 2.1875rem);
    font-weight: 700;
    height: -moz-fit-content;
    height: fit-content;
    line-height: clamp(2.25rem, 1.9565217391rem + .9782608696vw, 2.8125rem);
    margin-bottom: 10px;
    margin-top: 25px;
    order: 2;
    width: 100%;
}

.about__values__swiper .swiper-slide__content {
    font-size: 18px;
    font-weight: 700;
    height: -moz-fit-content;
    height: fit-content;
    line-height: clamp(1.25rem, 1.1195652174rem + .4347826087vw, 1.5rem);
    margin-bottom: 30px;
    order: 3;
    width: 100%;
    margin-top: 0;
}

.about__values__swiper .swiper-slide svg {
    height: 45px;
    margin: 0 auto;
    -o-object-fit: contain;
    object-fit: contain;
    order: 1;
    width: 45px;
}

.about__values__swiper .swiper-buttons {
    display: none;
}

.about__values__swiper .swiper-buttons .swiper-button-next,
.about__values__swiper .swiper-buttons .swiper-button-prev {
    position: relative;
}

.about__values__swiper .swiper-buttons .swiper-button-prev {
    left: 0;
}

.about__values__swiper .swiper-buttons .swiper-button-next:after,
.about__values__swiper .swiper-buttons .swiper-button-prev:after {
    color: var(--primary-dark);
    font-size: 25px;
    height: 25px;
    top: 0;
    transition: all .25s ease;
    width: 25px;
}

.about__values__swiper .swiper-buttons .swiper-button-prev:after {
    rotate: 90deg;
}

.about__values__swiper .swiper-buttons .swiper-button-next {
    right: 0;
    top: 100%;
}

.about__values__swiper .swiper-buttons .swiper-button-next:after {
    rotate: 90deg;
}

.about__values__wrapper .swiper-pagination {
    bottom: 30px;
    height: 3px;
    top: unset;
}

.about__values__wrapper .swiper-pagination .swiper-pagination-progressbar-fill {
    background: var(--primary-dark);
}

.btn:hover {
    border-color: var(--bs-btn-active-border-color);
}

.contact-content {
    background-color: #fff;
    background-image: url(../images/bg-design.svg);
    background-position-x: 320%;
    background-position-y: 120px;
    background-repeat: no-repeat;
    background-size: 1765px 1410px;
    overflow: hidden !important;
    z-index: 1;
}

.contact-content__wrapper {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin: 0 auto;
    overflow: visible !important;
    padding: 60px 0;
    z-index: 0;
}

.contact-content__left {
    width: 100%;
    z-index: 1;
}

.contact-content__left form {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin-top: 50px;
}

.contact-content__left form .form-row {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin-bottom: 25px;
    overflow: hidden;
    width: 100%;
}

.contact-content__left form .form-row--fname,
.contact-content__left form .form-row--lname {
    width: 100%;
}

.contact-content__left label {
    color: #000;
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

input[type=email],
input[type=tel],
input[type=text],
select,
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff;
    border: 1px solid #cecccc;
    border-radius: 50px;
    display: block;
    font-size: 16px !important;
    font-weight: 400;
    height: 50px;
    padding: 0 20px;
    width: 100%;
}

textarea {
    border-radius: 20px !important;
    min-height: 125px;
    padding: 20px;
    outline: 0;
}

input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=text]::placeholder,
select::placeholder,
textarea::placeholder {
    opacity: 0;
}

.contact-content__right {
    overflow: visible;
    width: calc(100% + 60px);
    z-index: 1;
}

.contact-content__right__info {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    /* margin-top: 25px; */
    margin-top: 0;
    position: relative;
    text-align: center;
    width: 100%;
    flex-wrap: nowrap;
}

.contact-content__right__info .info-section {
    font-size: 18px;
}

/* .contact-content__right__info .info-section.opening-times {
    margin-bottom: 0;
    width: 33%;
} */

.contact-content__right__info .info-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 500;
}

.contact-content__right__info .info-section.company-address div {
    line-height: 24px;
    margin-bottom: 10px;
}

.contact-content__right__info .info-section.company-address div:last-child {
    margin-bottom: 0;
}

.contact-content__right__info .info-section.company-address div h5 {
    color: var(--primary-dark);
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 6px;
    margin-top: 0;
}

.contact-content__right__info .info-section.contact-info p {
    color: var(--primary-dark);
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 6px;
    margin-top: 0;
}

.contact-content__right__info .info-section.contact-info {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 50px;
    width: 100%;
    background-color: #fff3ea;
    margin-left: 10px;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #fb7914;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-content__right__info .info-section.contact-info a {
    color: var(--primary-dark);
    /* display: block; */
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 6px;
    text-transform: inherit;
}

.contact-info.info-section i {
    color: #fb7914;
    font-size: 25px;
    border: 1px solid #fb7914;
    padding: 15px;
    border-radius: 30px;
    width: 56px;
}

.page_header {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-flow: row wrap;
    height: 450px;
    align-items: center;
    overflow: hidden;
    position: relative;
    margin-top: 90px;
    z-index: 10;
}

.page_header picture {
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: -1;
}

.page_header h1 {
    color: #fff;
    font-size: 52px;
    font-weight: 600;
    line-height: clamp(3.0625rem, 2.0842391304rem + 3.2608695652vw, 4.9375rem);
    margin-top: 0;
    width: 50%;
}

.padding-tb {
    padding: 120px 0px;
}

.padding-b {
    padding-bottom: 120px;
}

.ab-title {
    color: #fb7914;
}

.sub-heading {
    letter-spacing: 1px;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 25px;
    color: #fc630d;
    border-radius: 20px;
}

.about-content {
    max-width: 1150px;
    margin: auto;
    line-height: 25px;
}

.about-content p {
    line-height: 30px;
    font-size: 16px;
}

h2.ab-ct-hd {
    font-size: 40px;
    letter-spacing: 0.6px;
}

.wwd li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.wwd li img {
    margin-right: 10px;
    margin-top: 10px;
}

.ic {
    display: flex;
}

.ic img {
    /* background: #fb791417; */
    padding: 10px;
    border: 1px dashed #fb7e15;
    border-radius: 50px;
    margin-left: 15px;
    width: 100px;
}

.product-box img {
    border: 1px solid #fb79147d;
    box-shadow: -2px -2px 1px 0px #fb791478;
    margin-bottom: 20px;
    border-radius: 20px;
}

.block-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}



.menu-section {
    position: relative;
}

.contact-df {
    display: flex;
    justify-content: center;
    align-items: center;
}

section.policy ul li {
    padding: 8px 0px;
}

.home__why__card svg {
    width: 35px;

}

.home__why__card {
    padding: 20px;
    border-radius: 20px;
    background: aliceblue;
    height: 90%;
}

h4.card-title {
    font-size: 20px;
    margin-top: 10px !important;
}
