@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700&amp;display=swap");

@font-face {
    font-family: "Futura PT Demi";
    src: url("../fonts/FuturaPT-Demi.woff2") format("woff2"), url("../fonts/FuturaPT-Demi.html") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Futura PT Demi";
    src: url("../fonts/FuturaPT-DemiObl.woff2") format("woff2"), url("../fonts/FuturaPT-DemiObl.html") format("woff");
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Futura PT";
    src: url("../fonts/FuturaPT-HeavyObl.html") format("woff2"), url("../fonts/FuturaPT-HeavyObl-2.html") format("woff");
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Futura PT";
    src: url("../fonts/FuturaPT-Heavy.woff2") format("woff2"), url("../fonts/FuturaPT-Heavy.html") format("woff");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Futura PT";
    src: url("../fonts/FuturaPT-Light.html") format("woff2"), url("../fonts/FuturaPT-Light-2.html") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Futura PT";
    src: url("../fonts/FuturaPT-LightObl.html") format("woff2"), url("../fonts/FuturaPT-LightObl-2.html") format("woff");
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Futura PT";
    src: url("../fonts/FuturaPT-Medium.woff2") format("woff2"), url("../fonts/FuturaPT-Medium.html") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Futura PT";
    src: url("../fonts/FuturaPT-MediumObl.html") format("woff2"), url("../fonts/FuturaPT-MediumObl-2.html") format("woff");
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

/* 1.1	Theme Reset Style */
html {
    font-size: 15px;
}

:root {
    scroll-behavior: unset;
}

body {
    font-family: "Nunito Sans", sans-serif;
    color: #4f555a;
    background-color: #fff;
    font-size: 15px;
    font-size: 1rem;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    body {
        font-size: 14px;
    }
}

p {
    font-size: 16px;
    color: #4f555a;
    line-height: 1.8em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #232f4b;
    font-family: "Futura PT";
}

ul {
    padding-left: 0;
    margin: 0;
}

a {
    text-decoration: none;
    transition: all 0.2s;
}

a:hover {
    text-decoration: none;
}

.sr-only {
    display: none !important;
    opacity: 0;
    visibility: hidden;
}

/* 1.2	Global Elements */
.page-wrapper {
    position: relative;
    overflow: hidden;
}

.wow {
    visibility: hidden;
}

.fi:before {
    margin: 0;
}

/*.section-padding {
  padding: 120px 0;
}*/
@media (max-width: 767px) {
    /*.section-padding {
    padding: 80px 0;
  }*/
}

/*** contact form error handling ***/
.contact-validation-active .error-handling-messages {
    width: 100% !important;
    margin-top: 15px !important;
}

.contact-validation-active label.error {
    color: red;
    font-size: 0.9333333333rem;
    font-weight: normal;
    margin: 5px 0 0 0;
    text-align: left;
    display: block;
}

.contact-validation-active #loader {
    display: none;
    margin-top: 10px;
}

.contact-validation-active #loader i {
    font-size: 30px;
    font-size: 2rem;
    color: #3757f7;
    display: inline-block;
    -webkit-animation: rotating linear 2s infinite;
    animation: rotating linear 2s infinite;
}

.contact-validation-active #success,
.contact-validation-active #error {
    width: 100%;
    color: #fff;
    padding: 5px 10px;
    font-size: 16px;
    text-align: center;
    display: none;
}

@media (max-width: 767px) {
    .contact-validation-active #success,
    .contact-validation-active #error {
        font-size: 15px;
    }
}

.contact-validation-active #success {
    background-color: #009a00;
    border-left: 5px solid green;
    margin-bottom: 5px;
}

.contact-validation-active #error {
    background-color: #ff1a1a;
    border-left: 5px solid red;
}

@-webkit-keyframes rotating {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes rotating {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.rotating {
    -webkit-animation: rotating 5s alternate infinite;
    animation: rotating 5s alternate infinite;
}

/*** back to top **/
/*.back-to-top {
    background-color: rgba(55, 87, 247, 0.7);
    width: 45px;
    height: 45px;
    line-height: 45px;
    border: 2px solid #3757f7;
    border-radius: 45px;
    text-align: center;
    display: none;
    position: fixed;
    z-index: 999;
    right: 15px;
    bottom: 15px;
    transition: all 0.2s;
}

@media (max-width: 991px) {
    .back-to-top {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }
}

.back-to-top:hover {
    background-color: #3757f7;
}

.back-to-top i {
    font-size: 18px;
    font-size: 1.2rem;
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}*/

/** for popup image ***/
.mfp-wrap {
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 99999;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
    opacity: 0;
    -webkit-backface-visibility: hidden;
    transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0;
}

/*** for fancybox video ***/
.fancybox-overlay {
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999 !important;
}

.fancybox-wrap {
    z-index: 99999 !important;
}

.wpo-section-title {
    text-align: center;
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .wpo-section-title {
        margin-bottom: 40px;
    }
}

.wpo-section-title div {
    color: #727375;
    font-size: 30px;
    margin-top: 20px;
}

.wpo-section-title span {
    text-transform: uppercase;
    font-size: 20px;
    color: #3757f7;
    font-family: "Futura PT";
    float: right;
}

.wpo-section-title h2 {
    font-size: 50px;
    line-height: 1em;
    margin: 0;
    margin-top: 15px;
    position: relative;
    text-transform: capitalize;
    font-family: "Futura PT Demi";
}

@media (max-width: 767px) {
    .wpo-section-title h2 {
        font-size: 32px;
    }

    .wpo-service-section.wpo-service-section-s3 .wpo-service-item {
        padding: 18px;
        text-align: center;
        position: relative;
    }

    .wpo-service-section .wpo-service-item {
        background: #fff;
        margin-bottom: 10px;
    }
}


@media (max-width: 330px) {
    .wpo-section-title h2 {
        font-size: 25px;
    }
}

.theme-btn, .view-cart-btn, .theme-btn-s3, .theme-btn-s4 {
    background: #3757f7;
    background: linear-gradient(to left, #3757f7, #071e93);
    color: #fff;
    display: inline-block;
    font-weight: 500;
    padding: 15px 45px;
    border: 0;
    border-radius: 6px;
    text-transform: capitalize;
    -webkit-backface-visibility: hidden;
    z-index: 1;
    position: relative;
    font-family: "Futura PT";
    font-size: 20px;
    font-size: 1.3333333333rem;
}

.theme-btn:after, .view-cart-btn:after, .theme-btn-s3:after, .theme-btn-s4:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    background: linear-gradient(to left, #071e93, #3757f7);
    transition: opacity 0.5s ease-out;
    opacity: 0;
    z-index: -1;
}

.theme-btn:hover, .view-cart-btn:hover, .theme-btn-s3:hover, .theme-btn-s4:hover, .theme-btn:focus, .view-cart-btn:focus, .theme-btn-s3:focus, .theme-btn-s4:focus, .theme-btn:active, .view-cart-btn:active, .theme-btn-s3:active, .theme-btn-s4:active {
    color: #fff;
}

.theme-btn:hover:after, .view-cart-btn:hover:after, .theme-btn-s3:hover:after, .theme-btn-s4:hover:after {
    opacity: 1;
}

@media (max-width: 991px) {
    .theme-btn, .view-cart-btn, .theme-btn-s3, .theme-btn-s4 {
        font-size: 18px;
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    .theme-btn, .view-cart-btn, .theme-btn-s3, .theme-btn-s4 {
        padding: 12px 18px;
        font-size: 14px;
    }
}

.theme-btn-s2 {
    background: #fff;
    color: #6e6e6e;
    display: inline-block;
    padding: 12px 22px;
    border: 1px solid #3757f7;
    border-radius: 55px;
    text-transform: capitalize;
    box-shadow: 0 0 0 5px #c8eaf5;
    z-index: 1;
    position: relative;
}

.theme-btn-s2:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 55px;
    background: linear-gradient(left, #00ded8, #00a7d5);
    transition: opacity 0.5s ease-out;
    opacity: 0;
    z-index: -1;
}

@media (max-width: 991px) {
    .theme-btn-s2 {
        font-size: 14px;
        font-size: 0.9333333333rem;
    }
}

.theme-btn-s2:hover, .theme-btn-s2:focus, .theme-btn-s2:active {
    color: #fff;
}

.theme-btn-s2:hover:after {
    opacity: 1;
}

@media (max-width: 767px) {
    .theme-btn-s2 {
        padding: 12px 18px;
        font-size: 13px;
    }
}

.theme-btn-s3, .theme-btn-s4 {
    background: #c968ff;
    box-shadow: 0 0 0 5px #f3e0fe;
    background: linear-gradient(left, #6168f3, #c968ff);
    z-index: 1;
    position: relative;
}

.theme-btn-s3:after, .theme-btn-s4:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 55px;
    background: linear-gradient(left, #c968ff, #6168f3);
    transition: opacity 0.5s ease-out;
    opacity: 0;
    z-index: -1;
}

.theme-btn-s3:hover:after, .theme-btn-s4:hover:after {
    opacity: 1;
}

.theme-btn-s3:hover, .theme-btn-s4:hover, .theme-btn-s3:focus, .theme-btn-s4:focus, .theme-btn-s3:active, .theme-btn-s4:active {
    color: #fff;
}

.theme-btn-s4 {
    background: #f6d365;
    background: linear-gradient(left, #f6d365, #fda085);
    box-shadow: 0 0 0 5px #fcf5df;
    z-index: 1;
    position: relative;
}

.theme-btn-s4:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 55px;
    background: linear-gradient(left, #fda085, #f6d365);
    transition: opacity 0.5s ease-out;
    opacity: 0;
    z-index: -1;
}

.theme-btn-s4:hover:after {
    opacity: 1;
}

.theme-btn-s4:hover, .theme-btn-s4:focus, .theme-btn-s4:active {
    color: #fff;
}

.view-cart-btn {
    display: block;
    margin-top: 20px;
}

.form input,
.form textarea,
.form select {
    border-color: #bfbfbf;
    border-radius: 0;
    outline: 0;
    box-shadow: none;
    color: #595959;
    font-style: normal;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
    border-color: #3757f7;
    -o-box-shadow: 0 0 5px 0 #6880f9;
    -ms-box-shadow: 0 0 5px 0 #6880f9;
    box-shadow: 0 0 5px 0 #6880f9;
}

.form ::-webkit-input-placeholder {
    font-size: 14px;
    font-style: italic;
    color: #595959;
}

.form :-moz-placeholder {
    font-size: 14px;
    font-style: italic;
    color: #595959;
}

.form ::-moz-placeholder {
    font-size: 14px;
    font-style: italic;
    color: #595959;
}

.form :-ms-input-placeholder {
    font-size: 14px;
    font-style: italic;
    color: #595959;
}

.form select {
    font-style: normal;
    background: no-repeat right center;
    display: inline-block;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

.form select::-ms-expand {
    /* for IE 11 */
    display: none;
}

.form :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    font-style: normal;
}

.form ::-moz-placeholder {
    font-style: normal;
}

.form ::placeholder {
    font-style: normal;
}

.social-links {
    overflow: hidden;
}

.social-links li {
    float: left;
    width: 35px;
    height: 35px;
    margin-right: 1px;
}

.social-links li a {
    background-color: #6880f9;
    width: 35px;
    height: 35px;
    line-height: 35px;
    display: block;
    color: #fff;
    text-align: center;
}

.social-links li a:hover {
    background-color: #3757f7;
}

.wpo-breadcumb-area {
    background: url(http://www.qingzhifeng.com/App/Home/View/Default/Public/images/wjz_banner1.jpg) no-repeat center top/cover;
    min-height: 400px;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    z-index: 1;
}

@media (max-width: 767px) {
    .wpo-breadcumb-area {
        min-height: 250px;
    }
}

.wpo-breadcumb-area:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #232f4b;
    content: "";
    z-index: -1;
    opacity: 0.3;
}

.wpo-breadcumb-area .wpo-breadcumb-wrap {
    text-align: center;
}

.wpo-breadcumb-area .wpo-breadcumb-wrap h2 {
    font-size: 60px;
    color: #fff;
    line-height: 60px;
    margin-top: -10px;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .wpo-breadcumb-area .wpo-breadcumb-wrap h2 {
        font-size: 30px;
        line-height: 35px;
        margin-bottom: 10px;
    }
}

.wpo-breadcumb-area .wpo-breadcumb-wrap ul li {
    display: inline-block;
    padding: 0px 5px;
    color: #fff;
    position: relative;
    font-size: 20px;
    font-family: "Futura PT";
}

@media (max-width: 767px) {
    .wpo-breadcumb-area .wpo-breadcumb-wrap ul li {
        font-size: 18px;
    }
}

.wpo-breadcumb-area .wpo-breadcumb-wrap ul li:after {
    content: "/";
    position: relative;
    left: 7px;
}

.wpo-breadcumb-area .wpo-breadcumb-wrap ul li:last-child span {
    color: #cbd4fd;
}

.wpo-breadcumb-area .wpo-breadcumb-wrap ul li:last-child:after {
    display: none;
}

.wpo-breadcumb-area .wpo-breadcumb-wrap ul li a {
    color: #fff;
    font-size: 20px;
    transition: all 0.3s;
}

.wpo-breadcumb-area .wpo-breadcumb-wrap ul li a:hover {
    color: #3757f7;
}

.wpo-about-section.wpo-about-section-s2 {
    padding-top: 170px;
}

/*
.preloader {
    background-color: #3757f7;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 1000;
    overflow: hidden;
}

.preloader .angular-shape {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transform: rotate(50deg) scale(1, 3.5);
}

.preloader .angular-shape > div:first-child {
    background: #3253f7;
    width: 20%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.preloader .angular-shape > div:nth-child(2) {
    background: #3253f7;
    width: 30%;
    height: 100%;
    position: absolute;
    left: 35%;
    top: 0;
}

.preloader .angular-shape > div:nth-child(3) {
    background: #3253f7;
    width: 20%;
    height: 100%;
    position: absolute;
    left: 80%;
    top: 0;
}

.preloader .spinner {
    width: 80px;
    height: 80px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.preloader .double-bounce1, .preloader .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 1s infinite ease-in-out;
    animation: sk-bounce 1s infinite ease-in-out;
}

.preloader .double-bounce2 {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}
*/

@-webkit-keyframes sk-bounce {
    0%, 100% {
        -webkit-transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
    }
}

@keyframes sk-bounce {
    0%, 100% {
        transform: scale(0);
        -webkit-transform: scale(0);
    }
    50% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}

/*------------------------------------
	blog sidebar
------------------------------------*/
.blog-sidebar {
    /*** search-widget ***/
    /*** about-widget ***/
    /*** category-widget ***/
    /*** recent-post-widget ***/
    /*** instagram-widget ***/
    /*** tag-widget ***/
    /*** wpo-contact-widget ***/
}

@media screen and (min-width: 992px) {
    .blog-sidebar {
        padding-left: 45px;
    }
}

@media (max-width: 991px) {
    .blog-sidebar {
        margin-top: 80px;
        max-width: 400px;
    }
}

@media (max-width: 767px) {
    .blog-sidebar {
        margin-top: 60px;
        max-width: 400px;
    }
}

.blog-sidebar .widget h3 {
    font-size: 23px;
    font-size: 1.5333333333rem;
    color: #232f4b;
    margin: 0 0 1.3em;
    position: relative;
    text-transform: capitalize;
    font-family: "Futura PT Demi";
    padding-bottom: 20px;
}

.blog-sidebar .widget h3:before {
    content: "";
    background-color: #3757f7;
    width: 55px;
    height: 4px;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 10px;
}

.blog-sidebar .widget h3:after {
    content: "";
    background-color: #f2f2f2;
    width: 80%;
    height: 4px;
    position: absolute;
    left: 65px;
    bottom: 0;
    border-radius: 10px;
}

.blog-sidebar > .widget + .widget {
    margin-top: 65px;
}

.blog-sidebar .search-widget form div {
    position: relative;
}

.blog-sidebar .search-widget input {
    background-color: rgba(55, 87, 247, 0.05);
    height: 70px;
    font-size: 16px;
    font-size: 1.0666666667rem;
    padding: 6px 50px 6px 20px;
    border: 0;
    border-radius: 5px;
    box-shadow: none;
    transition: all 0.3s;
}

.blog-sidebar .search-widget input:focus {
    background-color: rgba(55, 87, 247, 0.1);
}

.blog-sidebar .search-widget form button {
    background: transparent;
    font-size: 20px;
    font-size: 1.3333333333rem;
    color: #fff;
    background-color: #3757f7;
    border: 0;
    outline: 0;
    position: absolute;
    right: 10px;
    top: 52%;
    height: 50px;
    line-height: 50px;
    width: 50px;
    border-radius: 6px;
    transform: translateY(-50%);
}

.blog-sidebar .about-widget {
    text-align: center;
    background-color: #f4f8fc;
    padding: 45px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1200px) {
    .blog-sidebar .about-widget {
        padding: 35px;
    }
}

.blog-sidebar .about-widget .aw-shape {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.blog-sidebar .about-widget .img-holder {
    margin-bottom: 25px;
}

.blog-sidebar .about-widget .img-holder img {
    border-radius: 50%;
    width: 100%;
    max-width: 200px;
}

.blog-sidebar .about-widget ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

.blog-sidebar .about-widget ul li {
    margin-right: 10px;
}

.blog-sidebar .about-widget ul li:last-child {
    margin-right: 0;
}

.blog-sidebar .about-widget ul li a {
    text-decoration: none;
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #fff;
    border-radius: 50%;
}

.blog-sidebar .about-widget h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.blog-sidebar .about-widget p {
    font-size: 15px;
    font-size: 1rem;
    margin-bottom: 1.2em;
}

.blog-sidebar .about-widget a {
    font-family: "Futura PT";
    font-size: 14px;
    font-size: 0.9333333333rem;
    color: #232f4b;
    text-decoration: underline;
}

.blog-sidebar .about-widget a:hover {
    color: #3757f7;
}

.blog-sidebar .category-widget ul {
    list-style: none;
}

.blog-sidebar .category-widget ul li {
    font-size: 19px;
    font-size: 1.2666666667rem;
    position: relative;
}

@media (max-width: 767px) {
    .blog-sidebar .category-widget ul li {
        font-size: 16px;
        font-size: 1.0666666667rem;
    }
}

.blog-sidebar .category-widget ul li span {
    position: absolute;
    right: 0;
}

.blog-sidebar .category-widget ul > li + li {
    margin-top: 12px;
    padding-top: 12px;
}

.blog-sidebar .category-widget ul a {
    display: block;
    color: #474f62;
    font-family: "Futura PT Demi";
}

.blog-sidebar .category-widget ul a span {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background-color: #f4f8fc;
    text-align: center;
    border-radius: 50%;
    font-size: 18px;
}

@media (max-width: 767px) {
    .blog-sidebar .category-widget ul a span {
        font-size: 14px;
        font-size: 0.9333333333rem;
    }
}

.blog-sidebar .category-widget ul a:hover,
.blog-sidebar .category-widget ul li:hover:before {
    color: #3757f7;
}

.blog-sidebar .recent-post-widget .post {
    overflow: hidden;
}

.blog-sidebar .recent-post-widget .posts > .post + .post {
    margin-top: 15px;
    padding-top: 15px;
}

.blog-sidebar .recent-post-widget .post .img-holder {
    width: 90px;
    float: left;
}

.blog-sidebar .recent-post-widget .post .img-holder img {
    border-radius: 6px;
}

.blog-sidebar .recent-post-widget .post .details {
    width: calc(100% - 90px);
    float: left;
    padding-left: 20px;
}

.blog-sidebar .recent-post-widget .post h4 {
    font-size: 19px;
    font-size: 1.2666666667rem;
    font-weight: 500;
    line-height: 1.3em;
    margin: 0 0 0.3em;
    font-family: "Futura PT Demi";
}

@media (max-width: 1199px) {
    .blog-sidebar .recent-post-widget .post h4 {
        margin: 0;
    }
}

@media (max-width: 767px) {
    .blog-sidebar .recent-post-widget .post h4 {
        font-size: 16px;
        font-size: 1.0666666667rem;
    }
}

.blog-sidebar .recent-post-widget .post h4 a {
    display: inline-block;
    color: #232f4b;
}

.blog-sidebar .recent-post-widget .post h4 a:hover {
    color: #3757f7;
}

.blog-sidebar .recent-post-widget .post .details .date {
    font-size: 13px;
    font-size: 0.8666666667rem;
    color: #6e6e6e;
}

.blog-sidebar .recent-post-widget .post .details .date i {
    display: inline-block;
    padding-right: 7px;
}

.blog-sidebar .wpo-instagram-widget ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

.blog-sidebar .wpo-instagram-widget ul li {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    margin-bottom: 5px;
    padding: 0px 3px;
}

.blog-sidebar .wpo-instagram-widget ul li img {
    width: 100%;
    border-radius: 6px;
}

.blog-sidebar .tag-widget ul {
    overflow: hidden;
    list-style: none;
}

.blog-sidebar .tag-widget ul li {
    float: left;
    margin: 0 8px 8px 0;
}

.blog-sidebar .tag-widget ul li a {
    font-size: 15px;
    font-size: 1rem;
    display: inline-block;
    padding: 5px 18px;
    color: #232f4b;
    background: #ecf4fb;
    border-radius: 5px;
}

.blog-sidebar .tag-widget ul li a:hover {
    background: #3757f7;
    color: #fff;
}

.blog-sidebar .wpo-contact-widget {
    border: 0;
    background: #3757f7;
    padding: 30px 40px;
}

@media (max-width: 1200px) {
    .blog-sidebar .wpo-contact-widget {
        padding: 20px;
    }
}

.blog-sidebar .wpo-contact-widget h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: left;
    color: #fff;
    margin-bottom: 20px;
}

.blog-sidebar .wpo-contact-widget h2::before {
    left: 28px;
    background: url(../images/Single-title-shape2.png) no-repeat right center;
}

.blog-sidebar .wpo-contact-widget p {
    color: #fff;
    font-size: 18px;
}

.blog-sidebar .wpo-contact-widget a {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #fff;
    font-size: 18px;
    color: #fff;
    padding-right: 90px;
    position: relative;
    margin-top: 10px;
}

.blog-sidebar .wpo-contact-widget a::before {
    font-family: "themify";
    content: "";
    font-size: 18px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

/**** pagination ****/
.pagination-wrapper {
    text-align: center;
    margin-top: 60px;
}

@media (max-width: 991px) {
    .pagination-wrapper {
        text-align: left;
        margin-top: 40px;
    }
}

.pagination-wrapper .pg-pagination {
    display: inline-block;
    overflow: hidden;
    list-style-type: none;
    text-align: center;
}

.pagination-wrapper .pg-pagination li {
    font-family: "Futura PT";
    float: left;
    margin-right: 10px;
}

@media (max-width: 767px) {
    .pagination-wrapper .pg-pagination li {
        margin-right: 5px;
    }
}

.pagination-wrapper .pg-pagination li:last-child {
    margin-right: 0;
}

.pagination-wrapper .pg-pagination li a {
    background-color: transparent;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    font-size: 1.0666666667rem;
    font-weight: 600;
    color: #232f4b;
    background: #ebf4fc;
    display: block;
}

@media (max-width: 991px) {
    .pagination-wrapper .pg-pagination li a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 15px;
        font-size: 1rem;
    }
}

.pagination-wrapper .pg-pagination .active a,
.pagination-wrapper .pg-pagination li a:hover {
    background: #3757f7;
    border-color: #3757f7;
    color: #fff;
}

.pagination-wrapper .pg-pagination .fi:before {
    font-size: 15px;
    font-size: 1rem;
}

.pagination-wrapper-left {
    text-align: left;
}

.pagination-wrapper-right {
    text-align: right;
}

@media screen and (min-width: 1200px) {
    .pagination-wrapper-right {
        padding-right: 50px;
    }
}

@media (max-width: 991px) {
    .pagination-wrapper-right {
        margin-top: 45px;
        text-align: left;
    }
}

/*--------------------------------------------------------------
2. header
--------------------------------------------------------------*/
/*-- 2.1 topbar --*/
.topbar {
    background: #283a5e;
    padding: 0 130px;
}

@media (max-width: 991px) {
    .topbar {
        text-align: center;
        padding: 0;
    }
}

@media (max-width: 767px) {
    .header-style-1 {
        text-align: center;
        padding: 20px 0;
    }
}

.topbar {
    font-size: 16px;
    color: #e5e3e3;
    margin: 0;
}

.topbar ul {
    overflow: hidden;
    list-style: none;
    float: right;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .topbar ul {
        float: none;
        display: inline-block;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.topbar ul li {
    font-size: 16px;
    float: left;
    padding: 15px 10px;
    color: #e5e3e3;
    line-height: 1em;
}

@media (max-width: 991px) {
    .topbar ul li {
        padding: 15px 10px;
    }
}

.topbar .contact-info ul li a {
    color: #fff;
}

.topbar .contact-info ul li a:hover {
    color: #7db1f0;
}

.topbar ul li:first-child {
    padding-left: 0;
}

.topbar .contact-intro ul {
    float: none;
    margin-bottom: 0;
}

@media (max-width: 1200px) {
    .topbar ul li {
        font-size: 12px;
        padding: 15px 10px;
    }
}

@media (max-width: 991px) {
    .topbar ul li {
        font-size: 13px;
    }

    .topbar {
        padding: 10px 0;
    }
}

@media (max-width: 767px) {
    .topbar ul li {
        float: left;
        border: none;
        padding: 8px 6px;
        font-size: 13px;
    }
}

@media (max-width: 590px) {
    .topbar ul li {
        float: none;
    }

    .topbar .contact-info ul li {
        float: left;
    }

    .topbar ul {
        flex-wrap: wrap;
    }
}

.topbar .theme-btn-s2 {
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: -3px;
    color: #fff !important;
}

.topbar ul .fi {
    position: relative;
    top: 1px;
    display: inline-block;
    padding-right: 3px;
}

.topbar ul .fi:before {
    font-size: 15px;
    font-size: 1rem;
    color: #fff;
}

/* 2.2 navigation */
.wpo-site-header {
    /* navigation open and close btn hide for width screen */
    /* style for navigation less than 992px */
    /*navbar collaps less then 992px*/
    /*** cart-search-contact ***/
    background-color: #fff;
}

.wpo-features-text .price {
    background: #0e90d2;
    color: white;
    padding: 5px;
}

.wpo-site-header .navigation {
    background-color: #fff;
    margin-bottom: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
}

.sticky-header {
    width: 100%;
    position: fixed;
    left: 0;
    top: -400px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 1s;
    box-shadow: 0 -5px 15px #086ad84a;
}

.sticky-on {
    opacity: 1;
    top: 0;
    visibility: visible;
}

.wpo-site-header .navigation > .container {
    position: relative;
}

@media (min-width: 991px) {
    .wpo-site-header {
        padding: 0 130px;
    }
}

.wpo-site-header .row {
    width: 100%;
}

@media (max-width: 991px) {
    .wpo-site-header .navigation {
        padding: 20px 0;
    }
}

.wpo-site-header #navbar {
    transition: all 0.5s;
}

.wpo-site-header #navbar > ul li a:hover,
.wpo-site-header #navbar > ul li a:focus {
    text-decoration: none;
    color: #3757f7;
}

@media screen and (min-width: 992px) {
    .wpo-site-header #navbar {
        /*** hover effect ***/
        justify-content: center;
    }

    .wpo-site-header #navbar li {
        position: relative;
    }

    .wpo-site-header #navbar > ul > li > a {
        font-size: 20px;
        padding: 35px 18px;
        display: block;
        color: #232f4b;
        font-family: "Futura PT";
        font-weight: 500;
        position: relative;
    }

    .wpo-site-header #navbar > ul > li > a:before {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 4px;
        background: #3757f7;
        content: "";
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        border-radius: 3px;
    }

    .wpo-site-header #navbar > ul > li > a:hover:before,
    .wpo-site-header #navbar > ul > li > a.active:before {
        opacity: 1;
        visibility: visible;
    }

    .wpo-site-header #navbar > ul .sub-menu {
        background-color: #fff;
        box-shadow: 0px 2px 20px 0px rgba(62, 65, 159, 0.09);
        width: 180px;
        position: absolute;
        left: 0;
        top: 110%;
        z-index: 10;
        visibility: hidden;
        opacity: 0;
        transition: all 0.3s;
    }

    .wpo-site-header #navbar > ul > li .sub-menu a {
        font-size: 18px;
        font-size: 1.2rem;
        display: block;
        padding: 10px 20px;
        color: #232f4b;
        position: relative;
        overflow: hidden;
        font-weight: 500;
        font-family: "Futura PT";
    }

    .wpo-site-header #navbar > ul > li .sub-menu a:after {
        position: absolute;
        left: 20px;
        bottom: 4px;
        width: 0px;
        height: 2px;
        content: "";
        background: #3757f7;
        transition: all 0.3s;
        opacity: 0;
        visibility: hidden;
    }

    .wpo-site-header #navbar > ul > li .sub-menu a:hover:after, .wpo-site-header #navbar > ul > li .sub-menu a.active:after {
        width: 40px;
        opacity: 1;
        visibility: visible;
    }

    .wpo-site-header #navbar > ul > li > .sub-menu .sub-menu {
        left: 110%;
        top: 0;
    }

    .wpo-site-header #navbar > ul > li > .sub-menu > .menu-item-has-children > a {
        position: relative;
    }

    .wpo-site-header #navbar > ul > li > .sub-menu > .menu-item-has-children > a:before {
        font-family: "themify";
        content: "";
        font-size: 11px;
        font-size: 0.73333rem;
        position: absolute;
        right: 15px;
        top: 58%;
        transform: translateY(-50%);
    }

    .wpo-site-header #navbar > ul > li:hover > .sub-menu {
        top: 100%;
        visibility: visible;
        opacity: 1;
    }

    .wpo-site-header #navbar .sub-menu > li:hover > .sub-menu {
        left: 100%;
        visibility: visible;
        opacity: 1;
    }
}

@media (max-width: 991px) {
    .wpo-site-header #navbar > ul > li a {
        display: block;
        font-size: 14px;
        font-size: 0.93333rem;
    }

    .wpo-site-header #navbar > ul > li .sub-menu li {
        border-bottom: 1px solid #e6e6e6;
    }

    .wpo-site-header #navbar > ul .sub-menu > li:last-child {
        border-bottom: 0;
    }

    .wpo-site-header #navbar > ul > li > .sub-menu a {
        padding: 8px 15px 8px 45px;
    }

    .wpo-site-header #navbar > ul > li > .sub-menu .sub-menu a {
        padding: 8px 15px 8px 65px;
    }

    .wpo-site-header #navbar > ul .menu-item-has-children > a {
        position: relative;
    }

    .wpo-site-header #navbar > ul .menu-item-has-children > a:before {
        font-family: "themify";
        content: "";
        font-size: 11px;
        font-size: 0.73333rem;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media screen and (min-width: 992px) {
    .wpo-site-header .navbar-header .open-btn {
        display: none;
    }

    .wpo-site-header #navbar .close-navbar {
        display: none;
    }
}

@media (max-width: 991px) {
    .wpo-site-header {
        /* class for show hide navigation */
    }

    .wpo-site-header .container {
        width: 100%;
        max-width: 100%;
    }

    .wpo-site-header .navbar-header button {
        background-color: #3757f7;
        width: 40px;
        height: 35px;
        border: 0;
        padding: 5px 10px;
        outline: 0;
        position: absolute;
        right: 15px;
        top: -3px;
        z-index: 20;
    }

    .wpo-site-header .navbar-header button span {
        background-color: #fff;
        width: 20px;
        display: block;
        height: 2px;
        margin-bottom: 5px;
    }

    .wpo-site-header .navbar-header button span:last-child {
        margin: 0;
    }

    .wpo-site-header .navbar-toggler {
        display: none;
    }

    .wpo-site-header #navbar {
        background: #fff;
        display: block !important;
        width: 100%;
        margin: 0;
        padding: 0;
        border-left: 1px solid #cccccc;
        border-right: 1px solid #cccccc;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 100;
        opacity: 0;
        visibility: hidden;
    }
}

.wpo-site-header #navbar ul {
    list-style: none;
}

@media (max-width: 991px) and (max-width: 991px) {
    .wpo-site-header #navbar {
        top: 0;
        visibility: visible;
        opacity: 1;
    }

    .wpo-site-header #navbar > ul {
        display: none;
    }
}

@media (max-width: 991px) {
    .wpo-site-header #navbar > ul {
        background-color: #fff;
        position: relative;
        z-index: 101;
    }

    .wpo-site-header #navbar ul a {
        color: #000;
    }

    .wpo-site-header #navbar ul a:hover,
    .wpo-site-header #navbar ul li.current a {
        color: #3757f7;
    }

    .wpo-site-header #navbar .navbar-nav {
        height: 100%;
        overflow: auto;
    }

    .wpo-site-header #navbar .close-navbar {
        background-color: #fff;
        width: 40px;
        height: 40px;
        color: #000;
        border: 0;
        outline: none;
        position: absolute;
        left: -41px;
        top: 90px;
        z-index: 20;
        display: none;
    }

    .wpo-site-header #navbar .close-navbar .ti-close {
        position: relative;
        top: 1px;
    }

    .wpo-site-header #navbar > ul > li {
        border-bottom: 1px solid #f2f2f2;
    }

    .wpo-site-header #navbar > ul > li > a {
        padding: 10px 15px 10px 35px;
    }

    .wpo-site-header .slideInn {
        top: 76px !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .wpo-site-header .navbar-toggler .first-angle,
    .wpo-site-header .navbar-toggler .last-angle {
        transition: all 0.3s;
    }

    .wpo-site-header .x-close .middle-angle {
        opacity: 0;
    }

    .wpo-site-header .x-close .first-angle {
        position: absolute;
        -webkit-transform: rotate(-44deg);
        top: 16px;
        left: 10px;
    }

    .wpo-site-header .x-close .last-angle {
        -webkit-transform: rotate(44deg);
        position: absolute;
        top: 16px;
        right: 10px;
    }
}

@media (max-width: 767px) {
    .wpo-site-header .navbar-header .navbar-brand {
        font-size: 24px;
    }

    .wpo-site-header #navbar .navbar-nav {
        margin: 0;
    }
}

@media (max-width: 991px) {
    .wpo-site-header .navbar-collapse.collapse {
        display: none;
    }

    .wpo-site-header .navbar-collapse.collapse.in {
        display: block;
    }

    .wpo-site-header .navbar-header .collapse,
    .wpo-site-header .navbar-toggle {
        display: block;
    }

    .wpo-site-header .navbar-header {
        float: none;
        position: relative;
        z-index: 999;
    }

    .wpo-site-header .navbar-right {
        float: none;
    }

    .wpo-site-header .navbar-nav {
        float: none;
    }

    .wpo-site-header .navbar-nav > li {
        float: none;
    }
}

.wpo-site-header .header-right {
    display: flex;
    justify-content: flex-end;
    z-index: 991;
    position: relative;
    align-items: center;
}

.wpo-site-header .header-right button {
    background: transparent;
    padding: 0;
    border: 0;
    outline: 0;
}

.wpo-site-header .header-right > div {
    float: left;
    position: relative;
    margin-right: 8px;
}

.wpo-site-header .header-right .close-form .theme-btn, .wpo-site-header .header-right .close-form .theme-btn-s3, .wpo-site-header .header-right .close-form .theme-btn-s4, .wpo-site-header .header-right .close-form .view-cart-btn {
    padding: 10px 25px;
}

@media (max-width: 767px) {
    .wpo-site-header .header-right > div {
        margin-right: 10px;
    }
}

.wpo-site-header .header-right > div:last-child {
    margin: 0 0 0 10px;
    position: relative;
}

@media (max-width: 767px) {
    .wpo-site-header .header-right > div:last-child {
        margin: 3px 0 0 10px;
    }
}

.wpo-site-header .header-right .header-search-form-wrapper {
    position: relative;
}

.wpo-site-header .header-right .header-search-form-wrapper .fi:before {
    font-size: 22px;
    font-size: 1.46667rem;
}

.wpo-site-header .header-right .search-toggle-btn {
    background-color: #dadffb;
    line-height: 0.66em;
    color: #232f4b;
    width: 55px;
    height: 50px;
    border: 0;
    border-radius: 5px;
}

@media (max-width: 1200px) {
    .wpo-site-header .header-right .search-toggle-btn {
        width: 50px;
        height: 45px;
    }
}

@media (max-width: 375px) {
    .wpo-site-header .header-right .search-toggle-btn {
        display: none;
    }
}

.wpo-site-header .header-right .search-toggle-btn .ti-close {
    display: block;
    line-height: 20px;
    position: relative;
    top: -2px;
}

/*** cart-search-contact ***/
.cart-search-contact button {
    background: transparent;
    padding: 0;
    border: 0;
    outline: 0;
}

.cart-search-contact .fi {
    font-size: 30px;
    font-size: 2rem;
    color: #232f4b;
}

.cart-search-contact > div {
    float: left;
    position: relative;
}

.cart-search-contact > div + div {
    margin-left: 12px;
}

.cart-search-contact .header-search-form {
    position: absolute;
    width: 350px;
    right: 0;
    top: 75px;
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
    background: #fff;
    padding: 30px;
    border-radius: 6px;
    transition: all 0.5s;
    box-shadow: -2px 18px 40px -9px #999999;
}

@media (max-width: 991px) {
    .cart-search-contact .header-search-form {
        top: 65px;
    }
}

@media (max-width: 767px) {
    .cart-search-contact .header-search-form {
        right: 15px;
    }
        .wpo-gallery-section {
            padding: 30px 0;
        }
}

@media (max-width: 575px) {
    .cart-search-contact .header-search-form {
        width: 260px;
        padding: 15px;
    }

}

.cart-search-contact .header-search-form-wrapper .fi:before {
    font-size: 22px;
    font-size: 1.4666666667rem;
}

.cart-search-contact form div {
    position: relative;
}

.cart-search-contact form div button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.cart-search-contact form div button .fi:before {
    font-size: 18px !important;
}

.cart-search-contact input {
    width: 100%;
    height: 50px;
    padding: 6px 20px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid #e1e1e1;
}

.cart-search-contact input:focus {
    box-shadow: none;
    border-color: #3757f7;
}

.wpo-site-header .header-right .header-search-content-toggle {
    opacity: 1;
    visibility: visible;
    right: 0;
    transform: scale(1);
}

@media (max-width: 991px) {
    .page-wrapper {
        transition: all 0.3s;
    }

    .body-overlay:before {
        content: "";
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        position: absolute;
        left: 0;
        top: 0;
        z-index: 10;
        transition: all 0.3s;
    }
}

.header-search-area {
    background: #fff;
    width: 100%;
    padding: 100px 0;
    text-align: center;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
}

.header-search-area h3 {
    font-size: 45px;
    margin: 0 0 1em;
}

.header-search-area form {
    position: relative;
}

.header-search-area input {
    height: 50px;
    font-size: 18px;
    font-size: 1.2rem;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #d0d0d0;
    box-shadow: none;
}

.header-search-area input:focus {
    box-shadow: none;
    border-color: #3757f7;
}

.header-search-area form button {
    background: transparent;
    border: 0;
    font-size: 20px;
    font-size: 1.33333rem;
    position: absolute;
    right: 0;
    bottom: 10px;
}

.header-search-area form button:focus {
    border: none;
    outline: none;
}

.header-search-area .close-form {
    position: absolute;
    right: 35px;
    top: 35px;
    bottom: auto;
    padding-bottom: 5px;
    border-bottom: 1px solid;
}

.header-search-area .close-form button {
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 13px;
    font-size: 0.86667rem;
    text-transform: uppercase;
    color: #000;
    letter-spacing: 2px;
    z-index: 99;
}

.header-search-area .close-form button:focus {
    border: 0;
    outline: 0;
}

#dl-menu {
    min-height: 45px;
    position: absolute;
    right: 0px;
    top: -2px;
    z-index: 11;
}

#dl-menu li a {
    color: #fff !important;
}

#dl-menu li a::after {
    color: #fff !important;
}

#dl-menu li a:hover {
    background-color: rgba(0, 0, 0, 0.2);
}
.dl-menuwrapper  i{
    position: absolute;
    right: 52px;
    top: 3px;
    color: #999999;
    font-size: 41px;
}
.dl-menuwrapper i:hover {
    position: absolute;
    right: 52px;
    top: 3px;
    color: #3757f7;
    font-size: 41px;
}
.dl-menuwrapper li > a:not(:only-child):after {
    font-family: "themify";
    content: "";
    font-size: 10px;
}

.dl-menuwrapper li.dl-back:after {
    font-family: "themify";
    content: "";
    font-size: 10px;
}

.dl-menuwrapper button {
    background-color: #3757f7;
}

.dl-back::after {
    color: #fff !important;
}

#dl-menu ul {
    top: 65px;
    margin: 0;
    left: 0;
}

@media (max-width: 767px) {
    #dl-menu ul {
        top: 64px;
    }
}

@media (max-width: 375px) {
    #dl-menu ul {
        top: 60px;
    }
}

@media screen and (min-width: 992px) {
    #dl-menu {
        display: none;
    }
}

#dl-menu .dl-trigger {
    position: absolute;
    right: 0px;
    border-radius: 5px;
}

.dl-menuwrapper button:hover,
.dl-menuwrapper button.dl-active,
.dl-menuwrapper ul {
    background: #1e2845;
}

/*--------------------------------------------------------------
3. content
--------------------------------------------------------------*/
/*3.1 wpo-hero-slider*/
.wpo-hero-section-1 {
    position: relative;
    height: 900px;
    background: #edf2f8;
    display: flex;
    justify-content: center;
    flex-direction: column;
    z-index: 1;
}

.wpo-hero-section-1:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    height: 100%;
    width: 67%;
    background: #edf2f8;
    -webkit-clip-path: polygon(0 0, 75% 0, 90% 100%, 0 100%);
    clip-path: polygon(0 0, 75% 0, 90% 100%, 0 100%);
}

.wpo-hero-section-1 .right-img {
    position: absolute;
    right: 0;
    top: 0;
    height: 900px;
    width: 50%;
    z-index: -11;
    background: url(../images/slider/slide-1.jpg) no-repeat right center;
}

@media (max-width: 1440px) {
    .wpo-hero-section-1 .right-img {
        top: -30px;
    }
}

@media (max-width: 1200px) {
    .wpo-hero-section-1 .right-img {
        top: 0px;
    }
}

.wpo-hero-section-1 .right-img2 {
    position: absolute;
    left: 60px;
    bottom: -1px;
    z-index: 1;
}

.wpo-hero-section-1 .right-img img {
    height: 100%;
    width: 100%;
}

.wpo-hero-section-1 .wpo-hero-title h2 {
    font-size: 70px;
    font-weight: 900;
    line-height: 90px;
    margin: 10px 0 25px;
}

.wpo-hero-section-1 .wpo-hero-title h2 span {
    color: #3757f7;
}

.wpo-hero-section-1 .wpo-hero-title-top span {
    font-size: 22px;
    color: #8188a9;
    font-family: "Futura PT";
}

.wpo-hero-section-1 .wpo-hero-subtitle p {
    font-size: 25px;
    color: #676767;
    font-family: "Futura PT";
    line-height: 35px;
    max-width: 595px;
    padding-left: 20px;
    border-left: 2px solid #676767;
    margin-bottom: 60px;
}

.wpo-hero-section-text {
    position: relative;
}

.wpo-hero-section-text .video-holder {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translate(-50%, -50%);
}

.wpo-hero-section-text .video-holder a {
    display: block;
    width: 84px;
    height: 84px;
    background: #fff;
    text-align: center;
    line-height: 90px;
    color: #3757f7;
    font-size: 30px;
    border-radius: 50%;
    position: relative;
}

.wpo-hero-section-text .video-holder a:before {
    content: " ";
    width: 130%;
    height: 130%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: absolute;
    left: -12px;
    top: -12px;
    -webkit-animation: pulse 1s infinite;
    animation: pulse 1s infinite;
    z-index: -1;
}

.wpo-hero-section-text .video-holder a .fi {
    font-size: 25px;
}

/*--------------------------------------------------------------
hero slider s2
--------------------------------------------------------------*/
.wpo-hero-section-1.wpo-hero-section-2 {
    background: #fff;
    height: 900px;
}

@media (max-width: 991px) {
    .wpo-hero-section-1.wpo-hero-section-2 {
        background: #edf2f8;
    }
}

.wpo-hero-section-1.wpo-hero-section-2:before {
    display: none;
}

.wpo-hero-section-1.wpo-hero-section-2 .right-vec {
    z-index: 1;
}

.wpo-hero-section-1.wpo-hero-section-2 .right-vec .right-img {
    position: absolute;
    z-index: -11;
    background: none;
}

@media (max-width: 991px) {
    .wpo-hero-section-1.wpo-hero-section-2 .right-vec .right-img {
        display: block;
        position: relative;
        height: unset;
    }
}

.wpo-hero-section-1.wpo-hero-section-2 .right-vec .right-img .r-img {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 991px) {
    .wpo-hero-section-1.wpo-hero-section-2 .right-vec .right-img .r-img img {
        display: none;
    }
}

.wpo-hero-section-1.wpo-hero-section-2 .right-vec .right-img img {
    width: 100%;
    height: unset;
}

.wpo-hero-section-1.wpo-hero-section-2 .right-vec .right-img .video-holder {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
}

.wpo-hero-section-1.wpo-hero-section-2 .right-vec .right-img .video-holder a {
    display: block;
    width: 84px;
    height: 84px;
    background: #fff;
    text-align: center;
    line-height: 90px;
    color: #3757f7;
    font-size: 30px;
    border-radius: 50%;
    position: relative;
}

.wpo-hero-section-1.wpo-hero-section-2 .right-vec .right-img .video-holder a:before {
    content: " ";
    width: 130%;
    height: 130%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: absolute;
    left: -12px;
    top: -12px;
    -webkit-animation: pulse 1s infinite;
    animation: pulse 1s infinite;
    z-index: -1;
}

.wpo-hero-section-1.wpo-hero-section-2 .right-vec .right-img .video-holder a .fi {
    font-size: 25px;
}

.wpo-hero-section-1.wpo-hero-section-2 .right-vec .right-img .wpo-happy-client {
    position: absolute;
    left: -50px;
    bottom: 20%;
    padding: 45px 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0px 1px 20px 0px rgba(43, 45, 118, 0.1);
    display: flex;
    align-items: center;
    z-index: 99;
}

.wpo-hero-section-1.wpo-hero-section-2 .right-vec .right-img .wpo-happy-client h3 {
    font-size: 52px;
    font-family: "Futura PT Demi";
    margin-bottom: 0px;
}

.wpo-hero-section-1.wpo-hero-section-2 .right-vec .right-img .wpo-happy-client p {
    margin-bottom: 0;
    font-size: 22px;
    color: #838383;
    font-family: "Futura PT Demi";
}

.wpo-hero-section-1.wpo-hero-section-2 .right-vec .right-img .wpo-happy-client .wpo-happy-client-slide {
    max-width: 216px;
    margin-left: 25px;
    list-style: none;
}

.wpo-hero-section-1.wpo-hero-section-2 .right-vec .right-img .wpo-happy-client .wpo-happy-client-slide .owl-nav {
    display: none;
}

.wpo-hero-section-1.wpo-hero-section-2 .right-vec .right-img .wpo-happy-client .wpo-happy-client-slide li {
    width: 55px;
    height: 55px;
}

.wpo-hero-section-1.wpo-hero-section-2 .right-vec .right-img .wpo-happy-client .wpo-happy-client-slide li img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
}

.wpo-hero-section-1.wpo-hero-section-2 .right-vec .svg-shape {
    position: absolute;
    bottom: -10%;
    width: 100%;
    right: 100px;
    z-index: -111;
}

.wpo-hero-section-1.wpo-hero-section-2 .right-vec .svg-shape svg {
    width: 100%;
}

@media (max-width: 1440px) {
    .wpo-hero-section-1.wpo-hero-section-2 .right-vec .svg-shape {
        bottom: -20%;
    }
}

.wpo-hero-slider {
    width: 100%;
    height: 579px;
    display: flex;
    position: relative;
    z-index: 0;
}

@media (max-width: 991px) {
    .wpo-hero-slider {
        height: 600px;
    }
}

@media (max-width: 767px) {
    .wpo-hero-slider {
        height: 500px;
    }
}

.wpo-hero-slider .swiper-slide {
    overflow: hidden;
}

.wpo-hero-slider .swiper-container,
.wpo-hero-slider .hero-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.wpo-hero-slider .slide-inner,
.wpo-hero-slider .hero-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}

.wpo-hero-slider .slide-inner .slide-content,
.wpo-hero-slider .hero-inner .slide-content {
    padding-bottom: 70px;
}

@media (max-width: 991px) {
    .wpo-hero-slider .slide-inner .slide-content,
    .wpo-hero-slider .hero-inner .slide-content {
        padding-bottom: 70px;
    }
}

.wpo-hero-slider .swiper-button-prev,
.wpo-hero-slider .swiper-button-next {
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    line-height: 60px;
    border: 2px solid #fff;
    border-radius: 50%;
    opacity: 0.7;
    text-align: center;
    transition: all 0.3s;
}

.wpo-hero-slider .swiper-button-prev:hover,
.wpo-hero-slider .swiper-button-next:hover {
    opacity: 0.9;
}

@media (max-width: 767px) {
    .wpo-hero-slider .swiper-button-prev,
    .wpo-hero-slider .swiper-button-next {
        display: none;
    }
}

.wpo-hero-slider .swiper-button-prev {
    left: 25px;
}

.wpo-hero-slider .swiper-button-prev:before {
    font-family: "themify";
    content: "";
    font-size: 20px;
    color: #fff;
}

.wpo-hero-slider .swiper-button-next {
    right: 25px;
}

.wpo-hero-slider .swiper-button-next:before {
    font-family: "themify";
    content: "";
    font-size: 20px;
    color: #fff;
}

@media (max-width: 991px) {
    .wpo-hero-slider .swiper-button-prev,
    .wpo-hero-slider .swiper-button-next {
        display: none;
    }
}

.wpo-hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    text-align: center;
    line-height: 12px;
    font-size: 12px;
    color: #000;
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
}

@media screen and (min-width: 992px) {
    .wpo-hero-slider .swiper-pagination-bullet {
        display: none;
    }
}

.wpo-hero-slider .swiper-pagination-bullet-active {
    color: #fff;
    background: #fff;
    width: 12px;
    height: 12px;
    text-align: center;
    line-height: 12px;
}

.wpo-hero-slider .swiper-container-horizontal > .swiper-pagination-bullets,
.wpo-hero-slider .swiper-pagination-custom, .wpo-hero-slider .swiper-pagination-fraction {
    bottom: 30px;
}

.wpo-hero-slider .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 8px;
}

@media (max-width: 1199px) {
    .wpo-hero-slider {
        height: 590px;
    }
}

@media (max-width: 991px) {
    .wpo-hero-slider {
        height: 380px;
    }
}

@media (max-width: 767px) {
    .wpo-hero-slider {
        height: 230px;
    }
}

.wpo-hero-slider .gradient-overlay {
    background: linear-gradient(left, #232f4b 45%, transparent 65%);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    opacity: 0.6;
}

.wpo-hero-slider .gradient-overlay + .container {
    position: relative;
    z-index: 11;
}

.wpo-hero-slider .swiper-slide {
    position: relative;
    z-index: 11;
}

.wpo-hero-slider .wpo-hero-title-top span {
    font-size: 22px;
    color: #e4e4e4;
    font-family: "Futura PT";
}

@media (max-width: 767px) {
    .wpo-hero-slider .wpo-hero-title-top span {
        font-size: 15px;
    }
}

.wpo-hero-slider .slide-title {
    max-width: 655px;
}

@media (max-width: 1199px) {
    .wpo-hero-slider .slide-title {
        max-width: 555px;
    }
}

.wpo-hero-slider .slide-title h2 {
    font-size: 70px;
    font-weight: 900;
    line-height: 90px;
    margin: 10px 0 25px;
    color: #fff;
}

@media (max-width: 1199px) {
    .wpo-hero-slider .slide-title h2 {
        font-size: 50px;
        font-size: 3.3333333333rem;
    }
}

@media (max-width: 991px) {
    .wpo-hero-slider .slide-title h2 {
        font-size: 40px;
        font-size: 2.6666666667rem;
        line-height: 55px;
    }
}

@media (max-width: 767px) {
    .wpo-hero-slider .slide-title h2 {
        font-size: 30px;
        font-size: 2rem;
        line-height: 36px;
    }
}

.wpo-hero-slider .slide-text {
    max-width: 520px;
}

@media (max-width: 767px) {
    .wpo-hero-slider .slide-text {
        max-width: 500px;
    }
}

.wpo-hero-slider .slide-text p {
    font-size: 25px;
    color: #676767;
    font-family: "Futura PT";
    line-height: 35px;
    max-width: 595px;
    padding-left: 20px;
    border-left: 2px solid #e2e2e2;
    margin-bottom: 60px;
    color: #e2e2e2;
}

@media (max-width: 991px) {
    .wpo-hero-slider .slide-text p {
        font-size: 18px;
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    .wpo-hero-slider .slide-text p {
        font-size: 16px;
        font-size: 1.0666666667rem;
        line-height: 22px;
        margin-bottom: 30px;
    }
}

@media (max-width: 991px) {
    .wpo-hero-slider .slide-btns {
        max-width: 400px;
    }
}

.wpo-hero-slider .slide-btns .hero-video-btn {
    margin-left: 40px;
}

@media (max-width: 767px) {
    .wpo-hero-slider .slide-btns .hero-video-btn {
        margin-left: 20px;
    }
}

/*--------------------------------------------------------------
4. wpo-footer
--------------------------------------------------------------*/
.wpo-site-footer {
    background: #1e2845;
    position: relative;
    font-size: 15px;
}

.wpo-site-footer ul {
    list-style: none;
}

.wpo-site-footer p {
    color: #fff;
}

.wpo-site-footer li {
    color: #fff;
}

.wpo-site-footer .container {
    position: relative;
}

.wpo-site-footer .wpo-upper-footer {
    padding: 90px 0;
}

@media (max-width: 991px) {
    .wpo-site-footer .wpo-upper-footer {
        padding: 60px 0 0;
    }
}

@media (max-width: 767px) {
    .wpo-site-footer .wpo-upper-footer {
        padding: 60px 0 0;
    }
}

@media (max-width: 991px) {
    .wpo-site-footer .wpo-upper-footer .col {
        min-height: 235px;
        margin-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .wpo-site-footer .wpo-upper-footer .col {
        min-height: auto;
        margin-bottom: 60px;
    }
}

.wpo-site-footer .widget-title {
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .wpo-site-footer .widget-title {
        margin-bottom: 20px;
    }
}

.wpo-site-footer .widget-title h3 {
    font-size: 20px;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    position: relative;
    font-family: "Futura PT Demi";
}

@media (max-width: 991px) {
    .wpo-site-footer .widget-title h3 {
        font-size: 20px;
        font-size: 1.25rem;
    }
}

.wpo-site-footer .about-widget .logo {
    max-width: 180px;
}

.wpo-site-footer .about-widget p {
    margin-bottom: 0.8em;
    line-height: 1.9em;
}

.wpo-site-footer .about-widget p:last-child {
    margin-bottom: 0;
}

.wpo-site-footer .about-widget ul {
    overflow: hidden;
    padding-top: 10px;
}

.wpo-site-footer .about-widget ul li {
    font-size: 22px;
    float: left;
}

.wpo-site-footer .about-widget ul li a {
    color: #fff;
    width: 36px;
    height: 36px;
    line-height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: block;
    text-align: center;
    border-radius: 50%;
    font-size: 18px;
}

.wpo-site-footer .about-widget ul li a:hover {
    color: #232f4b;
    background: #fff;
}

.wpo-site-footer .about-widget ul li + li {
    margin-left: 25px;
}

.wpo-site-footer .wpo-service-link-widget {
    padding-left: 70px;
}

.wpo-site-footer .link-widget {
    overflow: hidden;
}

@media screen and (min-width: 1200px) {
    .wpo-site-footer .link-widget {
        padding-left: 75px;
    }
}

@media (max-width: 1199px) {
    .wpo-site-footer .link-widget {
        padding-left: 20px;
    }
}

@media (max-width: 991px) {
    .wpo-site-footer .link-widget {
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .wpo-site-footer .link-widget {
        max-width: 350px;
    }
}

.wpo-site-footer .link-widget ul li {
    position: relative;
}

.wpo-site-footer .link-widget ul li a {
    color: #fff;
    font-size: 17px;
}

.wpo-site-footer .link-widget ul li a:hover {
    text-decoration: underline;
}

.wpo-site-footer .link-widget ul li + li {
    padding-top: 15px;
}

.wpo-site-footer .contact-ft {
    margin-top: 20px;
}

.wpo-site-footer .contact-ft ul li {
    padding-bottom: 15px;
    position: relative;
    padding-left: 35px;
    color: #e5e3e3;
    font-size: 17px;
}

.wpo-site-footer .contact-ft ul li i {
    position: absolute;
    left: 0;
    top: 0;
}

.wpo-site-footer .contact-ft ul li .fi:before {
    font-size: 20px;
    margin-right: 15px;
}

.wpo-site-footer .wpo-lower-footer {
    text-align: center;
    position: relative;
    background: #141d37;
}

.wpo-site-footer .wpo-lower-footer .row {
    padding: 10px 0;
    position: relative;
}

.wpo-site-footer .wpo-lower-footer .copyright {
    display: inline-block;
    font-size: 15px;
    font-size: 0.9375rem;
    margin: 0;
}

.wpo-site-footer .wpo-lower-footer .copyright a {
    color: #fff;
    text-decoration: none;
}

@media (max-width: 991px) {
    .wpo-site-footer .wpo-lower-footer .copyright {
        float: none;
        display: block;
    }
}

.wpo-site-footer .instagram ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0px -3px;
}

.wpo-site-footer .instagram ul li {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    margin-bottom: 5px;
    padding: 0px 3px;
}

.wpo-site-footer .instagram ul li img {
    width: 100%;
}

.sticky-header {
    width: 100%;
    position: fixed;
    left: 0;
    top: -200px;
    z-index: 9999;
    opacity: 0;
    transition: all 0.7s;
}

.sticky-on {
    opacity: 1;
    top: 0;
}

/* 3.2	wpo-features-section */
/*@media (max-width: 1600px) {
  .wpo-features-section {
    border-top: 1px solid #ebebeb;
  }
}*/
@media (max-width: 991px) {
    .wpo-features-section {
        border-top: 0;
    }
}

.wpo-features-section .wpo-features-item {
    text-align: center;
}

.wpo-features-section .wpo-features-item .wpo-features-icon {
    width: 80px;
    height: 80px;
    background: #f3f6fe;
    line-height: 80px;
    text-align: center;
    margin: 0 auto;
    border-radius: 6px;
}

.wpo-features-section .wpo-features-item .wpo-features-icon svg {
    width: 50px;
    line-height: 50px;
    height: 50px;
}

.wpo-features-section .wpo-features-item .wpo-features-icon img {
    width: 50px;
    line-height: 50px;
    height: 50px;
}

.wpo-features-section .wpo-features-item .wpo-features-text h2 {
    font-size: 30px;
    font-weight: 500;
    margin: 20px 0;
}

.wpo-features-section .wpo-features-item .wpo-features-text h2 a {
    color: #232f4b;
}

.wpo-features-section .wpo-features-item .wpo-features-text h2 a:hover {
    color: #3757f7;
}

.wpo-features-section .wpo-features-item .wpo-features-text p {
    margin-bottom: 0;
}

/* 3.3	wpo-about-sections */
.wpo-about-section {
    padding: 60px 0 155px;
}

.wpo-about-section .wpo-about-wrap .wpo-about-img {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 505px;
    margin: 0 auto;
}

.wpo-about-section .wpo-about-wrap .wpo-about-img img {
    width: 100%;
}

.wpo-about-section .wpo-about-wrap .wpo-about-img .wpo-ab-shape-1 {
    position: absolute;
    left: -60px;
    top: -60px;
    z-index: -1;
}

.wpo-about-section .wpo-about-wrap .wpo-about-img .wpo-ab-shape-2 {
    position: absolute;
    right: -35px;
    bottom: -35px;
    z-index: 11;
}

.wpo-about-section .wpo-about-text {
    max-width: 595px;
}

.wpo-about-section .wpo-about-text .wpo-about-icon {
    width: 50px;
    height: 50px;
    background: #f3f6fe;
    line-height: 50px;
    text-align: center;
    border-radius: 6px;
}

.wpo-about-section .wpo-about-text .wpo-about-icon img {
    width: 30px;
    line-height: 30px;
    height: 30px;
}

.wpo-about-section .wpo-about-text h2 {
    font-size: 40px;
    font-family: "Futura PT Demi";
    margin: 30px 0;
}

.wpo-about-section .wpo-about-text h2 span {
    color: #3757f7;
}

.wpo-about-section .wpo-about-text .signeture {
    padding: 15px 0;
}

.wpo-about-section .wpo-about-text .signeture p {
    font-size: 17px;
    color: #232f4b;
    margin-top: 10px;
}

/* 3.4	wpo-service-section */
.wpo-service-section {
    background: #f4f8fc;
    padding-top: 30px;
    padding-bottom: 30px;
}

.wpo-service-section .wpo-service-item {
    background: #fff;
    padding: 50px;
    margin-bottom: 30px;
}

.wpo-service-section .wpo-service-item .wpo-service-icon {
    width: 82px;
    height: 82px;
    background: #f3f6fe;
    line-height: 82px;
    text-align: center;
    border-radius: 6px;
}

.wpo-service-section .wpo-service-item .wpo-service-icon img {
    width: 50px;
    line-height: 50px;
    height: 50px;
}

.wpo-service-section .wpo-service-item .wpo-service-text h2 {
    font-size: 30px;
    font-weight: 500;
    margin: 20px 0;
}

.wpo-service-section .wpo-service-item .wpo-service-text h2 a {
    color: #232f4b;
}

.wpo-service-section .wpo-service-item .wpo-service-text h2 a:hover {
    color: #3757f7;
}

.wpo-service-section .wpo-service-item .wpo-service-text p {
    margin-bottom: 0;
}

/* 3.5	wpo-pricing-section */
.wpo-pricing-section .wpo-pricing-items .col .theme-btn:after, .wpo-pricing-section .wpo-pricing-items .col .theme-btn-s3:after, .wpo-pricing-section .wpo-pricing-items .col .theme-btn-s4:after, .wpo-pricing-section .wpo-pricing-items .col .view-cart-btn:after {
    display: none;
}

.wpo-pricing-section .wpo-pricing-items .col:nth-child(1) .theme-btn, .wpo-pricing-section .wpo-pricing-items .col:nth-child(1) .theme-btn-s3, .wpo-pricing-section .wpo-pricing-items .col:nth-child(1) .theme-btn-s4, .wpo-pricing-section .wpo-pricing-items .col:nth-child(1) .view-cart-btn {
    background: #f28c8c;
}

.wpo-pricing-section .wpo-pricing-items .col:nth-child(1) .theme-btn:hover, .wpo-pricing-section .wpo-pricing-items .col:nth-child(1) .theme-btn-s3:hover, .wpo-pricing-section .wpo-pricing-items .col:nth-child(1) .theme-btn-s4:hover, .wpo-pricing-section .wpo-pricing-items .col:nth-child(1) .view-cart-btn:hover {
    background: #d87070;
}

.wpo-pricing-section .wpo-pricing-items .col:nth-child(2) .theme-btn, .wpo-pricing-section .wpo-pricing-items .col:nth-child(2) .theme-btn-s3, .wpo-pricing-section .wpo-pricing-items .col:nth-child(2) .theme-btn-s4, .wpo-pricing-section .wpo-pricing-items .col:nth-child(2) .view-cart-btn {
    background: #01c2a9;
}

.wpo-pricing-section .wpo-pricing-items .col:nth-child(2) .theme-btn:hover, .wpo-pricing-section .wpo-pricing-items .col:nth-child(2) .theme-btn-s3:hover, .wpo-pricing-section .wpo-pricing-items .col:nth-child(2) .theme-btn-s4:hover, .wpo-pricing-section .wpo-pricing-items .col:nth-child(2) .view-cart-btn:hover {
    background: #079885;
}

.wpo-pricing-section .wpo-pricing-items .col:nth-child(3) .theme-btn, .wpo-pricing-section .wpo-pricing-items .col:nth-child(3) .theme-btn-s3, .wpo-pricing-section .wpo-pricing-items .col:nth-child(3) .theme-btn-s4, .wpo-pricing-section .wpo-pricing-items .col:nth-child(3) .view-cart-btn {
    background: #3757f7;
}

.wpo-pricing-section .wpo-pricing-items .col:nth-child(3) .theme-btn:hover, .wpo-pricing-section .wpo-pricing-items .col:nth-child(3) .theme-btn-s3:hover, .wpo-pricing-section .wpo-pricing-items .col:nth-child(3) .theme-btn-s4:hover, .wpo-pricing-section .wpo-pricing-items .col:nth-child(3) .view-cart-btn:hover {
    background: #1534d0;
}

.wpo-pricing-section .wpo-pricing-items .wpo-pricing-item {
    text-align: center;
    padding: 60px;
    box-shadow: 0px 2px 20px 0px rgba(62, 65, 159, 0.09);
}

.wpo-pricing-section .wpo-pricing-items .wpo-pricing-item h2 {
    font-size: 35px;
    font-family: "Futura PT Demi";
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .wpo-pricing-section .wpo-pricing-items .wpo-pricing-item h2 {
        font-size: 25px;
    }
}

.wpo-pricing-section .wpo-pricing-items .wpo-pricing-item .price-icon {
    margin-bottom: 5px;
}

.wpo-pricing-section .wpo-pricing-items .wpo-pricing-item .price-icon .fi {
    font-size: 80px;
    color: #2c3587;
}

.wpo-pricing-section .wpo-pricing-items .wpo-pricing-item .theme-btn, .wpo-pricing-section .wpo-pricing-items .wpo-pricing-item .theme-btn-s3, .wpo-pricing-section .wpo-pricing-items .wpo-pricing-item .theme-btn-s4, .wpo-pricing-section .wpo-pricing-items .wpo-pricing-item .view-cart-btn {
    margin-top: 40px;
}

.wpo-pricing-section .wpo-pricing-items .wpo-pricing-item ul {
    list-style: none;
}

.wpo-pricing-section .wpo-pricing-items .wpo-pricing-item ul li {
    padding: 20px 0;
    font-size: 18px;
    border-bottom: 1px solid #f2f2f2;
}

.wpo-pricing-section .wpo-pricing-items .wpo-pricing-item ul li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.wpo-pricing-section .wpo-pricing-items .wpo-pricing-item ul li:first-child {
    padding-top: 0;
}

/* 3.6	wpo-fun-fact-section */
.wpo-fun-fact-section {
    text-align: center;
    background: #f4f8fc;
    margin-top: 30px;
    padding: 150px 0;
}

@media (max-width: 767px) {
    .wpo-fun-fact-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

.wpo-fun-fact-section h2 {
    font-size: 30px;
    font-size: 2rem;
    font-weight: 600;
    margin: 0 0 1.8em;
}

@media (max-width: 991px) {
    .wpo-fun-fact-section h2 {
        font-size: 26px;
        font-size: 1.7333333333rem;
    }
}

@media (max-width: 767px) {
    .wpo-fun-fact-section h2 {
        font-size: 25px;
        font-size: 1.6666666667rem;
    }
}

.wpo-fun-fact-section .wpo-fun-fact-grids .grid {
    width: 25%;
    float: left;
}

@media (max-width: 767px) {
    .wpo-fun-fact-section .wpo-fun-fact-grids .grid {
        width: 50%;
        margin-bottom: 50px;
    }
}


.wpo-fun-fact-section .grid h3 {
    font-size: 80px;
    font-size: 5.3333333333rem;
    font-weight: 900;
    color: #3757f7;
    margin: 0 0 0.2em;
    font-family: "Futura PT";
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-text-fill-color: #fff;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #020202;
}

@media (max-width: 1399px) {
    .wpo-fun-fact-section .grid h3 {
        font-size: 60px;
        ont-size: 4.3333333333rem;
    }
}

@media (max-width: 1200px) {
    .wpo-fun-fact-section .grid h3 {
        font-size: 50px;
        ont-size: 3.3333333333rem;
    }
}

@media (max-width: 991px) {
    .wpo-fun-fact-section .grid h3 {
        font-size: 40px;
        font-size: 2.6666666667rem;
    }
}

@media (max-width: 767px) {
    .wpo-fun-fact-section .grid h3 {
        font-size: 35px;
        font-size: 2.3333333333rem;
    }
}

.wpo-fun-fact-section .grid:nth-child(1) h3 {
    -webkit-text-stroke-color: #f28c8c;
}

.wpo-fun-fact-section .grid:nth-child(2) h3 {
    -webkit-text-stroke-color: #01c2a9;
}

.wpo-fun-fact-section .grid:nth-child(3) h3 {
    -webkit-text-stroke-color: #ffcd40;
}

.wpo-fun-fact-section .grid:nth-child(4) h3 {
    -webkit-text-stroke-color: #3757f7;
}

.wpo-fun-fact-section .grid h3 + p {
    font-size: 30px;
    font-size: 2rem;
    margin: 0;
    color: #232f4b;
    font-family: "Futura PT";
}

@media (max-width: 1200px) {
    .wpo-fun-fact-section .grid h3 + p {
        font-size: 20px;
        font-size: 1.3333333333rem;
    }
}

@media (max-width: 991px) {
    .wpo-fun-fact-section .grid h3 + p {
        font-size: 16px;
        font-size: 1.0666666667rem;
    }
}

/**, ::after, ::before {
    box-sizing: border-box;
    text-align: center;
}*/

/* 3.7	wpo-gallery-section */
.wpo-gallery-section {
    padding: 60px 100px;
}

@media (max-width: 1200px) {
    .wpo-gallery-section {
        padding: 50px 0;
    }
}
@media (max-width: 575px) {
    .wpo-gallery-section {
        padding: 30px 0 0 0;
    }
}

.wpo-gallery-section .wpo-section-title {
    text-align: center;
}

.wpo-gallery-section .wpo-section-title-button {
    text-align: right;
}

.wpo-gallery-section .wpo-section-title-button a {
    padding: 14px 35px;
    display: inline-block;
    border: 1px solid #3757f7;
    border-radius: 5px;
    color: #fff;
    background: #3757f7;
    text-transform: uppercase;
    font-size: 14px;
    font-size: 0.9333333333rem;
}

@media (max-width: 767px) {
    .wpo-gallery-section .wpo-section-title-button a {
        padding: 10px 20px;
    }
}

.wpo-gallery-section .wpo-section-title-button a:hover {
    background: #2743cc;
    color: #fff;
}

.wpo-gallery-section .wpo-gallery-container .grid {
    width: 25%;
    float: left;
    padding: 0 7.5px 15px;
}

.wpo-gallery-section .wpo-gallery-container .grid .wpo-gallery-item {
    position: relative;
}

.wpo-gallery-section .wpo-gallery-container .grid .wpo-gallery-item:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    content: "";
    background: rgba(55, 87, 247, 0.8);
    transition: all 0.3s;
}

.wpo-gallery-section .wpo-gallery-container .grid .wpo-gallery-item:hover:before {
    height: 100%;
}

.wpo-gallery-section .wpo-gallery-container .grid .wpo-gallery-item:hover .wpo-gallery-text {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 991px) {
    .wpo-gallery-section .wpo-gallery-container .grid {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .wpo-gallery-section .wpo-gallery-container .grid {
        width: 50%;
    }
}

@media (max-width: 575px) {
    .wpo-gallery-section .wpo-gallery-container .grid {
        width: 100%;
    }
    .newsSection {
         margin: 0 0;
    }
}

.wpo-gallery-section .wpo-gallery-container .grid img {
    width: 100%;
}

.wpo-gallery-section .wpo-gallery-container .grid .wpo-gallery-text {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}

.wpo-gallery-section .wpo-gallery-container .grid .wpo-gallery-text i {
    width: 40px;
    height: 40px;
    text-align: center;
    border: 1px solid #fff;
    line-height: 40px;
    border-radius: 50%;
    color: #fff;
}

/* 3.8	wpo-testimonial-section */
.wpo-testimonial-section {
    padding-top: 90px;
}

.wpo-testimonial-section.style-2 {
    padding-top: 200px;
}

@media (max-width: 1200px) {
    .wpo-testimonial-section.style-2 {
        padding-top: 160px;
    }
}

@media (max-width: 767px) {
    .wpo-testimonial-section.style-2 {
        padding-top: 100px;
        padding-bottom: 40px;
    }
}

.wpo-testimonial-section .wpo-testimonial-title {
    margin-bottom: 40px;
}

.wpo-testimonial-section .wpo-testimonial-title h2 {
    max-width: 500px;
    font-size: 50px;
    position: relative;
    padding-left: 112px;
    font-family: "Futura PT Demi";
}

.wpo-testimonial-section .wpo-testimonial-title h2 span {
    color: #071e93;
}

.wpo-testimonial-section .wpo-testimonial-title h2 i {
    width: 112px;
    height: 112px;
    line-height: 128px;
    text-align: center;
    background: #3757f7;
    color: #fff;
    display: inline-block;
    font-size: 50px;
    position: absolute;
    left: 0;
    top: -60px;
}

.wpo-testimonial-section .wpo-testimonial-items {
    position: relative;
}

.newsSection {
    margin: 30px 0;
}

.wpo-testimonial-section .wpo-testimonial-items .wpo-testimonial-item {
    padding: 50px 40px;
    box-shadow: 0px 3px 12px 0px rgba(62, 65, 159, 0.08);
    position: relative;
    overflow: hidden;
}

@media (max-width: 767px) {
    .wpo-testimonial-section .wpo-testimonial-items .wpo-testimonial-item {
        padding: 40px 20px;
    }
}

.wpo-testimonial-section .wpo-testimonial-items .wpo-testimonial-item:before {
    font-family: "Flaticon";
    content: "";
    font-size: 60px;
    font-size: 3.75rem;
    color: #eaedfd;
    position: absolute;
    right: 40px;
    top: -28px;
}

.wpo-testimonial-section .wpo-testimonial-items .wpo-testimonial-item .wpo-testimonial-avatar {
    margin-bottom: 30px;
}

.wpo-testimonial-section .wpo-testimonial-items .wpo-testimonial-item .wpo-testimonial-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.wpo-testimonial-section .wpo-testimonial-items .wpo-testimonial-item .wpo-testimonial-text-btm {
    margin-top: 20px;
}

.wpo-testimonial-section .wpo-testimonial-items .wpo-testimonial-item .wpo-testimonial-text-btm h3 {
    font-size: 20px;
    font-family: "Futura PT Demi";
    color: #071e93;
}

.wpo-testimonial-section .wpo-testimonial-items .wpo-testimonial-item .wpo-testimonial-text-btm span {
    color: #848892;
}

.wpo-testimonial-section .wpo-testimonial-items .owl-nav [class*=owl-] {
    background: #fff;
    width: 50px;
    height: 50px;
    line-height: 52px;
    border: 1px solid #b7b7b7;
    color: #6e6e6e;
    padding: 0;
    font-size: 20px;
    margin: 0;
    border-radius: 0;
    transition: all 0.3s;
    z-index: 1;
}

.wpo-testimonial-section .wpo-testimonial-items .owl-nav [class*=owl-]:before {
    right: -3px;
    bottom: -3px;
    border-right: 3px solid #3757f7;
    border-bottom: 3px solid #3757f7;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.wpo-testimonial-section .wpo-testimonial-items .owl-nav [class*=owl-]:hover:before {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 767px) {
    .wpo-testimonial-section .wpo-testimonial-items .owl-nav [class*=owl-] {
        display: none;
    }
}

.wpo-testimonial-section .wpo-testimonial-items .owl-dots {
    text-align: center;
}

.wpo-testimonial-section .wpo-testimonial-items .owl-dots button {
    width: 10px;
    height: 12px;
    border-radius: 50%;
    border: 0;
    margin: 5px;
    background-color: #d6d6d6;
}

.wpo-testimonial-section .wpo-testimonial-items .owl-dots button.active {
    background-color: #3757f7;
}

.wpo-testimonial-section .wpo-testimonial-items .owl-next {
    position: absolute;
    top: -120px;
    right: 0;
}

.wpo-testimonial-section .wpo-testimonial-items .owl-prev {
    position: absolute;
    top: -120px;
    right: 70px;
}

.wpo-testimonial-section .wpo-testimonial-items .owl-prev:before {
    left: -3px;
    bottom: -3px;
    border-right: 0 !important;
    border-left: 3px solid #3757f7;
    border-bottom: 3px solid #3757f7;
}

.wpo-testimonial-section .owl-item {
    padding: 10px;
}

/* 3.9	wpo-support-section */
.wpo-support-section .wpo-support-wrapper {
    padding: 80px 100px;
    border-radius: 15px;
    background: #3757f7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.wpo-support-section .wpo-support-wrapper .wpo-support-text {
    max-width: 475px;
}

.wpo-support-section .wpo-support-wrapper .wpo-support-text h2 {
    font-size: 35px;
    font-family: "Futura PT Demi";
    color: #fff;
    margin-bottom: 20px;
}

.wpo-support-section .wpo-support-wrapper .wpo-support-text p {
    color: #e7e7e7;
}

.wpo-support-section .wpo-support-wrapper .wpo-support-btn a {
    display: block;
    padding: 18px 40px;
    background: #fff;
    color: #3757f7;
    font-size: 18px;
    font-family: "Futura PT Demi";
    text-transform: uppercase;
    border-radius: 6px;
    transition: all 0.3s;
}

.wpo-support-section .wpo-support-wrapper .wpo-support-btn a:hover {
    background: #1534d0;
    color: #fff;
}

/* 3.10 wpo-blog-section */
.wpo-blog-section .wpo-blog-img img {
    width: 100%;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.wpo-blog-section .wpo-blog-content {
    box-shadow: 0px 2px 20px 0px rgba(62, 65, 159, 0.09);
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.wpo-blog-section .wpo-blog-content .wpo-blog-content-top {
    padding: 0px 10px;
}

.wpo-blog-section .wpo-blog-content .wpo-blog-content-top .wpo-blog-thumb span {
    display: inline-block;
    background: #f3f3fb;
    border-radius: 3px;
    padding: 5px 20px;
    font-size: 15px;
    font-family: "Futura PT";
    color: #3757f7;
    font-weight: 900;
}

.wpo-blog-section .wpo-blog-content .wpo-blog-content-top h2 {
    font-size: 23px;
    font-family: "Futura PT Demi";
    margin: 2px 0;
    line-height: 36px;
    margin-bottom: 0;
}

.wpo-blog-section .wpo-blog-content .wpo-blog-content-top h2 a {
    color: #232f4b;
}

.wpo-blog-section .wpo-blog-content .wpo-blog-content-top h2 a:hover {
    color: #3757f7;
}

.wpo-blog-section .wpo-blog-content .wpo-blog-content-btm {
    padding: 20px 30px;
    border-top: 1px solid #f3f3fb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wpo-blog-section .wpo-blog-content .wpo-blog-content-btm .wpo-blog-content-btm-left {
    display: flex;
    align-items: center;
}

.wpo-blog-section .wpo-blog-content .wpo-blog-content-btm .wpo-blog-content-btm-left .wpo-blog-content-btm-left-img img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.wpo-blog-section .wpo-blog-content .wpo-blog-content-btm .wpo-blog-content-btm-left .wpo-blog-content-btm-left-text {
    margin-left: 15px;
}

.wpo-blog-section .wpo-blog-content .wpo-blog-content-btm .wpo-blog-content-btm-left .wpo-blog-content-btm-left-text h4 {
    font-size: 20px;
}

.wpo-blog-section .wpo-blog-content .wpo-blog-content-btm .wpo-blog-content-btm-left .wpo-blog-content-btm-left-text h4 a {
    color: #5a5858;
}

.wpo-blog-section .wpo-blog-content .wpo-blog-content-btm .wpo-blog-content-btm-left .wpo-blog-content-btm-left-text h4 a:hover {
    color: #3757f7;
}

.wpo-blog-section .wpo-blog-content .wpo-blog-content-btm .wpo-blog-content-btm-left .wpo-blog-content-btm-left-text span {
    font-size: 15px;
    color: #848892;
}

.wpo-blog-section .wpo-blog-content .wpo-blog-content-btm .wpo-blog-content-btm-right span {
    font-size: 14px;
    color: #848892;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: "Futura PT Demi";
}


/*--------------------------------------------------------------
5. Home-style-2
--------------------------------------------------------------*/
/* 5.1	wpo-service-section-s2 */
.wpo-service-section.wpo-service-section-s2 .wpo-service-item {
    padding: 50px 40px;
    text-align: center;
    position: relative;
}

@media (max-width: 1200px) {
    .wpo-service-section.wpo-service-section-s2 .wpo-service-item {
        padding: 50px 30px;
    }
}

.wpo-service-section.wpo-service-section-s2 .wpo-service-item .wpo-service-text h2 {
    font-size: 25px;
}

.wpo-service-section.wpo-service-section-s2 .wpo-service-item::before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 10px;
    content: "";
    background: transparent;
    transition: all 0.3s;
}

.wpo-service-section.wpo-service-section-s2 .wpo-service-item:hover::before {
    width: 100%;
}

.wpo-service-section.wpo-service-section-s2 .wpo-service-item .wpo-service-icon {
    width: unset;
    height: unset;
    line-height: unset;
    background: none;
    position: relative;
    display: inline-block;
    z-index: 1;
}

.wpo-service-section.wpo-service-section-s2 .wpo-service-item .wpo-service-icon::before {
    position: absolute;
    left: -20px;
    top: -20px;
    width: 60px;
    height: 60px;
    content: "";
    background: #fff;
    z-index: -1;
    border-radius: 50%;
}

.wpo-service-section.wpo-service-section-s2 .wpo-service-item .wpo-service-icon .fi:before {
    font-size: 60px;
    color: #232f4b;
}

.wpo-service-section.wpo-service-section-s2 .wpo-service-item:nth-child(1):before {
    background: #a5e2f3;
}

.wpo-service-section.wpo-service-section-s2 .wpo-service-item:nth-child(1) .wpo-service-icon::before {
    background: #a5e2f3;
}

.wpo-service-section.wpo-service-section-s2 .wpo-service-item:nth-child(2):before {
    background: #fff1b9;
}

.wpo-service-section.wpo-service-section-s2 .wpo-service-item:nth-child(2) .wpo-service-icon::before {
    background: #fff1b9;
}

.wpo-service-section.wpo-service-section-s2 .wpo-service-item:nth-child(3):before {
    background: #ffb8b8;
}

.wpo-service-section.wpo-service-section-s2 .wpo-service-item:nth-child(3) .wpo-service-icon::before {
    background: #ffb8b8;
}

.wpo-service-section.wpo-service-section-s2 .wpo-service-item:nth-child(4):before {
    background: #defcf2;
}

.wpo-service-section.wpo-service-section-s2 .wpo-service-item:nth-child(4) .wpo-service-icon::before {
    background: #defcf2;
}

.wpo-service-section.wpo-service-section-s2 .owl-nav {
    display: none;
}

.wpo-service-section.wpo-service-section-s2 .owl-dots {
    text-align: center;
}

.wpo-service-section.wpo-service-section-s2 .owl-dots button {
    width: 10px;
    height: 12px;
    border-radius: 50%;
    border: 0;
    margin: 5px;
    background-color: #d6d6d6;
}

.wpo-service-section.wpo-service-section-s2 .owl-dots button.active {
    background-color: #3757f7;
}

.wpo-fun-fact-section.wpo-fun-fact-section-s2 {
    background: none;
}

.wpo-fun-fact-section.wpo-fun-fact-section-s2 .wpo-fun-fact-grids {
    padding: 90px 70px;
    border-radius: 20px;
    box-shadow: 0px 2px 20px 0px rgba(62, 65, 159, 0.09);
}

@media (max-width: 767px) {
    .wpo-fun-fact-section.wpo-fun-fact-section-s2 .wpo-fun-fact-grids {
        padding: 30px;
        padding-bottom: 0;
    }
}

@media (max-width: 767px) {
    .wpo-fun-fact-section.wpo-fun-fact-section-s2 {
        padding-bottom: 0;
    }
}

/*--------------------------------------------------------------
6. Home-style-3
--------------------------------------------------------------*/
/* 6.1	wpo-features-section-s2 */
.wpo-features-section.wpo-features-section-s2 {
    /* margin-top: -60px;*/
    z-index: 11;
    position: relative;
    border: 0;
}

@media (min-width: 991px) {
    .wpo-features-section.wpo-features-section-s2 {
        margin-top: 30px;
    }
}

@media (max-width: 991px) {
    .wpo-features-section.wpo-features-section-s2 {
        margin-top: 30px;
    }
}

.wpo-features-section.wpo-features-section-s2 .wpo-features-item {
    padding: 60px;
    height: 330px;
    background-color: white;
    box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.1);
}

@media (max-width: 1200px) {
    .wpo-features-section.wpo-features-section-s2 .wpo-features-item .wpo-features-text h2 {
        font-size: 25px;
    }
}

@media (max-width: 1600px) {
    .wpo-features-section.wpo-features-section-s2 .wpo-features-item {
        padding: 60px 40px;
    }
}

@media (max-width: 1200px) {
    .wpo-features-section.wpo-features-section-s2 .wpo-features-item {
        height: 230px;
    }
}

.wpo-features-section.wpo-features-section-s2 .wpo-features-item .wpo-features-icon {
    border-radius: 50%;
}

/* 6.2	wpo-service-section-s3 */
.wpo-service-section.wpo-service-section-s3 .wpo-service-item {
    padding: 50px 40px;
    text-align: center;
    position: relative;
}

.wpo-service-section.wpo-service-section-s3 .wpo-service-item .wpo-service-text h2 {
    font-size: 25px;
}

.wpo-service-section.wpo-service-section-s3 .wpo-service-item::before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 10px;
    content: "";
    background: #3757f7;
    transition: all 0.3s;
}

.wpo-service-section.wpo-service-section-s3 .wpo-service-item:hover::before {
    width: 100%;
}

.wpo-service-section.wpo-service-section-s3 .wpo-service-item .wpo-service-icon {
    width: 90px;
    height: 90px;
    line-height: 108px;
    background: #f4f6fd;
    position: relative;
    display: inline-block;
    z-index: 1;
    border-radius: 50%;
}

.wpo-service-section.wpo-service-section-s3 .wpo-service-item .wpo-service-icon .fi {
    font-size: 50px;
}

.wpo-service-section.wpo-service-section-s3 .wpo-service-item .wpo-service-icon .fi:before {
    color: #3757f7;
}

.wpo-service-section.wpo-service-section-s3 .owl-nav {
    display: none;
}

.wpo-service-section.wpo-service-section-s3 .owl-dots {
    text-align: center;
}

.wpo-service-section.wpo-service-section-s3 .owl-dots button {
    width: 10px;
    height: 12px;
    border-radius: 50%;
    border: 0;
    margin: 5px;
    background-color: #d6d6d6;
}

.wpo-service-section.wpo-service-section-s3 .owl-dots button.active {
    background-color: #3757f7;
}

/*--------------------------------------------------------------
7. wpo-service-single-section
--------------------------------------------------------------*/
@media (max-width: 991px) {
    .wpo-service-single-section {
        padding-bottom: 60px;
    }
}

.wpo-service-single-section .wpo-service-single-wrap img {
    width: 100%;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-service-single-content .wpo-service-single-content-des {
    padding: 60px 0;
}

@media (max-width: 767px) {
    .wpo-service-single-section .wpo-service-single-wrap .wpo-service-single-content .wpo-service-single-content-des {
        padding: 35px 0;
    }
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-service-single-content .wpo-service-single-content-des h2 {
    font-size: 33px;
    font-family: "Futura PT Demi";
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .wpo-service-single-section .wpo-service-single-wrap .wpo-service-single-content .wpo-service-single-content-des h2 {
        font-size: 25px;
        margin-bottom: 16px;
    }
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-service-single-content .wpo-service-single-content-des p {
    margin-bottom: 30px;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-service-single-content .wpo-service-single-content-des .wpo-service-single-sub-img {
    margin-top: 50px;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-service-single-content .wpo-service-single-content-des .wpo-service-single-sub-img ul {
    display: flex;
    list-style: none;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-service-single-content .wpo-service-single-content-des .wpo-service-single-sub-img li {
    padding-left: 10px;
    padding-right: 10px;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-service-single-content .wpo-service-single-content-des .wpo-service-single-sub-img li:last-child {
    padding-left: 10px;
    padding-right: 0;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-solutions-section h2 {
    font-size: 33px;
    font-family: "Futura PT Demi";
    margin-bottom: 30px;
}

@media (max-width: 575px) {
    .wpo-service-single-section .wpo-service-single-wrap .wpo-solutions-section h2 {
        font-size: 25px;
    }
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-solutions-section .wpo-solutions-item {
    background: #fff;
    padding: 30px 25px;
    margin-bottom: 30px;
    box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.1);
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-solutions-section .wpo-solutions-item .wpo-solutions-icon img {
    width: 50px;
    line-height: 50px;
    height: 50px;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-solutions-section .wpo-solutions-item .wpo-solutions-text h2 {
    font-size: 22px;
    font-weight: 500;
    margin: 20px 0;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-solutions-section .wpo-solutions-item .wpo-solutions-text h2 a {
    color: #232f4b;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-solutions-section .wpo-solutions-item .wpo-solutions-text h2 a:hover {
    color: #3757f7;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-solutions-section .wpo-solutions-item .wpo-solutions-text p {
    margin-bottom: 0;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-benefits-section {
    padding-top: 30px;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-benefits-section h2 {
    font-size: 33px;
    font-family: "Futura PT Demi";
    margin-bottom: 30px;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-benefits-section .accordion {
    border-top: 1px solid #e1e1e1;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-benefits-section .accordion-item {
    border: 0;
    border-bottom: 1px solid #e1e1e1;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-benefits-section .accordion-item .accordion-body {
    padding-left: 0;
    padding-right: 0;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-benefits-section .accordion-item button {
    padding: 20px;
    border: 0;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 20px;
    color: #232f4b;
    text-align: left;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-benefits-section .accordion-item button::after {
    background: none;
    font-family: "themify";
    content: "";
    font-size: 15px;
    transform: rotate(0deg);
    font-weight: 700;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-benefits-section .accordion-item button.collapsed {
    color: #373b3e;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-benefits-section .accordion-item button.collapsed::after {
    content: "";
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-benefits-section .accordion-item button:focus {
    box-shadow: none;
    outline: none;
    border-color: #e1e1e1;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-benefits-section .accordion-item .accordion-collapse {
    border: 0;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-benefits-section .accordion-button {
    background: transparent;
}

.wpo-single-sidebar {
    padding-left: 20px;
}

@media (max-width: 991px) {
    .wpo-single-sidebar {
        padding-left: 0;
        margin-top: 60px;
    }
}

.wpo-single-sidebar .widget {
    padding: 30px 40px;
    border: 1px solid #e1e1e1;
    margin-bottom: 40px;
}

@media (max-width: 1200px) {
    .wpo-single-sidebar .widget {
        padding: 20px;
    }
}

.wpo-single-sidebar .widget h2 {
    font-size: 25px;
    font-family: "Futura PT Demi";
    padding-bottom: 35px;
    position: relative;
    text-align: center;
    display: block;
    margin-bottom: 30px;
}

.wpo-single-sidebar .widget h2::before {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    background: url(../images/Single-title-shape.png) no-repeat right center;
    content: "";
    width: 52px;
    height: 20px;
}

.wpo-single-sidebar .widget ul {
    list-style: none;
}

.wpo-single-sidebar .wpo-service-widget ul li a {
    display: block;
    padding: 15px 0;
    font-size: 16px;
    color: #232f4b;
    font-weight: 600;
    border-bottom: 1px solid #e1e1e1;
    padding-left: 30px;
    position: relative;
}

.wpo-single-sidebar .wpo-service-widget ul li a:before {
    position: absolute;
    left: 0;
    top: 15px;
    font-family: "themify";
    content: "";
    font-size: 14px;
    color: #3757f7;
}

.wpo-single-sidebar .wpo-service-widget ul li a:hover {
    color: #3757f7;
}

.wpo-single-sidebar .wpo-service-widget ul li:last-child a {
    padding-bottom: 0;
    border-bottom: 0;
}

.wpo-single-sidebar .wpo-service-widget ul li:first-child a {
    padding-top: 0;
}

.wpo-single-sidebar .wpo-service-widget ul li:first-child a:before {
    top: 2px;
}

.wpo-single-sidebar .wpo-newsletter-widget p {
    font-size: 20px;
    font-family: "Futura PT Demi";
    color: #232f4b;
    text-align: center;
}

.wpo-single-sidebar .wpo-newsletter-widget span {
    font-size: 15px;
    color: #848892;
}

.wpo-single-sidebar .wpo-newsletter-widget span a {
    color: #232f4b;
    font-weight: 700;
}

.wpo-single-sidebar .wpo-newsletter-widget span a:hover {
    color: #3757f7;
}

.wpo-single-sidebar .wpo-newsletter-widget .form input {
    border: 0;
    display: block;
    width: 100%;
    height: 50px;
    border-radius: 50px;
    border: 1px solid #e1e1e1;
    padding: 15px;
    text-align: center;
}

.wpo-single-sidebar .wpo-newsletter-widget .form input:focus {
    box-shadow: none;
}

.wpo-single-sidebar .wpo-newsletter-widget .form button {
    background: #3757f7;
    width: 100%;
    height: 50px;
    border-radius: 50px;
    text-align: center;
    color: #fff;
    border: none;
    margin: 20px 0;
}

.wpo-single-sidebar .wpo-instagram-widget ul {
    display: flex;
    flex-wrap: wrap;
}

.wpo-single-sidebar .wpo-instagram-widget ul li {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    margin-bottom: 5px;
    padding: 0px 3px;
}

.wpo-single-sidebar .wpo-instagram-widget ul li img {
    width: 100%;
}

.wpo-single-sidebar .wpo-contact-widget {
    border: 0;
    background: #3757f7;
}

.wpo-single-sidebar .wpo-contact-widget h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: left;
    color: #fff;
    margin-bottom: 20px;
}

.wpo-single-sidebar .wpo-contact-widget h2::before {
    left: 28px;
    background: url(../images/Single-title-shape2.png) no-repeat right center;
}

.wpo-single-sidebar .wpo-contact-widget p {
    color: #fff;
    font-size: 18px;
}

.wpo-single-sidebar .wpo-contact-widget a {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #fff;
    font-size: 18px;
    color: #fff;
    padding-right: 90px;
    position: relative;
    margin-top: 10px;
}

.wpo-single-sidebar .wpo-contact-widget a::before {
    font-family: "themify";
    content: "";
    font-size: 18px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

/*--------------------------------------------------------------
8. wpo-project-section
--------------------------------------------------------------*/
.wpo-gallery-section.wpo-gallery-section-s2 .wpo-gallery-container .grid {
    width: 33.33%;
}

@media (max-width: 991px) {
    .wpo-gallery-section.wpo-gallery-section-s2 .wpo-gallery-container .grid {
        width: 50%;
    }
}

@media (max-width: 575px) {
    .wpo-gallery-section.wpo-gallery-section-s2 .wpo-gallery-container .grid {
        width: 100%;
        float: none;
    }
}

/*--------------------------------------------------------------
9. wpo-project-single-section
--------------------------------------------------------------*/
@media (max-width: 991px) {
    .wpo-project-single-section {
        padding-bottom: 60px;
    }
}

.wpo-project-single-section .wpo-project-single-wrap {
    /*** tag-share ***/
    /*** more-posts ***/
}

.wpo-project-single-section .wpo-project-single-wrap img {
    width: 100%;
}

.wpo-project-single-section .wpo-project-single-wrap .wpo-project-single-content .wpo-project-single-content-des {
    padding: 60px 0;
}

@media (max-width: 767px) {
    .wpo-project-single-section .wpo-project-single-wrap .wpo-project-single-content .wpo-project-single-content-des {
        padding: 35px 0;
    }
}

.wpo-project-single-section .wpo-project-single-wrap .wpo-project-single-content .wpo-project-single-content-des h2 {
    font-size: 33px;
    font-family: "Futura PT Demi";
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .wpo-project-single-section .wpo-project-single-wrap .wpo-project-single-content .wpo-project-single-content-des h2 {
        font-size: 25px;
        margin-bottom: 16px;
    }
}

.wpo-project-single-section .wpo-project-single-wrap .wpo-project-single-content .wpo-project-single-content-des p {
    margin-bottom: 30px;
}

.wpo-project-single-section .wpo-project-single-wrap .wpo-project-single-content .wpo-project-single-content-des .wpo-project-single-content-des-wrap {
    display: flex;
}

@media (max-width: 1200px) {
    .wpo-project-single-section .wpo-project-single-wrap .wpo-project-single-content .wpo-project-single-content-des .wpo-project-single-content-des-wrap {
        flex-wrap: wrap;
    }
}

.wpo-project-single-section .wpo-project-single-wrap .wpo-project-single-content .wpo-project-single-content-des .wpo-project-single-content-des-wrap .wpo-project-single-content-des-left {
    flex-basis: 65%;
    padding-right: 40px;
}

@media (max-width: 1200px) {
    .wpo-project-single-section .wpo-project-single-wrap .wpo-project-single-content .wpo-project-single-content-des .wpo-project-single-content-des-wrap .wpo-project-single-content-des-left {
        flex-basis: 100%;
    }
}

.wpo-project-single-section .wpo-project-single-wrap .wpo-project-single-content .wpo-project-single-content-des .wpo-project-single-content-des-wrap .wpo-project-single-content-des-right {
    max-width: 380px;
    flex-basis: 35%;
}

@media (max-width: 1200px) {
    .wpo-project-single-section .wpo-project-single-wrap .wpo-project-single-content .wpo-project-single-content-des .wpo-project-single-content-des-wrap .wpo-project-single-content-des-right {
        flex-basis: 100%;
        margin-bottom: 40px;
    }
}

.wpo-project-single-section .wpo-project-single-wrap .wpo-project-single-content .wpo-project-single-content-des .wpo-project-single-content-des-wrap .wpo-project-single-content-des-right ul {
    list-style: none;
    padding: 50px 40px;
    border: 1px solid #e1e1e1;
}

@media (max-width: 575px) {
    .wpo-project-single-section .wpo-project-single-wrap .wpo-project-single-content .wpo-project-single-content-des .wpo-project-single-content-des-wrap .wpo-project-single-content-des-right ul {
        padding: 50px 20px;
    }
}

.wpo-project-single-section .wpo-project-single-wrap .wpo-project-single-content .wpo-project-single-content-des .wpo-project-single-content-des-wrap .wpo-project-single-content-des-right ul li {
    display: flex;
    padding: 15px 0;
    font-size: 16px;
    color: #232f4b;
    font-weight: 600;
    border-bottom: 1px solid #ebebeb;
    position: relative;
    justify-content: space-between;
    font-weight: 600;
}

.wpo-project-single-section .wpo-project-single-wrap .wpo-project-single-content .wpo-project-single-content-des .wpo-project-single-content-des-wrap .wpo-project-single-content-des-right ul li span {
    flex-basis: 70%;
    color: #4f555a;
    font-weight: 400;
}

.wpo-project-single-section .wpo-project-single-wrap .wpo-project-single-content .wpo-project-single-content-des .wpo-project-single-content-des-wrap .wpo-project-single-content-des-right ul li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.wpo-project-single-section .wpo-project-single-wrap .wpo-project-single-content .wpo-project-single-content-des .wpo-project-single-content-des-wrap .wpo-project-single-content-des-right ul li:first-child {
    padding-top: 0;
}

.wpo-project-single-section .wpo-project-single-wrap .wpo-project-single-content .wpo-project-single-content-des .wpo-project-single-sub-img ul {
    display: flex;
    list-style: none;
}

.wpo-project-single-section .wpo-project-single-wrap .wpo-project-single-content .wpo-project-single-content-des .wpo-project-single-sub-img li {
    padding-left: 0px;
    padding-right: 10px;
}

.wpo-project-single-section .wpo-project-single-wrap .wpo-project-single-content .wpo-project-single-content-des .wpo-project-single-sub-img li:last-child {
    padding-left: 10px;
    padding-right: 0;
}

.wpo-project-single-section .wpo-project-single-wrap .wpo-solutions-section h2 {
    font-size: 33px;
    font-family: "Futura PT Demi";
    margin-bottom: 30px;
}

@media (max-width: 575px) {
    .wpo-project-single-section .wpo-project-single-wrap .wpo-solutions-section h2 {
        font-size: 25px;
    }
}

.wpo-project-single-section .wpo-project-single-wrap .wpo-solutions-section .wpo-solutions-item {
    background: #fff;
    padding: 30px 25px;
    margin-bottom: 30px;
    box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.1);
}

.wpo-project-single-section .wpo-project-single-wrap .wpo-solutions-section .wpo-solutions-item .wpo-solutions-icon img {
    width: 50px;
    line-height: 50px;
    height: 50px;
}

.wpo-project-single-section .wpo-project-single-wrap .wpo-solutions-section .wpo-solutions-item .wpo-solutions-text h2 {
    font-size: 22px;
    font-weight: 500;
    margin: 20px 0;
}

.wpo-project-single-section .wpo-project-single-wrap .wpo-solutions-section .wpo-solutions-item .wpo-solutions-text h2 a {
    color: #232f4b;
}

.wpo-project-single-section .wpo-project-single-wrap .wpo-solutions-section .wpo-solutions-item .wpo-solutions-text h2 a:hover {
    color: #3757f7;
}

.wpo-project-single-section .wpo-project-single-wrap .wpo-solutions-section .wpo-solutions-item .wpo-solutions-text p {
    margin-bottom: 0;
}

.wpo-project-single-section .wpo-project-single-wrap .tag-share {
    margin: 60px 0 40px;
    background: #eceffb;
    padding: 15px;
}

@media (max-width: 767px) {
    .wpo-project-single-section .wpo-project-single-wrap .tag-share {
        margin: 50px 0 30px;
        text-align: center;
    }
}

.wpo-project-single-section .wpo-project-single-wrap .tag-share .tag {
    display: inline-block;
    float: left;
    margin-top: 5px;
}

@media (max-width: 767px) {
    .wpo-project-single-section .wpo-project-single-wrap .tag-share .tag {
        display: block;
        margin: 0 auto;
        margin-bottom: 25px;
        float: none;
    }
}

.wpo-project-single-section .wpo-project-single-wrap .tag-share .share {
    display: flex;
    align-items: center;
    float: right;
}

.wpo-project-single-section .wpo-project-single-wrap .tag-share .share span {
    margin-right: 10px;
}

@media (max-width: 767px) {
    .wpo-project-single-section .wpo-project-single-wrap .tag-share .share {
        float: none;
        justify-content: center;
    }
}

.wpo-project-single-section .wpo-project-single-wrap .tag-share ul {
    overflow: hidden;
    list-style: none;
}

@media (max-width: 767px) {
    .wpo-project-single-section .wpo-project-single-wrap .tag-share ul {
        display: flex;
        justify-content: center;
    }
}

.wpo-project-single-section .wpo-project-single-wrap .tag-share ul li {
    float: left;
}

.wpo-project-single-section .wpo-project-single-wrap .tag-share .tag ul > li + li,
.wpo-project-single-section .wpo-project-single-wrap .tag-share .share ul > li + li {
    margin-left: 10px;
}

@media (max-width: 767px) {
    .wpo-project-single-section .wpo-project-single-wrap .tag-share .tag ul > li + li,
    .wpo-project-single-section .wpo-project-single-wrap .tag-share .share ul > li + li {
        margin-left: 2px;
    }
}

.wpo-project-single-section .wpo-project-single-wrap .tag-share .tag a {
    background-color: #fff;
    display: block;
    padding: 6px 18px;
    color: #232f4b;
    border-radius: 50px;
}

.wpo-project-single-section .wpo-project-single-wrap .tag-share .tag a:hover {
    background-color: #3757f7;
    color: #fff;
}

.wpo-project-single-section .wpo-project-single-wrap .tag-share .share a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    font-size: 0.9333333333rem;
    text-align: center;
    color: #232f4b;
    border-radius: 50%;
    padding: 0;
    display: block;
    border: 1px solid #dadada;
}

.wpo-project-single-section .wpo-project-single-wrap .tag-share .share a:hover {
    background: #3757f7;
    color: #fff;
    border-color: #3757f7;
}

.wpo-project-single-section .wpo-project-single-wrap .more-posts {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .wpo-project-single-section .wpo-project-single-wrap .more-posts {
        display: block;
        text-align: center;
    }
}

.wpo-project-single-section .wpo-project-single-wrap .more-posts a {
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .wpo-project-single-section .wpo-project-single-wrap .more-posts a {
        justify-content: center;
        padding: 20px;
        border: 1px solid #ebebeb;
    }
}

.wpo-project-single-section .wpo-project-single-wrap .more-posts .post-img {
    max-width: 80px;
    margin-right: 20px;
}

.wpo-project-single-section .wpo-project-single-wrap .more-posts .post-img img {
    border-radius: 6px;
}

.wpo-project-single-section .wpo-project-single-wrap .more-posts .post-text span {
    display: block;
}

.wpo-project-single-section .wpo-project-single-wrap .more-posts .post-text span:first-child {
    color: #4f555a;
}

.wpo-project-single-section .wpo-project-single-wrap .more-posts .post-text span:last-child {
    color: #232f4b;
    font-size: 20px;
    font-family: "Futura PT Demi";
}

.wpo-project-single-section .wpo-project-single-wrap .more-posts .next-post .post-text {
    text-align: right;
}

.wpo-project-single-section .wpo-project-single-wrap .more-posts .next-post .post-img {
    margin-left: 20px;
}

@media (max-width: 767px) {
    .wpo-project-single-section .wpo-project-single-wrap .more-posts .next-post a {
        margin-top: 10px;
    }
}

/*--------------------------------------------------------------
10.	wpo-blog-pg-section
--------------------------------------------------------------*/
.wpo-blog-pg-section {
    /*** format-standard ***/
    /*** format-gallery ***/
    /*** format-quote ***/
    /*** format-video ***/
}

.wpo-blog-pg-section .wpo-blog-content .post {
    margin-bottom: 70px;
}

@media (max-width: 991px) {
    .wpo-blog-pg-section .wpo-blog-content .post {
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .wpo-blog-pg-section .wpo-blog-content .post {
        margin-bottom: 40px;
    }
}

.wpo-blog-pg-section .entry-meta {
    list-style: none;
    overflow: hidden;
    margin: 35px 0;
}

@media (max-width: 767px) {
    .wpo-blog-pg-section .entry-meta {
        margin: 25px 0;
    }
}

.wpo-blog-pg-section .entry-meta ul {
    list-style: none;
}

.wpo-blog-pg-section .entry-meta ul li {
    font-weight: 500;
    font-size: 14px;
    font-size: 0.9333333333rem;
    float: left;
    text-transform: uppercase;
}

.wpo-blog-pg-section .entry-meta ul li a {
    color: #636893;
    text-decoration: underline;
}

.wpo-blog-pg-section .entry-meta ul li a:hover {
    color: #3757f7;
}

.wpo-blog-pg-section .entry-meta ul li i {
    position: relative;
    top: 2px;
    margin-right: 3px;
}

.wpo-blog-pg-section .entry-meta ul li + li {
    margin-left: 20px;
    padding-left: 20px;
    position: relative;
}

.wpo-blog-pg-section .entry-meta ul li + li:before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    content: "";
    background: #3757f7;
    border-radius: 50%;
}

@media (max-width: 440px) {
    .wpo-blog-pg-section .entry-meta ul li + li:before {
        display: none;
    }
}

@media (max-width: 440px) {
    .wpo-blog-pg-section .entry-meta ul li + li {
        margin-left: 0;
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .wpo-blog-pg-section .entry-meta ul li {
        font-size: 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 440px) {
    .wpo-blog-pg-section .entry-meta ul li {
        float: none;
        display: block;
        margin-bottom: 5px;
    }
}

.wpo-blog-pg-section .post h3 {
    font-size: 34px;
    font-size: 2.2666666667rem;
    line-height: 1.2em;
    font-weight: 600;
    margin: -0.27em 0 0.7em;
    font-family: "Futura PT Demi";
}

@media (max-width: 991px) {
    .wpo-blog-pg-section .post h3 {
        font-size: 25px;
        font-size: 1.6666666667rem;
    }
}

@media (max-width: 767px) {
    .wpo-blog-pg-section .post h3 {
        font-size: 22px;
        font-size: 1.4666666667rem;
    }
}

.wpo-blog-pg-section .post h3 a {
    color: #232f4b;
}

.wpo-blog-pg-section .post h3 a:hover {
    color: #3757f7;
}

.wpo-blog-pg-section .post p {
    margin-bottom: 1.5em;
}

@media (max-width: 991px) {
    .wpo-blog-pg-section .post p {
        font-size: 16px;
        font-size: 1.0666666667rem;
    }
}

.wpo-blog-pg-section .post a.read-more {
    text-decoration: underline;
    color: #6e6e6e;
    text-transform: uppercase;
    font-family: "Futura PT";
    font-size: 16px;
}

.wpo-blog-pg-section .post a.read-more:hover {
    color: #3757f7;
}

.wpo-blog-pg-section .entry-media img {
    width: 100%;
}

.wpo-blog-pg-section .format-standard,
.wpo-blog-pg-section .format-quote {
    background-color: #f4f8fc;
    padding: 25px 35px 45px;
}

@media (max-width: 767px) {
    .wpo-blog-pg-section .format-standard,
    .wpo-blog-pg-section .format-quote {
        padding: 25px 20px 45px;
    }
}

.wpo-blog-pg-section .format-standard {
    position: relative;
}

.wpo-blog-pg-section .format-standard:before {
    position: absolute;
    right: 0;
    top: 0;
    content: "";
    font-family: "flaticon";
    font-size: 90px;
    line-height: 80px;
    color: #e5f0fb;
    transform: rotate(180deg);
}

.wpo-blog-pg-section .format-gallery {
    position: relative;
}

.wpo-blog-pg-section .format-gallery .owl-controls {
    width: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.wpo-blog-pg-section .format-gallery .owl-nav [class*=owl-]:hover {
    background: #3757f7;
    color: #fff;
}

.wpo-blog-pg-section .format-gallery .owl-nav [class*=owl-] {
    background: #fff;
    width: 50px;
    height: 50px;
    line-height: 58px;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    color: #3757f7;
    transition: all 0.3s;
    border: 0;
}

.wpo-blog-pg-section .format-gallery .owl-nav [class*=owl-] .fi::before {
    font-size: 20px;
}

.wpo-blog-pg-section .format-gallery .owl-nav .owl-prev,
.wpo-blog-pg-section .format-gallery .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.wpo-blog-pg-section .format-gallery .owl-nav .owl-prev {
    left: 15px;
}

.wpo-blog-pg-section .format-gallery .owl-nav .owl-next {
    right: 15px;
}

.wpo-blog-pg-section .format-quote {
    text-align: center;
    padding: 80px 60px;
    position: relative;
}

@media (max-width: 767px) {
    .wpo-blog-pg-section .format-quote {
        padding: 40px 20px;
    }
}

.wpo-blog-pg-section .format-quote p {
    margin-bottom: 0;
}

.wpo-blog-pg-section .format-quote:before {
    font-family: "Flaticon";
    content: "";
    font-size: 250px;
    font-size: 16.6666666667rem;
    color: #ecf3fb;
    margin-left: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.wpo-blog-pg-section .format-quote h3,
.wpo-blog-pg-section .format-quote p {
    position: relative;
}

.wpo-blog-pg-section .format-video .video-holder {
    position: relative;
    text-align: center;
}

.wpo-blog-pg-section .format-video .video-holder:before {
    content: "";
    background-color: #3757f7;
    background: linear-gradient(left, #071e93, #3757f7);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s;
    opacity: 0.5;
}

.wpo-blog-pg-section .format-video .video-holder:hover:before {
    opacity: 0.7;
}

.wpo-blog-pg-section .format-video .video-holder a {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 63px;
    height: 63px;
    line-height: 70px;
    background: #fff;
    border-radius: 50%;
    z-index: 1;
}

.wpo-blog-pg-section .format-video .video-holder a:before {
    position: absolute;
    left: -12px;
    top: -12px;
    width: 140%;
    height: 140%;
    background: rgba(255, 255, 255, 0.3);
    content: "";
    -webkit-animation: save-the-date-pulse 1s infinite;
    animation: save-the-date-pulse 1s infinite;
    border-radius: 50%;
    z-index: -1;
}

.wpo-blog-pg-section .format-video .video-holder .fi:before {
    font-size: 20px;
    font-size: 1.3333333333rem;
    color: #3757f7;
}

@media screen and (min-width: 1200px) {
    .blog-pg-left-sidebar .blog-sidebar {
        padding-right: 45px;
        padding-left: 0;
    }
}

@media screen and (min-width: 1200px) {
    .blog-pg-fullwidth .wpo-blog-content {
        padding: 0;
    }
}

@-webkit-keyframes save-the-date-pulse {
    from {
        transform: scale3d(1, 1, 1);
    }
    50% {
        transform: scale3d(0.95, 0.95, 0.95);
    }
    to {
        transform: scale3d(1, 1, 1);
    }
}

@keyframes save-the-date-pulse {
    from {
        transform: scale3d(1, 1, 1);
    }
    50% {
        transform: scale3d(0.95, 0.95, 0.95);
    }
    to {
        transform: scale3d(1, 1, 1);
    }
}

/*--------------------------------------------------------------
11. wpo-blog-single-section
--------------------------------------------------------------*/
.wpo-blog-single-section {
    /*** tag-share ***/
    /*** author-box ***/
    /*** more-posts ***/
    /*** comments area ***/
    /*** comment-respond ***/
}

.wpo-blog-single-section .entry-meta {
    list-style: none;
    overflow: hidden;
    margin: 35px 0;
}

@media (max-width: 767px) {
    .wpo-blog-single-section .entry-meta {
        margin: 25px 0;
    }
}

.wpo-blog-single-section .entry-meta ul {
    list-style: none;
}

.wpo-blog-single-section .entry-meta ul li {
    font-weight: 500;
    font-size: 14px;
    font-size: 0.9333333333rem;
    float: left;
    text-transform: uppercase;
}

.wpo-blog-single-section .entry-meta ul li a {
    color: #636893;
    text-decoration: underline;
}

.wpo-blog-single-section .entry-meta ul li a:hover {
    color: #3757f7;
}

.wpo-blog-single-section .entry-meta ul li i {
    position: relative;
    top: 2px;
    margin-right: 3px;
}

.wpo-blog-single-section .entry-meta ul li + li {
    margin-left: 20px;
    padding-left: 20px;
    position: relative;
}

.wpo-blog-single-section .entry-meta ul li + li:before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    content: "";
    background: #3757f7;
    border-radius: 50%;
}

@media (max-width: 440px) {
    .wpo-blog-single-section .entry-meta ul li + li:before {
        display: none;
    }
}

@media (max-width: 440px) {
    .wpo-blog-single-section .entry-meta ul li + li {
        margin-left: 0;
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .wpo-blog-single-section .entry-meta ul li {
        font-size: 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 440px) {
    .wpo-blog-single-section .entry-meta ul li {
        float: none;
        display: block;
        margin-bottom: 5px;
    }
}

.wpo-blog-single-section .entry-media img {
    width: 100%;
}

.wpo-blog-single-section .post h2 {
    font-size: 35px;
    font-size: 2.3333333333rem;
    margin: -0.22em 0 0.7em;
    line-height: 1.3em;
    font-family: "Futura PT Demi";
}

@media (max-width: 991px) {
    .wpo-blog-single-section .post h2 {
        font-size: 30px;
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .wpo-blog-single-section .post h2 {
        font-size: 25px;
        font-size: 1.6666666667rem;
    }
}

.wpo-blog-single-section .post p {
    margin-bottom: 1.5em;
}

.wpo-blog-single-section .post h3 {
    font-size: 24px;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.3em;
    margin: 1.8em 0 1em;
}

@media (max-width: 991px) {
    .wpo-blog-single-section .post h3 {
        font-size: 22px;
        font-size: 1.4666666667rem;
    }
}

@media (max-width: 767px) {
    .wpo-blog-single-section .post h3 {
        font-size: 20px;
        font-size: 1.3333333333rem;
    }
}

.wpo-blog-single-section .post blockquote {
    background-color: #f4f8fc;
    color: #233d62;
    font-size: 20px;
    line-height: 1.6em;
    padding: 65px;
    margin-top: 60px;
    margin-bottom: 40px;
    border: 0;
    text-align: center;
    position: relative;
    text-decoration: underline;
}

@media (max-width: 767px) {
    .wpo-blog-single-section .post blockquote {
        padding: 55px 25px;
    }
}

.wpo-blog-single-section .post blockquote:before {
    font-family: "Flaticon";
    content: "";
    font-size: 20px;
    font-size: 1.3333333333rem;
    color: rgba(255, 255, 255, 0.5);
    position: absolute;
    left: 50%;
    top: -30px;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    line-height: 60px;
    border: 2px solid #f4f8fc;
    background: #fff;
    color: #3757f7;
    border-radius: 50%;
}

.wpo-blog-single-section .post .gallery {
    overflow: hidden;
    margin: 40px -7.5px 0;
}

.wpo-blog-single-section .post .gallery > div {
    width: calc(50% - 15px);
    float: left;
    margin: 0 7.5px 15px;
}

.wpo-blog-single-section .post .gallery img {
    width: 100%;
}

.wpo-blog-single-section .tag-share, .wpo-blog-single-section .tag-share-s2 {
    border-bottom: 1px solid #e1e1e1;
    margin: 75px 0 0;
    padding-bottom: 30px;
    color: #232f4b;
}

@media (max-width: 767px) {
    .wpo-blog-single-section .tag-share, .wpo-blog-single-section .tag-share-s2 {
        margin-top: 40px;
    }
}

.wpo-blog-single-section .tag-share ul, .wpo-blog-single-section .tag-share-s2 ul {
    list-style: none;
    display: inline-block;
    overflow: hidden;
}

.wpo-blog-single-section .tag-share ul li, .wpo-blog-single-section .tag-share-s2 ul li {
    float: left;
}

@media (max-width: 767px) {
    .wpo-blog-single-section .tag-share ul li, .wpo-blog-single-section .tag-share-s2 ul li {
        margin: 2px;
    }
}

.wpo-blog-single-section .tag-share ul > li + li, .wpo-blog-single-section .tag-share-s2 ul > li + li {
    margin-left: 10px;
}

@media (max-width: 767px) {
    .wpo-blog-single-section .tag-share ul > li + li, .wpo-blog-single-section .tag-share-s2 ul > li + li {
        margin: 2px;
    }
}

.wpo-blog-single-section .tag-share .tag, .wpo-blog-single-section .tag-share-s2 .tag {
    display: flex;
    align-items: center;
}

.wpo-blog-single-section .tag-share .tag > span, .wpo-blog-single-section .tag-share-s2 .tag > span {
    font-family: "Futura PT";
    color: #232f4b;
    font-weight: 600;
    display: inline-block;
    padding-right: 15px;
    text-transform: uppercase;
}

.wpo-blog-single-section .tag-share .tag ul, .wpo-blog-single-section .tag-share-s2 .tag ul {
    list-style: none;
    position: relative;
}

.wpo-blog-single-section .tag-share .tag li, .wpo-blog-single-section .tag-share-s2 .tag li {
    position: relative;
}

.wpo-blog-single-section .tag-share .tag a, .wpo-blog-single-section .tag-share-s2 .tag a {
    font-size: 12px;
    font-size: 0.8rem;
    display: inline-block;
    padding: 5px 18px;
    color: #232f4b;
    background: #ecf4fb;
    border-radius: 5px;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .wpo-blog-single-section .tag-share .tag a, .wpo-blog-single-section .tag-share-s2 .tag a {
        font-size: 13px;
        font-size: 0.8666666667rem;
    }
}

.wpo-blog-single-section .tag-share .tag a:hover, .wpo-blog-single-section .tag-share-s2 .tag a:hover {
    color: #3757f7;
}

.wpo-blog-single-section .tag-share-s2 {
    margin: 0;
    margin-top: 30px;
    border-bottom: 0;
}

.wpo-blog-single-section .tag-share-s2 .tag a {
    padding: 0;
    font-size: 16px;
    font-size: 1.0666666667rem;
    text-transform: capitalize;
    background: none;
    text-decoration: underline;
    color: #6e6e6e;
}

.wpo-blog-single-section .author-box {
    margin: 35px 0 60px;
}

.wpo-blog-single-section .author-box .author-avatar {
    float: left;
}

@media (max-width: 767px) {
    .wpo-blog-single-section .author-box .author-avatar {
        float: none;
    }
}

.wpo-blog-single-section .author-box .author-avatar img {
    border-radius: 50%;
}

.wpo-blog-single-section .author-box .author-content {
    display: block;
    overflow: hidden;
    padding-left: 25px;
}

@media (max-width: 767px) {
    .wpo-blog-single-section .author-box .author-content {
        padding: 0;
        margin: 15px 0 0 0;
    }
}

.wpo-blog-single-section .author-box .author-content p {
    margin-bottom: 20px;
}

.wpo-blog-single-section .author-box .author-name {
    font-family: "Futura PT";
    font-size: 24px;
    font-size: 1.6rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
    color: #232f4b;
}

.wpo-blog-single-section .author-box .social-link {
    display: inline-block;
    list-style: none;
}

.wpo-blog-single-section .author-box .social-link li {
    float: left;
    margin-right: 12px;
}

.wpo-blog-single-section .author-box .social-link a {
    display: block;
    font-size: 13px;
    font-size: 0.8666666667rem;
    color: #232f4b;
}

.wpo-blog-single-section .author-box .social-link a:hover {
    color: #3757f7;
}

.wpo-blog-single-section .more-posts {
    overflow: hidden;
    border: 1px solid #d8e0f1;
    padding: 0 25px;
}

.wpo-blog-single-section .more-posts > div {
    width: 50%;
    float: left;
}

@media (max-width: 767px) {
    .wpo-blog-single-section .more-posts > div {
        width: 100%;
        float: none;
    }
}

.wpo-blog-single-section .more-posts > div > a {
    display: inline-block;
}

.wpo-blog-single-section .more-posts .previous-post,
.wpo-blog-single-section .more-posts .next-post {
    padding: 40px 0;
}

@media (max-width: 767px) {
    .wpo-blog-single-section .more-posts .previous-post,
    .wpo-blog-single-section .more-posts .next-post {
        padding: 25px 15px !important;
    }
}

.wpo-blog-single-section .more-posts .next-post {
    text-align: right;
    border-left: 1px solid #d8e0f1;
    padding-left: 15px;
    padding-right: 5px;
}

@media (max-width: 767px) {
    .wpo-blog-single-section .more-posts .next-post {
        border-left: 0;
        text-align: left;
        border-top: 1px solid #d8e0f1;
    }
}

.wpo-blog-single-section .more-posts .next-post .post-control-link {
    padding-right: 25px;
    position: relative;
}

@media (max-width: 767px) {
    .wpo-blog-single-section .more-posts .next-post .post-control-link {
        padding-right: 0;
    }
}

.wpo-blog-single-section .more-posts .next-post .post-control-link:before {
    font-family: "themify";
    content: "";
    position: absolute;
    right: 0;
    top: 0;
}

@media (max-width: 767px) {
    .wpo-blog-single-section .more-posts .next-post .post-control-link:before {
        display: none;
    }
}

.wpo-blog-single-section .more-posts .previous-post {
    padding-right: 15px;
    padding-left: 5px;
}

.wpo-blog-single-section .more-posts .previous-post .post-control-link {
    padding-left: 25px;
    position: relative;
}

@media (max-width: 767px) {
    .wpo-blog-single-section .more-posts .previous-post .post-control-link {
        padding-left: 0;
    }
}

.wpo-blog-single-section .more-posts .previous-post .post-control-link:before {
    font-family: "themify";
    content: "";
    position: absolute;
    left: 0;
    top: 0;
}

@media (max-width: 767px) {
    .wpo-blog-single-section .more-posts .previous-post .post-control-link:before {
        display: none;
    }
}

.wpo-blog-single-section .more-posts .previous-post > a > span,
.wpo-blog-single-section .more-posts .next-post > a > span {
    display: block;
}

.wpo-blog-single-section .more-posts .post-control-link {
    font-size: 14px;
    font-size: 0.9333333333rem;
    color: #6e6e6e;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
}

.wpo-blog-single-section .more-posts .post-name {
    font-family: "Futura PT";
    font-size: 18px;
    font-size: 1.2rem;
    color: #232f4b;
    margin: 0.7em 0 0;
}

@media (max-width: 991px) {
    .wpo-blog-single-section .more-posts .post-name {
        font-size: 18px;
        font-size: 1.2rem;
    }
}

.wpo-blog-single-section .more-posts a:hover .post-control-link {
    color: #3757f7;
}

.wpo-blog-single-section .comments-area {
    margin-top: 70px;
}

.wpo-blog-single-section .comments-area li > div {
    border-bottom: 1px solid #e4effb;
    padding: 35px;
}

@media (max-width: 991px) {
    .wpo-blog-single-section .comments-area li > div {
        padding: 35px 25px;
    }
}

.wpo-blog-single-section .comments-area ol {
    list-style-type: none;
    padding-left: 0;
}

.wpo-blog-single-section .comments-area ol ul {
    padding-left: 30px;
    list-style-type: none;
}

.wpo-blog-single-section .comments-area ol > li:last-child div {
    border-bottom: 0;
}

.wpo-blog-single-section .comments-area .comments-title {
    font-size: 22px;
    font-size: 1.4666666667rem;
    font-weight: 500;
    margin: 0 0 1em;
    text-transform: uppercase;
    letter-spacing: 3px;
}

@media (max-width: 991px) {
    .wpo-blog-single-section .comments-area .comments-title {
        font-size: 20px;
        font-size: 1.3333333333rem;
    }
}

.wpo-blog-single-section .comments-area li > div {
    position: relative;
}

.wpo-blog-single-section .comments-area .comment-theme {
    position: absolute;
    left: 35px;
}

@media (max-width: 767px) {
    .wpo-blog-single-section .comments-area .comment-theme {
        position: static;
    }
}

.wpo-blog-single-section .comments-area .comment-theme img {
    border-radius: 50%;
}

.wpo-blog-single-section .comments-area .comment-main-area {
    padding-left: 100px;
}

@media (max-width: 767px) {
    .wpo-blog-single-section .comments-area .comment-main-area {
        padding-left: 0;
        margin-top: 25px;
    }
}

.wpo-blog-single-section .comments-area .comment-main-area p {
    margin-bottom: 20px;
}

.wpo-blog-single-section .comments-area .comments-meta h4 {
    font-family: "Futura PT";
    font-size: 18px;
    font-size: 1.2rem;
    color: #232f4b;
    font-weight: bold;
    margin: 0 0 1em;
}

.wpo-blog-single-section .comments-area .comments-meta h4 span {
    font-size: 15px;
    font-size: 1rem;
    color: #6e6e6e;
    font-weight: normal;
    text-transform: none;
    display: inline-block;
    padding-left: 5px;
    font-family: "Nunito Sans", sans-serif;
}

@media (max-width: 767px) {
    .wpo-blog-single-section .comments-area .comments-meta h4 span {
        padding-left: 0;
    }
}

.wpo-blog-single-section .comments-area .comment-reply-link {
    font-family: "Futura PT";
    font-size: 14px;
    font-size: 0.9333333333rem;
    font-weight: 600;
    color: #232f4b;
    text-align: center;
    border-radius: 50px;
    display: inline-block;
    font-family: "Nunito Sans", sans-serif;
    text-decoration: underline;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wpo-blog-single-section .comments-area .comment-reply-link:hover {
    color: #3757f7;
}

.wpo-blog-single-section .comment-respond {
    margin-top: 70px;
}

.wpo-blog-single-section .comment-respond .comment-reply-title {
    font-size: 22px;
    font-size: 1.4666666667rem;
    margin: 0 0 1.5em;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 991px) {
    .wpo-blog-single-section .comment-respond .comment-reply-title {
        font-size: 20px;
        font-size: 1.3333333333rem;
    }
}

.wpo-blog-single-section .comment-respond form input,
.wpo-blog-single-section .comment-respond form textarea {
    background-color: #fff;
    width: 100%;
    height: 55px;
    border: 1px solid #a4adbe;
    padding: 6px 15px;
    margin-bottom: 15px;
    outline: 0;
    border-radius: 30px;
    box-shadow: none;
    transition: all 0.3s;
}

.wpo-blog-single-section .comment-respond form input:focus,
.wpo-blog-single-section .comment-respond form textarea:focus {
    box-shadow: none;
    border-color: #3757f7;
}

@media (max-width: 991px) {
    .wpo-blog-single-section .comment-respond form input,
    .wpo-blog-single-section .comment-respond form textarea {
        height: 40px;
    }
}

.wpo-blog-single-section .comment-respond form textarea {
    height: 220px;
    padding: 15px;
}

@media (max-width: 991px) {
    .wpo-blog-single-section .comment-respond form textarea {
        height: 150px;
    }
}

.wpo-blog-single-section .comment-respond .form-inputs {
    overflow: hidden;
}

.wpo-blog-single-section .comment-respond .form-inputs > input:nth-child(1) {
    width: 49%;
    float: left;
}

@media (max-width: 767px) {
    .wpo-blog-single-section .comment-respond .form-inputs > input:nth-child(1) {
        width: 100%;
        float: none;
    }
}

.wpo-blog-single-section .comment-respond .form-inputs > input:nth-child(2) {
    width: 49%;
    float: right;
}

@media (max-width: 767px) {
    .wpo-blog-single-section .comment-respond .form-inputs > input:nth-child(2) {
        width: 100%;
        float: none;
    }
}

.wpo-blog-single-section .comment-respond .form-submit input {
    font-family: "Futura PT";
    max-width: 180px;
    background-color: #1e2845;
    color: #fff;
    margin-bottom: 0;
    border: 0;
    outline: 0;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 2px;
    border-radius: 30px;
}

.wpo-blog-single-section .comment-respond .form-submit input:hover {
    background-color: #232f4b;
}

@media screen and (min-width: 1200px) {
    .wpo-blog-single-left-sidebar-section .blog-sidebar {
        padding-right: 45px;
        padding-left: 0;
    }
}

/*--------------------------------------------------------------
12. wpo-contact-pg-section
--------------------------------------------------------------*/
.wpo-contact-pg-section {
    padding-bottom: 0px;
}

.wpo-contact-pg-section .wpo-contact-title {
    max-width: 440px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 50px;
}

@media (max-width: 767px) {
    .wpo-contact-pg-section .wpo-contact-title {
        margin-bottom: 30px;
    }
}

.wpo-contact-pg-section .wpo-contact-title h2 {
    font-size: 35px;
    font-size: 2.3333333333rem;
    font-weight: 600;
    margin-bottom: 20px;
}

@media (max-width: 575px) {
    .wpo-contact-pg-section .wpo-contact-title h2 {
        font-size: 25px;
        font-size: 1.6666666667rem;
    }
}

.wpo-contact-pg-section form input,
.wpo-contact-pg-section form select,
.wpo-contact-pg-section form textarea {
    background: #f4f6fa;
    width: 100%;
    height: 45px;
    border: 1px solid transparent;
    border-radius: 30px;
    box-shadow: none !important;
    padding-left: 25px;
}

@media (max-width: 991px) {
    .wpo-contact-pg-section form input,
    .wpo-contact-pg-section form select,
    .wpo-contact-pg-section form textarea {
        height: 45px;
    }
}

.wpo-contact-pg-section form input:focus,
.wpo-contact-pg-section form select:focus,
.wpo-contact-pg-section form textarea:focus {
    border-color: #3757f7;
    background: #f4f6fa;
}

.wpo-contact-pg-section form textarea {
    height: 180px;
    padding-top: 15px;
}

.wpo-contact-pg-section form {
    margin: 0 -15px;
    overflow: hidden;
}

.wpo-contact-pg-section form ::-webkit-input-placeholder {
    font-size: 15px;
    font-style: normal;
    color: #9d9c9c;
}

.wpo-contact-pg-section form :-moz-placeholder {
    font-size: 15px;
    font-style: normal;
    color: #9d9c9c;
}

.wpo-contact-pg-section form ::-moz-placeholder {
    font-size: 15px;
    font-style: normal;
    color: #9d9c9c;
}

.wpo-contact-pg-section form :-ms-input-placeholder {
    font-size: 15px;
    font-style: normal;
    color: #9d9c9c;
}

.wpo-contact-pg-section form select {
    display: inline-block;
    color: #a9a9a9;
    cursor: pointer;
    opacity: 1;
    padding: 6px 25px;
    font-size: 15px;
    font-size: 1rem;
    appearance: auto;
}

.wpo-contact-pg-section form .submit-area {
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
    margin-left: 0;
}

@media (max-width: 767px) {
    .wpo-contact-pg-section form .submit-area {
        margin-bottom: 0;
    }
}

.wpo-contact-pg-section form .submit-area .theme-btn, .wpo-contact-pg-section form .submit-area .theme-btn-s3, .wpo-contact-pg-section form .submit-area .theme-btn-s4, .wpo-contact-pg-section form .submit-area .view-cart-btn {
    border-radius: 30px;
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
}

.wpo-contact-pg-section form .submit-area .theme-btn:after, .wpo-contact-pg-section form .submit-area .theme-btn-s3:after, .wpo-contact-pg-section form .submit-area .theme-btn-s4:after, .wpo-contact-pg-section form .submit-area .view-cart-btn:after {
    border-radius: 30px;
}

.wpo-contact-pg-section form > div {
    width: calc(50% - 30px);
    float: left;
    margin: 0 15px 25px;
}

@media (max-width: 600px) {
    .wpo-contact-pg-section form > div {
        width: calc(100% - 25px);
        float: none;
    }
}

.wpo-contact-pg-section form .fullwidth {
    width: calc(100% - 25px);
    float: none;
    clear: both;
}

.wpo-contact-pg-section .office-info {
    padding-bottom: 100px;
}

@media (max-width: 767px) {
    .wpo-contact-pg-section .office-info {
        padding-bottom: 60px;
    }
}

@media (max-width: 1200px) {
    .wpo-contact-pg-section .office-info .col .office-info-item {
        margin-bottom: 30px;

    }

    .biaozhun1 .f1 {
        padding-top: 30px;
    }
}

@media (max-width: 1200px) {
    .wpo-contact-pg-section .office-info .col:last-child .office-info-item {
        margin-bottom: 0px;
    }
}

.wpo-contact-pg-section .office-info .office-info-item {
    text-align: center;
    box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.1);
    padding: 40px;
}

.wpo-contact-pg-section .office-info .office-info-item .office-info-icon {
    width: 85px;
    height: 85px;
    background: #f5f5f5;
    line-height: 85px;
    text-align: center;
    margin: 0 auto;
    border-radius: 50%;
}

.wpo-contact-pg-section .office-info .office-info-item .office-info-icon svg {
    width: 50px;
    line-height: 50px;
    height: 50px;
}

.wpo-contact-pg-section .office-info .office-info-item .office-info-icon img {
    width: 50px;
    line-height: 50px;
    height: 50px;
}

.wpo-contact-pg-section .office-info .office-info-item .office-info-text h2 {
    font-size: 30px;
    font-weight: 500;
    margin: 20px 0;
}

.wpo-contact-pg-section .office-info .office-info-item .office-info-text p {
    margin-bottom: 0;
}

.wpo-contact-pg-section .wpo-contact-form-area {
    padding: 50px;
    background: #fff;
    box-shadow: 0px 1px 15px 0px rgba(62, 65, 159, 0.1);
    padding-bottom: 0;
    margin-bottom: -125px;
    position: relative;
    z-index: 99;
}

@media (max-width: 767px) {
    .wpo-contact-pg-section .wpo-contact-form-area {
        padding: 30px;
        padding-top: 50px;
    }
}

.wpo-contact-map-section .wpo-contact-map {
    height: 550px;
}

.wpo-contact-map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    outline: 0;
}

.wpo-contact-map-section h2.hidden {
    display: none;
}

/*--------------------------------------------------------------
13 error-404-section
--------------------------------------------------------------*/
.error-404-section {
    text-align: center;
}

.error-404-section .error-message {
    margin-top: 70px;
    padding: 0 200px;
}

@media (max-width: 991px) {
    .error-404-section .error-message {
        margin-top: 50px;
        padding: 0 100px;
    }
}

@media (max-width: 767px) {
    .error-404-section .error-message {
        padding: 0;
    }
}

.error-404-section .error-message h3 {
    font-size: 30px;
    font-size: 2rem;
    margin: 0 0 0.8em;
}

.error-404-section .error-message p {
    margin-bottom: 1.8em;
}


/*--------------------------------------*/
.zy_c {
    background: #fafafa;
    overflow: hidden;
}

.price {
    margin: 20px auto;
    font-size: 20px;
    font-weight: bold;
    border: solid 1px blue;
}

/*.wpo-features-text:hover{
    box-shadow: #e6452c;
}*/
.yjbt {
    font-weight: bold;
    color: #33a1d4;
    font-size: 36px;
}

.company_t2 {
    font-size: 18px;
    text-align: center;
    height: 40px;
    line-height: 40px;
    color: #5b5b5b;
}

.biaozhun:first-child {
    margin: 0;
}

.biaozhun p {
    font-size: 24px;
    font-weight: bold;
    color: #474747;
    margin: 30px 0;
    text-align: center;
}

.biaozhun:nth-child(1) .box .nr {
    background: rgba(0, 112, 193, 0.8);
}

.biaozhun:nth-child(2) .box .nr {
    background: rgba(8, 175, 83, 0.8);
}

.biaozhun:nth-child(3) .box .nr {
    background: rgba(255, 144, 0, 0.8);
}

/*.biaozhun {
  width: 410px;
  text-align: center;
  float: left;
  margin-left: -84px;
}*/

.jztc:nth-of-type(2) {
    margin: 44px 66px;
}

stie_jztc .box {
    background: #f8f8f8;
}

/*

stie_jztc .jztc:nth-of-type(2) .box {
    background: url(../../images/site/pc2.png) no-repeat 0 20px #f8f8f8;
}

stie_jztc .jztc:nth-of-type(3) .box {
    background: url(../../images/site/pc3.png) no-repeat 0 20px #f8f8f8;
}*/
.jztc {
    height: 520px;
    /*width:440px;*/
    line-height: 22px;
    color: #474747;
    transition: all .5s ease 0s;
    margin: 44px auto;
    position: relative;

}

.jztc .box {
    height: 500px;
    font-size: 15px;
    margin-bottom: 28px;
    padding-top: 50px;
    transition: 0.3s all;
    text-align: center;
    background-color: white;
    box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.3);
}

.jztc .box i {
    font-size: 50px;
}

.jztc .tit {
    color: #434343;
    font-weight: bold;
    transition: 0.3s all;
    margin-top: 0;
    font-size: 24px;
    line-height: 42px;
}

.jztc > p {
    color: #5f5f5f;
    font-size: 18px;
}

.jztc .riqi {
    font-size: 16px;
    width: 144px;
    height: 32px;
    line-height: 32px;
    /* text-align: center;*/
    background: #ffffff;
    border: 1px solid #e0e1e4;
    margin: 15px auto 0 auto;
    color: #5e5e5e;
}

.jztc .cont {
    height: 238px;
}

.jztc .cont p {
    line-height: 1.3em;
    padding: 10px 28px;
}

.jztc:hover .cont {
    opacity: 1;
}

.jztc .jztcprice {
    position: relative;
    bottom: 10%;
}

.f30 {
    font-size: 30px !important;
}

.jztc .tel {
    width: 210px;
    height: 46px;
    border: 1px solid #b9b9b9;
    display: block;
    transition: 0.3s all;
    margin: 0 auto;
    text-align: center;
    line-height: 46px;
    border-radius: 24px;
    position: relative;
    left: -35px;

}

.jztc:hover .tel {
    color: #FFF;
    background: #0058ac;
}

.jztc:hover .tit, .jztc:hover p {
    color: #FFF;
}

.jztc:hover .tit {
    margin-top: 0;
    font-size: 24px;
    line-height: 42px;
}

.jztc:hover .tit p {
    font-size: 16px;
}


.jztc:hover .box {
    -moz-box-shadow: 0px 0px 8px rgba(0, 0, 0, .47);
    -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, .47);
    box-shadow: 0px 0px 8px rgba(0, 0, 0, .47);
    color: #FFF;
}

.jztc .box:hover {
    background: #2c92f0;
}

/*.jztc:nth-of-type(2):hover .box {
    background: url(../../images/site/pc2.png) no-repeat -227px 20px #2c92f0;
}

.jztc:nth-of-type(3):hover .box {
    background: url(../../images/site/pc3.png) no-repeat -227px 20px #2c92f0;
}*/
.getprice {
    transition: 0.3s all;
    color: #e03e0e;
    font-size: 18px;
}

.getpricediv {
    padding: 0;

}

.getprice:hover {
    color: red;
}

/*<767*/
@media (min-width: 1200px) {
    .jztc .cont {
        height: 210px;
    }
}

@media (max-width: 767px) {
    .getpricediv {
        padding-right: 20%;
        padding-left: 20%;
    }

    .jztc {
        height: auto;
        width: 100%;
        line-height: 22px;
        color: #474747;
        transition: all .5s ease 0s;
        /*  margin: 44px auto;
          position: relative;*/

    }

    .jztc:nth-of-type(1):hover .box {
        background: none #2c92f0;
    }

    .jztc:nth-of-type(2):hover .box {
        background: none #2c92f0;
    }

    .jztc:nth-of-type(3):hover .box {
        background: none #2c92f0;
    }

    .jztc:nth-of-type(2) .box {
        background: none #f8f8f8;
    }

    .jztc:nth-of-type(3) .box {
        background: none #f8f8f8;
    }

    .jztc .cont {
        height: auto;
    }

    .jztc .cont p:last-child {
        padding-top: 0;
    }

    .jztc .cont p {
        line-height: 1.3em;
        padding: 10px;

    }

    .jztc .tit {
        color: #434343;
        font-weight: bold;
        transition: 0.3s all;
        margin-top: 0;
        font-size: 24px;
        line-height: 42px;
    }

    .jztc .box {
        width: 100%;
        height: auto;
        font-size: 15px;
        padding: 10px;
        transition: 0.3s all;
        text-align: center;
    }

    .jztc .tel {
        height: 46px;
        border: 1px solid #b9b9b9;
        display: block;
        transition: 0.3s all;
        margin: 0 auto;
        text-align: center;
        line-height: 46px;
        border-radius: 24px;
    }
}

@media (max-width: 767px) {
    .getprice {
        transition: 0.3s all;
        color: #e03e0e;
        font-size: 16px;
    }

    .wpo-section-title div, .duijie {
        display: none;
    }

    .biaozhun1 {
        background-color: #e6e6e6;
    }

    .biaozhun1 .f1 {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .biaozhun1 .f2 {
        padding-bottom: 30px;
    }

    .biaozhun1 .yjbt {
        font-weight: bold;
        color: #33a1d4;
        font-size: 18px;
        margin: 15px auto;
    }

    .biaozhun1 .company_t2 {
        font-size: 15px;
        text-align: center;
        height: 28px;
        line-height: 20px;
        color: #5b5b5b;
    }

    .biaozhun p {
        font-size: 20px;
        font-weight: bold;
        color: #474747;
        margin: 15px 0;
    }

    .biaozhun .box .nr {
        margin: 22px;
        width: 200px;
        height: 200px;
        color: #FFF;
        text-align: center;
        border-radius: 50%;
        font-size: 12px;
        line-height: 31px;
        padding-top: 26px;
    }

    .biaozhun .box {
        width: 250px;
        height: 250px;
        border: 1px solid #dadada;
        border-radius: 50%;
        margin: 0 auto;
    }

    .jztc .tel {
        height: 46px;
        border: 1px solid #b9b9b9;
        display: block;
        transition: 0.3s all;
        margin: 0 auto;
        text-align: center;
        line-height: 46px;
        border-radius: 24px;
    }

    .jztc {
        margin: 15px auto;
    }

    .jztc .box {
        margin-bottom: 5px;

    }
}

/*>768*/
@media (min-width: 768px) {

}

/*<1024*/
@media (max-width: 1024px) {
    .biaozhun1 .f1 {
        padding-top: 40px;
        padding-bottom: 30px;
    }

    .biaozhun1 .f2 {
        padding-bottom: 40px;
    }

    .yjbt {
        font-weight: bold;
        color: #33a1d4;
        font-size: 22px;
        margin: 15px auto;
    }

    .company_t2 {
        font-size: 20px;
        text-align: center;
        height: 28px;
        line-height: 20px;
        color: #5b5b5b;
    }

    .biaozhun p {
        font-size: 20px;
        font-weight: bold;
        color: #474747;
        margin: 25px 0;
    }

    .biaozhun .box .nr {
        margin: 24px;
        width: 230px;
        height: 230px;
        color: #FFF;
        text-align: center;
        border-radius: 50%;
        font-size: 14px;
        line-height: 20px;
        padding-top: 80px;
    }

    .biaozhun .box {
        width: 280px;
        height: 280px;
        border: 1px solid #dadada;
        border-radius: 50%;
        margin: 0 auto;
    }

}

/*>1025*/
@media (min-width: 1025px) {
    .biaozhun1 {
        background-color: #ececec;
    }

    .biaozhun1 .f1 {
        padding-top: 50px;
        padding-bottom: 20px;
    }

    .biaozhun1 .f2 {
        padding-bottom: 50px;
    }

    .biaozhun .box .nr {
        margin: 22px;
        width: 360px;
        height: 360px;
        color: #FFF;
        text-align: center;
        border-radius: 50%;
        font-size: 20px;
        line-height: 36px;
        padding-top: 105px;
    }

    .biaozhun .box {
        width: 409px;
        height: 409px;
        border: 1px solid #dadada;
        border-radius: 50%;
    }
}

.pc_lc {
    background: #0058ac;
    padding: 50px 0;
}

.yjbt {
    font-weight: bold;
    color: #33a1d4;
    font-size: 36px;
}

.jz_bj .yjbt, .pc_lc .yjbt, .pc_lc .company_t2 {
    color: #FFF;
}

.company_t2 {
    font-size: 18px;
    text-align: center;
    height: 40px;
    line-height: 40px;
    color: white;
}

.lc_img {
    height: 360px;
    width: 100%;
    background: url(../../images/site/pc_lc.png) no-repeat center center;
}

.pc_lc .more {
    background: #3db1ea;
    width: 280px;
    color: #FFF;
    height: 46px;
    transition: 0.3s all;
    margin: 0 auto;
    text-align: center;
    line-height: 46px;
    border-radius: 24px;
    display: block;
    font-size: 16px;
}

/*常见问题*/
.cjwt .yjbt {
    font-weight: bold;
    color: black;
    font-size: 36px;
    padding: 15px;
}

.card-header {
    height: 50px;
    line-height: 50px;
    padding: 0;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, .03);
    border-bottom: 1px solid rgba(0, 0, 0, .125);
}

.card-header div {
    padding-left: 20px
}

.collapsed:hover {
    color: white;
    background-color: #269df4;
}

.collapsed {
    padding: 0 15px;
}

.card-body, .collapsed {
    text-align: left;
}

.collapsed::before {
    content: "问：";
}

.collapsed::after {
    content: "？";
}

.card-body::before {
    content: "答：";
}

.card-body::after {
    content: "。";
}

.cjwt {
    padding: 30px 0;
}

/*微官网*/
.wgw .container {
    padding: 30px 0;
}

.bg1 {
    background-color: #fafafa;
}

.wgw .container .wpo-section-title h2 {
    color: #90bf46;
}

.wgw .container .content {
    /*   width: 550px;*/
    height: auto;
    padding: 0 45px;
    font-size: 18px;
    line-height: 45px;
    text-align: left;
    word-wrap: normal;
    /* line-height: inherit;*/
}

.wgw .wpo-section-title {
    padding-bottom: 40px;
}

.wgw .wpo-section-title span {
    font-size: 18px;
    height: 40px;
    line-height: 40px;
    color: #5b5b5b;
}

.wgw .container .content1 {
    /*width: 550px;*/
    height: auto;
    padding: 0 45px;
    font-size: 18px;
    line-height: 43px;
    text-align: left;
    word-wrap: normal;
    /* line-height: inherit;*/
}

/*百度云*/
.bdy {
    padding: 40px 0;
    background: #fafafa;
}

.bdy-title h2 {
    color: #1089e9;
    padding-bottom: 40px;
    font-weight: bold;
}

.bdy .content {
    height: auto;
    padding: 30px 15px;
    font-size: 16px;
    line-height: 45px;
    text-align: left;
    word-wrap: normal;

}

.bdy .content h3 {
    font-weight: normal;
    font-size: 28px;
    line-height: 20px;
}

/*产品优势*/
@media (max-width: 767px) {
    .cpys {
        background-color: #fafafa;
        padding: 40px 0;
    }

    .cpys h4 {
        color: #5b5b5b;
        font-size: 18px;
        font-weight: normal;
        line-height: 34px;
        text-align: left;
    }

    .cpys .content {
        text-align: left;
        color: #999999;
        line-height: 25px;
        font-size: 16px;
        padding: 0 15px 20px 15px;
    }

    .cpys .container span {
        font-size: 50px;
    }

    .cpys .container .pic {
        padding: 24px 0;
        color: #0a8cc8;

    }

    .content .contentleft {
        text-align: left;
    }
}

@media (min-width: 768px) {
    .cpys {
        background-color: #fafafa;
        padding: 40px 0;
    }

    .cpys h4 {
        color: #5b5b5b;
        font-size: 18px;
        font-weight: normal;
        line-height: 34px;
        text-align: left;
    }

    .cpys .content {
        text-align: left;
        color: #999999;
        line-height: 20px;
        font-size: 16px;
        padding: 0 30px 20px 30px;
    }

    .cpys .content .contentleft {
        padding: 0 0 0 30px;
    }

    .cpys .container span {
        font-size: 100px;
        color: #0a8cc8;
    }

    .cpys .container .pic {
        padding: 0;

    }
}

/*产品功能*/
@media (max-width: 767px) {
    .cpgn {
        background-color: #fafafa;
        padding: 40px 0;
    }

    .cpgn h4 {
        color: #5b5b5b;
        font-size: 18px;
        font-weight: normal;
        line-height: 34px;
        text-align: left;
    }

    .cpgn .content {
        text-align: left;
        color: #999999;
        line-height: 25px;
        font-size: 16px;
        padding: 0 15px 20px 15px;
    }

    .cpgn .container span {
        font-size: 50px;
    }

    .cpgn .container .pic {
        padding: 24px 0;

    }

    .content .contentleft {
        text-align: left;
    }
}

@media (min-width: 768px) {
    .cpgn {
        background-color: #fafafa;
        padding: 40px 0;
    }

    .cpgn h4 {
        color: #5b5b5b;
        font-size: 18px;
        font-weight: normal;
        line-height: 34px;
        text-align: left;
    }

    .cpgn .content {
        text-align: left;
        color: #999999;
        line-height: 20px;
        font-size: 16px;
        padding: 0 32px 20px 45px;
    }

    .cpgn .content .contentleft {
        padding: 0 0 0 30px;
    }

    .cpgn .container span {
        font-size: 100px;
    }

    .cpgn .container .pic {
        padding: 0;

    }
}

/*域名*/
.ym {

    padding: 30px 0;
}

.ym .ym-info {
    text-align: left;
}

.ym .ym-info h4 {
    font-weight: bold;
    font-size: 18px;
    margin-top: 30px;
}

.gmjy {
    background-color: #fafafa;
    padding: 30px 0;
}

.gmjy .ym-title h2 {
    color: #5b5b5b;
    font-weight: normal;
    padding: 30px 0;
}

.gmjy .cpgn {
    border: 1px #dfdfdf solid;
    background: #fff;
    padding: 30px;
}

.gmjy .tcxxx {
    text-align: left;
    padding: 0 15px;
}

/*邮局*/
.qyyj {
    background: #fafafa;
    padding: 30px 0;
}

.qyyj-info h2 {
    /*color: #98c722;*/
    color: #2fa0f3;
    font-weight: bold;
    margin: 30px 0;
}

.qyyj-whyuse {
    line-height: 30px;
}

.qyyj-whyuse span {
    font-size: 50px;
    color: dodgerblue;
}

/*domain*/
.domaindiv {
    padding: 30px 0;
}

.domaindiv .domainDetails {
    padding: 15px 20px;
    border: 1px solid #ccc;
    margin-bottom: 30px;
}

.domaindiv .searchDiv {
    padding: 20px 0 10px 0;
}

.domaindiv .searchDiv .Domain-input {
    overflow: hidden;
    resize: none;
    height: 100%;
    width: 100%;
    padding: 5px 10px;
    border: 1px solid #bbb;
    text-align: left;
}

.domaindiv .searchDiv .Domain-input:hover {

    border: 1px solid dodgerblue;
}

.domaindiv .searchDiv .Domain-input:focus {
    outline: none !important;
    border: 1px solid dodgerblue;
    box-shadow: 0 0 10px #719ECE;
}

.domaindiv .domainsearch-btn {
    width: 99%;
    padding: 5px 0;
    color: white;
    font-size: 30px;
    background-color: orange;
}

.domaindiv .domainsearch-btn:hover {
    background-color: #0d6efd;
}

.domaindiv .nav-link {
    display: block;
    padding: .5rem 1rem;
    height: 100%;
    color: #495057;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.domaindiv .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: white;
    background-color: #0d6efd;
    border-color: #dee2e6 #dee2e6 #fff;
}

.domaindiv .domainDetails ul {
    list-style-type: none;
    margin: -10px;
    padding: 0;
}

.domaindiv .domainDetails ul li {
    float: left;
    font-size: 20px;
    width: 149px;
}

.domaindiv .domainDetails ul li img {
    vertical-align: baseline;
}

.domaindiv .domainDetails ul li input[type=checkbox] {
    width: 16px;
    height: 16px;
    border: 1px solid #c9c9c9;
    border-radius: 2px;
    margin-top: 5px;
    margin-right: 5px;
    position: relative;
    left: 0px;
    top: 2px;
}

.domaindiv .check-setbox {
    margin: 0;
    padding: 15px 0 0 0;
    text-align: left;

}

.check-setbox span {
    margin-right: 20px;
}

.check-setbox .setckeck {
    position: relative;
    left: 0px;
    top: -2px;
}

.check-setbox input[type=checkbox] {
    width: 16px;
    height: 16px;
    margin-right: 5px;

}

.domaindiv .domainDetails hr:not([size]) {
    height: 1px;
    color: white;
}

.domaindiv .domainsearch .a_link {
    color: #0067da;
    display: none;
    position: relative;
    right: 0px;
    top: 8px;
    cursor: pointer;
}

.domaindiv .domainsearch .a_link #more_span {
    /* text-align: right;*/
}

.domaindiv .search_results {
    display: none;
    font-size: 16px;
}

.domaindiv .search_results .resultSet input {
    width: 18px;
    height: 18px;
    position: relative;
    top: 3px;
    margin-right: 5px;
}

.domaindiv .search_results .resultSet {
    padding: 15px 15px;
}

.domaindiv .search_results .resultSet .registAll-btn {
    padding: 0 10px;
    margin: 10px 15px;
    color: white;
    font-size: 16px;
    background-color: #3b77ff;
    position: relative;
    bottom: 2px;
    margin-right: 5px;
}

.domaindiv .search_results .resultSet .registAll-btn:hover {
    background-color: orange;
}

.domaindiv .search_results p {
    margin: 0;
}

.domaindiv .results_list {
    border: solid 1px #dfdfdf;
}

.domaindiv .results_list ul {
    list-style-type: none;
    padding-bottom: 20px;
}

.domaindiv .results_list ul li {
    padding: 15px 15px;
    border-bottom: 1px dashed #dfdfdf;
}

.domaindiv .results_list ul input {
    width: 16px;
    height: 16px;
    position: relative;
    left: 0px;
    top: 2px;
}

.regist-btn {
    color: white;
    background-color: #3b77ff;
    border: solid 0px;
}

.regist-btn:hover {
    background-color: orange;
}

.list-r {
    text-align: right;
    color: #9c9c9c;
}

.list-m {
    text-align: center;
}

.list-mr {
    margin-right: -30px;
}

@media (max-width: 767px) {
    .domaindiv {
        padding: 0 0 20px 0;
    }

    .domaindiv .nav-item {
        width: 25%;
        padding-top: 5px;
    }

    .domaindiv .searchDiv {
        padding: 10px 0 10px 0;
    }

    .searchDiv .domainsearch {
        padding: 8px 15px 10px 15px
    }

    .searchDiv .input-wrapper {
        padding: 0 15px;
    }

    .searchDiv .domainsearch-btn {
        padding: 3px;
        font-size: 25px;
        background-color: darkorange;
        width: 100%;
    }

    .check-setbox {
        margin: 0;
        padding: 5px 0;
        text-align: left;
    }

    .domaindiv .domainDetails {
        padding: 15px 20px;
    }

    .domaindiv .domainsearch .a_link {
        top: 8px;
        display: none;
    }

    .domaindiv .domainDetails ul li {
        width: 125px;
    }

    .list-l, .list-m, .list-r {
        padding: 0;
    }

    .domaindiv .check-setbox {
        margin: 0;
        padding: 5px 0 0 0;
        text-align: left;
    }
}

/*云虚拟主机*/
.inner_module2 {
    background: #f2f2f2;
}

.host_tab {
    margin: 0 auto 0;
    position: relative;
    z-index: 2;
}

.host_tab_n {
    height: 40px;
    line-height: 40px;
    color: #333;
    padding: 0;
}

.host_tab_n ul {
    text-align: center;
}

.host_tab_n li {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    cursor: pointer;
    text-align: center;
    font-size: 20px;
    line-height: 60px;
    width: 360px;
    position: relative;
    background: #fff;
}

.host_tab_n li i {
    position: absolute;
    bottom: -20px;
    right: 165px;
    height: 0;
    width: 0;
    overflow: hidden;
    font-size: 0;
    border-color: #f2f2f2 transparent transparent transparent;
    border-style: solid;
    border-width: 10px;
    display: none;
}

.host_tab_n li b {
    color: #222;
    display: block;
    font-weight: normal;
    font-size: 20px;
}

.host_tab_n li b.bor_no {
    border-right: none;
}

.host_tab_n li:hover b {
    color: #0078ff;
}

.host_tab_n li.Active {
    text-decoration: none;
    margin: 0;
    background: #269df4;
}

.host_tab_n li.Active b {
    color: #fff;
    font-weight: normal;
}

.host_tab_n li.Active i {
    border-color: #269df4 transparent transparent transparent;
    display: block;
}

.host_tab_c {
    padding: 20px 0 0 0;
}

.host_tab_c dl.title {
    padding: 50px 0 30px 0;
    text-align: center;
    margin: 0 auto;
}

.host_tab_c dl.title dt {
    font-size: 32px;
    color: #222;
    line-height: 52px;
}

.host_tab_c dl.title dd {
    font-size: 16px;
    color: #555;
    line-height: 22px;
    padding: 5px 0;
}

#sixx2 {
    margin-left: -5px;
}

.host_tab_c .types_list.m_b {
    margin: 0 auto 50px;
}

.host_tab_c .types_list {
    text-align: center;
    margin: 10px 0;
}

.host_tab_c .host_types_details {
    border: solid #d8d8d8 1px;
    padding: 10px 0;
}

.host_tab_c .types_list li {
    list-style: none;
    padding: 10px;
    background: #fff;
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

.host_tab_c .types_list li h2 {
    font-size: 20px;
    color: #000;
    line-height: 32px;
}

.host_tab_c .types_list li h5 {
    font-size: 14px;
    color: #777;
    line-height: 22px;
}

.host_tab_c .types_list li table {
    border-collapse: collapse;
    table-layout: fixed;
    margin: 30px auto 20px;
    height: 160px;
}

.host_tab_c .types_list li table tr td {
    border-bottom: 1px dashed #dfdfdf;
    line-height: 30px;
    color: #888;
    text-align: left;
}

.host_tab_c .types_list li table tr td.text_center {
    text-align: center;
}

.host_tab_c .types_list li .price_p {
    text-align: center;
    font-size: 16px;
    color: #888;
}

.host_tab_c .types_list li .price_p b {
    font-size: 26px;
    font-weight: bold;
    color: #ff6803;
}

.host_tab_c .types_list li .btn_buy {
    background: #269df4;
    margin: 10px 0;
    line-height: 40px;
    font-size: 16px;
    padding: 0 10px;
    width: 140px;
    height: 40px;
}

.host_tab_c .types_list li .btn_buy:hover {
    background: #2d86da;
}

.types_list a {
    color: white;
    width: 140px;
    height: 40px;
}

.virHost_part {
    background: #fff;
}

.virHost_part .virHost_menu.menu_head_fixed {
    position: fixed;
    z-index: 99;
    top: 0;
}

.virHost_part .virHost_menu {
    background: #f2f2f2;
    border-bottom: 1px solid #d8d8d8;
    height: 45px;
    width: 100%;
}

.virHost_part .virHost_menu ul {
    margin: 0 auto;
    width: 1190px;
    text-align: center;
    border-left: 1px solid #d8d8d8;
    overflow: hidden;
}

.virHost_part .virHost_menu ul li {
    float: left;
    list-style: none;
    line-height: 44px;
    height: 44px;
    color: #888;
    border-right: 1px solid #d8d8d8;
    border-top: 1px solid #d8d8d8;
    width: 296px;
    cursor: pointer;
    font-size: 16px;
    background: #fff;
    border-bottom: 1px solid #d8d8d8;
}

.virHost_part .virHost_menu ul li b {
    position: absolute;
    bottom: -1px;
    z-index: 10;
    right: 0;
    width: 100%;
    height: 10px;
    display: block;
    background: #fff;
}

.virHost_part .virHost_menu ul li a {
    display: block;
    font-size: 16px;
    color: #888;
}

.virHost_part .virHost_menu ul li:hover a {
    color: #0187ee;
}

.virHost_part .virHost_menu ul li.hover {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    vertical-align: top;
    color: #222;
    border-right: 1px solid #d8d8d8;
    border-top: 3px solid #269df4;
    line-height: 40px;
    height: 42px;
}

.virHost_part .virHost_menu ul li.hover {
    position: relative;
}

.virHost_part .virHost_menu ul li.hover a {
    color: #222;
}


.host_tab_c .virHost_part .product_overview dl.title {
    padding: 20px 0 0 0;
}

.virHost_part .product_overview.p_t_0 {
    padding-top: 0;
}

.virHost_part .product_overview {
    padding-top: 55px;
}

.virHost_part .product_overview > div {
    /*width: 1190px;*/
    margin: 0 auto 20px;
    text-align: center;
    padding: 0 0 40px 0;
    border-bottom: 1px dashed #cccccc;
}

.virHost_part .product_overview div div {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    vertical-align: top;
    text-align: center;
    margin: 40px 0;
    width: 33%;
}

.virHost_part .product_overview div div i.icon1 {
    width: 120px;
    height: 120px;
    display: block;
    background: url(../../images/host/host_icon1.gif) no-repeat;
    margin: 0 auto;
}

.virHost_part .product_overview div div i.icon2 {
    width: 120px;
    height: 120px;
    display: block;
    background: url(../../images/host/host_icon2.gif) no-repeat;
    margin: 0 auto;
}

.virHost_part .product_overview div div i.icon3 {
    width: 120px;
    height: 120px;
    display: block;
    background: url(../../images/host/host_icon3.gif) no-repeat;
    margin: 0 auto;
}

.virHost_part .product_overview div div i.icon4 {
    width: 120px;
    height: 120px;
    display: block;
    background: url(../../images/host/host_icon4.gif) no-repeat;
    margin: 0 auto;
}

.virHost_part .product_overview div div i.icon5 {
    width: 120px;
    height: 120px;
    display: block;
    background: url(../../images/host/host_icon5.gif) no-repeat;
    margin: 0 auto;
}

.virHost_part .product_overview div div i.icon6 {
    width: 120px;
    height: 120px;
    display: block;
    background: url(../../images/host/host_icon6.gif) no-repeat;
    margin: 0 auto;
}

.virHost_part .product_overview div div p {
    font-size: 16px;
    line-height: 26px;
    color: #444;
}

.virHost_part .product_overview ul.server_cptxt {
    padding: 0;
    margin: 0 auto;
}

.virHost_part .product_overview ul.server_cptxt li {
    margin: 40px 30px;
    width: 330px;
}

.virHost_part .product_overview ul.server_cptxt li p.p1 {
    font-size: 20px;
    color: #000;
    line-height: 32px;
}

.virHost_part .product_overview ul.server_cptxt li p.p2 {
    font-size: 14px;
    color: #777;
    line-height: 22px;
    text-align: left;
}

.virHost_part .product_overview.servericon i.icon1 {
    background: url(../../images/server/server_icon1.gif) no-repeat;
}

.virHost_part .product_overview.servericon i.icon2 {
    background: url(../../images/server/server_icon2.gif) no-repeat;
}

.virHost_part .product_overview.servericon i.icon3 {
    background: url(../../images/server/server_icon3.gif) no-repeat;
}

.virHost_part .product_overview.servericon i.icon4 {
    background: url(../../images/server/server_icon4.gif) no-repeat;
}

.virHost_part .product_overview.servericon i.icon5 {
    background: url(../../images/host/host_icon5.gif) no-repeat;
}

.virHost_part .product_overview.servericon i.icon6 {
    background: url(../../images/host/host_icon6.gif) no-repeat;
}

.host_tab_c .virHost_part .product_parameters dl.title {
    padding: 30px 0 10px 0;
}

.virHost_part .product_parameters .part {
    margin: 0 auto;
    width: 1190px;
    padding-bottom: 10px;
}

.virHost_part .product_parameters .part.show .tit_click i {
    background: url(../../images/host/icon.png) no-repeat 0 -329px;
}

.virHost_part .product_parameters .part .tit_click {
    display: block;
    font-size: 18px;
    line-height: 42px;
    color: #0187ee;
    cursor: pointer;
}

.virHost_part .product_parameters .part .tit_click:hover {
    background: #f6f6f6;
}

.virHost_part .product_parameters .part .tit_click i {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    background: url(../../images/host/icon.png) no-repeat -20px -329px;
    margin-right: 10px;
}

.virHost_part .product_parameters .part .detailed {
    display: none;
}

.virHost_part .product_parameters .part.show .detailed {
    display: block;
}

/*.virHost_part .product_parameters .part .detailed .tr label.tr_left {
    line-height: 10px;
}*/

.virHost_part .product_parameters .part .detailed .btn {
    width: 100px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: #fff;
    border: 1px solid #0b95d9;
    color: #0187ee;
    display: block;
    margin: 5px 0;
}

.virHost_part .product_parameters .part .detailed .btn:hover {
    background: #269df4;
    color: #fff;
}

.virHost_part .product_parameters .part .detailed .icon_control1 {
    width: 20px;
    height: 20px;
    display: block;
    background: url(../../images/host/icon.png) no-repeat 0 -349px;
    margin: 0 auto;
}

.virHost_part .product_parameters .part .detailed .icon_control2 {
    width: 20px;
    height: 20px;
    display: block;
    background: url(../../images/host/icon.png) no-repeat -20px -349px;
    margin: 0 auto;
}

.virHost_part .selection .boxlist {
    text-align: center;
    /* width: 1200px;*/
    margin: 0 auto 0;
    padding: 0 0 0 0;
}

.virHost_part .selection .boxlist li {
    list-style: none;
    width: 23%;
    margin: 0px 8px;
    border: 1px solid #d8d8d8;
    padding: 20px 0 0 0;
    background: #fff;
    display: inline-block;
    *display: inline;
    *zoom: 1;
    vertical-align: top;
}

/*#part3 ul li span{
    border: 1px solid #d8d8d8;
    padding: 1px;
}*/

.virHost_part .selection .boxlist li h2 {
    font-size: 18px;
    color: #000;
    line-height: 52px;
    height: 52px;
}

.virHost_part .selection .boxlist li h2.sty {
    height: 52px;
    line-height: 26px;
}

.virHost_part .selection .boxlist li dl {
    margin: 20px 10px 30px 10px;
}

.virHost_part .selection .boxlist li dl dd {
    border-bottom: 1px dashed #dfdfdf;
    line-height: 30px;
    color: #888;
    text-align: left;
}

.virHost_part .selection .boxlist li .selection_footer {
    position: relative;
    height: 40px;
    line-height: 40px;
    color: #fff;
    font-size: 14px;
    background: #269df4;
    text-align: left;
    padding-left: 10px;
}

.virHost_part .selection .boxlist li .selection_footer a {
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    padding: 0 10px;
    background: #0178cf;
    color: #fff;
    text-align: center;
}

.virHost_part .selection .boxlist li .selection_footer a:hover {
    background: #ff6803;
}

.virHost_part .common_problem.section-wrapper {
    padding: 0 0 60px 0;
}

.virHost_part .common_problem, .mail_part .common_problem {
    text-align: center;
    width: 1200px;
    margin: 0 auto 20px;
    padding: 40px 0 60px 0;
}

.virHost_part .common_problem ul li, .mail_part .common_problem ul li {
    list-style: none;
    width: 262px;
    margin: 0 5px;
    padding: 0 10px;
    background: #fff;
    display: inline-block;
    *display: inline;
    *zoom: 1;
    vertical-align: top;
}

.virHost_part .common_problem ul li a, .mail_part .common_problem ul li a {
    display: block;
    border-bottom: 1px dashed #dfdfdf;
    line-height: 30px;
    color: #444;
    text-align: left;
    padding-left: 10px;
}

.virHost_part .common_problem ul li a:hover, .mail_part .common_problem ul li a:hover {
    color: #0187ee;
}

.virHost_part .common_problem.section-wrapper .btn_more {
    background: #fff;
    border: 1px solid #269df4;
    color: #269df4;
    margin: 30px auto 10px;
    line-height: 38px;
    font-size: 16px;
    padding: 0 10px;
    font-weight: bold;
    min-width: 120px;
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

.virHost_part .common_problem.section-wrapper .btn_more:hover {
    background: #2d86da;
    color: #fff;
}


/* 置顶切换tab */
#container {
    margin: 0 auto;
}

.section {
    border-bottom: 5px solid #ccc;
    min-height: 60vh;
    padding: 50px 20px;
}

.section p:last-child {
    margin-bottom: 0;
}


.section-wrapper:first-child .section {
    padding-top: 100px;
}

#nav {
    background: #f2f2f2;
    border-bottom: 1px solid #d8d8d8;
    height: 45px;
    list-style: none;
    text-align: center;
    z-index: 3001;
    top: 0;
    right: 0;
    left: 0;
    padding: 0;
}

#nav ul {
    margin: 0 auto;
    text-align: center;
    border-left: 1px solid #d8d8d8;
    overflow: hidden;
}

#nav ul li {
    float: left;
    list-style: none;
    line-height: 44px;
    height: 44px;
    color: #888;
    border-right: 1px solid #d8d8d8;
    border-top: 1px solid #d8d8d8;
    cursor: pointer;
    font-size: 16px;
    background: #fff;
    border-bottom: 1px solid #d8d8d8;
    width: 25%;
}

#nav ul li.current {
    color: #222;
    border-right: 1px solid #d8d8d8;
    border-top: 3px solid #269df4;
    line-height: 40px;
    height: 42px;
}

#nav ul li.current a {
    color: #000;
}

#nav a {
    background: #fff;
    color: #888;
    display: block;
    font-size: 16px;
    height: 42px;
    position: relative;
}

#nav a:hover {
    color: #0187ee;
}

#nav ul li b {
    position: absolute;
    bottom: -1px;
    z-index: 3002;
    right: 0;
    left: 0;
    width: 100%;
    height: 10px;
    display: block;
    background: #fff;
    display: none;
}

/*#nav ul li.current b {
    display: block;
}*/
.tjyxnzzj {
    padding: 0 45px;
}

.tjyxnzzj .tjlistdiv {
    margin: 15px auto;
}

.tjyxnzzj h2 {
    font-size: 32px;
    color: #222;
    line-height: 52px;
    font-weight: 700;
}

.tjyxnzzj .tjlist {
    border: 1px solid #d8d8d8;
    padding: 8px;
    height: 250px;
}

.tjlist h5 {
    text-align: center;
    margin: 15px auto;
}

.tjlist dl dd {
    border-bottom: 1px dashed #dfdfdf;
    line-height: 30px;
    color: #888;
    text-align: left;
    padding-left: 10px;
}

.tjlist .selection_footer {
    position: relative;
    height: 40px;
    line-height: 40px;
    color: #fff;
    font-size: 14px;
    background: #ff9866;
    text-align: left;
    padding-left: 10px;
}
@media(max-width: 1399px) {
    .tjyxnzzj {
        padding: 0 10px;
        font-size: 16px;
    }
}
@media (max-width: 1024px) {
    .tjyxnzzj {
        padding: 0 10px;
    }
}


@media (max-width: 767px) {
    .tjyxnzzj {
        padding: 20px 0;
    }

    .host_tab_n li {
        display: inline-block;
        cursor: pointer;
        text-align: center;
        line-height: 45px;
        font-size: 20px;
        width: 50%;
        background: #fff;
    }

    .host_tab_n li i {
        position: absolute;
        bottom: -20px;
        right: 50%;
        height: 0;
        width: 0;
        overflow: hidden;
        font-size: 0;
        border-color: #f2f2f2 transparent transparent transparent;
        border-style: solid;
        border-width: 10px;
        display: none;
    }

    .host_tab_c dl.title {
        padding: 0;
        text-align: center;
        margin: 0 auto;
    }

    .host_tab_c dl.title dt {
        font-size: 25px;
        color: #222;
        line-height: 45px;
    }

    .host_tab_c .virHost_part .product_parameters dl.title {
        padding: 20px 0 10px 0;
    }
}

.left_radio, .tr_left {
    float: left;
    line-height: 30px;
}

.product_parameters {
    padding: 0 15px;
    border-bottom: 1px dashed #cccccc;
}

/*host*/
.table_3 {
    border-collapse: collapse;
    table-layout: fixed;
    background: #fff;
    border-left: 1px solid #dfdfdf;
    border-right: 1px solid #dfdfdf;
}

.table_3 tr th a {
    color: #444;
    font-size: 15px;
}

.table_3 tbody tr.mine {
    background-color: #fef5e6;
}

.table_3 tbody tr.mine td {
    background: none;
}

.table_3 tbody tr.mine:hover {
    background: #fef5e6;
}

.table_3 tbody tr.mine:hover td {
    background: none;
}

.table_3 tbody tr th {
    line-height: 30px;
    color: #444;
    background: #bde1fc;
    border-bottom: 1px solid #bde1fc;
    font-size: 15px;
    text-align: left;
    padding: 10px;
    margin: 0;
}

.table_3 tbody tr th.sty1 {
    background: #269df4;
    color: #fff;
    font-size: 14px;
    font-weight: normal;
}

.table_3 tbody tr th.sty1 b {
    font-weight: bold;
    font-size: 16px;
}

.table_3 tbody tr td {
    line-height: 30px;
    color: #444;
    background: #fff;
    border-bottom: 1px solid #dfdfdf;
    font-size: 14px;
    text-align: left;
    padding: 10px;
    word-break: break-all;
}

.table_3 tbody tr td.no {
    padding: 30px;
    text-align: center;
    color: #444;
    background: #fafafa;
}

.table_3 tbody tr:hover td.no {
    background: #fafafa;
}

.table_3 tbody tr th.text_center, .table_3 tbody tr td.text_center {
    text-align: center;
}

.table_3 tbody tr th.text_right {
    text-align: right;
}

.table_3 tbody tr td.sty1 {
    background: #eef7fe;
}

.table_3 tbody tr td.sty2 span {
    font-weight: bold;
    font-size: 18px;
}

.table_3 tbody tr td a {
    color: #444;
}

.table_3 tbody tr td a:hover {
    color: #0187ee;
}

.table_3 tbody tr td a.a_blue {
    color: #0187ee;
}

.table_3 tbody tr td a.a_blue:hover {
    color: #ff6803;
}

.table_3 tbody tr:hover {
    background: #fafafa;
}

.table_3 tbody tr:hover td {
    background: none;
}

.table_3 tbody tr td.bottom {
    background: #f6f6f6;
    color: #222;
    line-height: 42px;
    padding: 4px 10px;
}

.table_3 tbody tr td.bottom span {
    font-weight: bold;
    color: #ff6803;
    font-size: 24px;
    line-height: 42px;
    margin: 0 3px;
}

.table_3 tbody tr td.bottom em {
    font-style: normal;
}

.table_3 tr th.ellipsis, .table_3 tr td.ellipsis {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.table_3 tbody tr td a.color_white {
    color: #fff;
}

.table_loading_p {
    text-align: center;
    display: block;
    margin: 10px 0;
}

.table_loading_p span {
    display: inline-block;
    *display: inline;
    *z00m: 1;
    vertical-align: middle;
    color: #0187ee;
    line-height: 24px;
}

.table_loading_p i {
    width: 24px;
    height: 24px;
    background:  no-repeat;
    margin-left: 10px;
    display: inline-block;
    *display: inline;
    *z00m: 1;
    vertical-align: middle;
}

.table_loading_p:hover span {
    color: #ff6803;
}

/*.table_loading_p:hover i {
    width: 24px;
    height: 24px;
    background: url(../images/arrow_load02.png) no-repeat;
}*/

.table_4 {
    border-collapse: collapse;
    table-layout: fixed;
    background: #fff;
    border-left: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
    border-top: 1px solid #e6e6e6;
}

.table_4 tr th {
    line-height: 22px;
    background: #eef7fe;
    text-align: right;
    padding: 12px 10px;
    font-size: 14px;
    border-bottom: 1px solid #e6e6e6;
    color: #222;
    font-weight: normal;
}

.table_4 tr th.text_left {
    text-align: left;
}

.table_4 tr th.text_right {
    text-align: right;
}

.table_4 tr th.text_center {
    text-align: center;
}

.table_4 tr th a {
    color: #222;
}

.table_4 tr td {
    line-height: 22px;
    background: #fff;
    text-align: left;
    padding: 12px 10px;
    font-size: 14px;
    border-bottom: 1px solid #e6e6e6;
    color: #444;
    word-break: break-all;
    word-wrap: break-word;
}

.table_4 tr th.bor_r_no, .table_1 tr td.bor_r_no {
    border-right: none;
}

.table_4 tr td a {
    color: #0078ff;
    margin-right: 10px;
}

.table_4 tr td a.ml {
    margin-left: 5px;
}

.table_4 tr td a:hover {
    color: #fd5908;
}

.table_4 tr td .icon1 {
    width: 20px;
    height: 20px;
    background: no-repeat 0 -220px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
}

.icon_error {
    background: no-repeat;
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px 0 5px;
}

.icon_correct {
    background: no-repeat;
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px 0 5px;
}


.table_4 tr th.ellipsis, .table_4 tr td.ellipsis {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.table_4 tr td .input_txt {
    border: 1px solid #ccc;
    width: 378px;
    padding: 0 5px;
    height: 30px;
    background: #fff;
    line-height: 30px;
    font-size: 14px;
    outline: none;
}

.table_4 tr td .input_txt.w1 {
    width: 50px;
}

.table_4 tr td .input_txt.w2 {
    width: 232px;
}

.table_4 tr td .input_txt.w3 {
    width: 180px;
}

.table_4 tr td .input_txt.w4 {
    width: 240px;
}

.table_4 tr td .maincon_sty1 {
    margin: 0 5px 0 0;
}

.table_4 tr td .input_txt:hover, .table_4 tr td .input_txt:focus {
    border: 1px solid #0078ff;
}

.table_3 .miniw, .table_3 .miniw22 {
    width: 22%;
}

.miniw130 {
    width: 22%;
}

.table-kzmbzc {
    line-height: 30px;
    padding: 0;
}

.table-kzmbzc .detailed {
    display: none;
}

#mbkzzc:hover {
    background: #f6f6f6;
}

#mbkzzc {
    padding-left: 2px;
    display: block;
    font-size: 17px;
    line-height: 42px;
    color: #0187ee;
    cursor: pointer;
}

#mbkzzc i {
    margin-right: 10px;
    background-color: #269df4;
    color: white;
    font-size: 12px;
    padding: 2px;
    font-weight: bold;
}

#mbkzzcnr {
    display: none;
}

.table-kzmbzc thead tr th {
    line-height: 30px;
    border-bottom: 1px solid #bde1fc;
    text-align: left;
    padding: 10px;
    margin: 0;
    background: #269df4;
    color: #fff;
    font-size: 14px;
    font-weight: normal;
}

.table-kzmbzc tr td:first-child {
    background: #eef7fe;
}

.virHost_part .table-kzmbzc .tit_click i {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    background: url(../../images/host/icon.png) no-repeat -20px -329px;
    margin-right: 10px;
}

.virHost_part .table-kzmbzc .show .tit_click i {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    background: url(../../images/host/icon.png) no-repeat 0px -329px;
    margin-right: 10px;
}

@media (max-width: 767px) {
    .tjyxnzzj h2 {
        font-size: 26px;
        color: #222;
        line-height: 52px;
        font-weight: 700;
    }

    .wpo-features-section.wpo-features-section-s2 .wpo-features-item {
        height: auto;
    }

    .table_3 .miniw {
        width: 13%;
    }

    .table_3 .miniw15 {
        width: 15%;
    }

    .table_3 .miniw39 {
        width: 20%;
    }

    .virHost_part .product_overview div div {
        display: inline-block;
        *display: inline;
        *zoom: 1;
        vertical-align: top;
        text-align: center;
        margin: 40px 0;
        width: 50%;
    }

    .virHost_part .selection .boxlist li {
        list-style: none;
        width: 47%;
        margin: 0 5px;
        border: 1px solid #d8d8d8;
        padding: 20px 0 0 0;
        background: #fff;
        display: inline-block;
        *display: inline;
        *zoom: 1;
        vertical-align: top;
    }

    .virHost_part .product_overview {
        padding-top: 20px;
    }

}

@media (max-width: 576px) {
    .virHost_part .product_overview div div {
        display: inline-block;
        *display: inline;
        *zoom: 1;
        vertical-align: top;
        text-align: center;
        margin: 10px 0;
        width: 100%;
    }

    .virHost_part .selection .boxlist li {
        list-style: none;
        text-align: center;
        width: 98%;
        margin: 0;
        border: 1px solid #d8d8d8;
        padding: 20px 0 0 0;
        background: #fff;
        display: inline-block;
        *display: inline;
        *zoom: 1;
        vertical-align: top;
    }
}

@media (min-width: 1400px) {
    .table-kzmbzc {
        padding: 0 38px;
    }
}

.qyyj_cpgs img {
    /*width: 120px;
    height: 120px;*/
    display: block;
    margin: 0 auto;
}

.qyyj_cpgs .row h2 {
    font-size: 20px;
    color: #000;
    line-height: 32px;
    text-align: center;
}

.qyyj_cpgs .row h5 {
    font-size: 14px;
    color: #777;
    line-height: 22px;
    text-align: center;
}


.qyyj_yxgn tr th {
    background: #269df4;
    color: #fff;
    font-size: 14px;
    font-weight: normal;
}

.qyyj_yxgn tr {
    padding: 0 10px;
}

.qyyj_yxgn tr th, .qyyj_yxgn tr td {

}

.qyyj_yxgn tr td:first-child {
    background: #eef7fe;
}

.qyyj_yxgn h2 {
    margin: 30px 0 20px 0;
}

@media (max-width: 500px) {
    .qyyj_yxgn tr td:last-child, .qyyj_yxgn tr th:last-child {
        display: none;
    }

    .qyyj_yxgn tr {
        text-align: center;
    }
}

/*.cserver*/
.cserver_btn_buy {
    background: #269df4;
    margin: 10px 0;
    line-height: 40px;
    font-size: 16px;
    padding: 12px 45px;
    color: white;
    border-radius: 1px
}

.csdetail {
    margin: 30px auto 20px;
}

.csdetail p {
    border-bottom: 1px dashed #dfdfdf;
    line-height: 30px;
    color: #888;
}

.csdetail ~ .price_p {
    font-size: 16px;
    font-weight: bold;
    color: #888;
    padding: 5px 0;
}

.csdetail ~ .price_p b {
    color: #ff6803;
    font-size: 26px;
    margin: 10px 0;
}

.cserver_list {
    height: auto;
    background-color: white;
    box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.3);
    padding: 30px 30px;
    text-align: center;
    margin: 10px 0;
}

.cserver_list h5 img {
    position: relative;
    top: -5px;
    left: 5px;
}

.cserver_list h5 {
    line-height: 39px;
}


/*yfwqys*/
.yfwqys {
    padding: 30px 0;
}

.yfwqys .yfwqys_item {
    border: 1px solid #acacac;
    padding: 10px 10px;
}

.yfwqys .yfwqys_item ul li {
    list-style: none;
}

.yfwqys .yfwqys_item ul {
    padding: 0 15px;
}

.yfwqys .yfwqys_item ul li::before {
    content: ".";
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    position: relative;
    top: -4px;
}

.yfwqys .yfwqys_item ul li::before {
    content: "•";
    position: relative;
    top: -1px;
}

.yfwqys_item_bg {
    background: #269df4;
    color: white;
    text-align: center;
    line-height: 5;
    font-size: 16px;
    font-weight: bold;
}

.yfwqys .yfwqys_item:last-child ul li {
    color: #919191;
}

.yfwqys > div > div:first-child {
    padding: 30px 0;
}

.cserver_list1 {
    height: 375px;
    background-color: white;
    box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.3);
    padding: 30px 30px;
    text-align: center;
    margin: 10px 0;
}

.cserver_list1 h5 {
    font-size: 30px;
    line-height: 39px;
}

/*SSL*/
.ssl_btn_buy {
    cursor: pointer;
    color: #fff;
    background: #269df4;
    line-height: 45px;
    font-size: 18px;
    padding: 7px 38px;
    text-align: center;
}

.ssl_btn_buy:hover {
    color: #fff;
    background: #268fe5;
}

.a_blue {
    color: #0187ee;
}

.a_red {
    color: #ff6803;
}

.ssl_details:hover {
    color: #ff6803;
}

.ssl_index .ssl_type {
    text-align: center;
    padding: 10px 0 50px 0;
}

.ssl_index .ssl_type li {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    vertical-align: top;
    height: 480px;
    box-shadow: 4px 7px 7px rgba(208, 205, 205, .51);
    position: relative;
    color: #fff;
    padding: 0;
}

.ssl_index .ssl_type li.EV {
    background: #1abce1;
    border: 1px solid #03eaff;
}

.ssl_index .ssl_type li.OV {
    background: #199af8;
    border: 1px solid #6ed4ff;
}

.ssl_index .ssl_type li.DV {
    background: #1c5ccb;
    border: 1px solid #5babfc;
}

.ssl_index .ssl_type li .tranbg {
    display: none;
}

.ssl_index .ssl_type li:hover {
    cursor: pointer;
    color: #1abce1;
}

.ssl_index .ssl_type li:hover .tranbg {
    display: block;
    background:  repeat;
    width: 100%;
    height: 100%;
}

.ssl_index .ssl_type li.EV:hover .tranbg {
    background: #e9f8fc;
}

.ssl_index .ssl_type li.OV:hover .tranbg {
    background: #e7f4fd;
}

.ssl_index .ssl_type li.DV:hover .tranbg {
    background: #e8eef9;
}

.ssl_index .ssl_type li .p1 {
    display: block;
}

.ssl_index .ssl_type li .p2 {
    display: none;
}

.ssl_index .ssl_type li:hover .p1 {
    display: none;
}

.ssl_index .ssl_type li:hover .p2 {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.ssl_index .ssl_type li .p1 h3 {
    font-size: 70px;
    font-weight: bold;
    line-height: 50px;
    padding: 60px 0 20px 0;
}

.ssl_index .ssl_type li .p1 h4 {
    font-size: 46px;
    font-weight: normal;
    letter-spacing: 8px;
    line-height: 50px;
}

.ssl_index .ssl_type li .p1 p {
    font-size: 20px;
    font-weight: normal;
    line-height: 30px;
    color: #e0faff;
}

.ssl_index .ssl_type li .p1 .star_sign {
    margin: 30px 0 10px 0;
}

.ssl_index .ssl_type li .p1 .star_sign i {
    width: 32px;
    height: 32px;
    background: url("../../images/ssl/ssl_icon.png") no-repeat 0 0;
    display: inline-block;
    *display: inline;
    *zoom: 1;
    vertical-align: middle;
    margin: 0 5px;
}

.ssl_index .ssl_type li.EV .p1 a {
    padding: 0 40px;
    line-height: 42px;
    color: #fff;
    border: 1px solid #d8f8ff;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    margin: 40px 0 20px 0;
    font-weight: bold;
    background: #36c9eb;
}

.ssl_index .ssl_type li.EV .p1 a:hover {
    background: #fff;
    color: #1abce1;
}

.ssl_index .ssl_type li.OV .p1 a {
    padding: 0 40px;
    line-height: 42px;
    color: #fff;
    border: 1px solid #d8f8ff;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    margin: 40px 0 20px 0;
    font-weight: bold;
    background: #40abf9;
}

.ssl_index .ssl_type li.OV .p1 a:hover {
    background: #fff;
    color: #1abce1;
}

.ssl_index .ssl_type li.DV .p1 a {
    padding: 0 40px;
    line-height: 42px;
    color: #fff;
    border: 1px solid #c7dafc;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    margin: 40px 0 20px 0;
    font-weight: bold;
    background: #336dcd;
}

.ssl_index .ssl_type li.DV .p1 a:hover {
    background: #fff;
    color: #1abce1;
}

.ssl_index .ssl_type li.EV .p2 h3 {
    font-size: 70px;
    font-weight: bold;
    line-height: 50px;
    padding: 30px 0 20px 0;
}

.ssl_index .ssl_type li.EV .p2 p {
    font-size: 20px;
    font-weight: normal;
    line-height: 30px;
    color: #1abce1;
}

.ssl_index .ssl_type li.EV .p2 a {
    padding: 0 40px;
    line-height: 42px;
    color: #fff;
    border: 1px solid #d8f8ff;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    margin: 40px 0 10px 0;
    font-weight: bold;
    background: #36c9eb;
}

.ssl_index .ssl_type li.EV .p2 a:hover {
    background: #fff;
    color: #1abce1;
    border: 1px solid #1abce1;
}

.ssl_index .ssl_type li.EV .p2 a.more {
    border: none;
    color: #1abce1;
    display: block;
    background: none;
    margin: 0 auto;
    line-height: 20px;
    font-size: 15px;
}

.ssl_index .ssl_type li.EV .p2 ol {
    margin: 0px 30px;
    width: 79%;
}

.ssl_index .ssl_type li.EV .p2 ol li {
    text-align: left;
    /* width: 260px;*/
    line-height: 30px;
    color: #1abce1;
    font-size: 16px;
    display: block;
    height: auto;
    box-shadow: none;
    position: inherit;
    border-bottom: 1px dashed #1abce1;
    border-top: none;
    border-left: none;
    border-right: none;
}

.ssl_index .ssl_type li.OV .p2 h3 {
    font-size: 70px;
    font-weight: bold;
    line-height: 50px;
    padding: 30px 0 20px 0;
    color: #199af8;
}

.ssl_index .ssl_type li.OV .p2 p {
    font-size: 20px;
    font-weight: normal;
    line-height: 30px;
    color: #199af8;
}

.ssl_index .ssl_type li.OV .p2 a {
    padding: 0 40px;
    line-height: 42px;
    color: #fff;
    border: 1px solid #d8f8ff;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    margin: 40px 0 10px 0;
    font-weight: bold;
    background: #199af8;
}

.ssl_index .ssl_type li.OV .p2 a:hover {
    background: #fff;
    color: #199af8;
    border: 1px solid #199af8;
}

.ssl_index .ssl_type li.OV .p2 a.more {
    border: none;
    color: #199af8;
    display: block;
    background: none;
    margin: 0 auto;
    line-height: 20px;
    font-size: 15px;
}

.ssl_index .ssl_type li.OV .p2 ol {
    margin: 0px 30px;
    width: 79%;
}

.ssl_index .ssl_type li.OV .p2 ol li {
    text-align: left;
    /*width: 260px;*/
    line-height: 30px;
    color: #199af8;
    font-size: 16px;
    display: block;
    height: auto;
    box-shadow: none;
    position: inherit;
    border-bottom: 1px dashed #6dbdf8;
    border-top: none;
    border-left: none;
    border-right: none;
}

.ssl_index .ssl_type li.DV .p2 h3 {
    font-size: 70px;
    font-weight: bold;
    line-height: 50px;
    padding: 30px 0 20px 0;
    color: #1c5ccb;
}

.ssl_index .ssl_type li.DV .p2 p {
    font-size: 20px;
    font-weight: normal;
    line-height: 30px;
    color: #1c5ccb;
}

.ssl_index .ssl_type li.DV .p2 a {
    padding: 0 40px;
    line-height: 42px;
    color: #fff;
    border: 1px solid #d8f8ff;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    margin: 40px 0 10px 0;
    font-weight: bold;
    background: #1c5ccb;
}

.ssl_index .ssl_type li.DV .p2 a:hover {
    background: #fff;
    color: #1c5ccb;
    border: 1px solid #1c5ccb;
}

.ssl_index .ssl_type li.DV .p2 a.more {
    border: none;
    color: #1c5ccb;
    display: block;
    background: none;
    margin: 0 auto;
    line-height: 20px;
    font-size: 15px;
}

.ssl_index .ssl_type li.EV .p2 ol {
    margin: 0px 30px;
    width: 79%;
}


.ssl_index .ssl_type li.DV .p2 ol li {
    text-align: left;
    /* width: 260px;*/
    line-height: 30px;
    color: #1c5ccb;
    font-size: 16px;
    display: block;
    height: auto;
    box-shadow: none;
    position: inherit;
    border-bottom: 1px dashed #7c99cb;
    border-top: none;
    border-left: none;
    border-right: none;
}

.ssl_index > .title {
    font-size: 50px;
    line-height: 1em;
    margin: 15px 0;
    position: relative;
    text-transform: capitalize;
    font-family: "Futura PT Demi";
    text-align: center;
}

.ssl_module2 {
    background: #f2f2f2;
    padding: 30px 0 0 0;
}

.ssl_type div {
    padding: 10px 5px;
}


.ssl_item {
    padding: 5px;
}

.ssl_itembox {
    border: solid 1px #dfdfdf;
    padding: 10px 0;
}

.ssl_brand_lisyt .ssl_item a {
    text-align: center;
}

.ssl_item {
    padding: 5px 20px;
}

.ssl_itembox i {
    background: url(../../images/ssl/ssl_biaoqian.png) no-repeat;
    padding: 10px 45px 18px 37px;
    color: white;
    position: relative;
    top: -4px;
    left: -9px;
    z-index: 50;
}

.ssl_brand_box {
    padding: 30px 0;
}

.ssl_brand_box .title {
    font-size: 50px;
    line-height: 1em;
    margin: 15px 0;
    position: relative;
    text-transform: capitalize;
    font-family: "Futura PT Demi";
    text-align: center;
}

.ssl_content {
    padding: 15px 10px;
}

.ssl_item img {
    display: block;
    margin: 0 auto;
}

/*.ssl_brand_lisyt div:nth-child(3) .ssl_itembox img{
    position: relative;
    top: -15px;
}*/
/*.ssl_brand_lisyt .col-md-3 .ssl_content{
    padding-bottom: 22px;
}*/
.whoisssl_box .whossl-btline {
    border-bottom: 1px dashed #3de1ff;
    margin-bottom: 20px;
}

.whoisssl_itembox .title {
    font-size: 24px;
    font-weight: bold;
    line-height: 48px;
    margin-bottom: 10px;
    color: white;
}

.whoisssl_box {
    background: #37a6f3;
    width: 100%;
    padding-bottom: 20px;
    color: white;
}

.whoisssl_text {
    font-size: 14px;
    line-height: 22px;
}

.whoisssl_itembox ul {
    margin: 20px 0;
}

.whoisssl_itembox ul li {
    background: #219aee url(../../images/ssl/sslfeatures-icon.png) no-repeat 5px center;
    padding: 0 18px 0 36px;
    color: #fff;
    line-height: 32px;
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    margin: 3px 10px 3px 0;
    border: 1px solid #00c4ff;
}

.xcxpg {
    padding: 0;
    margin: 0;
}

.whoisssl .xiaochengxu {
    display: inline-block;
    vertical-align: top;
    padding: 20px 30px 30px 130px;
    color: #d2f6ff;
    line-height: 24px;
    font-size: 14px;
    background: url(../../images/ssl/what_ssl_icon1.png) no-repeat 0 12px;
    text-align: left;
}

.whoisssl .xiaochengxu h2, .whoisssl .iosapp h2 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
    padding: 0;
}

.whoisssl .iosapp {
    display: inline-block;
    vertical-align: top;
    padding: 20px 30px 30px 130px;
    color: #d2f6ff;
    line-height: 24px;
    font-size: 14px;
    background: url(/images/ssl/what_ssl_icon2.png) no-repeat 0 12px;
    text-align: left;
}

.why_ssl_box {
    padding: 30px 0;
}
@media (max-width: 767px) {
.why_ssl_box .col-sm-6 .row .col-md-2{
    display: none;
}
}

.why_ssl_title {
    font-size: 32px;
    color: #222;
    line-height: 52px;
    text-align: center;
}

.why_ssl-item {
    padding: 5px 0 0 20px;
}

.why_ssl-item h5 {
    margin-top: 10px;
}

.why_ssl-item p {
    text-align: left;
    padding: 10px 0px 0 0px;
    font-size: 14px;
    color: #777;
    line-height: 22px;
}

.brand_list.Active {
    text-decoration: none;
    margin: 0;
    background: #0187ee;
}

.ssl_tab {
    margin: 0 auto;
    background: #f2f2f2;
}

.ssl_tab_n {
    line-height: 40px;
    color: #333;
    padding: 0;
}

.ssl_tab_n ul {
    text-align: center;
    height: 80px;
    padding: 0 5px;
    margin: 0 auto;
}

.ssl_tab_n ul.types li {
    line-height: 60px;
}

.ssl_tab_n ul.types li.Active {
    color: #fff;
}

.brand_list {
    padding-left: 21px;
}

.brand_list span {
    width: 14%;
    padding: 0;
}


.ssl_tab_c {
    padding: 80px 0 50px 0;
    margin: 0 auto;
    position: relative;
}


.ssl_tab_c .ssl_content {
    margin: 0 auto;
    width: 1200px;
}

.ssl_tab_c .ssl_content .remind {
    border-left: 3px solid #ff6803;
}

.ssl_tab_c .ssl_content .types_title {
    text-align: center;
    line-height: 52px;
    font-size: 32px;
    font-weight: normal;
    color: #222;
    margin: 20px auto;
}

.Active {
    background: #0187ee;
}

.brand_list img {
    width: 148px;
    height: 34px;
    margin: 13px 0;
}

.table_3 {
    border-collapse: collapse;
    table-layout: fixed;
    background: #fff;
    border-left: 1px solid #dfdfdf;
    border-right: 1px solid #dfdfdf;
}

.table_3 tr th a {
    color: #444;
    font-size: 15px;
}

.table_3 tbody tr.mine {
    background-color: #fef5e6;
}

.table_3 tbody tr.mine td {
    background: none;
}

.table_3 tbody tr.mine:hover {
    background: #fef5e6;
}

.table_3 tbody tr.mine:hover td {
    background: none;
}

.table_3 tbody tr th {
    line-height: 30px;
    color: #444;
    background: #bde1fc;
    border-bottom: 1px solid #bde1fc;
    font-size: 15px;
    text-align: left;
    padding: 10px;
    margin: 0;
}

.table_3 tbody tr th.sty1 {
    background: #269df4;
    color: #fff;
    font-size: 14px;
    font-weight: normal;
}

.table_3 tbody tr th.sty1 b {
    font-weight: bold;
    font-size: 16px;
}

.table_3 tbody tr td {
    line-height: 30px;
    color: #444;
    background: #fff;
    border-bottom: 1px solid #dfdfdf;
    font-size: 14px;
    text-align: left;
    padding: 10px;
    word-break: break-all;
}

.table_3 tbody tr td.no {
    padding: 30px;
    text-align: center;
    color: #444;
    background: #fafafa;
}

.table_3 tbody tr:hover td.no {
    background: #fafafa;
}

.table_3 tbody tr th.text_center, .table_3 tbody tr td.text_center {
    text-align: center;
}

.table_3 tbody tr th.text_right {
    text-align: right;
}

.table_3 tbody tr td.sty1 {
    background: #eef7fe;
}

.table_3 tbody tr td.sty2 span {
    font-weight: bold;
    font-size: 18px;
}

.table_3 tbody tr td a {
    color: #444;
}

.table_3 tbody tr td a:hover {
    color: #0187ee;
}

.table_3 tbody tr td a.a_blue {
    color: #0187ee;
}

.table_3 tbody tr td a.a_blue:hover {
    color: #ff6803;
}

.table_3 tbody tr:hover {
    background: #fafafa;
}

.table_3 tbody tr:hover td {
    background: none;
}

.table_3 tbody tr td.bottom {
    background: #f6f6f6;
    color: #222;
    line-height: 42px;
    padding: 4px 10px;
}

.table_3 tbody tr td.bottom span {
    font-weight: bold;
    color: #ff6803;
    font-size: 24px;
    line-height: 42px;
    margin: 0 3px;
}

.table_3 tbody tr td.bottom em {
    font-style: normal;
}

.table_3 tr th.ellipsis, .table_3 tr td.ellipsis {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.table_3 tbody tr td a.color_white {
    color: #fff;
}

.ssl_content .price1 {
    font-size: 18px;
    font-weight: bold;
    color: #ff6803;
    line-height: 20px;
    margin: 0;
}

.old_price {
    text-decoration: line-through;
    color: #A09C9C;
}

.ssl_content .ssl_btn_buy {
    color: #fff;
    background: #269df4;
    height: 32px;
    line-height: 32px;
    margin: 0 5px;
    min-width: 70px;
    padding: 5px 15px;
    font-size: 16px;
}

.ssl_content .ssl_btn_buy:hover {
    color: #fff;
    background: #266fdf;
    height: 32px;
    line-height: 32px;
    margin: 0 5px;
    min-width: 70px;
    padding: 5px 15px;
    font-size: 16px;
}

.ssl_content tr th:nth-child(2), .ssl_content tr th:nth-child(3) {
    width: 16%;
}

.ssl_content tr th:nth-child(4), .ssl_content tr th:nth-child(5) {
    width: 20%;
}

.conmpany_z_cs h3 {
    text-align: center;
    color: black;
    size: 16px;
}

.conmpany_z_cs div:nth-child(2) {
    color: #999999;
}

.qywh-item1 .title {
    color: #33a1d4;
    font-size: 24px;
    height: 75px;
    line-height: 75px;
    font-weight: bold;
    text-align: center;
}

.qywh-item1 .content {
    color: #999999;
    border-left: 1px #dfdfdf solid;
    padding-left: 20px;
}

.qywh-item1 div {
    padding: 10px 5px;
}

.qywh-item1 {
    padding: 20px 0;
    border-bottom: 1px #dfdfdf solid;
}

.qywh-item2 {
    padding: 20px 0;
    border-bottom: 1px #dfdfdf solid;
}

.qywh-item2 h3 {
    height: 30px;
    line-height: 30px;
    font-size: 30px;
    color: #5b5b5b;
    text-align: center;
    margin: 20px auto;
}

.qywh-item2 h4 {
    line-height: 30px;
    color: #33a1d4;
    font-size: 18px;
}

.qywh-item2 .col-md-6 div {
    line-height: 30px;
    color: #5b5b5b;
    font-size: 14px;
}

.qywh-item2 {
    padding: 30px auto;
}

.qywh-item3 {
    margin: 20px auto;
}

.qywh-item3 h4 {
    line-height: 30px;
    color: #33a1d4;
    font-size: 24px;
    margin-top: 15px;
}

.qywh-item3 .col-md-6 div {
    line-height: 26px;
    color: #505050;
}

.jobs {
    padding: 30px 0
}

.jobs h2 {
    font-weight: bold;
    font-size: 36px;
    color: #ff601f;
}

.jobs .col-md-4 {
    color: #ffffff;
    line-height: 30px;
    padding: 20px 10px;
}

.jobs .col-md-4:nth-child(1) > div {
    height: 468px;
    background: #1d9f8e;
    box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.3);
    padding: 20px 10px;
}

.jobs .col-md-4:nth-child(2) > div {
    background: #4bbadc;
    box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.3);
    padding: 20px 10px;
    height: 468px;
}

.jobs .col-md-4:nth-child(3) > div {
    background: #d9604b;
    box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.3);
    padding: 20px 10px;
    height: 468px;
}

.jobs .col-md-4 > div:hover {
    box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.5);
}

.jobs .col-md-4 span {
    border: 1px #ffffff solid;
    padding: 0px 6px;
    margin: 3px 1px;
    float: left;
}

.jobs .col-md-4 h3 {
    color: white;
}

.jobs .col-md-4 .more {
    font-size: 16px;
    color: white;
    line-height: 30px;
    padding: 3px 10px;
    border: white solid 1px;
    position: relative;
    top: 41px;
}

.jobs .col-md-4 .content {
    text-align: left;
}

.jobs .info {
    color: #5b5b5b;
    line-height: 24px;
    padding: 10px 0;
}

#accordion .collapsed {
    width: 100%;
}

#accordion .card-header span:nth-child(1) {
    margin-right: 50px;
}

#accordion .card-header span:nth-child(2) {
    margin-right: 50px;
}

#accordion .card-header span:nth-child(3) {
    margin-right: 50px;
}

#accordion .card-body::before {
    content: "";
}

#accordion .collapsed::before {
    content: "";
}

#accordion .collapsed::after {
    content: "";
}

#accordion .card-body::after {
    content: "";
}

.news {

    padding: 30px 0;
}

.news h2 {
    font-weight: bold;
    color: #33a1d4;
    font-size: 36px;
    padding: 20px 0;
}

.news .row {
    padding: 10px 0;
    line-height: 30px;
    border-bottom: 1px #dfdfdf solid;
}

.news .col-md-9 span:last-child {
    padding: 0 0 0 50px;
    color: #999999;
}

.news .col-md-9 p:last-child {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news .col-md-9 h5 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.newsDetail {
    padding: 30px 15px;
}

.newsDetail img {
    height: 100%;
    width: 100%;
}

.newsDetail > h4 {
    color: #5b5b5b;
}

@media (min-width: 992px) {
    .cserver_list {
        height: auto;
        background-color: white;
        box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.3);
        padding: 30px 5px;
        text-align: center;
        margin: 10px 0;
    }
}

@media (max-width: 768px) {
    .news .col-md-9 h5 {
        font-size: 16px;
        font-weight: bold;
        color: #5b5b5b;
    }

    .jobs .col-md-4 .more {
        font-size: 16px;
        color: white;
        line-height: 30px;
        padding: 3px 10px;
        border: white solid 1px;
        position: relative;
        top: 11px;
    }

    .jobs .col-md-4:nth-child(2) > div {
        background: #4bbadc;
        box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.3);
        padding: 20px 10px;
        height: auto;
    }

    .jobs .col-md-4:nth-child(3) > div {
        background: #d9604b;
        box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.3);
        padding: 20px 10px;
        height: auto;
    }

    .jobs img.jobsimg {
        position: relative;
        top: -22px;
    }

    #accordion .card-header span:nth-child(1) {
        margin-right: auto;
    }

    #accordion .card-header span:nth-child(2) {
        margin-right: auto;
    }

    #accordion .card-header span:nth-child(3) {
        margin-right: auto;
    }

    .qywh-item2 h3 {
        height: 30px;
        line-height: 30px;
        font-size: 24px;
        color: #5b5b5b;
        text-align: center;
        margin: 20px auto;
    }

    .qywh-item1 .content {
        color: #999999;
        border-left: 1px #dfdfdf solid;
        padding-right: 10px;
        padding-left: 10px;
    }

    .brand_list span {
        width: 30%;
        padding: 0;
    }

    .ssl_content tr th:nth-child(4), .ssl_content tr th:nth-child(5), .ssl_content tr td:nth-child(4), .ssl_content tr td:nth-child(5) {
        display: none;
    }

    .ssl_content tr th:nth-child(2) {
        width: 27%;
    }

    .ssl_content tr th:nth-child(3) {
        width: 20%;
    }

    .table_3 tbody tr td {
        line-height: 15px;
        color: #444;
        background: #fff;
        border-bottom: 1px solid #dfdfdf;
        font-size: 14px;
        text-align: left;
        padding: 2px 5px;
        word-break: break-all;
    }

    .price1 {
        font-size: 16px;
        font-weight: bold;
        color: #ff6803;
        line-height: 16px;
    }
}

@media (max-width: 587px) {
    .brand_list span {
        width: 50%;
        padding: 0;
    }

    .ssl_content tr th:nth-child(4), .ssl_content tr th:nth-child(5), .ssl_content tr td:nth-child(4), .ssl_content tr td:nth-child(5) {
        display: none;
    }

    .ssl_content tr th:nth-child(2) {
        width: 40%;
    }

    .ssl_content tr th:nth-child(3) {
        width: 22%;
    }

    .table_3 tbody tr td {
        line-height: 15px;
        color: #444;
        background: #fff;
        border-bottom: 1px solid #dfdfdf;
        font-size: 14px;
        text-align: left;
        padding: 2px 5px;
        word-break: break-all;
    }

    .price1 {
        font-size: 16px;
        font-weight: bold;
        color: #ff6803;
        line-height: 16px;
    }
}

@media (max-width: 375px) {
    .brand_list span {
        width: 100%;
        padding: 0;
    }
}


@media (max-width: 767px) {
    .ssl_content .price1 {
        font-size: 18px;
        font-weight: bold;
        color: #ff6803;
        line-height: 20px;
        margin: 0 0 5px 0;
    }
    .wpo-section-title {
        margin-bottom: 15px;
    }

    .csdetail {
        margin: 15px auto 0;
    }

    .csdetail p {
        border-bottom: 1px dashed rgb(223, 223, 223);
        line-height: 15px;
        color: rgb(195 111 40);
    }

    .cserver_list h5 {
        line-height: 16px;
    }

    .whoisssl .xiaochengxu {
        display: inline-block;
        vertical-align: top;
        padding: 0 0 15px 0;
        color: #d2f6ff;
        line-height: 24px;
        font-size: 14px;
        background:  no-repeat 0 12px;
        text-align: left;
    }

    .whoisssl .iosapp {
        display: inline-block;
        vertical-align: top;
        padding: 0 0 15px 0;
        color: #d2f6ff;
        line-height: 24px;
        font-size: 14px;
        background:  no-repeat 0 12px;
        text-align: left;
    }
}

/*about*/

.company_nav_xx:hover a, .company_nav .hover a {
    color: #fff;
}

.company_nav_xx a {
    color: #000;
    text-decoration: none;
    font-family: "Microsoft YaHei";
}

.company_nav_xx {
    border-bottom: 1px #dfdfdf solid;
    /* width: 190px;*/
    height: 40px;
    line-height: 40px;
    margin: 3px 0;
    font-size: 14px;
    text-align: center;
}

.company_nav_xx:hover {
    background: #33a1d4;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border-bottom: 1px #dfdfdf solid;
    /*width:190px; */
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    text-align: center;
}

.company_nav .hover {
    background: #33a1d4;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border-bottom: 1px #dfdfdf solid;
    /*width: 190px;*/
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    text-align: center;
}

.yjbt {
    font-weight: bold;
    color: #33a1d4;
    font-size: 36px;
}

.company_t2 {
    font-size: 18px;
    text-align: center;
    height: 40px;
    line-height: 40px;
    color: #5b5b5b;
}

.lxwm {
    padding: 0 50px 30px 50px;
}


.jj_pic {
    padding: 10px;
    font-size: 18px;
    color: #999999;
}

.jj_zi {
    padding: 10px;
    color: #999999;
    line-height: 25px;
}

.jj_zid {
    padding: 10px;
    color: #999999;
    line-height: 25px;
}

.jj_pic em {
    display: block;
    color: #33a1d4;
    font-size: 48px;
}

.company_zbt {
    height: 70px;
    line-height: 40px;
    border-left: 6px #33a1d4 solid;
    padding-left: 15px;
    margin: 15px 0;

}

.company_t3 strong {
    height: 30px;
    line-height: 30px;
    color: #33a1d4;
    font-size: 36px;
}

.company_t4 {
    height: 30px;
    line-height: 30px;
    font-size: 24px;
    color: #5b5b5b;
}

.conmpany_z_c strong {
    height: 70px;
    line-height: 70px;
    color: #33a1d4;
    font-size: 34px;
}

.conmpany_z_c .right {
    color: #999999;
    line-height: 30px;
}

.conmpany_z_c .img-fluid {
    max-width: 100%;
    height: 180px;
}

div.conmpany_z_c.row {
    color: #999999;
    line-height: 30px;
    padding: 20px 10px;
}

.dywq {
    padding: 20px 0;
    margin: 20px 0;
}

.dywq_qf {
    padding: 10px auto;
}

.wpo-blog-img img {
    height: 238.33px;
}

.indexNews .wpo-blog-content-top {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.dywq_t {
    height: 30px;
    line-height: 30px;
    color: #5b5b5b;
}

.dywq_qf img {
    max-width: 100%;
    height: 50px;
    float: left;
}

.dywq_qf .left {
    padding-left: 10px;
    float: left;
}

.dywq_c {
    line-height: 24px;
    color: #999999;

}

.about-xlwm .col-md-4 div{
    font-size: 14px;
    color: #666b85;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
}


@media (max-width: 1400px) {
    .jobs .col-md-4 .more {
        font-size: 16px;
        color: white;
        line-height: 30px;
        padding: 3px 10px;
        border: white solid 1px;
        position: relative;
        top: 6px;
    }
}

.about-xlwm .col-md-8 {

    padding: 0 10px;
}

#dituContent {
    height: 450px;
}

.xzwm #why_us .wpo-features-item {
    height: 260px;
    padding: 30px 10px;
}

.biaozhun1 .box:hover {
    box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.2);
}

.indexCase .grid img {
    height: 220px;
}

.indexNews .wpo-blog-img {
    overflow: hidden;
}

.indexNews .wpo-blog-img img {
    height: 270px;
    transition: all 0.6s;
}

.indexNews .wpo-blog-item:hover .wpo-blog-img img {
    transform: scale(1.2);
}

.indexNews .wpo-blog-item:hover .wpo-blog-content .wpo-blog-content-top h2 a {
    color: #224efd;
}

/*.indexNews .wpo-blog-img img:hover{
    transform: scale(1.2);
}*/
.indexCase .wpo-gallery-text {
    padding: 0 5px;
}

.indexCase .wpo-gallery-text h3 {
    font-size: 23px;
    color: #fff;
}

/*.navbar-brand img{

}*/
#why_us .wpo-features-item:hover {
    background-color: #4999f7;
    cursor: pointer;
    box-shadow: 0px 5px 15px 0px rgba(71, 126, 229, 0.5);
}

#why_us .wpo-features-item:hover h2 {
    color: white;
}

#why_us .wpo-features-item:hover h2 ~ p {
    color: white;
}

.footer-t1 {
    padding: 10px 0;
}

.footer-t1 .col-md-3 .col-md-9 p {
    text-align: left;
    padding: 0;
    margin: 0;
}

.footer-t1 .col-md-3 .col-md-3 img {
    padding: 5px 0;
}

.footer-tt {
    border-bottom: #515253 1px solid;
}

.footer-t2 .col-md-3 h5 {
    color: white;
    font-weight: 700;
}

.footer-t2 .col-md-3 p {
    margin: 0;
}

.footer-t3 .col-md-5 {
    text-align: right;
}

.footer-t3 .col-md-5 img {
    width: 153px;
    height: 153px;
}

.footer-t3 .col-md-7 h3 {
    color: white;
}

#copyright p {
    margin: 0;
}

@media (max-width: 767px) {
    .indexNews .wpo-blog-img img {
        height: 220px;
        transition: all 0.6s;
    }
    #footerEwm p {
        margin: 0 0 5px 0;
    }

    .navbar-brand .img-fluid {
        max-width: 165%;
        height: auto;
    }

    #copyright {
        padding: 0 20px;
    }

    .footer-t3 .col-md-5 {
        text-align: center;
        padding: 30px;
    }

    .footer-t1, .footer-t2 {
        display: none;
    }

    .footer-t3 .col-md-5 img {
        width: 70%;
        height: auto;
    }


    .wpo-blog-img img {
        height: 100%;
    }

    .lxwm {
        padding: 0px 10px 0px 10px;
    }

    .conmpany_jj_c {
        /*background: url(../images/conmpany_jj_c.jpg) no-repeat center top;*/
        background:  no-repeat center top;
        overflow: hidden;
        /* width: 100%;*/
    }

    .jj_pic {
        padding: 10px;
        font-size: 18px;
        line-height: 38px;
        color: #999999;
    }

    .jj_zi {
        padding: 10px;
        color: #999999;
        line-height: 25px;
    }

    .jj_pic {
        padding: 15px;
        font-size: 18px;
        color: #999999;
    }

    .company_c {
        margin-top: 10px;
    }

    .company_c img {
        width: 100%;
        height: auto;
    }


    .company_t4 {
        height: 28px;
        line-height: 30px;
        font-size: 15px;
        color: #5b5b5b;
    }

    .conmpany_z_c strong {
        line-height: 57px;
        color: rgb(51, 161, 212);
        font-size: 22px;
    }

    .conmpany_z_c .left {
        text-align: center;
    }

    .conmpany_z_c .img-fluid {
        max-width: 100%;
        height: auto;
    }
}

#share {
    position: fixed;
    top: 50%;
    margin-top: -130px;
    right: 1px;
    width: 60px;
    zoom: 1;
    z-index: 9999999;
}


#share .qq, #share .weixin, #share .shouhou, #share .tel, #share #totop {
    background: #ffa500 url(../../images/kficon.png) no-repeat;
    display: block;
    margin-bottom: 1px;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 94px;
    color: #fff;
    font-size: 14px;
    border-radius: 2px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

#share .qq {
    background: #ff3131 url(../../images/QQ.gif) no-repeat center -2px;
    cursor: pointer;
    position: relative;
}

#share .qqs {
    background-color: #ff3131;
}

#share .shouhou {
    background-color: #00a1ff;
    background-position: 5px -2px;
}

#share .shouhou:hover {
    background-color: #038ddd;
}

#share .weixin {
    position: relative;
    background-color: #05af10;
    background-position: 5px -102px;
    z-index: -1;
}

#share .weixin:hover {
    background-color: #039a0d;
}

#share .weixin .erweimas {
    position: absolute;
    right: -160px;
    bottom: -64px;
    background-color: #fff;
    border: solid 1px #039a0d;
    padding: 6px;
    background-position: 6px 6px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

#share .weixin:hover .erweimas {
    display: block;
    right: 61px;
    width: 122px;
    height: 122px;
    background: #fff url(../../images/about/fsdewm.png) no-repeat 6px 6px;
    background-size: 110px;
}

#share .tel {
    position: relative;
    background-color: #3975ab;
    background-position: 5px -202px;
}

#share .tel .telsd {
    position: absolute;
    right: -200px;
    top: 0;
    height: 60px;
    line-height: 60px;
    width: 150px;
    background: #29557c;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

#share .tel:hover {
    background-color: #29557c;
}

#share .tel:hover .telsd {
    display: block;
    right: 61px;
}

#share #totop {
    background-color: #333333;
    background-position: 5px -145px;
    cursor: pointer;
}

#share #totop:hover {
    background-color: #222;
}

@media (max-width: 767px) {
    #share {
        display: none;
    }
    .company_t2 {
        font-size: 18px;
        text-align: center;
        height: 40px;
        line-height: 27px;
        color: #5b5b5b;
    }
    .qywh-item2 .img-fluid{
        padding: 10px 20px;
    }
}
.caseConten{
    padding:30px 0 ;
}
.caseConten .col-lg-3 {
padding: 10px;
}
.caseConten .child {
    position: relative;
    width: 100%;
    height: 218px;
}
.caseConten .childImg {
    width: 100%;
    height: 100%;
    vertical-align: middle;

}


.caseConten .child .childHide {
    display: none;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(000, 000, 000, 0.7);
}

.caseConten .child .childTag {
    letter-spacing: 0.1em;
    font-weight: 100;
    font-stretch: condensed;
    padding: 6%;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 88%;
    *width: 60%;
    font-size: 24px;
    font-family: 'MyriadPro-LightCond';
    font-size: 24px;
    color: #fff;
    text-align: left;
}

.caseConten .child .childContent {
    position: absolute;
    top: 50%;
    left: 0px;
    height: 54px;
    width: 100%;
    margin-top: -27px;
}

.caseConten .child .childContent .title {
    width: 80%;
    font-size: 21px;
    color: #fff;
    margin: 0 auto;
    position: relative;
    top: -40px;
    left: 0px;

}

.caseConten .child:hover .childs {
    display: none;
}
.caseConten .child .childs {
    background: #000;
    opacity: 0.5;
    line-height: 35px;
    color: #fff;
    position: relative;
    bottom: 35px;
    left: 0px;
    width: 100%;
}
.caseConten .child .childPointer {
    position: relative;
    top: 116px;
}
.interested{
    margin: 30px 0;
    padding: 30px 0 0 0;
    border-top: #e2e2e2 1px solid;
}
.interested>div{
    font-size: 50px;
    line-height: 50px;
}.interested .title {
     color: #444;
     font-size: 48px;
     line-height: 48px;
     margin-top: 10px;
}
.interested .info {
    color: #444;
    font-size: 22px;
    line-height: 35px;
}
.interested .mainSub {
    width: 188px;
    height: 2px;
    background: #e60012;
    margin: 0 auto;
}
.login_box {
    padding: 120px 0 100px;
    background: #515253;
}.login_box {
    padding: 120px 0 100px;
    background: #515253;
}

.login-account {
    background: #fff;
    padding: 20px 30px;
    overflow: hidden;
}

.login-r i{
    position: relative;
    left: 8px;
    top: 30px;
    z-index: 50;
    color: darkgrey;
}
.login_conten .form-control{
    padding: .375rem 0.75rem .375rem 1.75rem;
}
.login-account form p input {
    height: 41px;
    width: 100%;
    font-size: 15px;
    padding-left: 33px;
    border: 1px solid #dddddd;
}
.login-account form .pwd:before {
    background-position: -119px 0;
}
.login-r{
    max-width: 350px;
}

.login-r #canvas{
    position: relative;
    top: -34px;
    border-radius: .25rem;
    height: 33px;
    right: 1px;
}
.login-r p:last-child{
    padding-left:10px ;
}
.login-r p a:hover{
    color: #0a53be;
}
.login-r input[type=button] {
    width: 100%;
    height: 43px;
    margin: 10px 0;
    border: 0;
    background: #059fff;
    font-size: 18px;
    color: #fff;
    text-align: center;
    cursor: pointer;
}


.login_conten h4{
    margin-bottom: 40px;
    font-size: 28px;
    color: #fff;
}
.login_conten .col-md-7 div{
    height: 25px;
    line-height: 25px;
    font-size: 16px;
    margin-bottom: 20px;
    color: #fff;
}
.ld-form i{
     position: relative;
     top: 36px;
     left: 10px;
    color: #888888;
 }
.login_conten .login-r{
    padding: 10px 30px 10px;
    background: #fff;
}
.login-r h3{
    height: 43px;
    line-height: 43px;
    margin: 0;
    font-size: 20px;
    color: #333;
}
.login-r .forget-links{
    line-height: 16px;
    margin: 0;
    padding: 0 8.5px;
    border-right: 1px solid #d8d8d8;
    color: #888888;
}
.login-r .register-links{
    line-height: 16px;
    margin: 0;
    padding: 0 8.5px;
    color: #888888;
}
#dituContent {
    height: 313px;
    margin: 10px 10px;
}
@media (max-width: 768px) {
    .login-r{
        max-width: 100%;
    }
    .login_box {
        padding: 20px 0;
        background: #515253;
    }
    #dituContent {
        height: 313px;
        margin: 10px 0;
    }

}