* {
    margin: 0;
    padding: 0;
}

body {
    background: #FFFFFF;
}

:root {
    --baseColor: #505050;
    --secondaryColor: #f6f6fa;
    --lightColor: #FFFFFF;
    --grayColor: #F7F7F7;
    --darkColor: #333333;
    --blackColor: #262325;
    --orangeColor: #f98c29;
    --redColor: #f92f00;
    --redlightColor: #f92f00;
    --grayTexts: #666666;

    --baseFont: "Roboto", sans-serif;
    --secondaryFont: "Poppins", sans-serif;
}


/* ===== CSS For "Common Cases" Starts Here ===== */
a {
    text-decoration: none;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

a:hover {
    text-decoration: none;
}

img,
video {
    max-width: 100%;
    vertical-align: middle;
}

/* ======================== */

.grid_item {
    display: -ms-grid;
    display: grid;
    -ms-flex-line-pack: center;
    align-content: center;
}

/* ======================== */

.heading {
    margin-bottom: 20px;
}

.heading h2 {
    color: var(--blackColor);
    font-family: var(--baseFont);
    font-weight: 800;
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 0px;
}

.heading h3 {
    color: var(--blackColor);
    font-family: var(--baseFont);
    font-weight: 900;
    font-size: 32px;
    line-height: 1.2;
    text-transform: capitalize;
    margin-bottom: 0px;
}

.heading h5 {
    color: var(--orangeColor);
    font-family: var(--baseFont);
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3;
    text-transform: capitalize;
    margin-bottom: 0px;
    margin-top: 8px;
}

.heading p {
    color: var(--darkColor);
    font-family: var(--baseFont);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    max-width: 920px;
    margin: 0px auto;
    margin-top: 40px;
}

.heading .head_line {
    margin-top: 10px;
    line-height: 1;
}

.heading .head_line span {
    width: 100px;
    height: 7px;
    background: #E0E0E0;
    border-radius: 10px;
    display: inline-block;
}

/* ======================== */

.sub_heading {
    margin-bottom: 10px;
}

.sub_heading h4 {
    color: var(--darkColor);
    font-family: var(--baseFont);
    font-weight: 900;
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 0px;
}

.sub_heading h5 {
    color: var(--darkColor);
    font-family: var(--baseFont);
    font-weight: 600;
    font-size: 18px;
    line-height: 1;
    margin-bottom: 0px;
}

/* ======================== */

.para_texts p {
    color: var(--grayTexts);
    font-family: var(--baseFont);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.para_texts p:last-child {
    margin-bottom: 0px;
}

/* ======================== */

.cta_btn_wrap {
    margin-top: 20px;
}

.cta_btn {
    color: var(--lightColor);
    background: var(--redColor);
    font-family: var(--secondaryFont);
    font-weight: 700;
    font-size: 18px;
    border-radius: 10px;
    min-width: 200px;
    text-align: center;
    display: inline-block;
    padding: 14.5px 15px;
    text-transform: uppercase;
    text-decoration: none;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.cta_btn:hover {
    color: var(--lightColor);
    background: #ff5027;
    text-decoration: none;
}

/* ===== CSS For "Common Cases" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Header" Starts Here ===== */
.header .special_offer {
    background: var(--blackColor);
    text-align: center;
    padding: 7px 0px;
}

.header .special_offer h5 {
    color: var(--lightColor);
    font-family: var(--baseFont);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 0px;
}

.header .order_advantages_wrap {
    background: var(--secondaryColor);
    padding: 7.5px 0px;
}

.header .order_advantages {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 10px;
}

.header .order_advantages h6 {
    color: var(--blackColor);
    font-family: var(--baseFont);
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 0px;
    text-transform: uppercase;
    padding-left: 24px;
    background: url('images/UK_Flag.png') no-repeat;
    background-position: left center;
    background-size: 16px 16px;
}

.header .order_advantages ul {
    margin-bottom: 0px;
    font-size: 0px;
    text-align: right;
}

.header .order_advantages ul li {
    list-style: none;
    display: inline-block;
    margin-right: 15px;

    color: var(--blackColor);
    font-family: var(--baseFont);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    padding-left: 24px;
}

.header .order_advantages ul li:last-child {
    margin-right: 0px;
}

.header .order_advantages ul li:nth-child(1) {
    background: url('images/Icon_Shipping.svg') no-repeat;
    background-position: left center;
    background-size: 16px 16px;
}

.header .order_advantages ul li:nth-child(2) {
    background: url('images/Icon_Refund.svg') no-repeat;
    background-position: left center;
    background-size: 16px 16px;
}

/* ===== CSS For "Header" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Navbar" Ends Here ===== */
.humbergur_icon {
    width: 30px;
    height: 20px;
    position: relative;
    margin: 0px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.humbergur_icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    border-radius: 10px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.humbergur_icon span {
    background: var(--baseColor);
}

.humbergur_icon span:nth-child(1) {
    top: 0px;
}

.humbergur_icon span:nth-child(2),
.humbergur_icon span:nth-child(3) {
    top: 10px;
}

.humbergur_icon span:nth-child(4) {
    top: 20px;
}

.humbergur_icon.open span:nth-child(1) {
    top: 11px;
    width: 0%;
    left: 50%;
}

.humbergur_icon.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.humbergur_icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.humbergur_icon.open span:nth-child(4) {
    top: 11px;
    width: 0%;
    left: 50%;
}

/* ============================== */
/* ============================== */

.navbar-toggler {
    padding: 0px;
}

.navbar {
    background: var(--lightColor);
    padding: 10px 0px;
    z-index: 999999;
    border-bottom: 1px solid #F0F0F0;
}

.navbar .navbar-brand {
    padding: 0px;
    line-height: 1;
}

.navbar .navbar-brand img {
    width: 195px;
}

.navbar .navbar-nav .nav-item {
    display: -ms-grid;
    display: grid;
    -ms-flex-line-pack: center;
    align-content: center;
    margin-right: 24px;
}

.navbar .navbar-nav .nav-item:last-child {
    margin-right: 0px;
}

.navbar .navbar-nav .nav-item .nav-link {
    color: var(--darkColor);
    font-family: var(--baseFont);
    font-weight: 500;
    font-size: 14px;
    padding: 0px;
    text-transform: uppercase;
    position: relative;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.navbar .navbar-nav .nav-item .nav-link:hover {
    color: var(--baseColor);
}

.navbar .navbar-nav .nav-item .nav_btn {
    padding: 0px;
    min-width: inherit;
    position: relative;
    top: -2px;
}

/* ===== CSS For "Navbar" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Hero Banner" Starts Here ===== */
.hero_banner_wrap {
    background: #FAFAFA;
    padding: 40px 0px;
}

.hero_banner {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 1fr 45px 575px;
    grid-template-columns: 1fr 575px;
    grid-auto-rows: auto;
    gap: 45px;
}

.hero_banner .mean_ratings_reviews ul {
    margin-bottom: 12px;
    font-size: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.hero_banner .mean_ratings_reviews ul li {
    list-style: none;
    line-height: 1;
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid var(--grayTexts);

    color: var(--grayTexts);
    font-family: var(--baseFont);
    font-weight: 400;
    font-size: 14px;
}

.hero_banner .mean_ratings_reviews ul li:last-child {
    margin-right: 0px;
    padding-right: 0px;
    border-right: none;
}

.hero_banner .mean_ratings_reviews ul li img {
    width: 85px;
    margin-right: 5px;
    position: relative;
    top: -2px;
}

/* ============================== */

.hero_banner .bullet_points h5 {
    color: var(--grayTexts);
    font-family: var(--baseFont);
    font-weight: 600;
    font-size: 18px;
    line-height: 1;
    margin-bottom: 15px;
}

.hero_banner .bullet_points ul {
    margin-bottom: 0px;
}

.hero_banner .bullet_points ul li {
    list-style: none;
    color: var(--grayTexts);
    font-family: var(--baseFont);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 5px;
    padding-left: 30px;
    background: url('images/Check_Mark_Circle.png') no-repeat;
    background-position: left center;
    background-size: 20px 20px;
}

.hero_banner .bullet_points ul li:last-child {
    margin-bottom: 0px;
}

/* ============================== */

.hero_banner .happy_customers_instock {
    margin: 20px 0px;
    background: var(--lightColor);
    border: 1px solid #E9E9E9;
    border-radius: 4px;
    padding: 8px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.hero_banner .happy_customers_instock img {
    width: 60px;
}

.hero_banner .happy_customers_instock h6 {
    color: var(--grayTexts);
    font-family: var(--baseFont);
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    margin-bottom: 0px;
}

.hero_banner .happy_customers_instock .happy_customers {
    border-right: 1px solid #E9E9E9;
    padding-right: 15px;
    margin-right: 15px;
}

.hero_banner .happy_customers_instock .instock h6 {
    color: #53A179;
    font-weight: 700;
    position: relative;
    padding-left: 15px;
}

.hero_banner .happy_customers_instock .instock h6:before {
    content: "";
    width: 8px;
    height: 8px;
    background: #53A179;
    border-radius: 50%;
    position: absolute;
    left: 0px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* ============================== */

.hero_banner .cta_btn_wrap .cta_btn {
    display: block;
}

/* ============================== */

.hero_banner .highlighted_facts {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    gap: 15px;
    margin-top: 15px;
}

.hero_banner .highlighted_facts .single_fact {
    text-align: center;
}

.hero_banner .highlighted_facts .single_fact .icon {
    margin-bottom: 8px;
}

.hero_banner .highlighted_facts .single_fact .icon img {
    max-width: 24px;
}

.hero_banner .highlighted_facts .single_fact .texts h6 {
    color: var(--grayTexts);
    font-family: var(--baseFont);
    font-weight: 500;
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 0px;
}

/* ============================== */

.gallery-container {
    position: relative;
    display: grid;
    overflow: hidden;
    grid-template-columns: 475px 1fr;
    grid-auto-rows: auto;
    gap: 12.5px;
}

.gallery-main {
    width: 475px;
    height: 475px;
    position: relative;
    overflow: hidden;
}

.gallery-main .swiper-slide img {
    border-radius: 8px;
}

.gallery-main .swiper-button-prev,
.gallery-main .swiper-button-next {
    position: absolute;
    bottom: inherit;
    right: 0;
    top: 55%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: auto;
    height: 36px;
    width: 36px;
    color: var(--blackColor);
    background: rgba(255, 255, 255, 0.75);
    border-radius: 7.5px;
}

.gallery-main .swiper-button-prev::after,
.gallery-main .swiper-button-next::after {
    font-size: 20px;
}

.gallery-main .swiper-button-prev {
    left: 15px;
}

.gallery-main .swiper-button-next {
    right: 15px;
}

.gallery-thumbs {
    order: 2;
    width: 85px;
    height: 475px;
}

.gallery-thumbs .swiper-slide {
    width: 85px !important;
    height: 85px !important;
}

.gallery-thumbs .swiper-slide img {
    border-radius: 4px;
}

.gallery-thumbs .swiper-slide-active {
    opacity: 0.9;
}

.gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

.gallery-thumbs .swiper-slide-thumb-active img {
    border: 1px solid var(--baseColor);
}

/* ===== CSS For "Hero Banner" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


.cm_logos {
    background: var(--blackColor);
    padding: 24px 0px;
}

.cm_logos .desktop_cm_logos {
    max-width: 1000px;
    margin: 0px auto;
}

.logo_scroller_wrap {
    position: relative;
}

.logo_scroller_wrap:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    z-index: 9999;
    background: -webkit-linear-gradient(90deg, black, transparent 5%, transparent 95%, black);
    background: -o-linear-gradient(90deg, black, transparent 5%, transparent 95%, black);
    background: linear-gradient(90deg, black, transparent 5%, transparent 95%, black);
}

.logo_scroller {
    display: none;
}

.logo_scroller img {
    height: 24px;
}

@media (max-width: 575.98px) {

    .cm_logos .desktop_cm_logos {
        display: none;
    }

    .logo_scroller {
        display: block;
    }

}

/*	Small devices (landscape phones, 576px and up)	*/
@media (min-width: 576px) and (max-width: 767.98px) {
    .cm_logos .desktop_cm_logos {
        display: none;
    }

    .logo_scroller {
        display: block;
    }
}

/*	Medium devices (tablets, 768px and up)	*/
@media (min-width: 768px) and (max-width: 991.98px) {
    .cm_logos .desktop_cm_logos {
        display: none;
    }

    .logo_scroller {
        display: block;
    }
}


.preview_media video {
    width: 100%;
    vertical-align: middle;
    border-radius: 20px;
}

/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Features" Starts Here ===== */
.features_wrap {
    background: #F5F5F5;
    padding: 55px 0px;
}

.features_wrap .heading {
    text-align: center;
    margin-bottom: 40px;
}

.features {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 115px 300px 115px 1fr;
    grid-template-columns: 1fr 300px 1fr;
    grid-auto-rows: auto;
    gap: 115px;
}

.features .product_image {
    display: -ms-grid;
    display: grid;
    -ms-flex-line-pack: center;
    align-content: center;
}

.features .single_feature {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 48px 16px 1fr;
    grid-template-columns: 48px 1fr;
    grid-auto-rows: auto;
    gap: 16px;
    margin-bottom: 32px;
}

.features .single_feature:last-child {
    margin-bottom: 0px;
}

.features .single_feature .texts h6 {
    color: var(--darkColor);
    font-family: var(--baseFont);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 0px;
}

/* ===== CSS For "Features" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Perfect Device" Starts Here ===== */
.perfect_device {
    background: var(--lightColor);
    padding: 55px 0px;
}

.perfect_device .heading {
    text-align: center;
    margin-bottom: 40px;
}

.perfect_device .heading.heading_inside {
    text-align: left;
    margin-bottom: 20px;
}

.perfect_device .heading.heading_inside .head_line span {
    width: 50px;
}

.perfect_device .txts_img {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 580px 40px 1fr;
    grid-template-columns: 580px 1fr;
    grid-auto-rows: auto;
    gap: 40px;
}

.perfect_device .img_txts {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 480px 40px 1fr;
    grid-template-columns: 480px 1fr;
    grid-auto-rows: auto;
    gap: 40px;
    margin: 40px 0px;
}

.perfect_device .img_wrap .image img {
    width: 100%;
    border-radius: 20px;
}

.perfect_device .cta_btn_wrap .cta_btn {
    min-width: 264px;
}

.perfect_device .highlighted_points {
    margin-top: 24px;
}

.perfect_device .highlighted_points .single_point {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 52px 16px 1fr;
    grid-template-columns: 52px 1fr;
    grid-auto-rows: auto;
    gap: 16px;
    margin-bottom: 24px;
}

.perfect_device .highlighted_points .single_point:last-child {
    margin-bottom: 0px;
}

.perfect_device .highlighted_points .single_point .sub_heading {
    margin-bottom: 5px;
}

/* ===== CSS For "Perfect Device" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Keep Memory Safe" Starts Here ===== */
.keep_memory_safe_wrap {
    background: #F5F5F5;
    padding: 55px 0px;
}

.keep_memory_safe_wrap .heading {
    text-align: center;
    margin-bottom: 40px;
}

.keep_memory_safe_wrap .para_texts {
    text-align: center;
    max-width: 880px;
    margin: 0px auto;
    margin-bottom: 40px;
}

.keep_memory_safe_wrap .para_texts p {
    color: var(--darkColor);
}

.keep_memory_safe {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    gap: 30px;
}

.keep_memory_safe .single_box {
    background: var(--lightColor);
    border: 1px solid #F0F0F0;
    border-radius: 20px;
    padding: 15px;
    text-align: center;
}

.keep_memory_safe .single_box .icon {
    margin-bottom: 15px;
}

.keep_memory_safe .single_box .icon img {
    max-width: 85px;
}

.keep_memory_safe .single_box .texts h5 {
    color: var(--darkColor);
    font-family: var(--baseFont);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 5px;
}

.keep_memory_safe .single_box .texts p {
    color: var(--grayTexts);
    font-family: var(--baseFont);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0px;
}

/* ===== CSS For "Keep Memory Safe" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Steps" Starts Here ===== */
.steps_wrap {
    background: var(--lightColor);
    padding: 55px 0px;
}

.steps_wrap .heading {
    text-align: center;
    margin-bottom: 40px;
}

.steps_wrap .para_texts {
    max-width: 880px;
    margin: 0px auto;
    margin-bottom: 40px;
    text-align: center;
}

.steps_wrap .para_texts p {
    color: var(--darkColor);
}

.steps {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 30px;
}

.steps .single_step {
    border: 1px solid #E0E0E0;
    border-radius: 20px;
}

.steps .single_step .image {
    position: relative;
}

.steps .single_step .image .step_number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    line-height: 46px;
    display: inline-block;
    background: var(--lightColor);
    text-align: center;
    border: 1px solid #E0E0E0;
    color: var(--orangeColor);
    font-family: var(--secondaryFont);
    font-weight: 700;
    font-size: 20px;
    position: absolute;
    left: 15px;
    top: 15px;
}

.steps .single_step .image img {
    border-radius: 20px 20px 0px 0px;
}

.steps .single_step .texts {
    padding: 20px 15px;
}

.steps .single_step .box_heading {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 32px 12px 1fr;
    grid-template-columns: 32px 1fr;
    grid-auto-rows: auto;
    gap: 12px;
    margin-bottom: 15px;
}

.steps .single_step .box_heading .sub_heading {
    margin-bottom: 0px;
}

.steps .single_step p {
    color: var(--grayTexts);
    font-family: var(--baseFont);
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 0px;
}

/* ===== CSS For "Steps" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Horizontal Scrolling Texts" Starts Here ===== */
.scroller_wrap {
    position: relative;
    margin: 0px auto;
    width: 100%;
    overflow: hidden;
    padding: 20px 0px;
    background: #000000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: Center;
    -ms-flex-pack: Center;
    justify-content: Center;
}

.scroller_wrap:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    background: -webkit-linear-gradient(90deg, black, transparent 5%, transparent 95%, black);
    background: -o-linear-gradient(90deg, black, transparent 5%, transparent 95%, black);
    background: linear-gradient(90deg, black, transparent 5%, transparent 95%, black);
}

.scroller {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    will-change: transform;

    -webkit-animation: movingTexts 20s linear infinite;
    animation: movingTexts 20s linear infinite;
}

.scroller p {
    color: var(--lightColor);
    font-family: var(--baseFont);
    font-weight: 900;
    font-size: 20px;
    line-height: 1;
    text-transform: capitalize;
    text-wrap: nowrap;
    white-space: nowrap;
    max-width: 100%;
    margin-right: 80px;
    margin-bottom: 0px;
}

@-webkit-keyframes movingTexts {
    100% {
        -webkit-transform: translate(-25%);
        -ms-transform: translate(-25%);
        transform: translate(-25%);
    }
}

@keyframes movingTexts {
    100% {
        -webkit-transform: translate(-25%);
        -ms-transform: translate(-25%);
        transform: translate(-25%);
    }
}


.mscroller_wrap {
    position: relative;
    margin: 0px auto;
    width: 100%;
    overflow: hidden;
    padding: 7.5px 0px;
    background: #F0F5FF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: Center;
    -ms-flex-pack: Center;
    justify-content: Center;

    display: none;
}

.mscroller {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    will-change: transform;

    -webkit-animation: movingTextsM 50s linear infinite;
    animation: movingTextsM 50s linear infinite;
}

.mscroller p {
    color: var(--blackColor);
    font-family: var(--baseFont);
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    text-transform: capitalize;
    text-wrap: nowrap;
    white-space: nowrap;
    max-width: 100%;
    margin-right: 20px;
    margin-bottom: 0px;
    padding: 2px 0px;
    padding-left: 24px;
}

.mscroller p.fasts {
    background: url('images/Icon_Shipping.svg') no-repeat;
    background-position: left center;
    background-size: 16px 16px;
}

.mscroller p.mback {
    background: url('images/Icon_Refund.svg') no-repeat;
    background-position: left center;
    background-size: 16px 16px;
}

@-webkit-keyframes movingTextsM {
    100% {
        -webkit-transform: translate(-50%);
        -ms-transform: translate(-50%);
        transform: translate(-50%);
    }
}

@keyframes movingTextsM {
    100% {
        -webkit-transform: translate(-50%);
        -ms-transform: translate(-50%);
        transform: translate(-50%);
    }
}

/* ===== CSS For "Horizontal Scrolling Texts" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Peace of Mind" Starts Here ===== */
.peach_of_mind_wrap {
    background: var(--lightColor);
    padding: 55px 0px;
}

.peach_of_mind_wrap .heading {
    text-align: center;
    margin-bottom: 40px;
}

.peach_of_mind {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 30px;
}

.peach_of_mind .single_box {
    text-align: center;
}

.peach_of_mind .single_box .image img {
    width: 100%;
}

.peach_of_mind .single_box .texts {
    padding: 15px;
    padding-bottom: 0px;
}

.peach_of_mind .single_box .five_ratings {
    line-height: 1;
    margin-bottom: 10px;
}

.peach_of_mind .single_box .five_ratings img {
    width: 85px;
}

.peach_of_mind .single_box .para_texts p {
    font-size: 14px;
}

/* ===== CSS For "Peace of Mind" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Configuration" Starts Here ===== */
.product_config_wrap {
    background: #F5F5F5;
    padding: 55px 0px;
}

.product_config_wrap .heading {
    text-align: center;
    margin-bottom: 40px;
}

.product_config {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 40px 1fr 40px 1fr 40px 1fr 40px 1fr 40px 1fr;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: auto;
    gap: 40px;
}

.product_config .single_config {
    text-align: center;
}

.product_config .single_config .icon {
    margin-bottom: 12px;
}

.product_config .single_config .icon img {
    max-width: 56px;
}

.product_config .single_config .texts h6 {
    color: var(--darkColor);
    font-family: var(--baseFont);
    font-weight: 700;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0px;
}

/* ===== CSS For "Configuration" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Comparison" Starts Here ===== */
.comparison {
    background: #FAFAFA;
    padding: 55px 0px;
}

.comparison .heading {
    text-align: center;
    margin-bottom: 40px;
}

.comparison .comparison_table {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 0px 460px;
    grid-template-columns: 1fr 460px;
    grid-auto-rows: auto;
    gap: 0px;
}

.comparison .comparison_table .table_cell {
    height: 50px;
    display: -ms-grid;
    display: grid;
    -ms-flex-line-pack: center;
    align-content: center;
    background: var(--lightColor);
    padding: 15px;
}

.comparison .comparison_table .table_cell h3 {
    color: var(--baseColor);
    font-family: var(--baseFont);
    font-weight: 600;
    font-size: 32px;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 0px;
}

.comparison .comparison_table .table_header .table_cell h3 .break {
    display: block;
}

.comparison .comparison_table .table_cell .product_image {
    text-align: center;
}

.comparison .comparison_table .table_cell .product_image img {
    max-width: 220px;
}

.comparison .comparison_table .table_cell .cloud_storage {
    text-align: center;
}

.comparison .comparison_table .table_cell .cloud_storage img {
    max-width: 48px;
}

.comparison .comparison_table .table_cell .cloud_storage h5 {
    color: var(--darkColor);
    font-family: var(--baseFont);
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    margin-top: 15px;
    margin-bottom: 0px;
}

.comparison .comparison_table .table_cell:first-child {
    height: 230px;
    background: transparent;
}

.comparison .comparison_table .table_cell:nth-child(even) {
    background: #e0e0e0;
}

.comparison .comparison_table .table_cell:first-child {
    margin-bottom: 15px;
    padding: 5px;
}

.comparison .comparison_table .table_header .table_cell:first-child {
    padding: 15px;
}

.comparison .comparison_table .table_header .table_cell h4 {
    color: var(--darkColor);
    font-family: var(--baseFont);
    font-weight: 500;
    font-size: 16px;
    text-transform: capitalize;
    margin-bottom: 0px;
}

.comparison .table_body {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 0px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 0px;
}

.comparison .comparison_table .table_body .table_cell {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.comparison .comparison_table .table_body .table_cell>img {
    max-width: 20px;
}

.comparison .comparison_table .table_header .table_cell:nth-child(2) {
    border-radius: 10px 0px 0px 0px;
}

.comparison .comparison_table .table_header .table_cell:last-child {
    border-radius: 0px 0px 0px 10px;
}

.comparison .comparison_table .table_body .single_product:last-child .table_cell:nth-child(2) {
    border-radius: 0px 10px 0px 0px;
}

.comparison .comparison_table .table_body .single_product:last-child .table_cell:last-child {
    border-radius: 0px 0px 10px 0px;
}

.comparison .comparison_table .table_body .single_product:last-child .table_cell:first-child {
    background: #e9e9e9;
    border-radius: 10px;
}

/* ===== CSS For "Comparison" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Happy Clients" Starts Here ===== */
.happy_clients {
    background: var(--lightColor);
    padding: 55px 0px;
}

.happy_clients .heading {
    text-align: center;
    margin-bottom: 40px;
}


.ratings {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 120px 20px 290px 20px 1fr;
    grid-template-columns: 120px 290px 1fr;
    grid-auto-rows: auto;
    gap: 20px;
    max-width: 880px;
    margin: 0px auto;
    margin-bottom: 40px;
}

.ratings .summary {
    text-align: center;
    border-right: 1px solid #F0F0F0;
    padding-right: 20px;
}

.ratings .the_progress {
    border-right: 1px solid #F0F0F0;
    padding-right: 20px;
}

.ratings .summary h1 {
    color: var(--darkColor);
    font-family: var(--baseFont);
    font-weight: 600;
    font-size: 56px;
    line-height: 1;
    margin-bottom: 0px;
}

.ratings .summary .stars_47 img {
    width: 95px;
}

.ratings .single_bar {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 12px 8px 1fr;
    grid-template-columns: 12px 1fr;
    grid-auto-rows: auto;
    gap: 8px;
    margin-bottom: 8px;
}

.ratings .product_recommend h5 {
    color: var(--darkColor);
    font-family: var(--baseFont);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    margin-bottom: 0px;
    border-bottom: 1px solid #F0F0F0;
    margin-bottom: 12px;
    padding-bottom: 12px;
}

.ratings .product_recommend .the_progress {
    border-right: none;
    padding-right: 0px;
}

.ratings .product_recommend .single_bar {
    -ms-grid-columns: 85px 15px 1fr;
    grid-template-columns: 85px 1fr;
    grid-auto-rows: auto;
    gap: 15px;
    margin-bottom: 8px;
}

.ratings .product_recommend .single_bar h6 {
    color: var(--grayTexts);
    font-family: var(--baseFont);
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
    margin-bottom: 0px;
}

.ratings .product_recommend .single_bar .progress_bar {
    bottom: 0px;
}

.ratings .single_bar:last-child {
    margin-bottom: 0px;
}

.ratings .single_bar .star_single {
    line-height: 12px;
    height: 12px;
}

.ratings .single_bar .star_single img {
    position: relative;
    top: -2.5px;
}

.the_progress .progress_bar {
    background: #e0e0e0;
    height: 12px;
    border-radius: 20px;
}

.the_progress .progress_bar .filled {
    background: var(--baseColor);
    height: 12px;
    border-radius: 20px;
}

.the_progress .progress_bar .filled.zero {
    max-width: 0%;
}

.the_progress .progress_bar .filled.one {
    max-width: 1%;
}

.the_progress .progress_bar .filled.three {
    max-width: 3%;
}

.the_progress .progress_bar .filled.ten {
    max-width: 10%;
}

.the_progress .progress_bar .filled.tweleve {
    max-width: 12%;
}

.the_progress .progress_bar .filled.eighty_six {
    max-width: 86%;
}

.the_progress .progress_bar .filled.ninety_two {
    max-width: 92%;
}

.the_progress .progress_bar .filled.ninety_five {
    max-width: 95%;
}

.the_progress .progress_bar .filled.ninety_seven {
    max-width: 97%;
}

/* ============================== */
/* ============================== */

.happy_clients .all_reviews {
    max-width: 880px;
    margin: 0px auto;
    border-top: 1px solid #E9E9E9;
}

.happy_clients .all_reviews .single_review {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 220px 10px 1fr;
    grid-template-columns: 220px 1fr;
    grid-auto-rows: auto;
    gap: 10px;
    border-bottom: 1px solid #E9E9E9;
    padding: 20px 0px;
}

.happy_clients .all_reviews .customer_info {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 60px 8px 1fr;
    grid-template-columns: 60px 1fr;
    grid-auto-rows: auto;
    gap: 8px;
    height: 60px;
}

.happy_clients .all_reviews .customer_pic img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}

.happy_clients .all_reviews .customer_name h5 {
    color: var(--darkColor);
    font-family: var(--baseFont);
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    margin-bottom: 10px;
}

.happy_clients .all_reviews .customer_name h6 {
    color: #53A179;
    font-family: var(--baseFont);
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
    margin-bottom: 0px;
}

.happy_clients .all_reviews .customer_name h6 img {
    width: 12px;
    margin-right: 4px;
    position: relative;
    top: -1px;
}

.happy_clients .all_reviews .provided_ratings {
    margin-bottom: 10px;
    line-height: 1;
}

.happy_clients .all_reviews .provided_ratings img {
    width: 95px;
}

.happy_clients .all_reviews .provided_reviews {
    margin-bottom: 8px;
}

.happy_clients .all_reviews .provided_reviews h5 {
    color: var(--darkColor);
    font-family: var(--baseFont);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 0px;
}

.happy_clients .all_reviews .review_images ul {
    margin-bottom: 0px;
    font-size: 0px;
}

.happy_clients .all_reviews .review_images ul li {
    list-style: none;
    display: inline-block;
    margin-right: 10px;
}

.happy_clients .all_reviews .review_images ul li:last-child {
    margin-right: 0px;
}

.happy_clients .all_reviews .review_images ul li img {
    width: 100px;
    height: 100px;
    -o-object-fit: cover;
    object-fit: cover;
}


.happy_clients .all_reviews .load_more_less_button {
    margin-top: 30px;
    text-align: center;
}

.happy_clients .all_reviews .load_more_less_button .cta_btn {
    font-size: 16px;
    padding: 10px 25px;
    min-width: inherit;
    text-transform: capitalize;
}

.happy_clients .all_reviews .load_more_less_button .cta_btn .load_less_txts {
    display: none;
}

.happy_clients .all_reviews .load_more_less_button .cta_btn.load_less .load_more_txts {
    display: none;
}

.happy_clients .all_reviews .load_more_less_button .cta_btn.load_less .load_less_txts {
    display: inline-block;
}

.happy_clients .all_reviews .extended_reviews {
    display: none;
}

/* ===== CSS For "Happy Clients" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "More Happy Clients" Starts Here ===== */
.more_happy_clients_wrap {
    background: var(--lightColor);
    padding-bottom: 55px;
}

.more_happy_clients_wrap .heading {
    text-align: center;
    margin-bottom: 40px;
}

.owl_controls_outer .owl-carousel .owl-prev,
.owl_controls_outer .owl-carousel .owl-next {
    width: 36px;
    height: 36px;
    background: url(images/right_arrow.png) no-repeat !important;
    background-position: center center;
    background-size: 36px 36px !important;
    font-size: 0px !important;
    position: absolute;
    top: 45%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.owl_controls_outer .owl-carousel .owl-prev {
    left: -40px;
    background: url(images/left_arrow.png) no-repeat !important;
    background-position: center center;
    background-size: 36px 36px !important;
}

.owl_controls_outer .owl-carousel .owl-next {
    right: -40px;
    background: url(images/right_arrow.png) no-repeat !important;
    background-position: center center;
    background-size: 36px 36px !important;
}

.owl-carousel .owl-dots {
    width: 100%;
    margin-top: 5px;
    text-align: center;
}

.owl-carousel .owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none !important;
    margin: 5px;
    background: #F0F0F0 !important;
}

.owl-carousel .owl-dot.active {
    width: 10px;
    height: 10px;
    background: #666666 !important;
}

.more_happy_clients .owl-stage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0px 15px;
}

.more_happy_clients .single_reviews {
    display: -ms-grid;
    display: grid;
    -ms-flex-line-pack: justify;
    align-content: space-between;
    min-height: 100%;
    border: 1px solid #F0F0F0;
    padding: 15px;
    border-radius: 8px;
}

.more_happy_clients .single_reviews .mc_stars {
    margin-bottom: 10px;
    line-height: 1;
}

.more_happy_clients .single_reviews .mc_stars img {
    width: 85px;
}

.more_happy_clients .mc_reviews h5 {
    color: var(--darkColor);
    font-family: var(--baseFont);
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 10px;
}

.more_happy_clients .mc_reviews p {
    color: var(--grayTexts);
    font-family: var(--baseFont);
    font-weight: 400;
    font-size: 12px;
    line-height: 1.3;
    margin-bottom: 0px;
}

.more_happy_clients .user_name_verified {
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 15px;
}

.more_happy_clients .user_name h5 {
    color: var(--darkColor);
    font-family: var(--baseFont);
    font-weight: 500;
    font-size: 12px;
    margin-bottom: 0px;
}

.more_happy_clients .customer_verified h6 {
    color: #53A179;
    font-family: var(--baseFont);
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
    margin-bottom: 0px;
    text-align: right;
}

.more_happy_clients .customer_verified h6 img {
    width: 12px;
    margin-right: 3px;
    display: inline-block;
    position: relative;
    top: -1px;
}

/* ============================== */

.more_happy_clients_wrap .rated_showing {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
}

.more_happy_clients_wrap .rated_showing h5 {
    color: var(--darkColor);
    font-family: var(--baseFont);
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 0px;
}

/* ============================== */

.award_winner_box {
    max-width: 770px;
    margin: 0px auto;
    border: 1px solid #1C2B54;
    border-radius: 20px;
    padding: 40px;

    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 95px 40px 1fr 40px 125px;
    grid-template-columns: 95px 1fr 125px;
    grid-auto-rows: auto;
    gap: 40px;
}

.award_winner_box .middle_contents {
    text-align: center;
}

.award_winner_box .middle_contents .winning_rating img {
    width: 100px;
}

.award_winner_box .middle_contents .sub_heading h4 {
    margin: 20px 0px;
    margin-bottom: 15px;
}

.award_winner_box .middle_contents .sub_heading h5 {
    color: var(--grayTexts);
}

/* ===== CSS For "More Happy Clients" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Meet Expert" Starts Here ===== */
.meet_expert_wrap {
    background: #F9F9F9;
    padding: 60px 0px;
}

.meet_expert {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 1fr 55px 280px;
    grid-template-columns: 1fr 280px;
    grid-auto-rows: auto;
    gap: 55px;
}

.meet_expert .heading {
    border-bottom: 1px solid #F0F0F0;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.meet_expert .heading h5 {
    font-size: 16px;
}

.meet_expert .expert_photo img {
    border-radius: 10px;
}

.meet_expert .para_texts p {
    font-size: 15px;
}

.meet_expert .name_signature {
    margin-top: 20px;
}

.meet_expert .name_signature h6 {
    color: var(--grayTexts);
    font-family: var(--baseFont);
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 10px;
}

.meet_expert .expert_signature img {
    max-width: 160px;
}

/* ===== CSS For "Meet Expert" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "FAQ's" Starts Here ===== */
.faqs {
    background: var(--lightColor);
    padding: 55px 0px;
}

.faqs .heading {
    text-align: center;
    margin-bottom: 40px;
}

.faqs .single_item {
    background: #FAFAFA;
    margin-bottom: 8px;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
}

.faqs .single_item:last-child {
    margin-bottom: 0px;
}

.faqs .single_item .click_item a {
    color: var(--darkColor);
    font-family: var(--baseFont);
    font-weight: 600;
    font-size: 18px;
    display: block;
    text-decoration: none;
    text-transform: capitalize;
    padding: 15px 20px;
    padding-right: 40px;
    position: relative;
}

.faqs .single_item .click_item a:after {
    content: "\f068";
    font-family: "Font Awesome 5 Free";
    font-size: 16px;
    font-weight: 700;
    color: var(--darkColor);
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.faqs .single_item .click_item a.collapsed:after {
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-size: 16px;
    font-weight: 700;
    color: var(--darkColor);
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.faqs .contents {
    padding: 20px 15px;
    padding-top: 0px;
    position: relative;
}

.faqs .contents p {
    color: var(--grayTexts);
    font-family: var(--baseFont);
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 10px;
}

.faqs .contents p:last-child {
    margin-bottom: 0px;
}

/* ===== CSS For "FAQ's" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Buy With Confidence" Starts Here ===== */
.buy_with_confidence_box {
    background: #FAFAFA;
    border: 1px solid #F0F0F0;
    border-radius: 20px;
    padding: 40px;
    margin-top: 30px;

    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 130px 40px 1fr 40px 130px;
    grid-template-columns: 130px 1fr 130px;
    grid-auto-rows: auto;
    gap: 40px;
}

.buy_with_confidence_box .middle_content {
    text-align: center;
}

.buy_with_confidence_box .sub_heading {
    margin-bottom: 15px;
}

.buy_with_confidence_box .sub_heading h4 {
    color: var(--blackColor);
}

/* ===== CSS For "Buy With Confidence" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Limited Offer" Starts Here ===== */
.limited_offer_wrap {
    background: #FAFAFA;
    padding: 55px 0px;
}

.limited_offer {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 1fr 0px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 0px;
    border: 2px dashed var(--baseColor);
    border-radius: 20px;
    background: var(--lightColor);
}

.limited_offer .product_image img {
    border-radius: 20px 0px 0px 20px;
}

.limited_offer .offer_contents {
    padding: 40px;
    text-align: center;
}

.limited_offer .offer_contents .sub_heading {
    margin-bottom: 15px;
}

.limited_offer .offer_contents .heading {
    margin-bottom: 20px;
}

.limited_offer .offer_contents .sub_heading h4 {
    color: var(--blackColor);
    font-weight: 700;
    display: inline-block;
    background: url('images/UK_Flag.png') no-repeat;
    background-position: left center;
    background-size: 24px 24px;
    padding-left: 32px;
}

.limited_offer .offer_contents .heading p {
    color: #8F8F8F;
    font-size: 16px;
    line-height: 1.5;
    margin-top: 15px;
}

/* ============================== */

.limited_offer .happy_customers_instock {
    margin: 20px 0px;
    background: var(--lightColor);
    border: 1px solid #E9E9E9;
    border-radius: 4px;
    padding: 8px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.limited_offer .happy_customers_instock img.hc {
    width: 60px;
}

.limited_offer .happy_customers_instock img.star {
    width: 85px;
    margin: 0px 7.5px;
}

.limited_offer .happy_customers_instock h6 {
    color: var(--blackColor);
    font-family: var(--baseFont);
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    margin-bottom: 0px;
}

.limited_offer .happy_customers_instock h6 span {
    position: relative;
    top: 2px;
}

.limited_offer .happy_customers_instock .happy_customers {
    border-right: 1px solid #E9E9E9;
    padding-right: 15px;
    margin-right: 15px;
}

.limited_offer .happy_customers_instock .instock h6 {
    color: #53A179;
    font-weight: 700;
    position: relative;
    padding-left: 15px;
}

.limited_offer .happy_customers_instock .instock h6:before {
    content: "";
    width: 8px;
    height: 8px;
    background: #53A179;
    border-radius: 50%;
    position: absolute;
    left: 0px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* ============================== */

.limited_offer .cta_btn {
    display: block;
    background: var(--redColor);
    font-size: 24px;
    padding: 12px 15px;
}

.limited_offer .cta_btn:hover {
    background: #ff5027;
}

.limited_offer .try_today {
    margin-top: 10px;
    position: relative;
}

.limited_offer .try_today:after {
    content: "";
    width: 100%;
    height: 1px;
    background: #E9E9E9;
    position: absolute;
    left: 0px;
    right: 0px;
    top: 13px;
}

.limited_offer .try_today h6 {
    color: #747474;
    font-family: var(--baseFont);
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    display: inline-block;
    background: var(--lightColor);
    padding: 2px 10px;
    margin-bottom: 0px;
    position: relative;
    z-index: 99;
}

/* ===== CSS For "Limited Offer" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Highlighted Facts" Starts Here ===== */
.highlighted_facts_wrap {
    background: #f6f6fa;
    padding: 25px 0px;
}

.highlighted_facts_wrap .highlighted_facts {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    gap: 20px;
}

.highlighted_facts_wrap .single_fact {
    text-align: center;
}

.highlighted_facts_wrap .single_fact .icon {
    margin-bottom: 8px;
}

.highlighted_facts_wrap .single_fact .icon img {
    width: 40px;
}

.highlighted_facts_wrap .single_fact .texts h6 {
    color: var(--darkColor);
    font-family: var(--baseFont);
    font-weight: 500;
    font-size: 12px;
    line-height: 1.2;
    margin-bottom: 0px;
}

/* ===== CSS For "Highlighted Facts" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Footer Contents" Starts Here ===== */
.footer .top {
    background: var(--blackColor);
}

.footer_contents {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 425px 75px 1fr;
    grid-template-columns: 425px 1fr;
    grid-auto-rows: auto;
    gap: 75px;
    padding: 40px 0px;
}

.footer_contents .footer_logo {
    margin-bottom: 20px;
}

.footer_contents .footer_logo img {
    max-width: 170px;
}

.footer_contents .short_info .para_texts p {
    color: #bdbdbd;
    font-size: 14px;
}

.footer_contents .site_links_info {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 65px 1fr 65px 1fr;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 65px;
}

.footer_contents .site_links_info .sub_heading h5 {
    color: var(--lightColor);
    text-transform: uppercase;
}

.footer_contents .site_links_info ul {
    margin-bottom: 0px;
}

.footer_contents .site_links_info ul li {
    list-style: none;
    margin-bottom: 10px;
}

.footer_contents .site_links_info ul li:last-child {
    margin-bottom: 0px;
}

.footer_contents .site_links_info ul li a {
    color: #BDBDBD;
    font-family: var(--baseFont);
    font-weight: 400;
    font-size: 14px;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.footer_contents .site_links_info ul li a:hover {
    color: var(--lightColor);
}

.footer_contents .site_links_info .contact_info ul li {
    background: url('images/Icon_Envelop.svg') no-repeat;
    background-position: left center;
    background-size: 20px 20px;
    padding-left: 26px;
}

.footer_contents .site_links_info .contact_info ul li:nth-child(1) {
    background: url('images/Icon_Envelop.svg') no-repeat;
    background-position: left center;
    background-size: 20px 20px;
}

.footer_contents .site_links_info .contact_info ul li:nth-child(2) {
    background: url('images/Icon_Live_Chat.svg') no-repeat;
    background-position: left center;
    background-size: 20px 20px;
}

.footer_contents .site_links_info .contact_info ul li:nth-child(3) {
    background: url('images/Icon_Telephone.svg') no-repeat;
    background-position: left center;
    background-size: 20px 20px;
}


.footer_contents .site_links_info .footer_mobile_links {
    display: none;
}

.footer_contents .site_links_info .navbar-collapse {
    display: block !important;
}

/* ===== CSS For "Footer Contents" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Copyright & Payments" Starts Here ===== */
.footer .bottom {
    background: var(--lightColor);
    padding: 15px 0px;
    margin-bottom: 72px;
}

.footer .copyright_payment {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 15px;
}

.footer .copyright_payment .copyright p {
    color: var(--darkColor);
    font-family: var(--baseFont);
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 0px;
}

.footer .copyright_payment .payment_logos {
    max-width: 305px;
    margin-left: auto;
}

/* ===== CSS For "Copyright & Payments" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Fixed Bottom Banner" Starts Here ===== */
.bottom_fixed_banner_wrap {
    background: var(--blackColor);
    padding: 8px 0px;
    position: fixed;
    left: 0px;
    right: 0px;
    bottom: -90px;
    z-index: 999999;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.bottom_fixed_banner_wrap.show {
    bottom: 0px;
}

.bottom_fixed_banner {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 1fr 10px 165px;
    grid-template-columns: 1fr 165px;
    grid-auto-rows: auto;
    gap: 10px;
}

.bottom_fixed_banner .product_rating {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 56px 8px 1fr;
    grid-template-columns: 56px 1fr;
    grid-auto-rows: auto;
    gap: 8px;
}

.bottom_fixed_banner .product_image img {
    border-radius: 5px;
}

.bottom_fixed_banner .product_rating h5 {
    color: var(--lightColor);
    font-family: var(--baseFont);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    margin-bottom: 5px;

    display: flex;
}

.bottom_fixed_banner .product_rating h5 img {
    width: 85px;
    margin-right: 5px;
}

.bottom_fixed_banner .product_rating h5 span {

    display: inline-block;
    margin-left: 5px;
}

.bottom_fixed_banner .product_rating h5 b {
    color: #C8C8C8;
}

.bottom_fixed_banner .product_rating h4 {
    color: var(--lightColor);
    font-family: var(--baseFont);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 0px;
}

.bottom_fixed_banner .cta_btn_wrap {
    margin-top: 0px;
}

.bottom_fixed_banner .cta_btn {
    min-width: 100%;
    font-size: 18px;
    background: var(--redColor);
}

.bottom_fixed_banner .cta_btn:hover {
    background: #ff5027;
}

/* ===== CSS For "Fixed Bottom Banner" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "" Starts Here ===== */
/* ===== CSS For "" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */