@charset "UTF-8";

/**
 * @ 与imyfone站点区别
 * h1-h6不设统一字号行高，在各个类型页面的公共css中单独设置
 * 弹性flex布局不设公共样式，在各自的板块单独写
 * 公共按钮样式宽高写死，在具体页面单独覆盖宽高样式
 */
/* common start */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;

    --base-color-primary: #3388FF;
    --base-color-hover: #186DE4;
}

html {
    color: #1a243d;
    overflow-x: hidden;
    font-family: Poppins, sans-serif;
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth;
}

body {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section,
summary {
    display: block;
}

ul,
ol {
    list-style: none;
}

table {
    border-collapse: collapse;
}

blockquote,
q {
    quotes: none;
}

button,
input[type=button],
input[type=submit],
input[type=reset],
a,
summary {
    cursor: pointer;
}

a {
    text-decoration: none;
    transition: all linear .2s;
    color: inherit;
}

a:hover {
    outline: none;
    color: #00bde3;
    text-decoration: underline;
}

picture {
    font-size: 0;
    display: block;
}

img,
svg {
    border-style: none;
    max-width: 100%;
    vertical-align: middle;
}

textarea {
    resize: vertical;
}

button,
input,
select,
textarea {
    font-family: inherit;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

input:focus:invalid,
textarea:focus:invalid,
select:focus:invalid {
    border-color: #ff572e;
}

input {
    border: 0;
    outline: none;
    background-color: rgba(0, 0, 0, 0);
}

input[type='submit'] {
    text-align: center;
}

:active,
:focus {
    outline: none;
}

::-moz-placeholder,
::-webkit-input-placeholder,
:-ms-input-placeholder {
    color: currentColor;
    opacity: .5;
}

.base-maxwidth {
    max-width: 1200px;
    margin: 0 auto;
}

.base-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

.base-btn svg,
.base-btn span {
    margin: 0 4px;
}

.base-btn-fill-blue {
    width: 240px;
    height: 60px;
    background: #00bde3;
    font-size: 20px;
    line-height: 32px;
    font-family: Poppins SemiBold;
    color: #fff;
}

.base-btn-fill-blue:hover {
    color: #fff;
    background: #00a9cb;
    text-decoration: none;
}

.base-btn-fill-darkblue {
    width: 240px;
    height: 60px;
    background: #5A6BFF;
    font-size: 20px;
    line-height: 32px;
    font-family: Poppins SemiBold;
    color: #fff;
}

.base-btn-fill-darkblue:hover {
    color: #fff;
    background: #3C4DE2;
    text-decoration: none;
}

.base-btn-fill-orange {
    width: 240px;
    height: 60px;
    background: #f93;
    font-size: 20px;
    line-height: 32px;
    font-family: Poppins SemiBold;
    color: #fff;
}

.base-btn-fill-orange:hover {
    color: #fff;
    background: #e5892d;
    text-decoration: none;
}

.base-btn-border-blue {
    width: 240px;
    height: 60px;
    border: 2px solid #00bde3;
    font-size: 18px;
    line-height: 30px;
    font-family: Poppins SemiBold;
    transition: all .3s ease;
    color: #00bde3;
}

.base-btn-border-blue:hover {
    color: #fff;
    background: #00bde3;
    text-decoration: none;
}


.base-white-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 56px;
    border-radius: 10px;
    background: #FEFFFF;
    color: #00C0E3;
    font-size: 18px;
    font-weight: 600;
}

.base-white-btn:hover {
    text-decoration: none;
}

.base-btn-border-orange {
    width: 240px;
    height: 60px;
    border: 2px solid #f93;
    font-size: 18px;
    line-height: 30px;
    font-family: Poppins SemiBold;
    color: #f93;
}

.base-btn-border-orange:hover {
    color: #fff;
    background: #f93;
    text-decoration: none;
}

.header-right-list + .header-try-now {
  display: none !important;
}

.base-link {
    display: block;
    font-size: 18px;
    line-height: 29px;
    font-family: Poppins Medium;
}

.base-link svg {
    margin-left: 8px;
}

.base-link-blue-light {
    color: #00bde3;
}

.base-link-blue-deep {
    color: #0076e3;
}

.base-link-blue-light:hover {
    color: #00bde3;
    text-decoration: underline;
}

.base-link-blue-deep:hover {
    color: #0076e3;
    text-decoration: underline;
}

.base-arrow-left {
    width: 55px;
    height: 40px;
    cursor: pointer;
    background: url(https://images.clevguard.com/en/assets/common/left_normal_media.svg);
}

.base-arrow-right {
    width: 55px;
    height: 40px;
    cursor: pointer;
    background: url(https://images.clevguard.com/en/assets/common/right_normal_media.svg);
}

.base-arrow-left:hover {
    background: url(https://images.clevguard.com/en/assets/common/left_hover_media.svg);
}

.base-arrow-right:hover {
    background: url(https://images.clevguard.com/en/assets/common/right_hover_media.svg);
}

.base-blue-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 56px;
    border-radius: 10px;
    background: #00BDE3;
    color: #fff;
    font-size: 18px;
    transition: all .3s ease;
}

.base-blue-btn:hover {
    background: #00A9CB;
    color: #fff;
    text-decoration: none;
}

.base-text-btn {
    color: #00BDE3;
    font-size: 18px;
    font-family: 'Poppins SemiBold';
    line-height: 16px;
    transition: all .3s ease;
}

.base-text-btn:hover {
    color: #00A9CB;
    text-decoration: none;
}

.base-arrow-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 56px;
    font-weight: 600;
    border-radius: 10px;
    border: 1px solid #00BDE3;
    color: #00BDE3;
    font-size: 18px;
    transition: all.3s ease;
}

.base-arrow-btn:hover {
    background: #00bde3;
    color: #fff;
    text-decoration: none;
}

.base-arrow-btn:hover>.arrow-icon {
    left: 10px;
    background: url(https://images.clevguard.com/en/assets/overview/features/arrow_whilte.svg) no-repeat;
}

.base-arrow-btn .arrow-icon {
    position: relative;
    left: 0;
    display: block;
    width: 20px;
    height: 15px;
    margin-left: 10px;
    margin-top: 3px;
    background: url(https://images.clevguard.com/en/assets/overview/features/arrow_blue.svg) no-repeat;
    transition: all .3s ease;
}


.base-link-video {
    display: flex;
    align-items: center;
    font-size: 20px;
    color: #1a243d;
    line-height: 32px;
    font-family: Poppins Medium;
    cursor: pointer;
}

.base-link-video svg {
    margin-right: 13px;
}

.base-link-video:hover {
    color: #1a243d;
    text-decoration: underline;
}

.base-circle-left {
    width: 50px;
    height: 50px;
    cursor: pointer;
    background: url(https://images.clevguard.com/en/assets/common/left_normal_icon_social.svg);
}

.base-circle-right {
    width: 50px;
    height: 50px;
    cursor: pointer;
    background: url(https://images.clevguard.com/en/assets/common/right_normal_icon_social.svg);
}

.base-circle-left:hover {
    background: url(https://images.clevguard.com/en/assets/common/left_hover_icon_social.svg);
}

.base-circle-right:hover {
    background: url(https://images.clevguard.com/en/assets/common/right_hover_icon_social.svg);
}

.pay-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    width: 330px;
    height: 60px;
    background: #134db0;
    font-size: 18px;
    line-height: 29px;
    font-family: Poppins SemiBold;
    color: #fff;
}

.pay-btn svg,
.pay-btn span {
    margin: 0 4px;
}

.pay-btn:hover {
    color: #fff;
    background: #11459e;
    text-decoration: none;
}

.base-header .nav-name.link {
    position: relative;
    padding: 27px 20px 25px;
}

.base-header .nav-name.link::before {
    position: absolute;
    content: '';
    left: -50%;
    bottom: -45px;
    transform: translateX(50%);
    width: 100%;
    height: 24px;
    background: transparent;
    z-index: 1;
}

.base-header .nav-name.link a {
    color: #2e2e2e;
    padding: 27px 24px 25px;
}

.base-header .nav-name.link a:hover {
    text-decoration: none;
    color: #00bde3;
}

.base-header .nav-name.login-btn {
    margin-right: 20px;
    width: 100px;
    padding: 5px 0;
    border-radius: 25px;
    background: #00bde3;
    color: #fff;
    text-align: center;
}

.base-header .nav-name.login-btn:hover {
    background: #00a9cb;
    color: #fff;
}

.login-btn.is-login {
    display: none;
}

#Login {
    cursor: pointer;
    margin-left: auto;
    margin-right: 20px;
}


.base-header:has(.is-logged-in) .header-login {
  display: none !important;
}

.base-header:has(.not-logged-in) .header-login {
  display: block;
}


.not-logged-in {
  display: none !important;
}


/* .header-try-now::before {
    content: "";
    background: linear-gradient(90deg, rgba(255, 249, 193, 0) 0%, rgba(255,255,255,.6) 100%);
    height: 100%;
    width: 60px;
    display: block;
    position: absolute;
    top: 0;
    left: -80px;
    transform: skewX(-45deg) translateX(0);
    animation: btn-animation 2.5s infinite cubic-bezier(0.4, 0, 1, 1);
} */

@keyframes btn-animation {
  100% {
    transform: skewX(-45deg) translateX(500px);
  }
}

.header-try-now {
    font-size: 14px;
    font-weight: 600;
    margin-right: 10px;
    position: relative;
    background: var(--base-color-primary);
    color: #fff;
    border-radius: 6px;
    width: 107px;
    height: 34px;
    text-align: center;
    line-height: 34px;
    transition: all .1s ease;
    overflow: hidden;
}

.base-header:has(.is-logged-in) .header-try-now {
    order: 1 ;
}

.header-try-now:hover {
    background: var(--base-color-hover);
    text-decoration: none;
    color: #fff;
}

.is-logged-in {
    border: none;
    padding: 0;
}

.login-head {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-list {
    display: none;
    position: absolute;
    top: 37px;
    width: 130px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 3px;
    /* box-shadow: 0 0 5px 0 rgba(0, 0, 0, .2); */
    padding: 10px 0;
    font-size: 14px;
    line-height: 35px;
    color: #484848;
    text-align: center;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, .2));
}

.login-list::before {
    position: absolute;
    top: -5px;
    left: 60px;
    content: '';
    width: 10px;
    height: 10px;
    background: #fff;
    transform: rotate(-135deg);
    /* box-shadow: 1px -2px 5px rgba(0, 0, 0, .2) */
}

.login-list::after {
    position: absolute;
    top: 0;
    left: 50px;
    content: '';
    height: 10px;
    background: #fff
}

.login-list li:hover {
    background: rgba(0, 189, 227, .1);
}

.login-list a:hover {
    text-decoration: none;
}

.is-logged-in:hover .login-list {
    display: block;
}

.chatbot {
    overflow: hidden;
    position: fixed;
    right: 0;
    bottom: 51%;
    width: 48px;
    height: 48px;
    padding: 10px;
    outline: none;
    text-decoration: none;
    color: #fff;
    align-items: center;
    box-sizing: border-box;
    background: var(--base-color-primary);
    z-index: 9;
    transition: all .3s ease 0s;
}

.chatbot span {
    display: inline-block;
    margin-left: 15px;
}

.chatbot svg {
    min-width: 25px;
    height: 28px;
}


.previrew-img {
    position: relative;
    cursor: pointer;
}

.previrew-img::before {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 80px;
    height: 80px;
    background: url(https://images.clevguard.com/en/assets/overview/features/preview-icon.svg) no-repeat;
    background-size: contain;
    content: '';
}

.preview-img-mask {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .9);
    z-index: 9999
}

.preview-img-mask .close-btn {
    position: absolute;
    right: 20px;
    top: 40px;
    width: 48px;
    height: 48px;
    cursor: pointer;
    background: url(https://images.clevguard.com/en/assets/common/close_btn_icon.svg) no-repeat;
    background-size: contain;
}

.preview-img-mask .close-btn:hover {
    background: url(https://images.clevguard.com/en/assets/common/close_btn_hover_icon.svg) no-repeat;
}

.preview-img-mask img {
    max-width: 98%;
    width: 100%;
}

.preview-img-mask.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.coupon-box {
    width: 98%;
    height: 33px;
    border-radius: 8px;
    font-family: Heebo;
    color: #793D00;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    line-height: 33px;
    background: linear-gradient(180deg, #FFF9EE 0%, #FFF1E2 91.3%);
    padding: 0 5px;
}

.coupon-box .coupon-count {
    font-size: 13px;
    font-weight: 700;
    color: #E30000;
    margin-top: 5px;
}

.coupon-box img {
    width: 28px;
    margin-top: 2px;
    margin-right: 2px;
}

@media (min-width: 769px) {
    .chatbot:hover {
        width: 190px;
        color: #fff;
        text-decoration: none;
    }
}

@media (max-width: 768px) {
    .base-blue-btn {
        width: 180px;
        height: 48px;
        font-size: 18px;
    }

    .base-text-btn {
        font-size: 18px;
        font-weight: 600;
        line-height: 16px;
    }

    .previrew-img::before {
        width: 40px;
        height: 40px;
    }

    .preview-img-mask .close-btn {
        width: 36px;
        height: 36px;
    }
}


@media (max-width: 1366px) {
    .member-list {
        right: -16px;
        width: 130px;
    }

    .member-list:before {
        left: 90px;
        transform: translateX(0);
    }

    .member-list li {
        line-height: 40px;
        padding-left: 0;
        text-align: center;
    }

    .member-list li+li {
        border-top: 1px solid #ddd;
    }
}

@media (max-width: 1024px) {
    .base-maxwidth {
        margin: 0 20px;
    }

    
    .base-header .nav-name.login-btn {
        margin-top: 10px;
    }


    .base-header .header-try-now {
      margin: 0;
      width: 78px !important;
      text-align: center;
    }

    .base-header:has(.is-logged-in) .header-try-now {
        display: none;
    }

    #Login {
        margin-right: 0px;
        position: absolute;
    }
    
    .is-logged-in {
        right: 20px;
    }

    .login-list {
        right: -10px;
    }

    .login-list::before {
        left: 100px;
    }

    .login-list::after {
        left: 95px;
    }
}

/* common end */

/* header start */
.base-header {
    height: 78px;
    border-bottom: 1px solid #eee;
    z-index: 101;
}

@media (max-width: 820px) {
    .base-header {
        margin-top: 0;
    }

    @-webkit-keyframes shake {
        10% {
            transform: rotate(15deg);
        }

        20% {
            transform: rotate(-10deg);
        }

        30% {
            transform: rotate(5deg);
        }

        40% {
            transform: rotate(-5deg);
        }

        50%,
        100% {
            transform: rotate(0deg);
        }
    }

    .base-header {
        margin-top: 0;
    }
}

.base-header .base-maxwidth {
    display: flex;
    align-items: center;
}

.base-header .mobile-menu {
    display: none;
}

.base-header .header-right-list {
    display: flex;
    align-items: center;
    margin-left: 40px;
    flex-grow: 1;
}

.base-header .close-menu {
    display: none;
}

.base-header .header-nav {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.base-header .header-nav.hide {
    display: none;
}

.base-header .nav-name {
    padding: 27px 20px 25px;
    font-size: 16px;
    line-height: 25px;
    color: #2e2e2e;
    cursor: pointer;
}

.base-header .header-nav .header-login {
    margin-right: 10px;
    text-align: center;
    border-radius: 6px;
    border: 2px solid #3388FF;
    width: 81px;
    height: 34px;
    line-height: 30px;
    font-size: 14px;
    font-weight: 600;
    background: #fff;
    color: #3388FF;
    margin-left: auto;
}

.base-header .header-nav .header-login:hover {
    text-decoration: none;
    border-color: var(--base-color-hover);
    color: var(--base-color-hover);
}

.base-header .header-arrow {
    display: inline-block;
    width: 11px;
    height: 11px;
    margin-left: 4px;
    background: url(https://images.clevguard.com/en/assets/common/header/header-arrow.svg);
    transition: all .5s ease;
}

.base-header .product-bg {
    display: none;
    position: absolute;
    width: 100%;
    left: 0;
    top: 77px;
    padding: 24px 0 50px;
    border-top: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
    background: rgba(255, 255, 255, 0.80);
    box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 101;
    overflow: hidden;
}

.base-header .product-bg.header-resource-bg {
    padding: 20px 0 0;
}

.base-header .product-bg.feature-bg .product-bg-card:last-child {
    color: #1A243D;
    font-weight: 600;
}

.base-header .header-demo {
    position: relative;
}

.header-demo .product-bg {
    width: auto;
    padding: 0;
    border-radius: 8px;
    left: -70px;
}

.header-demo .product-bg .product-bg-card {
    width: 250px;
    height: 50px;
    padding: 10px;
    display: flex;
    align-items: center;
    color: #666666;
}

.header-demo .product-bg .product-bg-card img {
    margin-right: 5px;
    max-width: 26px;
}

.header-demo .product-bg .product-bg-card:hover {
    background: #F7FDFE;
    color: #00BDE3;
    text-decoration: none;
}

.base-header .category-list {
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
}

.base-header .product-category {
    width: 25%;
    padding-left: 20px;
    padding-right: 20px;
    border-left: 1px solid #ededed;
}

.base-header .product-category:nth-child(1) {
    padding-left: 0;
}

.base-header .product-category:nth-child(2){
    border-left: none;
    padding-left: 0;
}

.base-header .product-category:nth-child(3) {
    width: 25%;
}

.base-header .product-category:first-child {
    border-left: none;
}

.base-header .product-category:last-child {
    padding-right: 0;
}

.base-header .category-name {
    font-family: semibold;
    font-size: 16px;
    color: #00bde3;
    line-height: 19px;
}

.base-header .product-category:nth-child(2) .category-name{
   visibility: hidden;
}

.base-header .product-item {
    margin-top: 20px;
    padding: 4px;
    border-radius: 8px;
}

.base-header .product-item.linearbg{
    background: linear-gradient(to right, #DEF9FF, #CAF6FF00);
}

.base-header .product-item:first-child {
    margin-top: 23px;
}


.base-header .product-item img {
    position: absolute;
    width: 26px;
}

.base-header .product-item .product-name,
.base-header .product-item .product-desc {
    width: calc(100% - 30px);
    transform: translate(30px, 0);
}

/*
.base-header .product-text {
    display: flex;
    flex-direction: column;
    margin-left: 3px;
}  */

.base-header .product-text p {
    font-family: semibold;
}

.base-header .product-name a {
    font-weight: bold;
    line-height: 19px;
}

.base-header .product-name span {
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    line-height: 16px;
    border-radius: 2px;
    background: #F46868;
    padding: 2px 5px;
}

.base-header .right-arrow {
    display: inline-block;
    width: 8px;
    height: 13px;
    margin-left: 12px;
    background: url(https://images.clevguard.com/en/assets/common/header/right-arrow.svg);
}

.base-header .product-name:hover>a {
    color: #00bde3;
}

.base-header .product-name:hover .right-arrow {
    background: url(https://images.clevguard.com/en/assets/common/header/right-arrow-hover.svg);
}

.base-header .product-name>img {
    margin-left: 5px;
}

.base-header .right-arrow {
    margin-left: 12px;
}

.base-header .product-desc {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #666;
}

.base-header .product-desc>img {
    margin-left: 5px;
}

.base-header .header-products:hover .nav-name {
    color: #00bde3;
}

.base-header .header-products.on .nav-name {
    color: #00bde3;
}

.base-header .header-products:hover .header-arrow {
    background: url(https://images.clevguard.com/en/assets/common/header/header-arrow-curr.svg);
}

.base-header .header-products.on .header-arrow {
    transition: all none;
    background: url(https://images.clevguard.com/en/assets/common/header/header-arrow-curr.svg);
    transform: rotate(180deg);
}

.base-header .header-products.on .product-bg {
    display: block;
}


/* Resource Start */
.base-header .header-resource {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
}

.base-header .header-resource>ul {
    display: flex;
    position: relative;
    width: 100%;
    height: 494px;
    overflow: hidden;
}

.base-header .header-resource>ul::after {
    position: absolute;
    content: '';
    height: 1px;
    width: 80%;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: rgba(16, 24, 41, .1);
}

.base-header .header-resource .product-category {
    width: 100%;
    max-width: 315px;
    padding: 20px 20px;
}

.base-header .header-resource .product-category:first-child {
    padding-left: 3px;
}

.base-header .header-resource .product-category:last-child {
    padding-right: 0;
}


.base-header .header-resource .category-name {
    position: relative;
    padding-left: 25px;
}

.base-header .header-resource .category-name::before {
    position: absolute;
    content: '';
    width: 30px;
    height: 30px;
    left: -10px;
    top: -5px;
    background-size: contain;
}

.base-header .product-category:nth-child(1) .category-name::before {
    background-image: url(https://images.clevguard.com/en/assets/index/cell_phone_track_icon.svg);
}

.base-header .product-category:nth-child(2) .category-name::before {
    background-image: url(https://images.clevguard.com/en/assets/index/whatapp_monitoring_icon.svg);
}

.base-header .product-category:nth-child(3) .category-name::before {
    background-image: url(https://images.clevguard.com/en/assets/index/computer_monitoring_icon.svg);
}

.base-header .product-category:nth-child(4) .category-name::before {
    background-image: url(https://images.clevguard.com/en/assets/index/locationg_changing_icon.svg);
}

.base-header .product-category:nth-child(5) .category-name::before {
    background-image: url(https://images.clevguard.com/en/assets/index/whats_new_icon.svg);
}

.base-header .product-category:nth-child(6) .category-name::before {
    background-image: url(https://images.clevguard.com/en/assets/index/index_whats_new_icon.svg);
}

.base-header .header-resource .product-item {
    display: block;
    position: relative;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: rgba(16, 24, 41, .7);
    padding: 0 0 0 10px;
    margin-top: 15px;
}

.base-header .header-resource .product-item::before {
    position: absolute;
    content: '';
    width: 4px;
    height: 4px;
    background: #101829;
    left: 0;
    top: 9px;
    border-radius: 50%;
}

.base-header .header-resource .product-item:hover {
    background: none;
    border-radius: initial;
}

.base-header .header-resource .product-item a:hover {
    color: #00BDE3;
    text-decoration: underline;
}

.base-header .more-resource {
    font-weight: 600;
    padding: 20px 0;
}

/* Resource End */


.base-header .search-box {
    display: flex;
    align-items: center;
    padding: 22px 0 21px;
}

.base-header #header-search-form,
.base-header #search-submit,
.base-header .open-search,
.base-header .close-search,
.base-header label {
    display: none;
}

.base-header #header-search-form {
    width: 400px;
    padding-left: 30px;
    border-radius: 60px;
    border: 1px solid #787878;
    background: url(https://images.clevguard.com/en/assets/common/header/search_icon2.svg) 5px center no-repeat;
}

.base-header .search-t {
    padding: 6px;
}

.base-header #header-search-keywords {
    color: #585858;
    display: block;
    width: 100%;
    line-height: 20px;
}

.base-header .open-search,
.base-header .close-search {
    cursor: pointer;
}

.base-header .close-search {
    margin-left: 26px;
}

.base-header #header-search-form.curr,
.base-header .open-search.curr,
.base-header .close-search.curr {
    display: block;
}

.base-header .lang-box {
    position: relative;
    margin-left: 20px;
}

.base-header .lang-box.hide {
    display: none;
}

.base-header .bot-relate {
    cursor: pointer;
    width: 112px;
    height: 36px;
    line-height: 34px;
    color: #485064;
    border-radius: 6px;
    border: 1px solid #ddd;
    text-align: center;
    transition: all .5s ease;
}

.base-header .bot-relate:hover,
.base-header .bot-relate.on {
    color: #00BDE3;
    border-color: #00BDE3;
}

.base-header .bot-relate .header-arrow {
    pointer-events: none;
}

.base-header .bot-relate.on .header-arrow {
    transform: rotate(180deg);
}

.base-header .bot-relate:hover .header-arrow,
.base-header .bot-relate.on .header-arrow {
    background: url(https://images.clevguard.com/en/assets/common/header/header-arrow-curr.svg);
}

.base-header .other-lang {
    display: none;
    position: absolute;
    right: 0;
    top: 46px;
    width: 112px;
    background: #fff;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, .2));
    border-radius: 6px;
    padding: 4px 0;
    z-index: 10;
}

.base-header .other-lang::before {
    content: '';
    position: absolute;
    left: 50%;
    margin-left: -5px;
    top: -5px;
    width: 10px;
    height: 10px;
    background: #fff;
    transform: rotate(-40deg);
}

.base-header .other-lang li a {
    color: #333;
    padding-left: 16px;
    height: 36px;
    line-height: 36px;
}

.base-header .other-lang li a:hover {
    text-decoration: none;
    color: #00BDE3;
}


@media (max-width: 1440px) {
    .base-header .product-item {
        height: auto;
    }

    .base-header .nav-name,
    .base-header .nav-name.link,
    .base-header .nav-name.link a {
        padding: 27px 8px 25px;
    }

    .base-header .header-nav .header-login,
    #Login {
        margin-right: 10px;
    }

    .base-header .lang-box {
        margin-left: 10px;
    }
}

@media (min-width: 1024px) {
    .base-header .nav-name:hover {
        color: #00bde3;
        text-decoration: none;
    }
}

@media (max-width: 1024px) {
    .base-header {
        height: 60px;
    }

    .base-header .base-maxwidth {
        justify-content: center;
        height: 100%;
    }
     #Login {
      margin-right: 0;
     }

    .base-header .header-try-now{
        position: absolute;
        right: 20px;
     }

    .base-header:has(.not-logged-in) .header-nav .header-login + .header-try-now {
        display: none;
    }

    .base-header:has(.is-logged-in) .header-nav .header-login + .header-try-now {
        display: block !important;
        width: 100% !important;
        margin-top: 10px;
        position: static;
    }

    .base-header .header-logo {
        margin: 0 auto;
        padding: 10px 0;
    }

    .base-header .nav-name.link::before {
        display: none;
    }

    .base-header .mobile-menu {
        display: block;
        position: absolute;
        left: 20px;
        top: 18px;
        cursor: pointer;
    }

    .base-header .header-right-list {
        position: fixed;
        width: 100%;
        height: 100%;
        background: #fff;
        margin-left: 0;
        top: 0;
        left: -100%;
        z-index: 102;
        display: block;
    }

    .base-header.menu-opened .header-right-list {
        left: 0;
    }

    .base-header .close-menu {
        display: block;
        border-bottom: 2px solid #bcbcbc;
    }

    .base-header .close-menu img {
        padding: 20px 0 20px 20px;
        cursor: pointer;
    }

    .base-header .header-nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        width: 100%;
        height: calc(100vh - 60px);
        overflow-y: scroll;
        overscroll-behavior: none;
    }

    .base-header .header-nav>* {
        width: 100%;
        border-bottom: 1px solid #ebebeb;
    }

    .base-header .header-nav .header-login {
        margin: 10px 0;
        width: 100%;
    }

    .base-header .nav-name {
        padding: 10px 0;
    }

    .base-header .nav-name.link {
        padding: 10px 0 10px;
    }

    .base-header .nav-name.link a {
        padding: 10px 0;
    }

    .base-header .product-bg {
        position: static;
        padding: 10px 0;
        box-shadow: none;
        border-top: 1px solid #ebebeb;
    }

    .base-header .category-list {
        flex-direction: column;
    }

    .base-header .product-category {
        width: 100%;
        padding: 0;
        border-left: none;
    }

    .base-header .product-category:first-child {
        width: 100%;
    }

    .base-header .product-category:nth-child(2) .category-name{
        display: none;
    }

    .base-header .product-category:nth-child(3) {
        width: 100%;
    }


    .base-header .header-resource .category-name {
        padding-left: 32px;
        margin-bottom: 10px;
    }

    .base-header .header-resource .category-name::before {
        left: 0;
    }


    .base-header .category-name img {
        display: none;
    }

    .base-header .product-item img {
        position: relative;
    }

    .base-header .category-name {
        display: block;
        margin-bottom: 20px;
    }

    .base-header .product-item .product-name,
    .base-header .product-item .product-desc {
        transform: translate(30px, -26px);
    }


    .base-header .product-item {
        margin: 0;
    }

    .base-header .product-name>img {
        display: none;
    }

    .base-header .demo-list,
    .base-header .header-resource>ul {
        flex-direction: column;
        height: auto;
    }

    .base-header .demo-item {
        max-width: 400px;
        width: 100%;
        margin: 16px 0 0;
    }

    .base-header .demo-item:first-child {
        margin-top: 0;
    }

    .base-header .header-resource {
        align-items: flex-start;
    }

    .base-header .header-resource .product-category {
        padding: 20px 0 0;
    }

    .base-header .header-resource .product-category:first-child {
        padding-top: 0;
    }

    .base-header .header-resource .product-item {
        margin-top: 17px;
        margin-bottom: 17px;
        font-size: 12px;
        line-height: 18px;
    }

    .base-header .header-resource .product-item::before {
        top: 6px;
    }

    .base-header .header-resource>ul::after {
        display: none;
    }

    .base-header .more-resource {
        font-size: 14px;
        line-height: 21px;
        padding-bottom: 0;
    }

    .base-header .search-box {
        padding: 0;
        margin: 0 15px;
        border-bottom: 1px solid #bcbcbc;
    }

    .base-header #header-search-form,
    .base-header label {
        display: block;
    }

    .base-header #header-search-form {
        width: 100%;
        border-radius: 0;
        border: none;
        background: none;
        position: relative;
    }

    .base-header label {
        position: absolute;
        left: 5px;
        top: 5px;
    }

    .base-header .search-t {
        padding: 5px 0;
    }

    .base-header #header-search-keywords {
        line-height: 26px;
    }

    .base-header .lang-box {
        display: none;
    }

    .base-header.menu-opened .lang-box {
        display: block;
        position: absolute;
        right: 20px;
        top: 12px;
    }

    .base-header .bot-relate:hover {
        color: #485064;
        border-color: #ddd
    }

    .base-header .bot-relate:hover .header-arrow {
        background: url(https://images.clevguard.com/en/assets/common/header/header-arrow.svg)
    }

    .base-header .bot-relate.on {
        color: #00BDE3;
        border-color: #00BDE3
    }

    .base-header .bot-relate.on .header-arrow {
        background: url(https://images.clevguard.com/en/assets/common/header/header-arrow-curr.svg)
    }
}

/* header end */

/* base-footer */
.base-footer {
    border-top: 1px solid #ddd;
}

.base-footer .footer-nav {
    display: flex;
    padding-top: 46px;
}

.base-footer .footer-nav .nav-item {
    width: 30%;
}

.base-footer .footer-logo {
    margin-bottom: 24px;
}

.base-footer .pay-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 30px 0;
    margin-top: 0;
}

.base-footer .trustpilot-title {
    margin-bottom: 10px;
    font-family: Poppins Medium;
    color: #2e2e2e;
    line-height: 24px;
}

.base-footer .trustpilot-title img {
    margin-right: 5px;
}

.base-footer .trustpilot-star {
    font-size: 0;
    margin-bottom: 6px;
}

.base-footer .trustpilot-star img {
    margin-right: 6px;
}

.base-footer .score-reviews {
    font-size: 14px;
    line-height: 24px;
    color: #485064;
    margin-bottom: 24px;
}

.base-footer .score-reviews span {
    color: #1a243d;
}

.base-footer .social-media {
    margin-bottom: 24px;
}

.base-footer .social-title {
    font-family: Poppins Medium;
    color: #2e2e2e;
    line-height: 26px;
    margin-bottom: 12px;
}

.base-footer .social-list {
    display: flex;
}

.base-footer .social-list a {
    margin-right: 9px;
}

.base-footer .lang-box {
    position: relative;
}

.base-footer .bot-relate {
    cursor: pointer;
    width: 134px;
    height: 36px;
    line-height: 34px;
    color: #485064;
    border-radius: 3px;
    border: 1px solid #ddd;
    text-align: center;
}

.base-footer .bot-relate img {
    margin-right: 6px;
}

.base-footer .bot-relate .right-arrow {
    display: inline-block;
    width: 6px;
    height: 10px;
    margin-left: 6px;
    pointer-events: none;
    background: url(https://images.clevguard.com/en/assets/common/footer/language_right.svg);
}

.base-footer .other-lang {
    display: none;
    position: absolute;
    left: 0;
    bottom: 56px;
    width: 134px;
    background: #fff;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, .2));
}

.base-footer .other-lang:after {
    content: '';
    position: absolute;
    left: 50%;
    margin-left: -11px;
    bottom: -20px;
    width: 0;
    height: 0;
    border-width: 10px;
    border-style: solid;
    border-color: #fff transparent transparent;
}

.base-footer .other-lang li {
    cursor: pointer;
    height: 36px;
    line-height: 36px;
}

.base-footer .other-lang li a {
    color: #333;
    padding-left: 16px;
}

.base-footer .other-lang li a:hover {
    text-decoration: none;
    color: #00bde3;
}

.base-footer .other-lang li img {
    width: 26px;
    margin-right: 6px;
}

.base-footer .nav-title {
    font-size: 18px;
    font-family: Poppins SemiBold;
    line-height: 26px;
}

.base-footer .nav-title .footer-arrow {
    display: none;
}

.base-footer .nav-list li {
    margin-top: 16px;
    line-height: 25px;
}

.base-footer .store {
    margin-top: 32px;
}

.base-footer .store a {
    display: block;
    width: 192px;
    height: 48px;
    line-height: 46px;
    border-radius: 4px;
    border: 2px solid #f93;
    color: #f93;
    display: flex;
    justify-content: center;
    align-items: center;
}

.base-footer .store .store-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 6px;
    background: url(https://images.clevguard.com/en/assets/common/footer/store_icon.svg);
}

.base-footer .store a:hover {
    color: #fff;
    background: #f93;
    text-decoration: none;
}

.base-footer .store a:hover .store-icon {
    background: url(https://images.clevguard.com/en/assets/common/footer/store_icon_hover.svg);
}

.base-footer .polices {
    margin-top: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid #ddd;
}

.base-footer .polices ul {
    display: flex;
    justify-content: center;
}

.base-footer .polices ul li {
    font-size: 14px;
    line-height: 21px;
    color: #485064;
    margin-right: 8px;
}

.base-footer .pay-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 30px 0;
    margin-top: 0;
}

.base-footer .pay-list img {
    height: 35px;
    margin: 2px;
}

.base-footer .disclaimer {
    text-align: center;
    color: #485064;
}

.base-footer .disclaimer-title {
    font-family: Poppins Medium;
    font-size: 14px;
    line-height: 23px;
    margin-bottom: 8px;
}

.base-footer .disclaimer-desc {
    font-size: 12px;
    line-height: 18px;
}

.base-footer .copy-right {
    text-align: center;
    margin: 16px 0 23px;
    font-size: 14px;
    line-height: 21px;
    color: #485064;
}

.base-footer .to-top {
    display: none;
    background: rgba(0, 0, 0, .3);
    position: fixed;
    z-index: 999;
    width: 50px;
    height: 50px;
    bottom: 350px;
    right: 10px;
    border-radius: 50%;
    opacity: 0;
    transition: all .5s ease;
}

.base-footer .to-top.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.base-footer .to-top:hover {
    background: rgba(0, 0, 0, .6);
}

@media (max-width: 1024px) {
    .base-footer .base-maxwidth {
        margin: 0 20px;
    }

    .base-footer .footer-nav {
        display: block;
        padding-top: 40px;
    }

    .base-footer .footer-nav .nav-item {
        width: 100%;
    }

    .base-footer .site-info {
        position: relative;
    }

    .base-footer .footer-logo {
        margin-bottom: 25px;
    }

    .base-footer img {
        margin-right: 5px;
        margin-bottom: 5px;
    }

    .base-footer .to-top.show img {
        margin-right: 0;
        margin-bottom: 0;
    }

    .base-footer .trustpilot-social {
        display: flex;
        flex-direction: column;
    }

    .base-footer .trustpilot-content {
        order: 1;
        margin-bottom: 10px;
        display: flex;
    }

    .base-footer .trustpilot-title {
        display: none;
    }

    .base-footer .trustpilot-star,
    .base-footer .score-reviews {
        margin-bottom: 0;
    }

    .base-footer .trustpilot-star img {
        width: 22px;
        margin-right: 3px;
    }

    .base-footer .score-reviews {
        margin-left: 5px;
    }

    .base-footer .social-media {
        margin-bottom: 18px;
        display: flex;
        justify-content: space-between;
    }

    .base-footer .social-title {
        margin-bottom: 0;
    }

    .base-footer .social-list a {
        width: 28px;
        margin-left: 13px;
        margin-right: 0;
    }

    .base-footer .lang-box {
        position: absolute;
        right: 0;
        top: -4px;
    }

    .base-footer .slide-item {
        padding: 15px 0;
        border-bottom: 1px solid #e2e8ed;
    }

    .base-footer .nav-title {
        font-size: 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

    .base-footer .nav-title .footer-arrow {
        display: block;
        width: 10px;
        height: 17px;
        background: url(https://images.clevguard.com/en/assets/common/footer/right_select.svg);
        transition: all .5s ease;
    }

    .base-footer .nav-title.curr {
        color: #00bde3;
    }

    .base-footer .nav-title.curr .footer-arrow {
        background: url(https://images.clevguard.com/en/assets/common/footer/right_select_curr.svg);
        transform: rotate(90deg);
    }

    .base-footer .nav-list {
        display: none;
    }

    .base-footer .nav-list li {
        font-size: 14px;
    }

    .base-footer .store {
        margin-top: 24px;
    }

    .base-footer .polices {
        margin-top: 24px;
        padding-bottom: 24px;
    }

    .base-footer .polices ul {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .base-footer .disclaimer {
        margin-top: 24px;
        text-align: left;
    }

    .base-footer .copy-right {
        margin: 15px 0 16px;
    }
}

@media (max-width: 768px) {
    .base-footer .to-top {
        bottom: 30vw;
    }
}

/* base-footer */

/* cookie-policy */
.cookie-policy {
    position: fixed;
    width: 100%;
    padding: 10px 2%;
    left: 0;
    bottom: 0;
    background: #fff;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    z-index: 999;
    box-shadow: 0 2px 20px #b1b1b1;
}

.cookie-policy a {
    color: #00bde3;
}

.cookie-policy .btn-cookie {
    display: inline-block;
    width: 130px;
    background: #00bde3;
    margin-left: 5px;
    cursor: pointer;
    border: 1px solid #00bde3;
    border-radius: 5px;
    padding: 2px 0;
    font-weight: bold;
    text-align: center;
    color: #fff;
}

/* cookie-policy */

/* choose-wrap */
.choose-wrap .hidden {
    display: none;
}

.choose-wrap .choose-aside {
    position: fixed;
    display: flex;
    width: 190px;
    height: 48px;
    background: #00bde3;
    right: -142px;
    bottom: calc(51% - 49px);
    color: #fff;
    line-height: 48px;
    z-index: 100;
    cursor: pointer;
    transition: all .3s ease 0s;
}

.choose-wrap .choose-aside:hover {
    right: 0;
}

.choose-wrap .choose-aside img {
    margin-right: 5px;
}

.choose-wrap .choose-modal {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 998;
    display: none;
}

.choose-wrap .choose-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .5);
}

.choose-wrap .modal-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 740px;
    max-height: calc(100% - 40px);
    border-radius: 4px;
    border: 1px solid #e6e6e6;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .3);
    background: #fff;
}

.choose-wrap .modal-header {
    height: 70px;
    position: relative;
    text-align: center;
}

.choose-wrap .prev-step {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: url(https://images.clevguard.com/en/assets/common/help_me_choose/back_normal.svg);
    background-size: cover;
}

.choose-wrap .prev-step:hover {
    background: url(https://images.clevguard.com/en/assets/common/help_me_choose/back_hover.svg);
    background-size: cover;
}

.choose-wrap .m-modal-title {
    display: none;
}

.choose-wrap .close-modal {
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
}

.choose-wrap .modal-body {
    margin: 30px 15px 70px;
}

.choose-wrap .section {
    position: relative;
}

.choose-wrap .step-progress {
    width: 210px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
}

.choose-wrap .step-item {
    width: 30px;
    height: 30px;
    font-size: 18px;
    line-height: 30px;
    font-weight: bold;
    border-radius: 50%;
    text-align: center;
    color: #fff;
}

.choose-wrap .step-line {
    flex-grow: 1;
    height: 2px;
}

.choose-wrap .bg-blue {
    background: #00bde3;
}

.choose-wrap .bg-gray {
    background: #ccc;
}

.choose-wrap .section-title {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    line-height: 30px;
    font-weight: bold;
    margin-bottom: 30px;
}

.choose-wrap .step-bg {
    width: 76px;
    height: 30px;
    font-size: 16px;
    color: #fff;
    background: url(https://images.clevguard.com/en/assets/common/help_me_choose/step_one.svg) right center no-repeat;
    margin-right: 10px;
    text-align: center;
    font-weight: normal;
    flex-shrink: 0;
}

.choose-wrap .content-row {
    display: flex;
    justify-content: space-between;
}

.choose-wrap .small {
    max-width: 440px;
    margin: 0 auto;
}

.choose-wrap .m-radio {
    padding: 15px 20px;
    background: #fafafa;
    border-radius: 8px;
    border: 1px solid #e6e6e6;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all .3s ease;
}

.choose-wrap .m-radio.column {
    flex-direction: column;
}

.choose-wrap .m-radio.column img {
    margin: 0 0 20px;
}

.choose-wrap .m-radio.column>div {
    display: flex;
}

.choose-wrap .radio-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-right: 10px;
    background: url(https://images.clevguard.com/en/assets/common/help_me_choose/singlebox_normal.svg);
    transition: all .3s ease;
}

.choose-wrap .m-radio.curr,
.choose-wrap .m-radio:hover {
    background: #fff;
    border: 1px solid #00bde3;
}

.choose-wrap .m-radio.curr .radio-icon {
    background: url(https://images.clevguard.com/en/assets/common/help_me_choose/singlebox_hover.svg);
}

.choose-wrap .m-radio img {
    margin: 0 15px 0 5px;
}

.choose-wrap .section-05 .m-radio img {
    width: 46px;
}

.choose-wrap .section-12 .m-radio {
    width: 20%;
}

.choose-wrap .radio-desc {
    font-size: 14px;
    color: #666;
}

.choose-wrap .to-next {
    width: 180px;
    height: 46px;
    border-radius: 23px;
    color: #ddd;
    border: 2px solid #ddd;
    line-height: 44px;
    cursor: default;
    transition: all .3s ease;
    margin: 0 auto;
    text-align: center;
}

.choose-wrap .to-next.curr {
    border-color: #00bde3;
    color: #00bde3;
    cursor: pointer;
}

.choose-wrap .product-box {
    display: flex;
    align-items: center;
    padding: 36px 30px 40px;
    margin-bottom: 30px;
    background: #f6f6f6;
    border-radius: 8px;
}

.choose-wrap .product-box picture {
    margin-right: 50px;
}

.choose-wrap .product-right h4 {
    font-size: 18px;
    line-height: 26px;
    color: #00bde3;
    margin-bottom: 4px;
    font-weight: bold;
}

.choose-wrap .product-right ul {
    margin-left: 20px;
    margin-bottom: 25px;
    list-style: disc;
}

.choose-wrap .product-right ul li {
    margin-top: 10px;
    color: #666;
}

.choose-wrap .btn-group {
    display: flex;
}

.choose-wrap .btn-group .btn-box {
    margin-left: 20px;
}

.choose-wrap .btn-group .btn-box:first-child {
    margin-left: 0;
}

.choose-wrap .btn-group .base-btn {
    width: 160px;
    height: 40px;
    font-size: 16px;
    line-height: 40px;
    font-family: Poppins Regular;
}

.choose-wrap .btn-group .btn-box p {
    margin-top: 6px;
    font-size: 12px;
    color: #666;
    line-height: 20px;
}

.choose-wrap .know-more {
    font-size: 14px;
}

.choose-wrap .know-more a {
    color: #00bde3;
    text-decoration: underline;
}

.choose-wrap .no-result {
    text-align: center;
}

.choose-wrap .no-result .orange-txt {
    color: #f93;
    font-weight: bold;
}

.choose-wrap .no-result .red-txt {
    color: #ff4e50;
    font-weight: bold;
}

.choose-wrap .completed-box {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.choose-wrap .completed-box .base-btn {
    width: 180px;
    height: 46px;
    font-size: 16px;
    font-family: Poppins Regular;
    margin-left: 10px;
}

.choose-wrap .completed-box .base-btn:first-child {
    margin-left: 0;
}

.choose-wrap .form-box {
    max-width: 320px;
    margin: 35px auto 50px;
}

.choose-wrap .form-box .form-email {
    width: 100%;
    height: 40px;
    border-radius: 4px;
    border: solid 1px #e0e0e0;
    padding: 8px 10px;
}

.choose-wrap .form-box .form-email.error {
    border-color: #e6462e;
}

.choose-wrap .submit-btn {
    margin: 0 auto;
    width: 180px;
    height: 46px;
    font-size: 16px;
    font-family: Poppins Regular;
}

.choose-wrap .error-tips {
    font-size: 14px;
    line-height: 24px;
    color: #e6462e;
}

.choose-wrap .submitted-info {
    position: absolute;
    bottom: -36px;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    height: 30px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
}

.choose-wrap .submitted-info.success {
    background: #e5f8fc;
    color: #00bde3;
}

.choose-wrap .submitted-info.error {
    background: #ffeded;
    color: #ff4e50;
}

.choose-wrap .submitted-info:before {
    content: '';
    margin-right: 8px;
    display: none;
}

.choose-wrap .submitted-info.success:before {
    display: block;
    width: 14px;
    height: 12px;
    background: url(https://images.clevguard.com/en/assets/common/help_me_choose/succes.svg);
}

.choose-wrap .submitted-info.error:before {
    display: block;
    width: 11px;
    height: 11px;
    background: url(https://images.clevguard.com/en/assets/common/help_me_choose/error.svg);
}

@media (max-width: 767px) {
    .choose-wrap .modal-dialog {
        width: calc(100% - 30px);
    }

    .choose-wrap .modal-body {
        max-height: 60vh;
        overflow-y: scroll;
    }

    .choose-wrap .product-box {
        flex-direction: column;
    }

    .choose-wrap .product-box picture {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .choose-wrap .btn-group {
        flex-direction: column;
        align-items: center;
    }

    .choose-wrap .btn-group .btn-box {
        margin-left: 0;
        margin-top: 20px;
    }

    .choose-wrap .btn-group .btn-box:first-child {
        margin-top: 0;
    }

    .choose-wrap .content-row {
        flex-wrap: wrap;
    }

    .choose-wrap .section-05 .m-radio {
        width: 100%;
    }
}

@media (max-width: 540px) {
    .choose-wrap .section-12 .m-radio {
        width: 45%;
    }
}

/* choose-wrap */

/* video-popu */
#popu-cont {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 500;
}

#popu-cont .popu-mask {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .86);
    cursor: pointer;
}

#popu-cont .popu-wrap {
    position: absolute;
    width: calc(100% - 40px);
    max-width: 960px;
    padding: 15px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 15px;
    background: #fff;
}

#popu-cont .popu-close-btn {
    position: absolute;
    top: -10px;
    right: -8px;
    color: #fff;
    border-radius: 50%;
    border: 2px solid #f2f2f2;
    background: #000;
    transform: rotate(45deg);
    cursor: pointer;
}

#popu-cont iframe {
    width: 100%;
    height: 451px;
    border: none;
    background: #000;
}

/* video-popu */

.popu-video.hidden,
.video-desc.hidden {
    display: none !important;
}



/* Banner Footer Start */

.banner-footer {
    display: flex;
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    font-family: 'Poppins';
    z-index: 104;
    background-color: #e4f2ff;
    box-shadow: 0px -5px 10px 0px rgba(0, 0, 0, 0.1);
}

.banner-footer .container {
    display: flex;
    cursor: pointer;
    width: 1150px;
}

.banner-footer .container .limited-time {
    display: flex;
    align-items: center;
    width: 200px;
    height: 100%;
    text-align: center;
    line-height: 36px;
    font-style: oblique;
    font-size: 24px;
    padding-top: 17px;
    font-weight: 800;
    background-color: #00bde3;
    color: #fff;
}

.banner-footer .container .intro-info {
    flex: 1;
    padding: 19px 0 19px 40px;
}

.banner-footer .container .intro-info .product-name {
    position: relative;
    margin-left: 26px;
    font-size: 15px;
    line-height: 24px;
}

.banner-footer .container .intro-info .product-name::before {
    position: absolute;
    content: '';
    left: -28px;
    top: 0;
    width: 24px;
    height: 24px;
    background-image: url(https://images.clevguard.com/en/assets/common/product-icon/kidsguard_whatsapp_logo.svg);
    background-size: contain;
}

.banner-footer .container .activity-intro {
    position: relative;
    font-size: 24px;
    color: #2e2e2e;
    line-height: 32px;
}

.banner-footer .container .activity-intro::after {
    position: absolute;
    display: block;
    right: 0;
    top: -37px;
    width: 148px;
    height: 148px;
    content: '';
    background: url(https://images.clevguard.com/en/themes/clevguard/public/assets/images/whatsapp_product/whatsapp_banner_img.png);
    background-size: contain;
    z-index: -1;
}

.banner-footer .container .activity-intro .percent-num {
    font-family: 'Poppins bold';
    font-size: 30px;
    color: #00BDE3;
    line-height: 36px;
    font-weight: 800;
    font-style: italic;
}

.banner-footer .container .desc {
    font-size: 14px;
    line-height: 16px;
    color: #2e2e2e;
}

.banner-footer .container .pricing-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 128px;
    height: 100%;
}

.banner-footer .container .pricing-btn a {
    width: 100%;
    height: 32px;
    font-size: 16px;
    line-height: 32px;
    color: #fff;
    text-align: center;
    background: #00BDE3;
    border-radius: 4.5px;
}

.banner-footer .close-btn {
    position: absolute;
    top: 50px;
    transform: translateY(50%);
    right: 52px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    background-image: url(https://images.clevguard.com/en/assets/common/close_christmas_right.svg);
    background-size: contain;
}

.banner-footer .discount-gif {
    display: none;
    cursor: pointer;
    position: absolute;
    right: 0;
    bottom: 20px;
    width: 100px;
    height: 100px;
}

@media (max-width: 1350px) {
    .banner-footer .close-btn {
        top: 3px;
        right: 10px;
    }
}

@media (max-width: 820px) {
    .banner-footer {
        display: none;
    }
}

.mobil-pop {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    font-family: 'Poppins';
    z-index: 1000;
    background: rgba(0, 0, 0, 0.6);
}

.mobil-pop .wrap {
    position: relative;
    width: 300px;
    height: 450px;
    background: #E4F2FF;
    transition: all 0.5 ease;
}

.mobil-pop .wrap .container-wrap {
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 100%;
}

.mobil-pop .wrap .container-wrap::after {
    position: absolute;
    content: '';
    bottom: -86px;
    right: -34px;
    overflow: hidden;
    width: 237px;
    height: 278px;
    background: url(https://images.clevguard.com/en/themes/clevguard/public/assets/images/whatsapp_product/whatsapp_banner_img.png) no-repeat;
    background-size: contain;
    z-index: -1;
}

.mobil-pop .wrap .limited {
    font-family: 'Poppins bold';
    font-style: italic;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 235px;
    height: 110px;
    padding: 0 16px;
    text-align: center;
    font-size: 20px;
    color: #fff;
    line-height: 36px;
    font-weight: 800;
    background: #00BDE3;
    margin: 0 auto;
}

.mobil-pop .wrap .limited span {
    font-size: 24px;
}

.mobil-pop .wrap .product-name {
    position: relative;
    margin-left: 34px;
    margin-top: 25px;
    text-align: center;
    font-size: 20px;
    line-height: 32px;
    color: #2e2e2e;
}

.mobil-pop .wrap .product-name::before {
    position: absolute;
    content: '';
    width: 32px;
    height: 32px;
    left: -21px;
    top: 0;
    background: url(https://images.clevguard.com/en/assets/common/product-icon/kidsguard_whatsapp_logo.svg) no-repeat;
    background-size: contain;
}

.mobil-pop .wrap .desc {
    padding: 0 10px;
    margin-top: 23px;
    text-align: center;
    line-height: 16px;
    color: #2E2E2E;
}

.mobil-pop .device-icon {
    margin-top: 22px;
    text-align: center;
}

.mobil-pop .pricing-btn {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.mobil-pop .pricing-btn a {
    display: block;
    width: 176px;
    height: 44px;
    text-align: center;
    line-height: 44px;
    background: #00BDE3;
    border-radius: 6px;
    color: #fff;
}

.mobil-pop .pricing-btn span {
    display: inline-block;
    width: 7px;
    height: 16px;
    margin-bottom: -5px;
    margin-left: 7px;
    background: url(https://images.clevguard.com/en/assets/common/right-arrow-hover.svg) no-repeat;
    background-size: contain;
}

.mobil-pop .close-btn {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: url(https://images.clevguard.com/en/assets/common/close_christmas_right.svg) no-repeat;
    background-size: contain;
    z-index: 1;
    cursor: pointer;
}

.mobil-pop .discount-gif {
    display: none;
    cursor: pointer;
    position: fixed;
    right: 0;
    bottom: 20px;
    width: 100px;
    height: 100px;
}

.mobil-pop.close {
    right: -30px;
    bottom: 50px;
    width: 0;
    height: 0;
}

/* Banner Footer End */

.base-header .header-demo.header-products.on .product-bg {
    top: 82px !important;
}