.template-inner,
.template-inner * {
    box-sizing: border-box;
}

.template-inner h1 {
    font-size: 33px;
}

.template-inner h2 {
    font-size: 27px;
    text-align: center;
}

.template-inner h3 {
    font-size: 21px;
}

.template-inner h4 {
    font-size: 17px;
}

.template-inner .content-wrap {
    padding: 40px 0;
}

.top-section {
    background: #0d1c45;
    margin: 10px auto 50px;
    max-width: 90%;
    border-radius: 20px;
}

.banner-box {
    color: #fff;
    padding: 20px 0 0;
}

.banner-con {
    padding: 5px 0;
    text-align: center;
}

.banner-con h4 {
    text-transform: uppercase;
    color: #259be4;
    font-family: var(--zf-secondary-extrabold);
    letter-spacing: 1px;
}

.domain-text {
    font-size: 15px;
    margin: 40px 0 15px;
}

.search-area {
    text-align: center;
}

.search-area form>div {
    margin-bottom: 15px;
    display: inline-block;
    vertical-align: top;
}

.search-area form>.search-submit {
    margin: 0 15px 15px;
}

.search-input input {
    min-width: 250px;
    height: 50px;
    font-size: 15px;
    padding: 10px 20px;
    border: 1px solid #fff;
    border-radius: 4px;
    color: #fff;
    background: #0d1c45;
    outline: 0;
    box-shadow: none;
    -webkit-appearance: none;
    font-family: var(--zf-primary-regular);
}

.search-input input.focus {
    border: 1px solid #ea5353;
}

.search-input input + label{
    display: none;
    margin-top: 5px;
    font-size: 12px;
    text-align: left;
}
.search-input input.focus + label{
    color: #ea5353;
    display: block;
}
.search-input input::placeholder {
    color: #fff;
}
.search-input input.focus::placeholder {
    color: transparent;
}
.search-submit-btn {
    background: #1976d2;
    border: 1px solid #1976d2;
    text-transform: uppercase;
    color: #fff;
    -webkit-appearance: none;
    display: inline-block;
    height: 50px;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
    font-family: var(--zf-primary-semibold);
}

.search-submit-btn:hover {
    background: #007efb;
    border: 1px solid #007efb;
}

.search-area+p {
    font-family: var(--zf-primary-semibold);
    margin: 10px 0 40px;
}

.act-btn {
    background: #f0483f;
    border-radius: 4px;
    color: #fff;
    padding: 12px 30px;
}

.banner-media {
    margin: 30px auto 0;
}

.banner-media img {
    max-width: 200px;
    width: 100%;
    display: block;
    margin: 0 auto;
    transform: translateY(50px);
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
}

.bottom-animated .banner-media img {
    transform: translateY(0);
    opacity: 1;
}

.features-section {
    background: #eff7ff;
}

.features-list-inner ul {
    display: none;
}

.features-details {
    margin: 50px auto 0;
}

.features-box {
    padding: 40px 20px;
    margin: 0 0 40px 0;
    text-align: center;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    transform: translateY(50px);
    transition: transform 0.5s ease;
}

.features-box.active {
    transform: translateY(0);
}

.features-box:last-child {
    margin: 0 0 20px;
}

.features-box p {
    margin: 0;
}

.l-more {
    margin-top: 20px;
    display: inline-block;
    text-transform: uppercase;
    position: relative;
    color: #1975d2;
    font-size: 15px;
    padding-right: 20px;
    font-family: var(--primaryfont-semibold);
    letter-spacing: 1.5px
}

.l-more:before {
    content: "";
    position: absolute;
    height: 14px;
    width: 14px;
    border-radius: 50%;
    background-color: #1975d2;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto
}

.l-more:after {
    content: "";
    position: absolute;
    height: 6px;
    width: 6px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotateZ(-45deg);
    top: 0;
    right: 5px;
    bottom: 0;
    margin: auto
}

.features-icon {
    background-repeat: no-repeat;
    background-position: 3px 10px;
    background-size: 600px auto;
    width: 100px;
    height: 100px;
    display: inline-block;
    margin-bottom: 20px;
    transform: scale(0);
    transition: transform 0.5s ease;
}

.data-loaded .features-icon {
    background-image: url("//cdn.zoho.com.cn/sites/zweb/images/toolkit/toolkit-home-sprite.png");
}

.features-icon-2 {
    background-position: -90px 10px;
}

.features-icon-3 {
    background-position: -189px 10px;
}

.features-icon-4 {
    background-position: -290px 10px;
}

.features-icon-5 {
    background-position: -392px 10px;
}

.features-icon-6 {
    background-position: -490px 10px;
}

.features-icon-7 {
    background-position: -3px -75px;
}

.features-icon-8 {
    background-position: -103px -75px;
}
.features-icon-9 {
    background-position: -195px -75px;
}
.features-box.active .features-icon {
    transform: scale(1);
    transition-delay: 0.2s;
}

.faq-section {
    padding: 10px 0 20px;
}

.faq-section ul {
    margin: 40px auto 0;
    max-width: 600px;
}

.faq-section li {
    border-top: 1px solid #ccc;
    padding: 20px 10px;
    cursor: pointer;
}

.faq-section li:last-child {
    border-bottom: 1px solid #ccc;
}

.faq-section h4 {
    position: relative;
    color: #000;
    margin: 0;
    padding-right: 30px;
}

.faq-section h4.active {
    color: #1975d2;
}

.faq-section h4:before {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 19px;
    line-height: 28px;
}

.faq-section h4.active:before {
    content: "-";
}

.faq-section p {
    margin: 0;
    padding: 10px 30px 0 0;
    display: none;
    font-size: 15px;
}

.faq-section p.active {
    display: block;
}

.bottom-section {
    background: #0d1c45;
    text-align: center;
    color: #fff;
    padding: 20px 0;
}

.bottom-section h4 {
    margin: 30px auto;
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
    body {
        -webkit-text-size-adjust: none;
    }
}

@media only screen and (min-width: 481px) {
    .features-box {
        max-width: 400px;
        margin: 0 auto 40px;
    }

    .features-box:last-child {
        margin: 0 auto 20px;
    }
}

@media only screen and (min-width: 601px) {
    .top-section {
        margin: 10px auto 70px;
    }

    .banner-box {
        padding: 20px 0 10px;
    }

    .banner-con h1+p {
        max-width: 460px;
        margin: 0 auto 20px;
    }

    .search-input input {
        min-width: 300px;
    }

    .search-area+p {
        margin: 10px auto 40px;
        max-width: 320px;
    }

    .features-section {
        padding: 20px 0 10px;
    }

    .faq-section {
        padding: 20px 0 30px;
    }

    .bottom-section {
        padding: 30px 0;
    }

    .bottom-section p {
        max-width: 460px;
        margin: 0 auto 20px;
    }
}

@media only screen and (min-width: 768px) {
    .template-inner h1 {
        font-size: 43px;
    }

    .template-inner h2 {
        font-size: 33px;
    }

    .template-inner h3 {
        font-size: 24px;
    }

    .template-inner .content-wrap {
        padding: 0;
    }

    .top-section {
        margin: 30px auto 70px;
        border-radius: 30px;
    }

    .top-section .content-wrap {
        padding: 40px 0;
    }

    .banner-media img {
        max-width: 250px;
    }

    .features-section .content-wrap {
        padding: 40px 0 50px;
    }

    .features-box {
        max-width: 500px;
    }

    .features-box p {
        max-width: 400px;
        margin: 0 auto;
    }

    .faq-section .content-wrap {
        padding: 40px 0 50px;
    }

    .faq-section li {
        padding: 40px 50px;
    }

    .bottom-section .content-wrap {
        padding: 40px 0;
    }
    .search-area {
       /* padding: 0 0 20px; */
    }
.search-input{
    position: relative;
}
.search-submit-btn{
padding: 10px 30px;
}
}

@media only screen and (min-width: 992px) {
    .template-inner h4 {
        font-size: 19px;
    }
    .top-section {
        max-width: 98%;
    }

    .banner-box {
        display: flex;
        align-items: center;
        padding: 30px 0;
    }

    .banner-box>div {
        float: left;
    }

    .banner-con {
        width: 60%;
        padding: 0 50px 0 0;
    }

    .banner-con h4 {
        font-size: 17px;
    }

    .banner-media {
        width: 40%;
    }

    .banner-con {
        text-align: left;
    }

    .banner-con h1+p {
        margin: 0 0 20px;
        max-width: 520px;
    }

    .search-area {
        text-align: left;
        padding: 0 0 20px;
    }

    .search-area+p {
        margin: 10px 0 40px;
        max-width: 360px;
    }

    .banner-media img {
        max-width: 350px;
    }

    .features-section .content-wrap {
        padding: 40px 0 30px;
    }

    .features-details {
        display: flex;
        flex-wrap: wrap;
    }

    .features-box,
    .features-box:last-child {
        margin: 0 auto 40px;
        flex: 0 50%;
        max-width: 46%;
    }

    .faq-section ul {
        max-width: 900px;
    }

    .bottom-section p {
        max-width: 700px;
    }
.search-input input + label{
    text-align: left;
    position: absolute;
    left: 0;
    top: 100%;
}
}

@media only screen and (min-width: 1200px) {
    .template-inner h1 {
        font-size: 50px;
    }

    .template-inner h2 {
        font-size: 40px;
    }

    .template-inner h3 {
        font-size: 24px;
    }

    .template-inner h4 {
        font-size: 19px;
    }

    .top-section {
        margin: 20px auto 100px;
    }

    .top-section .content-wrap {
        padding: 60px 0;
    }

    .banner-con h1 {
        max-width: 500px;
    }

    .banner-con h1+p {
        max-width: 85%;
    }

    .banner-con h4 {
        font-size: 17px;
    }

    .banner-media img {
        max-width: 420px;
    }

    .features-section {
        padding: 50px 0 30px;
    }

    .features-outer {
        display: flex;
        align-items: flex-start;
    }

    .features-outer>div {
        float: left;
        width: 50%;
    }

    .features-outer h2 {
        text-align: left;
        max-width: 400px;
    }

    .features-list ul {
        display: inline-block;
        margin-top: 40px;
    }

    .features-list li {
        margin: 10px 0;
        font-size: 19px;
        font-family: var(--zf-secondary-medium);
        transition: font-family 0 ease-in;
        cursor: pointer;
    }

    .features-list li.active {
        color: #1777d2;
        font-family: var(--zf-secondary-bold);
    }

    .features-list-inner {
        position: relative;
        top: 0;
    }

    .features-list-inner.fixed {
        position: fixed;
        transition: top 0 ease-in;
    }

    .features-list-inner ul {
        display: block;
    }

    .features-details {
        margin: 0;
        padding: 20px 0 0 40px;
    }

    .features-box,
    .features-box:last-child {
        margin: 0 auto 40px;
        flex: 100%;
        max-width: 100%;
        text-align: left;
        padding: 70px;
    }

    .features-box p {
        max-width: 100%;
    }

    .faq-section {
        padding: 40px 0 50px;
    }

    .faq-section ul {
        min-height: 420px;
    }

    .bottom-section {
        padding: 50px 0;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .template-inner h1 {
        font-size: 53px;
    }

    .template-inner h2 {
        font-size: 43px;
    }

    .template-inner h3 {
        font-size: 24px;
    }

    .template-inner h4 {
        font-size: 27px;
    }

    .banner-con h4 {
        font-size: 17px;
    }
}

@media only screen and (min-width: 1500px) {
    .top-section {
        max-width: 1440px;
    }
}

@media only screen and (min-width: 1600px) {
    .template-inner h1 {
        font-size: 58px;
    }

    .template-inner h2 {
        font-size: 48px;
    }

    .template-inner h3 {
        font-size: 27px;
    }

    .template-inner h4 {
        font-size: 24px;
    }

    .banner-con h1 {
        max-width: 600px;
    }

    .banner-con h4 {
        font-size: 17px;
    }

    .banner-media img {
        max-width: 500px;
    }

    .features-outer h2 {
        max-width: 450px;
    }
}


.i18n-ar .bottom-section *{text-align: center;}
.i18n-ar .l-more{padding-left: 20px;padding-right: 0;}
.i18n-ar .l-more:after{right: unset; left: 5px; transform: rotateZ(135deg);}
.i18n-ar .l-more:before{right: unset; left: 0}
.i18n-ar .faq-section h4{padding-left: 30px; padding-right: 0}
.i18n-ar .faq-section p{padding: 10px 0 0 30px}
.i18n-ar .faq-section h4:before{left: 0; right: unset;}
 .i18n-ar .search-input input+label{text-align: right;}
@media only screen and (min-width: 1200px) {
    .i18n-ar .features-box, .i18n-ar .features-box:last-child, .i18n-ar .features-outer h2{text-align: right;}
}
@media only screen and (min-width: 992px) {
  .i18n-ar .search-input input+label{right: 0; left: unset; text-align: right;}
}
@media only screen and (max-width: 992px) {
    .i18n-ar .banner-con h1, .i18n-ar .banner-con, .i18n-ar .banner-con h4, .i18n-ar .banner-con p, .i18n-ar .search-form, .i18n-ar p.domain-text{text-align: center;}
}
@media only screen and (max-width: 1199px) {
   .i18n-ar .features-box, .i18n-ar .features-box *{text-align: center;}
}
