/*------------------------------------------------------------------
[Master Stylesheet]
Theme Name:     Hostar - Hosting & Domain WordPress Theme
Version:        1.0.4
Author:         wpocans
URL:            http://themeforest.net/user/wpocans
-------------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
#0.1  Theme Reset Style
#0.2  Global Elements
#0.3  header
#0.4  wpo-hero-style
#0.5  wpo-features-area
#0.5  blog-section

--------------------------------------------------------------
  #blog page
--------------------------------------------------------------
#5.1  blog-pg-section

--------------------------------------------------------------
  #blog single page
--------------------------------------------------------------
#6.1  blog-single-section


--------------------------------------------------------------
  #category page
--------------------------------------------------------------
#7.1  category-page-section


--------------------------------------------------------------
  #author page
--------------------------------------------------------------
#8.1  author-info-section
#8.1  user-info-tab-section


----------------------------------------------------------------*/
/*---------------------------
  Fonts
----------------------------*/
@font-face {
    font-family: 'Now';
    src: url(../fonts/text-fonts/now-regular.otf) format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Now';
    src: url(../fonts/text-fonts/now-medium.otf) format("truetype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Now';
    src: url(../fonts/text-fonts/now-light.otf) format("truetype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Now';
    src: url(../fonts/text-fonts/now-thin.otf) format("truetype");
    font-weight: 200;
    font-style: normal;
}

/*--------------------------------------------------------------
#0.1    Theme Reset Style
--------------------------------------------------------------*/
html {
    font-size: 16px;
}

body {
    font-family: "Open Sans", sans-serif;
    background-color: #fff;
    font-size: 16px;
    font-size: 1rem;
    color: #687693;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    body {
        font-size: 14px;
    }
}

p {
    color: #687693;
    line-height: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Rubik', sans-serif;
    color: #242f6c;
}

ul {
    padding-left: 0;
    margin: 0;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
}

a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
}

/*--------------------------------------------------------------
#0.2    Global Elements
--------------------------------------------------------------*/
.page-wrapper {
    position: relative;
    overflow: hidden;
}

.wow {
    visibility: hidden;
}

.fi:before {
    margin: 0;
}

.section-padding {
    padding: 120px 0;
}

@media (max-width: 991px) {
    .section-padding {
        padding: 90px 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.875rem;
    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: 1.875rem;
    color: #1bcdf8;
    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 {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotating {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.rotating {
    -webkit-animation: rotating 5s alternate infinite;
    animation: rotating 5s alternate infinite;
}

/** 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;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    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;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .section-title {
        margin-bottom: 40px;
    }
}

.section-title h2 {
    font-size: 30px;
    font-size: 1.875rem;
    font-weight: bold;
    margin: 0 0 0.67em;
}

@media (max-width: 991px) {
    .section-title h2 {
        font-size: 25px;
        font-size: 1.5625rem;
    }
}

@media (max-width: 767px) {
    .section-title h2 {
        font-size: 22px;
        font-size: 1.375rem;
    }
}

.section-title p {
    margin: 0;
}


.section-title {
    margin: auto;
    margin-bottom: 55px;
    text-align: center;
}

.page-wrapper .section-title p {
    max-width: 518px;
    margin: auto;
}

.section-title h2 {
    padding-bottom: 25px;
    position: relative;
    display: inline-block;
    color: #2d4277;
    font-size: 36px;
    font-weight: 500;
}

.section-title h2:before {
    position: absolute;
    content: "";
    left: 50%;
    bottom: 0;
    width: 100px;
    height: 5px;
    background: #1bcdf8;
    border-radius: 15px;
    transform: translateX(-50%);
}

.section-title h2:after {
    position: absolute;
    content: "";
    left: 56%;
    bottom: 0;
    width: 8px;
    height: 5px;
    border-radius: 15px;
    background: #fff;
    transform: translateX(-60%);
}

@media (max-width: 991px) {
    .section-title h2 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .section-title h2 {
        font-size: 22px;
        font-size: 1.375rem;
    }
}

.theme-btn,
.theme-btn-s2,
.theme-btn-s4,
.theme-btn-s3 {
    background-color: #fff;
    color: #2d4277;
    font-weight: 700;
    padding: 13px 38px;
    border-radius: 50px;
    display: inline-block;
    transition: all .3s;
}

@media (max-width: 991px) {

    .theme-btn,
    .theme-btn-s2,
    .theme-btn-s4,
    .theme-btn-s3 {
        font-size: 14px;
        font-size: 0.875rem;
        padding: 10px 25px;
    }
}

.theme-btn:hover,
.theme-btn-s2:hover,
.theme-btn-s4:hover,
.theme-btn-s3:hover,
.theme-btn:focus,
.theme-btn-s2:focus,
.theme-btn-s4:focus,
.theme-btn-s3:focus,
.theme-btn:active,
.theme-btn-s2:active,
.theme-btn-s4:active,
.theme-btn-s3:active {
    background-color: #1bcdf8;
    color: #fff;
}

.theme-btn-s4 {
    font-weight: 400;
    color: #666666;
    transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
}

.theme-btn-s2 {
    border: none;
    background: none;
    border: 2px solid #fff;
    color: #fff;
}

.theme-btn-s2:hover,
.theme-btn-s4:hover,
.theme-btn-s2:focus,
.theme-btn-s4:focus,
.theme-btn-s2:active,
.theme-btn-s4:active {
    background-position: 100% !important;
    color: #fff;
}

.theme-btn-s3 {
    padding: 13px 30px;
}

@media (max-width: 991px) {
    .theme-btn-s3 {
        font-size: 14px;
        font-size: 0.875rem;
        padding: 10px 25px;
    }
}

.theme-btn-s4 {
    padding: 15px 48px;
    border-radius: 55px;
}

@media (max-width: 991px) {
    .theme-btn-s4 {
        font-size: 14px;
        font-size: 0.875rem;
        padding: 10px 25px;
    }
}

.view-cart-btn {
    display: block;
    margin-top: 20px;
    font-family: 'now';
    background: #1bcdf8;
    color: #fff;
    padding: 8px 10px;
    font-size: 14px;
}
.view-cart-btn:hover {
    color: #fff;
    background: #0461e6;
}
.social-links {
    overflow: hidden;
}

.social-links li {
    float: left;
    width: 35px;
    height: 35px;
    margin-right: 1px;
}

.social-links li a {
    background-color: #05f2ff;
    width: 35px;
    height: 35px;
    line-height: 35px;
    display: block;
    color: #fff;
    text-align: center;
}

.social-links li a:hover {
    background-color: #1bcdf8;
}

/******************************
  #page title
******************************/
.wpo-page-title {
    background-color: #584AA8;
    width: 100%;
    height: 435px;
    text-align: center;
    position: relative;
}

@media (max-width: 991px) {
    .wpo-page-title {
        height: 300px;
    }
}

@media screen and (min-width: 992px) {
    .wpo-page-title .container {
        padding-top: 90px;
    }
}


.wpo-page-title .container {
    height: 100%;
    display: table;
}

.wpo-page-title .container>.row {
    vertical-align: middle;
    display: table-cell;
}

.wpo-page-title h2 {
    font-size: 40px;
    font-size: 2.5rem;
    font-weight: 500;
    margin: 0 0 0.30em;
    text-transform: capitalize;
    color: #fff;
}

@media (max-width: 991px) {
    .wpo-page-title h2 {
        font-size: 35px;
        font-size: 2.1875rem;
    }
}

@media (max-width: 767px) {
    .wpo-page-title h2 {
        font-size: 30px;
        font-size: 1.875rem;
    }
}

.wpo-page-title .breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .wpo-page-title .breadcrumb {
        text-align: center;
    }
}

.wpo-page-title .breadcrumb li {
    font-size: 16px;
    font-size: 1rem;
    margin-right: 5px;
    position: relative;
}

@media (max-width: 767px) {
    .wpo-page-title .breadcrumb li {
        font-size: 14px;
        font-size: 0.875rem;
    }
}

.wpo-page-title .breadcrumb li a {
    color: #1bcdf8;
}

.wpo-page-title .breadcrumb li a:hover {
    color: #00aeb8;
}

.wpo-page-title .breadcrumb>li+li {
    margin-left: 20px;
    padding-left: 15px;
}

.wpo-page-title .breadcrumb>li+li:before {
    content: "/";
    padding: 0;
    position: absolute;
    left: -14px;
    top: 1px;
    color: #1bcdf8;
}

.preloader {
    background-color: #fff;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 1000;
}

.preloader .sk-folding-cube {
    margin: 20px auto;
    width: 60px;
    height: 60px;
    position: absolute;
    left: calc(50% - 30px);
    top: calc(50% - 50px);
    -webkit-transform: rotateZ(45deg);
    -ms-transform: rotate(45deg);
    transform: rotateZ(45deg);
}

.preloader .sk-folding-cube .sk-cube {
    float: left;
    width: 50%;
    height: 50%;
    position: relative;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.preloader .sk-folding-cube .sk-cube:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1bcdf8;
    -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
    animation: sk-foldCubeAngle 2.4s infinite linear both;
    -webkit-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
}

.preloader .sk-folding-cube .sk-cube2 {
    -webkit-transform: scale(1.1) rotateZ(90deg);
    -ms-transform: scale(1.1) rotate(90deg);
    transform: scale(1.1) rotateZ(90deg);
}

.preloader .sk-folding-cube .sk-cube3 {
    -webkit-transform: scale(1.1) rotateZ(180deg);
    -ms-transform: scale(1.1) rotate(180deg);
    transform: scale(1.1) rotateZ(180deg);
}

.preloader .sk-folding-cube .sk-cube4 {
    -webkit-transform: scale(1.1) rotateZ(270deg);
    -ms-transform: scale(1.1) rotate(270deg);
    transform: scale(1.1) rotateZ(270deg);
}

.preloader .sk-folding-cube .sk-cube2:before {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.preloader .sk-folding-cube .sk-cube3:before {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.preloader .sk-folding-cube .sk-cube4:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
}

@-webkit-keyframes sk-foldCubeAngle {

    0%,
    10% {
        -webkit-transform: perspective(140px) rotateX(-180deg);
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }

    25%,
    75% {
        -webkit-transform: perspective(140px) rotateX(0deg);
        transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    }

    90%,
    100% {
        -webkit-transform: perspective(140px) rotateY(180deg);
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}

@keyframes sk-foldCubeAngle {

    0%,
    10% {
        -webkit-transform: perspective(140px) rotateX(-180deg);
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }

    25%,
    75% {
        -webkit-transform: perspective(140px) rotateX(0deg);
        transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    }

    90%,
    100% {
        -webkit-transform: perspective(140px) rotateY(180deg);
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}

/*------------------------------------
  blog sidebar
------------------------------------*/
.wpo-blog-sidebar {
    /*** search-widget ***/
    /*** category-widget ***/
    /*** recent-post-widget ***/
    /*** quote-widget ****/
    /*** tag-widget ***/
}

@media screen and (min-width: 992px) {
    .wpo-blog-sidebar {
        padding-left: 45px;
    }
    .left-sidebar .wpo-blog-sidebar {
        padding-left: 0px;
    }
}

@media (max-width: 991px) {
    .wpo-blog-sidebar {
        margin-top: 80px;
        max-width: 400px;
    }
}

@media (max-width: 767px) {
    .wpo-blog-sidebar {
        margin-top: 60px;
        max-width: 400px;
    }
}

.wpo-blog-sidebar .widget {
    background: #fcfcfc;
    padding: 40px;
}
.wpo-blog-sidebar .widget ul li a,
.wpo-blog-sidebar .widget  {
    font-family: 'Rubik', sans-serif;
}
.wpo-blog-sidebar .widget h3 ,
.wpo-blog-sidebar .widget_block h2 {
 	font-size: 18px;
	font-weight:500;
    display: block;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 0.8em;
    margin: 0 0 1.2em;
    position: relative;
    text-transform: capitalize;
}
.wpo-blog-sidebar .widget h3:before ,
.wpo-blog-sidebar .widget_block h2:before {
	content: "";
    background: #1bcdf8;
    width: 40px;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -2px;
    right: 0;
    text-align: center;
}
.wpo-blog-sidebar .wp-block-search .wp-block-search__input {
    border: 1px solid #eee;
    height: 50px;
}
.wpo-blog-sidebar .wp-block-search .wp-block-search__button {
    background: #1bcdf8;
    width: 50px;
    height: 50px;
    line-height: 41px;
    color: #fff;
    border: none;
}
.wpo-blog-sidebar ol.wp-block-latest-comments {
    padding-left: 0;
}
.wpo-blog-sidebar>.widget+.widget {
    margin-top: 65px;
}

.wpo-blog-sidebar .search-widget {
    border: 0;
    padding: 0;
}

.wpo-blog-sidebar .search-widget form div {
    position: relative;
}

.wpo-blog-sidebar .search-widget input {
    height: 50px;
    font-size: 16px;
    font-size: 1rem;
    border: 1px solid #ebebeb;
    padding: 6px 50px 6px 20px;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

.wpo-blog-sidebar .search-widget input:focus {
    background-color: rgba(0, 198, 209, 0.1);
}

.wpo-blog-sidebar .search-widget form button {
    background: #1bcdf8;
    font-size: 20px;
    font-size: 1.25rem;
    color: #fff;
    border: 0;
    outline: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    position: absolute;
    right: 0;
    top: 0;
}

.wpo-blog-sidebar .category-widget ul {
    list-style: none;
}

.wpo-blog-sidebar .category-widget ul li {
    font-size: 15px;
    font-size: 0.9375rem;
    position: relative;
    padding-left: 20px;
}

.wpo-blog-sidebar .category-widget ul li:before {
    content: "";
    background: #bbb;
    width: 6px;
    height: 6px;
    position: absolute;
    left: 0;
    top: 8px;
}

@media (max-width: 767px) {
    .wpo-blog-sidebar .category-widget ul li {
        font-size: 14px;
        font-size: 0.875rem;
    }
}

.wpo-blog-sidebar .category-widget ul li span {
    position: absolute;
    right: 0;
}

.wpo-blog-sidebar .category-widget ul>li+li {
    margin-top: 12px;
}

.wpo-blog-sidebar .category-widget ul a {
    display: block;
    color: #525252;
}

.wpo-blog-sidebar .category-widget ul a:hover {
    color: #1bcdf8;
}

.wpo-blog-sidebar .category-widget ul li:hover:before {
    background: #1bcdf8;
}

.wpo-blog-sidebar .recent-post-widget .post {
    overflow: hidden;
}

.wpo-blog-sidebar .recent-post-widget .posts>.post+.post {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f2f0f0;
}

.wpo-blog-sidebar .recent-post-widget .post .img-holder {
    width: 68px;
    float: left;
}

.wpo-blog-sidebar .recent-post-widget .post .details {
    width: calc(100% - 68px);
    float: left;
    padding-left: 20px;
}

.wpo-blog-sidebar .recent-post-widget .post h4 {
    font-size: 14px;
    line-height: 1.6em;
    margin: 0 0 0.3em;
}

@media (max-width: 1199px) {
    .wpo-blog-sidebar .recent-post-widget .post h4 {
        margin: 0;
    }
}

.wpo-blog-sidebar .recent-post-widget .post h4 a {
    display: inline-block;
    color: #323544;
}

.wpo-blog-sidebar .recent-post-widget .post h4 a:hover {
    color: #1bcdf8;
}

.wpo-blog-sidebar .recent-post-widget .post .details .date {
    font-size: 13px;
    font-size: 0.8125rem;
    color: #525252;
}

.wpo-blog-sidebar .recent-post-widget .post .details .date i {
    display: inline-block;
    padding-right: 7px;
}

.wpo-blog-sidebar .quote-widget {
    border: 0;
    padding: 0;
}

.wpo-blog-sidebar .quote-widget .quote {
    background-color: #f5f5f5;
    padding: 30px;
}

.wpo-blog-sidebar .quote-widget .quote p {
    margin: 0;
}

.wpo-blog-sidebar .quote-widget i {
    display: block;
}

.wpo-blog-sidebar .quote-widget .fi:before {
    font-size: 35px;
}

.wpo-blog-sidebar .quote-widget .quoter {
    position: relative;
    padding: 25px 25px 25px 110px;
}

.wpo-blog-sidebar .quote-widget .quoter .img-holder {
    position: absolute;
    left: 0;
}

.wpo-blog-sidebar .quote-widget .quoter img {
    padding: 5px;
    border: 1px solid #dcdcdc;
    border-radius: 50%;
}

.wpo-blog-sidebar .quote-widget .quoter h4 {
    font-size: 16px;
    font-size: 1rem;
    font-weight: bold;
    margin: 0 0 0.3em;
    padding-top: 1.3em;
}

.wpo-blog-sidebar .quote-widget .quoter h4+p {
    font-size: 14px;
    font-size: 0.875rem;
    margin: 0;
}

.wpo-blog-sidebar .tag-widget ul {
    overflow: hidden;
    list-style: none;
}

.wpo-blog-sidebar .tag-widget ul li {
    float: left;
    margin: 0 8px 8px 0;
}

.wpo-blog-sidebar .tag-widget ul li a {
    font-size: 13px;
    font-size: 0.8125rem;
    display: inline-block;
    padding: 5px 14px;
    color: #525252;
    border: 1px solid #ebebeb;
    border-radius: 0;
}

.wpo-blog-sidebar .tag-widget ul li a:hover {
    background: #1bcdf8;
    color: #fff;
}

/**** pagination ****/
.pagination-wrapper {
    text-align: center;
    margin-top: 45px;
}

@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 {
    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: #f5f5f5;
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 15px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #666;
    border: 0;
    display: block;
    border-radius: 5px;
}

.pagination-wrapper .pg-pagination .active a,
.pagination-wrapper .pg-pagination li a:hover {
    background: #1bcdf8;
    background: -webkit-linear-gradient(left, #06c5f3, #00ded8);
    background: -moz-linear-gradient(left, #06c5f3, #00ded8);
    background: -o-linear-gradient(left, #06c5f3, #00ded8);
    background: -ms-linear-gradient(left, #06c5f3, #00ded8);
    background: -webkit-gradient(linear, left top, right top, from(#06c5f3), to(#00ded8));
    background: linear-gradient(left, #06c5f3, #00ded8);
    border-color: #1bcdf8;
    color: #fff;
}

.pagination-wrapper .pg-pagination .fi:before {
    font-size: 15px;
    font-size: 0.9375rem;
}

.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;
    }
}

/*------------------------------------
  category sidebar
------------------------------------*/
.category-sidebar {
    /*** category-widget ***/
    /*** tag-widget ***/
}

@media screen and (min-width: 992px) {
    .category-sidebar {
        padding-right: 45px;
    }
}

@media (max-width: 991px) {
    .category-sidebar {
        margin-bottom: 80px;
        max-width: 400px;
    }
}

@media (max-width: 767px) {
    .category-sidebar {
        margin-bottom: 60px;
        max-width: 400px;
    }
}

.category-sidebar .widget {
    padding: 30px;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
    box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
}

.category-sidebar .widget h3 {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 600;
    border-bottom: 1px solid #ebebeb;
    margin: 0 -30px 30px;
    padding: 0 0 30px 30px;
    position: relative;
    text-transform: capitalize;
}

.category-sidebar>.widget+.widget {
    margin-top: 30px;
}

.category-sidebar .category-widget ul {
    list-style: none;
}

.category-sidebar .category-widget ul li {
    font-size: 15px;
    font-size: 0.9375rem;
    position: relative;
    padding-left: 20px;
}

.category-sidebar .category-widget ul li:before {
    content: "";
    background: #bbb;
    width: 6px;
    height: 6px;
    position: absolute;
    left: 0;
    top: 8px;
}

@media (max-width: 767px) {
    .category-sidebar .category-widget ul li {
        font-size: 14px;
        font-size: 0.875rem;
    }
}

.category-sidebar .category-widget ul li span {
    position: absolute;
    right: 0;
}

.category-sidebar .category-widget ul>li+li {
    margin-top: 12px;
}

.category-sidebar .category-widget ul a {
    display: block;
    color: #525252;
}

.category-sidebar .category-widget ul a:hover {
    color: #1bcdf8;
}

.category-sidebar .category-widget ul li:hover:before {
    background: #1bcdf8;
}

.category-sidebar .tag-widget {
    padding: 15px 0;
}

.category-sidebar .tag-widget ul {
    list-style: none;
}

.category-sidebar .tag-widget ul li {
    font-size: 15px;
    font-size: 0.9375rem;
    position: relative;
}

.category-sidebar .tag-widget ul li:before {
    content: "";
    width: 15px;
    height: 15px;
    border: 3px solid #d7d7d7;
    border-radius: 50%;
    position: absolute;
    left: 30px;
    top: 15px;
}

@media (max-width: 767px) {
    .category-sidebar .tag-widget ul li {
        font-size: 14px;
        font-size: 0.875rem;
    }
}

.category-sidebar .tag-widget ul a {
    display: block;
    color: #525252;
    padding: 12px 15px 12px 60px;
}

.category-sidebar .tag-widget ul a:hover {
    background: #1bcdf8;
    background: -webkit-linear-gradient(left, #06c5f3, #00ded8);
    background: -moz-linear-gradient(left, #06c5f3, #00ded8);
    background: -o-linear-gradient(left, #06c5f3, #00ded8);
    background: -ms-linear-gradient(left, #06c5f3, #00ded8);
    background: -webkit-gradient(linear, left top, right top, from(#06c5f3), to(#00ded8));
    background: linear-gradient(left, #06c5f3, #00ded8);
    color: #fff;
}

.category-sidebar .tag-widget ul li:hover:before {
    border-color: #fff;
}

.theme-accordion-s1 {
    margin-bottom: 0;
}

.theme-accordion-s1 .panel-default {
    background: transparent;
    border: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.theme-accordion-s1 .panel-heading {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
}

.theme-accordion-s1 .panel+.panel {
    margin-top: 15px;
}

.theme-accordion-s1 .panel-heading a {
    background: #1bcdf8;
    font-size: 18px;
    font-size: 1.125rem;
    color: #fff;
    display: block;
    padding: 18px 25px;
    position: relative;
}

@media (max-width: 991px) {
    .theme-accordion-s1 .panel-heading a {
        font-size: 16px;
        font-size: 1rem;
        padding: 15px 25px;
    }
}

@media (max-width: 767px) {
    .theme-accordion-s1 .panel-heading a {
        padding: 12px 15px;
    }
}

.theme-accordion-s1 .panel-heading a:before {
    font-family: "themify";
    content: "\e64b";
    font-size: 15px;
    font-size: 0.9375rem;
    position: absolute;
    right: 25px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

@media (max-width: 991px) {
    .theme-accordion-s1 .panel-heading a:before {
        font-size: 18px;
        font-size: 1.125rem;
        right: 20px;
    }
}

.theme-accordion-s1 .panel-heading a:focus {
    text-decoration: none;
}

.theme-accordion-s1 .panel-heading .collapsed {
    background-color: #fff;
    color: #242f6c;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
    box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
}

.theme-accordion-s1 .panel-heading .collapsed:before {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}

.theme-accordion-s1 .panel-heading+.panel-collapse>.panel-body {
    background-color: #fff;
    border: 0;
    padding: 40px 25px 15px;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
    box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
}

@media (max-width: 991px) {
    .theme-accordion-s1 .panel-heading+.panel-collapse>.panel-body {
        padding: 20px 25px 10px;
        font-size: 15px;
        font-size: 0.9375rem;
    }
}

@media (max-width: 767px) {
    .theme-accordion-s1 .panel-heading+.panel-collapse>.panel-body {
        padding: 15px 15px 8px;
    }
}

.theme-accordion-s1 .panel-heading+.panel-collapse>.panel-body p {
    margin-bottom: 1.3em;
}

/*--------------------------------------------------------------
#0.3  header
--------------------------------------------------------------*/
.wpo-site-header {
    /* navigation open and close btn hide for width screen */
    /* style for navigation less than 992px */
    /*navbar collaps less then 992px*/
}

.wpo-site-header .navigation {
    background-color: #fff;
    margin-bottom: 0;
    border: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
}

.wpo-site-header .navigation>.container {
    position: relative;
}

.wpo-site-header #navbar {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    /*** mega-menu style ***/
}

.wpo-site-header #navbar ul {
    list-style: none;
}

.wpo-site-header #navbar>ul li a:hover,
.wpo-site-header #navbar>ul li a:focus {
    text-decoration: none;
    color: #1bcdf8;
}

.wpo-site-header.header-style-1 #navbar>ul>li a:hover {
    color: #eee;
}

.wpo-site-header.header-style-1 #navbar>ul>li .sub-menu a {
    color: #2d4277;
}

@media screen and (min-width: 992px) {
    .wpo-site-header #navbar {
        /*** hover effect ***/
    }

    .wpo-site-header #navbar li {
        position: relative;
    }

    .wpo-site-header #navbar>ul>li>a {
        font-size: 16px;
        font-size: 1rem;
    }

    .wpo-site-header #navbar>ul .sub-menu {
        background-color: #fff;
        width: 220px;
        position: absolute;
        left: 0;
        top: 108%;
        z-index: 10;
        visibility: hidden;
        opacity: 0;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        -ms-transition: all 0.3s;
        transition: all 0.3s;
        -webkit-box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    }

    .wpo-site-header #navbar>ul>li .sub-menu li {
        border-bottom: 1px solid #f5f5f5;
    }

    .wpo-site-header #navbar>ul>li .sub-menu a {
        font-size: 14px;
        font-size: 0.875rem;
        display: block;
        padding: 10px 20px;
        color: #525252;
		text-align:left;
    }

    .wpo-site-header #navbar>ul>li>.sub-menu .sub-menu {
        left: 100%;
        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: "\e649";
        font-size: 11px;
        font-size: 0.6875rem;
        position: absolute;
        right: 15px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .wpo-site-header #navbar>ul>li:hover>.sub-menu {
        top: 104%;
        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.875rem;
    }

    .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: "\e61a";
        font-size: 11px;
        font-size: 0.6875rem;
        position: absolute;
        right: 15px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

@media screen and (min-width: 992px) {
    .wpo-site-header #navbar {
        /*** hover effect ***/
    }

    .wpo-site-header #navbar .has-mega-menu {
        position: static;
    }

    .wpo-site-header #navbar .mega-menu,
    .wpo-site-header #navbar .half-mega-menu {
        background-color: #fff;
        padding: 20px;
        border-top: 2px solid #1bcdf8;
        position: absolute;
        right: 0;
        top: 100%;
        z-index: 10;
        visibility: hidden;
        opacity: 0;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        -ms-transition: all 0.3s;
        transition: all 0.3s;
    }

    .wpo-site-header #navbar .mega-menu {
        width: 1140px;
        right: 15px;
    }

    .wpo-site-header #navbar .half-mega-menu {
        width: 585px;
    }

    .wpo-site-header #navbar .mega-menu-box-title {
        font-size: 14px;
        font-size: 0.875rem;
        text-transform: uppercase;
        font-weight: bold;
        display: block;
        padding-bottom: 7px;
        margin-bottom: 7px;
        border-bottom: 1px solid #e6e6e6;
    }

    .wpo-site-header #navbar .mega-menu-list-holder li a {
        font-size: 14px;
        font-size: 0.875rem;
        display: block;
        padding: 7px 8px;
        margin-left: -8px;
    }

    .wpo-site-header #navbar .has-mega-menu:hover>ul {
        top: 100%;
        visibility: visible;
        opacity: 1;
    }
}

@media (max-width: 1199px) {
    .wpo-site-header #navbar>ul .mega-menu {
        width: 950px;
        right: 15px;
    }

    .wpo-site-header #navbar>ul .half-mega-menu {
        width: 485px;
    }
}

@media (max-width: 991px) {

    .wpo-site-header #navbar>ul .mega-menu,
    .wpo-site-header #navbar>ul .half-mega-menu {
        width: auto;
    }

    .wpo-site-header #navbar>ul .mega-menu .row,
    .wpo-site-header #navbar>ul .half-mega-menu .row {
        margin: 0;
    }

    .wpo-site-header #navbar .mega-menu-content>.row>.col {
        margin-bottom: 25px;
    }
}

@media (max-width: 991px) {
    .wpo-site-header #navbar .mega-menu .mega-menu-list-holder a {
        padding: 5px 15px 5px 40px;
    }

    .wpo-site-header #navbar .mega-menu .mega-menu-box-title {
        font-size: 14px;
        font-size: 0.875rem;
        text-transform: uppercase;
        display: block;
        border-bottom: 1px dotted #b3b3b3;
        padding: 0 0 4px 5px;
        margin: 0 25px 8px 25px;
    }
}

@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%;
    }

    .wpo-site-header .navbar-header button {
        background-color: #1bcdf8;
        width: 40px;
        height: 35px;
        border: 0;
        padding: 5px 10px;
        outline: 0;
        position: absolute;
        right: 15px;
        top: 10px;
        z-index: 20;
    }

    .wpo-site-header .navbar-header button span {
        background-color: #fff;
        display: block;
        height: 2px;
        margin-bottom: 5px;
    }

    .wpo-site-header .navbar-header button span:last-child {
        margin: 0;
    }

    .wpo-site-header #navbar {
        background: #fff;
        display: block !important;
        width: 280px;
        height: 100% !important;
        margin: 0;
        padding: 0;
        border-left: 1px solid #cccccc;
        border-right: 1px solid #cccccc;
        position: fixed;
        right: -330px;
        top: 0;
        z-index: 100;
    }

    .wpo-site-header #navbar ul a {
        color: #000;
    }

    .wpo-site-header #navbar ul a:hover,
    .wpo-site-header #navbar ul li.current a {
        color: #1bcdf8;
    }
    .wpo-site-header.header-style-1 #navbar>ul>li a:hover {
        color: #1bcdf8;
    }
    .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;
    }

    .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 {
        right: 0 !important;
    }
}

@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;
    }

    .wpo-site-header .navbar-right {
        float: none;
    }

    .wpo-site-header .navbar-nav {
        float: none;
    }

    .wpo-site-header .navbar-nav>li {
        float: none;
    }
}

@media (max-width: 991px) {
    .page-wrapper {
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        -ms-transition: all 0.3s;
        transition: all 0.3s;
    }

    
}

/*---------------------------------------------
  header style 1
----------------------------------------------*/
.header-style-1,
.header-style-2 {
    /*** cart-search-contact ***/
}

@media screen and (min-width: 992px) {

    .header-style-1,
    .header-style-2 {
        width: 100%;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 100;
        padding-top: 30px;
    }

    .header-style-1 {
        padding-top: 0px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .header-style-1 .navigation,
    .header-style-2 .navigation {
        background-color: transparent;
    }

    .header-style-1 #navbar,
    .header-style-2 #navbar {
        margin-right: 150px;
    }

    .header-style-1 #navbar>ul>li>a,
    .header-style-2 #navbar>ul>li>a {
        font-size: 14px;
        font-size: 0.875rem;
        color: #525252;
        padding: 25px 12px;
    }
}

@media screen and (min-width: 1200px) {
	.header-style-1 #navbar {
		display: inline-block!important;
		margin:0px 130px 0px  auto;
		float: none!important;
	}
}
@media screen and (min-width: 1200px) {
	.header-style-1 .navigation {
		text-align: center;
	}
}


@media screen and (min-width: 992px) {
    .header-style-1 #navbar>ul>li>a {
        color: #fff;
    }
}

@media screen and (min-width: 1200px) {

    .header-style-1 #navbar>ul>li>a,
    .header-style-2 #navbar>ul>li>a {
        font-size: 15px;
        padding: 38px 14px;
        padding-bottom: 35px;
    }
}

@media (max-width: 991px) {

    .header-style-1 .navigation,
    .header-style-2 .navigation {
        padding: 15px 0;
    }

    .header-style-2 .navbar-brand {
        padding-top: 0px;
    }
    .header-style-1 .navbar-brand {
        padding-top: 8px;
    }
}

.header-style-1 .wpo-cart-search-contact,
.header-style-2 .wpo-cart-search-contact {
    position: absolute;
    right: 100px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 10;
}

@media (max-width: 991px) {

    .header-style-1 .wpo-cart-search-contact,
    .header-style-2 .wpo-cart-search-contact {
        right: 75px;
    }
}

@media (max-width: 450px) {

    .header-style-1 .wpo-cart-search-contact,
    .header-style-2 .wpo-cart-search-contact {
        right: 80px;
    }
}

.header-style-1 .wpo-cart-search-contact button,
.header-style-2 .wpo-cart-search-contact button {
    background: transparent;
    padding: 0;
    border: 0;
    outline: 0;
}

.header-style-1 .wpo-cart-search-contact .fi:before,
.header-style-2 .wpo-cart-search-contact .fi:before {
    font-size: 18px;
    font-size: 1.125rem;
    color: #525252;
}

.header-style-1 .wpo-cart-search-contact .fi:before {
    color: #fff;
}
.header-style-1 .wpo-cart-search-contact .wpo-header-search-form .fi:before {
    color: #392c84;
}
.header-style-1 .wpo-cart-search-contact>div,
.header-style-2 .wpo-cart-search-contact>div {
    float: left;
    position: relative;
}

.header-style-1 .wpo-cart-search-contact>div+div,
.header-style-2 .wpo-cart-search-contact>div+div {
    margin-left: 23px;
}

.header-style-1 .wpo-cart-search-contact .wpo-header-search-form,
.header-style-2 .wpo-cart-search-contact .wpo-header-search-form {
    position: absolute;
    width: 250px;
    right: 0;
    top: 51px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-box-shadow: 0px 15px 60px -19px black;
    box-shadow: 0px 15px 60px -19px black;
}

@media (max-width: 991px) {

    .header-style-1 .wpo-cart-search-contact .wpo-header-search-form,
    .header-style-2 .wpo-cart-search-contact .wpo-header-search-form {
        top: 68px;
    }
}

@media (max-width: 767px) {

    .header-style-1 .wpo-cart-search-contact .wpo-header-search-form,
    .header-style-2 .wpo-cart-search-contact .wpo-header-search-form {
        top: 63px;
        right: 15px;
    }
}

.header-style-1 .wpo-cart-search-contact form div,
.header-style-2 .wpo-cart-search-contact form div {
    position: relative;
}

.header-style-1 .wpo-cart-search-contact form div button,
.header-style-2 .wpo-cart-search-contact form div button {
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.header-style-1 .wpo-cart-search-contact .search-toggle-btn,
.header-style-2 .wpo-cart-search-contact .search-toggle-btn {
    padding-top: 5px;
}
@media (max-width: 991px) { 
    .header-style-1 .wpo-cart-search-contact .search-toggle-btn {
        padding-top: 2px;
    }
    .header-style-1 .not-has-cart.has-menu + .wpo-cart-search-contact {
        margin-top: -2px;
    }
}
.header-style-2 .wpo-cart-search-contact .search-toggle-btn  {
    padding-top: 0px;
}
.header-style-1 .not-has-cart + .wpo-cart-search-contact {
    margin-top: -8px;
    right: 15px;
}
.header-style-1 .not-has-cart.has-menu + .wpo-cart-search-contact {
    margin-top: 0px;
    right: 10px;
}
.header-style-1 .sticky-header .not-has-cart + .wpo-cart-search-contact {
    margin-top: -2px;
}
.header-style-1 .wpo-cart-search-contact input,
.header-style-2 .wpo-cart-search-contact input {
    width: 100%;
    height: 50px;
    padding: 6px 20px;
    border: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

@media (max-width: 450px) {

    .header-style-1 .wpo-cart-search-contact .wpo-mini-cart,
    .header-style-2 .wpo-cart-search-contact .wpo-mini-cart {
        display: none;
    }
}

.header-style-1 .wpo-cart-search-contact .wpo-mini-cart .fi:before,
.header-style-2 .wpo-cart-search-contact .wpo-mini-cart .fi:before {
    font-size: 25px;
    font-size: 1.5625rem;
}

.header-style-1 .wpo-cart-search-contact .wpo-mini-cart .cart-count,
.header-style-2 .wpo-cart-search-contact .wpo-mini-cart .cart-count {
    background: #1bcdf8;
    width: 22px;
    height: 22px;
    line-height: 22px;
    font-size: 10px;
    font-size: 0.625rem;
    color: white;
    position: absolute;
    top: 0;
    right: -11px;
    border-radius: 50%;
}

.header-style-1 .wpo-cart-search-contact .wpo-mini-cart-content,
.header-style-2 .wpo-cart-search-contact .wpo-mini-cart-content {
    background: #fff;
    width: 300px;
    z-index: 10;
    position: absolute;
    right: 0;
    top: 51px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-box-shadow: 0px 15px 60px -19px black;
    box-shadow: 0px 15px 60px -19px black;
}

@media (max-width: 991px) {

    .header-style-1 .wpo-cart-search-contact .wpo-mini-cart-content,
    .header-style-2 .wpo-cart-search-contact .wpo-mini-cart-content {
        top: 68px;
    }
}

@media (max-width: 767px) {

    .header-style-1 .wpo-cart-search-contact .wpo-mini-cart-content,
    .header-style-2 .wpo-cart-search-contact .wpo-mini-cart-content {
        top: 63px;
    }
}

@media (max-width: 450px) {

    .header-style-1 .wpo-cart-search-contact .wpo-mini-cart-content,
    .header-style-2 .wpo-cart-search-contact .wpo-mini-cart-content {
        right: auto;
        left: -185px;
    }
}

.header-style-1 .wpo-cart-search-contact .wpo-mini-cart-content p,
.header-style-2 .wpo-cart-search-contact .wpo-mini-cart-content p {
    font-family: "Now";
    font-size: 15px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #242f6c;
    margin: 0;
}

.header-style-1 .wpo-cart-search-contact .wpo-mini-cart-content .wpo-mini-cart-items,
.header-style-2 .wpo-cart-search-contact .wpo-mini-cart-content .wpo-mini-cart-items {
    padding: 25px 20px;
}

.header-style-1 .wpo-cart-search-contact .wpo-mini-cart-content .wpo-mini-cart-item,
.header-style-2 .wpo-cart-search-contact .wpo-mini-cart-content .wpo-mini-cart-item {
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #efefef;
}

.header-style-1 .wpo-cart-search-contact .wpo-mini-cart-content .wpo-mini-cart-item:first-child,
.header-style-2 .wpo-cart-search-contact .wpo-mini-cart-content .wpo-mini-cart-item:first-child {
    padding-top: 0;
    margin-top: 0;
    border-top: 0;
}

.header-style-1 .wpo-cart-search-contact .wpo-mini-cart-content .wpo-mini-cart-item-image,
.header-style-2 .wpo-cart-search-contact .wpo-mini-cart-content .wpo-mini-cart-item-image {
    width: 50px;
    height: 50px;
    border: 2px solid #f3f3f3;
    float: left;
    margin-right: 15px;
}

.header-style-1 .wpo-cart-search-contact .wpo-mini-cart-content .wpo-mini-cart-item-image a,
.header-style-2 .wpo-cart-search-contact .wpo-mini-cart-content .wpo-mini-cart-item-image a,
.header-style-1 .wpo-cart-search-contact .wpo-mini-cart-content .wpo-mini-cart-item-image img,
.header-style-2 .wpo-cart-search-contact .wpo-mini-cart-content .wpo-mini-cart-item-image img {
    display: block;
    width: 46px;
    height: 46px;
}

.header-style-1 .wpo-cart-search-contact .wpo-mini-cart-content .wpo-mini-cart-item-des,
.header-style-2 .wpo-cart-search-contact .wpo-mini-cart-content .wpo-mini-cart-item-des {
    position: relative;
    overflow: hidden;
}

.header-style-1 .wpo-cart-search-contact .wpo-mini-cart-content .wpo-mini-cart-item-des a,
.header-style-2 .wpo-cart-search-contact .wpo-mini-cart-content .wpo-mini-cart-item-des a {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: left;
    color: #242f6c;
}

.header-style-1 .wpo-cart-search-contact .wpo-mini-cart-content .wpo-mini-cart-item-des a:hover,
.header-style-2 .wpo-cart-search-contact .wpo-mini-cart-content .wpo-mini-cart-item-des a:hover {
    color: #1bcdf8;
}

.header-style-1 .wpo-cart-search-contact .wpo-mini-cart-content .wpo-mini-cart-item-des .wpo-mini-cart-item-price,
.header-style-2 .wpo-cart-search-contact .wpo-mini-cart-content .wpo-mini-cart-item-des .wpo-mini-cart-item-price {
    font-size: 13px;
    font-size: 0.8125rem;
    color: #888;
    display: block;
    margin-top: 3px;
}

.header-style-1 .wpo-cart-search-contact .wpo-mini-cart-content .wpo-mini-cart-item-des .wpo-mini-cart-item-quantity,
.header-style-2 .wpo-cart-search-contact .wpo-mini-cart-content .wpo-mini-cart-item-des .wpo-mini-cart-item-quantity {
    font-size: 12px;
    font-size: 0.75rem;
    color: #444;
    display: block;
    position: absolute;
    right: 0;
    top: 2px;
}

.header-style-1 .wpo-cart-search-contact .wpo-mini-cart-content .wpo-mini-cart-action,
.header-style-2 .wpo-cart-search-contact .wpo-mini-cart-content .wpo-mini-cart-action {
    padding: 20px;
    border-top: 1px solid #efefef;
    text-align: center;
}

.header-style-1 .wpo-cart-search-contact .wpo-mini-cart-content .wpo-mini-cart-action .theme-btn-s2,
.header-style-2 .wpo-cart-search-contact .wpo-mini-cart-content .wpo-mini-cart-action .theme-btn-s2 {
    float: right;
}

.header-style-1 .wpo-cart-search-contact .wpo-mini-cart-content .wpo-mini-cart-action .mini-checkout-price,
.header-style-2 .wpo-cart-search-contact .wpo-mini-cart-content .wpo-mini-cart-action .mini-checkout-price {
    font-family: "Now";
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 600;
    color: #242f6c;
    display: inline-block;
}

.header-style-1 .wpo-cart-search-contact .wpo-mini-cart-content-toggle,
.header-style-2 .wpo-cart-search-contact .wpo-mini-cart-content-toggle,
.header-style-1 .wpo-cart-search-contact .header-search-content-toggle,
.header-style-2 .wpo-cart-search-contact .header-search-content-toggle {
    opacity: 1;
    visibility: visible;
    right: 0;
}

.header-style-1 .wpo-cart-search-contact .btns,
.header-style-2 .wpo-cart-search-contact .btns {
    position: relative;
    top: -8px;
    margin-left: 30px;
}

@media (max-width: 991px) {

    .header-style-1 .wpo-cart-search-contact .btns,
    .header-style-2 .wpo-cart-search-contact .btns {
        top: -5px;
    }
}

@media (max-width: 600px) {

    .header-style-1 .wpo-header-search-form-wrapper,
    .header-style-2 .wpo-header-search-form-wrapper,
    .header-style-1 .wpo-mini-cart,
    .header-style-2 .wpo-mini-cart {
        display: none;
    }
}

@media (max-width: 767px) {

    .header-style-1 .wpo-cart-search-contact,
    .header-style-2 .wpo-cart-search-contact {
        right: 70px;
    }
}

@media (max-width: 360px) {

    .header-style-1 .wpo-cart-search-contact,
    .header-style-2 .wpo-cart-search-contact {
        display: none;
    }
}

.header-style-2 {
    position: relative;
    padding-top: 0;
}

@media screen and (min-width: 992px) {
    .header-style-2 #navbar>ul>li>a {
        padding: 40px 12px;
    }

    .header-style-2 .navbar-brand {
        margin-top: 10px;
    }
}

@media screen and (min-width: 1200px) {
    .header-style-2 #navbar>ul>li>a {
        padding: 40px 14px;
    }
}

@media screen and (min-width: 992px) {
	.header-style-1 .container-fluid, .header-style-2 .container-fluid, .header-style-3 .container-fluid {
		padding: 0 100px;
	}	
}

/*--------------------------------------------------------------
 #0.4 wpo-hero-style
--------------------------------------------------------------*/
.wpo-hero-style-1,
.wpo-hero-style-2,
.wpo-hero-style-3 {
    height: 1035px;
    min-height: 1035px;
    position: relative;
}
.wpo-hero-style-3 {
    height: 850px;
    min-height: 850px;
}
.wpo-hero-style-1 {
    height: 950px;
    min-height: 900px;
}

.wpo-hero-style-3 {
    background: #fff;
}

.wpo-hero-style-2 {
    height: 900px;
    min-height: 900px;
}

@media (max-width: 1024px) {
    .wpo-hero-style-2 {
        height: 700px;
        min-height: 700px;
    }
}
.wpo-hero-style-1 .wpo-hero-text {
    padding-top: 30px;
}

@media (max-width: 991px) {

    .wpo-hero-style-1,
    .wpo-hero-style-2,
    .wpo-hero-style-3 {
        height: 800px;
        min-height: 800px;
    }

    .wpo-hero-style-2 {
        height: 600px;
        min-height: 600px;
    }
    wpo-hero-style-1 .wpo-hero-text {
        margin-top: -100px;
    }

}

@media(max-width: 767px) {
    .wpo-hero-style-1 {
        height: 600px;
        min-height: 600px;
    }

    .wpo-hero-style-1 {
        background: #23118f;
    }

    .wpo-hero-style-1 .wpo-hero-text {
        padding-top: 135px;
    }
}

@media (max-width: 590px) {

    .wpo-hero-style-1,
    .wpo-hero-style-2,
    .wpo-hero-style-3 {
        height: 600px;
        min-height: 600px;
    }

    .wpo-hero-style-2 {
        height: 450px;
        min-height: 450px;
    }

    .wpo-hero-style-1 {
        background: #23118f;
    }

    .wpo-hero-style-1 .wpo-hero-text {
        padding-top: 10px;
    }
}

.wpo-hero-style-1 .container,
.wpo-hero-style-2 .container,
.wpo-hero-style-3 .container,
.wpo-hero-style-1 .row,
.wpo-hero-style-2 .row,
.wpo-hero-style-3 .row,
.wpo-hero-style-1 .col,
.wpo-hero-style-2 .col,
.wpo-hero-style-3 .col {
    height: 100%;
}

.wpo-hero-style-1 .col,
.wpo-hero-style-2 .col,
.wpo-hero-style-3 .col {
    display: table;
}

.wpo-hero-style-1 .wpo-hero-text,
.wpo-hero-style-2 .wpo-hero-text,
.wpo-hero-style-3 .wpo-hero-text {
    display: table-cell;
    vertical-align: middle;
    position: relative;
    z-index: 10;
}


@media(max-width:767px) {
    .wpo-hero-style-1 .wpo-hero-text {
        padding-top: 0px;
    }
}

@media(max-width:480px) {
    .wpo-hero-style-1 .wpo-hero-text {
        padding-top: 0px;
    }
}

.wpo-hero-style-2 .wpo-hero-text {
    padding-top: 15px;
}

.wpo-hero-style-1 h2,
.wpo-hero-style-2 h2,
.wpo-hero-style-3 h2 {
    font-size: 50px;
    font-size: 3.125rem;
    font-weight: 500;
    margin: 0 0 0.68em;
    color: #fff;
    line-height: 75px;
}

.wpo-hero-style-3 h2 {
    color: #2d4277;
}

@media(max-width: 1200px) {
    .wpo-hero-style-2 h2 {
        font-size: 45px;
    }
}

@media(max-width: 1020px) {
    .wpo-hero-style-2 h2 {
        font-size: 45px;
    }
}

@media (max-width: 991px) {

    .wpo-hero-style-1 h2,
    .wpo-hero-style-2 h2,
    .wpo-hero-style-3 h2 {
        font-size: 40px;
        font-size: 2.5rem;
        line-height: 55px;
    }

}

@media (max-width: 767px) {
    .wpo-hero-style-1 h2,
    .wpo-hero-style-2 h2,
    .wpo-hero-style-3 h2 {
        font-size: 2rem;
        line-height: 40px;
    }
}

@media (max-width: 590px) {

    .wpo-hero-style-1 h2,
    .wpo-hero-style-2 h2,
    .wpo-hero-style-3 h2 {
        font-size: 32px;
        font-size: 1.6rem;
    }
}

.page-wrapper .wpo-hero-style-1 p,
.page-wrapper .wpo-hero-style-2 p,
.page-wrapper .wpo-hero-style-3 p {
    font-size: 19px;
    margin-bottom: 45px;
    color: #fff;
}

.page-wrapper .wpo-hero-style-3 p {
    color: #666;
}

@media (max-width: 991px) {

    .wpo-hero-style-1 p,
    .wpo-hero-style-2 p,
    .wpo-hero-style-3 p {
        font-size: 18px;
        font-size: 1.125rem;
    }
}

@media (max-width: 767px) {

    .wpo-hero-style-1 p,
    .wpo-hero-style-2 p,
    .wpo-hero-style-3 p {
        font-size: 16px;
        font-size: 1rem;
    }
}

.wpo-hero-style-1 .btns>a:first-child,
.wpo-hero-style-2 .btns>a:first-child,
.wpo-hero-style-3 .btns>a:first-child {
    margin-right: 20px;
    padding: 14px 36px;
}

@media (max-width: 767px) {

    .wpo-hero-style-1 .btns>a:first-child,
    .wpo-hero-style-2 .btns>a:first-child,
    .wpo-hero-style-3 .btns>a:first-child {
        margin-right: 10px;
    }
    .wpo-hero-style-1 .btns>a:first-child {
         padding: 15px 22px;
    }
}

.wpo-hero-style-1 .right-vec,
.wpo-hero-style-2 .right-vec,
.wpo-hero-style-3 .right-vec {
    position: absolute;
    right: 231px;
    bottom: 215px;
    width: 700px;
    height: 690px;
}

.wpo-hero-style-3 .right-vec {
    right: 231px;
    bottom: 100px;
    height: 652px;
    width: 645px;
}

.wpo-hero-style-1 .right-vec:before,
.wpo-hero-style-2 .right-vec:before,
.wpo-hero-style-3 .right-vec:before {
    content: "";
    /*background: url("../images/hero-1-vec.png") center center/cover no-repeat local;*/
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    bottom: 0;
}

.wpo-hero-style-2 .right-vec:before {
/*     background: url("../images/hero-2-vec.png") center center/cover no-repeat local; */
}

.wpo-hero-style-3 .right-vec:before {
    /*background: url("../images/hero-3-vec.png") center center/cover no-repeat local;*/
}

.wpo-hero-style-2 .right-vec {
    right: 85px;
    bottom: 140px;
    width: 877px;
    height: 745px;
}

@media (max-width:3000px) and (min-width:1921px) {
	.wpo-hero-style-2 .right-vec {
		right: 400px;
	}
}
@media (max-width: 1590px) {

    .wpo-hero-style-1 .right-vec,
    .wpo-hero-style-2 .right-vec,
    .wpo-hero-style-3 .right-vec {
        right: 20px;
    }

    .wpo-hero-style-1 .right-vec {
        right: 20px;
    }

    .wpo-hero-style-2 .right-vec {
        right: -140px;
    }
}

@media (max-width: 1199px) {

    .wpo-hero-style-1 .right-vec,
    .wpo-hero-style-2 .right-vec,
    .wpo-hero-style-3 .right-vec {
        width: 600px;
        height: 507px;
    }

    .wpo-hero-style-1 .right-vec,
    .wpo-hero-style-2 .right-vec,
    .wpo-hero-style-3 .right-vec {
        right: 0;
        bottom: 310px;
    }

    .wpo-hero-style-3 .right-vec {
        width: 495px;
        height: 507px;
        bottom: 132px;
    }

    .wpo-host-list ul li {
        font-size: 16px;
        padding: 0 20px;
    }

    .wpo-hero-style-2 .right-vec {
        right: -103px;
        bottom: 215px;
    }
}

@media (max-width: 991px) {

    .wpo-hero-style-1 .right-vec,
    .wpo-hero-style-2 .right-vec,
    .wpo-hero-style-3 .right-vec {
        display: none;
    }
}

@media (max-width: 590px) {

    .wpo-hero-style-1 .theme-btn-s2,
    .wpo-hero-style-2 .theme-btn-s2,
    .wpo-hero-style-3 .theme-btn-s2 {
        width: 156px;
        font-size: 13px;
        text-align: center;
        padding: 13px 5px;
        margin-top: 15px;
        margin-bottom: 20px;
    }
    .page-wrapper .wpo-hero-style-1 p,
    .page-wrapper .wpo-hero-style-2 p {
        font-size: 16px;
        margin: 0 0 1.9em;
        color: #fff;
    }
    .wpo-hero-style-1 .theme-btn,
    .wpo-hero-style-1 .theme-btn,
    .wpo-hero-style-1 .theme-btn {
        width: 132px;
        font-size: 13px;
    }

    .wpo-search-section,
    .wpo-search-section-2 .wpo-search-section-3 {
        padding-top: 50px;
    }
}

.wpo-hero-style-3 .theme-btn {
    background-color: #1bcdf8;
    color: #fff;
}

.wpo-hero-style-3 .theme-btn-s2 {
    border: 2px solid #818ead;
    color: #2d4277;
}

.wpo-hero-style-3 .theme-btn-s2:hover {
    color: #fff;
}

.wpo-hero-style-3 .theme-btn:hover {
    background-color: #2d4277;
    color: #fff;
}
.wpo-hero-style-2 .wpo-hero-text .btns .theme-btn {
    background: -webkit-linear-gradient(292deg, #34ffdf 0%, #1bcdf8 100%);
    background: linear-gradient(158deg, #34ffdf 0%, #1bcdf8 100%);
    border-color: #34ffdf;
    box-shadow: 0 20px 20px -10px rgba(63, 51, 137, .23);
    padding: 16px 35px;
    font-size: 18px;
    color: #fff;
    border-radius: 4px;
}

.wpo-hero-style-2 .wpo-hero-text .btns .theme-btn-s2 {
    border: 2px solid #34ffdf;
    box-shadow: 0 20px 20px -10px rgba(63, 51, 137, .23);
    padding: 14px 30px;
    font-size: 18px;
    color: #fff;
    border-radius: 4px;
}

@media (max-width: 991px){
    .wpo-hero-style-2 .wpo-hero-text .btns .theme-btn-s2 {
        padding: 15px 30px;
        font-size: 16px;
    }
}
.wpo-hero-style-2 .wpo-hero-text .btns .theme-btn:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    background: -webkit-linear-gradient(292deg, #1bcdf8 0%, #34ffdf 100%);
    background: linear-gradient(158deg, #1bcdf8 0%, #34ffdf 100%);
}
.wpo-hero-style-2 .wpo-hero-text .btns .theme-btn-s2:hover {
    background: -webkit-linear-gradient(292deg, #34ffdf 0%, #1bcdf8 100%);
    background: linear-gradient(158deg, #34ffdf 0%, #1bcdf8 100%);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    color: #fff;
}
@media (max-width: 767px) {
	.wpo-hero-style-2 .wpo-hero-text .btns .theme-btn {
		padding:14px 28px;
	}
}
/*Topabr*/

.wpo-site-header .wpo-topbar {
    border-bottom: 1px solid #f2f2f2;
}

.wpo-topbar .contact-info ul,
.wpo-topbar .social ul {
    padding-left: 0;
    list-style: none;
}

.wpo-topbar .social ul {
    padding-left: 0;
    padding-top: 6px;
    list-style: none;
}



.wpo-topbar .contact-info ul li {
    display: inline-block;
    padding-right: 5px;
    font-size: 16px;
    line-height: 1;
    padding: 20px 0px;
}

.wpo-topbar .social {
    text-align: right;
}

.wpo-topbar .social ul li {
    display: inline-block;
}

.wpo-topbar .social ul li a {
    margin-right: 2px;
    background: #34b1ff;
    color: #fff;
    width: 34px;
    height: 34px;
    line-height: 36px;
    font-size: 14px;
}

.wpo-topbar .contact-info ul>li+li {
    margin-left: 20px;
    padding-left: 20px;
    padding-right: 20px;
    border-left: 1px solid #f2f2f2;
}

.wpo-site-header .contact-info li i {
    position: relative;
    top: 0px;
    padding-right: 7px;
}

.header-style-1 .wpo-topbar .contact-info ul li {
    color: #fff;
}

@media (max-width: 991px) {
    .wpo-topbar .contact-info ul li {
        font-size: 13px;
    }

    .wpo-topbar .contact-info ul>li+li {
        margin-left: 10px;
        padding-left: 10px;
    }

    .header-style-1 .wpo-topbar .contact-info ul li {
        color: #242f6c;
    }
}

@media (max-width: 767px) {
    .wpo-topbar .contact-info ul li {
        display: block;
        text-align: center;
        font-size: 14px;
    }

    .wpo-topbar .contact-info ul li {
        padding-bottom: 5px;
    }

    .wpo-site-header .contact-info li i {
        font-size: 13px;
    }

    .wpo-site-header .wpo-topbar .contact-info li .fi:before {
        font-size: 15px !important;
    }

    .wpo-topbar .social {
        text-align: center;
        padding-bottom: 30px;
    }

    .wpo-topbar .contact-info ul {
        padding-bottom: 8px;
        padding-top: 8px;
        margin-left: -10px;
    }

    .wpo-topbar .contact-info ul>li+li {
        border: none;
    }
}

.header-style-1 .wpo-topbar {
    border-color: rgba(255, 255, 255, 0.07);
}

.header-style-1 .wpo-topbar .contact-info ul>li+li {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.wpo-site-header .wpo-topbar .contact-info li a {
    color: #fff;
    font-size: 15px;
}

.header-style-1 .wpo-topbar ul .fi:before,
.header-style-2 .wpo-topbar ul .fi:before {
    font-size: 15px;
}

.topbar-link .contact-info {
    text-align: right;
}

.header-style-1 .wpo-topbar .topbar-link .contact-info ul>li+li {
    border-right: none;
}

.wpo-topbar .topbar-link .contact-info ul>li+li {
    padding-right: 0px;
}

.header-style-2 .wpo-topbar .contact-info li a {
    color: #525252;
}

@media (max-width:767px) {
    .topbar-link {
        margin-top: -33px;
        margin-bottom: 20px;
    }
}
/*=======================================
#0.5 wpo-features-area
=========================================*/

.wpo-features-item,
.wpo-features-item-2 {
    background: #fff;
    padding: 38px;
    text-align: center;
    margin-bottom: 30px;
    transition: all .3s ease;
    -webkit-box-shadow:  0px 6px 20.1px 4.9px rgba(176, 191, 238, 0.12);
    box-shadow: 0px 6px 20.1px 4.9px rgba(176, 191, 238, 0.12);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.wpo-features-item-2 {
    background: none;
}

.wpo-features-item-2 {
    background: #1bcdf8;
}

.wpo-features-img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    display: none;
}

.wpo-features-img img {
    width: 100%;
}

.wpo-features-single h2 {
    color: #283a5e;
    font-size: 21px;
    font-weight: 500;
    margin-bottom: 20px;
    transition: all .3s ease;
}

@media (max-width:991px) {
    .wpo-features-single h2 {
        font-size: 22px;
    }
}

.wpo-features-item-2 .wpo-features-single h2 {
    color: #fff;
}

.wpo-features-item-2 .wpo-features-single p {
    color: #fff;
}

.wpo-features-single a {
    margin-top: 20px;
    display: block;
    color: #1bcdf8;
    font-weight: 700;
    transition: all .3s ease;
}

.wpo-features-item-2 .wpo-features-single a {
    color: #fff;
}

.wpo-features-icon {
    width: 130px;
    height: 130px;
    background: #fff;
    line-height: 130px;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 40px;
    -webkit-box-shadow: 0px 10px 40px 0px rgba(50, 50, 50, 0.1);
    -moz-box-shadow: 0px 10px 40px 0px rgba(50, 50, 50, 0.1);
    box-shadow: 0px 10px 40px 0px rgba(50, 50, 50, 0.1);
    text-align: center;
}



.wpo-features-icon .fi:before {
    color: #1bcdf8;
    font-size: 50px;
}


@media(max-width: 1200px) {

    .wpo-features-item,
    .wpo-features-item-2 {
        padding: 40px 15px;
    }

    .wpo-features-single h2 {
        font-size: 18px;
    }
}

@media(max-width: 768px) {

    .wpo-features-single h2 {
        font-size: 20px;
    }
}

@media(max-width: 767px) {

    .wpo-features-area {
        padding-bottom: 50px;
    }
}

.wpo-features-area .custom-grid:nth-child(2) .wpo-features-item {
    background: -webkit-linear-gradient(292deg, #8273d5 0%, #584ba9  100%);
    background: linear-gradient(158deg, #8273d5 0%, #584ba9  100%);
}

.wpo-features-area .custom-grid:nth-child(2) .wpo-features-single h2 {
    color: #fff;
}

.wpo-features-area .custom-grid:nth-child(2) .wpo-features-single p {
    color: #fff;
}

.wpo-features-area .custom-grid:nth-child(2) .wpo-features-single a {
    color: #fff;
}

.wpo-features-bundle {
    background: #fff;
    box-shadow: 0px 5px 18.4px 1.6px rgba(0, 105, 255, 0.1);
    padding: 45px 50px 30px;
    position: relative;
}

@media(max-width: 767px) {
    .wpo-features-bundle {
        padding: 60px 25px 30px;
        box-shadow:none;

    }
}

.wpo-features-bundle:before {
    position: absolute;
    left: 15%;
    top: 28%;
    width: 70%;
    content: "";
    border: 1px dashed rgb(160, 160, 160, .2);
}


.wpo-features-style-2 {
    text-align: center;
    margin-bottom: 30px;
}

@media(max-width: 991px) {
    .wpo-features-bundle:before {
        display: none;
    }
}

.wpo-planing-icon {
    width: 90px;
    height: 90px;
    background: #fff;
    line-height: 90px;
    border-radius: 50%;
    -webkit-box-shadow: 0px 10px 40px 0px rgba(50, 50, 50, 0.1);
    -moz-box-shadow: 0px 10px 40px 0px rgba(50, 50, 50, 0.1);
    box-shadow: 0px 10px 40px 0px rgba(50, 50, 50, 0.1);
    text-align: center;
    float: left;
    margin-right: 20px;
}

.wpo-planing-icon .fi:before {
    font-size: 40px;
    color: #1bcdf8;
}

.wpo-planing-text {
    overflow: hidden;
}

.wpo-planing-text h2 {
    font-size: 20px;
    font-weight: 500;
    color: #2d4277;
    margin-bottom: 10px;
    display: block;
}

.planing-area .wpo-planing-text p {
    font-size: 15px;
    margin-bottom: 0px;
}

.planing-area {
    padding-bottom: 25px;
}

@media(max-width: 1200px) {
    .wpo-planing-text h2 {
        font-size: 15px;
    }

    .wpo-planing-text p {
        font-size: 14px;
    }
}

@media(max-width: 767px) {
    .wpo-planing-icon {
        float: none;
        margin: auto;
        margin-bottom: 20px;
    }

    .wpo-planing-text {
        text-align: center;
    }

    .wpo-planing-single {
        margin-bottom: 40px;
    }
}

.wpo-features-bundle .wpo-features-item {
    background: transparent;
    padding: 0;
    box-shadow: none;
    margin-bottom: 0;
    padding-top: 15px;
}

@media(max-width: 1200px) {
    .wpo-features-bundle .wpo-features-item {
        margin-bottom: 30px;
    }
}

/*==================================================
#0.6 wpo-serch-area
=====================================================*/
.wpo-hero-style-2 .wpo-search-wrap {
    max-width: 800px;
    margin: 0 auto;

}

.wpo-search-section-2 {
    padding: 0;
    padding-bottom: 50px;
}

.wpo-search-wrap {
    background: #fff;
    box-shadow: 0px 6px 20.1px 4.9px rgba(176, 191, 238, 0.12);
}

.wpo-search-wrap-2 {
    margin-top: -100px;
}

@media(max-width: 1200px) {
    .wpo-search-wrap-2 {
        margin-top: 30px;
    }

    .wpo-hero-style-2 .wpo-hero-text {
        padding-top: 60px;
    }

    .wpo-hero-style-2 .right-vec {
        right: -103px;
        bottom: 170px;
    }

}

@media(max-width: 1020px) {
    .wpo-hero-style-2 .right-vec {
        right: -103px;
        bottom: 85px;
    }
}


@media(max-width: 767px) {
    .wpo-search-wrap-2 {
        margin-top: -70px;
    }

    .wpo-hero-style-2 .wpo-hero-text {
        padding-top: 15px;
    }
}

@media(max-width: 590px) {
    .wpo-search-wrap-2 {
        margin-top: -40px;
    }
}

.wpo-search-area form>div:first-child {
    width: calc(100% - 250px);
    float: left;
}

@media (max-width: 767px) {
    .wpo-search-area form>div:first-child {
        width: calc(100% - 158px);
    }

    .nice-select.wide {
        width: 120%;
    }
}

.wpo-search-area form>div:nth-child(2) {
    width: 180px;
    float: left;
}

@media (max-width: 767px) {
    .wpo-search-area form>div:nth-child(2) {
        width: 100px;
    }
}

.wpo-search-area form>div:last-child {
    width: 200px;
    float: right;
}

@media (max-width: 767px) {
    .wpo-search-area form>div:last-child {
        width: 100px;
    }

}



.wpo-search-area form {
    box-shadow: 0px 6px 20.1px 4.9px rgba(176, 191, 238, 0.12);
    background: #fff;
}

@media (max-width: 767px) {
    .wpo-search-area form {
        -webkit-box-shadow: 0px 10px 40px 0px rgba(50, 50, 50, 0.1);
        -moz-box-shadow: 0px 10px 40px 0px rgba(50, 50, 50, 0.1);
        box-shadow: 0px 10px 40px 0px rgba(50, 50, 50, 0.1);
    }
}

.wpo-search-area form input,
.wpo-search-area form select,
.wpo-search-area form button {
    width: 100%;
    font-size: 16px;
    font-size: 1rem;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 100px;
    border-radius: 0;
}

.wpo-search-area form input {
    padding-left: 40px;
}

.wpo-search-area form input::-webkit-input-placeholder {
  color: #687693;
}

.wpo-search-area form input:-ms-input-placeholder { 
  color: #687693;
}

.wpo-search-area form input::placeholder {
  color: #687693;
}

@media (max-width: 767px) {

    .wpo-search-area form input,
    .wpo-search-area form select,
    .wpo-search-area form button {
        height: 70px;
        font-size: 12px;
        /* font-size: 0.9375rem; */
    }
}



.wpo-search-area form select {
    border-radius: 70px 0 0 70px;
    padding: 0 25px;
    background: white;
    border-right: 1px solid #f3f7fd;
}

.wpo-search-area form select:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}


.wpo-search-area form input[type=submit] {
    background: -webkit-linear-gradient(292deg, #34ffdf 0%, #1bcdf8 100%);
    background: linear-gradient(158deg, #34ffdf 0%, #1bcdf8 100%);
    border-color: #34ffdf;
    padding: 16px 35px;
    font-size: 18px;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    z-index: 1;
    position: relative;
    height: 80px;
    top: 10px;
    right: 10px;
    padding-left: 33px;
}

@media (max-width: 767px) {
    .wpo-search-area form input[type=submit] {
        height: 54px;
        top: 8px;
        right: 59px;
        width: 153px;
        font-size: 14px;
        padding-left: 29px;
    }
}

.wpo-search-area form input[type=submit]:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 70px;
    background: -webkit-linear-gradient(left, #3a9ce0, #1bcdf8);
    background: -moz-linear-gradient(left, #3a9ce0, #1bcdf8);
    background: -o-linear-gradient(left, #3a9ce0, #1bcdf8);
    background: -ms-linear-gradient(left, #3a9ce0, #1bcdf8);
    background: -webkit-gradient(linear, left top, right top, from(#3a9ce0), to(#1bcdf8));
    background: linear-gradient(left, #3a9ce0, #1bcdf8);
    -webkit-transition: opacity 0.5s ease-out;
    -o-transition: opacity 0.5s ease-out;
    transition: opacity 0.5s ease-out;
    opacity: 0;
    z-index: -1;
}

.wpo-search-area form input[type=submit]:hover:after {
    opacity: 1;
}

.wpo-search-area form input[type=submit]:focus {
    outline: none;
    border: none;
}
.wpo-search-area form input[type=submit]:hover {
    background: -webkit-linear-gradient(292deg, #1bcdf8 0%, #34ffdf 100%);
    background: linear-gradient(158deg, #1bcdf8 0%, #34ffdf 100%);
}
.wpo-search-area .nice-select {
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 100px;
    line-height: 100px;
}

.wpo-search-area .nice-select span {
    position: relative;
}

.wpo-search-area .nice-select span:before {
    position: absolute;
    left: -12px;
    top: -3px;
    width: 1px;
    height: 30px;
    background: #91bdfc;
    content: "";
}

@media (max-width: 767px) {
    .wpo-search-area .nice-select {
        height: 50px;
        line-height: 50px;
    }
}

.wpo-search-area {
    padding: 50px;
    padding-top: 60px;
}

@media (max-width: 590px) {
    .wpo-search-area {
        padding: 20px 2px;
    }
}

.nice-select:after {
    right: 45px;
}

.wpo-host-list ul {
    list-style: none;
    text-align: center;
    padding-top: 5px;
    padding-left: 0;
}
@media (max-width: 767px) { 
    .wpo-host-list ul {
        padding-left:0px;
    }
}
.wpo-host-list ul li {
    display: inline-block;
    color: #34495e;
    font-size: 18px;
    font-weight: 400;
    padding: 0 30px;
    position: relative;
    font-family: 'Rubik', sans-serif;
}

@media (max-width: 1199px) {
    .wpo-host-list ul li {
        font-size: 16px;
        padding: 0 20px;
    }
}

@media (max-width: 991px) {
    .wpo-host-list ul li {
        font-size: 15px;
        padding: 0 6px;
    }
}

@media (max-width: 767px) {
    .wpo-host-list ul li {
        font-size: 15px;
        padding: 0 6px;
        margin-bottom: 10px;
    }

    .wpo-host-list ul li:before {
        display: none;
    }
}

.wpo-host-list ul li span {
    color: #1bcdf8;
    font-weight: 500;
    font-family: 'Rubik', sans-serif;
}

.wpo-host-list ul li:before {
    position: absolute;
    left: 0px;
    top: 10px;
    width: 1px;
    height: 20px;
    background: #dddddd;
    content: "";
}

.wpo-host-list ul li:first-child:before {
    display: none;
}

/*--------------------------------------------------------------
  #about page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
 about-page-about-area
--------------------------------------------------------------*/
@media screen and (min-width: 1200px) {
    .about-page-area .about-area {
        padding-right: 50px;
    }
}

@media (max-width: 991px) {
    .about-page-area .about-area {
        margin-bottom: 60px;
    }
}

.about-page-area .about-area span {
    font-size: 24px;
    color: #666666;
    margin-bottom: 25px;
    display: block;
}

.about-page-area .about-area p {
    max-width: 550px;
    line-height: 30px;

}

.about-page-area .about-area h2 {
    font-size: 35px;
    font-size: 2.1875rem;
    font-weight: bold;
    margin: 0 0 1.0em;
    position: relative;
    line-height: 53px;
}

@media (max-width: 991px) {
    .about-page-area .about-area h2 {
        font-size: 22px;
        margin: 0 0 0.8em;
        line-height:35px;
    }
}

.about-page-area .about-area h2 span {
    color: #1bcdf8;
}

.about-page-area ul {
    list-style: none;
    overflow: hidden;
    margin-top: 30px;
    padding-left: 0px;
}

.about-page-area ul li {
    padding-left: 20px;
    position: relative;
}

.about-page-area ul li:before {
    content: "";
    background-color: #bbb;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    position: absolute;
    left: 0;
    top: 6px;
}

.about-page-area ul>li+li {
    margin-top: 15px;
}

.about-page-area .about-img {
    position: relative;
    width: 630px;
    left: -160px;
}

@media(max-width: 1200px) {
    .about-page-area .about-img {
        width: 500px;
        left: -100px;
        top: 84px;
    }
}

@media(max-width: 991px) {
    .about-page-area .about-img {
        width: 500px;
        left: 0;
        top: 0;
    }
}

@media(max-width: 767px) {
    .about-page-area .about-img {
        width: 450px;
    }
}

@media(max-width: 450px) {
    .about-page-area .about-img {
        width: 250px;
    }
}

.about-area .video-holder {
    position: relative;
}

.about-area .video-holder:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgb(42, 22, 155);
    background: -moz-linear-gradient(left, rgba(42, 22, 155, 1) 39%, rgba(41, 137, 216, 1) 78%, rgba(44, 212, 217, 1) 95%);
    background: -webkit-linear-gradient(left, rgba(42, 22, 155, 1) 39%, rgba(41, 137, 216, 1) 78%, rgba(44, 212, 217, 1) 95%);
    background: linear-gradient(to right, rgba(42, 22, 155, 1) 39%, rgba(41, 137, 216, 1) 78%, rgba(44, 212, 217, 1) 95%);
    color: #1bcdf8;
    opacity: .85;
}

.about-area .video-holder a {
    background: #fff;
    width: 65px;
    height: 65px;
    border-radius: 65px;
    display: inline-block;
    position: absolute;
    left: calc(50% - 32px);
    top: calc(50% - 32px);
    color: #1bcdf8;
    -webkit-animation: spineer 2s infinite;
    animation: spineer 2s infinite;
}

.about-area .video-holder a:before {
    content: "";
    width: 0px;
    height: 0px;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 20px solid #1bcdf8;
    position: absolute;
    left: 55%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@-webkit-keyframes spineer {
    0% {
        -webkit-box-shadow: 0 0 0 0 #c7c1ea;
    }

    70% {
        -webkit-box-shadow: 0 0 0 20px rgba(1, 93, 199, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
    }
}

@keyframes spineer {
    0% {
        -webkit-box-shadow: 0 0 0 0 #c7c1ea;
        box-shadow: 0 0 0 0 #c7c1ea;
    }

    70% {
        -webkit-box-shadow: 0 0 0 20px rgba(1, 93, 199, 0);
        box-shadow: 0 0 0 20px rgba(1, 93, 199, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
        box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
    }
}

/*=====================================================
#1.0 wpo-cta-area
=======================================================*/

.wpo-cta-area {
    height: 350px;
    max-height: 350px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.wpo-cta-text {
	 text-align: center;
}
.wpo-cta-text h2 {
	font-family:"Open Sans", sans-serif;
    font-size: 30px;
    line-height: 44px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin-bottom: 38px;
    margin-top: 0;
    max-width: 750px;
    margin: auto;
    display: block;
    padding-bottom: 21px;
}
.wpo-cta-area .wpo-cta-text p {
	max-width:700px;
	margin:auto;
	color:#fff;
	margin-bottom: 30px;
}
@media (max-width: 767px) {
    .wpo-cta-text h2 {
        font-size: 28px;
    }
}

.btns-wpo-cta {
    text-align: center;
}

.btns-wpo-cta a.theme-btn-s4 {
    background: -webkit-linear-gradient(292deg, #34ffdf 0%, #1bcdf8 100%);
    background: linear-gradient(158deg, #34ffdf 0%, #1bcdf8 100%);
    border-color: #34ffdf;
    box-shadow: 0 20px 20px -10px rgba(63, 51, 137, .23);
    padding: 14px 25px;
    font-size: 16px;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
}
.btns-wpo-cta a.theme-btn-s4:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    background: -webkit-linear-gradient(292deg, #1bcdf8 0%, #34ffdf 100%);
    background: linear-gradient(158deg, #1bcdf8 0%, #34ffdf 100%);
}
.wpo-cta-area .wpo-cta-text span {
	text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 14px;
    display: block;
}
 
/*------------------------------------------------------------------
#1.1 wpo-tastimonial-area
------------------------------------------------------------------*/

.wpo-testimonial-single-img {
    max-width: 970px;
    margin: auto;
    height: calc(100% - 68px);
}

@media(max-width: 768px) {
    .wpo-testimonial-single-img {
        max-width: 680px;
    }
}

.wpo-testimonial-active {
    padding: 40px 100px;
    margin-bottom: 10px;
    padding-bottom: 30px;
}

.wpo-testimonial-img {
    width: 100px;
    height: 100px;
    margin: auto;
    margin-bottom: 30px;
}

.wpo-testimonial-text {
    text-align: center;
}

.wpo-testimonial-thumbnil-active {
    max-width: 480px;
    margin: auto;
    cursor: pointer;
}

.wpo-testimonial-text ul {
    list-style: none;
    padding-left: 0px;
}

.wpo-testimonial-img img {
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0px 10px 27.3px 7.7px rgba(30, 75, 138, 0.05);
}

.wpo-testimonial-single-img .wpo-testimonial-thumbnil-active img {
    border-radius: 50%;
    border: 5px solid #fff;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
    box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
    width: 90px !important;
    height: 90px;
    margin: auto;
}

.wpo-testimonial-single-img .wpo-testimonial-text p {
    line-height: 35px;
    font-size: 18px;
    margin-bottom: 20px;
    color: #687693;
}

.wpo-testimonial-active .owl-nav div {
    position: absolute;
    left: -30px;
    top: 43%;
    text-align: center;
    color: #f00 !important;
    font-size: 24px;
    width: 50px;
    height: 50px;
    background: #fff !important;
    line-height: 45px;
    border-radius: 50% !important;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
    box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
}

.wpo-testimonial-active .owl-nav div:hover {
    background: #7db1fb !important;
    color: #fff !important;
}

.wpo-testimonial-active .owl-nav div.owl-prv,
.wpo-testimonial-active .owl-nav div.owl-next {
    right: -30px;
    left: auto;
}

.wpo-testimonial-text ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wpo-testimonial-text ul li:first-child {
    font-weight: 700;
    color: #1bcdf8;
    font-size: 20px;
    margin-right: 10px;
    line-height: 22px;
}

.wpo-testimonial-text ul li:last-child {
    font-style: italic;
    font-weight: 400;
}


@media(max-width: 767px) {
    .wpo-testimonial-active .owl-nav {
        display: none;
    }

    .wpo-testimonial-single-img .wpo-testimonial-text p {
        line-height: 30px;
        font-size: 16px;
    }

    .wpo-testimonial-active {
        padding: 40px;
        padding-bottom: 0px;
    }

    .wpo-testimonial-text ul li:first-child {
        font-size: 15px;
    }
}

.wpo-testimonial-single-img .wpo-testimonial-img img {
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0px 10px 27.3px 7.7px rgba(30, 75, 138, 0.05);
}

/*============================================
#0.8 wpo-pricing-area
=============================================*/
.wpo-pricing-area {
    margin-bottom: 30px;
}

.wpo-pricing-area .nav-tabs {
    border-bottom: none;
    display: flex;
    justify-content: center;
}

.Pricing-header {
    width: 345px;
    margin: auto;
    background: #fff;
    padding: 5px 10px;
    border-radius: 40px;
    -webkit-box-shadow: 0px 6px 20.1px 4.9px rgba(176, 191, 238, 0.12);
    box-shadow: 0px 6px 20.1px 4.9px rgba(176, 191, 238, 0.12);
    padding-bottom: 6px;
}



.wpo-pricing-area .nav>li {
    position: relative;
    display: block;
    margin: 0 5px;
}

.wpo-pricing-area .section-title {
    margin: auto;
    margin-bottom: 55px;
}

.wpo-pricing-area .section-title p {
    max-width: 385px;
    margin: auto;
}

.wpo-pricing-area .section-title h2 {
    padding-bottom: 25px;
    position: relative;
    display: inline-block;
    color: #2d4277;
    font-size: 36px;
    font-weight: 600;
}

.wpo-pricing-area .section-title h2:before {
    position: absolute;
    content: "";
    left: 50%;
    bottom: 0;
    width: 100px;
    height: 5px;
    background: #1bcdf8;
    border-radius: 15px;
    transform: translateX(-50%);
}

.wpo-pricing-area .section-title h2:after {
    position: absolute;
    content: "";
    left: 56%;
    bottom: 0;
    width: 8px;
    height: 5px;
    border-radius: 15px;
    background: #fff;
    transform: translateX(-60%);
}

@media (max-width: 991px) {
    .wpo-pricing-area .section-title h2 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .wpo-pricing-area .section-title h2 {
        font-size: 22px;
        font-size: 1.375rem;
    }
}

.Pricing-header .nav li a {
    display: block;
    width: 160px;
    height: 50px;
    background: #e9f1fd;
    line-height: 31px;
    text-align: center;
    border-radius: 40px;
    color: #2d4277;
    font-family: "Now";
    transition: all .5s;
    font-weight: 600;
}

.Pricing-header .nav li.active a {
    background: #1bcdf8;
    color: #fff;
    outline: none;
    border-radius: 40px;
}

.Pricing-header {
    margin-bottom: 40px;
}

.wpo-pricing-item {
    background: #fff;
    -webkit-box-shadow: 0px 6px 20.1px 4.9px rgba(176, 191, 238, 0.12);
    box-shadow: 0px 6px 20.1px 4.9px rgba(176, 191, 238, 0.12);
    text-align: center;
    padding: 25px 0 40px;
    position: relative;
}

@media(max-width: 768px) {
    .wpo-pricing-item {
        margin-bottom: 80px;
    }


}

@media(max-width: 767px) {
    .wpo-pricing-item {
        margin-bottom: 80px;
    }
}

.wpo-pricing-item h3,
.wpo-pricing-item .p-h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2d4277;
    margin-bottom: 20px;
}

.wpo-pricing-item h2,
.wpo-pricing-item .p-h2 {
    font-size: 50px;
    font-weight: 500;
    color: #1bcdf8;
    margin-bottom: 13px;
    position: relative;
    display: inline-block;
    margin-top: 35px;
}

.wpo-pricing-item h2 span,
.wpo-pricing-item .p-h2 span {
    font-weight: 400;
    font-size: 18px;
    color: #666666;
}

.wpo-pricing-item h2 small,
.wpo-pricing-item .p-h2 small {
    font-size: 25px;
    color: #666666;
    position: absolute;
    left: -14px;
    top: 4px;
}

.wpo-pricing-icon {
    width: 170px;
    height: 170px;
    line-height: 170px;
    background: #ecf3fe;
    border-radius: 50%;
    margin: auto;
    position: relative;
}

.wpo-pricing-icon:before {
    position: absolute;
    content: "";
    left: -9px;
    top: -8px;
    width: 110%;
    height: 110%;
    border-radius: 50%;
    border: 1px solid #ecf3fe;
}

.wpo-pricing-list {
    padding-left: 40px;
    padding-top: 35px;
    border-top: 1px solid #ecf3fe;
    padding-bottom: 10px;
}

.wpo-pricing-list ul {
    list-style: none;
    text-align: left;
}

.wpo-pricing-list ul li i {
    margin-right: 20px;
    color: #0653c0;
}

.page-wrapper .wpo-pricing-list ul li {
    font-size: 16px;
    font-weight: 400;
    padding-bottom: 16px;
    line-height: 23px;
}

@media(max-width: 767px) {
    .wpo-pricing-list ul li {
        font-size: 16px;
    }
}

a.wpo-pricing-btn {
    display: block;
    width: 230px;
    height: 60px;
    line-height: 60px;
    background: #ecf3fe;
    border: 1px solid #afcffc;
    margin: auto;
    color: #1bcdf8;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
    font-weight: 600;
}

a.wpo-pricing-btn:hover {
    background: #1bcdf8;
    color: #fff;
}

a.wpo-pricing-btn.active {
    background: #1bcdf8;
    color: #fff;
}

@media(max-width: 767px) {
    .Pricing-header {
        width: 300px;
    }

    .Pricing-header .nav li a {
        width: 140px;
    }
	a.wpo-pricing-btn { 
	 width:auto;
	}
}

.wpo-pricing-area .custom-grid:nth-child(2) a.wpo-pricing-btn {
    background: #1bcdf8;
    color: #fff;
}


/*Pricing area 2*/



.wpo-pricing-area-2 {
    background: #fcfcfc;
}

.wpo-pricing-area-2 a.wpo-pricing-btn {
    display: block;
    line-height: 55px;
    position: relative;
    bottom: 0px;
    left: unset;
    transform: unset;
    font-weight: 600;
    text-align: center;
    margin: auto;
    transition: all .3s;
    background: -webkit-linear-gradient(292deg, #34ffdf 0%, #1bcdf8 100%);
    background: linear-gradient(158deg, #34ffdf 0%, #1bcdf8 100%);
    border-color: #34ffdf;
    box-shadow: 0 20px 20px -10px rgba(63, 51, 137, 0.12);
    font-size: 18px;
    color: #fff;
    border-radius: 4px;
}

.wpo-pricing-area-2 .wpo-pricing-item h3 {
    font-size: 24px;
    font-weight: 500;
    color: #2d4277;
    margin-bottom: 0;
    margin-top: 0;
    transition: all .3s;
}

.wpo-pricing-area-2 .wpo-pricing-item h2 {
    transition: all .3s;
}

.wpo-pricing-area-2 .wpo-pricing-item h2 span {
    transition: all .3s;
}

.wpo-pricing-item h2 {
    font-size: 30px;
}

.wpo-pricing-area-2 h2 {
    font-size: 30px;
    padding-bottom: 20px;
}

.wpo-pricing-area-2 .wpo-pricing-list ul {
    text-align: center;
    padding-left: 0px;
}

.wpo-pricing-area-2 .Pricing-header .nav li a {
    border-radius: 0;
    background: #fff;
}

.wpo-pricing-area-2 .Pricing-header .nav li:first-child a {
    border-bottom-left-radius: 40px;
    border-top-left-radius: 40px;
    border: none;
}

.wpo-pricing-area-2 .Pricing-header .nav li:last-child a {
    border-bottom-right-radius: 40px;
    border-top-right-radius: 40px;
    border: none;
}

.wpo-pricing-area-2 .Pricing-header .nav li {
    margin-right: 0;
    margin-left: 0;
}

.wpo-pricing-area-2 .Pricing-header {
    width: 324px;
    padding: 0;
    padding-bottom: 0px;
}
@media (max-width: 767px) {
	.wpo-pricing-area-2 .Pricing-header { 
	  width: 285px;
	}
	.wpo-pricing-area-2 .Pricing-header .nav li + li a {
		padding-left: 0px;
	}
	.wpo-pricing-area-2 .wpo-pricing-item h3 {
		font-size: 20px;
	}
}
.wpo-pricing-area-2 .Pricing-header .nav li.active a {
    background: -webkit-linear-gradient(292deg, #34ffdf 0%, #1bcdf8 100%);
    background: linear-gradient(158deg, #34ffdf 0%, #1bcdf8 100%);
    color: #fff;
    outline: none;
}

.wpo-pricing-area-2 .wpo-pricing-item {
    padding: 0;
    padding: 60px;
    transition: all .3s;
    border-radius: 10px;
    box-shadow: 0px 6px 30.1px 4.9px rgba(4, 74, 175, 0.06);
}

.wpo-pricing-area-2 .wpo-pricing-item:hover {
    background: -webkit-linear-gradient(300deg, #32267d 0%, #9584ee 100%);
    background: linear-gradient(150deg, #32267d 0%, #9584ee 100%);
}

.wpo-pricing-area-2 .wpo-pricing-item:hover h3 {
    color: #cbdffc;
}

.wpo-pricing-area-2 .wpo-pricing-item:hover h2 {
    color: #fff;
}

.wpo-pricing-area-2 .wpo-pricing-item:hover h2 span {
    color: #fff;
}

.wpo-pricing-area-2 .wpo-pricing-list {
    padding-left: 0;
    padding-top: 35px;
    padding-bottom: 20px;
    transition: all .3s;
}

.wpo-pricing-list ul li {
    transition: all .3s;
}

.wpo-pricing-area-2 .wpo-pricing-item:hover .wpo-pricing-list {
    border-top: 1px solid #7465c9;
}

.wpo-pricing-area-2 .wpo-pricing-item:hover .wpo-pricing-list ul li {
    color: #fff;
}

.wpo-pricing-area-2 .wpo-pricing-item:hover a.wpo-pricing-btn {
    background: #fff;
    color: #1bcdf8;
}

.wpo-pricing-item .shape-1,
.wpo-pricing-item .shape-5 {
    position: absolute;
    right: 10px;
    top: 5%;
    width: 46px;
    height: 46px;
    background: #7262c6;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: all .9s;
    transform: scale(0);
}

.wpo-pricing-item .shape-5 {
    top: auto;
    bottom: 20%;
    transition: all .1.6s;
}

.wpo-pricing-item .shape-2,
.wpo-pricing-item .shape-4 {
    position: absolute;
    left: 10px;
    top: 35%;
    width: 31px;
    height: 31px;
    background: #7262c6;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: all 1.9s;
    transform: scale(0);
}

.wpo-pricing-item .shape-4 {
    bottom: 30px;
    top: auto;
    left: 30px;
    transition: all 1s;
}

.wpo-pricing-item .shape-3 {
    position: absolute;
    left: 45px;
    top: 62%;
    width: 19px;
    height: 19px;
    background: #7262c6;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: all 1.8s;
    transform: scale(0);
}

.wpo-pricing-item:hover .shape-1,
.wpo-pricing-item:hover .shape-2,
.wpo-pricing-item:hover .shape-3,
.wpo-pricing-item:hover .shape-4,
.wpo-pricing-item:hover .shape-5 {
    opacity: .5;
    visibility: visible;
    transform: scale(1);
}


.wpo-pricing-area-2 .custom-grid:nth-child(2) .wpo-pricing-item {
    background: -webkit-linear-gradient(300deg, #32267d 0%, #9584ee 100%);
    background: linear-gradient(150deg, #32267d 0%, #9584ee 100%);
    color: #fff;
}
.wpo-pricing-area-2 .custom-grid:nth-child(2) .wpo-pricing-item h3 ,
.wpo-pricing-area-2 .custom-grid:nth-child(2) .wpo-pricing-item h2 ,
.wpo-pricing-area-2 .custom-grid:nth-child(2) .wpo-pricing-item h2 span {
    color: #fff;
}
.wpo-pricing-area-2 .custom-grid:nth-child(2) .wpo-pricing-item .wpo-pricing-list {
    border-top: 1px solid #7465c9;
}
.wpo-pricing-area-2 .custom-grid:nth-child(2) .wpo-pricing-item a.wpo-pricing-btn {
    border: 2px solid #fff;
    background: #fff;
    color: #1bcdf8;
}
.wpo-pricing-area-2 .custom-grid:nth-child(2) .wpo-pricing-item a.wpo-pricing-btn:hover{
    background: -webkit-linear-gradient(292deg, #34ffdf 0%, #1bcdf8 100%);
    background: linear-gradient(158deg, #34ffdf 0%, #1bcdf8 100%);
    border-color: #34ffdf;
    color: #fff;
}
.wpo-service-area-2 .wpo-service-icon img {
    width: 150px;
    height: 120px;

}

.wpo-service-area-2 .wpo-service-item,
.wpo-service-area-3 .wpo-service-item {
    box-shadow: 0px 6px 20.1px 4.9px rgba(176, 191, 238, 0.12);
    padding: 50px 25px 30px;
}

.wpo-service-area-3 .wpo-service-icon img {
    width: unset;
    height: unset;

}

.wpo-service-area-3 .wpo-service-icon {
    width: 90px;
    height: 84px;
    background: #1bcdf8;
    line-height: 80px;
    border-radius: 5px;
}

.wpo-service-area-3 .wpo-service-item {
    padding: 70px 25px 50px;
}


/*=============================================
#0.9 wpo-sevice-area
===============================================*/
.wpo-service-item {
    padding: 40px 25px;
    -webkit-box-shadow: 0px 6px 20.1px 4.9px rgba(176, 191, 238, 0.12);
    box-shadow: 0px 6px 20.1px 4.9px rgba(176, 191, 238, 0.12);
    margin-bottom: 30px;
}

.wpo-service-text {
    text-align: center;
}

.wpo-service-icon {
    text-align: center;
    margin: auto;
    margin-bottom: 30px;
}

.wpo-service-item .wpo-service-icon img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.wpo-service-text h2 {
    font-size: 24px;
    font-weight: 600;
    color: #2d4277;
    margin-bottom: 20px;
    margin-top: 10px;
}

.wpo-service-text h2 a {
    color: #2d4277;
}

.wpo-service-text a {
    color: #1bcdf8;
    font-weight: 500;
    margin-top: 30px;
}

.wpo-service-item .wpo-service-text p {
    margin: 15px 0;
    font-weight: 400;
}


/*--------------------------------------------------------------
#3.1 team-section
--------------------------------------------------------------*/

.team-grids {
    padding: 0 15px;
}

.team-section .grid {
    text-align: center;
}

.team-section .img-holder img {
    text-align: center;
    box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
    border-radius: 5px;
}

.team-section .grid .details {
    padding: 25px 0;
}
.team-section .grid .details p {
    margin-bottom: 0px;
    font-size: 14px;
}
.team-section h3 {
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 500;
    margin: 0 0 0.4em;
}

@media (max-width: 767px) {
    .team-section h3 {
        font-size: 16px;
        font-size: 1rem;
    }
}

.team-section ul {
    list-style: none;
    overflow: hidden;
    display: inline-block;
    list-style: none;
    padding-left: 0px;
}

.team-section ul li {
    float: left;
}

.team-section ul>li+li {
    margin-left: 25px;
}

.team-section ul a {
    color: #999;
}

.team-section .owl-theme .owl-controls .owl-nav [class*=owl-] {
    background: #fff;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 20px;
    font-size: 1.25rem;
    color: #bbbbbb;
    padding: 0;
    border-radius: 60px;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(138, 138, 138, 0.1);
    box-shadow: 0px 5px 15px 0px rgba(138, 138, 138, 0.1);
}

@media (max-width: 767px) {
    .team-section .owl-theme .owl-controls .owl-nav [class*=owl-] {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }
}

.team-section .owl-theme .owl-controls .owl-nav [class*=owl-]:hover {
    background: #1bcdf8;
    color: #fff;
}

.image_here {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 1920px;
    height: 4666px;
    z-index: 79;
}
.team-section .owl-theme .owl-controls {
    margin-top: -25px;
}

/*--------------------------------------------------------------
#6.0 wpo-contact-page
--------------------------------------------------------------*/

.wpo-contact-form-map .contact-form {
    padding: 60px 65px 30px;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
    box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
    border-radius: 5px;
}


.wpo-contact-form-map .contact-form h2 {
    font-size: 30px;
    font-size: 1.875rem;
    font-weight: 600;
    margin: 0 0 1em;
    text-align: center;
}

@media (max-width: 767px) {
    .wpo-contact-form-map .contact-form h2 {
        font-size: 25px;
        font-size: 1.5625rem;
    }
}

.wpo-contact-form-map form input,
.wpo-contact-form-map form select,
.wpo-contact-form-map form textarea {
    background: transparent;
    width: 100%;
    height: 50px;
    border: 0;
    border-bottom: 1px solid #d0d4df;
    border-radius: 0;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    padding-left: 0;
    color: #525252;
}

@media (max-width: 991px) {

    .wpo-contact-form-map form input,
    .wpo-contact-form-map form select,
    .wpo-contact-form-map form textarea {
        height: 45px;
    }
}

.wpo-contact-form-map form input:focus,
.wpo-contact-form-map form select:focus,
.wpo-contact-form-map form textarea:focus {
    border-color: #1bcdf8;
}

.wpo-contact-form-map form textarea {
    height: 175px;
}

.wpo-contact-form-map form {
    overflow: hidden;
}

.wpo-contact-form-map form ::-webkit-input-placeholder {
    font-style: 16px;
    font-style: normal;
    color: #888;
}

.wpo-contact-form-map form :-moz-placeholder {
    font-style: 16px;
    font-style: normal;
    color: #888;
}

.wpo-contact-form-map form ::-moz-placeholder {
    font-style: 16px;
    font-style: normal;
    color: #888;
}

.wpo-contact-form-map form :-ms-input-placeholder {
    font-style: 16px;
    font-style: normal;
    color: #888;
}

.wpo-contact-form-map form select {
    display: inline-block;
    color: #a9a9a9;
    cursor: pointer;
    opacity: 1;
    padding: 6px 12px;
    font-size: 15px;
    font-size: 0.9375rem;
}

.wpo-contact-form-map form>div {
    margin-bottom: 15px;
}

.wpo-contact-form-map form>div:first-child,
.wpo-contact-form-map form>div:nth-child(2) {
    width: calc(50% - 15px);
    float: left;
    margin: 0 7.5px 15px -7.5px;
}

.wpo-contact-form-map form>div:nth-child(2) input[type=text] {
    padding-left: 8px;
}

@media (max-width: 600px) {

    .wpo-contact-form-map form>div:first-child,
    .wpo-contact-form-map form>div:nth-child(2) {
        width: calc(100% - 15px);
        float: none;
        margin: 0 0 15px;
    }
}

.wpo-contact-form-map form>div:first-child {
    margin: 0;
}

@media (max-width: 600px) {
    .wpo-contact-form-map form>div:first-child {
        margin: 0 0 15px;
    }
}

.wpo-contact-form-map form>div:nth-child(3) {
    width: calc(50% - 15px);
    float: left;
    margin: 0 7.5px 15px -7.5px;
}

.wpo-contact-form-map form>div:nth-child(3) {
    margin: 0 0 15px 30px;
}

@media (max-width: 600px) {
    .wpo-contact-form-map form>div:nth-child(3) {
        width: calc(100% - 15px);
        float: none;
        margin: 0 0 15px;
    }
}

@media (max-width: 600px) {
    .wpo-contact-form-map form>div:nth-child(2) {
        margin: 0 0 15px;
    }
}

.wpo-contact-form-map form>div:nth-child(4) {
    clear: both;
}

.wpo-contact-form-map .submit-area {
    width: 100%;
    float: none;
    clear: both;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 23px;
}

.wpo-contact-form-map .contact-map {
    max-width: 948px;
    height: 355px;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
    box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
}

@media (max-width: 767px) {
    .wpo-contact-form-map .contact-map {
        height: 500px;
    }
}

.wpo-contact-form-map .contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-map {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
}

.contact-form .theme-btn {
    background: #1bcdf8;
    color: #fff;
    border: 1px solid #1bcdf8;
    outline: none;
    margin-top: 20px;
}

.wpo-contact-form-map .contact-form {
    margin-bottom: 60px;
}

.wpo-contact-form-map .info-wrap {
    display: flex;
    align-items: center;
}

.wpo-contact-form-map .info-icon {
    width: 85px;
    height: 85px;
    background: #fff;
    line-height: 90px;
    border-radius: 50%;
    -webkit-box-shadow: 0px 10px 40px 0px rgba(50, 50, 50, 0.1);
    -moz-box-shadow: 0px 10px 40px 0px rgba(50, 50, 50, 0.1);
    box-shadow: 0px 10px 40px 0px rgba(50, 50, 50, 0.1);
    text-align: center;
    margin-right: 20px;
    align-items: center;
}

.info-item {
    -webkit-box-shadow: 0px 10px 40px 0px rgba(50, 50, 50, 0.1);
    -moz-box-shadow: 0px 10px 40px 0px rgba(50, 50, 50, 0.1);
    box-shadow: 0px 10px 40px 0px rgba(50, 50, 50, 0.1);
    padding: 35px 40px;
    margin-bottom: 30px;
}

.info-item h2 {
    font-size: 18px;
    color: #242f6c;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 15px;

}

.wpo-contact-info {
    max-width: 395px;
    padding-left: 20px;
}

.info-icon .fi:before {
    font-size: 40px;
    color: #1bcdf8;
}

.info-text span {
    color: #666666;
    font-size: 18px;
    font-weight: 600;
}

@media(max-width: 991px) {
    .wpo-contact-form-map {
        padding: 50px 10px;
    }

    .wpo-contact-info {
        padding-left: 0;
    }
}

@media(max-width: 590px) {
    .info-item h2 {
        font-size: 20px;
    }

    .info-text span {
        font-size: 15px;
    }

    .wpo-contact-form-map form textarea {
        height: 100px;
    }
}
.wpo-contact-form-map-2 .contact-form h2 {
    font-size: 30px;
    font-size: 1.875rem;
    font-weight: 600;
    color: #19067c;
    font-family: 'Conv_Now-Bold';
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.wpo-contact-form-map-2 .contact-form h2:before {
    position: absolute;
    left: 0;
    width: 80px;
    height: 3px;
    content: "";
    background: #1bcdf8;
    bottom: 0;
}

@media (max-width: 767px) {
    .wpo-contact-form-map-2 .contact-form h2 {
        font-size: 25px;
        font-size: 1.5625rem;
    }
}

.wpo-contact-form-map-2 .contact-form p {
    margin-bottom: 20px;
}

.wpo-contact-form-map-2 form input,
.wpo-contact-form-map-2 form textarea {
    background: transparent;
    width: 100%;
    height: 60px;
    border: 0;
    border: 1px solid #d0d4df;
    border-radius: 0;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    color: #525252;
    margin-bottom: 30px;
}

@media (max-width: 991px) {

    .wpo-contact-form-map-2 form input,
    .wpo-contact-form-map-2 form textarea {
        height: 45px;
    }
}

.wpo-contact-form-map-2 form input:focus,
.wpo-contact-form-map-2 form textarea:focus {
    border-color: #1bcdf8;
}

.wpo-contact-form-map-2 form textarea {
    height: 215px;
}


.wpo-contact-form-map-2 form ::-webkit-input-placeholder {
    font-style: 16px;
    font-style: normal;
    color: #888;
}

.wpo-contact-form-map-2 form :-moz-placeholder {
    font-style: 16px;
    font-style: normal;
    color: #888;
}

.wpo-contact-form-map-2 form ::-moz-placeholder {
    font-style: 16px;
    font-style: normal;
    color: #888;
}

.wpo-contact-form-map-2 form :-ms-input-placeholder {
    font-style: 16px;
    font-style: normal;
    color: #888;
}



.wpo-contact-form-map-2 .contact-form .theme-btn {
    width: 100%;
    border-radius: 0;
    margin-top: 0;
    height: 60px;
}
.wpo-contact-form-map-2 .wpo-contact-info {
    max-width: unset;
    padding-left: 0px;
}

.wpo-contact-form-map-2 .info-icon {
    width: 90px;
    height: 84px;
    background: #1bcdf8;
    line-height: 80px;
    border-radius: 5px;
    text-align: center;
    float: left;
    margin-right: 30px;
}

.wpo-contact-form-map-2 .info-text {
    overflow: hidden;
    margin-left: 30px;
}

.wpo-contact-form-map-2 .info-item {
    padding: 0;
    padding: 20px;
    padding-bottom: 32px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
}
.wpo-contact-form-map-2 .info-item .info-icon .fi:before {
    color: #fff;
}
.wpo-contact-form-map-2 .info-text h4 {
    color: #19067c;
    font-weight: 600;
    font-size: 22px;
    margin-top: 11px;
    margin-bottom: 11px;
}

.wpo-contact-form-map-2 .info-text span {
    color: #4e4b4b;
    font-weight: 500;
    font-size: 17px;
}

@media(max-width: 992px) {
    .wpo-contact-form-map-2 .contact-form {
        margin-bottom: 60px;
    }

    .wpo-contact-form-map-2 .contact-map:before {
        right: 0px;
        top: -60px;
    }
}

@media(max-width: 767px) {

    .wpo-contact-form-map-2 .contact-map:before {
        right: 10px;
    }
}
@media(max-width: 590px) {
    .wpo-contact-form-map-2 .contact-map iframe {
        width: 88%;
        height: 300px;
    }

    .wpo-contact-form-map-2 .contact-map:before {
        right: 10px;
        top: -12px;
    }
}

/*--------------------------------------------------------------
#6.1    wpo-contact-page-section
--------------------------------------------------------------*/
.wpo-contact-page-section .submit-btn-wrapper {
  text-align: center;
}

.wpo-contact-page-section form {
  overflow: hidden;
  margin: 0 -15px;
}

@media (max-width: 767px) {
  .wpo-contact-page-section form {
    margin: 0 0 0 -15px;
  }
}

.wpo-contact-page-section form .one-third-col {
  width: 33.33%;
  float: left;
}

@media (max-width: 600px) {
  .wpo-contact-page-section form .one-third-col {
    width: 100%;
    float: left;
  }
}

.wpo-contact-page-section form div {
  padding: 0 15px 30px;
}

@media (max-width: 767px) {
  .wpo-contact-page-section form div {
    padding: 0 0 15px 15px;
  }
}

.wpo-contact-page-section form .submit-btn-wrapper {
  padding-bottom: 0;
}

.wpo-contact-page-section form input,
.wpo-contact-page-section form textarea {
  background-color: #f9f9f9;
  height: 55px;
  padding: 6px 15px;
  border: 2px solid #f1f1f1;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

@media (max-width: 767px) {
  .wpo-contact-page-section form input,
  .wpo-contact-page-section form textarea {
    height: 45px;
  }
}

.wpo-contact-page-section form input:focus,
.wpo-contact-page-section form textarea:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #e2e2e2;
}

.wpo-contact-page-section form textarea {
  height: 200px;
  padding: 15px;
}

.wpo-contact-page-section .contact-title {
    text-align: center;
    max-width: 657px;
    margin: auto;
    margin-bottom: 50px;
}
.wpo-contact-page-section .contact-title h2 {
    font-weight: 600;
    margin-top: 0px;
}
.wpo-contact-page-section .contact-title p {
   font-size: 16px;
}
.wpo-contact-page-section .last-col {
    clear: both;
}
/*------------------------------------------------
#5.1 service-single
-------------------------------------------------*/

.cart-wrap th,
.cart-wrap td {
    border: 1px solid #eee;
    padding: 20px 0;
    width: 10%;
    text-align: center;
    color: #687693;
    background: transparent;
}

.cart-wrap th:hover {
    background: transparent;
}

.pricing-details-wrap .wpo-pricing-item {
    background: none;
    box-shadow: none;
    padding: 0;

}

.pricing-details-wrap .wpo-pricing-item .p-h3 {
    margin-bottom: 0px;
    margin-top: 5px;
}

.pricing-details-wrap .wpo-pricing-item .p-h2 {
    margin-top: 20px;
}

.pricing-details-wrap .theme-btn-s2 {
    background: #1bcdf8;
    color: #fff;
    margin-top: 5px;
}

.pricing-details-wrap .ti-close {
    color: red;
}

.pricing-details-wrap .ti-check {
    color: #21b70d;
}

.pricing-details-wrap .cart-wrap td:first-child {
    font-weight: 600;
    width: 15%;
    text-align: left;
    padding-left: 30px;
}

.pricing-details-wrap .cart-wrap th:first-child {
    border-left: none;
    border-top: none;
}

@media(max-width: 991px) {
    .pricing-details-wrap .cart-wrap td:first-child {
        width: 10%;
    }

    .pricing-details-wrap .cart-wrap .wpo-pricing-item .p-h2 {
        font-size: 22px;
    }

    .pricing-details-wrap .cart-wrap .wpo-pricing-item {
        margin-bottom: 0;
    }
}

@media(max-width: 767px) {
    .pricing-details-wrap .cart-wrap td:first-child {
        width: 10%;
    }

    .pricing-details-wrap .cart-wrap .wpo-pricing-item .p-h2 {
        font-size: 22px;
    }

    .pricing-details-wrap .cart-wrap .wpo-pricing-item {
        margin-bottom: 0;
    }

    .pricing-details-wrap .cart-wrap .wpo-pricing-item .p-h2 span {
        font-size: 11px;
    }

    .pricing-details-wrap .cart-wrap .wpo-pricing-item .p-h3 {
        font-size: 17px;
    }

    .pricing-details-wrap .cart-wrap .wpo-pricing-item .p-h2 small {
        font-size: 11px;
        left: -6px;
    }

    .pricing-details-wrap .cart-wrap .theme-btn-s2 {
        font-size: 12px;
        padding: 10px 8px;
    }

    .pricing-details-wrap .cart-wrap th,
    .cart-wrap td {
        padding: 18px 20px;
    }
}

@media(max-width: 590px) {
    .pricing-details-wrap .cart-wrap td:first-child {
        width: 10%;
    }

    .pricing-details-wrap .cart-wrap .wpo-pricing-item .p-h2 {
        font-size: 22px;
    }

    .pricing-details-wrap .cart-wrap .wpo-pricing-item {
        margin-bottom: 0;
    }

    .pricing-details-wrap .table-responsive {
        max-width: 500px;
    }

}

.wpo-planing-icon {
    width: 90px;
    height: 90px;
    background: #fff;
    line-height: 90px;
    border-radius: 50%;
    -webkit-box-shadow: 0px 10px 40px 0px rgba(50, 50, 50, 0.1);
    -moz-box-shadow: 0px 10px 40px 0px rgba(50, 50, 50, 0.1);
    box-shadow: 0px 10px 40px 0px rgba(50, 50, 50, 0.1);
    text-align: center;
    float: left;
    margin-right: 20px;
}

.wpo-planing-icon .fi:before {
    font-size: 40px;
    color: #1bcdf8;
}

.wpo-planing-text {
    overflow: hidden;
}

.wpo-planing-text span {
    font-size: 20px;
    font-weight: 600;
    color: #2d4277;
    margin-bottom: 10px;
    display: block;
}

.wpo-planing-text p {
    font-size: 15px;
}

.wpo-planing-single {
    margin-bottom: 60px;
}

.planing-area {
    padding-bottom: 25px;
}

@media(max-width: 1200px) {
    .wpo-planing-text span {
        font-size: 15px;
    }

    .wpo-planing-text p {
        font-size: 14px;
    }
}

@media(max-width: 767px) {
    .wpo-planing-icon {
        float: none;
        margin: auto;
        margin-bottom: 20px;
    }

    .wpo-planing-text {
        text-align: center;
    }

    .wpo-planing-single {
        margin-bottom: 40px;
    }
}
.hostar-feature.planing-area .wpo-planing-text h2 {
    margin-top: 8px;
    margin-bottom: 12px;
}
.hostar-feature.planing-area .custom-grid:nth-child(1) .wpo-planing-icon .fi:before {
    position: relative;
    top: 5px;
}

/*--------------------------------------------------------------
#1.1	testimonials-section
--------------------------------------------------------------*/
.testimonials-section {
  padding-bottom: 40px;
}

@media (max-width: 991px) {
  .testimonials-section {
    padding-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .testimonials-section {
    padding-bottom: 10px;
  }
}

.testimonials-section .testimonial-grids {
  margin: 0 -15px;
}

.testimonials-section .testimonial-grids .grid {
  width: calc(33.33% - 30px);
  float: left;
  margin: 0 15px 70px;
}

@media (max-width: 991px) {
  .testimonials-section .testimonial-grids .grid {
    width: calc(50% - 30px);
  }
}

@media (max-width: 600px) {
  .testimonials-section .testimonial-grids .grid {
    width: calc(100% - 30px);
    float: none;
  }
}

.testimonials-section .quote {
  background: rgba(8, 106, 216, 0.05);
  padding: 45px;
  position: relative;
  border-radius: 5px;
}
.testimonials-section .quote p {
	margin-bottom:0px;
	font-size: 15px;
}

@media (max-width: 767px) {
  .testimonials-section .quote {
    padding: 30px 25px;
  }
}

.testimonials-section .quote:before {
  content: "";
  border-right: 30px solid transparent;
  border-top: 20px solid rgba(8, 106, 216, 0.05);
  position: absolute;
  left: 35px;
  bottom: -20px;
}

.testimonials-section .client-info {
  margin-top: 35px;
  position: relative;
  padding-left: 75px;
}

.testimonials-section .client-info .img-holder {
  position: absolute;
  left: 0;
  top: 0;
}

.testimonials-section .client-info .img-holder img {
  border-radius: 50%;
  max-width:63px;
}

.testimonials-section .client-info h5 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
  margin: 0 0 0;
  padding: 0.8em 0 0;
}

@media (max-width: 767px) {
  .testimonials-section .client-info h5 {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.testimonials-section .client-info p {
  font-size: 12px;
  font-size: 0.75rem;
  margin: 0;
  line-height: 1.7em;
}

/*--------------------------------------------------------------
#1.3  wpo-news-letter-section
--------------------------------------------------------------*/
.wpo-news-letter-section,
.wpo-news-letter-section-2 {
    background: -webkit-linear-gradient(300deg, #32267d 0%, #9584ee 100%);
    background: linear-gradient(150deg, #32267d 0%, #9584ee 100%);
    text-align: center;
    padding-top: 100px;
    padding-bottom: 0px;
}

.wpo-news-letter-section-2 {
    background: #fcfcfc;
}

@media (max-width: 991px) {

    .wpo-news-letter-section,
    .wpo-news-letter-section-2 {
        padding: 80px 15px;
        padding-bottom: 0px;
    }
    .home .wpo-news-letter-section, .wpo-news-letter-section-2 {
         padding-bottom: 90px;
    }
}

.wpo-news-letter-section h3,
.wpo-news-letter-section-2 h3 {
    font-size: 30px;
    font-size: 1.875rem;
    font-weight: bold;
    margin: 0 0 1.5em;
    line-height: 0.8em;
    color: #fff;
    font-family: 'now';
}

@media(max-width: 1024px) {

    .wpo-news-letter-section h3,
    .wpo-news-letter-section-2 h3 {
        font-size: 28px;
    }
}

.wpo-news-letter-section-2 h3 {
    color: #2d4277;
}

@media (max-width: 991px) {

    .wpo-news-letter-section h3,
    .wpo-news-letter-section-2 h3 {
        font-size: 25px;
        font-size: 1.5625rem;
    }
}

@media (max-width: 767px) {

    .wpo-news-letter-section h3,
    .wpo-news-letter-section-2 h3 {
        font-size: 22px;
        line-height:35px;
    }
    .wpo-news-letter-section,
    .wpo-news-letter-section-2 {
        padding-bottom: 0px;
    }
}

.wpo-news-letter-section form,
.wpo-news-letter-section-2 form {
    max-width: 425px;
    margin: 0 auto;
}

.wpo-news-letter-section form>div,
.wpo-news-letter-section-2 form>div {
    position: relative;
}

.wpo-news-letter-section form>div input,
.wpo-news-letter-section-2 form>div input {
    height: 55px;
    border: 0;
    outline: 0;
    border-radius: 55px;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 15px 15px 15px 25px;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
    box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
}

@media (max-width: 991px) {

    .wpo-news-letter-section form>div input,
    .wpo-news-letter-section-2 form>div input {
        height: 50px;
    }
}

.wpo-news-letter-section form>div button,
.wpo-news-letter-section-2 form>div button {
    background: #1bcdf8;
    width: 150px;
    height: 45px;
    font-weight: 600;
    text-align: center;
    color: #fff;
    border: 0;
    outline: 0;
    position: absolute;
    right: 5px;
    top: 5px;
    border-radius: 45px;
}

@media (max-width: 991px) {

    .wpo-news-letter-section form>div button,
    .wpo-news-letter-section-2 form>div button {
        width: 120px;
        height: 40px;
    }
}

.wpo-newsletter-form>div {
    position: relative;
    max-width: 425px;
    margin: auto;
}

.wpo-news-letter-section div input {
    height: 55px;
    border: 0;
    outline: 0;
    border-radius: 55px;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 15px 15px 15px 25px;
    -webkit-box-shadow: 0 5px 15px 0 rgba(68, 68, 68, .1);
    box-shadow: 0 5px 15px 0 rgba(68, 68, 68, .1);
    display: block;
    width: 100%;
}

.wpo-news-letter-section div button,
.wpo-news-letter-section div input[type=submit] {
    background: #1bcdf8;
    width: 150px;
    height: 45px;
    font-weight: 600;
    text-align: center;
    color: #fff;
    border: 0;
    outline: 0;
    position: absolute;
    right: 5px;
    top: 5px;
    border-radius: 45px;
    line-height: 17px;
}

/*--------------------------------------------------------------
#0.5  footer
--------------------------------------------------------------*/
.wpo-site-footer {
    background: -webkit-linear-gradient(300deg, #32267d 0%, #9584ee 100%);
    background: linear-gradient(150deg, #32267d 0%, #9584ee 100%);

    position: relative;
    font-size: 15px;
    overflow: hidden;
    /*** about-widget ***/
    /*** link-widget ***/
    /*** resource-widget ***/
    /*** market-widget ***/
    /*** lower-footer ***/
}

.wpo-site-footer ul {
    list-style: none;
}

.wpo-site-footer p,
.wpo-site-footer li {
    color: #525252;
}

.wpo-site-footer .container {
    position: relative;
}

.wpo-site-footer .upper-footer {
    padding-top: 100px;
    padding-bottom: 90px;
}

@media (max-width: 991px) {
    .wpo-site-footer .upper-footer {
        padding: 90px 0 20px;
    }
}

@media (max-width: 767px) {
    .wpo-site-footer .upper-footer {
        padding: 80 0 10px;
    }
}

@media (max-width: 991px) {
    .wpo-site-footer .upper-footer .col {
        min-height: 235px;
        margin-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .wpo-site-footer .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: 25px;
    font-size: 1.5625rem;
    font-weight: bold;
    color: #fff;
    margin: 0;
    text-transform: capitalize;
    position: relative;
}

@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+li {
    margin-left: 10px;
}

.wpo-site-footer .about-widget ul a {
    color: #1bcdf8;
}

.wpo-site-footer .about-widget ul a:hover {
    color: #1bcdf8;
}

.wpo-site-footer .link-widget {
    overflow: hidden;
}

@media screen and (min-width: 1200px) {
    .wpo-site-footer .link-widget {
        padding-left: 20px;
    }
}

@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 a {
    color: #fff;
    line-height: 22px;
}

.wpo-site-footer .link-widget ul a:hover,
.wpo-site-footer .link-widget ul li:hover:before {
    text-decoration: underline;
}

.wpo-site-footer .link-widget ul>li+li {
    margin-top: 12px;
}

@media screen and (min-width: 1200px) {
    .wpo-site-footer .resource-widget {
        padding-left: 60px;
    }
}

.wpo-site-footer .market-widget .sold-earning {
    overflow: hidden;
    padding-top: 15px;
}

.wpo-site-footer .market-widget .sold-earning>div {
    width: 50%;
    float: left;
}

.wpo-site-footer .market-widget .sold-earning p {
    font-family: "Now";
    font-size: 14px;
    font-size: 0.875rem;
}

.wpo-site-footer .market-widget .sold-earning h4 {
    font-size: 25px;
    font-size: 1.5625rem;
    color: #03a4ad;
    font-weight: bold;
    margin-bottom: 0;
}

.wpo-site-footer .wpo-lower-footer {
    text-align: center;
    position: relative;
}

.wpo-site-footer .wpo-lower-footer .row {
    padding: 20px 0;
    position: relative;
}

.wpo-site-footer .wpo-lower-footer .row .separator {
    background: rgba(255, 255, 255, .21);
    width: calc(100% - 30px);
    height: 1px;
    position: absolute;
    left: 15px;
    top: 0;
}

.wpo-site-footer .wpo-lower-footer .copyright {
    display: inline-block;
    font-size: 15px;
    font-size: 0.9375rem;
    margin: 0;
}

@media (max-width: 991px) {
    .wpo-site-footer .wpo-lower-footer .copyright {
        float: none;
        display: block;
        margin: 0 0 20px;
    }
}

.wpo-site-footer .wpo-lower-footer .copyright a {
    color: #fff;
    text-decoration: underline;
}

.wpo-site-footer .wpo-lower-footer p,
.wpo-site-footer .wpo-lower-footer p a {
    color: #fff;
}

.sticky-header {
    width: 100%;
    position: fixed;
    left: 0;
    top: -200px;
    z-index: 9999;
    opacity: 0;
    -webkit-transition: all 0.7s;
    -moz-transition: all 0.7s;
    -o-transition: all 0.7s;
    -ms-transition: all 0.7s;
    transition: all 0.7s;
    background: white;
    -webkit-box-shadow: 0 0 15px rgba(218, 218, 218, 0.5);
    box-shadow: 0 0 15px rgba(218, 218, 218, 0.5);
}

.sticky-on {
    opacity: 1;
    top: 0;
}

.header-style-2 .sticky-header {
    background-color: #fff;
}

.header-style-1 .sticky-header {
    background: -webkit-linear-gradient(300deg, #32267d 0%, #9584ee 100%);
    background: linear-gradient(150deg, #32267d 0%, #9584ee 100%);
}

.header-style-1 .sticky-header.navbar-default .navbar-brand {
    padding: 10px;
    padding-top:18px;
}

@media screen and (min-width: 992px) {
    .header-style-1 .sticky-header.navigation {
        padding-top: 10px;
    }
}

@media (max-width: 991px) {
    .header-style-1 {
        background: rgb(42, 22, 155);
        background: -moz-linear-gradient(left, rgba(42, 22, 155, 1) 39%, rgba(41, 137, 216, 1) 78%, rgba(44, 212, 217, 1) 95%);
        background: -webkit-linear-gradient(left, rgba(42, 22, 155, 1) 39%, rgba(41, 137, 216, 1) 78%, rgba(44, 212, 217, 1) 95%);
        background: linear-gradient(to right, rgba(42, 22, 155, 1) 39%, rgba(41, 137, 216, 1) 78%, rgba(44, 212, 217, 1) 95%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2a169b', endColorstr='#2cd4d9', GradientType=1);

    }

    .header-style-1 .navigation {
        background-color: #5c4ead;
    }

    .header-style-1 .wpo-topbar .contact-info ul li {
        color: #fff;
    }

    .header-style-1 .wpo-topbar .contact-info ul>li+li {
        border: none;
    }
}
@media (max-width: 767px) { 
    .header-style-1 .sticky-header.navbar-default .navbar-brand{
        padding-top:10px;
    }
}
/*--------------------------------------------------------------
#1.2  blog-section
--------------------------------------------------------------*/
.blog-section {
    padding-bottom: 90px;
}

@media (max-width: 991px) {
    .blog-section {
        padding-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .blog-section {
        padding-bottom: 50px;
    }
}

.blog-section .blog-grids {
    margin: 0 -15px;
}

@media (max-width: 767px) {
    .blog-section .blog-grids {
        margin: 0 -7.5px;
    }
}

.blog-section .blog-grids .grid {
    width: calc(33.33% - 30px);
    float: left;
    margin: 0 15px 30px;
}

@media (max-width: 991px) {
    .blog-section .blog-grids .grid {
        width: calc(50% - 30px);
    }
}

@media (max-width: 767px) {
    .blog-section .blog-grids .grid {
        width: calc(50% - 15px);
        margin: 0 7.5px 30px;
    }
}

@media (max-width: 600px) {
    .blog-section .blog-grids .grid {
        width: calc(100% - 15px);
        float: none;
    }
}

.blog-section .entry-media {
    position: relative;
}

.blog-section .entry-media .tag {
    background: #06c5f3;
    background: -webkit-linear-gradient(left, #06c5f3, #00ded8);
    background: -moz-linear-gradient(left, #06c5f3, #00ded8);
    background: -o-linear-gradient(left, #06c5f3, #00ded8);
    background: -ms-linear-gradient(left, #06c5f3, #00ded8);
    background: -webkit-gradient(linear, left top, right top, from(#06c5f3), to(#00ded8));
    background: linear-gradient(left, #06c5f3, #00ded8);
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    border-radius: 5px;
    padding: 3px 8px;
    position: absolute;
    left: 25px;
    top: 25px;
}

.blog-section .entry-details {
    padding: 30px;
    -webkit-box-shadow: 0px 6px 20.1px 4.9px rgba(176, 191, 238, 0.12);
    box-shadow: 0px 6px 20.1px 4.9px rgba(176, 191, 238, 0.12);
}
@media (max-width: 991px) { 
    .blog-section .entry-media img {
        width: 100%;
    }
}
@media (max-width: 767px) {
    .blog-section .entry-details {
        padding: 25px 20px;
    }
    .blog-section .entry-media img {
        width: 100%;
    }
}

.blog-section .entry-details h3 {
    font-size: 20px;
    margin: 0 0 0.75em;
    line-height: 1.5em;
}

@media (max-width: 767px) {
    .blog-section .entry-details h3 {
        font-size: 16px;
        font-size: 1rem;
    }
}

.blog-section .entry-details h3 a {
    color: #242f6c;
}

.blog-section .entry-details h3 a:hover {
    text-decoration: underline;
}

.blog-section .entry-details .author img {
    border-radius: 50%;
    display: inline-block;
    max-width: 37px;
}

.hostar-admin-user {
    display: inline-block;
    padding-left: 7px;
    color: #525252;
}

.blog-section .entry-details .author a {
    font-size: 15px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #525252;
    display: inline-block;
    padding-left: 0px;
    text-transform: capitalize;
}

.blog-section .entry-details .author a:hover {
    text-decoration: underline;
}


/*--------------------------------------------------------------
  #blog page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#5.1  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;
        padding-bottom: 10px;
        padding-top: 0px;
    }
    .wpo-blog-pg-section .wpo-blog-content .post.sticky {
        padding-bottom: 40px;
        padding-left: 30px;
        padding-right: 30px;
    }
}

.wpo-blog-pg-section .entry-meta {
    list-style: none;
    overflow: hidden;
    margin-bottom: 35px;
    padding-top: 35px;
}

@media (max-width: 767px) {
    .wpo-blog-pg-section .entry-meta {
        margin: 10px 0 25px;
    }
}

.wpo-blog-pg-section .entry-meta li {
    font-size: 14px;
    font-size: 0.875rem;
    float: left;
    line-height: 1;
}

@media (max-width: 767px) {
    .wpo-blog-pg-section .entry-meta li {
        font-size: 12px;
        font-size: 0.75rem;
    }
}

@media (max-width: 600px) {
    .wpo-blog-pg-section .entry-meta li {
        float: none;
        display: block;
        margin-bottom: 5px;
    }
}

.wpo-blog-pg-section .entry-meta li .fi:before {
    font-size: 16px;
    font-size: 1rem;
    display: inline-block;
    padding-right: 5px;
}

@media (max-width: 767px) {
    .wpo-blog-pg-section .entry-meta li .fi:before {
        font-size: 12px;
        font-size: 0.75rem;
    }
}

.wpo-blog-pg-section .entry-meta>li+li {
    padding-left: 15px;
    position: relative;
}

@media (max-width: 600px) {
    .wpo-blog-pg-section .entry-meta>li+li {
        margin-left: 0;
        padding-left: 0;
        padding-bottom: 5px;
    }
}

.wpo-blog-pg-section .entry-meta>li+li:nth-child(2) {
    margin-left: 0px;
    padding-left: 10px;
	font-weight:500;
	color:#212121;
    top: -4px
}
.wpo-blog-pg-section .entry-meta>li+li:nth-child(2) a {
    top: -2px;
    position: relative;
}
.wpo-blog-pg-section .entry-meta>li+li:nth-child(2) i {
   color:#1bcdf8;
}
.wpo-blog-pg-section .entry-meta>li+li:nth-child(2) i:before {
   font-size: 17px;
}
.blog-single-section .entry-meta >li+li:nth-child(1) a,
.wpo-blog-pg-section .entry-meta>li+li:nth-child(1) a {
    font-weight: 500;
    color: #1bcdf8;
    top: -3px;
    position: relative;
    padding-left: 17px;
}
.blog-single-section .entry-meta >li+li:nth-child(1) a:before,
.wpo-blog-pg-section .entry-meta>li+li:nth-child(1) a:before {
    position: absolute;
    left: 0;
    top:1px;
    content: "|";
    color: #d4dee1;
}
@media (max-width: 600px) {
    .wpo-blog-pg-section .entry-meta>li+li:nth-child(2) {
        padding-left: 0px;
    }
}

.wpo-blog-pg-section .entry-meta li a {
    color: #7e8690;
}

.wpo-blog-pg-section .entry-meta li a:hover {
    color: #1bcdf8;
}

.wpo-blog-pg-section .entry-meta>li:first-child {
    position: relative;
    top: -5px;
}
.wpo-blog-pg-section .entry-meta>li:first-child i {
    color: #1bcdf8;
    padding-right: 5px;
}
.wpo-blog-pg-section .entry-meta>li:nth-child(2):before {
    content: none;
}
.wpo-blog-pg-section .entry-meta>li:first-child img {
    display: inline-block;
    border-radius: 50%;
    padding-right: 8px;
}

.blog-single-section .entry-meta>li:last-child a ,
.wpo-blog-pg-section .entry-meta>li:last-child a {
    position: relative;
    top: -3px;
}

.wpo-blog-pg-section .entry-meta>li:last-child i {
    position: relative;
    top: -1px;
    padding-right: 8px;
    color: #1bcdf8;
}

@media (max-width: 600px) {
    .wpo-blog-pg-section .entry-meta>li:last-child {
        margin-left: -20px;
    }
}

.wpo-blog-pg-section .entry-meta li img.avatar {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    margin-top: -2px;
    padding: 0px;
}

.wpo-blog-pg-section .entry-meta>li+li i {
    padding-right: 5px;
}

.wpo-blog-pg-section .post h3 {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 1.2em;
    font-weight: 400;
    margin: -0.27em 0 0.7em;
}

@media (max-width: 991px) {
    .wpo-blog-pg-section .post h3 {
        font-size: 25px;
        font-size: 1.5625rem;
    }
}

@media (max-width: 767px) {
    .wpo-blog-pg-section .post h3 {
        font-size: 22px;
        font-size: 1.375rem;
        line-height:1.6em;
    }
}

.wpo-blog-pg-section .post h3 a {
    color: #242f6c;
}

.wpo-blog-pg-section .post h3 a:hover {
    color: #1bcdf8;
}

.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: 1rem;
    }
}

.wpo-blog-pg-section .post .read-more {
    font-weight: 600;
    color: #1bcdf8;
    border: 2px solid #1bcdf8;
    display: inline-block;
    padding: 3px 15px;
    margin-top: 15px;
}
.wpo-blog-pg-section .post .read-more:hover {
    background:#1bcdf8;
    color: #fff; 
}
@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-gallery {
    position: relative;
}

.wpo-blog-pg-section .format-gallery .owl-controls {
    width: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.wpo-blog-pg-section .format-gallery .owl-controls .owl-nav [class*=owl-]:hover {
    background: #1bcdf8;
}

.wpo-blog-pg-section .format-gallery .owl-controls .owl-nav [class*=owl-] {
    background: rgba(133, 133, 133, 0.5);
    width: 50px;
    height: 50px;
    line-height: 50px;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

.wpo-blog-pg-section .format-gallery .owl-controls .owl-nav .owl-prev,
.wpo-blog-pg-section .format-gallery .owl-controls .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.wpo-blog-pg-section .format-gallery .owl-controls .owl-nav .owl-prev {
    left: 15px;
}

.wpo-blog-pg-section .format-gallery .owl-controls .owl-nav .owl-next {
    right: 15px;
}

.wpo-blog-pg-section .format-quote {
    position: relative;
}

.wpo-blog-pg-section .format-quote a.read-more {
    padding-top: 25px;
    display: block;
}

.wpo-blog-pg-section .format-quote p {
    margin-bottom: 0;
}

.wpo-blog-pg-section .format-quote:before {
    font-family: "Flaticon";
    content: "\f112";
    font-size: 250px;
    font-size: 15.625rem;
    color: #ecf3fb;
    margin-left: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -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 a {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #6168f3;
    background: -webkit-linear-gradient(left, #c968ff, #6168f3);
    background: -moz-linear-gradient(left, #c968ff, #6168f3);
    background: -o-linear-gradient(left, #c968ff, #6168f3);
    background: -ms-linear-gradient(left, #c968ff, #6168f3);
    background: -webkit-gradient(linear, left top, right top, from(#c968ff), to(#6168f3));
    background: linear-gradient(left, #c968ff, #6168f3);
    width: 83px;
    height: 83px;
    border-radius: 83px;
    display: inline-block;
    -webkit-animation: spineer 2s infinite;
    animation: spineer 2s infinite;
}

@media (max-width: 991px) {
    .wpo-blog-pg-section .format-video .video-holder a {
        width: 65px;
        height: 65px;
        border-radius: 65px;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
}

.wpo-blog-pg-section .format-video .video-holder a:before {
    content: "";
    width: 0px;
    height: 0px;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 20px solid white;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media screen and (min-width: 1200px) {
    .blog-pg-left-sidebar .wpo-blog-sidebar {
        padding-right: 45px;
        padding-left: 0;
    }
}

@media screen and (min-width: 1200px) {
    .blog-pg-fullwidth .wpo-blog-content {
        padding: 0;
    }
}

/*--------------------------------------------------------------
  #blog single page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#6.1  blog-single-section
--------------------------------------------------------------*/
.blog-single-section {
    /*** tag-share ***/
    /*** author-box ***/
    /*** more-posts ***/
    /*** comments area ***/
    /*** comment-respond ***/
}

@media screen and (min-width: 1200px) {
    .blog-single-section .wpo-blog-content {
        padding-right: 0px;
    }
}

.blog-single-section .entry-meta {
    list-style: none;
    overflow: hidden;
    margin-bottom: 30px;
    padding-top: 5px;
}

@media (max-width: 767px) {
    .blog-single-section .entry-meta {
        margin: 10px 0 25px;
        margin-top: 0px;
    }
}

.blog-single-section .entry-media {
    margin-bottom: 30px;
} 

@media (max-width: 767px) {
    .blog-single-section .entry-media {
     margin-bottom: 20px;
    } 
}

.blog-single-section .entry-meta li {
    font-size: 14px;
    font-size: 0.875rem;
    float: left;
    line-height: 1;
}

.blog-single-section .entry-meta li:nth-child(2) i {
    position: relative;
    top: 0px;
}

@media (max-width: 767px) {
    .blog-single-section .entry-meta li {
        font-size: 12px;
        font-size: 0.75rem;
    }
}

@media (max-width: 600px) {
    .blog-single-section .entry-meta li {
        float: none;
        display: block;
        margin-bottom: 5px;
    }
}

.blog-single-section .entry-meta li .fi:before {
    font-size: 16px;
    font-size: 1rem;
    display: inline-block;
    padding-right: 5px;
}

@media (max-width: 767px) {
    .blog-single-section .entry-meta li .fi:before {
        font-size: 12px;
        font-size: 0.75rem;
    }
}

.blog-single-section .entry-meta>li+li {
    margin-left: 15px;
    position: relative;
}

.blog-single-section .entry-meta>li+li:nth-child(2) {
    margin-left: 0px;
    padding-left: 12px;
    top: -5px;
    position: relative;

}
.blog-single-section .entry-meta>li+li:nth-child(2) i:before {
    font-size: 17px;
}
.blog-single-section .entry-meta>li+li:nth-child(2) a {
    top: -2px;
    position: relative;
}
@media (max-width: 600px) {
    .blog-single-section .entry-meta>li+li {
        margin-left: 0;
        padding-left: 0;
    }
}

.blog-single-section .entry-meta li a {
    color: #7e8690;
}

.blog-single-section .entry-meta li a:hover {
    color: #1bcdf8;
}

.blog-single-section .entry-meta>li:first-child {
    position: relative;
    top: -5px;
}

.blog-single-section .entry-meta>li:first-child img {
    display: inline-block;
    border-radius: 50%;
    padding-right: 8px;
}

.blog-single-section .entry-meta>li:last-child {
    position: relative;
    top: 0px;
}

.blog-single-section .entry-meta>li:last-child i {
    position: relative;
    top: -2px;
    padding-right: 7px;
}

@media (max-width: 600px) {
    .blog-single-section .entry-meta>li:last-child {
        margin-left: -20px;
    }
}

.blog-single-section .entry-meta li i {
    padding-right: 6px;
    font-size: 14px;
    color: #1bcdf8;
}

.blog-single-section .post h2 {
    font-size: 30px;
    font-size: 1.875rem;
    font-weight: 500;
    margin: 0 0 0.5em;
}

@media (max-width: 991px) {
    .blog-single-section .post h2 {
        font-size: 25px;
        font-size: 1.5625rem;
    }
}

@media (max-width: 767px) {
    .blog-single-section .post h2 {
        font-size: 22px;
        font-size: 1.375rem;
    }
}

.blog-single-section .post p {
    margin-bottom: 1.5em;
}

.blog-single-section .post h3 {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.5em;
    margin: 1.8em 0 1em;
}

@media (max-width: 991px) {
    .blog-single-section .post h3 {
        font-size: 20px;
        font-size: 1.25rem;
    }
}

@media (max-width: 767px) {
    .blog-single-section .post h3 {
        font-size: 18px;
        font-size: 1.125rem;
    }
}

.blog-single-section .post blockquote {
    background-color: #1bcdf8;
    padding: 50px 30px 50px 95px;
    margin: 60px 0;
    border: 0;
    line-height: 1.9em;
    position: relative;
}

@media (max-width: 767px) {
    .blog-single-section .post blockquote {
        font-size: 15px;
        font-size: 0.9375rem;
    }
}

.blog-single-section .post blockquote:before {
    font-family: "Flaticon";
    content: "\f112";
    font-size: 50px;
    position: absolute;
    left: 30px;
    top: 50px;
}

@media (max-width: 991px) {
    .blog-single-section .post blockquote:before {
        display: none;
    }
}

@media (max-width: 991px) {
    .blog-single-section .post blockquote {
        padding: 30px 40px;
    }
}

@media (max-width: 767px) {
    .blog-single-section .post blockquote {
        padding: 20px 30px;
    }
}

.blog-single-section .post blockquote .quoter {
    display: block;
    margin-top: 15px;
}

.blog-single-section .author-box {
    padding: 45px 50px 35px;
    margin: 70px 0;
    border: 1px solid #e1e1e1;
}

@media (max-width: 991px) {
    .blog-single-section .author-box {
        padding: 35px 40px;
    }
}

@media (max-width: 767px) {
    .blog-single-section .author-box {
        padding: 25px;
    }
}

.blog-single-section .author-box .author-avatar {
    float: left;
}

@media (max-width: 767px) {
    .blog-single-section .author-box .author-avatar {
        float: none;
    }
}

.blog-single-section .author-box .author-avatar img {
    border-radius: 50%;
}

.blog-single-section .author-box .author-content {
    display: block;
    overflow: hidden;
    padding-left: 25px;
}

@media (max-width: 767px) {
    .blog-single-section .author-box .author-content {
        padding: 0;
        margin: 15px 0 0 0;
    }
}

.blog-single-section .author-box .author-content p {
    margin-bottom: 20px;
}

.blog-single-section .author-box .author-name {
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
    color: #242f6c;
}

.blog-single-section .wpo-blog-content .entry-meta li img.avatar {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    margin-top: -2px;
    padding: 0px;
}

.blog-single-section .author-box .social-link {
    display: inline-block;
    list-style: none;
}

.blog-single-section .author-box .social-link li {
    float: left;
    margin-right: 15px;
}

.blog-single-section .author-box .social-link a {
    display: block;
    font-size: 15px;
    font-size: 0.9375rem;
    color: #242f6c;
}

.blog-single-section .author-box .social-link a:hover {
    color: #1bcdf8;
}

.blog-single-section .more-posts {
    margin: 70px 0;
}

.blog-single-section .more-posts .previous-post {
    display: inline-block;
    float: left;
}

.blog-single-section .more-posts .next-post {
    display: inline-block;
    float: right;
}

.blog-single-section .more-posts .previous-post a,
.blog-single-section .more-posts .next-post a {
    background-color: #f8f8f8;
    font-weight: 600;
    color: #525252;
    display: block;
    padding: 15px 40px;
    border-radius: 60px;
}

@media (max-width: 767px) {

    .blog-single-section .more-posts .previous-post a,
    .blog-single-section .more-posts .next-post a {
        padding: 12px 35px;
    }
}

.blog-single-section .more-posts .previous-post a:hover,
.blog-single-section .more-posts .next-post a:hover {
    background-color: #1bcdf8;
    color: #fff;
}

.blog-single-section .comments-area {
    margin-top: 70px;
}

.blog-single-section .comments-area li>div {
    background: #f8f8f8;
    padding: 30px;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .blog-single-section .comments-area li>div {
        padding: 30px 25px;
    }
}

.blog-single-section .comments-area ol {
    list-style-type: none;
    padding-left: 0;
}

.blog-single-section .comments-area ol ul {
    padding-left: 30px;
    list-style: none;
}

.blog-single-section .comments-area ol>li:last-child div {
    border-bottom: 0;
}

.blog-single-section .comments-area .comments-title {
    font-size: 22px;
    font-size: 1.375rem;
    font-weight: 500;
    margin: 0 0 1.5em;
}

@media (max-width: 991px) {
    .blog-single-section .comments-area .comments-title {
        font-size: 20px;
        font-size: 1.25rem;
    }
}

.blog-single-section .comments-area li>div {
    position: relative;
}

.blog-single-section .comments-area .comment-theme {
    position: absolute;
    left: 35px;
}

@media (max-width: 767px) {
    .blog-single-section .comments-area .comment-theme {
        position: static;
    }
}

.blog-single-section .comments-area .comment-theme img {
    border-radius: 50%;
}

.blog-single-section .comments-area .comment-main-area {
    padding-left: 100px;
}

@media (max-width: 767px) {
    .blog-single-section .comments-area .comment-main-area {
        padding-left: 0;
        margin-top: 25px;
    }
}

.blog-single-section .comments-area .comment-main-area p {
    margin-bottom: 20px;
}
.page-wrapper .blog-single-section .comments-area .comment-main-area p {
    margin-bottom: 0px;
}
.page-wrapper .blog-single-section .comments-area .comment-main-area p + .comments-reply {
    margin-top: 20px;
}
.blog-single-section .comments-area .comments-meta h4 {
    font-size: 16px;
    font-size: 1rem;
    font-weight: 500;
    margin: 0 0 1em;
}

.blog-single-section .comments-area .comments-meta h4 span {
    font-weight: normal;
    text-transform: none;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    color: #666;
    margin-top: 8px;
}

.blog-single-section .comments-area .comment-reply-link {
    background: #1bcdf8;
    font-size: 14px;
    font-size: 0.875rem;
    color: #fff;
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    display: inline-block;
}

.blog-single-section .comments-area .comment-reply-link:hover {
    background-color: #06c5f3;
}

.blog-single-section .comment-respond {
    margin-top: 70px;
}

.blog-single-section .comment-respond .comment-reply-title {
    font-size: 22px;
    font-size: 1.375rem;
    font-weight: 500;
    margin: 0 0 1.5em;
}

@media (max-width: 991px) {
    .blog-single-section .comment-respond .comment-reply-title {
        font-size: 20px;
        font-size: 1.25rem;
    }
}

.blog-single-section .comment-respond form input,
.blog-single-section .comment-respond form textarea {
    background-color: #f8f8f8;
    width: 100%;
    height: 50px;
    border: 1px solid #f8f8f8;
    padding: 6px 15px;
    margin-bottom: 15px;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

.blog-single-section .comment-respond form input:focus,
.blog-single-section .comment-respond form textarea:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #1bcdf8;
}

@media (max-width: 991px) {

    .blog-single-section .comment-respond form input,
    .blog-single-section .comment-respond form textarea {
        height: 40px;
    }
}

.blog-single-section .comment-respond form textarea {
    height: 220px;
    padding: 15px;
}

@media (max-width: 991px) {
    .blog-single-section .comment-respond form textarea {
        height: 150px;
    }
}

.blog-single-section .comment-respond .form-inputs {
    overflow: hidden;
}

.blog-single-section .comment-respond .form-inputs>input:nth-child(2) {
    width: 49%;
    float: left;
}

@media (max-width: 767px) {
    .blog-single-section .comment-respond .form-inputs>input:nth-child(2) {
        width: 100%;
        float: none;
    }
}

.blog-single-section .comment-respond .form-inputs>input:nth-child(3) {
    width: 49%;
    float: right;
}

@media (max-width: 767px) {
    .blog-single-section .comment-respond .form-inputs>input:nth-child(3) {
        width: 100%;
        float: none;
    }
}

.blog-single-section .comment-respond .form-submit input {
    max-width: 180px;
    background: #1bcdf8;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0;
    border: 0; 
    outline: 0;
    text-transform: uppercase;
    font-size: 15px;
}

.blog-single-section .comment-respond .form-submit input:hover {
    background: #06c5f3;
}

@media screen and (min-width: 1200px) {
    .blog-single-left-sidebar-section .wpo-blog-content {
        padding-right: 0;
        padding-left: 50px;
    }
}

@media screen and (min-width: 1200px) {
    .blog-single-fullwidth .wpo-blog-content {
        padding: 0;
    }
}


/*--------------------------------------------------------------
  #category page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#7.1  category-page-section
--------------------------------------------------------------*/
.category-page-section .product-grids {
    margin: 0 -15px;
}

@media (max-width: 767px) {
    .category-page-section .product-grids {
        margin: 0 -7.5px;
    }
}

.category-page-section .product-grids .grid {
    width: calc(50% - 30px);
    min-height: 420px;
    float: left;
    margin: 0 15px 30px;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(85, 85, 85, 0.1);
    box-shadow: 0px 0px 15px 0px rgba(85, 85, 85, 0.1);
}

@media (max-width: 767px) {
    .category-page-section .product-grids .grid {
        width: calc(50% - 15px);
        margin: 0 7.5px 30px;
    }
}

@media (max-width: 650px) {
    .category-page-section .product-grids .grid {
        width: calc(100% - 15px);
        float: none;
    }
}

.category-page-section .product-img-tag {
    position: relative;
}

.category-page-section .product-img-tag .badge {
    background: #06c5f3;
    background: -webkit-linear-gradient(left, #06c5f3, #00ded8);
    background: -moz-linear-gradient(left, #06c5f3, #00ded8);
    background: -o-linear-gradient(left, #06c5f3, #00ded8);
    background: -ms-linear-gradient(left, #06c5f3, #00ded8);
    background: -webkit-gradient(linear, left top, right top, from(#06c5f3), to(#00ded8));
    background: linear-gradient(left, #06c5f3, #00ded8);
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 5px;
    padding: 3px 8px;
    position: absolute;
    right: 15px;
    top: 15px;
}

.category-page-section .product-img-tag .badge-feature {
    background: #ffad6f;
    background: -webkit-linear-gradient(left, #ffad6f, #ff7d90);
    background: -moz-linear-gradient(left, #ffad6f, #ff7d90);
    background: -o-linear-gradient(left, #ffad6f, #ff7d90);
    background: -ms-linear-gradient(left, #ffad6f, #ff7d90);
    background: -webkit-gradient(linear, left top, right top, from(#ffad6f), to(#ff7d90));
    background: linear-gradient(left, #ffad6f, #ff7d90);
}

.category-page-section .product-img-tag .badge-new {
    background: #c968ff;
    background: -webkit-linear-gradient(left, #c968ff, #6168f3);
    background: -moz-linear-gradient(left, #c968ff, #6168f3);
    background: -o-linear-gradient(left, #c968ff, #6168f3);
    background: -ms-linear-gradient(left, #c968ff, #6168f3);
    background: -webkit-gradient(linear, left top, right top, from(#c968ff), to(#6168f3));
    background: linear-gradient(left, #c968ff, #6168f3);
}

.category-page-section .product-details-wrap {
    padding: 30px 30px 25px;
}

@media (max-width: 991px) {
    .category-page-section .product-details-wrap {
        padding: 30px 20px 25px;
    }
}

.category-page-section .product-details h4 {
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    font-size: 0.9375rem;
    font-weight: 600;
    margin: 0 0 0.4em;
    line-height: 1.4em;
}

.category-page-section .product-details h4 a {
    color: #242f6c;
}

.category-page-section .product-details h4 a:hover {
    text-decoration: underline;
}

.category-page-section .product-details .author {
    font-size: 14px;
    font-size: 0.875rem;
}

.category-page-section .product-details .author a {
    color: #525252;
}

.category-page-section .product-details .author a:hover {
    text-decoration: underline;
}

.category-page-section .product-details .rating {
    margin-top: 10px;
}

.category-page-section .product-details .rating .fi:before {
    font-size: 16px;
    font-size: 1rem;
    color: #fba12c;
}

.category-page-section .product-footer {
    padding: 20px 0 0;
    margin-top: 25px;
    border-top: 1px solid #ecebed;
}

.category-page-section .product-footer>div {
    display: inline-block;
}

.category-page-section .product-footer .live-preview-cart {
    float: right;
    overflow: hidden;
}

.category-page-section .product-footer .live-preview-cart>div {
    float: left;
}

.category-page-section .product-footer .price h5 {
    font-family: "Open Sans", sans-serif;
    font-size: 25px;
    font-size: 1.5625rem;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 767px) {
    .category-page-section .product-footer .price h5 {
        font-size: 20px;
        font-size: 1.25rem;
    }
}

.category-page-section .product-footer .live-preview a {
    font-size: 14px;
    font-size: cacl-rem-value(14);
    font-weight: 600;
    display: block;
    border: 1px solid #d7d7d7;
    padding: 3px 23px;
    color: #242f6c;
    margin-right: 10px;
}

.category-page-section .product-footer .live-preview a:hover {
    background: #1bcdf8;
    color: #fff;
    border-color: #1bcdf8;
}

.category-page-section .product-footer .cart a {
    background: #06c5f3;
    background: -webkit-linear-gradient(left, #06c5f3, #00ded8);
    background: -moz-linear-gradient(left, #06c5f3, #00ded8);
    background: -o-linear-gradient(left, #06c5f3, #00ded8);
    background: -ms-linear-gradient(left, #06c5f3, #00ded8);
    background: -webkit-gradient(linear, left top, right top, from(#06c5f3), to(#00ded8));
    background: linear-gradient(left, #06c5f3, #00ded8);
    width: 40px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border: 1px solid #48d6fc;
    display: block;
}

.category-page-section .product-footer .cart .fi:before {
    font-size: 15px;
    font-size: 0.9375rem;
    color: #fff;
}

/*--------------------------------------------------------------
  #author page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#8.1  author-info-section
--------------------------------------------------------------*/
.author-info-section {
    margin-top: -275px;
}

.author-info-section .author {
    text-align: center;
}

.author-info-section .author img {
    border-radius: 10px;
}

.author-info-section .author ul {
    list-style: none;
    overflow: hidden;
    display: inline-block;
    padding-top: 30px;
}

.author-info-section .author ul li {
    float: left;
}

.author-info-section .author ul>li+li {
    margin-left: 20px;
}

.author-info-section .author ul a {
    font-size: 22px;
    font-size: 1.375rem;
    color: #19b2f5;
}

@media (max-width: 991px) {
    .author-info-section .author ul a {
        font-size: 18px;
        font-size: 1.125rem;
    }
}

.author-info-section .author ul>li:nth-child(2) a {
    color: #395799;
}

.author-info-section .author ul>li:nth-child(3) a {
    color: #ea4c89;
}

.author-info-section .author ul>li:nth-child(4) a {
    color: #4176fa;
}

.author-info-section .author-details-area {
    overflow: hidden;
    padding-top: 125px;
}

@media (max-width: 991px) {
    .author-info-section .author-details-area {
        padding-top: 50px;
    }
}

@media (max-width: 767px) {
    .author-info-section .author-details-area {
        padding-top: 30px;
    }
}

.author-info-section .author-details-area>div {
    float: left;
    text-align: center;
}

@media (max-width: 767px) {
    .author-info-section .author-details-area>div {
        width: 100% !important;
        float: none;
        text-align: center;
    }
}

.author-info-section .author-details-area>div:first-child {
    width: 40%;
}

.author-info-section .author-details-area>div:nth-child(2) {
    width: 20%;
}

.author-info-section .author-details-area>div:nth-child(3) {
    width: 20%;
}

.author-info-section .author-details-area>div:nth-child(4) {
    width: 20%;
}

@media (max-width: 767px) {
    .author-info-section .author-details-area>div+div {
        margin-top: 30px;
    }
}

.author-info-section .author-details-area h3 {
    font-size: 25px;
    font-size: 1.5625rem;
    font-weight: bold;
    margin: 0 0 0.4em;
}

@media (max-width: 1199px) {
    .author-info-section .author-details-area h3 {
        font-size: 20px;
        font-size: 1.25rem;
    }
}

.author-info-section .author-details-area h3+p {
    margin: 0;
}

@media (max-width: 1199px) {
    .author-info-section .author-details-area h3+p {
        font-size: 14px;
        font-size: 0.875rem;
    }
}

.author-info-section .author-details-area .author-info {
    text-align: left;
}

@media (max-width: 767px) {
    .author-info-section .author-details-area .author-info {
        text-align: center;
    }
}

.author-info-section .author-details-area .author-info button {
    background: #00a9d5;
    background: -webkit-linear-gradient(left, #06c5f3, #00ded8);
    background: -moz-linear-gradient(left, #06c5f3, #00ded8);
    background: -o-linear-gradient(left, #06c5f3, #00ded8);
    background: -ms-linear-gradient(left, #06c5f3, #00ded8);
    background: -webkit-gradient(linear, left top, right top, from(#06c5f3), to(#00ded8));
    background: linear-gradient(left, #06c5f3, #00ded8);
    font-weight: 600;
    color: #fff;
    border: 0;
    padding: 8px 25px;
    border-radius: 50px;
}

.author-info-section .author-details-area .author-info ul {
    display: inline-block;
    list-style: none;
    overflow: hidden;
    position: relative;
    top: 12px;
    left: 10px;
}

.author-info-section .author-details-area .author-info ul li {
    float: left;
}

.author-info-section .author-details-area .author-info ul>li+li {
    margin-left: 10px;
}

.author-info-section .author-details-area .author-info ul a {
    background-color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #9d9d9d;
    border-radius: 50%;
    display: block;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(85, 85, 85, 0.1);
    box-shadow: 0px 0px 15px 0px rgba(85, 85, 85, 0.1);
}

.author-info-section .rating .fi:before {
    font-size: 16px;
    color: #fba12c;
}

@media (max-width: 1199px) {
    .author-info-section .rating .fi:before {
        font-size: 14px;
        font-size: 0.875rem;
    }
}

.author-info-section .rating+p {
    margin-top: 0.8em;
}

@media (max-width: 1199px) {
    .author-info-section .rating+p {
        font-size: 14px;
        font-size: 0.875rem;
    }
}


/*Tab CSS*/

.theme-default-tab-wrap .theme-default-tab {
    margin: 50px 0;
}

@media (max-width: 991px) {
    .theme-default-tab-wrap .theme-default-tab {
        margin: 40px 0;
    }
}

.theme-default-tab-wrap .theme-default-tab .nav {
    overflow: hidden;
    margin: 0;
}

.theme-default-tab-wrap .theme-default-tab .nav li {
    float: left;
    padding-left: 0;
}

.theme-default-tab-wrap .theme-default-tab .nav>li+li {
    margin-top: 0;
    margin-left: 3px;
}

@media (max-width: 767px) {
    .theme-default-tab-wrap .theme-default-tab .nav>li+li {
        margin-left: 1px;
    }
}

.theme-default-tab-wrap .theme-default-tab .nav a {
    background: #fff;
    font-size: 16px;
    font-size: 1.06667rem;
    font-weight: 500;
    color: #151221;
    padding: 13px 25px;
    border: 1px solid rgba(11, 91, 224, 0.2);
}

@media (max-width: 767px) {
    .theme-default-tab-wrap .theme-default-tab .nav a {
        font-size: 13px;
        font-size: 0.86667rem;
        padding: 8px 12px;
        text-transform: none;
    }
}

@media (max-width: 350px) {
    .theme-default-tab-wrap .theme-default-tab .nav a {
        padding: 8px;
    }
}

.theme-default-tab-wrap .theme-default-tab .nav .active a,
.theme-default-tab-wrap .theme-default-tab .nav a:hover {
    background: #1bcdf8;
    color: #fff;
}

.theme-default-tab-wrap .tab-content {
    padding: 35px 40px;
    border: 1px solid rgba(11, 91, 224, 0.2);
    margin-top: -1px;
}

@media (max-width: 767px) {
    .theme-default-tab-wrap .tab-content {
        padding: 25px 20px;
    }
}

.theme-default-tab-wrap .tab-content .tab-pane p {
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .theme-default-tab-wrap .tab-content .tab-pane p {
        margin-bottom: 15px;
    }
}

.theme-default-tab-wrap .tab-content .tab-pane p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
  404 page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#8.1  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: 20px;
    font-size: 1.25rem;
    margin: 0 0 0.8em;
}

.error-404-section .error-message p {
    margin-bottom: 1.8em;
}

.error-message .theme-btn-s4,
.no-results.not-found .theme-btn-s4 {
    background-color: #1bcdf8;
    color: #fff;
}

.error-message .theme-btn-s4:hover,
.no-results.not-found .theme-btn-s4:hover {
    background: #333;
}

.no-results.not-found h2 {
    font-weight: 700;
}
div#loading {
    display: none;
}

/*# sourceMappingURL=style.css.map */


.blog-single-section .tag-share {
    margin: 75px 0 0;
    padding: 30px 0px;
    color: #202a41;
    padding-bottom: 15px;
}

.blog-single-section .tag-share ul {
  list-style: none;
  display: inline-block;
  overflow: hidden;
}

.blog-single-section .tag-share ul li {
  float: left;
}

@media (max-width: 767px) {
  .blog-single-section .tag-share ul li {
    margin: 2px;
  }
}

.blog-single-section .tag-share ul > li + li {
  margin-left: 10px;
}

@media (max-width: 767px) {
  .blog-single-section .tag-share ul > li + li {
    margin: 2px;
  }
}

.blog-single-section .tag-share .tag {
  float: left;
  margin-top:0px;
}

.blog-single-section .tag-share .tag > span {
  color: #202a41;
  font-weight: 600;
  display: inline-block;
  padding-right: 8px;
}

.blog-single-section .tag-share .tag ul {
  list-style: none;
  position: relative;
  top: 5px;
}

.blog-single-section .tag-share .tag li {
  position: relative;
}


.blog-single-section .tag-share .tag a {
  font-size: 14px;
  font-size: 0.875rem;
  color: #687693;
}

@media (max-width: 767px) {
  .blog-single-section .tag-share .tag a {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}

.blog-single-section .tag-share .tag a:hover {
  color: #086ad8;
}

.blog-single-section .tag-share .share {
  float: right;
  position: relative;
  top: -15px;
}

.blog-single-section .tag-share .share > span {
  font-family: "Now";
  color: #202a41;
  font-weight: 600;
  display: inline-block;
  padding-right: 8px;
}

.blog-single-section .tag-share .share ul {
  position: relative;
  top: 15px;
}

.blog-single-section .tag-share .share ul > li + li {
  margin-left: 10px;
}

@media (max-width: 767px) {
  .blog-single-section .tag-share .share ul > li + li {
    margin-left: 8px;
  }
}

@media (max-width: 767px) {
  .blog-single-section .tag-share .share ul > li {
    margin: 5px;
  }
}

.blog-single-section .tag-share .share a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border: 1px solid #eae6e6;
  border-radius: 50%;
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  color: #627381;
}

@media (max-width: 767px) {
  .blog-single-section .tag-share .share a {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}

.blog-single-section .tag-share .share a:hover {
  background: #086ad8;
  border-color: #086ad8;
  color: #fff !important;
}

.blog-single-section .tag-share .share ul > li:first-child a {
  color: #3c5ba4;
}

.blog-single-section .tag-share .share ul > li:nth-child(2) a {
  color: #47a0d9;
}

.blog-single-section .tag-share .share ul > li:nth-child(3) a {
  color: #0073b1;
}

.blog-single-section .tag-share .share ul > li:nth-child(4) a {
  color: #933f94;
}

/*Blog Post */
.blog-section .grid .details {
    padding: 35px 25px;
    -webkit-box-shadow: 0 0 25px rgba(0,0,0,.05);
    box-shadow: 0 0 25px rgba(0,0,0,.05);
}
.blog-section .grid h3 {
    font-size: 18px;
    font-size: 1.125rem;
    margin: 0 0 .7em;
    border-bottom: 1px solid #f1f1f1;
    padding-bottom: .7em;
    line-height: 1.5em;
}
.blog-section .grid ul li {
    font-size: 14px;
    font-size: .875rem;
    float: left;
}
.blog-section .grid li a {
    color: #5d6d7a;
}
.blog-section .grid ul>li + li {
    margin-left: 20px;
}
.blog-section .grid li i {
    display: inline-block;
    padding-right: 3px;
    color: #1bcdf8;
}

.blog-section .grid ul>li:last-child i {
    position: relative;
    top: 2px;
}

.blog-section .entry-media .date {
	min-width: 90px;
    background: #1bcdf8;
    padding: 20px;
    position: absolute;
    right: 16px;
    top: 10px;
    text-align: center;
}

.blog-section .entry-media p {
	font-family: 'Rubik', sans-serif;
	font-size: 20px;
    font-weight: 500;
    line-height: 1em;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
}
.blog-section .entry-media p span {
    display: block;
    font-size: 22px;
    text-transform: capitalize;
	padding-top:5px;
}