@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap");

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-decoration: none;
    margin: 0;
}

.container {
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
}

@media (min-width: 769px) {
    .container {
        max-width: 750px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 970px;
    }
}

@media (min-width: 1230px) {
    .container {
        max-width: 1200px;
    }
}

body {
    font-family: 'Nunito', sans-serif;
    letter-spacing: 0.0175em;
}

input,
select,
textarea,
button {
    font: inherit;
}

    input:focus,
    textarea:focus,
    select:focus {
        outline: none;
    }

ul {
    padding: 0;
}

li {
    list-style: none;
}

.wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.btn,
.details-btn,
.detail-btn {
    -webkit-transition: .4s ease !important;
    transition: .4s ease !important;
}

    .btn:hover,
    .details-btn:hover,
    .detail-btn:hover {
        background-color: #b92424 !important;
        border-color: transparent !important;
    }

        .btn:hover span,
        .details-btn:hover span,
        .detail-btn:hover span {
            color: white !important;
        }

        .btn:hover svg path,
        .details-btn:hover svg path,
        .detail-btn:hover svg path {
            color: white !important;
            fill: currentColor;
        }

section {
    overflow: hidden;
}

header.header {
    background-color: #4B5569;
    padding: 20px 0;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 9999;
    -webkit-box-shadow: 0px 4px 30px #0000004f;
    box-shadow: 0px 4px 30px #0000004f;
}

    header.header .wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

        header.header .wrapper .navbar-brand a.logo {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            width: 100px;
        }

            header.header .wrapper .navbar-brand a.logo svg {
                width: 100%;
            }

        header.header .wrapper .navbar {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            gap: 16px;
        }

            header.header .wrapper .navbar ul:not(.menudrop) {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
            }

            header.header .wrapper .navbar ul .nav-item {
                padding: 0 16px;
                display: inline-block;
                position: relative;
            }

                header.header .wrapper .navbar ul .nav-item a.nav-link {
                    font-size: 16px;
                    font-weight: 800;
                }

            header.header .wrapper .navbar nav#nav ul:not(.menudrop) {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
            }

            header.header .wrapper .navbar nav#nav ul .nav-item .nav-link {
                color: #F2F5FA;
            }

            header.header .wrapper .navbar ul.btn-group {
                gap: 32px;
            }

                header.header .wrapper .navbar ul.btn-group li.nav-item {
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    align-items: center;
                    padding: 15px 24px;
                    border-radius: 5px;
                    -webkit-transition: .2s ease;
                    transition: .2s ease;
                }

                    header.header .wrapper .navbar ul.btn-group li.nav-item a.nav-link {
                        line-height: 16px;
                    }

                    header.header .wrapper .navbar ul.btn-group li.nav-item:hover {
                        -webkit-transform: scale(1.02);
                        transform: scale(1.02);
                    }

                    header.header .wrapper .navbar ul.btn-group li.nav-item.btn1 {
                        border: 1px solid #F2F5FA;
                        position: relative;
                        z-index: 9;
                    }

                        header.header .wrapper .navbar ul.btn-group li.nav-item.btn1 .nav-link {
                            color: #F2F5FA;
                        }

                    header.header .wrapper .navbar ul.btn-group li.nav-item.btn2 {
                        background-color: #F2F5FA;
                    }

                        header.header .wrapper .navbar ul.btn-group li.nav-item.btn2 .nav-link {
                            color: #CD2E2D;
                        }

                        header.header .wrapper .navbar ul.btn-group li.nav-item.btn2:hover .nav-link {
                            color: #b90100;
                        }

                    header.header .wrapper .navbar ul.btn-group li.nav-item .icon {
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: flex;
                        margin-left: 10px;
                    }

                        header.header .wrapper .navbar ul.btn-group li.nav-item .icon svg {
                            width: 20px;
                        }

.toggler {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    width: 40px;
    height: 30px;
    overflow: hidden;
}

.hamburger {
    position: absolute;
    cursor: pointer;
    padding: 10px 35px 16px 0px;
}

    .hamburger span, .hamburger span:before, .hamburger span::after {
        cursor: pointer;
        border-radius: 1px;
        height: 3px;
        width: 35px;
        background: #F2F5FA;
        border-radius: 999px;
        position: absolute;
        display: inline-block;
        -webkit-transition: all 200ms ease-in-out;
        transition: all 200ms ease-in-out;
        -webkit-transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
        transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
        content: '';
    }

        .hamburger span::before {
            top: -10px;
        }

        .hamburger span::after {
            bottom: -10px;
        }

    .hamburger.active span {
        background-color: transparent;
    }

        .hamburger.active span::before {
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
            top: 0;
        }

        .hamburger.active span::after {
            -webkit-transform: translateY(-10px) rotate(-45deg);
            transform: translateY(-10px) rotate(-45deg);
            top: 10px;
        }

@media (min-width: 992px) {
    .toggler {
        display: none;
    }
}

@media (max-width: 991px) {
    header.header {
        position: relative;
        -webkit-box-shadow: 0px 1px 2px rgba(58, 84, 108, 0.73);
        box-shadow: 0px 1px 2px rgba(58, 84, 108, 0.73);
    }

        header.header .wrapper .navbar {
            position: absolute;
            opacity: 0;
            visibility: hidden;
            top: calc(100% + 0px);
            left: 0;
            right: 0;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            gap: 0;
            background-color: #4B5569;
            -webkit-transition: .2s ease;
            transition: .2s ease;
            -webkit-box-shadow: 0px 20px 40px rgba(5, 32, 58, 0.1);
            box-shadow: 0px 20px 40px rgba(5, 32, 58, 0.1);
        }

            header.header .wrapper .navbar.active {
                opacity: 1;
                visibility: visible;
            }

            header.header .wrapper .navbar nav#nav {
                width: 100%;
            }

            header.header .wrapper .navbar ul {
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                -ms-flex-direction: column;
                flex-direction: column;
            }

                header.header .wrapper .navbar ul ul {
                    width: 100%;
                    overflow: hidden;
                    z-index: 99;
                    left: 0 !important;
                    top: 45px !important;
                    padding-top: 10px !important;
                }

                header.header .wrapper .navbar ul li.nav-item {
                    padding: unset;
                    height: 60px;
                    width: 100%;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    align-items: center;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    justify-content: center;
                    border-bottom: 1px solid #FFFFFF;
                }

                header.header .wrapper .navbar ul.btn-group {
                    width: 100%;
                    gap: 0;
                }

                    header.header .wrapper .navbar ul.btn-group li {
                        -webkit-box-pack: center;
                        -ms-flex-pack: center;
                        justify-content: center;
                    }

                    header.header .wrapper .navbar ul.btn-group .btn1 {
                        border: unset !important;
                    }

                    header.header .wrapper .navbar ul.btn-group .btn2 {
                        width: 100% !important;
                        border-radius: 0 !important;
                        padding: 0 24px;
                    }

                header.header .wrapper .navbar ul .nav-item {
                    padding: 0;
                    text-align: center;
                    width: 100%;
                }

        header.header .wrapper .navbar-brand {
            width: 100%;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
        }
}

@media (max-width: 576px) {
    header.header {
        position: relative;
        -webkit-box-shadow: 0px 1px 2px rgba(58, 84, 108, 0.73);
        box-shadow: 0px 1px 2px rgba(58, 84, 108, 0.73);
    }

        header.header .wrapper .navbar .btn-group .btn2 {
            border-radius: 0 !important;
            padding: 0 24px;
        }
}

div.hero {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 70px 0;
    position: relative;
}

    div.hero::after, div.hero::before {
        content: "";
        height: 100%;
        position: absolute;
        top: 0;
        z-index: 1;
    }

    div.hero::after {
        width: 50%;
        left: 0;
        /* background: -webkit-gradient(linear, left top, right top, color-stop(-25.25%, #0E1E3C), color-stop(97.01%, rgba(14, 30, 60, 0)));
        background: linear-gradient(90deg, #0E1E3C -25.25%, rgba(14, 30, 60, 0) 97.01%);*/
        opacity: 0.6;
    }

    div.hero::before {
        width: 100%;
        left: 0;
        /* background: -webkit-gradient(linear, left top, right top, color-stop(-10.12%, #4B5569), color-stop(78.41%, rgba(0, 34, 98, 0)));
        background: linear-gradient(90deg, #4B5569 -10.12%, rgba(0, 34, 98, 0) 78.41%);*/
        opacity: 0.68;
    }

    div.hero .wrapper .hero-left {
        width: 45%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        z-index: 5;
    }

        div.hero .wrapper .hero-left h2 {
            color: white;
            font-size: 48px;
            font-weight: 800;
            letter-spacing: 0.0175em;
            padding-bottom: 10px;
        }

        div.hero .wrapper .hero-left p {
            color: white;
            font-weight: 700;
            font-size: 24px;
            padding-bottom: 40px;
        }

        div.hero .wrapper .hero-left a.detail-btn {
            background-color: #CD2E2D;
            color: white;
            padding: 16px 32px;
            gap: 15px;
            font-weight: 700;
            font-size: 24px;
            -webkit-transition: .4s ease;
            transition: .4s ease;
        }

.main-slider {
    display: flex;
    align-items: flex-end;
    /*justify-content: center;*/
    flex-direction: initial;
}

a.hero-slider-btn {
    font-size: 16px;
    font-weight: 800;
    background-color: #CD2E2D;
    color: white;
    /*padding: 16px 32px;*/
    padding: 15px 24px;
    gap: 15px;
    /*font-weight: 700;*/
    /*font-size: 24px;*/
    -webkit-transition: .4s ease;
    transition: .4s ease;
}

div.hero .wrapper .hero-right {
    width: 55%;
    min-height: 500px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 5;
}

    div.hero .wrapper .hero-right .image {
        width: 577px;
        margin-right: 10px;
    }

        div.hero .wrapper .hero-right .image img {
            width: 100%;
            -webkit-user-drag: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

    div.hero .wrapper .hero-right .vector {
        position: absolute;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: 500px;
        z-index: -1;
    }

        div.hero .wrapper .hero-right .vector img {
            height: 100%;
            -webkit-user-drag: none;
        }

/*div.hero.home {
        background-image: url(../images/hero-backgrounf.jpg);
    }*/

@media (min-width: 992px) {
    div.hero .wrapper {
        z-index: 10;
        position: relative;
    }

        div.hero .wrapper .hero-left a.detail-btn:hover {
            -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
        }

    div.hero.home {
        background-size: 130%;
    }

        div.hero.home .wrapper {
            -webkit-transform: translateX(69px);
            transform: translateX(69px);
            z-index: 10;
            position: relative;
        }

            div.hero.home .wrapper .hero-left a.detail-btn:hover {
                -webkit-transform: translateY(-5px);
                transform: translateY(-5px);
            }
}

section.hero {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 70px 0;
    position: relative;
}

    section.hero::after, section.hero::before {
        content: "";
        height: 100%;
        position: absolute;
        top: 0;
        z-index: 1;
    }

    section.hero::after {
        width: 50%;
        left: 0;
        background: -webkit-gradient(linear, left top, right top, color-stop(-25.25%, #0E1E3C), color-stop(97.01%, rgba(14, 30, 60, 0)));
        background: linear-gradient(90deg, #0E1E3C -25.25%, rgba(14, 30, 60, 0) 97.01%);
        opacity: 0.6;
    }

    section.hero::before {
        width: 100%;
        left: 0;
        background: -webkit-gradient(linear, left top, right top, color-stop(-10.12%, #4B5569), color-stop(78.41%, rgba(0, 34, 98, 0)));
        background: linear-gradient(90deg, #4B5569 -10.12%, rgba(0, 34, 98, 0) 78.41%);
        opacity: 0.68;
    }

    section.hero .wrapper .hero-left {
        width: 45%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        z-index: 5;
    }

        section.hero .wrapper .hero-left h2 {
            color: white;
            font-size: 48px;
            font-weight: 800;
            letter-spacing: 0.0175em;
            padding-bottom: 10px;
        }

        section.hero .wrapper .hero-left p {
            color: white;
            font-weight: 700;
            font-size: 24px;
            padding-bottom: 40px;
        }

        section.hero .wrapper .hero-left a.detail-btn {
            background-color: #CD2E2D;
            color: white;
            padding: 16px 32px;
            gap: 15px;
            font-weight: 700;
            font-size: 24px;
            -webkit-transition: .4s ease;
            transition: .4s ease;
        }

    section.hero .wrapper .hero-right {
        width: 55%;
        min-height: 500px;
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        z-index: 5;
    }

        section.hero .wrapper .hero-right .image {
            width: 577px;
            margin-right: 10px;
        }

            section.hero .wrapper .hero-right .image img {
                width: 100%;
                -webkit-user-drag: none;
                -webkit-user-select: none;
                -moz-user-select: none;
                -ms-user-select: none;
                user-select: none;
            }

        section.hero .wrapper .hero-right .vector {
            position: absolute;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            height: 500px;
            z-index: -1;
        }

            section.hero .wrapper .hero-right .vector img {
                height: 100%;
                -webkit-user-drag: none;
            }

    section.hero.home {
        background-image: url(../images/hero-backgrounf.jpg);
    }

@media (min-width: 992px) {
    section.hero .wrapper {
        z-index: 10;
        position: relative;
    }

        section.hero .wrapper .hero-left a.detail-btn:hover {
            -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
        }

    section.hero.home {
        background-size: 130%;
    }

        section.hero.home .wrapper {
            -webkit-transform: translateX(69px);
            transform: translateX(69px);
            z-index: 10;
            position: relative;
        }

            section.hero.home .wrapper .hero-left a.detail-btn:hover {
                -webkit-transform: translateY(-5px);
                transform: translateY(-5px);
            }
}

@media (max-width: 991px) {
    section.hero {
        background-position: left;
    }

        section.hero::after {
            width: 100%;
        }

        section.hero .wrapper {
            -webkit-box-orient: vertical;
            -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
        }

            section.hero .wrapper .hero-left,
            section.hero .wrapper .hero-right {
                width: 100% !important;
            }
}

@media (max-width: 768px) {
    section.hero {
        padding: 60px 0;
    }

        section.hero .wrapper .hero-left {
            margin-top: -50px;
        }

            section.hero .wrapper .hero-left h2 {
                font-size: 34px;
            }

            section.hero .wrapper .hero-left p {
                font-size: 24px;
            }

            section.hero .wrapper .hero-left a.detail-btn {
                padding: 8px 16px;
                font-size: 18px;
            }
}

@media (max-width: 576px) {
    section.hero {
        background-position: -181px center;
    }

        section.hero .wrapper .hero-left {
            margin-top: 0;
        }

            section.hero .wrapper .hero-left h2 {
                font-weight: 700;
                font-size: 24px;
            }

            section.hero .wrapper .hero-left p {
                font-weight: 400;
                font-size: 16px;
                line-height: 150%;
            }

            section.hero .wrapper .hero-left a.detail-btn {
                padding: 8px 16px;
                font-size: 18px;
            }

        section.hero .wrapper .hero-right {
            min-height: 320px;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
        }

            section.hero .wrapper .hero-right .vector {
                height: auto;
                width: 100%;
                max-width: 250px;
                margin: 0 auto;
            }

                section.hero .wrapper .hero-right .vector img {
                    height: auto;
                    width: 100%;
                }

            section.hero .wrapper .hero-right .image {
                width: 100%;
                max-width: 370px;
                margin: 0 auto;
            }
}

section.turnOn {
    padding: 90px 0 150px;
}

    section.turnOn .wrapper .title {
        width: 100%;
        margin-bottom: 100px;
    }

        section.turnOn .wrapper .title h2 {
            text-align: center;
            font-weight: 700;
            font-size: 34px;
            color: #CD2E2D;
            letter-spacing: 0.0175em;
        }

    section.turnOn .wrapper ul.box-items {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 104px;
        width: 100%;
    }

        section.turnOn .wrapper ul.box-items li.item {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            width: 48px;
        }

            section.turnOn .wrapper ul.box-items li.item .icon {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                width: -webkit-fit-content;
                width: -moz-fit-content;
                width: fit-content;
                margin-bottom: 16px;
            }

            section.turnOn .wrapper ul.box-items li.item span {
                font-weight: 600;
                font-size: 14px;
                text-transform: uppercase;
                white-space: nowrap;
                color: #4B5569;
            }

@media (max-width: 991px) {
    section.turnOn .wrapper {
        width: 100%;
        max-width: 430px;
        margin: 0 auto;
    }

        section.turnOn .wrapper .title {
            margin-bottom: 60px;
        }

            section.turnOn .wrapper .title h2 {
                font-weight: 700;
                font-size: 24px;
            }

        section.turnOn .wrapper ul.box-items {
            gap: 23px;
        }

            section.turnOn .wrapper ul.box-items li.item {
                width: 90px;
            }
}

@media (max-width: 576px) {
    section.turnOn .wrapper ul.box-items {
        gap: 7px;
        row-gap: 30px;
    }

        section.turnOn .wrapper ul.box-items li.item {
            width: 77px;
        }

            section.turnOn .wrapper ul.box-items li.item .icon {
                margin-bottom: 7px;
            }

                section.turnOn .wrapper ul.box-items li.item .icon svg {
                    width: 32px;
                    height: 32px;
                }

            section.turnOn .wrapper ul.box-items li.item span {
                font-weight: 400;
                font-size: 10px;
            }
}

section.recommended-products {
    background-color: #F2F5FA;
    padding: 180px 0 85px;
}

    section.recommended-products .wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 25px;
    }

        section.recommended-products .wrapper .head {
            width: 100%;
            background-color: #4B5569;
            padding: 10px 15px;
            border-radius: 5px;
        }

            section.recommended-products .wrapper .head h3 {
                font-weight: 700;
                font-size: 24px;
                color: #F2F5FA;
                line-height: 100%;
            }

        section.recommended-products .wrapper .products1 {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            height: 480px;
            width: 100%;
        }

            section.recommended-products .wrapper .products1 .banner {
                width: calc(67.73% - 24px);
                height: 100%;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                background-color: white;
                background-repeat: no-repeat;
                background-size: 100% auto;
                background-position: center;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                justify-content: space-between;
                padding: 0 65px;
                position: relative;
                border-radius: 10px;
                overflow: hidden;
            }

                section.recommended-products .wrapper .products1 .banner::after {
                    content: "";
                    background: -webkit-gradient(linear, left top, right top, color-stop(-8.79%, #3b4d67c2), color-stop(95.83%, rgba(63, 81, 107, 0.12)));
                    background: linear-gradient(90deg, #3b4d67c2 -8.79%, rgba(63, 81, 107, 0.12) 95.83%);
                    position: absolute;
                    left: 0;
                    top: 0;
                    width: 100%;
                    height: 100%;
                    -webkit-backdrop-filter: blur(1px);
                    backdrop-filter: blur(1px);
                    z-index: 0;
                }

                section.recommended-products .wrapper .products1 .banner.banner1 {
                    /*background-image: url(../images/banner-backgorund.jpg);*/
                }

                section.recommended-products .wrapper .products1 .banner.banner2 {
                    /* background-image: url(../images/banner-backgorund1.jpg);*/
                }

                section.recommended-products .wrapper .products1 .banner .content {
                    color: white;
                    z-index: 3;
                }

                    section.recommended-products .wrapper .products1 .banner .content a.brand {
                        color: white;
                        font-weight: 300;
                        font-size: 24px;
                        display: inline-block;
                        line-height: 100%;
                        padding-bottom: 15px;
                    }

                        section.recommended-products .wrapper .products1 .banner .content a.brand span {
                            font-weight: 700;
                        }

                    section.recommended-products .wrapper .products1 .banner .content p#desc {
                        max-width: 150px;
                        margin-right: auto;
                        font-weight: 400;
                        font-size: 16px;
                        padding-bottom: 70px;
                    }

                    section.recommended-products .wrapper .products1 .banner .content div#desc {
                        max-width: 150px;
                        margin-right: auto;
                        font-weight: 400;
                        font-size: 16px;
                        padding-bottom: 70px;
                    }

                    section.recommended-products .wrapper .products1 .banner .content a.details-btn {
                        padding: 8px 16px;
                        background-color: #CD2E2D;
                        color: white;
                        font-weight: 700;
                    }

                section.recommended-products .wrapper .products1 .banner .thumb {
                    z-index: 3;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                }

                    section.recommended-products .wrapper .products1 .banner .thumb img {
                        height: 100%;
                        max-height: 230px;
                    }

            section.recommended-products .wrapper .products1 .product-boxes {
                width: 32.27%;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                -ms-flex-direction: column;
                flex-direction: column;
                gap: 24px;
            }

        section.recommended-products .wrapper .product0a {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            padding: 24px;
            height: 50%;
            background-color: white;
            border: 1px solid #4B5569;
            -webkit-box-shadow: 0px 8.59375px 42.9688px rgba(51, 51, 51, 0.1);
            box-shadow: 0px 8.59375px 42.9688px rgba(51, 51, 51, 0.1);
            border-radius: 10px;
        }

            section.recommended-products .wrapper .product0a .content {
                width: 55%;
                padding-right: 35px;
            }

                section.recommended-products .wrapper .product0a .content h3 {
                    font-weight: 700;
                    font-size: 24px;
                    color: #4B5569;
                }

                section.recommended-products .wrapper .product0a .content p {
                    font-weight: 400;
                    font-size: 16px;
                    color: #626E7A;
                    padding-bottom: 25px;
                    display: inline-block;
                    width: 170px;
                }

                section.recommended-products .wrapper .product0a .content a.details-btn {
                    padding: 8px 16px;
                    background-color: #CD2E2D;
                    color: white;
                }

            section.recommended-products .wrapper .product0a .thumb {
                width: 45%;
                height: 100%;
                display: -webkit-inline-box;
                display: -ms-inline-flexbox;
                display: inline-flex;
            }

                section.recommended-products .wrapper .product0a .thumb img {
                    width: 100%;
                    -o-object-fit: contain;
                    object-fit: contain;
                    margin: 0 auto;
                    display: block;
                    -webkit-filter: drop-shadow(0px 10.5507px 21.1014px rgba(51, 51, 51, 0.137));
                    filter: drop-shadow(0px 10.5507px 21.1014px rgba(51, 51, 51, 0.137));
                }

        section.recommended-products .wrapper .products2 {
            -webkit-box-orient: horizontal;
            -webkit-box-direction: reverse;
            -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
        }

        section.recommended-products .wrapper .products3 {
            height: -webkit-fit-content !important;
            height: -moz-fit-content !important;
            height: fit-content !important;
        }

            section.recommended-products .wrapper .products3 .product-boxes {
                -webkit-box-orient: horizontal;
                -webkit-box-direction: normal;
                -ms-flex-direction: row;
                flex-direction: row;
                width: 100%;
            }

                section.recommended-products .wrapper .products3 .product-boxes .product0a {
                    height: 100%;
                    max-width: 32%;
                }

        section.recommended-products .wrapper .bottom {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: end;
            -ms-flex-pack: end;
            justify-content: flex-end;
        }

            section.recommended-products .wrapper .bottom a.seeAll-btn {
                padding: 12px 24px;
                border: 2px solid #4B5569;
                color: #4B5569;
                line-height: 100%;
                font-weight: 800;
                font-size: 20px;
                margin-left: auto;
                margin-right: 0;
            }

                section.recommended-products .wrapper .bottom a.seeAll-btn svg {
                    margin-left: 15px;
                }

    section.recommended-products img {
        -webkit-user-drag: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

@media (min-width: 992px) {
    .desktop-hide {
        display: none !important;
    }
}

@media (max-width: 991px) {
    section.recommended-products .wrapper .products1 {
        display: none;
        height: -webkit-fit-content !important;
        height: -moz-fit-content !important;
        height: fit-content !important;
    }

    section.recommended-products .products-mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        width: 100%;
        gap: 4%;
        row-gap: 24px;
    }

        section.recommended-products .products-mobile .product0a {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            height: auto;
            width: 30%;
            padding: 25px 20px;
            border-radius: 5px;
            -webkit-box-orient: vertical;
            -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
            border: unset;
            overflow: hidden;
            position: relative;
        }

            section.recommended-products .products-mobile .product0a::after {
                content: "";
                width: 100%;
                height: 8px;
                background-color: #4B5569;
                position: absolute;
                top: 0;
                left: 0;
            }

            section.recommended-products .products-mobile .product0a .thumb {
                width: 100%;
                margin-bottom: 20px;
            }

            section.recommended-products .products-mobile .product0a .content {
                width: 100%;
                padding: 0;
            }

                section.recommended-products .products-mobile .product0a .content a.details-btn {
                    width: 100%;
                    line-height: 22px;
                }
}

@media (max-width: 768px) {
    section.recommended-products {
        padding: 20px 0;
    }

        section.recommended-products .wrapper .head {
            background-color: unset;
            padding: 0;
        }

            section.recommended-products .wrapper .head h3 {
                font-size: 20px;
                color: #4B5569;
            }

        section.recommended-products .wrapper .products-mobile .product0a {
            width: 48%;
        }
}

@media (max-width: 576px) {
    section.recommended-products .wrapper .products-mobile .product0a {
        width: 100%;
        padding: 25px 20px;
        padding-right: 12px;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.12);
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.12);
    }

        section.recommended-products .wrapper .products-mobile .product0a::after {
            top: unset;
            left: 0;
            width: 4px;
            height: 100%;
            background-color: #CD2E2D;
        }

        section.recommended-products .wrapper .products-mobile .product0a::before {
            content: "";
            top: unset;
            position: absolute;
            right: 0;
            width: 70px;
            height: 106%;
            background-color: #4B5569;
        }

        section.recommended-products .wrapper .products-mobile .product0a .content {
            width: 60%;
        }

            section.recommended-products .wrapper .products-mobile .product0a .content a.details-btn {
                display: initial;
            }

            section.recommended-products .wrapper .products-mobile .product0a .content h3 {
                padding-bottom: 10px;
            }

            section.recommended-products .wrapper .products-mobile .product0a .content p {
                padding: 0;
            }

        section.recommended-products .wrapper .products-mobile .product0a .thumb {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            width: 40%;
            height: 70px;
            margin: 0;
            margin-right: 10px;
        }

            section.recommended-products .wrapper .products-mobile .product0a .thumb img {
                height: 115%;
                width: -webkit-fit-content;
                width: -moz-fit-content;
                width: fit-content;
                margin-left: auto;
                margin-right: 0;
            }
}

section.function-products {
    padding: 150px 0;
}

    section.function-products .wrapper .head {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        background-color: #4B5569;
        padding: 10px 15px;
        padding-right: 30px;
        border-radius: 5px;
        width: 100%;
        -webkit-box-shadow: 0px 8px 43px rgba(0, 0, 0, 0.25);
        box-shadow: 0px 8px 43px rgba(0, 0, 0, 0.25);
        margin-bottom: 20px;
    }

        section.function-products .wrapper .head h3 {
            color: white;
            font-weight: 700;
            font-size: 24px;
            color: #F2F5FA;
            line-height: 100%;
        }

        section.function-products .wrapper .head .arrows {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            gap: 18px;
        }

            section.function-products .wrapper .head .arrows div {
                cursor: pointer;
            }

    section.function-products .wrapper .slider {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        overflow: hidden;
    }

    section.function-products .wrapper .slick-list {
        margin: 0 -15px;
    }

        section.function-products .wrapper .slick-list .slick-slide {
            margin: 0 15px;
        }

    section.function-products .wrapper .product0a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        background-color: gainsboro;
        border-radius: 10px;
        overflow: hidden;
        margin-bottom: 10px;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        -webkit-box-shadow: 0px 4px 8px rgba(40, 40, 40, 0.27);
        box-shadow: 0px 4px 8px rgba(40, 40, 40, 0.27);
    }

        section.function-products .wrapper .product0a .title {
            background-color: #4B5569;
            color: white;
            padding: 2px 15px;
            font-weight: 400;
            font-size: 16px;
        }

        section.function-products .wrapper .product0a .thumb {
            padding: 15px;
            margin-bottom: 10px;
            height: 180px;
        }

            section.function-products .wrapper .product0a .thumb img {
                width: 100%;
            }

        section.function-products .wrapper .product0a .content {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-box-flex: 1;
            -ms-flex-positive: 1;
            flex-grow: 1;
            padding: 0 13px 20px;
        }

            section.function-products .wrapper .product0a .content h3 {
                height: 62px;
                overflow: hidden;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                justify-content: center;
                text-align: center;
                font-weight: 600;
                font-size: 16px;
            }

            section.function-products .wrapper .product0a .content span {
                color: #626E7A;
                text-align: center;
                margin-top: 4px;
                display: inline-block;
            }

                section.function-products .wrapper .product0a .content span.product-code {
                    font-weight: 400;
                    font-size: 10px;
                }

                section.function-products .wrapper .product0a .content span.id {
                    font-weight: 400;
                    font-size: 12px;
                    margin-bottom: auto;
                }

            section.function-products .wrapper .product0a .content a.details-btn {
                margin-top: 10px;
                width: 100%;
                background-color: #CD2E2D;
                color: white;
                padding: 8px 16px;
            }

    section.function-products .wrapper a.seeAll-btn {
        border: 2px solid #4B5569;
        color: #4B5569;
        padding: 12px 24px;
        font-weight: 800;
        font-size: 20px;
        margin-left: auto;
        margin-right: 0;
    }

        section.function-products .wrapper a.seeAll-btn svg {
            margin-left: 15px;
        }

@media (max-width: 991px) {
    section.function-products .wrapper .slider .slick-slide .product0a .content {
        padding: 0 10px 15px;
    }

        section.function-products .wrapper .slider .slick-slide .product0a .content h3 {
            font-size: 14px !important;
        }
}

@media (max-width: 768px) {
    section.function-products .wrapper .slider .slick-slide .product0a .content {
        padding: 0 10px 15px;
    }

        section.function-products .wrapper .slider .slick-slide .product0a .content h3 {
            font-size: 14px !important;
        }

    section.function-products .wrapper .slider .slick-slide .product0a .thumb {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
    }

    section.function-products .wrapper a.seeAll-btn svg {
        margin-left: 15px;
    }
}

@media (max-width: 576px) {
    section.function-products .wrapper a.seeAll-btn {
        border: 2px solid #CD2E2D;
        color: #CD2E2D;
        width: 100%;
    }

        section.function-products .wrapper a.seeAll-btn svg {
            display: none;
            background-color: white;
        }

            section.function-products .wrapper a.seeAll-btn svg path {
                color: #CD2E2D;
                fill: currentColor;
            }
}

section.featured-product {
    background-color: #F2F5FA;
    padding: 80px 0;
}

    section.featured-product .wrapper .left-col,
    section.featured-product .wrapper .right-col {
        width: 50%;
    }

    section.featured-product .wrapper .left-col {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

        section.featured-product .wrapper .left-col h3 {
            color: #CD2E2D;
            font-weight: 700;
            font-size: 34px;
            padding-bottom: 10px;
        }

        section.featured-product .wrapper .left-col h4 {
            color: #31373D;
            font-weight: 500;
            font-size: 20px;
            padding-bottom: 15px;
        }

            section.featured-product .wrapper .left-col h4 span {
                font-weight: 800;
            }

        section.featured-product .wrapper .left-col p {
            color: #31373D;
            font-weight: 400;
            font-size: 16px;
            padding-bottom: 50px;
        }

        section.featured-product .wrapper .left-col a.details-btn {
            border: 1px solid #CD2E2D;
            color: #CD2E2D;
            padding: 8px 16px;
            font-weight: 600;
            font-size: 16px;
            -webkit-transition: .5s ease;
            transition: .5s ease;
        }

            section.featured-product .wrapper .left-col a.details-btn:hover {
                -webkit-transform: translateY(-5px);
                transform: translateY(-5px);
                color: white;
            }

    section.featured-product .wrapper .right-col {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
    }

        section.featured-product .wrapper .right-col .image {
            z-index: 2;
            width: 100%;
            max-width: 440px;
        }

            section.featured-product .wrapper .right-col .image img {
                width: 100%;
                -webkit-filter: drop-shadow(8px 8px 52px rgba(92, 92, 92, 0.3));
                filter: drop-shadow(8px 8px 52px rgba(92, 92, 92, 0.3));
            }

        section.featured-product .wrapper .right-col .vector {
            position: absolute;
            right: 20px;
            top: -10px;
            width: 100%;
            max-width: 500px;
        }

            section.featured-product .wrapper .right-col .vector img {
                width: 100%;
            }

@media (min-width: 992px) {
    section.featured-product .wrapper .left-col {
        padding-right: 60px;
    }
}

@media (max-width: 991px) {
    section.featured-product .wrapper .left-col,
    section.featured-product .wrapper .right-col {
        width: 100%;
    }

    section.featured-product .wrapper .left-col {
        margin-bottom: 40px;
    }
}

@media (min-width: 769px) {
    section.featured-product .wrapper {
        margin: 0 100px;
    }
}

@media (max-width: 768px) {
    section.featured-product .wrapper .right-col {
        width: 100%;
        max-width: 230px;
        margin: 0 auto;
    }

        section.featured-product .wrapper .right-col .image {
            margin: 0 10px;
        }

        section.featured-product .wrapper .right-col .vector {
            width: 107%;
            right: -15px;
            top: -10px;
        }
}

section.product-features {
    padding: 150px 0;
}

    section.product-features .wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
    }

        section.product-features .wrapper .top {
            width: 100%;
            max-width: 650px;
            margin: 0 auto;
        }

            section.product-features .wrapper .top h2 {
                color: #CD2E2D;
                font-weight: 700;
                font-size: 34px;
                padding-bottom: 24px;
            }

            section.product-features .wrapper .top p {
                color: #31373D;
                font-weight: 400;
                font-size: 16px;
                padding-bottom: 24px;
                letter-spacing: 0.0175em;
            }

            section.product-features .wrapper .top .icon-box {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                justify-content: center;
                gap: 8px;
                margin-bottom: 24px;
            }

                section.product-features .wrapper .top .icon-box span {
                    font-weight: 400;
                    font-size: 16px;
                }

                section.product-features .wrapper .top .icon-box .icon {
                    width: 64px;
                    height: 64px;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    align-items: center;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    justify-content: center;
                    border-radius: 50%;
                    background: linear-gradient(135deg, #CD2E2D 0%, #BB275F 100%);
                }

                    section.product-features .wrapper .top .icon-box .icon span {
                        font-weight: 600;
                        color: #F2F5FA;
                    }

        section.product-features .wrapper .main {
            margin-bottom: 100px;
        }

            section.product-features .wrapper .main img {
                width: 100%;
                max-width: 470px;
                margin: 0 auto 24px;
            }

            section.product-features .wrapper .main p {
                font-weight: 600;
                font-size: 16px;
                color: #31373D;
            }

        section.product-features .wrapper ul.features-items {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            width: 100%;
            row-gap: 16px;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
        }

            section.product-features .wrapper ul.features-items li.item {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                gap: 8px;
            }

                section.product-features .wrapper ul.features-items li.item .icon {
                    background-color: #4B5569;
                    width: 64px;
                    height: 64px;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    align-items: center;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    justify-content: center;
                    border-radius: 50%;
                }

                section.product-features .wrapper ul.features-items li.item .content {
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-orient: vertical;
                    -webkit-box-direction: normal;
                    -ms-flex-direction: column;
                    flex-direction: column;
                    -webkit-box-align: start;
                    -ms-flex-align: start;
                    align-items: flex-start;
                    text-align: left;
                    color: #626E7A;
                    line-height: 110%;
                }

                    section.product-features .wrapper ul.features-items li.item .content h4 {
                        color: #626E7A;
                        font-weight: 400;
                        font-size: 16px;
                    }

                    section.product-features .wrapper ul.features-items li.item .content p {
                        font-weight: 600;
                        font-size: 12px;
                    }

@media (max-width: 768px) {
    section.product-features .wrapper ul.features-items {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    section.product-features .wrapper .top p {
        text-align: left;
    }

        section.product-features .wrapper .top p:first-child {
            padding-bottom: 20px;
        }

    section.product-features .wrapper .main {
        margin-bottom: 24px;
    }

    section.product-features .wrapper ul.features-items {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 20px;
    }

        section.product-features .wrapper ul.features-items li.item {
            width: 100%;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
        }

            section.product-features .wrapper ul.features-items li.item .content {
                width: 100%;
                max-width: 120px;
            }
}

footer.footer {
    background-color: #4B5569;
    padding: 110px 0 150px;
}

    footer.footer .wrapper .columns {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding-bottom: 35px;
        border-bottom: 1px solid #CCD5DE;
    }

        footer.footer .wrapper .columns .column {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
        }

            footer.footer .wrapper .columns .column.column-start {
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                -ms-flex-direction: column;
                flex-direction: column;
                width: 15%;
            }

                footer.footer .wrapper .columns .column.column-start a.logo {
                    width: 100%;
                    max-width: 180px;
                    margin-bottom: 24px;
                }

                    footer.footer .wrapper .columns .column.column-start a.logo svg {
                        width: 100%;
                    }

                footer.footer .wrapper .columns .column.column-start p#slogan {
                    font-weight: 400;
                    font-size: 22px;
                    color: #F5F5F5;
                }

            footer.footer .wrapper .columns .column.column-center {
                -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                justify-content: space-between;
                width: 30%;
                -webkit-box-align: start;
                -ms-flex-align: start;
                align-items: flex-start;
            }

                footer.footer .wrapper .columns .column.column-center ul#menu {
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-orient: vertical;
                    -webkit-box-direction: normal;
                    -ms-flex-direction: column;
                    flex-direction: column;
                    gap: 16px;
                }

                    footer.footer .wrapper .columns .column.column-center ul#menu li.nav-item a.nav-link {
                        color: white;
                        font-weight: 400;
                        font-size: 12px;
                        line-height: 100%;
                    }

                        footer.footer .wrapper .columns .column.column-center ul#menu li.nav-item a.nav-link:hover {
                            text-decoration: underline;
                        }

            footer.footer .wrapper .columns .column.column-end {
                width: 35%;
                -webkit-box-align: start;
                -ms-flex-align: start;
                align-items: flex-start;
                padding-left: 80px;
                border-left: 1px solid #CCD5DE;
            }

                footer.footer .wrapper .columns .column.column-end .contact {
                    width: 100%;
                    max-width: 150px;
                    margin-right: auto;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-orient: vertical;
                    -webkit-box-direction: normal;
                    -ms-flex-direction: column;
                    flex-direction: column;
                    -webkit-box-align: end;
                    -ms-flex-align: end;
                    align-items: flex-end;
                }

                    footer.footer .wrapper .columns .column.column-end .contact .icon {
                        width: 100%;
                        max-width: 100px;
                        margin-bottom: 26px;
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: flex;
                        -webkit-box-pack: end;
                        -ms-flex-pack: end;
                        justify-content: flex-end;
                    }

                    footer.footer .wrapper .columns .column.column-end .contact a {
                        font-weight: 400;
                        font-size: 16px;
                        color: white;
                        letter-spacing: 0.0175em;
                    }

                        footer.footer .wrapper .columns .column.column-end .contact a.mail {
                            padding-bottom: 16px;
                        }

                footer.footer .wrapper .columns .column.column-end .social-media {
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-orient: vertical;
                    -webkit-box-direction: normal;
                    -ms-flex-direction: column;
                    flex-direction: column;
                    gap: 35px;
                }

                    footer.footer .wrapper .columns .column.column-end .social-media a {
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: flex;
                    }

    footer.footer .wrapper p.copyright {
        padding: 10px 0;
        font-weight: 400;
        font-size: 10px;
        color: white;
        letter-spacing: 0.0175em;
    }

@media (max-width: 991px) {
    footer.footer {
        padding: 42px 0;
    }

        footer.footer .wrapper .columns .column.column-start {
            width: 25%;
        }

        footer.footer .wrapper .columns .column.column-center {
            width: 30%;
        }

        footer.footer .wrapper .columns .column.column-end {
            width: 40%;
            border-left: unset;
        }
}

@media (max-width: 768px) {
    footer.footer {
        padding: 42px 0;
    }

        footer.footer .wrapper .columns .column.column-start {
            width: 27%;
        }

            footer.footer .wrapper .columns .column.column-start p#slogan {
                font-size: 20px;
            }

        footer.footer .wrapper .columns .column.column-center {
            width: 30%;
        }

            footer.footer .wrapper .columns .column.column-center ul#menu a.nav-link {
                font-weight: 600;
                font-size: 10px !important;
            }

        footer.footer .wrapper .columns .column.column-end {
            border-left: unset;
            padding-left: 0;
        }

            footer.footer .wrapper .columns .column.column-end .contact {
                max-width: 110px;
                margin-right: 30px;
            }

                footer.footer .wrapper .columns .column.column-end .contact a {
                    font-size: 12px;
                }

                footer.footer .wrapper .columns .column.column-end .contact svg {
                    max-width: 70px;
                }
}

@media (max-width: 576px) {
    footer.footer {
        padding: 25px 0 0;
    }

        footer.footer .wrapper {
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
        }

            footer.footer .wrapper .columns {
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                -ms-flex-direction: column;
                flex-direction: column;
            }

                footer.footer .wrapper .columns .column {
                    width: 100% !important;
                }

                    footer.footer .wrapper .columns .column.column-start {
                        -webkit-box-align: center;
                        -ms-flex-align: center;
                        align-items: center;
                    }

                        footer.footer .wrapper .columns .column.column-start a.logo {
                            margin-bottom: 10px;
                            width: 140px;
                        }

                    footer.footer .wrapper .columns .column.column-center {
                        -webkit-box-pack: center;
                        -ms-flex-pack: center;
                        justify-content: center;
                        gap: 80px;
                    }

                        footer.footer .wrapper .columns .column.column-center ul#menu {
                            gap: 14px;
                            margin-top: 20px;
                        }

                            footer.footer .wrapper .columns .column.column-center ul#menu a.nav-link {
                                font-size: 12px !important;
                            }

                    footer.footer .wrapper .columns .column.column-end {
                        border-left: unset;
                        -webkit-box-orient: vertical;
                        -webkit-box-direction: normal;
                        -ms-flex-direction: column;
                        flex-direction: column;
                        gap: 20px;
                    }

                        footer.footer .wrapper .columns .column.column-end .contact {
                            max-width: 100%;
                            -webkit-box-align: center;
                            -ms-flex-align: center;
                            align-items: center;
                        }

                            footer.footer .wrapper .columns .column.column-end .contact .icon {
                                margin-bottom: 10px;
                                -webkit-box-pack: center;
                                -ms-flex-pack: center;
                                justify-content: center;
                            }

                        footer.footer .wrapper .columns .column.column-end .social-media {
                            -webkit-box-orient: horizontal;
                            -webkit-box-direction: normal;
                            -ms-flex-direction: row;
                            flex-direction: row;
                            -webkit-box-pack: center;
                            -ms-flex-pack: center;
                            justify-content: center;
                            width: 100%;
                        }

            footer.footer .wrapper p.copyright {
                text-align: center;
                padding: 24px 0;
            }
}

section.hero.products {
    background-image: url(../images/products-hero.jpg);
    background-position: center bottom;
    background-size: 100%;
}

    section.hero.products .wrapper {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

        section.hero.products .wrapper .hero-right .image {
            max-width: 450px;
        }

        section.hero.products .wrapper .hero-left a.detail-btn {
            padding: 10px 24px;
        }

            section.hero.products .wrapper .hero-left a.detail-btn span {
                font-size: 20px;
            }

        section.hero.products .wrapper .hero-left h2 {
            color: #31373D;
            font-size: 60px;
        }

        section.hero.products .wrapper .hero-left p {
            color: #31373D;
            font-size: 24px;
            line-height: 32px;
        }

    section.hero.products::after {
        display: none;
    }

    section.hero.products::before {
        background: #4B5569;
        mix-blend-mode: overlay;
        opacity: 0.7;
    }

@media (min-width: 992px) {
    section.hero.products {
        background-size: 107%;
    }

        section.hero.products .wrapper .hero-left {
            padding: 50px;
            padding-left: 100px;
        }
}

@media (max-width: 991px) {
    section.hero.products {
        background-size: cover;
    }

        section.hero.products .wrapper {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
        }
}

@media (max-width: 768px) {
    section.hero.products .wrapper .hero-right .vector {
        display: none;
    }

    section.hero.products .wrapper .hero-right .image {
        max-width: 350px;
        margin: 0 auto;
    }

    section.hero.products .wrapper .hero-left {
        margin-top: 0;
    }
}

section.recommended-products.products1 .wrapper .bottom a.seeAll-btn {
    width: 100%;
    border: 2px solid #CD2E2D;
    background-color: white;
}

    section.recommended-products.products1 .wrapper .bottom a.seeAll-btn span {
        color: #CD2E2D;
    }

    section.recommended-products.products1 .wrapper .bottom a.seeAll-btn svg path {
        color: #CD2E2D;
        fill: currentColor;
    }

section.exclusiveSeries {
    padding: 90px 0;
}

    section.exclusiveSeries .wrapper .head {
        width: 100%;
        padding: 15px 0;
    }

        section.exclusiveSeries .wrapper .head h3 {
            font-weight: 700;
            font-size: 24px;
            color: #CD2E2D;
        }

    section.exclusiveSeries .wrapper ul.product-boxes {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 24px;
    }

        section.exclusiveSeries .wrapper ul.product-boxes li.product {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: start;
            -ms-flex-align: start;
            align-items: flex-start;
            width: 32%;
            padding: 35px 24px;
            background: linear-gradient(135deg, #CD2E2D 0%, #554B69 100%);
            border-radius: 10px;
            -webkit-box-shadow: 0px 4px 18px rgba(71, 71, 71, 0.6);
            box-shadow: 0px 4px 18px rgba(71, 71, 71, 0.6);
        }

            section.exclusiveSeries .wrapper ul.product-boxes li.product .content {
                width: 55%;
                color: #F2F5FA;
            }

                section.exclusiveSeries .wrapper ul.product-boxes li.product .content h4 {
                    font-weight: 700;
                    font-size: 24px;
                }

                    section.exclusiveSeries .wrapper ul.product-boxes li.product .content h4 span {
                        font-weight: 300;
                    }

                section.exclusiveSeries .wrapper ul.product-boxes li.product .content p {
                    font-weight: 400;
                    font-size: 16px;
                    padding-bottom: 30px;
                }

                section.exclusiveSeries .wrapper ul.product-boxes li.product .content a.details-btn {
                    padding: 8px 16px;
                    background-color: #CD2E2D;
                    color: white;
                }

            section.exclusiveSeries .wrapper ul.product-boxes li.product .thumb {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                height: 100%;
                width: 45%;
            }

                section.exclusiveSeries .wrapper ul.product-boxes li.product .thumb img {
                    width: 100%;
                }

@media (min-width: 992px) {
    section.exclusiveSeries .wrapper ul.product-boxes li.product .content {
        padding-right: 30px;
    }
}

@media (max-width: 991px) {
    section.exclusiveSeries .wrapper ul.product-boxes {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

        section.exclusiveSeries .wrapper ul.product-boxes li.product {
            width: 48%;
        }
}

@media (max-width: 768px) {
    section.exclusiveSeries .wrapper ul.product-boxes {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

        section.exclusiveSeries .wrapper ul.product-boxes li.product {
            width: 47%;
        }

            section.exclusiveSeries .wrapper ul.product-boxes li.product .content h4 {
                font-size: 20px;
            }

            section.exclusiveSeries .wrapper ul.product-boxes li.product .content p {
                font-size: 14px;
                line-height: 24px;
            }
}

@media (max-width: 576px) {
    section.exclusiveSeries .wrapper ul.product-boxes {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 8px;
    }

        section.exclusiveSeries .wrapper ul.product-boxes li.product {
            width: 100%;
            border-radius: 5px;
            padding: 20px 20px;
            -webkit-box-shadow: unset;
            box-shadow: unset;
            background: linear-gradient(135deg, #CD2E2D 0%, #923B7E 100%);
        }

            section.exclusiveSeries .wrapper ul.product-boxes li.product .content p {
                font-size: 12px;
                padding: 0;
                line-height: 16px;
            }

            section.exclusiveSeries .wrapper ul.product-boxes li.product .content a {
                display: none;
            }

            section.exclusiveSeries .wrapper ul.product-boxes li.product .thumb {
                width: 45%;
                height: 50px;
                -webkit-box-pack: end;
                -ms-flex-pack: end;
                justify-content: flex-end;
            }

                section.exclusiveSeries .wrapper ul.product-boxes li.product .thumb img {
                    height: 70px;
                    width: -webkit-fit-content;
                    width: -moz-fit-content;
                    width: fit-content;
                }
}

section.function-products.other-products .wrapper .slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    overflow: visible;
}

section.function-products.other-products .wrapper .slide {
    position: relative;
    width: 25%;
}

    section.function-products.other-products .wrapper .slide .product0a {
        overflow: visible;
        border-radius: 10px;
        -webkit-box-shadow: 0px 8.59375px 42.9688px rgba(51, 51, 51, 0.1);
        box-shadow: 0px 8.59375px 42.9688px rgba(51, 51, 51, 0.1);
    }

        section.function-products.other-products .wrapper .slide .product0a::before {
            content: "";
            top: 0;
            left: 0;
            position: absolute;
            border-radius: 10px 10px 0px 0px;
            width: 100%;
            height: 100%;
            max-height: 120px;
            background-color: #F2F5FA;
            border-top: 8px solid #4B5569;
        }

    section.function-products.other-products .wrapper .slide .content {
        z-index: 1;
        padding: 0 30px 32px;
    }

        section.function-products.other-products .wrapper .slide .content h3 {
            -webkit-box-pack: start;
            -ms-flex-pack: start;
            justify-content: flex-start;
            height: 64px;
            font-size: 24px;
            text-align: left;
        }

        section.function-products.other-products .wrapper .slide .content span {
            text-align: left;
            padding-bottom: 30px;
        }

        section.function-products.other-products .wrapper .slide .content a.btn {
            width: -webkit-fit-content;
            width: -moz-fit-content;
            width: fit-content;
            margin: 0;
        }

    section.function-products.other-products .wrapper .slide .thumb {
        z-index: 1;
        margin-bottom: 0;
        padding: 40px 30px;
        height: 228px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

        section.function-products.other-products .wrapper .slide .thumb img {
            height: 100%;
            -o-object-fit: contain;
            object-fit: contain;
            -webkit-filter: drop-shadow(0px 2px 8px rgba(137, 128, 110, 0.61));
            filter: drop-shadow(0px 2px 8px rgba(137, 128, 110, 0.61));
        }

@media (max-width: 991px) {
    section.function-products.other-products .wrapper .slider {
        gap: 4%;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    section.function-products.other-products .wrapper .slide {
        width: 48%;
    }

        section.function-products.other-products .wrapper .slide .content a.btn {
            width: 100%;
        }
}

@media (max-width: 768px) {
    section.function-products.other-products .wrapper .head {
        background-color: unset;
        -webkit-box-shadow: unset;
        box-shadow: unset;
    }

        section.function-products.other-products .wrapper .head h3 {
            font-weight: 800;
            font-size: 16px;
            color: #4B5569;
        }
}

@media (max-width: 576px) {
    section.function-products.other-products .wrapper .head h3 {
        color: #CD2E2D;
    }

    section.function-products.other-products .wrapper .slider {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-column-gap: 8px;
        column-gap: 8px;
        row-gap: 30px;
    }

    section.function-products.other-products .wrapper .product0a {
        border-radius: 50% !important;
        height: 100%;
        position: relative;
    }

        section.function-products.other-products .wrapper .product0a::before {
            max-height: 50% !important;
            border-width: unset !important;
            background-color: #4B5569 !important;
        }

    section.function-products.other-products .wrapper .slide {
        width: 100%;
        max-width: 140px;
        height: 140px;
        -webkit-filter: drop-shadow(0px 4px 16px rgba(139, 155, 182, 0.6));
        filter: drop-shadow(0px 4px 16px rgba(139, 155, 182, 0.6));
    }

        section.function-products.other-products .wrapper .slide .content {
            padding: 10px 20px;
            padding-top: 6px;
        }

            section.function-products.other-products .wrapper .slide .content a.btn {
                display: none;
            }

            section.function-products.other-products .wrapper .slide .content span {
                display: none;
            }

            section.function-products.other-products .wrapper .slide .content h3 {
                font-weight: 400;
                font-size: 12px;
                line-height: 16px;
                height: -webkit-fit-content;
                height: -moz-fit-content;
                height: fit-content;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                justify-content: center;
            }

        section.function-products.other-products .wrapper .slide .thumb {
            height: 83px;
            padding: 20px;
            padding-bottom: 0;
        }
}

section.product-promo {
    padding: 0 0 120px;
}

    section.product-promo .wrapper {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        max-width: 580px;
        margin: 0 auto;
        gap: 50px;
    }

        section.product-promo .wrapper .content h3 {
            font-weight: 400;
            font-size: 28px;
            color: #31373D;
            padding-bottom: 30px;
        }

        section.product-promo .wrapper .content a.btn {
            padding: 8px 16px;
            color: white;
            background-color: #CD2E2D;
        }

        section.product-promo .wrapper .thumb img {
            width: 100%;
            max-width: 275px;
        }

@media (max-width: 991px) {
    section.product-promo .wrapper .content {
        text-align: left;
        max-width: 250px;
        margin: 0 auto;
    }

        section.product-promo .wrapper .content h3 {
            font-weight: 800;
            font-size: 24px;
            padding-bottom: 20px;
        }
}

@media (max-width: 576px) {
    section.product-promo .wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

        section.product-promo .wrapper .content,
        section.product-promo .wrapper .thumb {
            width: 100%;
        }

        section.product-promo .wrapper .content {
            text-align: center;
            max-width: 100%;
        }

            section.product-promo .wrapper .content h3 {
                font-size: 16px;
            }

            section.product-promo .wrapper .content a.btn {
                width: 100%;
                padding: 10px 20px;
                font-size: 20px;
                font-weight: 700;
            }

        section.product-promo .wrapper .thumb img {
            display: block;
            margin: 0 auto;
            max-width: 150px;
        }
}

section.hero.product-detail {
    padding-bottom: 200px;
    background-image: url(../images/hero-back1.jpg);
}

    section.hero.product-detail::before {
        background: #4B5569;
        mix-blend-mode: overlay;
    }

    section.hero.product-detail::after {
        display: none;
    }

    section.hero.product-detail .wrapper .hero-left {
        background-image: url(../images/bakgVector.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        margin-right: auto;
        max-width: 380px;
        min-height: 280px;
        padding: 40px;
        padding-right: 0;
        padding-bottom: 0;
    }

        section.hero.product-detail .wrapper .hero-left p {
            font-size: 24px;
            line-height: 32px;
        }

    section.hero.product-detail .wrapper .hero-right .image {
        max-width: 460px;
    }

@media (max-width: 991px) {
    section.hero.product-detail {
        padding: 60px 0;
    }

        section.hero.product-detail .wrapper .hero-left {
            padding: 65px;
            padding-bottom: 30px;
        }

            section.hero.product-detail .wrapper .hero-left h2 {
                font-size: 34px;
            }

            section.hero.product-detail .wrapper .hero-left p {
                font-size: 20px;
            }

        section.hero.product-detail .wrapper .hero-right .image {
            max-width: 400px;
        }
}

@media (max-width: 768px) {
    section.hero.product-detail .wrapper .hero-right {
        min-height: unset;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

        section.hero.product-detail .wrapper .hero-right .image {
            max-width: 240px;
        }

    section.hero.product-detail .wrapper .hero-left {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    section.hero.product-detail .wrapper .hero-right .image {
        max-width: 160px;
    }

    section.hero.product-detail .wrapper .hero-left {
        padding: 0;
        padding-left: 30px;
        padding-top: 40px;
        max-width: 210px;
        padding-right: 10px;
        min-height: 210px;
    }

        section.hero.product-detail .wrapper .hero-left h2 {
            font-size: 24px;
        }

        section.hero.product-detail .wrapper .hero-left p {
            font-size: 14px;
            line-height: 24px;
        }
}

.product-options {
    padding-bottom: 70px;
    overflow: visible;
    background-color: #F5F5F5;
}

    .product-options .wrapper {
        padding: 50px;
        background: #FFFFFF;
        -webkit-box-shadow: 0px 4px 32px rgba(108, 126, 153, 0.39);
        box-shadow: 0px 4px 32px rgba(108, 126, 153, 0.39);
        border-radius: 5px;
        z-index: 3;
        position: relative;
        margin-top: -100px;
    }

        .product-options .wrapper .head {
            padding: 0 0 40px;
            width: 100%;
        }

            .product-options .wrapper .head h3 {
                font-weight: 700;
                font-size: 24px;
                color: #31373D;
                line-height: 100%;
            }

        .product-options .wrapper .option {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            width: 100%;
            margin-bottom: 34px;
        }

            .product-options .wrapper .option .title {
                padding: 6px 8px;
                background-color: #F2F5FA;
                border-radius: 5px;
                margin-bottom: 16px;
            }

                .product-options .wrapper .option .title h4 {
                    font-weight: 800;
                    font-size: 16px;
                    color: #4B5569;
                }

            .product-options .wrapper .option img {
                -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
                box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
            }

            .product-options .wrapper .option ul.option-boxes {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                gap: 32px;
            }

                .product-options .wrapper .option ul.option-boxes li.box {
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-orient: vertical;
                    -webkit-box-direction: normal;
                    -ms-flex-direction: column;
                    flex-direction: column;
                    width: 14.2%;
                }

                    .product-options .wrapper .option ul.option-boxes li.box .thumb {
                        width: 100%;
                    }

                        .product-options .wrapper .option ul.option-boxes li.box .thumb img {
                            width: 100%;
                        }

                    .product-options .wrapper .option ul.option-boxes li.box .content {
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: flex;
                        -webkit-box-orient: vertical;
                        -webkit-box-direction: normal;
                        -ms-flex-direction: column;
                        flex-direction: column;
                        -webkit-box-align: center;
                        -ms-flex-align: center;
                        align-items: center;
                        text-align: center;
                        padding: 12px 0 0;
                    }

                        .product-options .wrapper .option ul.option-boxes li.box .content span {
                            color: #626E7A;
                        }

                            .product-options .wrapper .option ul.option-boxes li.box .content span#title {
                                font-weight: 400;
                                font-size: 14px;
                                padding-bottom: 8px;
                            }

                            .product-options .wrapper .option ul.option-boxes li.box .content span#color {
                                font-weight: 700;
                                font-size: 12px;
                            }

@media (max-width: 991px) {
    .product-options {
        background-color: white;
        padding: 100px 0;
    }

        .product-options .wrapper {
            padding: 0;
            margin-top: 0;
            -webkit-box-shadow: unset;
            box-shadow: unset;
        }

            .product-options .wrapper .head h3 {
                font-size: 24px;
            }

            .product-options .wrapper .option .title {
                padding: 6px 8px;
                border-radius: 5px;
                margin-bottom: 16px;
            }

                .product-options .wrapper .option .title h4 {
                    font-weight: 800;
                    font-size: 16px;
                }

            .product-options .wrapper .option ul.option-boxes {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
            }

                .product-options .wrapper .option ul.option-boxes li.box .content {
                    padding-top: 4px;
                }

                    .product-options .wrapper .option ul.option-boxes li.box .content span#title {
                        font-size: 12px;
                        padding-bottom: 2px;
                    }

                    .product-options .wrapper .option ul.option-boxes li.box .content span#color {
                        font-size: 11px;
                    }
}

@media (max-width: 576px) {
    .product-options {
        padding: 50px 0;
    }

        .product-options .wrapper .head h3 {
            font-size: 24px;
        }

        .product-options .wrapper .option .title {
            padding: 6px 8px;
            border-radius: 5px;
            margin-bottom: 16px;
        }

            .product-options .wrapper .option .title h4 {
                font-weight: 800;
                font-size: 16px;
            }

        .product-options .wrapper .option ul.option-boxes {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            -webkit-column-gap: 4%;
            column-gap: 4%;
        }

            .product-options .wrapper .option ul.option-boxes li.box {
                width: 48%;
            }

                .product-options .wrapper .option ul.option-boxes li.box .content {
                    padding-top: 4px;
                }

                    .product-options .wrapper .option ul.option-boxes li.box .content span#title {
                        font-size: 12px;
                        padding-bottom: 2px;
                    }

                    .product-options .wrapper .option ul.option-boxes li.box .content span#color {
                        font-size: 11px;
                    }
}

section.Functions {
    padding: 50px 0;
}

    section.Functions .wrapper .head {
        width: 100%;
        padding-bottom: 16px;
    }

        section.Functions .wrapper .head h3 {
            font-weight: 700;
            font-size: 24px;
            color: #4B5569;
        }

    section.Functions .wrapper ul.function-items {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

        section.Functions .wrapper ul.function-items .item {
            width: 100%;
        }

            section.Functions .wrapper ul.function-items .item .item-head {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                justify-content: space-between;
                padding: 25px 40px;
                background-color: #F2F5FA;
                -webkit-box-shadow: 0px 4px 10px rgba(53, 53, 53, 0.15);
                box-shadow: 0px 4px 10px rgba(53, 53, 53, 0.15);
                cursor: pointer;
                border: 1px solid transparent;
            }

                section.Functions .wrapper ul.function-items .item .item-head span {
                    font-weight: 800;
                    font-size: 20px;
                    color: #4B5569;
                }

                section.Functions .wrapper ul.function-items .item .item-head .icon {
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                }

                section.Functions .wrapper ul.function-items .item .item-head.open {
                    border: 1px solid #CD2E2D;
                }

                    section.Functions .wrapper ul.function-items .item .item-head.open span {
                        color: #CD2E2D;
                    }

                    section.Functions .wrapper ul.function-items .item .item-head.open .icon {
                        -webkit-transform: rotate(180deg);
                        transform: rotate(180deg);
                    }

                        section.Functions .wrapper ul.function-items .item .item-head.open .icon svg path {
                            color: #CD2E2D;
                            fill: currentColor;
                        }

            section.Functions .wrapper ul.function-items .item .item-body {
                display: none;
                margin: 16px 0;
            }

                section.Functions .wrapper ul.function-items .item .item-body .products {
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -ms-flex-wrap: wrap;
                    flex-wrap: wrap;
                    -webkit-column-gap: 2%;
                    column-gap: 2%;
                    row-gap: 16px;
                }

                    section.Functions .wrapper ul.function-items .item .item-body .products li.product {
                        width: 15%;
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: flex;
                        -webkit-box-orient: vertical;
                        -webkit-box-direction: normal;
                        -ms-flex-direction: column;
                        flex-direction: column;
                        border-radius: 5px;
                        background-color: #F2F5FA;
                        -webkit-box-shadow: 0px 4px 12px rgba(58, 76, 109, 0.38);
                        box-shadow: 0px 4px 12px rgba(58, 76, 109, 0.38);
                        border-bottom: 2px solid #CD2E2D;
                        overflow: hidden;
                    }

                        section.Functions .wrapper ul.function-items .item .item-body .products li.product .thumb {
                            width: 100%;
                            background-color: #4B5569;
                            padding: 15px;
                            display: -webkit-box;
                            display: -ms-flexbox;
                            display: flex;
                        }

                            section.Functions .wrapper ul.function-items .item .item-body .products li.product .thumb img {
                                width: 100%;
                                -webkit-box-shadow: 0px 4px 8px rgba(40, 40, 40, 0.27);
                                box-shadow: 0px 4px 8px rgba(40, 40, 40, 0.27);
                            }

                        section.Functions .wrapper ul.function-items .item .item-body .products li.product .content {
                            display: -webkit-box;
                            display: -ms-flexbox;
                            display: flex;
                            -webkit-box-orient: vertical;
                            -webkit-box-direction: normal;
                            -ms-flex-direction: column;
                            flex-direction: column;
                            padding: 3px 10px 20px;
                        }

                            section.Functions .wrapper ul.function-items .item .item-body .products li.product .content h4 {
                                font-weight: 600;
                                font-size: 16px;
                                color: #4B5569;
                                height: 52px;
                                display: -webkit-box;
                                display: -ms-flexbox;
                                display: flex;
                                -webkit-box-align: center;
                                -ms-flex-align: center;
                                align-items: center;
                                -webkit-box-pack: center;
                                -ms-flex-pack: center;
                                justify-content: center;
                                text-align: center;
                                padding-bottom: 4px;
                            }

                            section.Functions .wrapper ul.function-items .item .item-body .products li.product .content p#productId {
                                font-weight: 400;
                                font-size: 10px;
                                color: #4B5569;
                                text-align: center;
                                line-height: 160%;
                                margin-bottom: 10px;
                            }

                                section.Functions .wrapper ul.function-items .item .item-body .products li.product .content p#productId span {
                                    font-weight: 400;
                                    font-size: 12px;
                                }

                            section.Functions .wrapper ul.function-items .item .item-body .products li.product .content a.search {
                                background-color: #CD2E2D;
                                width: 32px;
                                height: 32px;
                                display: -webkit-box;
                                display: -ms-flexbox;
                                display: flex;
                                -webkit-box-align: center;
                                -ms-flex-align: center;
                                align-items: center;
                                -webkit-box-pack: center;
                                -ms-flex-pack: center;
                                justify-content: center;
                                border: unset;
                                border-radius: 50%;
                                margin: 0 auto;
                                -webkit-box-shadow: 0px 4px 27px rgba(38, 47, 67, 0.32);
                                box-shadow: 0px 4px 27px rgba(38, 47, 67, 0.32);
                            }

                                section.Functions .wrapper ul.function-items .item .item-body .products li.product .content a.search .icon {
                                    display: -webkit-box;
                                    display: -ms-flexbox;
                                    display: flex;
                                }

                                section.Functions .wrapper ul.function-items .item .item-body .products li.product .content a.search svg path {
                                    color: white;
                                    fill: currentColor;
                                }

@media (max-width: 991px) {
    section.Functions {
        padding: 50px 0;
    }

        section.Functions .wrapper ul.function-items .item {
            width: 100%;
        }

            section.Functions .wrapper ul.function-items .item .item-head {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
            }

            section.Functions .wrapper ul.function-items .item .item-body .products {
                -webkit-column-gap: 2%;
                column-gap: 2%;
                row-gap: 16px;
            }

                section.Functions .wrapper ul.function-items .item .item-body .products li.product {
                    width: 15%;
                }

                    section.Functions .wrapper ul.function-items .item .item-body .products li.product .content {
                        padding: 8px 6px;
                    }

                        section.Functions .wrapper ul.function-items .item .item-body .products li.product .content h4 {
                            font-size: 11px;
                            padding-bottom: 0;
                            height: 45px;
                        }

                        section.Functions .wrapper ul.function-items .item .item-body .products li.product .content p {
                            height: 20px;
                            overflow: hidden;
                            display: -webkit-box;
                            display: -ms-flexbox;
                            display: flex;
                            -webkit-box-orient: vertical;
                            -webkit-box-direction: normal;
                            -ms-flex-direction: column;
                            flex-direction: column;
                            -webkit-box-align: center;
                            -ms-flex-align: center;
                            align-items: center;
                            -webkit-box-pack: end;
                            -ms-flex-pack: end;
                            justify-content: flex-end;
                            white-space: nowrap;
                        }

                            section.Functions .wrapper ul.function-items .item .item-body .products li.product .content p span {
                                font-size: 10px !important;
                            }
}

@media (max-width: 768px) {
    section.Functions .container {
        padding: 0;
        max-width: unset;
    }

    section.Functions .wrapper .head h3 {
        padding: 0 15px;
        font-size: 20px;
    }

    section.Functions .wrapper ul.function-items .item .item-body {
        padding: 32px 0 10px;
    }

        section.Functions .wrapper ul.function-items .item .item-body .products {
            -webkit-column-gap: 2%;
            column-gap: 2%;
            row-gap: 16px;
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
            overflow-y: scroll;
            padding-bottom: 30px;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
        }

            section.Functions .wrapper ul.function-items .item .item-body .products::-webkit-scrollbar {
                display: none;
            }

            section.Functions .wrapper ul.function-items .item .item-body .products li.product {
                width: 100%;
                min-width: 140px;
                overflow: visible;
                position: relative;
            }

                section.Functions .wrapper ul.function-items .item .item-body .products li.product .content {
                    padding: 8px 6px 32px;
                }

                    section.Functions .wrapper ul.function-items .item .item-body .products li.product .content h4 {
                        font-size: 12px;
                        height: 32px;
                    }

                    section.Functions .wrapper ul.function-items .item .item-body .products li.product .content p {
                        display: none;
                    }

                    section.Functions .wrapper ul.function-items .item .item-body .products li.product .content button.search {
                        position: absolute;
                        z-index: 3;
                        margin: 0 auto;
                        bottom: -16px;
                        left: calc(50% - 16px);
                    }

                section.Functions .wrapper ul.function-items .item .item-body .products li.product:last-child {
                    margin-right: 15px;
                }

                section.Functions .wrapper ul.function-items .item .item-body .products li.product:first-child {
                    margin-left: 15px;
                }

    section.Functions .wrapper ul.function-items .item .item-head {
        padding: 18px 15px;
    }
}

section.ProductFunctionInformation .wrapper .head {
    margin-bottom: 40px;
    background-color: #F2F5FA;
    height: 82px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    width: 100%;
}

    section.ProductFunctionInformation .wrapper .head .wrapper {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        padding: 3px 15px;
        background-color: #F5F5F5;
        -webkit-box-shadow: 0px 2px 4px rgba(161, 198, 255, 0.87);
        box-shadow: 0px 2px 4px rgba(161, 198, 255, 0.87);
        border-radius: 5px;
        -webkit-transform: translateY(50%);
        transform: translateY(50%);
    }

        section.ProductFunctionInformation .wrapper .head .wrapper h4 {
            font-weight: 700;
            font-size: 24px;
            line-height: 100%;
            color: #4B5569;
        }

            section.ProductFunctionInformation .wrapper .head .wrapper h4 span {
                color: #CD2E2D;
            }

section.ProductFunctionInformation .wrapper .product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
}

    section.ProductFunctionInformation .wrapper .product .title {
        margin-bottom: 34px;
    }

        section.ProductFunctionInformation .wrapper .product .title h4 {
            font-weight: 800;
            font-size: 20px;
            color: #626E7A;
        }

    section.ProductFunctionInformation .wrapper .product .product-in {
        margin-bottom: 64px;
    }

        section.ProductFunctionInformation .wrapper .product .product-in .wrapper {
            max-width: 100%;
            margin: 0 auto;
        }

            section.ProductFunctionInformation .wrapper .product .product-in .wrapper .thumb {
                margin-right: auto;
                width: 100%;
            }

                section.ProductFunctionInformation .wrapper .product .product-in .wrapper .thumb img {
                    width: 100%;
                    -webkit-filter: drop-shadow(0px 4px 16px rgba(0, 0, 0, 0.2));
                    filter: drop-shadow(0px 4px 16px rgba(0, 0, 0, 0.2));
                }

            section.ProductFunctionInformation .wrapper .product .product-in .wrapper .content {
                width: calc(100% - 285px);
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                -ms-flex-direction: column;
                flex-direction: column;
                -webkit-box-align: start;
                -ms-flex-align: start;
                align-items: flex-start;
            }

                section.ProductFunctionInformation .wrapper .product .product-in .wrapper .content h3 {
                    font-weight: 800;
                    font-size: 20px;
                    line-height: 130%;
                    color: #CD2E2D;
                    padding-bottom: 16px;
                }

                section.ProductFunctionInformation .wrapper .product .product-in .wrapper .content span {
                    font-size: 16px;
                    color: #626E7A;
                    margin-bottom: 32px;
                }

                    section.ProductFunctionInformation .wrapper .product .product-in .wrapper .content span#info {
                        font-weight: 400;
                        height: 24px;
                    }

                    section.ProductFunctionInformation .wrapper .product .product-in .wrapper .content span#id {
                        font-weight: 800;
                    }

                section.ProductFunctionInformation .wrapper .product .product-in .wrapper .content .specifications h4 {
                    color: #626E7A;
                    font-weight: 800;
                    font-size: 20px;
                    padding-bottom: 40px;
                }

                section.ProductFunctionInformation .wrapper .product .product-in .wrapper .content .specifications ul {
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    align-items: center;
                    gap: 16px;
                }

                    section.ProductFunctionInformation .wrapper .product .product-in .wrapper .content .specifications ul li {
                        padding: 5px 10px;
                        background-color: #F2F5FA;
                        border-radius: 99px;
                    }

                        section.ProductFunctionInformation .wrapper .product .product-in .wrapper .content .specifications ul li span {
                            white-space: nowrap;
                            font-weight: 600;
                            font-size: 12px;
                            color: #4B5569;
                            letter-spacing: 0.0175em;
                            padding: 0;
                        }

    section.ProductFunctionInformation .wrapper .product .color-options {
        margin-bottom: 56px;
    }

        section.ProductFunctionInformation .wrapper .product .color-options .wrapper ul {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            gap: 16px;
        }

            section.ProductFunctionInformation .wrapper .product .color-options .wrapper ul li {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                padding-right: 16px;
                border-right: 1px solid #C4C4C4;
            }

                section.ProductFunctionInformation .wrapper .product .color-options .wrapper ul li .color {
                    width: 24px;
                    height: 24px;
                    border-radius: 50%;
                    background-position: center;
                    background-size: cover;
                    background-repeat: no-repeat;
                    margin-right: 8px;
                }

                section.ProductFunctionInformation .wrapper .product .color-options .wrapper ul li span {
                    font-weight: 600;
                    font-size: 16px;
                    color: #31373D;
                    padding-right: 4px;
                }

                section.ProductFunctionInformation .wrapper .product .color-options .wrapper ul li h5 {
                    font-weight: 400;
                    font-size: 16px;
                    color: #4B5569;
                    letter-spacing: 0.0175em;
                }

                section.ProductFunctionInformation .wrapper .product .color-options .wrapper ul li.White .color {
                    background-color: #F1ECE1;
                }

                section.ProductFunctionInformation .wrapper .product .color-options .wrapper ul li.Cream .color {
                    background-color: #E8DFCD;
                }

                section.ProductFunctionInformation .wrapper .product .color-options .wrapper ul li.Snowwhite .color {
                    background-color: #E9EDEA;
                }

                section.ProductFunctionInformation .wrapper .product .color-options .wrapper ul li.Black .color {
                    background-color: #424142;
                }

                section.ProductFunctionInformation .wrapper .product .color-options .wrapper ul li.Metallic-grey .color {
                    background-color: #D7DADB;
                }

                section.ProductFunctionInformation .wrapper .product .color-options .wrapper ul li.Fume .color {
                    background-color: #707370;
                }

                section.ProductFunctionInformation .wrapper .product .color-options .wrapper ul li.Titanium .color {
                    background-color: #D5CAB9;
                }

                section.ProductFunctionInformation .wrapper .product .color-options .wrapper ul li.Latte .color {
                    background-color: #B1A298;
                }

                section.ProductFunctionInformation .wrapper .product .color-options .wrapper ul li.Vantablack .color {
                    background-color: #0E0E10;
                }

                section.ProductFunctionInformation .wrapper .product .color-options .wrapper ul li.Ivory .color {
                    background-color: #F9F2E8;
                }

                section.ProductFunctionInformation .wrapper .product .color-options .wrapper ul li.Maple .color {
                    background-image: url(../images/maple.png);
                }

                section.ProductFunctionInformation .wrapper .product .color-options .wrapper ul li.White-oak .color {
                    background-image: url(../images/whiteoak.png);
                }

                section.ProductFunctionInformation .wrapper .product .color-options .wrapper ul li.Mahogany .color {
                    background-image: url(../images/mahogany.png);
                }

                section.ProductFunctionInformation .wrapper .product .color-options .wrapper ul li.New-cherry .color {
                    background-image: url(../images/newcherry.png);
                }

    section.ProductFunctionInformation .wrapper .product .bottom-info {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        z-index: 1;
    }

        section.ProductFunctionInformation .wrapper .product .bottom-info .wrapper {
            background-color: #FFCBBF;
            border-radius: 99px;
            padding: 10px 20px;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            width: -webkit-fit-content;
            width: -moz-fit-content;
            width: fit-content;
            gap: 7px;
        }

            section.ProductFunctionInformation .wrapper .product .bottom-info .wrapper p {
                font-weight: 400;
                font-size: 12px;
                color: #CD2E2D;
            }

                section.ProductFunctionInformation .wrapper .product .bottom-info .wrapper p#p2 {
                    font-weight: 400;
                    font-size: 16px;
                    color: #CD2E2D;
                }

                    section.ProductFunctionInformation .wrapper .product .bottom-info .wrapper p#p2 span {
                        color: white;
                        position: relative;
                        -webkit-box-align: center;
                        -ms-flex-align: center;
                        align-items: center;
                        -webkit-box-pack: center;
                        -ms-flex-pack: center;
                        justify-content: center;
                        display: -webkit-inline-box;
                        display: -ms-inline-flexbox;
                        display: inline-flex;
                        z-index: 1;
                    }

                        section.ProductFunctionInformation .wrapper .product .bottom-info .wrapper p#p2 span::after {
                            content: "";
                            width: 24px;
                            height: 24px;
                            background-color: #333333;
                            border-radius: 50%;
                            position: absolute;
                            z-index: -1;
                            top: 1px;
                        }

section.ProductFunctionInformation.product2 {
    overflow: visible;
    background-color: #F2F5FA;
    margin-top: -20px;
}

    section.ProductFunctionInformation.product2 .wrapper .head {
        background-color: #FAEAEA;
        height: 165px;
    }

    section.ProductFunctionInformation.product2 .wrapper .color-options {
        background-color: white;
        padding: 32px 0;
    }

@media (min-width: 769px) {
    section.ProductFunctionInformation {
        z-index: -1;
    }

        section.ProductFunctionInformation .wrapper .product .product-in .wrapper .thumb {
            max-width: 285px;
        }

        section.ProductFunctionInformation .wrapper .product .product-in .wrapper .content {
            padding-left: 124px;
        }
}

@media (max-width: 768px) {
    section.ProductFunctionInformation .wrapper .head .wrapper h4 {
        font-size: 16px;
        font-weight: 700;
    }

        section.ProductFunctionInformation .wrapper .head .wrapper h4 span {
            font-weight: 400;
        }

    section.ProductFunctionInformation .wrapper .product .title .wrapper h4 {
        font-size: 14px;
        font-weight: 600;
        color: #31373D;
    }

    section.ProductFunctionInformation .wrapper .product .product-in .wrapper {
        max-width: 100%;
    }

        section.ProductFunctionInformation .wrapper .product .product-in .wrapper .thumb,
        section.ProductFunctionInformation .wrapper .product .product-in .wrapper .content {
            max-width: 100%;
            width: 100%;
        }

        section.ProductFunctionInformation .wrapper .product .product-in .wrapper .thumb {
            margin-bottom: 40px;
        }

            section.ProductFunctionInformation .wrapper .product .product-in .wrapper .thumb img {
                max-width: 250px;
                margin: 0 auto;
                display: block;
            }

    section.ProductFunctionInformation .wrapper .product .color-options .wrapper {
        max-width: 580px;
        margin-right: auto;
    }

        section.ProductFunctionInformation .wrapper .product .color-options .wrapper ul {
            -webkit-column-gap: 8px;
            column-gap: 8px;
        }

            section.ProductFunctionInformation .wrapper .product .color-options .wrapper ul li {
                padding-right: 8px;
            }

                section.ProductFunctionInformation .wrapper .product .color-options .wrapper ul li .color {
                    width: 16px;
                    height: 16px;
                }

                section.ProductFunctionInformation .wrapper .product .color-options .wrapper ul li span, section.ProductFunctionInformation .wrapper .product .color-options .wrapper ul li h5 {
                    font-size: 12px;
                }

    section.ProductFunctionInformation .wrapper .product .color-options {
        background-color: #F2F5FA;
        padding: 8px 0;
        margin-bottom: 25px;
    }

        section.ProductFunctionInformation .wrapper .product .color-options .wrapper ul {
            -webkit-column-gap: 8px;
            column-gap: 8px;
        }

            section.ProductFunctionInformation .wrapper .product .color-options .wrapper ul li {
                margin-right: 8px;
                padding: 5px;
                border-radius: 99px;
                background-color: white;
                border-right: unset;
            }

                section.ProductFunctionInformation .wrapper .product .color-options .wrapper ul li .color {
                    width: 16px;
                    height: 16px;
                }

                section.ProductFunctionInformation .wrapper .product .color-options .wrapper ul li span, section.ProductFunctionInformation .wrapper .product .color-options .wrapper ul li h5 {
                    font-size: 12px;
                }

    section.function-products.product3 .wrapper a.seeAll-btn {
        display: none;
    }
}

@media (max-width: 576px) {
    section.ProductFunctionInformation .wrapper .product .color-options {
        background-color: #F2F5FA;
        padding: 8px 0;
        margin-bottom: 25px;
    }

        section.ProductFunctionInformation .wrapper .product .color-options .wrapper ul {
            -webkit-column-gap: 8px;
            column-gap: 8px;
        }

            section.ProductFunctionInformation .wrapper .product .color-options .wrapper ul li {
                margin-right: 8px;
                min-width: 25%;
                padding: 5px;
                border-radius: 99px;
                background-color: white;
                border-right: unset;
            }

                section.ProductFunctionInformation .wrapper .product .color-options .wrapper ul li .color {
                    width: 16px;
                    height: 16px;
                }

                section.ProductFunctionInformation .wrapper .product .color-options .wrapper ul li span, section.ProductFunctionInformation .wrapper .product .color-options .wrapper ul li h5 {
                    font-size: 12px;
                }

    section.ProductFunctionInformation .wrapper .product .bottom-info {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        background-color: #FFCBBF;
    }

        section.ProductFunctionInformation .wrapper .product .bottom-info .wrapper {
            border-radius: 0;
            height: 100%;
            width: 100%;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
        }

            section.ProductFunctionInformation .wrapper .product .bottom-info .wrapper p {
                font-size: 10px;
            }

                section.ProductFunctionInformation .wrapper .product .bottom-info .wrapper p:first-child {
                    padding-bottom: 5px;
                }

            section.ProductFunctionInformation .wrapper .product .bottom-info .wrapper span {
                padding-bottom: 5px;
            }

    section.ProductFunctionInformation .wrapper .product .product-in .wrapper .thumb img {
        max-width: 175px;
    }

    section.ProductFunctionInformation .wrapper .product .product-in .wrapper .content {
        max-width: 175px;
        margin: 0 auto;
    }

        section.ProductFunctionInformation .wrapper .product .product-in .wrapper .content h3 {
            font-size: 14px;
            font-weight: 600;
            padding-bottom: 10px;
        }

        section.ProductFunctionInformation .wrapper .product .product-in .wrapper .content span#info {
            font-weight: 400;
            font-size: 12px;
            height: 14px;
        }

        section.ProductFunctionInformation .wrapper .product .product-in .wrapper .content span#id {
            font-weight: 600;
            font-size: 12px;
            color: black;
            margin-bottom: 15px;
        }

        section.ProductFunctionInformation .wrapper .product .product-in .wrapper .content .specifications h4 {
            display: none;
        }

        section.ProductFunctionInformation .wrapper .product .product-in .wrapper .content .specifications ul {
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        }

            section.ProductFunctionInformation .wrapper .product .product-in .wrapper .content .specifications ul li span {
                font-size: 10px;
            }

    section.ProductFunctionInformation.product2 .wrapper .head {
        height: 72px;
    }

    section.ProductFunctionInformation.product2 .wrapper .product .product-in .content span#info {
        display: none;
    }
}

section.function-products.product3 {
    background-color: #F2F5FA;
}

@media (max-width: 991px) {
    section.function-products .wrapper .head,
    section.recommended-products .wrapper .head {
        padding: 0;
        background-color: unset;
        -webkit-box-shadow: unset;
        box-shadow: unset;
    }

        section.function-products .wrapper .head h3,
        section.recommended-products .wrapper .head h3 {
            font-size: 20px;
            color: #4B5569;
        }

        section.function-products .wrapper .head .arrows,
        section.recommended-products .wrapper .head .arrows {
            display: none;
        }

    section.recommended-products .wrapper .bottom a.btn {
        width: 100%;
        border: 2px solid #CD2E2D;
        color: #CD2E2D;
    }

        section.recommended-products .wrapper .bottom a.btn svg path {
            color: #CD2E2D;
            fill: currentColor;
        }
}

@media (max-width: 576px) {
    section.function-products,
    section.recommended-products {
        padding: 30px 0;
    }

        section.function-products .wrapper .head h3,
        section.recommended-products .wrapper .head h3 {
            font-size: 16px !important;
            font-weight: 800 !important;
            color: #CD2E2D !important;
        }

        section.function-products .wrapper .bottom a.btn,
        section.recommended-products .wrapper .bottom a.btn {
            width: 100%;
            border: 2px solid #CD2E2D;
            color: #CD2E2D;
        }

            section.function-products .wrapper .bottom a.btn svg path,
            section.recommended-products .wrapper .bottom a.btn svg path {
                color: #CD2E2D;
                fill: currentColor;
            }
}

section.contact-form {
    padding: 120px 0;
    background-color: #F2F5FA;
}

    section.contact-form .wrapper .left-col,
    section.contact-form .wrapper .right-col {
        width: 50%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

        section.contact-form .wrapper .left-col .head {
            padding: 4px 16px;
            margin-bottom: 52px;
        }

            section.contact-form .wrapper .left-col .head h3 {
                font-weight: 700;
                font-size: 24px;
                color: #4B5569;
            }

        section.contact-form .wrapper .left-col .social-media {
            width: 100%;
            position: absolute;
            bottom: 0;
            right: 0;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            width: -webkit-fit-content;
            width: -moz-fit-content;
            width: fit-content;
            gap: 36px;
            margin: 0 50px;
            padding: 10px 43px;
            border-radius: 5px;
            -webkit-transform: translateY(50%);
            transform: translateY(50%);
            background-color: white;
            border: 2px solid #CD2E2D;
            background-color: white;
            -webkit-box-shadow: 0px 4px 12px rgba(94, 106, 117, 0.48);
            box-shadow: 0px 4px 12px rgba(94, 106, 117, 0.48);
        }

            section.contact-form .wrapper .left-col .social-media li a {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
            }

                section.contact-form .wrapper .left-col .social-media li a svg {
                    width: 32px;
                }

        section.contact-form .wrapper .left-col .form {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            padding: 50px;
            padding-bottom: 94px;
            border-radius: 5px;
            position: relative;
            background-color: #F5F5F5;
            -webkit-box-shadow: 0px 4px 12px rgba(94, 106, 117, 0.48);
            box-shadow: 0px 4px 12px rgba(94, 106, 117, 0.48);
        }

            section.contact-form .wrapper .left-col .form .title {
                position: absolute;
                top: 0;
                -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
                background-color: white;
                padding: 5px 10px;
                border: 2px solid #CD2E2D;
                border-radius: 5px;
            }

                section.contact-form .wrapper .left-col .form .title h3 {
                    color: #CD2E2D;
                    font-weight: 700;
                    font-size: 24px;
                }

            section.contact-form .wrapper .left-col .form form {
                width: 100%;
                gap: 16px;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                -ms-flex-direction: column;
                flex-direction: column;
            }

                section.contact-form .wrapper .left-col .form form .form-element label {
                    display: inline-block;
                    margin-bottom: 4px;
                    font-weight: 400;
                    font-size: 16px;
                    color: #31373D;
                }

                section.contact-form .wrapper .left-col .form form .form-element input {
                    width: 100%;
                    height: 40px;
                    border: 1px solid #4B5569;
                    border-radius: 5px;
                }

                section.contact-form .wrapper .left-col .form form .form-element button.send-btn {
                    background: linear-gradient(135deg, #CD2E2D 0%, #923B7E 100%);
                    border-radius: 5px;
                    color: white;
                    border: none;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    align-items: center;
                    gap: 10px;
                    padding: 10px 26px;
                }

                    section.contact-form .wrapper .left-col .form form .form-element button.send-btn:hover {
                        -webkit-transform: scale(1.04);
                        transform: scale(1.04);
                    }

                    section.contact-form .wrapper .left-col .form form .form-element button.send-btn span {
                        font-weight: 700;
                        font-size: 20px;
                    }

                    section.contact-form .wrapper .left-col .form form .form-element button.send-btn path {
                        color: white;
                        fill: currentColor;
                    }

                section.contact-form .wrapper .left-col .form form .form-element textarea {
                    width: 100% !important;
                    height: 200px !important;
                }

    section.contact-form .wrapper .right-col {
        max-width: 385px;
        margin: 0 auto;
    }

        section.contact-form .wrapper .right-col .top {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            gap: 16px;
            margin-bottom: 53px;
        }

            section.contact-form .wrapper .right-col .top svg {
                width: 100%;
                max-width: 148px;
            }

            section.contact-form .wrapper .right-col .top a {
                display: -webkit-inline-box;
                display: -ms-inline-flexbox;
                display: inline-flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                gap: 10px;
            }

                section.contact-form .wrapper .right-col .top a svg {
                    width: 13px;
                }

                section.contact-form .wrapper .right-col .top a span {
                    font-weight: 700;
                    font-size: 24px;
                    color: #31373D;
                }

        section.contact-form .wrapper .right-col .image {
            margin-bottom: 54px;
        }

            section.contact-form .wrapper .right-col .image img {
                width: 100%;
                -webkit-filter: drop-shadow(0px 13px 20px rgba(0, 0, 0, 0.38));
                filter: drop-shadow(0px 13px 20px rgba(0, 0, 0, 0.38));
            }

        section.contact-form .wrapper .right-col ul.contact-info {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            -webkit-box-pack: start;
            -ms-flex-pack: start;
            justify-content: flex-start;
            -webkit-column-gap: 50px;
            column-gap: 50px;
            row-gap: 16px;
        }

            section.contact-form .wrapper .right-col ul.contact-info li.item {
                width: 100%;
                max-width: -webkit-fit-content;
                max-width: -moz-fit-content;
                max-width: fit-content;
            }

                section.contact-form .wrapper .right-col ul.contact-info li.item a {
                    display: -webkit-inline-box;
                    display: -ms-inline-flexbox;
                    display: inline-flex;
                    -webkit-box-align: start;
                    -ms-flex-align: start;
                    align-items: flex-start;
                    gap: 8px;
                }

                    section.contact-form .wrapper .right-col ul.contact-info li.item a svg {
                        width: 13px;
                        min-width: 13px;
                        margin-top: 4px;
                    }

                    section.contact-form .wrapper .right-col ul.contact-info li.item a span {
                        color: #31373D;
                        font-weight: 600;
                        font-size: 16px;
                    }

@media (max-width: 991px) {
    section.contact-form .wrapper .left-col,
    section.contact-form .wrapper .right-col {
        width: 100%;
    }

    section.contact-form .wrapper .left-col {
        margin-bottom: 150px;
    }
}

@media (max-width: 768px) {
    section.contact-form {
        padding: 60px 0;
    }

        section.contact-form .wrapper .left-col {
            margin-bottom: 50px;
        }

            section.contact-form .wrapper .left-col .head {
                margin-bottom: 24px;
            }

            section.contact-form .wrapper .left-col .form {
                padding: 54px 18px 72px;
            }

                section.contact-form .wrapper .left-col .form .title {
                    border: none;
                    -webkit-box-shadow: 0px 4px 8px rgba(139, 155, 182, 0.38);
                    box-shadow: 0px 4px 8px rgba(139, 155, 182, 0.38);
                }

                section.contact-form .wrapper .left-col .form .social-media {
                    margin: 0;
                    right: inherit;
                    padding: 8px 22px;
                    gap: 16px;
                }
}

section.about-hero {
    /*background-image: url(../images/bina-gorseli1.png);*/
    /* background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 60vh;
    position: relative;*/
    height: 60vh;
    position: relative;
    overflow: hidden;
}

    section.about-hero::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /*background: linear-gradient(135deg, #CD2E2D 0%, #554B69 100%);*/
        mix-blend-mode: hard-light;
        opacity: 0.49;
        z-index:-1;
    }

    section.about-hero .wrapper {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

        section.about-hero .wrapper p {
            margin-top: 115px;
            font-weight: 700;
            font-size: 34px;
            color: white;
            z-index: 1;
        }

    section.about-hero .top {
        width: 100%;
        height: 200px;
    }

    section.about-hero #polygon {
        width: 100%;
    }

.aboutUs {
    padding: 60px 0;
    /*padding: 128px 0;*/
}

    .aboutUs .wrapper .about-in {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
        margin-bottom: 110px;
    }

        .aboutUs .wrapper .about-in .left-col {
            width: 100%;
            /*max-width: 590px;*/
            margin-right: auto;
        }

            .aboutUs .wrapper .about-in .left-col h3 {
                font-weight: 700;
                font-size: 34px;
                color: #CD2E2D;
                padding-bottom: 14px;
            }

            .aboutUs .wrapper .about-in .left-col p {
                font-weight: 400;
                font-size: 16px;
                color: #31373D;
            }

        .aboutUs .wrapper .about-in .right-col {
            width: 50%;
            max-width: 460px;
            margin: 0 auto;
            margin-top: -6%;
        }

            .aboutUs .wrapper .about-in .right-col ul {
                width: 100%;
                border: 1px solid #F2F5FA;
            }

                .aboutUs .wrapper .about-in .right-col ul li {
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-pack: justify;
                    -ms-flex-pack: justify;
                    justify-content: space-between;
                    padding: 9px;
                    width: 100%;
                }

                    .aboutUs .wrapper .about-in .right-col ul li:nth-child(odd) {
                        background-color: #F3F8FF;
                    }

                    .aboutUs .wrapper .about-in .right-col ul li h5 {
                        color: #4B5569;
                        font-weight: 600;
                        font-size: 16px;
                        width: 50%;
                    }

                    .aboutUs .wrapper .about-in .right-col ul li span {
                        width: 50%;
                        font-weight: 400;
                        font-size: 16px;
                        color: #4B5569;
                    }

    .aboutUs .wrapper .statistics {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
    }

        .aboutUs .wrapper .statistics .left-col {
            width: 50%;
            max-width: 310px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            gap: 16px;
        }

            .aboutUs .wrapper .statistics .left-col .icon {
                width: 100%;
                max-width: 310px;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
            }

                .aboutUs .wrapper .statistics .left-col .icon svg {
                    width: 100%;
                    height: -webkit-fit-content;
                    height: -moz-fit-content;
                    height: fit-content;
                }

        .aboutUs .wrapper .statistics .right-col {
            width:100%;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            margin-right: auto;
            /*padding-left: 16px;*/
        }

            .aboutUs .wrapper .statistics .right-col p {
                font-weight: 400;
                font-size: 16px;
                color: #31373D;
                /*padding-left: 16px;*/
                /*max-width: 480px;*/
            }

            .aboutUs .wrapper .statistics .right-col .content {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                -ms-flex-direction: column;
                flex-direction: column;
                gap: 70px;
                padding: 40px 0;
                padding-right: 16px;
                border-right: 2px solid #D9D9D9;
            }

                .aboutUs .wrapper .statistics .right-col .content .item {
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    align-items: center;
                }

                    .aboutUs .wrapper .statistics .right-col .content .item span {
                        font-weight: 800;
                        font-size: 14px;
                        color: #31373D;
                        margin-right: 8px;
                    }

                    .aboutUs .wrapper .statistics .right-col .content .item h4 {
                        font-weight: 800;
                        font-size: 16px;
                        color: #31373D;
                        margin-right: 64px;
                    }

@media (max-width: 991px) {
    section.aboutUs .wrapper .about-in .left-col,
    section.aboutUs .wrapper .about-in .right-col,
    section.aboutUs .wrapper .statistics .left-col,
    section.aboutUs .wrapper .statistics .right-col {
        width: 100%;
        max-width: 100%;
    }

    section.aboutUs .wrapper .about-in {
        margin: 0 auto;
        margin-bottom: 64px;
        max-width: 496px;
    }

        section.aboutUs .wrapper .about-in .left-col {
            margin-bottom: 34px;
        }

            section.aboutUs .wrapper .about-in .left-col h3 {
                font-size: 24px;
            }

        section.aboutUs .wrapper .about-in .right-col {
            max-width: 410px;
        }

    section.aboutUs .wrapper .statistics .left-col {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-bottom: 64px;
    }

        section.aboutUs .wrapper .statistics .left-col .icon {
            margin: 0 auto;
        }

        section.aboutUs .wrapper .statistics .left-col .content {
            width: 100%;
        }

    section.aboutUs .wrapper .statistics .right-col .content .item span {
        font-size: 12px;
        white-space: nowrap;
    }

    section.aboutUs .wrapper .statistics .right-col .content .item h4 {
        font-size: 12px;
        margin-right: 16px;
    }

    section.aboutUs .wrapper .statistics .right-col p {
        padding-left: 24px;
    }

    section.about-hero .wrapper p {
        font-size: 24px;
        margin-top: 90px;
    }
}

@media (max-width: 576px) {
    section.aboutUs .wrapper .statistics .right-col {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 0;
    }

        section.aboutUs .wrapper .statistics .right-col .content {
            width: -webkit-fit-content;
            width: -moz-fit-content;
            width: fit-content;
            margin: 0 auto;
            padding: 20px 0;
            padding-right: 16px;
            margin-bottom: 34px;
        }

        section.aboutUs .wrapper .statistics .right-col p {
            padding: 0;
        }

    section.aboutUs .wrapper .about-in .left-col h3 {
        font-size: 16px;
        padding-bottom: 8px;
    }

    section.aboutUs .wrapper .about-in .left-col p {
        font-size: 14px;
    }

    section.about-hero .wrapper p {
        display: none;
    }
}

section.salesPoints {
    padding: 100px 0 130px;
    background-color: #F2F5FA;
}

    section.salesPoints .wrapper .head {
        margin-bottom: 64px;
    }

        section.salesPoints .wrapper .head h3 {
            font-weight: 700;
            font-size: 24px;
            color: #4B5569;
        }

    section.salesPoints .wrapper .image {
        width: 100%;
        margin-bottom: 64px;
    }

        section.salesPoints .wrapper .image img {
            width: 100%;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            -webkit-user-drag: none;
        }

    section.salesPoints .wrapper ul.countries {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-column-gap: 16px;
        column-gap: 16px;
        row-gap: 20px;
        width: 100%;
        max-width: 944px;
        margin: 0 auto;
    }

        section.salesPoints .wrapper ul.countries li {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: start;
            -ms-flex-align: start;
            align-items: flex-start;
            gap: 4px;
        }

            section.salesPoints .wrapper ul.countries li span {
                font-weight: 600;
                font-size: 12px;
                color: #31373D;
                line-height: 16px;
            }

            section.salesPoints .wrapper ul.countries li::before {
                content: "";
                background-color: #E89F9E;
                height: 8px;
                width: 8px;
                border-radius: 50%;
                margin-top: 3.6px;
                display: inline-block;
            }

@media (max-width: 991px) {
    section.salesPoints {
        padding: 30px 0;
        background-color: #F2F5FA;
    }

        section.salesPoints .wrapper .head h3 {
            font-size: 20px;
        }

        section.salesPoints .wrapper ul.countries {
            row-gap: 8px;
        }
}

@media (max-width: 576px) {
    section.salesPoints .wrapper .head h3 {
        font-size: 14px;
    }

    section.salesPoints .wrapper ul.countries {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

        section.salesPoints .wrapper ul.countries li {
            width: 30%;
        }
}

section.whyUs {
    padding: 100px 0 120px;
}

    section.whyUs .wrapper .head {
        margin-bottom: 16px;
    }

        section.whyUs .wrapper .head h3 {
            font-weight: 400;
            font-size: 34px;
            color: #CD2E2D;
        }

            section.whyUs .wrapper .head h3 span {
                font-weight: 700;
            }

    section.whyUs .wrapper .whyus-in {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

        section.whyUs .wrapper .whyus-in .left-col {
            width: 100%;
            max-width: 480px;
            padding-top: 16px;
        }

            section.whyUs .wrapper .whyus-in .left-col p {
                font-weight: 400;
                font-size: 16px;
                line-height: 24px;
            }

        section.whyUs .wrapper .whyus-in .right-col {
            width: calc(100% - 480px);
            padding-left: 56px;
        }

            section.whyUs .wrapper .whyus-in .right-col ul {
                border-top: 1px solid #E1E1E1;
            }

                section.whyUs .wrapper .whyus-in .right-col ul li {
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    align-items: center;
                    gap: 18px;
                    border-bottom: 1px solid #E1E1E1;
                    padding: 28px 0;
                }

                    section.whyUs .wrapper .whyus-in .right-col ul li svg {
                        width: 18px;
                    }

                    section.whyUs .wrapper .whyus-in .right-col ul li span {
                        font-weight: 600;
                        font-size: 16px;
                        color: #CD2E2D;
                    }

    section.whyUs .wrapper ul.faqs {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin: 0 auto;
        margin-top: 124px;
    }

        section.whyUs .wrapper ul.faqs li {
            display: block;
            width: -webkit-fit-content;
            width: -moz-fit-content;
            width: fit-content;
        }

            section.whyUs .wrapper ul.faqs li.question {
                display: block;
                z-index: 1;
            }

            section.whyUs .wrapper ul.faqs li .item-inner {
                width: 96px;
                height: 96px;
                border-radius: 50%;
                margin: 0 auto;
                -webkit-box-shadow: unset;
                box-shadow: unset;
                overflow: hidden;
            }

                section.whyUs .wrapper ul.faqs li .item-inner .content {
                    height: 100%;
                    width: 100%;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    align-items: center;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    justify-content: center;
                    padding: 8px;
                    text-align: center;
                    background: -webkit-gradient(linear, left top, left bottom, from(#286DD6), to(#8133FF));
                    background: linear-gradient(180deg, #286DD6 0%, #8133FF 100%);
                }

                    section.whyUs .wrapper ul.faqs li .item-inner .content span {
                        font-weight: 600;
                        font-size: 12px;
                        color: white;
                    }

                section.whyUs .wrapper ul.faqs li .item-inner .icon {
                    height: 100%;
                    width: 100%;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    align-items: center;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    justify-content: center;
                    background: linear-gradient(135deg, #CD2E2D 0%, #923B7E 100%);
                }

@media (min-width: 992px) {
    section.whyUs .wrapper ul.faqs {
        height: 96px;
        -webkit-transition: .29s ease;
        transition: .29s ease;
        overflow: hidden;
        position: relative;
        gap: 0;
    }

        section.whyUs .wrapper ul.faqs li {
            display: block;
            width: -webkit-fit-content;
            width: -moz-fit-content;
            width: fit-content;
        }

            section.whyUs .wrapper ul.faqs li.question {
                display: block;
                z-index: 1;
            }

            section.whyUs .wrapper ul.faqs li.item1 {
                position: absolute;
                left: 0;
            }

        section.whyUs .wrapper ul.faqs.open {
            width: 100%;
            gap: 64px;
        }

            section.whyUs .wrapper ul.faqs.open .item1 {
                position: inherit;
            }
}

@media (max-width: 991px) {
    section.whyUs {
        padding: 100px 0;
    }

        section.whyUs .wrapper .head {
            margin-bottom: 16px;
        }

        section.whyUs .wrapper .whyus-in .left-col {
            max-width: 100%;
            padding-top: 0;
            margin-bottom: 16px;
        }

        section.whyUs .wrapper .whyus-in .right-col {
            width: 100%;
            padding-left: 0;
        }

            section.whyUs .wrapper .whyus-in .right-col ul li {
                padding: 23px 0;
                gap: 11px;
            }

                section.whyUs .wrapper .whyus-in .right-col ul li svg {
                    min-width: 18px;
                }

        section.whyUs .wrapper ul.faqs {
            height: auto;
            overflow: visible;
            width: 100%;
            -webkit-column-gap: 2%;
            column-gap: 2%;
            row-gap: 40px;
        }

            section.whyUs .wrapper ul.faqs li {
                position: inherit;
            }

                section.whyUs .wrapper ul.faqs li:first-child {
                    width: 100%;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    justify-content: center;
                }

                section.whyUs .wrapper ul.faqs li:nth-child(2), section.whyUs .wrapper ul.faqs li:nth-child(3), section.whyUs .wrapper ul.faqs li:nth-child(4) {
                    width: 28%;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    justify-content: center;
                }
}

@media (max-width: 768px) {
    section.whyUs .wrapper ul.faqs {
        gap: 4%;
        row-gap: 24px;
    }

        section.whyUs .wrapper ul.faqs li:first-child {
            width: 100%;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
        }

        section.whyUs .wrapper ul.faqs li:nth-child(2), section.whyUs .wrapper ul.faqs li:nth-child(3), section.whyUs .wrapper ul.faqs li:nth-child(4), section.whyUs .wrapper ul.faqs li:nth-child(5) {
            width: 48%;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
        }
}

.icon:hover {
    opacity: 1 !important;
}

.turnlight .icon {
    opacity: 0.5;
}


.opac:hover a.nav-link {
    opacity: 0.5;
}

.opac a.nav-link:hover {
    opacity: 1;
}

ul.langmenu li {
    padding: 2px 10px;
    border-left: 1px solid #979797;
}

    ul.langmenu li a {
        color: #fff;
        font-size: 13px;
    }

    ul.langmenu li:first-child {
        border-left: 0;
    }

    ul.langmenu li a.active {
        background-color: red;
        border-radius: 25px;
        padding: 4px;
    }

ul.menudrop {
    position: absolute;
    background-color: #4b5569;
    display: none;
    left: 14px;
    top: 20px;
    width: 200px;
    padding-top: 40px;
}

.nav-item:hover ul.menudrop {
    display: initial;
}

ul.menudrop li {
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid #FFF;
    padding: 8px 15px;
}

    ul.menudrop li a {
        color: #fff;
        font-size: 17px;
    }

    ul.menudrop li:hover {
        background-color: #CD2E2D;
    }

.slide.slick-slide .content p {
    display: inline-block;
    height: 45px;
    overflow: hidden;
}

.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.alert-success {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

div.hero > div {
    background-size: cover;
}


a.btn.search {
    background-color: #CD2E2D;
    width: 32px;
    height: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: unset;
    border-radius: 50%;
    margin: 0 auto;
    -webkit-box-shadow: 0px 4px 27px rgba(38, 47, 67, 0.32);
    box-shadow: 0px 4px 27px rgba(38, 47, 67, 0.32);
}

.icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.content p {
    margin-bottom: 10px;
}

.ref-content {
    padding-right: 0px !important;
    text-align: center;
    width: 100% !important;
}

.reference {
    flex-direction: column-reverse;
    width: 25% !important;
}

    .reference .thumb img {
        max-height: 75px !important;
    }


@media (max-width: 576px) {
    section.recommended-products .wrapper .mobil-ref .mobil-referance::before {
        background-color: white;
    }
}

    /*@media (max-width: 991px) {
    section.recommended-products .wrapper .products1 {
        display: initial;
    }
}
*/



    /* ------------ sale poinst ------------------*/



.pl-locator a {
    cursor: pointer;
}

.pl-locator div, .pl-locator span {
    font-size: 16px;
    line-height: 25px;
}

@media (min-width:960px) {
    .pl-locator div, .pl-locator span {
        font-size: 16px;
        line-height: 25px;
    }
}

.relative {
    position: relative;
}

.mt-md {
    margin-top: 10px;
}

.mt-xs {
    margin-top: 2px;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.flex {
    display: flex;
}

.hidden {
    display: none;
}

.h-full {
    height: 100%;
}

.h-2xl {
    height: 25px;
}

.w-2xl {
    width: 25px;
}

.w-full {
    width: 100%;
}

.min-w-2xl {
    min-width: 25px;
}

.items-center {
    align-items: center;
}

.text-xl {
    font-size: 15px;
    line-height: 25px;
}

.font-bold {
    font-weight: 700;
}

.text-blue {
    --tw-text-opacity: 1;
    color: rgba(66,180,230,var(--tw-text-opacity));
}

.text-gray-dark {
    --tw-text-opacity: 1;
    color: rgba(98,100,105,var(--tw-text-opacity));
}

.ms-sm {
    -webkit-margin-start: 5px;
    margin-inline-start: 5px;
}

.pl-text-standard {
    font-size: 11px;
    line-height: 20px;
}

.pl-locator button {
    background-color: transparent;
    background-image: none;
}

.pl-locator *, .pl-locator :after, .pl-locator :before {
    box-sizing: border-box;
    border: 0 solid;
}

.pl-locator img {
    border-style: solid;
}

.pl-locator button {
    cursor: pointer;
}

.pl-locator :-moz-focusring {
    outline: auto;
}

.pl-locator a {
    text-decoration: inherit;
}

.pl-locator button {
    padding: 0;
    line-height: inherit;
    color: inherit;
}

.pl-locator img, .pl-locator svg {
    display: block;
    vertical-align: middle;
}

.pl-locator img {
    max-width: 100%;
    height: auto;
}

.pl-locator svg {
    max-width: 100%;
    max-height: 100%;
}

.js-focus-visible :focus:not(.focus-visible) {
    outline: none;
}

.hover\:underline:hover {
    text-decoration: underline;
}

@media (min-width:960px) {
    .lg\:block {
        display: block;
    }

    .lg\:hidden {
        display: none;
    }
}

button {
    position: relative;
    height: 40px;
    border-radius: 2px;
    font-size: 16px;
    line-height: 25px;
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.pl-locator button.pl-button-padding {
    -webkit-padding-start: 20px;
    padding-inline-start: 20px;
    -webkit-padding-end: 20px;
    padding-inline-end: 20px;
}

button.secondary {
    --tw-border-opacity: 1;
    border: 1px solid rgba(66,180,230,var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgba(255,255,255,var(--tw-bg-opacity));
    --tw-text-opacity: 1;
    color: rgba(66,180,230,var(--tw-text-opacity));
}

    button.secondary:hover:not(.disabled) {
        --tw-bg-opacity: 1;
        background-color: rgba(177,212,232,var(--tw-bg-opacity));
    }

    button.secondary:active:not(.disabled) {
        border-color: hsla(0,0%,100%,0);
        --tw-bg-opacity: 1;
        background-color: rgba(58,115,140,var(--tw-bg-opacity));
        --tw-text-opacity: 1;
        color: rgba(255,255,255,var(--tw-text-opacity));
    }

button .pl-button-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-decoration: none;
}

.pl-item {
    position: relative;
    margin-top: 20px;
    width: 100%;
}

.pl-ui-1-1 .pl-item {
    width: 50%;
}

.pl-link-no-underline {
    text-decoration: none !important;
}
/*! CSS Used from: Embedded */
.pl-icon-slot-available .pl-icon-slot {
    height: 25px;
    width: 25px;
    min-width: 25px;
    --tw-text-opacity: 1;
    color: rgba(66,180,230,var(--tw-text-opacity));
}

.pl-link-text {
    overflow-wrap: break-word;
}

.pl-icon-slot-available .pl-link-text {
    -webkit-padding-start: 5px;
    padding-inline-start: 5px;
}

.pl-link-main {
    position: relative;
    display: flex;
    -webkit-margin-end: auto;
    margin-inline-end: auto;
}

.pl-link-inner {
    display: flex;
    align-items: center;
    margin-left: 22%;
    width: 100%;
}

.pl-new-tab {
    height: 25px;
    width: 25px;
}

.pl-icon-slot {
    display: flex;
    align-items: center;
    justify-content: center;
}
/*! CSS Used from: Embedded */
.pl-contact {
    display: flex;
    flex-wrap: wrap;
}

.pl-contact-item:not(:last-child):after {
    --tw-bg-opacity: 1;
    background-color: rgba(98,100,105,var(--tw-bg-opacity));
    -webkit-margin-start: 10px;
    margin-inline-start: 10px;
    -webkit-margin-end: 10px;
    margin-inline-end: 10px;
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
}

.pl-contact-links-single-column .pl-contact-item:not(:last-child):after {
    display: none;
}

.pl-contact > div {
    display: flex;
    align-items: center;
}

.pl-contact.pl-contact-links-single-column {
    flex-direction: column;
}

.pl-link-icon {
    width: 15px;
    height: 15px;
    margin-left: 5px;
}
/*! CSS Used from: Embedded */
.pl-logo {
    max-width: 120px;
}

.pl-logo-container {
    display: flex;
    align-content: center;
    align-items: center;
    -webkit-padding-end: 20px;
    padding-inline-end: 20px;
    min-width: 140px;
    max-width: 140px;
}
/*! CSS Used from: Embedded */
.pl-item-main-outer {
    border-top-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgba(225,225,225,var(--tw-border-opacity));
}

    .pl-item-main-outer:not(.pl-full-details):hover {
        cursor: pointer;
        border-top-width: 1px;
        --tw-border-opacity: 1;
        border-color: rgba(61,205,88,var(--tw-border-opacity));
        --tw-shadow: 0 12px 36px -12px rgb(51 51 51/36%);
        box-shadow: var(--tw-ring-offset-shadow,0 0 transparent),var(--tw-ring-shadow,0 0 transparent),var(--tw-shadow);
    }

        .pl-item-main-outer:not(.pl-full-details):hover:before {
            --tw-bg-opacity: 1;
            background-color: rgba(61,205,88,var(--tw-bg-opacity));
            content: "";
            position: absolute;
            width: 100%;
            height: 4px;
            top: 0;
            z-index: 1;
        }

.pl-ui-1-1 .pl-item-main {
    position: relative;
    height: 100%;
    width: 100%;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-right-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgba(225,225,225,var(--tw-border-opacity));
    --tw-bg-opacity: 1;
    background-color: rgba(255,255,255,var(--tw-bg-opacity));
    padding: 30px 20px 20px;
}

.pl-ui-1-1 .pl-item-main-inner {
    position: relative;
    display: flex;
    flex-direction: column;
}

@media (min-width:960px) {
    .pl-ui-1-1 .pl-item-main-inner {
        flex-direction: row;
    }
}

@media (min-width:960px) {
    .pl-item-main {
        padding: 20px;
    }
}

.pl-details-link {
    position: relative;
    width: 100%;
}

.pl-ui-1-1 .pl-left-side {
    flex-grow: 1;
}

.pl-ui-1-1 .pl-city {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

@media (min-width:960px) {
    .pl-ui-1-1 .pl-city {
        -webkit-padding-start: 20px;
        padding-inline-start: 20px;
        -webkit-padding-end: 20px;
        padding-inline-end: 20px;
    }
}

.pl-ui-1-1 .pl-city {
    width: 180px;
    min-width: 180px;
}

.pl-ui-1-1 .pl-action {
    display: flex;
    align-items: flex-start;
}

.pl-ui-1-1 .pl-action > div {
    width: 100%;
}

.pl-ui-item-1-1 {
    /*display: none !important;*/
}

.pl-ui-1-1 .pl-ui-item-1-1 {
    /*display: flex !important;*/
}

/* ---------sales poinst end--------------- */





section.Functions1 {
    padding: 50px 0;
    min-height: 600px;
}

    section.Functions1 .wrapper .head {
        width: 100%;
        padding-bottom: 16px;
    }

        section.Functions1 .wrapper .head h2 {
            font-weight: 700;
            font-size: 24px;
            color: #4B5569;
            text-align:center
        }

    section.Functions1 .wrapper ul.function-items {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

        section.Functions1 .wrapper ul.function-items .item {
            width: 100%;
        }

            section.Functions1 .wrapper ul.function-items .item .item-head {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                justify-content: space-between;
                padding: 25px 40px;
                background-color: #F2F5FA;
                -webkit-box-shadow: 0px 4px 10px rgba(53, 53, 53, 0.15);
                box-shadow: 0px 4px 10px rgba(53, 53, 53, 0.15);
                cursor: pointer;
                border: 1px solid transparent;
            }

                section.Functions1 .wrapper ul.function-items .item .item-head span {
                    font-weight: 800;
                    font-size: 20px;
                    color: #4B5569;
                }

                section.Functions1 .wrapper ul.function-items .item .item-head .icon {
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                }

                section.Functions1 .wrapper ul.function-items .item .item-head.open {
                    border: 1px solid #CD2E2D;
                }

                    section.Functions1 .wrapper ul.function-items .item .item-head.open span {
                        color: #CD2E2D;
                    }

                    section.Functions1 .wrapper ul.function-items .item .item-head.open .icon {
                        -webkit-transform: rotate(180deg);
                        transform: rotate(180deg);
                    }

                        section.Functions1 .wrapper ul.function-items .item .item-head.open .icon svg path {
                            color: #CD2E2D;
                            fill: currentColor;
                        }

            section.Functions1 .wrapper ul.function-items .item .item-body {
                display: none;
                margin: 16px 0;
            }

                section.Functions1 .wrapper ul.function-items .item .item-body .products {
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -ms-flex-wrap: wrap;
                    flex-wrap: wrap;
                    -webkit-column-gap: 2%;
                    column-gap: 2%;
                    row-gap: 16px;
                }

                    section.Functions1 .wrapper ul.function-items .item .item-body .products li.product1 {
                        width: 49%;
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: flex;
                        -webkit-box-orient: vertical;
                        -webkit-box-direction: normal;
                        -ms-flex-direction: column;
                        flex-direction: column;
                        border-radius: 5px;
                        background-color: #F2F5FA;
                        -webkit-box-shadow: 0px 4px 12px rgba(58, 76, 109, 0.38);
                        box-shadow: 0px 4px 12px rgba(58, 76, 109, 0.38);
                        border-bottom: 2px solid #CD2E2D;
                        overflow: hidden;
                    }
                        section.Functions1 .wrapper ul.function-items .item .item-body .products li.product1:hover {
                            transform: scale(1.03);
                        }

                        section.Functions1 .wrapper ul.function-items .item .item-body .products li.product1 .thumb {
                            width: 100%;
                            background-color: #4B5569;
                            padding: 1px;
                            display: -webkit-box;
                            display: -ms-flexbox;
                            display: flex;
                        }

                            section.Functions1 .wrapper ul.function-items .item .item-body .products li.product1 .thumb img {
                                width: 100%;
                                -webkit-box-shadow: 0px 4px 8px rgba(40, 40, 40, 0.27);
                                box-shadow: 0px 4px 8px rgba(40, 40, 40, 0.27);
                            }

                        section.Functions1 .wrapper ul.function-items .item .item-body .products li.product1 .content {
                            display: -webkit-box;
                            display: -ms-flexbox;
                            display: flex;
                            -webkit-box-orient: vertical;
                            -webkit-box-direction: normal;
                            -ms-flex-direction: column;
                            flex-direction: column;
                            padding: 3px 10px 20px;
                        }

                            section.Functions1 .wrapper ul.function-items .item .item-body .products li.product1 .content h4 {
                                font-weight: 600;
                                font-size: 16px;
                                color: #4B5569;
                                height: 52px;
                                display: -webkit-box;
                                display: -ms-flexbox;
                                display: flex;
                                -webkit-box-align: center;
                                -ms-flex-align: center;
                                align-items: center;
                                -webkit-box-pack: center;
                                -ms-flex-pack: center;
                                justify-content: center;
                                text-align: center;
                                padding-bottom: 4px;
                            }

                            section.Functions1 .wrapper ul.function-items .item .item-body .products li.product1 .content p#productId {
                                font-weight: 400;
                                font-size: 10px;
                                color: #4B5569;
                                text-align: center;
                                line-height: 160%;
                                margin-bottom: 10px;
                            }

                                section.Functions1 .wrapper ul.function-items .item .item-body .products li.product1 .content p#productId span {
                                    font-weight: 400;
                                    font-size: 12px;
                                }

                            section.Functions1 .wrapper ul.function-items .item .item-body .products li.product1 .content p#address {
                                font-weight: 400;
                                font-size: 12px;
                                color: #4B5569;
                                text-align: center;
                                line-height: 160%;
                                margin-bottom: 10px;
                            }

                            section.Functions1 .wrapper ul.function-items .item .item-body .products li.product1 .content a.search {
                                background-color: #CD2E2D;
                                width: 32px;
                                height: 32px;
                                display: -webkit-box;
                                display: -ms-flexbox;
                                display: flex;
                                -webkit-box-align: center;
                                -ms-flex-align: center;
                                align-items: center;
                                -webkit-box-pack: center;
                                -ms-flex-pack: center;
                                justify-content: center;
                                border: unset;
                                border-radius: 50%;
                                margin: 0 auto;
                                -webkit-box-shadow: 0px 4px 27px rgba(38, 47, 67, 0.32);
                                box-shadow: 0px 4px 27px rgba(38, 47, 67, 0.32);
                            }

                                section.Functions1 .wrapper ul.function-items .item .item-body .products li.product1 .content a.search .icon {
                                    display: -webkit-box;
                                    display: -ms-flexbox;
                                    display: flex;
                                }

                                section.Functions1 .wrapper ul.function-items .item .item-body .products li.product1 .content a.search svg path {
                                    color: white;
                                    fill: currentColor;
                                }

@media (max-width: 991px) {
    section.Functions1 {
        padding: 50px 0;
    }

        section.Functions1 .wrapper ul.function-items .item {
            width: 100%;
        }

            section.Functions1 .wrapper ul.function-items .item .item-head {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
            }

            section.Functions1 .wrapper ul.function-items .item .item-body .products {
                -webkit-column-gap: 2%;
                column-gap: 2%;
                row-gap: 16px;
            }

                section.Functions1 .wrapper ul.function-items .item .item-body .products li.product1 {
                    width: 49%;
                }

                    section.Functions1 .wrapper ul.function-items .item .item-body .products li.product1 .content {
                        padding: 8px 6px;
                    }

                        section.Functions1 .wrapper ul.function-items .item .item-body .products li.product1 .content h4 {
                            font-size: 11px;
                            padding-bottom: 0;
                            height: 45px;
                        }

                        section.Functions1 .wrapper ul.function-items .item .item-body .products li.product1 .content p {
                            height: 20px;
                            overflow: hidden;
                            display: -webkit-box;
                            display: -ms-flexbox;
                            display: flex;
                            -webkit-box-orient: vertical;
                            -webkit-box-direction: normal;
                            -ms-flex-direction: column;
                            flex-direction: column;
                            -webkit-box-align: center;
                            -ms-flex-align: center;
                            align-items: center;
                            -webkit-box-pack: end;
                            -ms-flex-pack: end;
                            justify-content: flex-end;
                            white-space: nowrap;
                        }

                            section.Functions1 .wrapper ul.function-items .item .item-body .products li.product1 .content p span {
                                font-size: 10px !important;
                            }
}

@media (max-width: 768px) {
    section.Functions1 {
        padding: 50px 0;
    }

        section.Functions1 .wrapper ul.function-items .item {
            width: 100%;
        }

            section.Functions1 .wrapper ul.function-items .item .item-head {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
            }

            section.Functions1 .wrapper ul.function-items .item .item-body .products {
                -webkit-column-gap: 2%;
                column-gap: 2%;
                row-gap: 16px;
            }

                section.Functions1 .wrapper ul.function-items .item .item-body .products li.product1 {
                    width: 80%;
                }

                    section.Functions1 .wrapper ul.function-items .item .item-body .products li.product1 .content {
                        padding: 8px 6px;
                    }

                        section.Functions1 .wrapper ul.function-items .item .item-body .products li.product1 .content h4 {
                            font-size: 11px;
                            padding-bottom: 0;
                            height: 45px;
                        }

                        section.Functions1 .wrapper ul.function-items .item .item-body .products li.product1 .content p {
                            height: 20px;
                            overflow: hidden;
                            display: -webkit-box;
                            display: -ms-flexbox;
                            display: flex;
                            -webkit-box-orient: vertical;
                            -webkit-box-direction: normal;
                            -ms-flex-direction: column;
                            flex-direction: column;
                            -webkit-box-align: center;
                            -ms-flex-align: center;
                            align-items: center;
                            -webkit-box-pack: end;
                            -ms-flex-pack: end;
                            justify-content: flex-end;
                            white-space: nowrap;
                        }

                            section.Functions1 .wrapper ul.function-items .item .item-body .products li.product1 .content p span {
                                font-size: 10px !important;
                            }
}



iframe {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    pointer-events: none;
    width: 100vw;
    height: 56.25vw;
    margin-left: -5px;
}

/* */


.search-by-name-label {
    font-weight: 700;
    font-size: 15px;
    color: #4B5569;
    /*text-align: center;*/
}
.search-by-city-select {
    font-weight: 700;
    font-size: 15px;
    color: #4B5569;
    /*text-align: center;*/
}

#searchByName {
    width: 30%;
    height: 30px;
    border: 1px solid #4B5569;
    border-radius: 5px;
    margin-bottom: 1%;
    margin-left: 2%;
    font-weight: 700;
    font-size: 15px;
    color: #4B5569;
}

#filter {
    width: 30%;
    height: 30px;
    border: 1px solid #4B5569;
    border-radius: 5px;
    margin-bottom: 1%;
    margin-left: 1%;
    font-weight: 700;
    font-size: 15px;
    color: #4B5569;
}
@media (max-width: 768px) {
    .search-by-name-label {
        margin-left: 10%;
    }

    .search-by-city-select {
        margin-left: 10%;
    }

    #filter {
        margin-left: 1%;
    }
    #searchByName {
        margin-left: 4%;
    }
}