html {
    scroll-behavior: smooth;
}

:root {
    --primary: #f4364c;
    --dark: #000000;
    --black: #131313;
    --grey: #545454;
    --white: #ffffff;
    --orange: #ff5a00;
    --green: #6caa35;
    --red: #d5262b;
    --claret: #851524;
    --ease: all 0.3s ease 0.02s;
    --yellow: #fcc12d;
    --light: #f0f0f0;
    --blue: #188bd4;
    --turquoise: #57d5f8;
    --unset: unset !important;
    --grey-bg: #f2f6f7;
    --title: #1c1c1c;
    --text: #585858;
    --page-min-height: calc(100vh - 419px - 521px - 194px);

}

html, body {
    height: 100%;
}

body {
    margin: 0px;
    font-size: 14px;
    color: var(--black);
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1360px;
}

h1 {
    font-weight: 700;
}

h2, h3, h4, h5, h6 {
    font-weight: 500 !important;
}

h2 a, h3 a, h4 a, h5 a, h6 a {
    font-weight: 500 !important;
}

button, a {
    text-decoration: none !important;
    transition: var(--ease);
    -webkit-transition: var(--ease);
}

a:hover {
    color: var(--primary);
}


header {
    background-color: var(--white);
    box-shadow: 0px 10px 12px 0px rgba(0, 0, 0, 0.1);
    position: relative;
    padding: 22px 0 18px 0;
}

header .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 38px;
}

header nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0;
}

header nav ul li {
    background-color: var(--white);
    transition: var(--ease);
    -webkit-transition: var(--ease);
    margin: 0 10px;
    
    transition: all 0s ease 0s;
    -webkit-transition: all 0s ease 0s;
}

header nav ul li a {
    font-size: 16px;
    color: var(--dark);
    transition: all 0s ease 0s;
    -webkit-transition: all 0s ease 0s;
    text-align: center;
}

header nav ul li a[text]::before {
    display: block;
    content: attr(text);
    font-weight: bold;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}

header nav ul li a.dropdown-toggle[text]::before {
    padding-right: 20px;
}

header nav ul li:hover > a {
    font-weight: 700;
    color: var(--dark);
}

header nav ul li.active a {
    font-weight: 700;
    color: var(--dark);
}

header nav ul li:hover a {
    color: var(--dark);
}

.search {
    width: 140px;
    /* border: 2px solid #dbdbdb; */
    display: flex;
}

.search>* {
    display: none !important;
}

.search input {
    border: 0;
    flex: 0 0 100%;
    max-width: calc(100% - 46px);
    padding: 8px 14px;
}

.search button {
    flex: 0 0 100%;
    max-width: calc(46px);
    border: 0;
    background-color: transparent;
    padding: 0;
    margin: 0;
    color: #242424
}

.social {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.social li {
    margin-left: 21px;
}

.social li a {
    font-size: 24px;
    color: var(--dark);
}

.social li a:hover {
    color: var(--primary);
}

.video {
    padding: 60px 0 60px 0;
    position: relative;
}

/* 
    409x390
    366x299
*/
.video .video-item {
    width: 100%;
    max-width: 1108px;
    height: 676px;
    /* border-radius: 50px; */
    /* box-shadow: 0px 21px 20px 0px rgba(0, 0, 0, 0.16); */
    overflow: hidden;
    margin: auto;
}

.video .video-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.video .video-item a img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    box-sizing: content-box;
    width: auto;
}

.video .video-section-bg {
    width: 100%;
    height: calc(72% - 240px);
    background-color: var(--grey-bg);
    position: absolute;
    top: calc((100% - (72% - 240px)) / 2);
    left: 0;
    z-index: -1;
}

.video .video-section-bg::before {
    /* content: ''; */
    display: none;
    background-image: url(../img/video/left-flower.png);
    width: 409px;
    height: 360px;
    position: absolute;
    left: 0;
    top: -60px;
    background-size: cover;
}

.video .video-section-bg::after {
    /* content: ''; */
    display: none;
    background-image: url(../img/video/right-flower.png);
    width: 366px;
    height: 299px;
    position: absolute;
    right: 0;
    bottom: -60px;
    background-size: cover;
}

.contents .content {
    background-color: var(--grey-bg);
    display: flex;
    align-items: center;
}

.contents .content>div {
    flex: 0 0 100%;
    max-width: 50%;
}

.contents .content .img img {
    max-width: 100%;
}

.contents.contents-start-right .content .img {
    order: 1;
}

.contents .content .text {
    padding: 0 50px;
    color: var(--text);
    font-size: 21px;
    line-height: 32px;
}

.contents .content .text .title {
    font-size: 37px;
    color: var(--title);
    font-weight: 700;
    line-height: 55px;
    margin-bottom: 60px;
}

.clouds {
    padding: 60px 0;
}

.clouds .container {
    display: flex;
    justify-content: space-between;
}

.clouds .cloud-content {
    width: 100%;
    text-align: center;
}

.clouds .cloud-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    box-sizing: content-box;
    width: auto;
}

.clouds .cloud-content p {
    margin: 0;
}

.about-product {
    margin: 60px 0;
    padding: 42px 0;
    background-color:#f1f1f1;
}

.about-product .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

.about-product .about-product-item {
    max-width: 100%;
}

.about-product .about-product-item img {
    max-width: 100%;
}

.about-product .about-product-item span {
    display: block;
    font-size: 24px;
    color: var(--white);
    margin: 25px 0 0 0;
}

.instagram-posts {
    padding-bottom: 60px;
}

.instagram-posts .instagram-title {
    font-size: 17px;
    color: var(--primary);
    text-align: center;
    margin-bottom: 45px;
}

.instagram-posts .instagram-title img {
    margin-bottom: 16px;
}

.instagram-posts .instagram-post-list {
    display: flex;
}

.instagram-posts .instagram-post-list .instagram-post {
    flex: 0 0 100%;
    max-width: calc(100% / 4 - 12px * 3 / 4);
    margin: 0 12px 0 0;
}

.instagram-posts .instagram-post-list .instagram-post:nth-child(4n+4) {
    margin-right: 0;
}

.instagram-posts .instagram-post-list .instagram-post img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    box-sizing: content-box;
    width: auto;
}

.maps {
    width: 100%;
    height: 556px;
    overflow: hidden;
}

.maps iframe {
    width: 100%;
    height: 100%;
}

.breadcrumbs {
    background-color: rgb(249, 249, 249);
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.07);
    padding: 15px 0 16px 0;
}

.breadcrumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--grey);
    font-size: 14px;
    display: flex;
}

.breadcrumbs ol li::after {
    content: '»';
    padding: 0 6px;
}

.breadcrumbs ol li:last-child:after {
    display: none;
}

.breadcrumbs ol li a {
    color: var(--grey);
    font-weight: 300;
}

.breadcrumbs ol li:last-child a {
    font-weight: 700;
}

.breadcrumbs ol li a:hover {
    color: var(--primary);
}

footer {
    border-style: solid;
    border-width: 8px 0 0 0;
    border-color: rgb(244, 54, 76);
    background-color: var(--grey-bg);
}

footer .container {
    padding-top: 58px;
    padding-bottom: 58px;
    display: flex;
    justify-content: space-between;
}

footer .container .footer-group {
    display: flex;
}

footer .container .footer-group .logo {
    margin-right: 140px;
}

footer .footer-links {
    display: flex;
}

footer .footer-links ul {
    list-style: none;
    margin: 0 40px 0 0;
    padding: 0;
}

footer .footer-links ul li.title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

footer .footer-links ul li {
    font-size: 17px;
    margin-bottom: 16px;
}

footer .footer-links ul li a {
    color: #262626;
}

footer .footer-links ul li a:hover {
    color: var(--primary);
}

footer .social {
    align-items: flex-start;
    font-size: 26px;
}

footer .social li a {
    font-size: 26px;
}

footer .bottom {
    background-color: #e3e7e8;
    padding: 14px 0 15px 0;
    text-align: center;
}

footer .bottom p {
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    margin: 0;
    color: #272727;
}

.page-banner {
    height: 521px;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.page-banner .container {
    height: 100%;
    display: flex;
    align-items: center;
}

.page-banner h1 {
    font-weight: 700;
    font-size: 61px;
    color: var(--black);
    margin: 0;
    text-shadow: 1px 1px 3px #fff;
}

.products {
    padding: 60px 0 120px 0;
    min-height: var(--page-min-height);
}

.products .container {
    display: flex;
    flex-wrap: wrap;
}

.products .product {
    flex: 0 0 100%;
    max-width: calc(100% / 4);
    /* margin: 0 32px 32px 0;
    border-style: solid;
    border-width: 4px;
    border-color: rgb(255, 166, 168);
    border-radius: 50px;
    box-shadow: 0px 21px 20px 0px rgba(0, 0, 0, 0.18); */
    overflow: hidden;
    /* height: 325px; */
}

.products .product a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.products .product a img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    box-sizing: content-box;
    width: auto;
}


.products .product:nth-child(4n+4) {
    margin-right: 0;
}

.product-detail {
    padding: 50px 0 150px 0;
    min-height: var(--page-min-height);
}

.product-detail .container {
    display: flex;
    align-items: center;
}

.product-detail .img {
    flex: 0 0 100%;
    max-width: calc(50%);
    position: relative;
}

.product-detail .img a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: rgb(255, 255, 255);
    overflow: hidden;
}

.product-detail .img a img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    box-sizing: content-box;
    width: auto;
}

.product-detail .img .swiper {
    width: 100%;
    height: 560px;
}

.product-detail .img a.btnBuy {
    padding: 8px 52px;
    font-size: 25px;
    font-weight: 700;
    color: var(--primary);
    border-style: solid;
    border-width: 2px;
    border-color: var(--primary);
    border-radius: 19px;
    background-color: rgb(255, 166, 168);
    width: 230px;
    margin: 5px auto 0 auto;
    z-index: 101;
    position: relative;
}

.product-detail .img a.btnBuy:hover {
    background-color: var(--primary);
    color: var(--white);
}

.product-detail .detail {
    flex: 0 0 100%;
    max-width: calc(50%);
    padding-left: 55px;
}

.product-detail .detail .title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 35px;
}

.product-detail .detail p {
    font-size: 21px;
    line-height: 32px;
    margin-bottom: 22px;
}

.cloud-list {
    display: flex;
    justify-content: space-between;
}

.cloud-list .cloud-content {
    width: 100%;
    text-align: center;
}

.cloud-list .cloud-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    box-sizing: content-box;
    width: auto;
}

.cloud-list .cloud-content p {
    font-size: 13px;
    line-height: 17px;
    color: var(--white);
    text-align: center;
    margin: 0;
}

.mobile-item {
    display: none;
}

nav .group {
    width: 100%;
}

.video-item .modal-dialog {
    max-width: calc(100% - 1rem);
    width: 714px;
}

.video-item .close {
    position: absolute;
    right: -10px;
    top: -10px;
    background-color: #f00;
    padding: 2px 8px;
    border-radius: 8px;
    opacity: 1;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 0 0 transparent;
    font-weight: 400;
}


.video-item iframe,
.video-item video {
    width: 100%;
    height: 100%;
    background-color: #000000;
}

.contents-page {
    padding: 60px 0 120px 0;
    min-height: var(--page-min-height);
}

.sales-points-page .container {
    display: flex;
    flex-wrap: wrap;
}

.sales-points-page .container .point {
    flex: 0 0 100%;
    max-width: calc(100% / 5 - 20px * 4 / 5);
    margin: 0 20px 20px 0;
    height: 200px;
}

.sales-points-page .container .point:nth-child(5n+5) {
    margin-right: 0;
}

.sales-points-page .container .point a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.sales-points-page .container .point a:hover {
    border: 1px solid #fff;
    box-shadow: 0px 1px 20px 0px rgba(0, 0, 0, 0.17);
}

.sales-points-page .container .point a img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    box-sizing: content-box;
    width: auto;
}

.blog-posts {
    display: flex;
    flex-wrap: wrap;
}

.blog-posts .post {
    flex: 0 0 100%;
    max-width: calc(25% - 20px * 3 / 4);
    margin: 0 20px 60px 0;
    border-radius: 10px;
    overflow: hidden;
    background-color: transparent;
    box-shadow: 0px 40px 84px 0px rgba(0, 0, 0, 0.0);
    transition: var(--ease);
    -webkit-transition: var(--ease);
    padding: 20px 20px 24px 20px;
}

.blog-posts .post:hover {
    box-shadow: 0px 40px 84px 0px rgba(0, 0, 0, 0.6);
    background-color: var(--white);
}

.blog-posts .post:nth-child(4n+4) {
    margin-right: 0;
}

.blog-posts .post .img {
    height: 220px;
    width: 100%;
    margin-bottom: 15px;
}

.blog-posts .post .img a {
    overflow: hidden;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-posts .post .img a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-sizing: content-box;
}

.blog-posts .post .last-updated {
    font-size: 13px;
    margin-bottom: 2px;
}

.blog-posts .post .blog-title {
    font-size: 22px;
    margin-bottom: 4px;
    color: var(--dark-green);
}

.blog-posts .post .blog-title:hover {
    color: var(--green);
}

.blog-posts .post p {
    font-size: 16px;
    color: var(--grey);
    margin: 0 0 10px 0;
}

.blog-posts .post a.more {
    font-size: 14px;
    padding: 2px 6px;
    border-width: 0 0 2px 0;
    border-style: solid;
    border-color: var(--primary);
    font-family: 'PoppinsLight', sans-serif;
    color: var(--primary);
}

.blog-posts .post a.more:hover {
    color: var(--dark);
    border-color: var(--dark);
}

.blog-detail-page {
    padding: 60px 0 120px 0;
}

.blog-detail-page .container {
    max-width: 1100px;
}

.blog-detail-page.contents .content .text-area {
    max-width: 100%;
    padding: 0;
}

.contents-page .content .text-area .content-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 42px;
    color: var(--primary);
    margin-bottom: 30px;
}

.contents-page .content .text-area p {
    font-size: 20px;
    color: var(--text-color);
}

a.back {
    font-size: 14px;
    padding: 2px 6px;
    border-width: 0 0 2px 0;
    border-style: solid;
    border-color: var(--primary);
    font-family: 'PoppinsLight', sans-serif;
    color: var(--primary);
}

a.back:hover {
    color: var(--dark);
    border-color: var(--dark);
}

.map {
    margin: 20px 0;
    width: 100%;
}

.map iframe {
    width: 100%;
    height: 480px;
}

.contact-page {
    padding: 60px 0 40px 0;
}

.contact-page.contents .content .text-area {
    max-width: 100%;
    padding: 0;
}

.contact-page a {
    color: var(--black);
}

.contact-page a:hover {
    color: var(--primary);
}

.contact-form {
    padding: 0 0 80px 0;
}

.contact-form .container {
    max-width: 800px;
}

.contact-form textarea {
    resize: none;
}

.contact-form textarea,
.contact-form input[type='text'] {
    font-size: 14px;
}

.contact-form .btn-secondary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.contact-form .btn-secondary:hover {
    background-color: var(--black);
    border-color: var(--black);
}

.contents-page .faq .text-area .content-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: #d9d9d9;
    transition: var(--ease);
    -webkit-transition: var(--ease);
    cursor: pointer;
}

.contents-page .faq .text-area .content-title[aria-expanded=true] {
    color: var(--primary);
    border-color: var(--primary);
}

.contents-page .faq .text-area .content-title i::before {
    content: "\f067";
}

.contents-page .faq .text-area .content-title[aria-expanded=true] i::before {
    content: "\f068";
}

.contents-page .faq .text-area p {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: var(--primary);
}

.contents-page .faq:last-child {
    border-width: 0;
}


.how-to-use-page .page-title {
    font-size: 24px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 5px;
    text-align: center;
}

.how-to-use-page .container > p {
    font-size: 16px;
    margin-bottom: 50px;
    text-align: center;
}

.how-to-use-wrapper {
    display: flex;
    margin: 0 0 20px 0;
}

.how-to-use-wrapper .use-img {
    flex: 0 0 100%;
    max-width: calc(46% - 20px);
}

.how-to-use-wrapper .use-img img {
    max-width: 100%;
    height: auto;
}

.how-to-use-wrapper .how-to-use-steps {
    flex: 0 0 100%;
    max-width: calc(54% + 20px);
    padding: 0 0 0 20px;
}

.how-to-use-wrapper:nth-child(2n+2) .use-img {
    order: 1;
}

.how-to-use-wrapper:nth-child(2n+2) .how-to-use-steps {
    padding: 0 20px 0 0;
}

.how-to-use-page .how-to-use-steps .steps-title {
    font-size: 24px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 5px;
    text-align: center;
}

.how-to-use-page .how-to-use-steps > p {
    font-size: 16px;
    margin-bottom: 25px;
    text-align: center;
}

.how-to-use-page .how-to-use-steps .how-to-use-steps-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.how-to-use-page .how-to-use {
    flex: 0 0 100%;
    max-width: calc(50% - 20px * 1 / 2);
    margin: 0 20px 40px 0;
    display: flex;
    align-items: center;
}

.how-to-use-page .how-to-use:nth-child(2n+2) {
    margin-right: 0;
}

.how-to-use-page .how-to-use .img {
    order: 0;
    flex: 0 0 100%;
    max-width: calc(65% - 10px);
    text-align: center;
    order: 1;
}

.how-to-use-page .how-to-use .img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    box-sizing: content-box;
    width: auto;
    margin-bottom: 15px;
}

.how-to-use-page .how-to-use .img p {
    font-size: 16px;
    margin: 0;
}

.how-to-use-page .how-to-use .text-area {
    flex: 0 0 100%;
    max-width: calc(35% + 10px);
    padding: 0 10px 0 0;
    min-width: 80px;
}

.how-to-use-page .how-to-use .text-area .title {
    font-size: 17px;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 15px;
    text-align: right;
}

header .navbar-toggler {
    color: #fff;
    border-radius: 5px;
    background-color: var(--primary);
    padding: 6px 8px;
    font-size: 20px;
    display: none;
    align-items: center;
}

header nav ul.nav li.nav-item .dropdown-menu {
    margin: 10px 0 0 0;
    background-color: var(--primary);
    border-width: 0;
}

header nav ul.nav li.nav-item .dropdown-menu::before {
    content: '';
    width: 100%;
    height: 40px;
    position: absolute;
    top: -15px;
    left: 0;
    z-index: -1;
}

header nav ul.nav li.nav-item .dropdown-menu::after {
    content: "";
    position: absolute;
    top: -15px;
    left: calc(50% - 15px);
    border-width: 0 15px 15px;
    border-style: solid;
    border-color: var(--primary) transparent;
    display: block;
    width: 0;
}

header nav ul.nav li.nav-item .dropdown-menu .second-sub-menu a {
    color: var(--white);
}

header nav ul.nav li.nav-item .dropdown-menu .second-sub-menu a:hover {
    color: var(--dark) !important;
    background-color: var(--white) !important;
}



.product-thumbnails {
    min-width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

@media (min-width: 992px) {
    .product-thumbnails {
        display: flex;
    }
}

.product-thumbnails .thumbnail {
    width: 50px;
    height: 50px !important;
    margin: 0 4px 9px 4px;
    border: 2px solid black;
    position: relative;
    transition: var(--ease);
    -webkit-transition: var(--ease);
}

.product-thumbnails .thumbnail:hover {
    cursor: pointer;
}


.product-thumbnails .thumbnail.is-active {
    border: 2px solid var(--primary);
}

.product-thumbnails img {
    width: 46px;
    min-width: 46px;
    height: 46px;
    object-fit: contain;
    position: absolute;
    top: 0px;
    left: 0px;
    border-radius: 50%
}



.swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}

.swiper-pagination-fraction, .swiper-pagination-custom, .swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 0px;
    left: 0;
    width: 100%;
    position: absolute;
    z-index: 10;
    text-align: center
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transform: scale(.33);
    -ms-transform: scale(.33);
    transform: scale(.33);
    position: relative
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    -webkit-transform: scale(.66);
    -ms-transform: scale(.66);
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    -webkit-transform: scale(.33);
    -ms-transform: scale(.33);
    transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    -webkit-transform: scale(.66);
    -ms-transform: scale(.66);
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    -webkit-transform: scale(.33);
    -ms-transform: scale(.33);
    transform: scale(.33)
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #e01d95;
    opacity: .2
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #e01d95
}

.swiper-container-vertical>.swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    -webkit-transform: translate3d(0px, -50%, 0);
    transform: translate3d(0, -50%, 0)
}

@media (min-width: 992px) {
    .swiper-container-vertical>.swiper-pagination-bullets {
        display: none
    }
}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 6px 0;
    display: block
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 8px
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    -webkit-transition: .2s top, .2s -webkit-transform;
    transition: .2s top, .2s -webkit-transform;
    -o-transition: .2s transform, .2s top;
    transition: .2s transform, .2s top;
    transition: .2s transform, .2s top, .2s -webkit-transform
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translate(-50%);
    white-space: nowrap
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: .2s left, .2s -webkit-transform;
    transition: .2s left, .2s -webkit-transform;
    -o-transition: .2s transform, .2s left;
    transition: .2s transform, .2s left;
    transition: .2s transform, .2s left, .2s -webkit-transform
}

.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: .2s right, .2s -webkit-transform;
    transition: .2s right, .2s -webkit-transform;
    -o-transition: .2s transform, .2s right;
    transition: .2s transform, .2s right;
    transition: .2s transform, .2s right, .2s -webkit-transform
}

.swiper-pagination-progressbar {
    background: rgba(0, 0, 0, .25);
    position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #007aff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top
}

.swiper-container-horizontal>.swiper-pagination-progressbar {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0
}

.swiper-container-vertical>.swiper-pagination-progressbar {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0
}

.swiper-pagination-white .swiper-pagination-bullet-active {
    background: #ffffff
}

.swiper-pagination-progressbar.swiper-pagination-white {
    background: rgba(255, 255, 255, .25)
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
    background: #ffffff
}

.swiper-pagination-black .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border: 1px solid black;
    background: white;
    margin: 0 7px !important;
    opacity: 1
}

.swiper-pagination-black .swiper-pagination-bullet-active {
    background: black
}

.swiper-pagination-progressbar.swiper-pagination-black {
    background: white
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
    background: #000000
}

.swiper-container .swiper-pagination {
    display: block
}

@media (min-width: 992px) {
    .swiper-container .swiper-pagination {
        display: none
    };
    .swiper-pagination-black {
        display: none !important;
    }
}

.swiper-container-vertical>.swiper-pagination-bullets {
    top: 0;
    transform: translate3d(0, 50%, 0)
}

.slider {
    overflow: hidden;
}

.slider-item a {
    width: 100%;
}

.faqs-page .page-banner,
.sales-points-page1 .page-banner,
.how-to-use-page .page-banner,
.contact-us-page .page-banner {
    height: 200px;
}


.faqs-page .page-banner h1,
.sales-points-page1 .page-banner h1,
.how-to-use-page .page-banner h1,
.contact-us-page .page-banner h1 {
    color: var(--white);
    text-shadow: 0 0 rgba(0,0,0,0);
    text-align: center;
    flex: 0 0 100%;
}

footer .logo img,
header .logo img {
    max-width: 175px;
    min-height: 47px;
}

.contents .content a.btnBuy {
    padding: 10px 38px;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    border-style: solid;
    border-width: 2px;
    border-color: var(--primary);
    border-radius: 19px;
    background-color: rgb(255, 166, 168);
    margin: 5px auto 0 auto;
    z-index: 101;
    position: relative;
}

.contents .content a.btnBuy:hover {
    background-color: var(--primary);
    color: var(--white);
}