/*------------------------------------------------------------------
[Master Stylesheet]
Theme Name:     Shiptar - Transport & Logistic WordPress Theme
Version:        1.0.0
Author:         wpoceans
URL:            https://themeforest.net/user/wpoceans
-------------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
#0.1  Theme Reset Style
#0.2  Global Elements
#0.3  header
#0.4  cta-section
#0.5  pricing-area
#0.6  testimonial-area 
#0.7  team area
#0.8  blog-section



#0.4  footer
#0.5  blog-section

----------------------------------------------------------------
  blog page
----------------------------------------------------------------
#6.1  wpo-blog-pg-section


----------------------------------------------------------------
  blog single page
----------------------------------------------------------------
#7.1  blog-single-section


----------------------------------------------------------------
  shop page
----------------------------------------------------------------
#10.1 shop-section


----------------------------------------------------------------
  shop single page
----------------------------------------------------------------
#11.1 shop-single-section


----------------------------------------------------------------
  404 page
----------------------------------------------------------------
#12.1  error-404-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;
}

@font-face {
    font-family: 'segoe-ui';
    src: url("../fonts/text-fonts/segoe-ui.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'segoe-ui';
    src: url("../fonts/text-fonts/seguisb.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

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

body {
    font-family: "segoe-ui";
    background-color: #fff;
    font-size: 16px;
    font-size: 1rem;
    color: #7e8690;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Now";
    font-weight: bold;
    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;
}

.box-style {
    padding: 0 40px;
}

@media (max-width: 1199px) {
    .box-style {
        padding: 0 30px;
    }
}

@media (max-width: 991px) {
    .box-style {
        padding: 0;
    }
}

.wow {
    visibility: hidden;
}

.fi:before {
    margin: 0;
}

.section-padding {
    padding: 110px 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: #34ccff;
    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;
}

/*** back to top **/
.back-to-top {
    background-color: #1d1d1d;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    position: absolute;
    z-index: 999;
    left: calc(50% - 22.5px);
    top: -22.5px;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
}

@media (max-width: 991px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
}

.back-to-top:hover {
    background-color: #34ccff;
}

.back-to-top i {
    font-size: 18px;
    font-size: 1.125rem;
    color: #fff;
    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 (max-width: 991px) {
    .back-to-top i {
        font-size: 15px;
        font-size: 0.9375rem;
    }
}

/** 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: 50px;
}

.section-title>span {
    font-size: 16px;
    font-size: 1rem;
    color: #34ccff;
    display: block;
    margin-top: -6px;
    text-transform: capitalize;
}

.section-title h3 {
    font-size: 26px;
    font-size: 1.625rem;
    font-weight: normal;
    line-height: 1.3em;
    margin: 0.45em 0 0;
}

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

@media (max-width: 767px) {
    .section-title h3 {
        font-size: 20px;
        font-size: 1.25rem;
    }
}

.section-title-s2,
.section-title-s4 {
    margin-bottom: 40px;
}

@media (max-width: 991px) {

    .section-title-s2,
    .section-title-s4 {
        margin-bottom: 25px;
    }
}

.section-title-s2>span,
.section-title-s4>span {
    font-size: 16px;
    font-size: 1rem;
    color: #34ccff;
    display: block;
    margin-top: -6px;
    text-transform: capitalize;
    position: relative;
}

.section-title-s4>span:before {
    content: "";
    background: #34ccff;
    width: 45px;
    height: 1px;
    position: absolute;
    left: -65px;
    top: 12px;
}

.section-title-s2 h2,
.section-title-s4 h2 {
    font-size: 38px;
    font-size: 2.375rem;
    font-weight: bold;
    line-height: 1.2em;
    margin: 0.2em 0 0;
    text-transform: capitalize;
}

@media (max-width: 991px) {

    .section-title-s2 h2,
    .section-title-s4 h2 {
        font-size: 32px;
        font-size: 2rem;
    }
}

@media (max-width: 767px) {

    .section-title-s2 h2,
    .section-title-s4 h2 {
        font-size: 28px;
        font-size: 1.75rem;
    }
}

.page-wrapper .section-title-s2 p {
    max-width: 680px;
    margin: auto;
    margin-top: 10px;
}

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

@media (max-width: 991px) {
    .section-title-s3 {
        margin-bottom: 50px;
    }
}

.section-title-s3>span {
    font-size: 16px;
    font-size: 1rem;
    color: #34ccff;
    display: block;
    margin-top: -6px;
    text-transform: capitalize;
    position: relative;
}

.section-title-s3 h2 {
    font-size: 38px;
    font-size: 2.375rem;
    font-weight: bold;
    line-height: 1.2em;
    margin: 0.2em 0 0.5em;
    text-transform: capitalize;
}

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

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

.section-title-s4 h2 {
    color: #fff;
}

.theme-btn,
.theme-btn-s2 {
    background-color: #34ccff;
    color: #fff;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 22px;
    display: inline-block;
    border: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    text-transform: uppercase;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
}

.theme-btn:hover,
.theme-btn-s2:hover,
.theme-btn:focus,
.theme-btn-s2:focus,
.theme-btn:active,
.theme-btn-s2:active {
    background-color: #77cc5e;
    color: #fff;
}

@media (max-width: 991px) {

    .theme-btn,
    .theme-btn-s2 {
        font-size: 16px;
        font-size: 1rem;
        padding: 10px 18px;
    }
}

@media (max-width: 767px) {

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

.view-cart-btn {
    background: #34ccff;
    color: white;
    padding: 5px 13px 7px;
    display: block;
    text-align: center;
    margin-top: 15px;
}

.view-cart-btn:hover {
    background: #34ccff;
    color: #fff;
}

.theme-btn-s2 {
    background: #34ccff;
    color: #fff;
    padding: 15px 30px;
}

.theme-btn-s2:hover {
    background-color: #313131;
}

@media (max-width: 991px) {
    .theme-btn-s2 {
        padding: 12px 20px;
    }
}

@media (max-width: 767px) {
    .theme-btn-s2 {
        padding: 10px 18px;
    }
}

.form input,
.form textarea,
.form select {
    border-color: #bfbfbf;
    border-radius: 0;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #595959;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
    border-color: #34ccff;
    -webkit-box-shadow: 0 0 5px 0 #a8de98;
    -moz-box-shadow: 0 0 5px 0 #a8de98;
    -o-box-shadow: 0 0 5px 0 #a8de98;
    -ms-box-shadow: 0 0 5px 0 #a8de98;
    box-shadow: 0 0 5px 0 #a8de98;
}

.form ::-webkit-input-placeholder {
    font-style: 14px;
    font-style: italic;
    color: #595959;
}

.form :-moz-placeholder {
    font-style: 14px;
    font-style: italic;
    color: #595959;
}

.form ::-moz-placeholder {
    font-style: 14px;
    font-style: italic;
    color: #595959;
}

.form :-ms-input-placeholder {
    font-style: 14px;
    font-style: italic;
    color: #595959;
}

.form select {
    font-style: italic;
    background: url(../images/select-icon.png) no-repeat right center;
    display: inline-block;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    cursor: pointer;
}

.form select::-ms-expand {
    /* for IE 11 */
    display: none;
}

.social-links {
    overflow: hidden;
}

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

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

.social-links li a:hover {
    background-color: #34ccff;
}

/******************************
  #page title
******************************/
.wpo-page-title {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: local;
    width: 100%;
    height: 420px;
    text-align: center;
    position: relative;
}

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

.wpo-page-title:before {
    content: "";
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.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: 50px;
    font-size: 3.125rem;
    color: #fff;
    margin: 0 0 0.30em;
    text-transform: capitalize;
}

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

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

.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;
    color: #fff;
    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: #fff;
}

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

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

.wpo-page-title .breadcrumb>li+li:before {
    font-family: "themify";
    content: "\e661";
    padding: 0;
    position: absolute;
    left: -14px;
    top: 3px;
    color: #fff;
    font-size: 13px;
}

.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: #34ccff;
    -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;
    }
}


/*--------------------------------------------------------------
#0.4    hero slider
--------------------------------------------------------------*/
.hero-slider {
    width: 100%;
    height: 850px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 0;
}

@media (max-width: 991px) {
    .hero-slider {
        height: 600px;
    }
}

@media (max-width: 767px) {
    .hero-slider {
        height: 500px;
    }
}

.hero-slider .swiper-slide {
    overflow: hidden;
}

.hero-slider .swiper-container,
.hero-slider .hero-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.hero-slider .slide-inner,
.hero-slider .hero-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
}

@media (max-width: 991px) {
    .hero-slider.hero-style-3 .slide-inner {
        background-position: left;
    }
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    line-height: 60px;
    border: 2px solid #fff;
    border-radius: 50%;
    opacity: 0.7;
    text-align: center;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

.hero-slider .swiper-button-prev:hover,
.hero-slider .swiper-button-next:hover {
    opacity: 0.9;
}

@media (max-width: 767px) {

    .hero-slider .swiper-button-prev,
    .hero-slider .swiper-button-next {
        display: none;
    }
}

.hero-slider .swiper-button-prev {
    left: 25px;
}

.hero-slider .swiper-button-prev:before {
    font-family: 'themify';
    content: "\e629";
    font-size: 20px;
    color: #fff;
}

.hero-slider .swiper-button-next {
    right: 25px;
}

.hero-slider .swiper-button-next:before {
    font-family: 'themify';
    content: "\e628";
    font-size: 20px;
    color: #fff;
}

@media (max-width: 1199px) {

    .hero-slider .swiper-button-prev,
    .hero-slider .swiper-button-next {
        display: none;
    }
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    text-align: center;
    line-height: 12px;
    font-size: 12px;
    color: #000;
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
}

@media screen and (min-width: 992px) {
    .hero-slider .swiper-pagination-bullet {
        display: none;
    }
}

.hero-slider .swiper-pagination-bullet-active {
    color: #fff;
    background: #fff;
    width: 15px;
    height: 15px;
    text-align: center;
    line-height: 15px;
}

.hero-slider .swiper-container-horizontal>.swiper-pagination-bullets,
.hero-slider .swiper-pagination-custom,
.hero-slider .swiper-pagination-fraction {
    bottom: 30px;
}

.hero-slider .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 8px;
}

/*-------------------------------------------
    hero style 1
--------------------------------------------*/
.static-hero {
    background: #086ad8;
    height: 780px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .static-hero {
        height: 680px;
    }
}

@media (max-width: 991px) {
    .static-hero {
        height: 600px;
    }
}

@media (max-width: 767px) {
    .static-hero {
        height: 500px;
    }
}

.static-hero .hero-shape {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: rotate(50deg) scale(1, 2.5);
    -ms-transform: rotate(50deg) scale(1, 2.5);
    transform: rotate(50deg) scale(1, 2.5);
}

.static-hero .hero-shape>div:first-child {
    background: #0866d1;
    width: 20%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.static-hero .hero-shape>div:nth-child(2) {
    background: #0866d1;
    width: 30%;
    height: 100%;
    position: absolute;
    left: 35%;
    top: 0;
}

.static-hero .hero-shape>div:nth-child(3) {
    background: #0866d1;
    width: 20%;
    height: 100%;
    position: absolute;
    left: 80%;
    top: 0;
}

.static-hero .hero-inner .container {
    position: relative;
}

.static-hero .consultant-pic {
    position: absolute;
    right: 0;
    bottom: -220px;
}

@media (max-width: 1199px) {
    .static-hero .consultant-pic {
        width: 485px;
        height: 609px;
        bottom: -200px;
    }
}

@media (max-width: 991px) {
    .static-hero .consultant-pic {
        display: none;
    }
}

.static-hero .slide-title {
    max-width: 655px;
}

@media (max-width: 1199px) {
    .static-hero .slide-title {
        max-width: 555px;
    }
}

@media (max-width: 991px) {
    .static-hero .slide-title {
        margin: 0 auto;
        text-align: center;
    }
}

.static-hero .slide-title h2 {
    font-size: 60px;
    font-size: 3.75rem;
    line-height: 1.13em;
    color: #fff;
    margin: 0 0 0.57em;
}

@media (max-width: 1199px) {
    .static-hero .slide-title h2 {
        font-size: 50px;
        font-size: 3.125rem;
    }
}

@media (max-width: 991px) {
    .static-hero .slide-title h2 {
        font-size: 40px;
        font-size: 2.5rem;
    }
}

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

.static-hero .slide-text {
    max-width: 520px;
}

@media (max-width: 991px) {
    .static-hero .slide-text {
        margin: 0 auto;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .static-hero .slide-text {
        max-width: 500px;
    }
}

.static-hero .slide-text p {
    font-family: "Now";
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.5em;
    color: #fff;
    margin: 0 0 1.8em;
}

@media (max-width: 991px) {
    .static-hero .slide-text p {
        font-size: 18px;
        font-size: 1.125rem;
    }
}

@media (max-width: 767px) {
    .static-hero .slide-text p {
        font-size: 16px;
        font-size: 1rem;
    }
}

@media (max-width: 991px) {
    .static-hero .slide-btns {
        max-width: 400px;
        margin: 0 auto;
        text-align: center;
    }
}

.static-hero .slide-btns .hero-video-btn {
    margin-left: 40px;
}

@media (max-width: 767px) {
    .static-hero .slide-btns .hero-video-btn {
        margin-left: 20px;
    }
}

@media screen and (min-width: 992px) {
    .static-hero .swiper-slide .container {
        padding-top: 10px;
    }
}

/*-------------------------------------------
    hero style 2
--------------------------------------------*/
.hero-style-2,
.hero-style-3 {
    height: 800px;
}

@media (max-width: 1199px) {

    .hero-style-2,
    .hero-style-3 {
        height: 680px;
    }
}

@media (max-width: 991px) {

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

@media (max-width: 767px) {

    .hero-style-2,
    .hero-style-3 {
        height: 500px;
    }
}

.hero-style-2 .gradient-overlay,
.hero-style-3 .gradient-overlay {
    background: -webkit-gradient(linear, left top, right top, color-stop(5%, #00000047), color-stop(90%, transparent));
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
}

.hero-style-2 .gradient-overlay+.container,
.hero-style-3 .gradient-overlay+.container {
    position: relative;
    z-index: 11;
}

.hero-style-1.hero-style-2 .gradient-overlay+.container {
    margin-top: -100px;
}

@media screen and (min-width: 992px) {
    .hero-style-1.hero-style-2 .gradient-overlay+.container {
        margin-top: -100px;
    }
}

.hero-style-2 .swiper-slide,
.hero-style-3 .swiper-slide {
    position: relative;
    z-index: 11;
}

.hero-style-2 .slide-title,
.hero-style-3 .slide-title {
    max-width: 655px;
}

@media (max-width: 1199px) {

    .hero-style-2 .slide-title,
    .hero-style-3 .slide-title {
        max-width: 555px;
    }
}

@media (max-width: 991px) {

    .hero-style-2 .slide-title,
    .hero-style-3 .slide-title {
        margin: 0 auto;
        text-align: center;
    }
}

.hero-style-2 .slide-title h2,
.hero-style-3 .slide-title h2 {
    font-size: 55px;
    line-height: 1.4em;
    color: #fff;
    margin: 0 0 0.50em;
}

@media (max-width: 1199px) {

    .hero-style-2 .slide-title h2,
    .hero-style-3 .slide-title h2 {
        font-size: 50px;
        font-size: 3.125rem;
    }
}

@media (max-width: 991px) {

    .hero-style-2 .slide-title h2,
    .hero-style-3 .slide-title h2 {
        font-size: 40px;
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {

    .hero-style-2 .slide-title h2,
    .hero-style-3 .slide-title h2 {
        font-size: 30px;
        font-size: 1.875rem;
    }
}

.hero-style-2 .slide-text,
.hero-style-3 .slide-text {
    max-width: 520px;
}

@media (max-width: 991px) {

    .hero-style-2 .slide-text,
    .hero-style-3 .slide-text {
        margin: 0 auto;
        text-align: center;
    }
}

@media (max-width: 767px) {

    .hero-style-2 .slide-text,
    .hero-style-3 .slide-text {
        max-width: 500px;
    }
}

.hero-style-2 .slide-text p,
.hero-style-3 .slide-text p {
    font-family: "Now";
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.5em;
    color: #fff;
    margin: 0 0 1.8em;
}

@media (max-width: 991px) {

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

@media (max-width: 767px) {

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

@media (max-width: 991px) {

    .hero-style-2 .slide-btns,
    .hero-style-3 .slide-btns {
        max-width: 400px;
        margin: 0 auto;
        text-align: center;
    }
}

.hero-style-2 .slide-btns .hero-video-btn,
.hero-style-3 .slide-btns .hero-video-btn {
    margin-left: 40px;
}

@media (max-width: 767px) {

    .hero-style-2 .slide-btns .hero-video-btn,
    .hero-style-3 .slide-btns .hero-video-btn {
        margin-left: 20px;
    }
}

@media screen and (min-width: 992px) {
    .hero-style-2 .swiper-slide .container {
        margin-top: 60px;
    }
}

/*-------------------------------------------
    hero style 3
--------------------------------------------*/
.hero-style-3 {
    height: 850px;
}

@media (max-width: 1199px) {
    .hero-style-3 {
        height: 680px;
    }
}

@media (max-width: 991px) {
    .hero-style-3 {
        height: 600px;
    }
}

@media (max-width: 767px) {
    .hero-style-3 {
        height: 500px;
    }
}

@media screen and (min-width: 992px) {
    .hero-style-3 .swiper-slide .container {
        margin-top: -100px;
    }
}

.hero-style-3 .swiper-button-prev,
.hero-style-3 .swiper-button-next {
    background: transparent;
    width: auto;
    height: auto;
    line-height: 0;
    border: 0;
    border-radius: 0;
    opacity: 0.7;
    text-align: center;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

.hero-style-3 .swiper-button-prev:hover,
.hero-style-3 .swiper-button-next:hover {
    opacity: 0.9;
}

@media (max-width: 767px) {

    .hero-style-3 .swiper-button-prev,
    .hero-style-3 .swiper-button-next {
        display: none;
    }
}

.hero-style-3 .swiper-button-prev {
    left: 25px;
}

.hero-style-3 .swiper-button-prev:before {
    font-family: 'themify';
    content: "\e629";
    font-size: 30px;
    color: #e8e8e8;
}

.hero-style-3 .swiper-button-next {
    right: 25px;
}

.hero-style-3 .swiper-button-next:before {
    font-family: 'themify';
    content: "\e628";
    font-size: 30px;
    color: #e8e8e8;
}

.hero-style-3 .slide-title h2 {
    color: #242f6c;
}

.hero-style-3 .slide-text p {
    color: #242f6c;
}

.hero-style-3 .gradient-overlay {
    background: -webkit-gradient(linear, left top, right top, color-stop(5%, #ffffff47), color-stop(90%, transparent));
}

@media screen and (min-width: 992px) {
    .hero-style-3 .swiper-slide .container {
        margin-top: -35px;
    }
}


/* Button */


.wpo-theme-btn {
    width: 200px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    padding: 17px;
    text-align: center;
    text-transform: uppercase;
    border: none;
    background-size: 300% 100%;
    border-radius: 50px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    display: block;
}

.wpo-theme-btn:hover {
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    color: #fff;
}

.wpo-theme-btn:focus {
    outline: none;
}


.wpo-theme-btn.color-9 {
    background-image: linear-gradient(to right, #25aae1, #4481eb, #04befe, #3f86ed);
    margin: 0;
    display: inline-block;
}

@media (max-width: 991px) {
    .wpo-theme-btn {
        width: 170px;
        font-size: 14px;
        height: 50px;
        text-align: center;
        line-height: 50px;
        margin: auto;
    }
    .wpo-theme-btn.color-9 {
        line-height: 1.2;
    }
}


/*===================================
0.6 about-area start
=====================================*/

.about-content .about-icon i {
    color: #34ccff;
}

.about-content h2 {
    font-size: 30px;
    font-weight: 700;
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 30px;
}

.about-content h2:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 5px;
    background: #34ccff;
}

.sec-p {
    padding-left: 30px;
}

.about-img img {
    padding-top: 20px;
}

.about-content p {
    margin-bottom: 30px;
}

.about-content span {
    display: block;
    padding-left: 30px;
    padding-bottom: 10px;
    position: relative;
}

.about-content span:before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 15px;
    height: 15px;
    background: #34ccff;
}

.about-content .about-icon i:before {
    font-size: 60px;
}

.signature-section {
    overflow: hidden;
}

.si-text {
    margin-top: 30px;
}

.si-text p {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-area .about-content p+p {
    margin-bottom: 0px;
}

/*About Form */
.about-form-area {
    max-width: 470px;
    margin-top: -180px;
}

.about-form {
    background: #e6f0f2;
    padding: 35px;
}

.about-form h2 {
    margin-top: 0;
    font-size: 17px;
    color: #242f6c;
    text-transform: uppercase;
    padding-bottom: 10px;
    padding: 10px 0px;
    padding-top: 0px
}

.page-wrapper .about-form p {
    margin-bottom: 0px;
}

.about-form .form-control {
    height: 50px;
    box-shadow: none;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    color: #242f6c;
}

.about-form textarea.form-control {
    height: 170px;
}


.about-submit input[type=submit] {
    background-image: -webkit-linear-gradient(left, #34acff, #00bff3);
    background-image: linear-gradient(90deg, #34acff 0, #00bff3);
    color: #fff;
    padding: 33px 0;
    line-height: 0;
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 600;
}

.about-submit input[type=submit]:hover {
    background-image: -webkit-linear-gradient(left, #00bff3, #34acff);
    background-image: linear-gradient(90deg, #00bff3, #34acff);
}

.about-numer {
    /*text-align: center;*/
    padding-left: 50px;
}

.about-numer span {
    color: #024b6c;
    font-size: 30px;
    font-weight: 600;
}

.page-wrapper .si-text p {
    margin-bottom: 10px;
}

@media (max-width: 1199px) {
    .about-content {
        margin-top: 40px;
    }
}

@media (max-width: 991px) {
    .about-numer span {
        font-size: 25px;
    }

    .about-submit input[type=submit] {
        padding: 30px 0;
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .about-numer span {
        font-size: 20px;
    }

    .about-numer {
        padding-left: 0px;
        text-align: center;
    }

    .shiptar-services .col.col-xs-12 {
        padding-left: 0;
        padding-right: 0;
    }
}

/*=====================================
0.7 service-area start
=======================================*/
.service-area {
    padding: 100px 0 70px;
    background: #f5f5f5;
}

.section-title span {
    font-size: 16px;
    color: #34ccff;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    padding-bottom: 20px;
    margin-bottom: 60px;
    position: relative;
}

.service-count {
    font-size: 100px;
    color: #06bdf414;
    z-index: 11;
    position: absolute;
    top: 25px;
    right: 30px;
}

.section-title h2:before {
    content: "";
    position: absolute;
    left: 47%;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #34ccff;
}

.service-single {
    overflow: hidden;
}

.service-single {
    position: relative;
    overflow: hidden;
    transition: all .3s;
    margin-bottom: 30px;
}

.service-content {
    padding: 29px 40px 20px;
    position: absolute;
    left: 0;
    top: 68%;
    width: 100%;
    height: 100%;
    padding-left: 100px;
    background: #142440;
    transition: all .3s;
    opacity: .8;
}

.service-single:hover .service-content {
    top: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;

}

.service-single:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 36, 64, 0.2);
}

.service-content h3 {
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    position: relative;
    color: #fff;
}

.service-content h3:before {
    content: "\f106";
    position: absolute;
    left: -78px;
    top: -15px;
    font-family: Flaticon;
    font-size: 42px;
    color: #34ccff;
}

.service-content2 h3:before {
    content: "\f107";
    margin-top: 5px;
}

.service-content3 h3:before {
    content: "\f100";
    transform: rotate(45deg);
}

.service-content4 h3:before {
    content: "\f108";
}

.service-content5 h3:before {
    content: "\f10a";
}

.service-content6 h3:before {
    content: "\f10b";
}


.service-content p {
    padding: 15px 0 0px;
    color: #fff;
    line-height: 30px;
}

.service-content a {
    color: #34ccff;
}

.service-area.service-s2 .service-item {}

.service-area.service-s2 .service-item .service-single {
    background: #fff;
    text-align: center;
    padding: 40px 33px;
}

.service-area.service-s2 .service-item .service-single:before {
    content: none;
}

.service-area.service-s2 .service-item .service-single .service-icon {
    background-color: rgba(52, 203, 255, 0.2);
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    border-radius: 50%;
    position: relative;
    margin: auto;
    margin-bottom: 25px;
}

.service-area.service-s2 .service-item .service-single .service-icon:before {
    content: "";
    background-color: rgba(52, 203, 255, 0.2);
    width: 100%;
    height: 100%;
    position: absolute;
    left: -5px;
    top: -5px;
    border-radius: 50%;
}

.service-area.service-s2 .service-item .service-single .service-icon i {
    color: #142440;
}

.service-area.service-s2 .service-item .service-single h2 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-area.service-s2 .service-item .service-single p {
    line-height: 30px;
    color: #5d5b5b;
}

/*--------------------------------------------------------------
#2.3  services-section-s2
--------------------------------------------------------------*/

.services-section-s2 .services-grids .grid {
    width: calc(33.33% - 30px);
    float: left;
    margin: 0 15px 30px;
    padding: 40px;
    border: 1px solid #e9f7e5;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    position: relative;
    border-radius: 5px 5px 5px 5px;
    box-shadow: 5px 0px 30px 0px rgba(90, 194, 243, 0.15);
    padding: 60px 30px 70px 30px
}

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

    .service-count {
        font-size: 50px;
    }
}

@media (max-width: 767px) {
    .services-section-s2 .services-grids .grid {
        width: calc(50% - 30px);
        float: left;
        padding: 40px;
    }

    .service-count {
        font-size: 50px;
    }
}

@media (max-width: 550px) {
    .services-section-s2 .services-grids .grid {
        width: calc(100% - 30px);
        float: none;
        padding: 30px 25px;
        padding-bottom: 30px;
    }
}

.services-section-s2 .services-grids .grid:before {
    content: "";
    background: rgba(255, 255, 255, 0.97);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
}

.services-section-s2 .grid .fi:before {
    font-size: 60px;
    color: #34ccff;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
}

@media (max-width: 991px) {
    .services-section-s2 .grid .fi:before {
        font-size: 35px;
        font-size: 2.1875rem;
    }
}

.services-section-s2 .services-grids .grid .icon,
.services-section-s2 .services-grids .grid h3,
.services-section-s2 .services-grids .grid p {
    position: relative;
}

.services-section-s2 .grid h3 {
    font-size: 20px;
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0.7em 0 0.7em;
}

@media (max-width: 991px) {
    .services-section-s2 .grid h3 {
        font-size: 18px;
        font-size: 1.125rem;
    }
}

.services-section-s2 .grid h3 a {
    color: #2b2e3a;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
}

.services-section-s2 .grid:hover .fi:before {
    color: #fff;
}

.services-section-s2 .grid:hover h3 a,
.services-section-s2 .grid:hover p {
    color: #fff;
}

.services-section-s2 .grid p {
    margin: 0;
}

.services-section-s2 .grid:hover:before {
    background-image: -webkit-linear-gradient(left, #34acff, #00bff3);
    background-image: linear-gradient(90deg, #34acff 0, #00bff3);
}

.service-s2-pg-section {
    padding: 110px 0 80px;
}

@media (max-width: 991px) {
    .service-s2-pg-section {
        padding: 90px 0 60px;
    }
}

@media (max-width: 767px) {
    .service-s2-pg-section {
        padding: 80px 0 50px;
    }
}

/*--------------------------------------------------------------
 cta-section
--------------------------------------------------------------*/
.wpo-cta-section {
    background: #007AD0;
    position: relative;
}

.wpo-cta-section .wpo-content-area {
    overflow: hidden;
}

.wpo-cta-section .left-content {
    width: calc(50% - 150px);
    float: left;
    position: absolute;
}

@media (max-width: 1199px) {
    .wpo-cta-section .left-content {
        width: calc(50% - 85px);
        padding-top: 100px;
    }
}

@media (max-width: 991px) {
    .wpo-cta-section .left-content {
        display: none;
    }
}

.wpo-cta-section .right-content {
    width: calc(50% + 70px);
    float: right;
    padding: 82px 0;
    padding-bottom: 95px;
}

@media (max-width: 1199px) {
    .wpo-cta-section .wpo-cta-content {
        padding: 100px 0;
    }

    .wpo-cta-section .wpo-cta-content .section-title-s3 h2 {
        font-size: 25px;
    }
}

@media (max-width: 991px) {
    .wpo-cta-section .wpo-cta-content {
        width: 100%;
        float: none;
        padding: 0 0 100px;
    }

    .wpo-cta-section .right-content {
        width: calc(100% + 70px);
    }
}

@media (max-width: 767px) {
    .wpo-cta-section .wpo-cta-content {
        padding: 0 0 80px;

    }

    .wpo-cta-section .right-content {
        width: calc(90% + 50px);
    }

    .wpo-cta-section .wpo-cta-content .section-title-s3 h2 {
        font-size: 25px;
    }

}

@media (max-width: 450px) {
    .wpo-cta-section .right-content {
        width: calc(90% + 30px);
    }
}

.wpo-cta-section .wpo-cta-content {
    width: 600px;
    margin-right: auto;
}

@media (max-width: 1199px) {
    .wpo-cta-section .wpo-cta-content {
        width: 525px;
        padding-bottom: 0;
        padding-top: 0;
    }
}

@media (max-width: 991px) {
    .wpo-cta-section .wpo-cta-content {
        width: 690px;
        margin: auto;
    }
}

@media (max-width: 767px) {
    .wpo-cta-section .wpo-cta-content {
        width: 100%;
        padding: 0 15px;
    }
}

.wpo-cta-section .wpo-cta-content .details p {
    margin-bottom: 2.5em;
    color: #fff;
}

@media (max-width: 991px) {
    .wpo-cta-section .wpo-cta-content .details p {
        margin-bottom: 3em;
        font-size: 17px;
    }

}

.wpo-cta-section .wpo-cta-content .section-title-s3 {
    margin-bottom: 50px;
}

.wpo-cta-section .wpo-cta-content .section-title-s3 h2 {
    padding-bottom: 20px;
    position: relative;
    line-height: 1.5em;
}

.wpo-cta-section .wpo-cta-content .section-title-s3 h2:before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    background: #fff;
    width: 65px;
    height: 4px;
}

.wpo-cta-section .wpo-cta-content .section-title-s3 h2 {
    color: #fff;
    text-align: left;
}

.wpo-theme-btn.color-8 {
    background-image: linear-gradient(to right, #25aae1, #4481eb, #04befe, #3f86ed);
    color: #fff;
    border: 1px solid rgba(204, 204, 204, .2);
    box-shadow: 0 0.75rem 1.5rem rgba(18, 38, 63, 0.03);
}

/*==========================================
case-stdyes-area
=============================================*/
.col-c {
    max-width: 20%;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .col-c {
        max-width: calc(50% - 15px);
        margin: 0 7.5px 30px;
    }
}

@media (max-width: 767px) {
    .col-c {
        max-width: calc(50% - 15px);
        margin: 0 7.5px 30px;
    }
    .wpo-theme-btn.color-8 {
        line-height:1.2;
    }

}

@media (max-width: 600px) {
    .col-c {
        max-width: calc(100% - 15px);
    }
}

.wpo-projects-menu button {
    background: none;
    outline: none;
    padding: 0px 15px 10px;
    border: none;
    color: #333;
    margin-right: 5px;
    cursor: pointer;
}

.wpo-projects-menu {
    padding-bottom: 50px;
}

.wpo-projects-menu button.active {
    color: #34acff;
}

.wpo-projects-item {
    position: relative;
}

.overla {
    background-image: linear-gradient(to right, #25aae1, #4481eb, #04befe, #3f86ed);
    opacity: 0.9;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: scale(2) translateX(-75%) translateY(-75%) translateZ(0) rotate(-28deg);
    transform: scale(2) translateX(-75%) translateY(-75%) translateZ(0) rotate(-28deg);
    transition: -webkit-transform 3s cubic-bezier(0.23, 1, 0.32, 1);
    transition: transform 3s cubic-bezier(0.23, 1, 0.32, 1);
    transition: transform 3s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 3s cubic-bezier(0.23, 1, 0.32, 1);
}

.wpo-projects-item:hover .overla {
    -webkit-transform: scale(2) translateX(0%) translateY(0%) translateZ(0) rotate(-28deg);
    transform: scale(2) translateX(0%) translateY(0%) translateZ(0) rotate(-28deg);
}

.wpo-projects-item .overlay-text .text-inner {
    left: 5%;
    top: -50%;
    width: 90%;
    height: 90%;
    position: absolute;
    z-index: 95;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 1s;
}

.wpo-projects-item:hover .overlay-text .text-inner {
    top: 6%;
    opacity: 1;
    visibility: visible;
}

.wpo-projects-item .overlay-text .text-inner h3 {
    color: #fff;
    position: relative;
    margin-top: 0;
    font-weight: 500;
}

.wpo-projects-item .overlay-text .text-inner .sub {
    color: #fff;
}

.wpo-projects-item .overlay-text .text-inner h3 a {
    color: #fff;
}

.wpo-projects-item .overlay-text .text-inner .sub {
    margin-bottom: 10px;
}

.wpo-projects-menu button.active {
    background: #34acff;
    color: white;
    border-color: #34acff;
}

.wpo-projects-menu button {
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0;
    background: transparent;
    outline: none;
    cursor: pointer;
    position: relative;
    margin-right: 10px;
    border: 2px solid #34acff59;
    padding: 5px 15px;
    border-radius: 50px;
}

@media (max-width: 767px) {
    .wpo-projects-menu button {
        font-size: 14px;
        margin-right: 10px;
        margin-right: 5px;
        margin-bottom: 15px;
    }

}

/*===========================
 pricing-area
==============================*/
.wpo-pricing-area {}

.wpo-pricing-text {
    max-width: 295px;
    transform: translateY(42%);
}

.wpo-pricing-text p {
    margin-bottom: 30px;
}

.wpo-pricing-text h2 {
    font-size: 36px;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 40px;
}

.wpo-pricing-text h2:before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    background: #31adfe;
    width: 65px;
    height: 4px;
}

.wpo-pricing-table {
    background: #fff;
    padding-top: 30px;
}

.wpo-pricing-img,
.wpo-pricing-img-2 {
    text-align: center;
}

.wpo-pricing-content ul li {
    display: block;
    padding: 10px;
    padding-left: 30px;
    position: relative;
}

.page-wrapper .wpo-pricing-content ul li {
    line-height: 1.2em;
}

.wpo-pricing-content ul li:before {
    position: absolute;
    left: 0;
    top: 12px;
    content: "\e64c";
    font-family: 'themify';
    color: #31adfe;
}

.wpo-pricing-img h2,
.wpo-pricing-img-2 h2 {
    margin: 30px 0 20px;
}

.wpo-pricing-img-2 img {
    width: 43%;
}

.wpo-pricing-footer ul {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding-left: 0px;
}

.wpo-pricing-footer {
    padding: 10px 40px;
    border-top: 1px solid #f2f2f2;
    padding-bottom: 5px;
}

.wpo-pricing-footer ul li h2 {
    font-size: 36px;
    font-weight: 700;
    color: #444;
}

.wpo-pricing-footer ul li span {
    font-size: 16px;
    font-weight: 400;
    color: #444;
}

.wpo-pricing-footer ul li:last-child {
    margin-top: 25px;
}

.wpo-pricing-footer ul li i {
    color: #000;
}

.wpo-pricing-content {
    padding: 0 35px;
    padding-bottom: 25px;
}

.wpo-pricing-content ul {
    padding-left: 0px;
}

@media (max-width: 991px) {
    .wpo-pricing-text {
        margin-bottom: 30px;
        transform: translateY(0%);
    }
}

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

/*=======================================
 testimonial-area 
=========================================*/
.wpo-testimonial-area {
    background: #fff;
}

.wpo-testimonial-img {
    z-index: 99;
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    float: left;
    overflow: hidden;
}

.testimonial-tumb-content {
    overflow: hidden;
    padding-left: 15px;
    margin-top: 20px;
}

.wpo-testimonial-img img {
    border-radius: 50%;
    width: 100%;
}

.wpo-testimonial-area .owl-carousel .owl-item .testimonial-tumb-content img {
    width: auto;
}

.wpo-testimonial-item {
    position: relative;
    background: #fff;
    padding: 40px 35px;
    -webkit-box-shadow: 0px 10px 40px 0px rgb(245, 248, 249);
    -moz-box-shadow: 0px 10px 40px 0px rgb(245, 248, 249);
    box-shadow: 0px 10px 40px 0px rgb(245, 248, 249);
}

.page-wrapper .wpo-testimonial-item p {
    padding-top: 20px;
    position: relative;
    font-size: 18px;
    margin-bottom: 0px;
}

.wpo-testimonial-item h4 {
    font-size: 18px;
    color: #283a5e;
    margin-bottom: 10px;
    font-weight: 600;
}

.wpo-testimonial-item span {
    font-size: 14px;
    font-weight: 400;
    color: #999;
}

.testimonial-icon .fi {
    color: #e9e9e9;
}

.wpo-testimonial-sub {
    overflow: hidden;
}

.wpo-testimonial-wrap {
    padding: 10px;
}

.testimonial-tumb-content ul li {
    display: inline-block;
    padding-right: 5px;
    color: #fda12a;
}

.owl-theme .owl-dots .owl-dot span {
    background: #a9bfce;
}


.owl-theme .owl-dots .owl-dot.active span {
    background: #31adfe;
    width: 12px;
    height: 12px;
}

.owl-theme .owl-dots .owl-dot:hover span {
    background: #31adfe;
}

@media (max-width: 767px) {
    .wpo-testimonial-img {
        display: block;
        float: none;
    }

    .testimonial-tumb-content {
        padding-left: 0px;
    }

    .wpo-testimonial-item h4 {
        font-size: 15px;
    }

    .page-wrapper .wpo-testimonial-item p {
        font-size: 16px;
    }

    .wpo-testimonial-item span {
        font-size: 13px;
    }
}

/*======================================
team area
========================================*/

.wpo-team .box {
    box-shadow: 3px 0px 20px 0px rgba(90, 194, 243, 0.15);
    transition: all .5s ease-in-out;
    margin-bottom: 30px;
    text-align: center;
}

.wpo-team .box .image {
    position: relative;
    height: 100%;
}

.wpo-team .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #007AD0;
    top: 0;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    z-index: 15;
}

.wpo-team .box .image .social-icons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    z-index: 20;
    text-decoration: none;
    opacity: 0;
    margin-top: 100px;
    padding: 8px 15px;
    background: #ffffff;
    border-radius: 35px;
    transition: all 0.5s ease-in-out;
}

.wpo-team .box .image .social-icons i {
    font-size: 16px;
    padding: 0 7px;
    color: #31adfe;
}

.wpo-team .box:hover .overlay {
    opacity: 0.9;
}

.wpo-team .box:hover .social-icons {
    margin-top: 0;
    opacity: 1;
}

.wpo-team .box h3 {
    margin: 0;
    padding: 0;
    margin-top: 20px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.wpo-team .box h4 {
    margin: 0;
    padding: 0;
    font-size: 13px;
    color: #999999;
    font-weight: 400;
    margin-top: 5px;
    padding-bottom: 25px;
}

.wpo-team .box:hover {
    transform: translateY(-15px);
}

@media (max-width: 767px) {
    .wpo-team .box .image img {
        width: 100%;
    }

    .wpo-team .box .image .social-icons i {
        padding: 0 3px;
    }
}


/*--------------------------------------------------------------
#4.1    Project-single-section
--------------------------------------------------------------*/
.project-single-section .service-content>.img-holder,
.project-single-section .project-content>.img-holder {
    margin-bottom: 45px;
}

.project-single-section h2 {
    font-size: 30px;
    font-size: 1.875rem;
    margin: 0 0 1em;
}

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

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

.project-single-section p {
    margin-bottom: 1.2em;
}

.project-single-section .service-content>ul,
.project-single-section .project-content>ul {
    margin: 45px 0 65px;
}

.project-single-section .service-content>ul li,
.project-single-section .project-content>ul li {
    padding-left: 30px;
    position: relative;
}

.project-single-section .service-content>ul li:before,
.project-single-section .project-content>ul li:before {
    content: "";
    background: #fe6c35;
    width: 12px;
    height: 12px;
    position: absolute;
    left: 0;
    top: 4px;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}

.project-single-section .service-content>ul>li+li,
.project-single-section .project-content>ul>li+li {
    margin-top: 13px;
}

.project-single-section .img-with-text .img-holder {
    width: 50%;
    float: left;
    margin-right: 25px;
    padding-top: 10px;
}

@media (max-width: 767px) {
    .project-single-section .img-with-text .img-holder {
        width: 100%;
        float: none;
        margin: 0 0 35px;
    }
}

.project-single-section .pagi {
    padding-top: 50px;
}

@media (max-width: 767px) {
    .project-single-section .pagi {
        padding-top: 30px;
    }
}

.project-single-section .pagi ul {
    overflow: hidden;
}

.project-single-section .pagi ul li {
    width: 50%;
    float: left;
    text-align: center;
    border: 1px solid #d7d7d7;
}

.project-single-section .pagi ul>li:last-child {
    margin-left: -1px;
}

.project-single-section .pagi ul a {
    display: block;
    padding: 15px;
    color: #666;
}

.project-single-section .pagi ul a:hover {
    background-color: #ebf7ff;
    color: #34ccff;
}

.project-single-section .project-content .pagi {
    padding-top: 0;
}

.service-sidebar .project-info-widget {
    background-color: #ebf7ff;
    padding: 60px 30px;
}

@media (max-width: 767px) {
    .service-sidebar .project-info-widget {
        padding: 40px 20px;
    }
}

.service-sidebar .project-info-widget h3 {
    margin-top: 0px;
}

.service-sidebar .project-info-widget ul {
    padding-left: 0px;
    font-family: 'now';
}

.service-sidebar .project-info-widget ul li {
    line-height: 1.7em;
    list-style: none;
}

.service-sidebar .project-info-widget ul li a {
    color: #7e8690;
}

.service-sidebar .project-info-widget ul>li+li {
    margin-top: 15px;
}

.service-sidebar .project-info-widget ul li span {
    font-weight: 600;
    color: #283a5e;
}

@media (max-width: 767px) {

    .service-single-section .img-with-text .img-holder,
    .project-single-section .img-with-text .img-holder {
        width: 100%;
        float: none;
        margin: 0 0 35px;
    }
}

.project-single-section .pagi {
    padding-top: 50px;
}

@media (max-width: 767px) {
    .project-single-section .pagi {
        padding-top: 30px;
    }
}

.project-single-section .pagi ul {
    overflow: hidden;
    padding-left: 0px;
    list-style: none;
}

.project-single-section .pagi ul li {
    width: 50%;
    float: left;
    text-align: center;
    border: 1px solid #d7d7d7;
}

.project-single-section .pagi ul>li:last-child {
    margin-left: -1px;
}

.project-single-section .pagi ul a {
    display: block;
    padding: 15px;
    color: #666;
}

.project-single-section .project-content .pagi {
    padding-top: 70px;
}

/*--------------------------------------------------------------
    #service single page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#9.0    service-single-section
--------------------------------------------------------------*/
.service-single-section {
    /*** service single tab ***/
}

@media screen and (min-width: 1200px) {
    .service-single-section .service-single-content {
        padding-left: 20px;
    }
}

.service-single-section .service-single-content .service-pic {
    margin-bottom: 50px;
}

.service-single-section .service-single-content .theme-btn,
.service-single-section .service-single-content .theme-btn-s2 {
    margin-top: 20px;
}

.service-single-section .service-single-content h2 {
    font-size: 28px;
    font-size: 1.75rem;
    margin: 1em 0;
    text-transform: capitalize;
}

@media (max-width: 767px) {
    .service-single-section .service-single-content h2 {
        font-size: 25px;
        font-size: 1.5625rem;
    }
}

.service-single-section .service-single-content h3 {
    font-size: 18px;
    font-size: 1.125rem;
    text-transform: capitalize;
    margin: 1.7em 0 1em;
}

.service-single-section .service-single-content p {
    margin-bottom: 1.3em;
}

.service-single-section .service-single-content ul {
    list-style: none;
}

@media (max-width: 767px) {
    .service-single-section .service-single-content ul {
        font-size: 15px;
        font-size: 0.9375rem;
    }
}

.service-single-section .service-single-content ul li {
    position: relative;
    padding-left: 25px;
    line-height: 1.7em;
    color: #121212;
}

.service-single-section .service-single-content ul>li+li {
    margin-top: 8px;
}

.service-single-section .service-single-content ul li i {
    display: inline-block;
    color: #87d271;
    position: absolute;
    left: 0;
    top: 5px;
}

.service-single-section .service-single-content .service-features {
    overflow: hidden;
}

.service-single-section .service-single-content .service-features ul {
    width: 50%;
    display: inline-block;
    float: left;
}

@media (max-width: 767px) {
    .service-single-section .service-single-content .service-features ul {
        width: 100%;
        float: none;
        display: block;
        margin-top: 10px;
    }
}

.service-single-section .service-single-tab {
    margin-top: 70px;
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .service-single-section .service-single-tab {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .service-single-section .service-single-tab {
        margin-top: 40px;
    }
}

.service-single-section .service-single-tab .nav {
    overflow: hidden;
    margin: 0;
}

.service-single-section .service-single-tab .nav li {
    float: left;
    padding-left: 0;
}

.service-single-section .service-single-tab .nav>li+li {
    margin-top: 0;
    margin-left: 3px;
}

@media (max-width: 767px) {
    .service-single-section .service-single-tab .nav>li+li {
        margin-left: 1px;
    }
}

.service-single-section .service-single-tab .nav a {
    font-family: "Lato", sans-serif;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 600;
    color: #2b2e3a;
    text-transform: uppercase;
    padding: 10px 25px;
    border: 1px solid rgba(135, 210, 113, 0.5);
}

@media (max-width: 767px) {
    .service-single-section .service-single-tab .nav a {
        font-size: 14px;
        font-size: 0.875rem;
        padding: 8px 12px;
    }
}

@media (max-width: 350px) {
    .service-single-section .service-single-tab .nav a {
        padding: 8px;
    }
}

.service-single-section .service-single-tab .nav .active a,
.service-single-section .service-single-tab .nav a:hover {
    background: #87d271;
    color: #fff;
}

.service-single-section .tab-content {
    background-color: rgba(135, 210, 113, 0.1);
    padding: 35px 40px;
}

@media (max-width: 767px) {
    .service-single-section .tab-content {
        padding: 25px 20px;
    }
}

.service-single-section .tab-content .tab-pane p {
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .service-single-section .tab-content .tab-pane p {
        margin-bottom: 15px;
    }
}

.service-single-section .tab-content .tab-pane p:last-child {
    margin-bottom: 0;
}

.service-single-section .request-service {
    background: url("../images/service-single-form-bg.jpg") center center/cover no-repeat local;
    padding: 45px 50px 25px;
    margin-top: 80px;
    position: relative;
}

@media (max-width: 1199px) {
    .service-single-section .request-service {
        padding: 45px 50px;
    }
}

@media (max-width: 991px) {
    .service-single-section .request-service {
        padding: 35px 30px;
    }
}

.service-single-section .request-service:before {
    content: "";
    background-color: rgba(135, 210, 113, 0.95);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.service-single-section .request-service>form,
.service-single-section .request-service h3 {
    position: relative;
    z-index: 1;
}

.service-single-section .request-service h3 {
    font-size: 22px;
    font-size: 1.375rem;
    color: #fff;
    margin: 0 0 1em;
}

@media (max-width: 991px) {
    .service-single-section .request-service h3 {
        font-size: 18px;
        font-size: 1.125rem;
    }
}

.service-single-section .request-service input,
.service-single-section .request-service textarea {
    background: transparent;
    width: 100%;
    height: 45px;
    font-size: 15px;
    font-size: 0.9375rem;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 0;
    padding: 6px 18px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.service-single-section .request-service input:focus,
.service-single-section .request-service textarea:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #87d271;
}

.service-single-section .request-service form {
    margin: 0 -15px;
    overflow: hidden;
}

.service-single-section .request-service form ::-webkit-input-placeholder {
    font-style: 16px;
    font-style: normal;
    color: #fff;
}

.service-single-section .request-service form :-moz-placeholder {
    font-style: 16px;
    font-style: normal;
    color: #fff;
}

.service-single-section .request-service form ::-moz-placeholder {
    font-style: 16px;
    font-style: normal;
    color: #fff;
}

.service-single-section .request-service form :-ms-input-placeholder {
    font-style: 16px;
    font-style: normal;
    color: #fff;
}

.service-single-section .request-service form>div {
    width: calc(50% - 30px);
    float: left;
    margin: 0 15px 30px;
}

@media (max-width: 1199px) {
    .service-single-section .request-service form>div {
        width: calc(100% - 30px);
        float: none;
    }
}

@media (max-width: 550px) {
    .service-single-section .request-service form>div {
        width: calc(100% - 30px);
        float: none;
    }
}

.service-single-section .request-service form>.submit-area {
    margin-bottom: 0;
}

.service-single-section .request-service form>.submit-area button {
    background: #fff;
    color: #2b2e3a;
    font-weight: 600;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin: 0;
    padding: 0 45px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

.service-single-section .request-service form>.submit-area button:hover {
    background: #87d271;
}

.all-services {
    background: #f5f8f9;
    padding: 60px 30px;
}

.all-services ul {
    list-style: none;
    padding-left: 0px;
}

.service-sidebar .all-services ul a {
    margin-top: 15px;
    padding-bottom: 15px;
    display: block;
    border-bottom: 1px solid #eaeaea;
    color: #666;
}

@media screen and (min-width: 992px) {
    .left-sidebar .service-sidebar {
        padding-right: 30px;
    }

    .service-sidebar .all-services ul li:first-child a {
        margin-top: 0px;
    }
}

/*--------------------------------------------------------------
#5.1  contact-pg-contact-section
--------------------------------------------------------------*/
.contact-pg-contact-section .contact-details ul {
    margin-top: 50px;
    padding-left: 0px;
    list-style: none;
}

.contact-pg-contact-section .contact-details ul li {
    position: relative;
    padding-left: 70px;
}

.contact-pg-contact-section .contact-details ul>li {
    margin-top: 45px;
}

.contact-pg-contact-section .icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    position: absolute;
    left: 0;
    top: 0;
    text-align: center;
    border-radius: 5px;
    -webkit-box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.15);
}
.contact-pg-contact-section .icon img {
    max-width: 20px;
}
.contact-pg-contact-section .icon i {
    font-size: 20px;
    font-size: 1.25rem;
    color: #06bef4;
}

.contact-pg-contact-section .contact-details h5 {
    font-size: 20px;
    font-size: 1.25rem;
    margin: 0 0 0.3em;
}

.contact-pg-contact-section .contact-form-area {
    box-shadow: 0px 0px 22px 0px #f7f2f2;
    padding: 40px;
    padding-bottom: 90px;
}

.contact-pg-contact-section .section-title-s3 h2 {
    font-size: 32px;
    line-height: 50px;
    font-weight: 700;
    text-align: left;
}

.contact-pg-contact-section .section-title-s3 {
    margin-bottom: 35px;
}

@media (max-width: 991px) {
    .contact-pg-contact-section .contact-form {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .contact-pg-contact-section .contact-form {
        margin-top: 30px;
    }
}

.contact-pg-contact-section .contact-form input,
.contact-pg-contact-section .contact-form textarea {
    background: #f9f9f9;
    width: 100%;
    height: 60px;
    border: 1px solid transparent;
    color: #666;
    border-radius: 0;
    padding: 6px 18px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.contact-pg-contact-section .contact-form input:focus,
.contact-pg-contact-section .contact-form textarea:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #06bef4;
}

.contact-pg-contact-section .contact-form form {
    margin: 0 -15px;
}

.contact-pg-contact-section .contact-form form ::-webkit-input-placeholder {
    font-style: 16px;
    font-style: normal;
    color: #666666;
}

.contact-pg-contact-section .contact-form form :-moz-placeholder {
    font-style: 16px;
    font-style: normal;
    color: #666666;
}

.contact-pg-contact-section .contact-form form ::-moz-placeholder {
    font-style: 16px;
    font-style: normal;
    color: #666666;
}

.contact-pg-contact-section .contact-form form :-ms-input-placeholder {
    font-style: 16px;
    font-style: normal;
    color: #666666;
}

.contact-pg-contact-section .contact-form form>div {
    width: calc(100% - 30px);
    float: left;
    margin: 0 15px 20px;
}

@media (max-width: 550px) {
    .contact-pg-contact-section .contact-form form>div {
        width: calc(100% - 30px);
        float: none;
    }
}

.contact-pg-contact-section .contact-form form>.submit-area {
    margin-bottom: 0;
    text-align: center;
}

.contact-pg-contact-section .contact-form form .comment-area {
    width: calc(100% - 30px);
    float: none;
    clear: both;
}

.contact-pg-contact-section .contact-form form .comment-area textarea {
    height: 170px;
}

.contact-pg-contact-section .contact-form form .comment-area textarea:focus {
    border-color: #06bef4;
    outline: none;
}

.contact-pg-contact-section .theme-btn-s2,
.contact-pg-contact-section .theme-btn-s4 {
    border: 0;
    outline: 0;
}

.contact-pg-contact-section .contact-map {
    height: 450px;
    margin-top: 75px;
}

@media (max-width: 991px) {
    .contact-pg-contact-section .contact-map {
        margin-top: 55px;
    }
}

@media (max-width: 767px) {
    .contact-pg-contact-section .contact-map {
        height: 350px;
        margin-top: 45px;
    }
}

.contact-pg-contact-section .contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    outline: 0;
}

@media (max-width: 991px) {
    .contact-pg-contact-section .contact-form-area {
        margin-top: 80px;
    }

    .contact-pg-contact-section .contact-form-area .section-title-s3,
    .contact-pg-contact-section .contact-form-area .section-title-s4 {
        margin-bottom: 0;
    }
}


.contact-pg-contact-section .contact-form-area h2 {
    font-size: 30px;
    font-weight: 700;
}

.contact-pg-contact-section .contact-form-area .section-title-s3 {
    margin-bottom: 10px;
}

.contact-pg-contact-section .contact-text {
    padding-top: 30px;
}

@media (max-width: 991px) {
    .contact-text {
        padding-top: 0 !important;
    }
}

@media (max-width: 767px) {
    .contact-text {
        padding-top: 0 !important;
    }

    .contact-pg-contact-section .section-title-s3 h2 {
        font-size: 35px;
        line-height: 42px;
    }

    .contact-pg-contact-section .contact-form-area {
        padding: 40px 20px;
        padding-bottom: 20px;
    }
}

/*--------------------------------------------------------------
Shortcode blog-section
--------------------------------------------------------------*/

.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);
    margin: 0 15px 30px;
    float: left;
}

@media (max-width: 1199px) {
    .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 .grid .details {
    padding: 35px 30px;
    -webkit-box-shadow: 0px 5px 9px 1px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 5px 9px 1px rgba(0, 0, 0, 0.06);
}

@media (max-width: 1199px) {
    .blog-section .grid .details {
        padding: 30px 20px;
    }
}

.blog-section .grid .details h3 {
    font-size: 21px;
    font-size: 1.375rem;
    line-height: 1.4em;
    margin: 0 0 0.7em;
    font-weight: 700;
}

@media (max-width: 1199px) {
    .blog-section .grid .details h3 {
        font-size: 18px;
        font-size: 1.125rem;
    }
}

.blog-section .grid .details h3 a {
    color: #283a5e;
}

.blog-section .grid .details h3 a:hover {
    color: #ed5217;
}

.blog-section .details p {
    font-size: 15px;
    font-size: 0.9375rem;
}

.blog-section .entry-meta {
    overflow: hidden;
    padding-top: 10px;
}

.blog-section .entry-meta>li {
    font-size: 14px;
    font-size: 0.875rem;
    float: left;
}

@media (max-width: 767px) {
    .blog-section .entry-meta>li {
        font-size: 13px;
        font-size: 0.8125rem;
    }
}

.blog-section .entry-meta>li+li {
    margin-left: 15px;
    padding-left: 15px;
    padding-top: 9px;
    position: relative;
}

.blog-section .entry-meta>li+li:before {
    content: "|";
    position: absolute;
    left: 0;
    top: 9px;
}

@media (max-width: 767px) {
    .blog-section .entry-meta>li+li {
        margin-left: 11px;
        padding-left: 11px;
    }
}

.blog-section .entry-meta li a {
    color: #666;
}

.blog-section .entry-meta img {
    border-radius: 50%;
}

.blog-section .blog-grids .details li img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-top: -2px;
}

.shiptar-blog.blog-section .entry-meta li a+a:before {
    position: absolute;
    content: ",";
    left: 2px;
}

.shiptar-blog.blog-section .entry-meta li a+a {
    position: relative;
    padding-left: 5px;
}

.shiptar-blog.blog-section .entry-meta>li+li:before {
    color: #c5c5c5;
    top: 5px;
}

.blog-section .entry-meta li a {
    color: #7e8690;
}

.shiptar-blog.blog-section .entry-meta li i {
    padding-right: 3px;
}

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

.shiptar-blog.blog-section .entry-media .date {
    background-image: linear-gradient(90deg, #34acff 0, #00bff3);
    height: 60px;
    width: 60px;
    position: absolute;
    right: 15px;
    top: 15px;
    text-align: center;
    border-radius: 50%;
    line-height: 60px;
    color: #fff;
}

.shiptar-blog.blog-section .entry-media .date p {
    font-size: 25px;
    line-height: .8em;
    color: #fff;
    margin: 0;
    padding-top: 11px;
}

.shiptar-blog.blog-section .entry-media p span {
    display: block;
    font-size: 15px;
    font-size: .9375rem;
    text-transform: capitalize;
}

.shiptar-blog.blog-section .entry-meta>li+li {
    padding-top: 6px;
}

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

@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 h3 {
    font-size: 16px;
    font-size: 1rem;
    border-bottom: 1px solid #f1f1f1;
    margin: 0 0 1.3em;
    padding-bottom: 0.5em;
    position: relative;
    text-transform: uppercase;
}

.wpo-blog-sidebar>.widget+.widget {
    margin-top: 65px;
}

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

.wpo-blog-sidebar .search-widget input {
    background-color: #f8f8f8;
    height: 50px;
    font-size: 16px;
    font-size: 1rem;
    padding: 6px 50px 6px 20px;
    border: 0;
    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(135, 210, 113, 0.1);
}

.wpo-blog-sidebar .search-widget form button {
    background: transparent;
    font-size: 20px;
    font-size: 1.25rem;
    color: #34ccff;
    border: 0;
    outline: 0;
    position: absolute;
    right: 10px;
    top: 55%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.wpo-blog-sidebar .about-widget .img-holder {
    margin-bottom: 20px;
}

.wpo-blog-sidebar .about-widget a {
    font-family: "Lato", sans-serif;
    color: #2b2e3a;
}

.wpo-blog-sidebar .about-widget a:hover {
    color: #34ccff;
}

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

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

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

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

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

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

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

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

.wpo-blog-sidebar .category-widget ul a:hover,
.wpo-blog-sidebar .category-widget ul li:hover:before {
    color: #34ccff;
}

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

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

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

.wpo-blog-sidebar .recent-post-widget .post h4 {
    font-size: 16px;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.3em;
    margin: 0 0 0.2em;
}

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

.page-wrap .right-sidebar .wpo-blog-sidebar {
    padding-left: 35px;
}

@media (max-width: 991px) {
    .page-wrap .right-sidebar .wpo-blog-sidebar {
        padding-left: 0px;
    }
}

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

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

.wpo-blog-sidebar .recent-post-widget .post .details .date {
    font-size: 14px;
    font-size: 0.875rem;
    color: #8e9696;
}

.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 {
    background: #f3f3f3;
    font-size: 14px;
    font-size: 0.875rem;
    display: inline-block;
    padding: 5px 14px;
    color: #8e9696;
    border-radius: 0;
}

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

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

@media (max-width: 991px) {
    .pagination-wrapper {
        text-align: left;
    }
}

.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: transparent;
    width: 50px;
    height: 50px;
    line-height: 47px;
    font-size: 20px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #a9b8c4;
    border: 2px solid #c9cfd4;
    display: block;
}

@media (max-width: 991px) {
    .pagination-wrapper .pg-pagination li a {
        width: 40px;
        height: 40px;
        line-height: 37px;
        font-size: 18px;
        font-size: 1.125rem;
    }
}

.pagination-wrapper .pg-pagination .active a,
.pagination-wrapper .pg-pagination li a:hover {
    background: #34ccff;
    border-color: #34ccff;
    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;
    }
}

.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 {
    border: 1px solid #e6e5e5;
    padding: 25px;
}

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

.theme-accordion-s1 .panel-heading a.collapsed:before {
    content: "\e61a";
}

.theme-accordion-s1 .panel-heading a {
    font-size: 20px;
    font-size: 1.25rem;
    color: #34ccff;
    display: block;
    padding: 0 0 0 45px;
    position: relative;
}

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

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

.theme-accordion-s1 .panel-heading a:before {
    font-family: "themify";
    content: "\e622";
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    color: #34ccff;
    font-size: 15px;
    font-size: 0.9375rem;
    border: 1px solid #34ccff;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: -2px;
}

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

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

.theme-accordion-s1 .panel-heading .collapsed {
    background-color: transparent;
    color: #2b2e3a;
}

.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: transparent;
    border: 0;
    padding: 20px 0 0 25px;
}

@media (max-width: 991px) {
    .theme-accordion-s1 .panel-heading+.panel-collapse>.panel-body {
        font-size: 16px;
        font-size: 1rem;
    }
}

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

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

.theme-accordion-s1 .panel-heading+.panel-collapse>.panel-body p:last-child {
    margin-bottom: 0;
}

/****************************************
  service single sidebar
****************************************/
.service-sidebar {
    /*** service-list-widget ***/
    /*** download-widget ***/
    /*** contact-widget ***/
    /*** service-features-widget ***/
}

@media (max-width: 991px) {
    .service-sidebar {
        max-width: 300px;
        margin-top: 80px;
    }
}

.service-sidebar>.widget+.widget {
    margin-top: 60px;
}

.service-sidebar .service-list-widget ul {
    font-family: "Lato", sans-serif;
    list-style: none;
    border: 2px solid #f7f7f7;
    border-bottom: 0;
}

.service-sidebar .service-list-widget ul li {
    border-bottom: 2px solid #f7f7f7;
}

.service-sidebar .service-list-widget a {
    display: block;
    color: #0a172b;
    padding: 12px 24px;
}

.service-sidebar .service-list-widget a:hover,
.service-sidebar .service-list-widget .current a {
    background-color: #34ccff;
    color: #fff;
}

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

.service-sidebar .download-widget ul>li+li {
    margin-top: 5px;
}

.service-sidebar .download-widget ul a {
    background: #34ccff;
    color: #fff;
    padding: 15px 25px;
    font-weight: 600;
    display: block;
}

.service-sidebar .download-widget ul i {
    display: inline-block;
    padding-right: 10px;
    color: #fff;
}

.service-sidebar .download-widget ul a:hover {
    background: #34ccff;
}

.service-sidebar .contact-widget {
    background: url("../images/service-single-contact-widget-bg.jpg") center center/cover no-repeat local;
    padding: 45px 30px;
    position: relative;
}

.service-sidebar .contact-widget:before {
    content: "";
    background-color: rgba(135, 210, 113, 0.9);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.service-sidebar .contact-widget>div {
    position: relative;
    z-index: 1;
}

.service-sidebar .contact-widget h4 {
    font-size: 18px;
    font-size: 1.125rem;
    color: #fff;
    margin: 0 0 0.8em;
    text-transform: capitalize;
}

.service-sidebar .contact-widget p {
    color: #fff;
}

.service-sidebar .contact-widget ul li {
    font-size: 14px;
    font-size: 0.875rem;
    position: relative;
    padding-left: 25px;
}

.service-sidebar .contact-widget ul li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: #34ccff;
}

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

.service-sidebar .contact-widget a {
    background-color: #fff;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #7e8690;
    padding: 7px 15px;
    display: inline-block;
    margin-top: 15px;
}

.service-sidebar .contact-widget a:hover {
    color: #34ccff;
}

.service-sidebar .service-features-widget {
    padding: 45px 30px;
    position: relative;
    border: 2px solid #f7f7f7;
}

.service-sidebar .service-features-widget:before {
    font-family: "Themify";
    content: "\e61f";
    font-size: 25px;
    font-size: 1.5625rem;
    color: #34ccff;
    position: absolute;
    right: 30px;
    top: 40px;
    opacity: 0.5;
}

.service-sidebar .service-features-widget h3 {
    font-size: 18px;
    font-size: 1.125rem;
    margin: 0 0 0.8em;
    text-transform: capitalize;
}

.service-sidebar .service-features-widget ol {
    list-style-position: inside;
    padding-left: 0;
    margin: 0;
}

.service-sidebar .service-features-widget ol>li+li {
    margin-top: 8px;
}

/****************************************
  shop sidebar
****************************************/
.shop-sidebar {
    /*** search-widget ***/
    /*** categories-widget ***/
    /*** popular-product-widget ***/
    /*** tag-widget ***/
}

@media (max-width: 991px) {
    .shop-sidebar {
        max-width: 300px;
        margin-top: 70px;
    }
}

.shop-sidebar>.widget+.widget {
    margin-top: 65px;
}

.shop-sidebar .widget>h3 {
    font-size: 20px;
    font-size: 1.25rem;
    text-transform: capitalize;
    margin: 0 0 1.5em;
}

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

.shop-sidebar .search-widget div {
    position: relative;
}

.shop-sidebar .search-widget button {
    background: transparent;
    font-size: 20px;
    font-size: 1.25rem;
    color: #34ccff;
    border: 0;
    outline: 0;
    padding: 0;
    margin: 0;
    position: absolute;
    right: 15px;
    top: 55%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.shop-sidebar .search-widget input {
    background-color: #f3f3f3;
    height: 50px;
    padding: 6px 40px 6px 20px;
    border: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.shop-sidebar .categories-widget ul li {
    position: relative;
    color: #727780;
}

.shop-sidebar .categories-widget ul li span {
    text-align: right;
    color: #8b8b8b;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.shop-sidebar .categories-widget ul li a {
    color: #727780;
}

.shop-sidebar .categories-widget ul>li+li {
    margin-top: 15px;
}

.shop-sidebar .categories-widget ul li a:hover {
    color: #34ccff;
}

.shop-sidebar .popular-product-widget ul li {
    overflow: hidden;
}

.shop-sidebar .popular-product-widget ul>li+li {
    margin-top: 20px;
}

.shop-sidebar .popular-product-widget .product-image {
    width: 70px;
    float: left;
}

.shop-sidebar .popular-product-widget .product-info {
    width: calc(100% - 70px);
    float: left;
    padding-left: 20px;
}

.shop-sidebar .popular-product-widget .product-info>a {
    color: #2b2e3a;
    display: block;
    margin-bottom: 4px;
}

.shop-sidebar .popular-product-widget .product-info>a:hover {
    color: #34ccff;
}

.shop-sidebar .popular-product-widget .star-rating {
    margin-bottom: 5px;
}

.shop-sidebar .popular-product-widget .star-rating i {
    font-size: 12px;
    font-size: 0.75rem;
    color: #34ccff;
}

.shop-sidebar .tag-widget .tagcloud a {
    font-size: 14px;
    font-size: 0.875rem;
    color: #727780;
    display: inline-block;
    border: 1px solid #e8e8e8;
    padding: 6px 15px;
    margin: 0 5px 5px 0;
}

.shop-sidebar .tag-widget .tagcloud a:hover {
    background-color: #34ccff;
    border-color: #34ccff;
    color: #fff;
}

/*--------------------------------------------------------------
#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 .navbar-brand {
    margin-top: 10px;
}

.wpo-site-header .navbar-brand img {
    max-width: 200px;
}

@media (max-width: 991px) {
    .wpo-site-header .navbar-brand {
        margin-top: 0;
        padding-top: 0;
    }
}

.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 {
    font-family: "Lato", sans-serif;
    -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,
.wpo-site-header #navbar>ul>li .sub-menu a:hover {
    text-decoration: none;
    color: #34ccff;
}

.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: 8px;
    font-size: 0.5rem;
    position: absolute;
    right: 2px;
    top: 42%;
}

@media screen and (min-width: 1200px) {
    .wpo-site-header #navbar>ul>.menu-item-has-children>a:before {
        right: 6px;
    }
}

@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;
        color: #2b2e3a;
        padding: 37px 20px;
    }

    .wpo-site-header #navbar>ul .sub-menu {
        background-color: #fff;
        width: 220px;
        text-align: left;
        padding: 10px 25px;
        position: absolute;
        left: 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;
        -webkit-box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        text-transform: capitalize;
    }

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

    .wpo-site-header #navbar>ul>li .sub-menu li:last-child {
        border-bottom: 0;
    }

    .wpo-site-header #navbar>ul>li .sub-menu a {
        display: block;
        padding: 10px 0;
        color: #2b2e3a;
        font-size: 14px;
        font-size: 0.875rem;
    }

    .wpo-site-header #navbar>ul>li>.sub-menu .sub-menu {
        left: 112%;
        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: 100%;
        visibility: visible;
        opacity: 1;
    }

    .wpo-site-header #navbar .sub-menu>li:hover>.sub-menu {
        left: 114%;
        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 #34ccff;
        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: #34ccff;
        width: 40px;
        height: 35px;
        border: 0;
        padding: 5px 10px;
        outline: 0;
        position: absolute;
        right: 15px;
        top: calc(50% - 17.5px);
        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: #34ccff;
    }

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

    .body-overlay:before {
        content: "";
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        position: absolute;
        left: 0;
        top: 0;
        z-index: 10;
        -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,
.header-style-3 {
    /*** wpo-cart-search-contact ***/
}

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

    .header-style-1,
    .header-style-2,
    .header-style-3 {
        position: absolute;
        width: 100%;
        z-index: 100;
        background: rgba(255, 255, 255, 0.1);
    }

    .header-style-1:before,
    .header-style-2:before,
    .header-style-3:before {
        content: "";
        width: 100%;
        height: 1px;
        position: absolute;
        left: 0;
        bottom: 4px;
    }

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

    .header-style-1 #navbar,
    .header-style-2 #navbar,
    .header-style-3 #navbar {
        text-align: center;
    }

    .header-style-1 #navbar>ul>li a,
    .header-style-2 #navbar>ul>li a,
    .header-style-3 #navbar>ul>li a {
        color: #fff;
    }

    .header-style-1 #navbar>ul,
    .header-style-2 #navbar>ul,
    .header-style-3 #navbar>ul {
        float: none;
        display: inline-block;
    }

    .header-style-1 #navbar>ul>li>a,
    .header-style-2 #navbar>ul>li>a,
    .header-style-3 #navbar>ul>li>a {
        padding: 39px 15px;
    }
}

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

    .header-style-1 #navbar>ul>li>a,
    .header-style-2 #navbar>ul>li>a,
    .header-style-3 #navbar>ul>li>a {
        padding: 39px 20px;
    }
}

@media (max-width: 991px) {

    .header-style-1 .navigation,
    .header-style-2 .navigation,
    .header-style-3 .navigation {
        background: #007ad0;
        padding: 17px 0;
    }
}

.header-style-1 .wpo-cart-search-contact,
.header-style-2 .wpo-cart-search-contact,
.header-style-3 .wpo-cart-search-contact {
    position: absolute;
    right: 27px;
    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,
    .header-style-3 .wpo-cart-search-contact {
        right: 95px;
    }
}

@media (max-width: 450px) {

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

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

.header-style-1 .wpo-cart-search-contact .search-toggle-btn {
    margin-top: 5px;
}

.header-style-1 .wpo-cart-search-contact .fi,
.header-style-2 .wpo-cart-search-contact .fi,
.header-style-3 .wpo-cart-search-contact .fi {
    font-size: 30px;
    font-size: 1.875rem;
    color: #fff;
}

.header-style-1 .wpo-cart-search-contact>div,
.header-style-2 .wpo-cart-search-contact>div,
.header-style-3 .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,
.header-style-3 .wpo-cart-search-contact>div+div {
    margin-left: 20px;
}

.header-style-1 .wpo-cart-search-contact .wpo-header-search-form,
.header-style-2 .wpo-cart-search-contact .wpo-header-search-form,
.header-style-3 .wpo-cart-search-contact .wpo-header-search-form {
    position: absolute;
    width: 250px;
    right: 0;
    top: 70px;
    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,
    .header-style-3 .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,
    .header-style-3 .wpo-cart-search-contact .wpo-header-search-form {
        top: 63px;
        right: 15px;
    }
}

.header-style-1 .wpo-cart-search-contact .wpo-header-search-form-wrapper .fi:before,
.header-style-2 .wpo-cart-search-contact .wpo-header-search-form-wrapper .fi:before,
.header-style-3 .wpo-cart-search-contact .wpo-header-search-form-wrapper .fi:before {
    font-size: 22px;
    font-size: 1.375rem;
}

.header-style-1 .wpo-cart-search-contact form div,
.header-style-2 .wpo-cart-search-contact form div,
.header-style-3 .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,
.header-style-3 .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 input,
.header-style-2 .wpo-cart-search-contact input,
.header-style-3 .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,
    .header-style-3 .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,
.header-style-3 .wpo-cart-search-contact .wpo-mini-cart .fi:before {
    font-size: 18px;
}

.header-style-1 .wpo-cart-search-contact .wpo-mini-cart .cart-count,
.header-style-2 .wpo-cart-search-contact .wpo-mini-cart .cart-count,
.header-style-3 .wpo-cart-search-contact .wpo-mini-cart .cart-count {
    background: #34ccff;
    width: 22px;
    height: 22px;
    line-height: 22px;
    font-size: 10px;
    font-size: 0.625rem;
    color: white;
    position: absolute;
    top: 1px;
    right: -8px;
    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,
.header-style-3 .wpo-cart-search-contact .wpo-mini-cart-content {
    background: #fff;
    width: 300px;
    z-index: 10;
    position: absolute;
    right: 0;
    top: 70px;
    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,
    .header-style-3 .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,
    .header-style-3 .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,
    .header-style-3 .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,
.header-style-3 .wpo-cart-search-contact .wpo-mini-cart-content p {
    font-family: "Lato", sans-serif;
    font-size: 15px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #2b2e3a;
    margin: 0;
    text-transform: uppercase;
}

.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,
.header-style-3 .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,
.header-style-3 .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,
.header-style-3 .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,
.header-style-3 .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-3 .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,
.header-style-3 .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,
.header-style-3 .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,
.header-style-3 .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: #2b2e3a;
}

.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,
.header-style-3 .wpo-cart-search-contact .wpo-mini-cart-content .wpo-mini-cart-item-des a:hover {
    color: #34ccff;
}

.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,
.header-style-3 .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,
.header-style-3 .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,
.header-style-3 .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,
.header-style-3 .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,
.header-style-3 .wpo-cart-search-contact .wpo-mini-cart-content .wpo-mini-cart-action .mini-checkout-price {
    font-family: "Lato", sans-serif;
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 600;
    color: #2b2e3a;
    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-3 .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,
.header-style-3 .wpo-cart-search-contact .header-search-content-toggle {
    opacity: 1;
    visibility: visible;
    right: 0;
}

/*---------------------------------------------
  header style 2
----------------------------------------------*/
@media screen and (min-width: 992px) {
    .header-style-2 #navbar>ul>li a {
        color: #242f6c;
    }

    .header-style-2 .wpo-cart-search-contact .fi {
        color: #242f6c;
    }
}

.header-style-2 {
    position: static;
}

@media screen and (min-width: 992px) {
    .header-style-2 .navigation {
        width: calc(100% - 60px);
        left: 30px;
    }
}

@media screen and (min-width: 1200px) {
    .header-style-2 .navigation {
        width: calc(100% - 80px);
        left: 40px;
    }
}

@media screen and (min-width: 992px) {
    .header-style-2 .navigation {
        position: absolute;
        z-index: 100;
    }
}


/*---------------------------------------------
  header style 3
----------------------------------------------*/
.header-style-3 {
    position: relative;
}

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

    .header-style-3 #navbar>ul>li a,
    .header-style-3 .wpo-cart-search-contact .fi {
        color: #2b2e3a;
    }
}

@media (max-width: 991px) {
    .header-style-3 .navigation {
        background: #fff;
    }

    .header-style-3 .wpo-cart-search-contact .fi {
        color: #2b2e3a;
    }
}


/*--------------------------------------------------------------
#0.5  footer
--------------------------------------------------------------*/
.wpo-site-footer {
    background-color: #1d1d1d;
    position: relative;
    /*** about-widget ***/
    /*** link-widget ***/
    /*** contact-widget ***/
    /*** newsletter-widget ***/
    /*** wpo-lower-footer ***/
}

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

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

.wpo-site-footer .upper-footer {
    padding: 90px 0;
}

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

@media (max-width: 767px) {
    .wpo-site-footer .upper-footer {
        padding: 80px 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: 18px;
    font-size: 1.125rem;
    font-weight: blod;
    color: #fff;
    margin: 0;
    padding-bottom: 0.4em;
    text-transform: capitalize;
    position: relative;
}

.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 .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 {
    width: 50%;
    float: left;
}

.wpo-site-footer .link-widget ul li {
    position: relative;
}

.wpo-site-footer .link-widget ul a {
    color: #b6b6b6;
}

.wpo-site-footer .link-widget ul a:hover,
.wpo-site-footer .link-widget ul li:hover:before {
    color: #34ccff;
}

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

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

.wpo-site-footer .contact-widget ul li {
    position: relative;
}

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

.wpo-site-footer .newsletter-widget form {
    margin-top: 25px;
    position: relative;
}

.wpo-site-footer .newsletter-widget form input {
    background-color: #2e2e2e;
    height: 50px;
    color: #fff;
    padding: 6px 20px;
    border-radius: 0;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.wpo-site-footer .newsletter-widget form .submit {
    position: absolute;
    right: 20px;
    top: 55%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.wpo-site-footer .newsletter-widget form .submit button {
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 20px;
    color: #34ccff;
    margin-top: -2px;
    position: relative;
    right: -5px;
}

.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, 0.05);
    width: calc(100% - 30px);
    height: 1px;
    position: absolute;
    left: 15px;
    top: 0;
}

.wpo-site-footer .wpo-lower-footer .copyright {
    display: inline-block;
    float: left;
    font-size: 14px;
    font-size: 0.875rem;
    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 .social-icons {
    display: inline-block;
    float: right;
    overflow: hidden;
}

@media (max-width: 991px) {
    .wpo-site-footer .wpo-lower-footer .social-icons {
        float: none;
        display: block;
        text-align: center;
    }
}

.wpo-site-footer .wpo-lower-footer .social-icons ul {
    overflow: hidden;
    list-style: none;
}

@media (max-width: 991px) {
    .wpo-site-footer .wpo-lower-footer .social-icons ul {
        display: inline-block;
    }
}

.wpo-site-footer .wpo-lower-footer .social-icons ul li {
    float: left;
}

.wpo-site-footer .wpo-lower-footer .social-icons ul>li+li {
    margin-left: 15px;
}

.wpo-site-footer .wpo-lower-footer .social-icons ul a {
    font-size: 14px;
    font-size: 0.875rem;
    color: #b6b6b6;
}

.wpo-site-footer .wpo-lower-footer .social-icons ul a:hover {
    color: #34ccff;
}

.sticky-header,
.header-style-2 .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;
}

.sticky-on,
.header-style-2 .sticky-on {
    opacity: 1;
    top: 0;
}

.header-style-1 .sticky-header,
.header-style-3 .sticky-header {
    background: #007ad0;
    background: -webkit-linear-gradient(top, #007ad0 98px, transparent 98px);
    background: -moz-linear-gradient(top, #007ad0 98px, transparent 98px);
    background: -o-linear-gradient(top, #007ad0 98px, transparent 98px);
    background: -ms-linear-gradient(top, #007ad0 98px, transparent 98px);
    background: linear-gradient(top, #007ad0 98px, transparent 98px);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.header-style-2 .sticky-header {
    background: #f5f8f9;
    background: -webkit-linear-gradient(top, #f5f8f9 98px, transparent 98px);
    background: -moz-linear-gradient(top, #f5f8f9 98px, transparent 98px);
    background: -o-linear-gradient(top, #f5f8f9 98px, transparent 98px);
    background: -ms-linear-gradient(top, #f5f8f9 98px, transparent 98px);
    background: linear-gradient(top, #f5f8f9 98px, transparent 98px);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 992px) {
    .header-style-2 .sticky-header {
        width: calc(100% - 0px);
        left: 0px;
    }
}

@media screen and (min-width: 1200px) {
    .header-style-2 .sticky-header {
        width: calc(100% - 0px);
        left: 0px;
    }
}

.header-style-3 .sticky-header {
    background: #fff;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}




/*--------------------------------------------------------------
#1.4  blog-section
--------------------------------------------------------------*/


.blog-section .section-title-text {
    text-align: right;
    margin-top: 25px;
}

@media (max-width: 991px) {
    .blog-section .section-title-text {
        text-align: left;
        margin: 25px 0 50px;
    }
}

.blog-section .section-title-text p {
    margin: 0;
}

.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: 1199px) {
    .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 50px;
    }
}

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

.blog-section .entry-date {
    border-bottom: 1px solid #ececec;
    padding: 15px 0;
    margin: 0 0 25px;
}

.blog-section .entry-date h4 {
    display: inline-block;
    font-size: 38px;
    font-size: 2.375rem;
    margin: 0;
}

@media (max-width: 991px) {
    .blog-section .entry-date h4 {
        font-size: 32px;
        font-size: 2rem;
    }
}

.blog-section .entry-date span {
    position: absolute;
    padding-left: 15px;
    margin-left: 15px;
    border-left: 1px solid #ececec;
}

.blog-section .grid h3 {
    font-size: 22px;
    font-size: 1.375rem;
    font-weight: normal;
    line-height: 1.3em;
    margin: 0;
}

@media (max-width: 1199px) {
    .blog-section .grid h3 {
        font-size: 20px;
        font-size: 1.25rem;
    }
}

@media (max-width: 991px) {
    .blog-section .grid h3 {
        font-size: 18px;
        font-size: 1.125rem;
    }
}

.blog-section .grid h3 a {
    color: #2b2e3a;
}

.blog-section .grid h3 a:hover {
    color: #34ccff;
}


/*--------------------------------------------------------------
#4.5  partners-section
--------------------------------------------------------------*/
.partners-section {
    background-color: #f9f9f9;
    padding: 70px 0 58px;
    text-align: center;
}

.partners-section .grid {
    border: 1px solid #e8e8e8;
    padding-bottom: 1px;
    margin-bottom: 1px;
    padding: 25px;
}

.partners-section .grid img {
    width: auto;
    margin: 0 auto;
}

/*--------------------------------------------------------------
  blog page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#6.1  wpo-blog-pg-section
--------------------------------------------------------------*/
.wpo-blog-pg-section {
    /*** format-standard ***/
    /*** format-gallery ***/
    /*** format-quote ***/
    /*** format-video ***/
}

@media screen and (min-width: 1200px) {
    .wpo-blog-pg-section .right-sidebar .wpo-blog-sidebar {
        padding-left: 50px;
    }
}

.wpo-blog-pg-section .wpo-blog-content .post {
    margin-bottom: 100px;
}

@media (max-width: 991px) {
    .wpo-blog-pg-section .wpo-blog-content .post {
        margin-bottom: 80px;
    }
}

@media (max-width: 767px) {
    .wpo-blog-pg-section .wpo-blog-content .post {
        margin-bottom: 70px;
    }
}

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

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

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

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

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

.wpo-blog-pg-section .entry-meta>li i {
    padding-right: 5px;
    position: relative;
}

.wpo-blog-pg-section .entry-meta>li:nth-child(2) i {
    top: 1px;
}

.wpo-blog-pg-section .entry-meta>li:last-child i {
    top: 3px;
}

.wpo-blog-pg-section .entry-meta li a {
    color: #7e8690;
}

.wpo-blog-pg-section .post h3 {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 1.2em;
    font-weight: 600;
    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;
    }
}

.wpo-blog-pg-section .post h3 a {
    color: #2b2e3a;
}

.wpo-blog-pg-section .post h3 a:hover {
    color: #34ccff;
}

.wpo-blog-pg-section .post p {
    font-size: 18px;
    font-size: 1.125rem;
    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 .more {
    font-family: "Lato", sans-serif;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 600;
    color: #2b2e3a;
    display: inline-block;
    line-height: 0.5em;
    padding-left: 50px;
    position: relative;
}

.wpo-blog-pg-section .post .more:before {
    content: "";
    background: #34ccff;
    width: 32px;
    height: 2px;
    position: absolute;
    left: 0;
    top: 5px;
}

@media (max-width: 991px) {
    .wpo-blog-pg-section .post .more {
        font-size: 15px;
        font-size: 0.9375rem;
    }
}

.wpo-blog-pg-section .post .more:hover {
    color: #34ccff;
}

.wpo-blog-pg-section .post .more .fi:before {
    font-size: 14px;
    font-size: 0.875rem;
    position: relative;
    top: 1px;
    left: 2px;
}

.wpo-blog-pg-section .format-standard,
.wpo-blog-pg-section .format-quote {
    background-color: #f8f8f8;
    padding: 15px 35px 52px;
}

@media (max-width: 767px) {

    .wpo-blog-pg-section .format-standard,
    .wpo-blog-pg-section .format-quote {
        padding: 23px 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: #34ccff;
}

.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: 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-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:before {
    content: "";
    background: url("../images/blog/quote.png") center center/auto no-repeat local;
    width: 57px;
    height: 41px;
    position: absolute;
    right: 45px;
    bottom: 35px;
}

.wpo-blog-pg-section .format-video .video-holder {
    position: relative;
    text-align: center;
}

.wpo-blog-pg-section .format-video .video-holder:before {
    content: "";
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 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-blog-pg-section .format-video .video-holder:hover:before {
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

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

.wpo-blog-pg-section .format-video .video-holder .fi:before {
    font-size: 80px;
    font-size: 5rem;
    color: #fff;
}

@media (max-width: 767px) {
    .wpo-blog-pg-section .format-video .video-holder .fi:before {
        font-size: 60px;
        font-size: 3.75rem;
    }
}

@media screen and (min-width: 1200px) {
    .blog-pg-left-sidebar .wpo-blog-content {
        padding-right: 0;
        padding-left: 50px;
    }
}

@media screen and (min-width: 1200px) {
    .blog-pg-fullwidth .wpo-blog-content {
        padding: 0;
    }
}

/*--------------------------------------------------------------
  blog single page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#7.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: 50px;
    }
}

.blog-single-section .entry-meta {
    list-style: none;
    overflow: hidden;
    margin: 35px 0;
}

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

.blog-single-section .entry-meta li {
    float: left;
    font-size: 14px;
    font-size: 0.875rem;
}

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

.blog-single-section .entry-meta>li+li {
    margin-left: 20px;
    padding-left: 20px;
    position: relative;
}

.blog-single-section .entry-meta li i {
    padding-right: 5px;
    position: relative;
}

.blog-single-section .entry-meta li:last-child i {
    top: 3px;
}

.blog-single-section .entry-meta li:nth-child(2) i {
    top: 1px;
}

@media (max-width: 767px) {
    .blog-single-section .entry-meta>li+li:before {
        top: 5px;
    }
}

.blog-single-section .entry-meta li a {
    color: #7e8690;
}

.blog-single-section .post h2 {
    font-size: 36px;
    font-size: 2.25rem;
    font-weight: 600;
    margin: -0.22em 0 0.7em;
    line-height: 1.3em;
}

@media (max-width: 991px) {
    .blog-single-section .post h2 {
        font-size: 30px;
        font-size: 1.875rem;
    }
}

@media (max-width: 767px) {
    .blog-single-section .post h2 {
        font-size: 25px;
        font-size: 1.5625rem;
    }
}

.blog-single-section .post p {
    font-size: 18px;
    font-size: 1.125rem;
    margin-bottom: 1.5em;
}

@media (max-width: 991px) {
    .blog-single-section .post p {
        font-size: 16px;
        font-size: 1rem;
    }
}

.blog-single-section .post h3 {
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3em;
    margin: 1.8em 0 1em;
}

@media (max-width: 991px) {
    .blog-single-section .post h3 {
        font-size: 22px;
        font-size: 1.375rem;
    }
}

@media (max-width: 767px) {
    .blog-single-section .post h3 {
        font-size: 20px;
        font-size: 1.25rem;
    }
}

.blog-single-section .post blockquote {
    background-color: #34ccff;
    color: #fff;
    line-height: 1.6em;
    padding: 120px 45px 65px;
    margin-top: 60px;
    border: 0;
    position: relative;
}

@media (max-width: 767px) {
    .blog-single-section .post blockquote {
        padding: 55px 25px;
    }
}

.blog-single-section .post blockquote:before {
    content: "";
    background: url("../images/blog/quote-2.png") center center/auto no-repeat local;
    width: 62px;
    height: 44px;
    position: absolute;
    left: 45px;
    top: 40px;
}

@media (max-width: 767px) {
    .blog-single-section .post blockquote:before {
        display: none;
    }
}

.blog-single-section .post blockquote .quoter {
    font-size: 14px;
    font-size: 0.875rem;
    display: block;
    margin-top: 15px;
}

.blog-single-section .post blockquote a {
    color: #fff;
    text-decoration: underline;
}

.blog-single-section .tag-share {
    border: 1px solid #f2f2f2;
    padding: 25px 25px 35px;
    margin: 55px 0 0;
    color: #2b2e3a;
}

.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 ul {
    list-style: none;
    position: relative;
    top: 15px;
}

.blog-single-section .tag-share .tag a {
    font-size: 14px;
    font-size: 0.875rem;
    background-color: #f7f7f7;
    color: #627381;
    padding: 8px 15px;
    display: block;
    border-radius: 50px;
}

@media (max-width: 767px) {
    .blog-single-section .tag-share .tag a {
        font-size: 13px;
        font-size: 0.8125rem;
        padding: 5px 10px;
    }
}

.blog-single-section .tag-share .tag a:hover {
    background-color: #34ccff;
    color: #fff;
}

.blog-single-section .tag-share .share {
    margin-top: 40px;
}

.blog-single-section .tag-share .share ul {
    position: relative;
    top: 15px;
}

.blog-single-section .tag-share .share ul>li+li {
    margin-left: 15px;
}

@media (max-width: 767px) {
    .blog-single-section .tag-share .share ul>li+li {
        margin-left: 10px;
    }
}

@media (max-width: 767px) {
    .blog-single-section .tag-share .share ul>li {
        margin: 5px;
    }
}

.blog-single-section .tag-share .share a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid #eae6e6;
    border-radius: 50%;
    display: inline-block;
    font-size: 16px;
    font-size: 1rem;
    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: #34ccff;
    border-color: #34ccff;
    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-single-section .author-box {
    padding: 35px 40px 25px;
    margin: 70px 0;
    border: 1px solid #f2f2f2;
}

@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-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 {
    font-size: 17px;
    font-size: 1.0625rem;
    color: #949494;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .blog-single-section .author-box .author-content p {
        font-size: 15px;
        font-size: 0.9375rem;
    }
}

.blog-single-section .author-box .author-name {
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
    color: #2b2e3a;
}

.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: #2b2e3a;
}

.blog-single-section .author-box .social-link a:hover {
    color: #34ccff;
}

.blog-single-section .more-posts {
    overflow: hidden;
    border: 1px solid #f2f2f2;
}

.blog-single-section .more-posts>div {
    width: 50%;
    float: left;
}

.blog-single-section .more-posts>div>a {
    display: inline-block;
}

.blog-single-section .more-posts .previous-post,
.blog-single-section .more-posts .next-post {
    font-size: 18px;
    font-size: 1.125rem;
    color: #939ba2;
    padding: 30px;
}

@media (max-width: 767px) {

    .blog-single-section .more-posts .previous-post,
    .blog-single-section .more-posts .next-post {
        padding: 20px;
        font-size: 16px;
        font-size: 1rem;
    }
}

@media (max-width: 450px) {

    .blog-single-section .more-posts .previous-post,
    .blog-single-section .more-posts .next-post {
        font-size: 14px;
        font-size: 0.875rem;
    }
}

.blog-single-section .more-posts .previous-post i,
.blog-single-section .more-posts .next-post i {
    position: relative;
    top: 2px;
}

@media (max-width: 450px) {

    .blog-single-section .more-posts .previous-post i,
    .blog-single-section .more-posts .next-post i {
        display: none;
    }
}

.blog-single-section .more-posts .next-post {
    text-align: right;
    border-left: 1px solid #e8e8e8;
}

.blog-single-section .more-posts .previous-post>a>span,
.blog-single-section .more-posts .next-post>a>span {
    display: block;
}

.blog-single-section .more-posts .post-control-link {
    color: #939ba2;
    font-weight: 600;
}

.blog-single-section .more-posts .next-post i {
    left: 2px;
}

.blog-single-section .more-posts a:hover .post-control-link {
    color: #34ccff;
}

.blog-single-section .comments-area {
    margin-top: 70px;
}

.blog-single-section .comments-area .comments {
    -webkit-box-shadow: 0px 0px 21.17px 7.83px rgba(0, 0, 0, 0.04);
    box-shadow: 0px 0px 21.17px 7.83px rgba(0, 0, 0, 0.04);
    border-bottom: 0;
}

.blog-single-section .comments-area li>div {
    border-bottom: 1px solid #f1f1f1;
    padding: 35px;
}

@media (max-width: 991px) {
    .blog-single-section .comments-area li>div {
        padding: 35px 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-type: 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: 600;
    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-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;
}

.blog-single-section .comments-area .comments-meta h4 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 18px;
    font-size: 1.125rem;
    color: #6d6d6d;
    font-weight: bold;
    margin: 0 0 1em;
}

.blog-single-section .comments-area .comments-meta h4 span {
    font-family: "Source Sans Pro", sans-serif;
    font-weight: normal;
    font-style: italic;
    color: #949494;
    text-transform: none;
    display: inline-block;
    padding-left: 5px;
    font-size: 16px;
    font-size: 1rem;
}

@media (max-width: 767px) {
    .blog-single-section .comments-area .comments-meta h4 span {
        padding-left: 0;
    }
}

.blog-single-section .comments-area .comment-reply-link {
    background: #34ccff;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    display: inline-block;
    padding: 4px 14px;
    display: inline-block;
    font-family: "Now";
}

.blog-single-section .comments-area .comment-reply-link:hover {
    background-color: #34ccff;
}

.blog-single-section .comment-respond {
    margin-top: 70px;
}

.blog-single-section .comment-respond .comment-reply-title {
    font-size: 22px;
    font-size: 1.375rem;
    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: #34ccff;
}

@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-color: #34ccff;
    color: #fff;
    font-weight: bold;
    margin-bottom: 0;
    border: 0;
    outline: 0;
    text-transform: uppercase;
    font-family: "Now";
}

.blog-single-section .comment-respond .form-submit input:hover {
    background-color: #313131;
}

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


/*--------------------------------------------------------------
  #shop page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#10.1 shop-section
--------------------------------------------------------------*/
.shop-section .shop-grids {
    margin: 0 -10px;
}

.shop-section .shop-grids .grid {
    width: calc(33.33% - 20px);
    float: left;
    margin: 0 10px 25px;
}

@media (max-width: 767px) {
    .shop-section .shop-grids .grid {
        width: calc(50% - 20px);
    }
}

@media (max-width: 550px) {
    .shop-section .shop-grids .grid {
        width: calc(100% - 20px);
        float: none;
    }
}

.shop-section .img-add-cart {
    position: relative;
    overflow: hidden;
}

.shop-section .img-add-cart .add-cart {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -62px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

.shop-section .img-add-cart a {
    background: #34ccff;
    text-align: center;
    padding: 20px;
    display: block;
    color: #fff;
    font-weight: 600;
}

.shop-section .img-add-cart a i {
    display: inline-block;
    padding-left: 5px;
}

.shop-section .shop-grids .grid:hover .add-cart {
    bottom: 0;
}

.shop-section .grid .details {
    text-align: center;
    padding: 25px 15px;
    -webkit-box-shadow: 0px 8px 48.38px 10.62px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 8px 48.38px 10.62px rgba(0, 0, 0, 0.06);
}

.shop-section .grid .details h4 {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.4em;
    margin: 0 0 0.3em;
    text-transform: capitalize;
}

.shop-section .grid .details h4 a {
    color: #2b2e3a;
}

.shop-section .grid .details h4 a:hover {
    color: #34ccff;
}

.shop-section .grid .details .price {
    font-family: "Lato", sans-serif;
    font-size: 16px;
    font-size: 1rem;
    color: #34ccff;
}

@media (max-width: 991px) {
    .shop-section .grid .details .price {
        font-size: 18px;
        font-size: 1.125rem;
    }
}

.shop-section .grid .details del {
    font-weight: 400;
    color: #aaa;
    font-size: 14px;
    display: inline-block;
    padding-left: 8px;
}

/*--------------------------------------------------------------
  #shop single page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#11.1 shop-single-section
--------------------------------------------------------------*/
.shop-single-section {
    /*** product slider ***/
    /*** product info ***/
}

.shop-single-section .shop-single-slider .slider-for {
    text-align: center;
}

.shop-single-section .shop-single-slider .slider-for img {
    display: inline-block;
}

.shop-single-section .shop-single-slider .slider-nav {
    padding: 0 25px;
    margin-top: 35px;
}

.shop-single-section .shop-single-slider .slider-nav>i {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 100;
}

.shop-single-section .shop-single-slider .slider-nav>i:hover {
    cursor: pointer;
}

.shop-single-section .shop-single-slider .slider-nav .nav-btn-rt {
    left: auto;
    right: 0;
}

.shop-single-section .shop-single-slider .slider-nav .slick-slide {
    text-align: center;
}

.shop-single-section .shop-single-slider .slider-nav .slick-slide img {
    display: inline-block;
}

.shop-single-section .product-details {
    padding: 30px 30px 93px;
    /*** product option ***/
}

@media (max-width: 1199px) {
    .shop-single-section .product-details {
        padding: 40px 30px 85px;
    }
}

@media (max-width: 991px) {
    .shop-single-section .product-details {
        margin-top: 45px;
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .shop-single-section .product-details {
        padding: 0;
    }
}

.shop-single-section .product-details h2 {
    font-size: 28px;
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.4em;
    margin: 0 0 0.33em;
}

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

.shop-single-section .product-details .price {
    font-size: 36px;
    font-size: 2.25rem;
    color: #34ccff;
    margin: 7px 0 14px;
}

@media (max-width: 991px) {
    .shop-single-section .product-details .price {
        font-size: 30px;
        font-size: 1.875rem;
    }
}

@media (max-width: 767px) {
    .shop-single-section .product-details .price {
        font-size: 25px;
        font-size: 1.5625rem;
    }
}

.shop-single-section .product-details .price .old {
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: normal;
    color: #b5b9bf;
    text-decoration: line-through;
    display: inline-block;
    margin-left: 5px;
}

@media (max-width: 991px) {
    .shop-single-section .product-details .price .old {
        font-size: 20px;
        font-size: 1.25rem;
    }
}

@media (max-width: 767px) {
    .shop-single-section .product-details .price .old {
        font-size: 18px;
        font-size: 1.125rem;
    }
}

.shop-single-section .product-details p {
    margin-bottom: 1.3em;
}

.shop-single-section .product-details p:last-child {
    margin: 0;
}

.shop-single-section .product-details .product-option {
    margin-top: 45px;
}

.shop-single-section .product-details .product-option .product-row {
    overflow: hidden;
}

.shop-single-section .product-details .product-option .product-row>div {
    height: 35px;
    display: inline-block;
    float: left;
}

.shop-single-section .product-details .product-option .product-row>div+div {
    margin-left: 15px;
}

.shop-single-section .product-details .product-option .product-row>div:first-child {
    width: 85px;
}

.shop-single-section .product-details .product-option .product-row>div:last-child .theme-btn:hover,
.shop-single-section .product-details .product-option .product-row>div:last-child .theme-btn-s2:hover {
    background: #34ccff;
    border-color: #34ccff;
    color: #fff;
}

.shop-single-section .product-details .product-option .theme-btn,
.shop-single-section .product-details .product-option .theme-btn-s2 {
    background-color: transparent;
    color: #333;
    font-size: 14px;
    font-size: 0.875rem;
    padding: 0 20px;
    height: 35px;
    line-height: 32px;
    outline: 0;
}

.shop-single-section .product-details .product-option .theme-btn:hover,
.shop-single-section .product-details .product-option .theme-btn-s2:hover {
    background-color: #34ccff;
    color: #fff;
}

@media (max-width: 767px) {

    .shop-single-section .product-details .product-option .theme-btn,
    .shop-single-section .product-details .product-option .theme-btn-s2 {
        font-size: 14px;
        font-size: 0.875rem;
    }
}

.shop-single-section .product-details .product-option .theme-btn:before,
.shop-single-section .product-details .product-option .theme-btn-s2:before {
    display: none;
}

.shop-single-section .product-details .product-option .product-row>div:last-child .theme-btn,
.shop-single-section .product-details .product-option .product-row>div:last-child .theme-btn-s2 {
    background-color: #fff;
    font-size: 18px;
    font-size: 1.125rem;
    color: #7e8690;
    border: 1px solid #e6e6e6;
}

.shop-single-section .product-details #product-count {
    border-radius: 0;
    border: 1px solid #e6e6e6;
}

.shop-single-section .product-details #product-count:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
}

.shop-single-section .product-details .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up,
.shop-single-section .product-details .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
    border-radius: 0;
    border-color: #e6e6e6;
}

.shop-single-section .product-details .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up:hover,
.shop-single-section .product-details .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down:hover {
    background-color: #34ccff;
    color: #fff;
}

.shop-single-section .product-info {
    margin-top: 75px;
    /*** tabs ***/
    /*** client rv ***/
    /*** review form ***/
}

.shop-single-section .product-info h4 {
    font-size: 15px;
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.7em;
}

.shop-single-section .product-info p {
    margin-bottom: 1.3em;
}

.shop-single-section .product-info .tab-pane p:last-child {
    margin-bottom: 0;
}

.shop-single-section .product-info .nav-tabs {
    border: 0;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .shop-single-section .product-info .nav-tabs {
        margin-bottom: 20px;
    }
}

.shop-single-section .product-info .nav-tabs li {
    border: 1px solid #eaeaea;
    margin-right: 1px;
}

.shop-single-section .product-info .nav-tabs li.active a {
    border: 0;
    outline: 0;
}

.shop-single-section .product-info .nav-tabs a {
    font-size: 15px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #7e8690;
    border: 0;
    border-radius: 0;
    margin: 0;
    display: block;
    padding: 10px 15px 11px;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .shop-single-section .product-info .nav-tabs a {
        font-size: 14px;
        font-size: 0.875rem;
        font-weight: normal;
        padding: 9px 10px;
    }
}

.shop-single-section .product-info .nav-tabs a:hover,
.shop-single-section .product-info .nav-tabs .active a {
    background: #34ccff;
    color: #fff;
}

.shop-single-section .product-info .nav-tabs .active,
.shop-single-section .product-info .nav-tabs li:hover {
    border-color: #34ccff;
}

.shop-single-section .product-info .client-rv {
    overflow: hidden;
    margin-bottom: 30px;
}

.shop-single-section .product-info .client-rv:last-child {
    margin-bottom: 0;
}

.shop-single-section .product-info .client-rv .client-pic {
    width: 60px;
    float: left;
}

@media (max-width: 767px) {
    .shop-single-section .product-info .client-rv .client-pic {
        width: 100%;
        float: none;
        margin-bottom: 10px;
    }
}

.shop-single-section .product-info .client-rv .details {
    width: calc(100% - 80px);
    float: right;
}

@media (max-width: 767px) {
    .shop-single-section .product-info .client-rv .details {
        width: 100%;
        float: none;
    }
}

.shop-single-section .product-info .client-rv .name-rating-time {
    border-bottom: 1px solid #e6e6e6;
}

@media (max-width: 767px) {
    .shop-single-section .product-info .client-rv .name-rating-time {
        padding-bottom: 3px;
    }
}

.shop-single-section .product-info .client-rv .name-rating-time>div,
.shop-single-section .product-info .client-rv .name-rating>div {
    display: inline-block;
    font-size: 14px;
    font-size: 0.875rem;
}

@media (max-width: 767px) {

    .shop-single-section .product-info .client-rv .name-rating-time>div,
    .shop-single-section .product-info .client-rv .name-rating>div {
        font-size: 12px;
        font-size: 0.75rem;
        display: block;
    }
}

.shop-single-section .product-info .client-rv .rating {
    font-size: 12px;
    color: #34ccff;
    padding-left: 12px;
}

@media (max-width: 767px) {
    .shop-single-section .product-info .client-rv .rating {
        padding-left: 0;
        margin: 4px 0 7px;
    }
}

.shop-single-section .product-info .client-rv .name-rating-time .time {
    float: right;
    color: #b3b3b3;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .shop-single-section .product-info .client-rv .name-rating-time .time {
        float: none;
    }
}

.shop-single-section .product-info .client-rv .review-body {
    padding-top: 12px;
}

@media screen and (min-width: 1200px) {
    .shop-single-section .product-info .review-form-wrapper {
        padding-left: 45px;
    }
}

@media (max-width: 991px) {
    .shop-single-section .product-info .review-form {
        margin-top: 45px;
    }
}

.shop-single-section .product-info .review-form h4 {
    margin-bottom: 1.73em;
}

.shop-single-section .product-info .review-form form input,
.shop-single-section .product-info .review-form form textarea {
    background: #fbfbfb;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 40px;
    border: 1px solid #efefef;
}

.shop-single-section .product-info .review-form form input:focus,
.shop-single-section .product-info .review-form form textarea:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
}

.shop-single-section .product-info .review-form form textarea {
    height: 130px;
}

.shop-single-section .product-info .review-form form>div {
    margin-bottom: 27px;
}

.shop-single-section .product-info .review-form form>div:last-child {
    margin-bottom: 0;
}

.shop-single-section .product-info .review-form form .rating-wrapper>div {
    display: inline-block;
}

@media (max-width: 767px) {
    .shop-single-section .product-info .review-form form .rating-wrapper>div {
        display: block;
        float: none !important;
    }
}

.shop-single-section .product-info .review-form form .rating-wrapper>div:last-child {
    float: right;
}

@media (max-width: 767px) {
    .shop-single-section .product-info .review-form form .rating-wrapper>div:last-child {
        margin-top: 20px;
    }
}

.shop-single-section .product-info .review-form form .rating a {
    font-size: 14px;
    color: #cccccc;
    display: inline-block;
    margin-right: 10px;
}

@media (max-width: 767px) {
    .shop-single-section .product-info .review-form form .rating a {
        font-size: 12px;
        margin-right: 5px;
    }
}

.shop-single-section .product-info .review-form form .rating a:last-child {
    margin: 0;
}

.shop-single-section .product-info .review-form form .rating a:hover {
    color: #34ccff;
}

.shop-single-section .product-info .review-form form .theme-btn-s4 {
    background-color: transparent;
    color: #908f8f;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.shop-single-section .product-info .review-form form .theme-btn-s4:hover {
    background-color: #34ccff;
    color: #fff;
}

@media screen and (min-width: 767px) {
    .shop-single-section .product-info .review-form form .theme-btn-s4 {
        font-size: 15px;
        font-size: 0.9375rem;
        padding: 0 20px;
    }
}

.shop-single-section .slider-nav .slick-slide:focus {
    outline: none;
}

/*--------------------------------------------------------------
404 page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#12.1  error-404-section
--------------------------------------------------------------*/
.error-404-section .error {
    width: 50%;
    float: left;
}

@media (max-width: 991px) {
    .error-404-section .error {
        width: 100%;
        float: none;
        text-align: center;
    }
}

.error-404-section .error h2 {
    font-size: 200px;
    font-size: 12.5rem;
    margin: 0;
}

@media (max-width: 991px) {
    .error-404-section .error h2 {
        font-size: 150px;
        font-size: 9.375rem;
    }
}

@media (max-width: 767px) {
    .error-404-section .error h2 {
        font-size: 100px;
        font-size: 6.25rem;
    }
}

.error-404-section .error-message {
    width: 50%;
    float: left;
    margin-top: 40px;
}

@media (max-width: 991px) {
    .error-404-section .error-message {
        width: 100%;
        float: none;
        text-align: center;
        margin-top: 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;
}
