@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Regular.woff2') format('woff2'),
        url('fonts/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Lilita One';
    src: url('fonts/LilitaOne.woff2') format('woff2'),
        url('fonts/LilitaOne.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Bold.woff2') format('woff2'),
        url('fonts/Poppins-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-BlackItalic.woff2') format('woff2'),
        url('fonts/Poppins-BlackItalic.woff') format('woff');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Black.woff2') format('woff2'),
        url('fonts/Poppins-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-ExtraBoldItalic.woff2') format('woff2'),
        url('fonts/Poppins-ExtraBoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-BoldItalic.woff2') format('woff2'),
        url('fonts/Poppins-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-ExtraBold.woff2') format('woff2'),
        url('fonts/Poppins-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Italic.woff2') format('woff2'),
        url('fonts/Poppins-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Light.woff2') format('woff2'),
        url('fonts/Poppins-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-MediumItalic.woff2') format('woff2'),
        url('fonts/Poppins-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Medium.woff2') format('woff2'),
        url('fonts/Poppins-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-LightItalic.woff2') format('woff2'),
        url('fonts/Poppins-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-SemiBold.woff2') format('woff2'),
        url('fonts/Poppins-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-SemiBoldItalic.woff2') format('woff2'),
        url('fonts/Poppins-SemiBoldItalic.woff') format('woff');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}



:root {
    --heading-font: 'Lilita One';
    --body-font: 'Poppins';
    --primary-color: #F00085;
    --font-40: 40px;
}

.home #main,
.page-template-new-home #main {
    max-width: 100%;
}

.home .container,
.page-template-new-home .container {
    max-width: 1310px;
}

.cta-btn {
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    background-color: var(--primary-color);
    color: #FFF;
    display: inline-block;
    vertical-align: top;
    padding: 15px 18px;
    border-radius: 8px;
    box-shadow: 0px 1px 2px 0px #0A0D120D;
    box-shadow: 0px -2px 0px 0px #0A0D120D inset;
    box-shadow: 0px 0px 0px 1px #0A0D120D inset;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.cta-btn::before {
    position: absolute;
    content: "";
    background-color: rgba(0, 0, 0, 0.28);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    pointer-events: unset;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease all;
    z-index: -1;
}

.cta-btn:hover {
    color: #FFFFFF;
}

.cta-btn:hover::before {
    opacity: 1;
    visibility: visible;
}

.cta-btn.arrow {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-radius: 26px;
    padding: 15px 24px;
}

.cta-btn.arrow::after {
    content: "";
    background-image: url(images/icons/circle-arrow-icon.svg);
    height: 20px;
    width: 20px;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    transition: 0.5s ease all;
}

.cta-btn.arrow:hover::after {
    transform: rotate(45deg);
}

.header.mst-header {
    padding: 0;
    transition: all 0.8s ease;
    position: fixed;
    width: 100%;
    top: 0;
}
body:not(.home) .header.mst-header{
    position: unset;
}
.header.mst-header.sticky {
    position: fixed;
    width: 100%;
    z-index: 9;
}
.mst-header.header::after {
    display: none;
}

.header.mst-header .container {
    display: block;
}

.mstg-top-bar {
    text-align: center;
    padding: 14px 0;
    background: #EDEDED;
}

.mstg-top-bar p {
    font-family: var(--body-font);
    color: var(--primary-color);
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    margin: 0;
}

.mstg-top-bar p a {
    color: inherit;
}

.mst-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
}

.mst-header .header__logo {
    max-width: 188px;
    min-height: 84px;
}

.mst-header .header__logo>a {
    display: inline-block;
    vertical-align: top;
}

.mst-header .header__logo img {
    display: block;
}

.mstg-search {
    max-width: 610px;
    width: 100%;
    padding: 0 25px;
}

.mst-header .header__search-panel input[type="search"] {
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #000;
    border: 1px solid #E5E7EB;
    border-radius: 50px;
    background-color: #F3F4F6;
    text-transform: unset;
    padding: 13px 16px;
    background-image: url(images/icons/search-icon.svg);
    background-position: 16px center;
    background-repeat: no-repeat;
    background-size: 20px;
    padding-left: 50px;
    text-align: left;
    padding-right: 104px;
}

.mst-header .header__search-panel input[type="search"]::placeholder {
    color: #9CA3AF;
    text-transform: unset;
    text-align: left;
}

.mstg-search-btn {
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    background-color: var(--primary-color);
    color: #FFF;
    display: inline-block;
    vertical-align: top;
    padding: 9px 20px;
    border-radius: 50px;
    border: none;
    position: absolute;
    right: 6px;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1;
    overflow: hidden;
}

.mstg-search-btn::before {
    position: absolute;
    content: "";
    background-color: rgba(0, 0, 0, 0.28);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    pointer-events: unset;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease all;
    z-index: -1;
}

.mstg-search-btn:hover:before {
    opacity: 1;
    visibility: visible;
}

.mst-header .header__search {
    display: block;
    margin: 0;
}

.mst-header .header__search-panel {
    position: relative;
    visibility: visible;
    box-shadow: unset;
    opacity: 1;
    padding: 0;
    left: 0;
    right: auto;
    top: 0;
}

.mst-header-bottom {
    background: #00000066;
    position: absolute;
    bottom: -60px;
    width: 100%;
    padding: 14px 0;
    backdrop-filter: blur(16px);
}

body:not(.home) .mst-header-bottom {
    background: #000;
    position: unset;
}

.mst-header-bottom .header__menu {
    justify-content: center;
    font-size: unset;
    text-transform: unset;
    margin: 0 auto;
}

.mst-header-bottom .header__menu li {
    margin-right: 40px;
}

.mst-header-bottom .header__menu li:last-child {
    margin-right: 0;
}

.mst-header-bottom .header__menu li a {
    color: #FFF;
    font-family: var(--body-font);
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
}

.mst-header-bottom .header__menu li a:hover {
    color: var(--primary-color);
}

.mstg-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}
.mstg-icons > a {
    display: block;
}
.mstg-icons a svg {
    display: block;
}
.mstg-icon.cart-icon {
    position: relative;
}
.cart-icon .cart-count {
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 500;
    color: #FFF;
    height: 20px;
    width: 20px;
    display: flex;
    align-items: center;
    background: var(--primary-color);
    justify-content: center;
    border-radius: 100px;
    position: absolute;
    top: -10px;
    right: -10px;
}
.mst-hero-banner {
    padding: 145px 0 0;
}

.mst-hero-banner .banner__bg {
    padding-bottom: 760px;
    position: relative;
}

.mst-hero-banner .banner__bg::before {
    position: absolute;
    content: "";
    top: 0;
    height: 100%;
    width: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    pointer-events: unset;
    z-index: 1;
}

.mst-hero-banner .banner__bg img {
    position: absolute;
    top: 0;
    object-position: center top;
    display: block;
}

.banner_text_wrapper {
    position: absolute;
    bottom: 65px;
    left: 0;
    right: 0;
    width: 100%;
}

.banner_text_wrapper .banner__text {
    max-width: 1020px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.banner_text_wrapper .banner__text h1 {
    font-family: var(--heading-font);
    font-weight: 400;
    font-size: 65px;
    line-height: 100%;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.banner_text_wrapper .banner__text h2 {
    font-family: var(--body-font);
    font-weight: 300;
    font-size: var(--font-40);
    line-height: 100%;
    text-transform: capitalize;
}

.banner_text_wrapper .banner__text a.cta-btn {
    font-size: 18px;
    margin-top: 42px;
}

.reviews-bar {
    background: #F5F5F5;
    padding: 24px 0;
}

.reviews-bar .reviews-bar-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 15px;
}

.reviews-bar-wrapper .review .label,
.reviews-bar-wrapper .review .text {
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
}

.reviews-bar-wrapper .review {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}
.reviews-bar-wrapper .review.trustpilot{
    position: relative;
    padding-right: 25px;
    margin-right: 25px;
}
.reviews-bar-wrapper .review.trustpilot::before {
    position: absolute;
    content: "";
    border-right: 1px solid #000;
    height: 30px;
    width: 1px;
    left: auto;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.reviews-bar-wrapper .review .stars img,
.reviews-bar-wrapper .review .logo {
    display: block;
}

.reviews-bar-wrapper .divider {
    color: #ccc;
    margin: 0 10px;
}

.featured-video {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 48px 0;
}
.featured-video .sec-head p{
    color: #FFF;
}
.featured-video .sec-head {
    margin: 0 0 32px;
}
.featured-video .video iframe{
    border-radius: 8px;
}
.sec-head {
    margin: 0 0 64px;
}

.sec-head .subheading {
    color: var(--primary-color);
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 400;
    line-height: 100%;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.sec-head h2 {
    color: #000;
    font-family: var(--heading-font);
    font-weight: 400;
    ;
    font-size: var(--font-40);
    line-height: 100%;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 32px;
}

.sec-head h2:last-child {
    margin-bottom: 0;
}

.featured-video .sec-head h2 {
    color: #FFF;
}

.sec-head p {
    font-family: var(--body-font);
    color: #000000;
    font-weight: 300;
    font-size: 18px;
    line-height: 140%;
    text-align: center;
    max-width: 1108px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}
.video-wrapper  video {
    width: 100%;
    display: block;
}
.video-thumb {
    width: 100%;
    max-width: 800px;
    border-radius: 8px;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    height: 64px;
    width: 64px;
    border-radius: 100px;
    backdrop-filter: blur(16px);
    background: var(--primary-color);
    background-image: url(images/icons/play-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}
.play-button.video-play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}
.btn-wrapper {
    margin-top: 30px;
}


.mst-sponsor-sec {
    padding: 48px 0;
}

.mst-sponsor-sec .title-h2 {
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    color: #000000;
    text-align: center;
    text-transform: uppercase;
    margin: 0 0 30px;
}

.mst-sponsor-sec .sponsors__list li {
    height: 42px;
}

.mst-sponsor-sec .sponsors__list img {
    max-width: 242px;
    display: block;
    margin: 0 auto;
    filter: brightness(0) saturate(100%) invert(96%) sepia(7%) saturate(60%) hue-rotate(182deg) brightness(91%) contrast(84%);
}

.mst-sponsor-sec .sponsors__list {
    border: none;
    padding: 0;
    margin: 0;
}

.popular-product.mst-product-review {
    padding: 48px 0 96px;
    overflow: hidden;
    background: unset;
}

.mst-product-review {
    overflow: hidden;
}

.sec-head-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 0 64px;
}

.popular-product.mst-product-review h2 {
    color: #000;
    font-family: var(--heading-font);
    font-weight: 400;
    font-size: var(--font-40);
    line-height: 100%;
    text-transform: uppercase;
    margin: 0;
}

.sec-head-cta h2 {
    color: #000;
    font-family: var(--heading-font);
    font-weight: 400;
    font-size: var(--font-40);
    line-height: 100%;
    text-transform: uppercase;
    margin: 0;
}

.latest-post .sec-head-cta h2 {
    color: #FFF;
    margin-bottom: 20px;
    text-align: left;
}

.sec-head-cta .subheading {
    font-family: var(--body-font);
    color: var(--primary-color);
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    text-transform: uppercase;
    margin: 0 0 12px;
}

.sec-head-cta p {
    font-family: var(--body-font);
    color: #535862;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
}

.mst-product-review .card {
    padding: 0;
    border: none;
    background: transparent;
}

.card_img_wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.card_img_wrap .card__img img {
    height: 256px;
}

.card_img_wrap .author {
    position: absolute;
    left: 0;
    right: auto;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    backdrop-filter: blur(30px);
    width: 100%;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.card_img_wrap .author .card__category{
    display: none;
}
.card_img_wrap .author .card__author {
    font-family: var(--body-font);
    color: #FFF;
    font-size: 14px;
    font-weight: 600;
    line-height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mst-product-review .card .card__bottom {
    display: block;
    padding: 16px 0 0;
    height: auto;
}

.mst-product-review .card .card__date {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #FFF;
    max-width: 100%;
    margin-top: 5px;
}

.mst-product-review .card.card__date svg {
    display: block;
}

.mst-product-review .card .card__date span {
    margin: 0;
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    background: transparent;
    padding: 0;
    text-transform: unset;
}

.mst-product-review .card__bottom .card__text {
    padding: 10px 0 16px;
}

.mst-product-review .card__bottom .card__text .card__title {
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 18px;
    color: #181D27;
    line-height: 130%;
    margin: 0;
}

.card__bottom .card__text .card__excerpt {
    font-family: var(--body-font);
    color: #181D27;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin: 6px 0 0;
}
.latest-post .card__bottom .card__text .card__excerpt{
    color: #FFFFFF80;
 }
.mstg-product-slider.slick-slider {
    padding-bottom: 90px;
}
.mstg-product-slider .slick-list {
    overflow: inherit;
    margin: 0 -16px;
}
.mstg-product-slider .slick-slide {
    padding: 0 16px;
}

.slick-arrow {
    position: absolute;
    bottom: 0;
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #E9EAEB;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0;
    line-height: 0;
    text-indent: -9999px;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

 .slick-arrow:hover {
    background-color: #FAFAFA;
}

.slick-prev {
    left: 0;
    right: auto;
}

.slick-next {
    left: 88px;
    right: auto;
}

 .slick-arrow.slick-prev::before,
 .slick-arrow.slick-next::before {
    content: "";
    height: 24px;
    width: 24px;
    background-image: url(images/icons/prev-arrow-icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    display: block;
}
 .slick-arrow.slick-next::before {
    background-image: url(images/icons/next-arrow-icon.svg);
}
 .slick-arrow:hover::before {
    filter: brightness(0) saturate(100%) invert(51%) sepia(9%) saturate(370%) hue-rotate(182deg) brightness(89%) contrast(96%);
}

.cta-link {
    color: var(--primary-color);
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cta-link svg {
    transition: 0.5s ease all;
}

.cta-link:hover {
    color: var(--primary-color);
}

.cta-link:hover svg {
    transform: rotate(40deg);
}

.latest-post {
    background-color: #000000;
    padding: 48px 0;
}

.latest-post .sec-head-cta {
    align-items: flex-start;
}

.mst-product-review.latest-post .card__bottom .card__text .card__title {
    color: #FFF;
}

.latest-post .card_img_wrap .author .card__author,
.mst-product-review.latest-post .card .card__date span {
    font-size: 14px;
    line-height: 20px;
}
.latest-post .card_img_wrap .author{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.card__category a{
    font-family:var(--body-font);
    color: #FFF;
    font-size: 14px;
    font-weight: 600;
    line-height:20px;
    display: block;
}
.card__category a:hover{
    color: var(--primary-color);
}
.latest-post .card_img_wrap .author .card__author{
    font-weight: 600;
}
.best-selling-product {
    padding: 48px 0;
}
.best-products-list.slick-slider {
    padding-bottom: 90px;
}
.mstg-team-section {
    padding: 96px 0 60px;
    background-color: #F5F5F5;
    position: relative;
}

/* .mstg-team-section::before {
    position: absolute;
    content: "";
    background-image: url(images/shape-img.png);
    background-repeat: no-repeat;
    height: 400px;
    width: 330px;
    top: -210px;
    right: 0;
    left: auto;
    pointer-events: none;
} */

.team-member-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 35px;
}

.team-member {
    width: 128px;
}

.team-member:nth-child(even) {
    margin-top: 68px;
}

.team-member-img {
    border-radius: 536px;
    overflow: hidden;
    position: relative;
}

.team-member-img::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    background: #0C0F1970;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease all;
}

.team-member-img img {
    display: block;
    width: 100%;
    object-fit: cover;
    height: 188px;
}

.team-member-img p {
    font-family: var(--body-font);
    font-weight: 500;
    font-size: clamp(10px, 1.2vw, 12px);
    line-height: 100%;
    position: absolute;
    right: 24px;
    top: 50%;
    color: #FFF;
    writing-mode: vertical-rl;
    transform: translateY(-50%) rotate(180deg);
    white-space: nowrap;      
    text-orientation: mixed; 
    max-height: 80%;            
    overflow: hidden;          
    text-overflow: ellipsis;   
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease all;
}

.team-member-img:hover::before,
.team-member-img:hover p {
    opacity: 1;
    visibility: visible;
}

.team-btn-wrapper {
    text-align: center;
    margin-top: 50px;
}

.featured-video .cta-btn {
    display: flex;
    align-items: center;
    width: max-content;
    margin: 0 auto;
    gap: 6px;
}

.mstg-social-media {
    padding: 48px 0;
}

.mstg-social-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.mstg-social-card {
    background-color: #FAFAFA;
    padding: 24px;
    border-radius: 16px;
    display: flex;
    width: 100%;
    max-width: 315px;
    gap: 15px;
    align-items: center;
    transition: all 0.5s ease;
    text-decoration: none;
}

.mstg-social-card:hover {
    background-color: var(--primary-color);
}

.mstg-social-card .icon {
    height: 48px;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border: 1px solid #D5D7DA;
    border-radius: 10px;
    box-shadow: 0px 1px 2px 0px #0A0D120D;
}

.mstg-social-card .icon img {
    max-width: 24px;
    width: 100%;
    display: block;
}

.mstg-social-card span {
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #000000;
    transition: 0.3s ease;
}

.mstg-social-card:hover span {
    color: #FFF;
}

.customer-review-sec {
    padding: 48px 0;
}

.mstg-categories {
    padding: 48px 0;
}

.mstg-categories .categories__wrapper {
    padding: 0;
    max-width: 100%;
    border: none;
}

.mstg-categories .categories__wrapper .categories__list {
    margin: 0;
    columns: unset;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.mstg-categories .categories__wrapper .categories__list li {
    padding: 0;
    margin: 0;
}

.mstg-categories .categories__wrapper .categories__list li a {
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 18px;
    line-height: 130%;
    background-color: #FAFAFA;
    padding: 24px;
    border-radius: 16px;
    display: block;
}

.mstg-categories .categories__wrapper .categories__list li a:hover {
    background-color: var(--primary-color);
    color: #FFF;
}

.our-newsletter-sec {
    padding: 48px 0 96px;
}

.our-newsletter-wrapper {
    background-color: #000;
    padding: 64px 20px;
    border-radius: 16px;
}

.our-newsletter-wrapper h2 {
    color: #FFF;
    font-family: var(--heading-font);
    font-weight: 400;
    font-size: 36px;
    ;
    line-height: 126%;
    ;
    text-align: center;
    text-transform: uppercase;
    margin: 0 0 20px;
}

.our-newsletter-wrapper p {
    color: #FFF;
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    text-align: center;
    margin-bottom: 10px;
}

.our-newsletter-wrapper p:last-child {
    margin-bottom: 0;
}

.newsletter-form {
    max-width: 480px;
    margin: 32px auto 0;
}

.our-newsletter-wrapper .newsletter-form p {
    color: #989898;
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 14px;
    line-height: 126%;
    text-align: left;
    margin: 8px 0 0;
}

.our-newsletter-wrapper .newsletter-form p a {
    color: inherit;
    text-decoration: underline;
}
.our-newsletter-wrapper .newsletter-form p a:hover{
    color: #FFF;
}

.newsletter-form form.wpforms-form {
    display: flex;
    gap: 16px;
}

.newsletter-form .wpforms-container-full {
    margin: 0;
}

.newsletter-form .wpforms-container-full .wpforms-field-container {
    width: 100%;
}

.newsletter-form div.wpforms-container-full .wpforms-form .wpforms-field {
    padding: 0;
}

.newsletter-form div.wpforms-container-full .wpforms-form .wpforms-submit-container {
    padding: 0;
}

.newsletter-form div.wpforms-container-full .wpforms-form input[type=email] {
    font-family: var(--body-font);
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    background-color: #FFF;
    border-radius: 8px;
    padding: 11px 15px;
    height: auto;
    min-height: 48px;
}
.newsletter-form div.wpforms-container-full .wpforms-form button[type=submit]:disabled,
.newsletter-form div.wpforms-container-full .wpforms-form button[type=submit]:focus,
.newsletter-form div.wpforms-container-full .wpforms-form button[type=submit] {
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #FFF;
    background-color: var(--primary-color);
    padding: 12px 20px;
    border-radius: 8px;
    min-height: 48px;
    border: none;
    position: relative;
    z-index: 1;
}
.newsletter-form div.wpforms-container-full .wpforms-form button[type=submit]:disabled{
    opacity: 1;
}
.newsletter-form div.wpforms-container-full .wpforms-form button[type=submit]::before {
    position: absolute;
    content: "";
    background-color: rgba(0, 0, 0, 0.28);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    pointer-events: unset;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease all;
    z-index: -1;
}

.newsletter-form div.wpforms-container-full .wpforms-form button[type=submit]:hover::before {
    opacity: 1;
    visibility: visible;
}

.newsletter-form div.wpforms-container-full .wpforms-form button[type=submit]:hover {
    border: none;
    color: #FFF;
    background-color: var(--primary-color);
}

.mstg-footer {
    padding: 0;
    background: unset;
}

.mstg-footer-top {
    padding: 64px 0;
    background-color: #000000;
}

.footer-logo {
    text-align: center;
    margin: 0 0 30px;
}

.footer-logo a {
    display: inline-block;
    vertical-align: top;
}

.footer-logo a img {
    display: block;
    max-width: 188px;
}

.mstg-footer .footer__links {
    flex-wrap: wrap;
    column-gap: 32px;
    row-gap: 16px;
    justify-content: center;
    margin: 0 0 32px;
    flex-direction: unset;
}

.mstg-footer .footer__links li:not(:last-child) {
    border: none;
    padding: 0;
    margin: 0;
}

.mstg-footer .footer__links li a {
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 16px;
    line-height: 126%;
}

.footer-text p {
    font-family: var(--body-font);
    color: #888888;
    font-size: 16px;
    font-weight: 400;
    line-height: 146%;
    max-width: 1005px;
    margin: 0 auto;
    text-align: center;
}

.copyright-bar {
    background-color: var(--primary-color);
    padding: 10px 0;
}

.copyright-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.copyright-bar p {
    font-family: var(--body-font);
    color: #FFFFFF;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0%;
}

.copyright-bar .footer_quick_links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    row-gap: 5px;
}

.copyright-bar .footer_quick_links li {
    line-height: normal;
}

.copyright-bar .footer_quick_links li a {
    color: #FFFFFF;
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
}

.copyright-bar .footer_quick_links li a:hover {
    opacity: 0.6;
}

.arrow-up {
    background-color: var(--primary-color);
    height: 48px;
    width: 48px;
}

.arrow-up img {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    filter: brightness(0) invert(1);
}

.best-products-list .slick-list {
    margin: 0 -10px;
}

.best-products-list .slick-slide {
    padding: 0 10px;
}

.best-products-list .best-product-item {
    position: relative;
}

.best-product-item .card-content {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.best-product-item .card-content .product-image {
    display: block;
    width: 100%;
    position: relative;
    padding-bottom: 120%;
}

.best-product-item .card-content .product-image img {
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    height: 100%;
    object-fit: cover;
}

.best-product-item .card-content .card-detail-wrap {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
    backdrop-filter: blur(30px);
    padding: 18px 22px;
    pointer-events: none;
}

.best-product-item .card-content .card-detail-wrap .product-title {
    font-family: var(--body-font);
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
    line-height: 116%;
    text-transform: capitalize;
    margin: 0 0 5px;
}

.best-product-item .card-content .card-detail-wrap .price {
    font-family: var(--body-font);
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    line-height: 100%;
    text-transform: capitalize;
}

.best-product-item .card-content .card-detail-wrap .price del {
    display: none;
}

.best-product-item .card-cta {
    position: absolute;
    right: 15px;
    left: auto;
    top: 15px;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease all;
}

.best-product-item:hover .card-cta {
    opacity: 1;
    visibility: visible;
}

.best-product-item .card-cta a {
    height: 32px;
    width: 32px;
    display: block;
    background-color: var(--primary-color);
    font-size: 0;
    background-image: url(images/icons/cart-icon-white.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
    text-indent: -9999px;
    cursor: pointer;
    border-radius: 100px;
}

.slick-dots {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 50px 0 0;
    list-style-type: none;
}

.slick-dots li {
    margin: 0 5px;
}

.slick-dots button {
    display: block;
    width: 13px;
    height: 13px;
    padding: 0;
    border: none;
    border-radius: 100%;
    background-color: #D9D9D9;
    text-indent: -9999px;
    cursor: pointer;
}

.slick-dots li.slick-active button {
    background-color: var(--primary-color);
}
.our-newsletter-wrapper .wpforms-confirmation-container-full p {
    color: #000;
    text-align: center;
    font-size: 16px;
}
p:empty {
    display: none;
}
.our-newsletter-wrapper .btn-wrap {
    text-align: center;
    margin-top: 25px;
}
.reviews-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.review-card {
    background-color: #F2F2F2;
    padding: 24px;
    border-radius: 16px;
    width: calc(25% - 23px);
}
.review-card p{
    font-family: var(--body-font);
    color: #1A1A1A;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}
.review-card  .reviewer-icon {
    background-color: #3686F7;
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: center;
    height: 40px;
    width: 40px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px auto;
    color: #FFF;
    display: none;
}
.reviewer-name{
    font-family: var(--body-font);
    color: #1A1A1A;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    text-align: center;
    margin-top: 12px;
}

.review-stars {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin: 0 0 16px;
}

.review-stars img {
    display: block;
}
.show-in-mobile{
    display: none;
}

.newsletter-form div.wpforms-container-full .wpforms-form .wpforms-submit-container .wpforms-submit-spinner{
    margin: 0 auto;
    position: absolute;
    top: 50%;
    z-index: 9;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    filter: brightness(0) invert(1);
}

@media (max-width: 1100px) {
    :root {
        --font-40: 36px;
    }

    .mst-header-bottom {
        background: transparent;
        position: relative;
        bottom: unset;
        width: 100%;
        padding: 0;
        backdrop-filter: unset;
        z-index: 99;
    }
    body:not(.home) .mst-header-bottom{
        position: relative;
    }
    .nav-wrapper {
        background: #000;
        max-width: 100%;
        height: 100vh;
        z-index: 9;
    }

    .mst-header-bottom .header__menu li {
        margin-right: 0;
    }

    .sec-head-cta,
    .sec-head {
        margin: 0 0 42px;
        position: relative;
    }

    .sec-head h2 {
        margin-bottom: 20px;
    }

    .mst-hero-banner .banner__bg {
        padding-bottom: 580px;
    }

    .banner_text_wrapper .banner__text h1 {
        font-size: 54px;
    }

    .banner_text_wrapper .banner__text a.cta-btn {
        margin-top: 30px;
    }

    .reviews-bar-wrapper .review .label,
    .reviews-bar-wrapper .review .text {
        font-size: 16px;
    }

    .mst-header .header__logo {
        max-width: 150px;
        margin: 0;
        min-height: 68px;
    }
    .mst-product-review .card .card__date {
        position: unset;
    }
    .mst-sponsor-sec .sponsors__list{
        justify-content: center;
    }
    .featured-video .video iframe {
        width: 100%;
        height: 420px;
    }

    .mst-product-review .card__bottom .card__text .card__title {
        font-size: 16px;
    }

    .mstg-categories .categories__wrapper .categories__list {
        gap: 15px;
    }

    .mstg-categories .categories__wrapper .categories__list li a {
        font-size: 16px;
        padding: 16px;
        border-radius: 12px;
    }

   .slick-arrow {
        height: 42px;
        width: 42px;
    }

    .slick-next {
        left: 60px;
        right: auto;
    }

    .slick-arrow.slick-prev::before,
    .slick-arrow.slick-next::before {
        background-size: 14px;
    }

    .card_img_wrap .author .card__author {
        font-size: 16px;
    }

    .sec-head-cta p {
        font-size: 16px;
    }

    .popular-product.mst-product-review {
        padding: 48px 0;
    }

    .mstg-social-card {
        padding: 18px;
    }

    .team-member-wrapper {
        gap: 24px;
        justify-content: center;
    }

    .team-member:nth-child(even) {
        margin-top: 45px;
    }

    .team-member {
       
    }

    .mstg-team-section::before {
        width: 200px;
        top: -150px;
        background-size: 100%;
    }

    .our-newsletter-sec {
        padding: 24px 0 48px;
    }

    .our-newsletter-wrapper {
        padding: 30px 15px;
    }

    .our-newsletter-wrapper h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .our-newsletter-wrapper p {
        font-size: 16px;
    }
    .reviews-wrapper{
        gap: 20px;
    }
    .review-card{
        width: calc(33.33% - 14px);
    }
}

@media (max-width: 1015px) {
    .reviews-bar-wrapper .divider {
        display: none;
    }

    .reviews-bar .reviews-bar-wrapper {
        display: block;
        max-width: 264px;
        margin: 0 auto;
    }
    .reviews-bar-wrapper .review{
        gap: 20px;
    }
    .reviews-bar-wrapper .review .logo {
        margin-right: auto;
    }
    .reviews-bar-wrapper .review.google .logo{
        margin-left: 24px;
    }
    .reviews-bar-wrapper .review.trustpilot {
        padding-bottom: 15px;
        margin-bottom: 15px;
        padding-right: 0;
        margin-right: 0;
        position: relative;
    }

    .reviews-bar-wrapper .review.trustpilot::before {
        position: absolute;
        content: "";
        width: 100%;
        max-width: 150px;
        height: 1px;
        top: auto;
        bottom: 0;
        transform: unset;
        left: 0;
        right: 0;
        margin: 0 auto;
        border-bottom: 1px solid #000;
    }

    .reviews-bar-wrapper .review .stars img {
        max-width: 120px;
    }
}

@media (max-width: 768px) {
    :root {
        --font-40: 30px;
    }

    .cta-btn {
        font-size: 14px;
    }

    .cta-link {
        font-size: 14px;
    }

    .sec-head-cta,
    .sec-head {
        margin: 0 0 30px;
    }

    .sec-head h2 {
        margin-bottom: 16px;
    }

    .sec-head p {
        font-size: 16px;
    }
    .sec-head .subheading{
        font-size: 16px;
    }
    .sec-head p br {
        display: none;
    }

    .sec-head-cta {
        display: block;
        text-align: center;
    }
     .sec-head-cta .cta-btn{
        display: none;
     }
    .show-in-mobile {
        display: block;
        text-align: center;
        margin-top: 35px;
    }
    .latest-post .sec-head-cta h2 {
        color: #FFF;
        margin-bottom: 15px;
        text-align: center;
    }

    .sec-head-cta .cta-btn {
        margin-top: 20px;
    }

    .mst-header .header__search-panel input[type="search"] {
        font-size: 14px;
        padding-left: 42px;
        min-height: 50px;
    }
    .mstg-top-bar {
        min-height: 40px;
    }
    .card_img_wrap .author .card__author {
        font-size: 14px;
    }

    .banner_text_wrapper .banner__text a.cta-btn {
        font-size: 16px;
    }

    .mst-header .header__logo {
        max-width: 120px;
        min-height: 54px;
    }

    .mst-header-top {
        flex-wrap: wrap;
        padding: 15px 0;
    }

    .mstg-search {
        max-width: 100%;
        padding: 0;
        order: 3;
        margin-top: 10px;
    }

    .mstg-icons {
        order: 2;
    }

    .banner_text_wrapper .banner__text {
        padding: 0;
        background: transparent;
    }

    .mst-hero-banner .banner__bg {
        padding-bottom: 480px;
    }

    .banner_text_wrapper .banner__text h1 {
        font-size: 26px;
    }

    .banner_text_wrapper .banner__text h2 {
        font-size: 18px;
    }

    .banner_text_wrapper .banner__text a.cta-btn {
        margin-top: 30px;
        min-height: 50px;
        min-width: 162px;
    }

    .banner_text_wrapper {
        bottom: 35px;
    }

    .popular-product.mst-product-review {
        padding: 20px 0 48px;
        background: unset;
    }

    .reviews-bar-wrapper .review .label,
    .reviews-bar-wrapper .review .text {
        font-size: 14px;
        display: none;
    }

    .featured-video .video iframe {
        width: 100%;
        height: 360px;
    }

    .mstg-categories .categories__wrapper .categories__list {
        gap: 12px;
    }

    .mstg-categories .categories__wrapper .categories__list li a {
        font-size: 14px;
        padding: 12px;
        border-radius: 8px;
    }

    .mstg-product-slider.slick-slider {
        padding-bottom: 60px;
    }

    .mstg-team-section {
        padding: 48px 0;
    }

    .mstg-team-section::before {
        height: 290px;
        width: 110px;
        top: -90px;
        right: 0px;
        background-size: 100%;
    }

    .team-member-wrapper {
        gap: 16px;
        justify-content: center;
    }

    .team-member-img img {
        height: 180px;
    }

    .team-member:nth-child(even) {
        margin-top: 30px;
    }

    .mstg-social-card {
        padding: 12px;
    }

    .our-newsletter-sec {
        padding: 0 0 48px;
    }

    .our-newsletter-wrapper h2 {
        font-size: 22px;
    }

    .our-newsletter-wrapper p {
        font-size: 14px;
    }

    .newsletter-form form.wpforms-form {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 20px;
    }

    .mstg-footer-top {
        padding: 32px 0;
    }

    .footer-logo a img {
        max-width: 134px;
    }

    .footer-text p {
        font-size: 14px;
    }

    .mstg-footer .footer__links {
        margin-bottom: 20px;
        gap: 16px;
    }

    .footer-logo {
        margin-bottom: 15px;
    }

    .mstg-footer .footer__links li a {
        font-size: 14px;
    }

    .copyright-wrapper {
        justify-content: center;
        text-align: center;
        gap: 15px;
    }

    .mstg-social-card .icon {
        height: 40px;
        width: 40px;
    }

    .mstg-social-card span {
        font-size: 14px;
    }

    .mstg-social-card .icon img {
        max-width: 20px;
    }
    .slick-dots{
        padding: 30px 0 0;
    }
    .mstg-social-grid{
        gap: 12px;
    }
    .reviews-wrapper{
        gap: 16px;
    }
    .review-card{
        padding: 18px 12px;
        width: calc(50% - 8px);
    }
    .customer-review-sec,
    .mstg-categories {
        padding: 24px 0;
    }
    .mstg-social-media{
        padding-bottom: 24px;
    }
    .mstg-social-card{
        max-width: 242px;
    }
    .review-card p{
        font-size: 14px;
    }
    .play-button{
        height: 40px;
        width: 40px;
        background-size: 12px;
    }
    .header.mst-header{
        position: unset;
    }
    .mst-hero-banner {
        padding: 0;
    }
    .card__bottom .card__text .card__excerpt{
        font-size: 14px;
        line-height: 20px;
    }
}

@media (max-width: 478px) {
    .mstg-top-bar p{
        font-size: 12px;
    }
    .team-member-wrapper {
        gap: 10px;
        row-gap: 20px;
        justify-content: unset;
    }
    .team-member {
        width: 100%;
        max-width: 30.9%;
    }
    .sponsors__list li {
        width: calc(50% - 20px);
    }
    .review-card{
        width: 100%;
    }
    .mstg-product-slider.slick-slider {
        padding-bottom: 0;
    }
    .mst-product-review .cards .card {
        display: none;
    }
    .mst-product-review .cards .card:nth-child(-n+4) {
        display: block;
    }
}