@charset "UTF-8";
/* common */
h1 {
    font-family: Poppins Bold;
    font-size: 38px;
    line-height: 56px;
    text-align: center;
}
h2 {
    font-family: Poppins Bold;
    font-size: 36px;
    line-height: 59px;
    text-align: center;
}
h3 {
    font-family: Poppins Bold;
    font-size: 22px;
    line-height: 37px;
}
@media (max-width: 768px) {
    h1 {
        font-size: 26px;
        line-height: 40px;
    }
    h2 {
        font-size: 24px;
        line-height: 34px;
    }
    h3 {
        font-size: 20px;
        line-height: 28px;
    }
}
/* common */

/* banner */
.banner {
    padding: 72px 0 80px;
    background: #e2f2ff;
}
.banner .page-desc {
    margin-top: 16px;
    font-size: 18px;
    line-height: 25px;
    text-align: center;
}
.banner .search-form {
    max-width: 700px;
    margin: 56px auto 0;
    border-radius: 8px;
    box-shadow: 0 2px 6px 0 rgba(175, 195, 212, .6);
}
.banner #cse-search-box {
    display: flex;
}
.banner .search-form-it {
    width: calc(100% - 62px);
    height: 62px;
    border-radius: 8px 0 0 8px;
    background: #fff;
    text-indent: 24px;
    font-size: 18px;
}
.banner .search-form-it:-webkit-autofill {
    box-shadow: 0 0 0 31px #fff inset;
}
.banner .search-form-btn {
    width: 62px;
    height: 62px;
    background: #0076e3 url(https://images.clevguard.com/de/assets/support_center/search_button_support.svg) center center no-repeat;
    background-size: cover;
    border-radius: 0 8px 8px 0;
}
.banner .hot-searches {
    margin-top: 32px;
    color: #5e6577;
    text-align: center;
    line-height: 23px;
}
.banner .hot-searches a {
    margin: 0 6px;
    text-decoration: underline;
}
.banner .hot-searches a:hover {
    color: #0076e3;
}
@media (max-width: 768px) {
    .banner {
        padding: 40px 0 48px;
    }
    .banner .page-desc {
        font-size: 16px;
        line-height: 23px;
    }
    .banner .search-form {
        margin-top: 32px;
    }
    .banner .search-form-it {
        width: calc(100% - 50px);
        height: 50px;
        text-indent: 14px;
        font-size: 16px;
    }
    .banner .search-form-btn {
        width: 50px;
        height: 50px;
    }
    .banner .hot-searches {
        margin-top: 24px;
        line-height: 30px;
    }
}
/* banner */

/* serving-nav */
.serving-nav {
    margin-top: 56px;
}
.serving-nav .serving-content {
    display: flex;
    justify-content: space-between;
}
.serving-nav .serving-item {
    width: 23.5%;
    border: 2px solid #dfe7ea;
    border-radius: 8px;
    padding: 30px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.serving-nav .serving-title {
    margin-top: 16px;
    font-size: 18px;
    line-height: 29px;
    font-family: Poppins SemiBold;
}
.serving-nav .serving-desc {
    margin-top: 8px;
    line-height: 23px;
    flex-grow: 1;
}
.serving-nav .base-link {
    margin-top: 16px;
    font-size: 16px;
    line-height: 26px;
}
@media (max-width: 768px) {
    .serving-nav {
        margin-top: 32px;
    }
    .serving-nav .serving-content {
        flex-direction: column;
    }
    .serving-nav .serving-item {
        width: 100%;
        border: 1px solid #dfe7ea;
        padding: 23px 19px;
    }
    .serving-nav .serving-item + .serving-item {
        margin-top: 16px;
    }
    .serving-nav .serving-item > svg {
        width: 64px;
        height: 64px;
    }
    .serving-nav .serving-title {
        margin-top: 8px;
    }
    .serving-nav .serving-desc {
        margin-top: 4px;
    }
    .serving-nav .base-link {
        margin-top: 12px;
    }
}
/* serving-nav */


/* guides-faqs */
.guides-faqs {
    margin-top: 100px;
    padding: 100px 0;
    background: #f3f4f7;
}
.guides-faqs .plate-content {
    margin-top: 56px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.guides-faqs .left {
    width: 300px;
    padding: 24px 16px;
    border-radius: 10px;
    box-shadow: 0 6px 24px 0 rgba(22, 25, 45, .1);
}
.guides-faqs .left-item {
    padding: 14px 30px 13px;
    border-radius: 8px;
    font-size: 18px;
    line-height: 29px;
    font-family: Poppins SemiBold;
    position: relative;
    cursor: pointer;
    transition: all .5s ease;
}
.guides-faqs .left-item + .left-item {
    margin-top: 10px;
}
.guides-faqs .left-item:before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2e2e2e;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
}
.guides-faqs .left-item:hover {
    background: #e4f2ff;
}
.guides-faqs .left-item.curr {
    color: #fff;
    background: #00bde3;
}
.guides-faqs .left-item.curr:before {
    background: #fff;
}
.guides-faqs .left-item.curr:after {
    content: '';
    width: 0;
    height: 0;
    border-left: 9px solid #fff;
    border-top: 7px solid rgba(0, 0, 0, 0);
    border-bottom: 7px solid rgba(0, 0, 0, 0);
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.guides-faqs .right {
    width: calc(100% - 332px);
}
.guides-faqs .right-item {
    display: none;
}
.guides-faqs .right-item.curr {
    display: flex;
    justify-content: center;
}
.guides-faqs .product-box {
    width: calc((100% - 40px) / 3);
    padding: 32px 13px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 15px;
    background: #e4f2ff;
}
.guides-faqs .product-box + .product-box {
    margin-left: 20px;
}
.guides-faqs .product-box img {
    width: 48px;
}
.guides-faqs .product-title {
    margin-top: 20px;
    font-size: 18px;
    line-height: 28px;
    font-family: Poppins Bold;
}
.guides-faqs .product-desc {
    margin-top: 6px;
    line-height: 23px;
    flex-grow: 1;
}
.guides-faqs .btn-box {
    margin-top: 24px;
    width: 80%;
}
.guides-faqs .base-btn {
    width: 100%;
    height: 46px;
    font-size: 16px;
    line-height: 26px;
    font-family: Poppins Medium;
}
.guides-faqs .base-btn + .base-btn {
    margin-top: 10px;
}
.guides-faqs .base-link {
    margin-top: 48px;
    line-height: 25px;
    text-align: center;
    font-family: Poppins Regular;
}
@media (max-width: 900px) {
    .guides-faqs .plate-content {
        flex-direction: column;
    }
    .guides-faqs .left {
        width: 100%;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .guides-faqs .right {
        width: 100%;
        margin-top: 10px;
    }
    .guides-faqs .left-item {
        margin-bottom: 14px;
        padding: 7px 10px;
        border-radius: 6px;
        background: #e4f2ff;
        font-size: 16px;
        line-height: 23px;
        font-family: Poppins Regular;
        color: #0076e3;
    }
    .guides-faqs .left-item + .left-item {
        margin-top: 0;
        margin-left: 8px;
    }
    .guides-faqs .left-item:before {
        display: none;
    }
    .guides-faqs .left-item.curr:after {
        display: none;
    }
}
@media (max-width: 768px) {
    .guides-faqs {
        margin-top: 56px;
    }
    .guides-faqs .plate-content {
        margin-top: 24px;
    }
    .guides-faqs .base-link {
        margin-top: 32px;
        font-size: 16px;
        line-height: 23px;
    }
}
@media (max-width: 600px) {
    .guides-faqs .right-item.curr {
        flex-direction: column;
        align-items: center;
    }
    .guides-faqs .product-box {
        width: 300px;
    }
    .guides-faqs .product-box + .product-box {
        margin-left: 0;
        margin-top: 16px;
    }
}
@media (max-width: 383px) {
    .guides-faqs .left-item:nth-child(2n - 1) {
        margin-left: 0;
    }
}
@media (max-width: 372px) {
    .guides-faqs .left-item:nth-child(2n - 1) {
        margin-left: 8px;
    }
    .guides-faqs .left-item:nth-child(3) {
        margin-left: 0;
    }
    .guides-faqs .left-item:nth-child(4) {
        margin-left: 0;
    }
    .guides-faqs .base-link {
        font-size: 14px;
    }
}
/* guides-faqs */

/* common-faqs */
.common-faqs {
    margin-top: 100px;
    padding: 100px 0;
    background: #f3f4f7;
}
.common-faqs .faqs-content {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
}
.common-faqs .faqs-plate {
    width: calc(95% / 3);
    display: flex;
    flex-direction: column;
    padding: 28px 32px 32px 39px;
    border-radius: 16px;
    background: #fff;
}
.common-faqs h3 {
    position: relative;
}
.common-faqs h3:before {
    content: '';
    width: 5px;
    height: 22px;
    border-radius: 3px;
    background: #00bde3;
    position: absolute;
    left: -15px;
    top: 7px;
}
.common-faqs ul {
    flex-grow: 1;
    margin-top: 20px;
}
.common-faqs ul li {
    line-height: 23px;
}
.common-faqs ul li + li{
    margin-top: 20px;
}
.common-faqs .base-link {
    margin-top: 20px;
    font-size: 16px;
    line-height: 26px;
    font-family: Poppins Medium;
}
@media (max-width: 768px) {
    .common-faqs {
        margin-top: 56px;
        padding: 56px 0;
    }
    .common-faqs .faqs-content {
        margin-top: 32px;
        flex-direction: column;
        align-items: center;
    }
    .common-faqs .faqs-plate {
        width: 100%;
        max-width: 540px;
        padding: 24px 30px;
    }
    .common-faqs .faqs-plate + .faqs-plate {
        margin-top: 24px;
    }
    .common-faqs h3:before {
        height: 20px;
        top: 4px;
    }
    .common-faqs ul {
        margin-top: 16px;
    }
}
/* common-faqs */

/* ask-questions */
.ask-questions {
    margin-top: 100px;
}
.ask-questions .plate-content {
    margin-top: 56px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.ask-questions .left {
    width: 300px;
    padding: 24px 16px;
    border-radius: 10px;
    box-shadow: 0 6px 24px 0 rgba(22, 25, 45, .1);
}
.ask-questions .left-item {
    padding: 14px 30px 13px;
    border-radius: 8px;
    font-size: 18px;
    line-height: 29px;
    font-family: Poppins SemiBold;
    position: relative;
    cursor: pointer;
    transition: all .5s ease;
}
.ask-questions .left-item + .left-item {
    margin-top: 10px;
}
.ask-questions .left-item:before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2e2e2e;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
}
.ask-questions .left-item:hover {
    background: #e4f2ff;
}
.ask-questions .left-item.curr {
    color: #fff;
    background: #00bde3;
}
.ask-questions .left-item.curr:before {
    background: #fff;
}
.ask-questions .left-item.curr:after {
    content: '';
    width: 0;
    height: 0;
    border-left: 9px solid #fff;
    border-top: 7px solid rgba(0, 0, 0, 0);
    border-bottom: 7px solid rgba(0, 0, 0, 0);
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.ask-questions .right {
    width: calc(100% - 380px);
}
.ask-questions .right-item {
    display: none;
}
.ask-questions .right-item.curr {
    display: block;
}
.ask-questions .faq-item.show .arrow {
    transform: translate(0,-50%) rotate(180deg)
}
.ask-questions .faq-item.show .arrow svg{
    fill: #00BDE3;
    color: #00BDE3;
}
.ask-questions .faq-item {
    border-bottom: 1px solid #DEDEDE
}
.ask-questions .faq-item.show {
    border-bottom: 0;
}
.ask-questions .faq-item p {
    position: relative;
    padding: 18px 0;
    font-size: 18px;
    cursor: pointer
}
.ask-questions .faq-item div {
    max-height: 0;
    padding: 0;
    overflow: hidden;
    line-height: 24px;
    transition: all .3s ease
}
.ask-questions .faq-item.show p {
    color: #00BDE3
}
.ask-questions .faq-item.show div {
    height: auto;
    padding: 0 0 18px 0;
    max-height: none
}
.ask-questions .faq-item .arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0,-50%);
    color: #2e2e2e;
    transition: all .3s ease
}
.ask-questions .learn-more {
    margin-top: 43px;
    color: #0076E3;
    font-size: 18px;
}
@media (max-width: 900px) {
    .ask-questions .plate-content {
        flex-direction: column;
    }
    .ask-questions .left {
        width: 100%;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        display: flex;
        flex-wrap: wrap;
    }
    .ask-questions .right {
        width: 100%;
        margin-top: 10px;
    }
    .ask-questions .left-item {
        margin-bottom: 14px;
        padding: 7px 10px;
        border-radius: 6px;
        background: #e4f2ff;
        font-size: 16px;
        line-height: 23px;
        font-family: Poppins Regular;
        color: #0076e3;
    }

    .ask-questions .left-item:not(:first-child) {
        margin-left: 8px;
    }

    .ask-questions .left-item + .left-item {
        margin-top: 0;
    }
    .ask-questions .left-item:before {
        display: none;
    }
    .ask-questions .left-item.curr:after {
        display: none;
    }
}
@media (max-width: 575px) {
    .ask-questions .left {
        flex-direction: column;
    }

    .ask-questions .left-item {
        width: fit-content;
    }

    .ask-questions .left-item:not(:first-child) {
        margin-left: 0;
    }
}
@media (max-width: 768px) {
    .ask-questions {
        margin-top: 56px;
    }
    .ask-questions .plate-content {
        margin-top: 24px;
    }
    .ask-questions .base-link {
        margin-top: 32px;
        font-size: 16px;
        line-height: 23px;
    }
}
@media (max-width: 600px) {
    .ask-questions .right-item.curr {
        flex-direction: column;
        align-items: center;
    }
    .ask-questions .faq-item p,
    .ask-questions .faq-item div{
        font-size: 14px;
    }
}
@media (max-width: 372px) {
    .ask-questions .base-link {
        font-size: 14px;
    }
}
/* ask-questions */