/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 WordPress reset
    1.1 Accessibility
    1.2 Alignments
    1.3 Typography
    1.4 Formatting
    1.5 Lists
    1.6 Tables
    1.7 Widgets
    1.8 WordPress Gallery post format
    1.9 WordPress calendar widget
2.0 General
3.0 Spacing
4.0 Background
5.0 Compnents
    5.1 Button
    5.2 Section title
    5.3 Partner Slider
    5.4 Members
    5.5 Counter
    5.6 Reservation form
    5.7 Gallery
    5.8 Pricing Table
6.0 Layout
    6.1 Header
    6.2 Home
    6.3 Page
    6.4 Navigation
    6.5 Sidebar
    6.6 Footer
    6.7 Blog
    6.8 Elementor
    6.9 Single
    6.10 Woocommerce
7.0 Responsive

--------------------------------------------------------------*/


/*--------------------------------------------------------------
1.1 Accessibility
--------------------------------------------------------------*/


/* Text meant only for screen readers. */

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
    /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */
}


/*--------------------------------------------------------------
1.2 Alignments
--------------------------------------------------------------*/

.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em;
}

.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}


/*--------------------------------------------------------------
1.3 Typography
--------------------------------------------------------------*/

h1 {
    font-size: 32px;
    font-size: 2rem;
    /* 2x body copy size = 32px */
    line-height: 1.25;
    /* 45px / 36px */
}

@media (min-width: 43.75rem) {
    h1 {
        font-size: 40px;
        font-size: 2.5rem;
        /* 2.5x body copy size = 40px */
        line-height: 1.125;
    }
}

@media (min-width: 56.25rem) {
    h1 {
        font-size: 48px;
        font-size: 3rem;
        /* 3x body copy size = 48px */
        line-height: 1.05;
        /* keep to a multiple of the 20px line height and something more appropriate for display headings */
    }
}

h2 {
    font-size: 26px;
    font-size: 1.625rem;
    /* 1.625x body copy size = 26px */
    line-height: 1.15384615;
    /* 30px / 26px */
}

@media (min-width: 43.75rem) {
    h2 {
        font-size: 32px;
        font-size: 2rem;
        /* 2x body copy size = 32px */
        line-height: 1.25;
    }
}

@media (min-width: 56.25rem) {
    h2 {
        font-size: 36px;
        font-size: 2.25rem;
        /* 2.25x body copy size = 36px */
        line-height: 1.25;
    }
}

h3 {
    font-size: 22px;
    font-size: 1.375rem;
    /* 1.375x body copy size = 22px */
    line-height: 1.13636364;
    /* 25px / 22px */
}

@media (min-width: 43.75rem) {
    h3 {
        font-size: 24px;
        font-size: 1.5rem;
        /* 1.5x body copy size = 24px */
        line-height: 1.25;
    }
}

@media (min-width: 56.25rem) {
    h3 {
        font-size: 28px;
        font-size: 1.75rem;
        /* 1.75x body copy size = 28px */
        line-height: 1.25;
    }
}

h4 {
    font-size: 18px;
    font-size: 1.125rem;
    /* 1.125x body copy size = 18px */
    line-height: 1.11111111;
}

@media (min-width: 43.75rem) {
    h4 {
        line-height: 1.22222222;
        /* (22px / 18px */
    }
}

h5 {
    font-size: 16px;
    font-size: 1rem;
    /* 1x body copy size = 16px */
    line-height: 1.11111111;
}

@media (min-width: 43.75rem) {
    h5 {
        line-height: 1.22222222;
        /* (19px / 16px */
    }
}

h6 {
    font-size: 14px;
    font-size: 0.875rem;
    /* 1x body copy size = 16px */
    line-height: 1.11111111;
}

@media (min-width: 43.75rem) {
    h6 {
        line-height: 1.22222222;
        /* (19px / 16px */
    }
}


/*--------------------------------------------------------------
1.4 Formatting
--------------------------------------------------------------*/

hr {
    background-color: #bbb;
    border: 0;
    height: 1px;
    margin-bottom: 1.5em;
}

pre {
    background: #FAFAFA;
    padding: 1rem;
    overflow: scroll;
    margin-bottom: 1rem;
}


/*--------------------------------------------------------------
1.5 Lists
--------------------------------------------------------------*/

ul,
ol {
    margin: 0 0 1.5em;
    padding: 0;
    margin-left: 15px;
}

ul li,
ol li {
    margin-bottom: 0.5em;
}

li>ul,
li>ol {
    margin-top: 0.5em;
    margin-bottom: 0;
    margin-left: 1.5em;
}

li>ul li:last-child,
li>ol li:last-child {
    margin-bottom: 0;
}

dt {
    font-weight: 700;
}

dd {
    margin: 0 1em 1em;
}


/*--------------------------------------------------------------
1.6 Tables
--------------------------------------------------------------*/

table {
    border-collapse: collapse;
    margin: 0 0 1.5em;
    width: 100%;
}

thead th {
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5em;
}

th {
    padding: 0.4em;
    text-align: left;
}

tr {
    border-bottom: 1px solid #eee;
}

td {
    padding: 0.4em;
}

th:first-child,
td:first-child {
    padding-left: 0;
}

th:last-child,
td:last-child {
    padding-right: 0;
}


/*-------------------- 
1.7 widget 
----------------------------------*/

.wp-caption {
    max-width: 100%;
}

.gallery-caption,
.wp-caption-text {
    margin-top: 10px;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

.bypostauthor .comment-meta {
    font-weight: bold;
}

.display-post img,
.display-page img,
.wp-caption img,
.box-widget-item img,
.footer-widget img {
    max-width: 100%;
    height: auto;
}

.box-widget-item select,
.footer-widget select {
    max-width: 100%;
    height: 40px;
    width: 100%;
    border: 1px solid #eee;
    background: #fff;
}


/* 1.8 WordPress Gallery post format*/

.gallery[class*=gallery-columns-] {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.gallery[class*=gallery-columns-] .gallery-item {
    margin-bottom: 20px;
}

.gallery.gallery-columns-1 .gallery-item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
}

.gallery.gallery-columns-2 .gallery-item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 49%;
    -ms-flex: 0 49%;
    flex: 0 49%;
}

.gallery.gallery-columns-3 .gallery-item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 32.33%;
    -ms-flex: 0 32.33%;
    flex: 0 32.33%;
}

.gallery.gallery-columns-4 .gallery-item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 24%;
    -ms-flex: 0 24%;
    flex: 0 24%;
}

.gallery.gallery-columns-5 .gallery-item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 19%;
    -ms-flex: 0 19%;
    flex: 0 19%;
}

.gallery.gallery-columns-6 .gallery-item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 15.66%;
    -ms-flex: 0 15.66%;
    flex: 0 15.66%;
}

.gallery.gallery-columns-7 .gallery-item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 13.28%;
    -ms-flex: 0 13.28%;
    flex: 0 13.28%;
}

.gallery.gallery-columns-8 .gallery-item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 11.5%;
    -ms-flex: 0 11.5%;
    flex: 0 11.5%;
}

.gallery.gallery-columns-9 .gallery-item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 10.11%;
    -ms-flex: 0 10.11%;
    flex: 0 10.11%;
}

code {
    display: inline-block;
}

thead {
    font-weight: bold;
}

caption {
    text-align: center;
    caption-side: unset;
    color: #212529;
}


/* 1.9 WordPress calendar widget*/

#wp-calendar #today,
#wp-calendar tfoot {
    font-weight: bold;
}

#wp-calendar #today #next,
#wp-calendar tfoot #next {
    text-align: right;
}

#wp-calendar tbody td a {
    font-weight: bold;
}

article {
    margin-bottom: 50px;
}

.pingback .comment-reply {
    display: none;
}

iframe {
    max-width: 100%;
}

.page-template-default .navbar,
.post-template-default.single-post .navbar {
    -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.05);
}

input[type="submit"]:hover {
    cursor: pointer;
}

.logged-in .entry-title {
    display: inline-block;
}

html,
body {
    overflow-x: hidden;
}


/*  ===============================================================================================================*/

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-decoration: none;
    outline: none !important;
}

body {
    font-family: 'Fira Sans', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    /* font-weight: 400;  */
    /* color: #737373; */
}

.fa {
    font-family: 'FontAwesome';
    font-style: normal;
}

a,
a:hover {
    text-decoration: none;
}

a:focus {
    outline: none;
    text-decoration: none;
}

img {
    width: auto;
    max-width: 100%;
    height: auto;
}

h1 {
    font-size: 44px;
    line-height: 49px;
}

h2 {
    font-size: 34px;
    line-height: 38px;
}

h3 {
    font-size: 30px;
    line-height: 35px;
}

h4 {
    font-size: 26px;
    line-height: 29px;
}

h5 {
    font-size: 21px;
    line-height: 26px;
}

h6 {
    font-size: 17px;
    line-height: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    /* color: #212529; */
    font-weight: 600;
    margin-bottom: 0.5em;
}

p {
    line-height: 23px;
    color: #737373;
    font-family: 'Poppins', sans-serif;
}

p.p-big {
    font-size: 18px;
    line-height: 27px;
    font-weight: 300;
}

.title-p {
    margin-bottom: 60px;
    position: relative;
}

.flex-center {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.image-back-left {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-background-size: cover;
    background-size: cover;
}

.image-back-right {
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    -webkit-background-size: cover;
    background-size: cover;
}

.font-Poppins {
    font-family: 'Poppins', sans-serif;
}


/*** position ***/

.p-relative {
    position: relative;
}

.p-absolute {
    position: absolute;
}

.left-0 {
    left: 0;
}


/*** padding ***/

.big-padding {
    padding: 300px 0 220px 0;
}

.sec-padding {
    padding: 80px 0;
}

.md-padding {
    padding: 45px 0;
}

.sm-padding {
    padding: 25px 0;
}

.box-padding {
    padding: 80px 40px;
}

.no-padding {
    padding: 0;
}

.p-5px {
    padding: 5px;
}

.p-15px {
    padding: 15px;
}

.p-20px {
    padding: 20px;
}

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

.p-40px {
    padding: 40px;
}

.p-50px {
    padding: 50px;
}

.pl-3px {
    padding-left: 3px;
}

.pl-5px {
    padding-left: 5px;
}

.pl-10px {
    padding-left: 10px;
}

.pl-15px {
    padding-left: 15px;
}

.pl-20px {
    padding-left: 20px;
}

.pl-25px {
    padding-left: 25px;
}

.pl-30px {
    padding-left: 30px;
}

.pl-50px {
    padding-left: 50px;
}

.pl-60px {
    padding-left: 60px;
}

.pl-70px {
    padding-left: 70px;
}

.pl-80px {
    padding-left: 80px;
}

.pl-90px {
    padding-left: 90px;
}

.pl-95px {
    padding-left: 95px;
}

.pr-10px {
    padding-right: 10px;
}

.pr-15px {
    padding-right: 15px;
}

.pr-25px {
    padding-right: 25px;
}

.pr-30px {
    padding-right: 30px;
}

.pr-50px {
    padding-right: 50px;
}

.pt-5px {
    padding-top: 5px;
}

.pt-7px {
    padding-top: 7px;
}

.pt-10px {
    padding-top: 10px;
}

.pt-15px {
    padding-top: 15px;
}

.pt-20px {
    padding-top: 20px;
}

.pt-30px {
    padding-top: 30px;
}

.pt-50px {
    padding-top: 50px;
}

.pt-100px {
    padding-top: 100px;
}

.pb-5px {
    padding-bottom: 5px;
}

.pb-7px {
    padding-bottom: 7px;
}

.pb-10px {
    padding-bottom: 10px;
}

.pb-30px {
    padding-bottom: 30px;
}

.pb-40px {
    padding-bottom: 40px;
}

.pb-50px {
    padding-bottom: 50px;
}

.pb-150px {
    padding-bottom: 150px;
}


/***** margin *****/


/* margin-top */

.mt-0px {
    margin-top: 0px;
}

.mt-5px {
    margin-top: 5px;
}

.mt-10px {
    margin-top: 10px;
}

.mt-15px {
    margin-top: 15px;
}

.mt-20px {
    margin-top: 20px;
}

.mt-25px {
    margin-top: 25px;
}

.mt-30px {
    margin-top: 30px;
}

.mt-40px {
    margin-top: 40px;
}

.mt-50px {
    margin-top: 50px;
}

.mt-60px {
    margin-top: 60px;
}


/* margin-bottom */

.mb-0px {
    margin-bottom: 0px;
}

.mb-2px {
    margin-bottom: 2px;
}

.mb-5px {
    margin-bottom: 5px;
}

.mb-7px {
    margin-bottom: 7px;
}

.mb-10px {
    margin-bottom: 10px;
}

.mb-12px {
    margin-bottom: 12px;
}

.mb-15px {
    margin-bottom: 15px;
}

.mb-20px {
    margin-bottom: 20px;
}

.mb-25px {
    margin-bottom: 25px;
}

.mb-30px {
    margin-bottom: 30px;
}

.mb-40px {
    margin-bottom: 40px;
}

.mb-50px {
    margin-bottom: 50px;
}


/* margin-right */

.mr-2px {
    margin-right: 2px;
}

.mr-5px {
    margin-right: 5px;
}

.mr-10px {
    margin-right: 10px;
}

.mr-15px {
    margin-right: 15px;
}

.mr-20px {
    margin-right: 20px;
}

.mr-25px {
    margin-right: 25px;
}


/* margin-left */

.ml-2px {
    margin-left: 2px;
}

.ml-5px {
    margin-left: 5px;
}

.ml-10px {
    margin-left: 10px;
}

.ml-25px {
    margin-left: 25px;
}


/***** font-weight *****/

.fw-100 {
    font-weight: 100;
}

.fw-200 {
    font-weight: 200;
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}


/***** font-size *****/

.fs-13 {
    font-size: 13px;
}

.fs-14 {
    font-size: 14px;
}

.fs-15 {
    font-size: 15px;
}

.fs-16 {
    font-size: 16px;
}

.fs-17 {
    font-size: 17px;
}

.fs-18 {
    font-size: 18px;
}

.fs-20 {
    font-size: 20px;
}

.fs-22 {
    font-size: 22px;
}

.fs-24 {
    font-size: 24px;
}

.fs-25 {
    font-size: 25px;
}

.fs-30 {
    font-size: 30px;
}

.fs-35 {
    font-size: 35px;
}

.fs-40 {
    font-size: 40px;
}

.fs-45 {
    font-size: 45px;
}

.fs-50 {
    font-size: 50px;
}

.fs-55 {
    font-size: 55px;
}

.fs-100 {
    font-size: 100px;
}


/***** transition *****/

.transition-2 {
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.transition-3 {
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.transition-4 {
    -webkit-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.transition-5 {
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}


/***** border-radius *****/

.radius-50 {
    border-radius: 50%;
}

.radius-0px {
    border-radius: 0px !important;
}

.radius-5px {
    border-radius: 5px;
}

.radius-10px {
    border-radius: 10px;
}

.radius-25px {
    border-radius: 25px;
}

.radius-50px {
    border-radius: 50px;
}

.o-hidden {
    overflow: hidden;
}

.z-index-0 {
    z-index: 0;
}

.z-index-1 {
    z-index: 1;
}

.z-index-2 {
    z-index: 2;
}

.z-index-3 {
    z-index: 3;
}

.div-10 {
    height: 10px;
}

.no-border {
    border: none;
}

.big-p {
    font-size: 20px;
    line-height: 30px;
}

.translateY-5px {
    -webkit-transform: translateY(5px);
    -ms-transform: translateY(5px);
    transform: translateY(5px);
}


/***** buttons *****/

.main-btn {
    display: inline-block;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    position: relative;
    font-size: 14px;
    word-spacing: 2px;
    font-weight: 500;
    -webkit-transform: perspective(1px) translateX(0px);
    transform: perspective(1px) translateX(0px);
    -webkit-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
    overflow: hidden;
}

.main-btn:before {
    content: "";
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    z-index: -1;
}

.main-btn:hover:before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}


/* btn-1 */

.btn-1 {
    padding: 12px 26px;
    color: #fff;
}

.btn-1:hover:before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}


/* btn-2 */

.btn-2 {
    padding: 12px 26px;
    background-color: transparent !important;
}

.btn-2:hover {
    color: #fff !important;
}

.btn-2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: -2;
    border-radius: 5px;
}


/* btn-3 */

.btn-3 {
    padding: 11px 25px;
    color: #fff;
}

@-webkit-keyframes bouncedelay {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes bouncedelay {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}


/***** shapes *****/

.shape-1 {
    right: -178px;
    top: -78px;
    height: 91%;
    width: 65%;
    border-radius: 0 0 0 146px;
    -webkit-transform: rotate(22deg);
    -ms-transform: rotate(22deg);
    transform: rotate(22deg);
    z-index: -1;
}

.shape-2 {
    left: -178px;
    top: -78px;
    height: 50%;
    width: 40%;
    border-radius: 0 100px 100px 0;
    -webkit-transform: rotate(22deg);
    -ms-transform: rotate(22deg);
    transform: rotate(22deg);
    z-index: -1;
}

.shape-3 {
    right: -178px;
    top: -78px;
    height: 65%;
    width: 50%;
    border-radius: 0 0 0 146px;
    -webkit-transform: rotate(22deg);
    -ms-transform: rotate(22deg);
    transform: rotate(22deg);
    z-index: -1;
}

.shape-4 {
    left: 20%;
    bottom: 50px;
    height: 250px;
    width: 250px;
    border-radius: 50%;
    z-index: -1;
}

.shape-5 {
    right: 20%;
    bottom: 50px;
    height: 180px;
    width: 180px;
    border-radius: 50%;
    z-index: -1;
}

.shape-6 {
    left: 50%;
    top: -80px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 180px;
    width: 180px;
    border-radius: 50%;
    z-index: -1;
}


/***** triangle *****/

.triangle-top {
    position: relative;
    overflow: hidden;
    padding: 130px 0;
}

.triangle-top:after {
    content: "";
    position: absolute;
    top: 0px;
    right: 0;
    height: 0px;
    width: 0px;
    background-color: #fff;
    border-left: 100vw solid transparent;
    border-bottom: 50px solid #edf5ff;
}

.triangle-bottom {
    position: relative;
    overflow: hidden;
}

.triangle-bottom:before {
    content: "";
    position: absolute;
    bottom: 0px;
    right: 0;
    height: 0px;
    width: 0px;
    background-color: #fff;
    border-left: 100vw solid #edf5ff;
    border-bottom: 50px solid transparent;
}


/***** Icon *****/

.icon-w-h-60 {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
}

.icon-w-h-80 {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
}


/* Opacity */

.opa-0_5 {
    opacity: 0.5;
}


/* pagination pxaas ***********************************************************************************************/

.pagination .nav-links .page-numbers {
    margin-right: 5px;
    margin-bottom: 10px;
    text-align: center;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.pagination .nav-links .page-numbers:hover,
.pagination .nav-links .page-numbers.current {
    color: #fff;
}

.pagination-container .blog-page,
.pagination-container .prevposts-link,
.pagination-container .nextposts-link {
    margin-right: 5px;
    margin-bottom: 10px;
    text-align: center;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.pagination-container .blog-page:hover,
.pagination-container .prevposts-link:hover,
.pagination-container .nextposts-link:hover {
    color: #fff;
}

.pagination-container .blog-page.current-page {
    color: #fff;
}

section.home-template,
section.page-template,
section.page-sidebar-right-template,
section.page-sidebar-no-template,
section.page-sidebar-left-template,
section.page-fullwidth-template,
section.single-template,
section.single-no-template {
    padding-top: 150px;
}

.pxaas-top-section+section.home-template,
.pxaas-top-section+section.page-template,
.pxaas-top-section+section.page-sidebar-right-template,
.pxaas-top-section+section.page-sidebar-no-template,
.pxaas-top-section+section.page-sidebar-left-template,
.pxaas-top-section+section.page-fullwidth-template,
.pxaas-top-section+section.single-template,
.pxaas-top-section+section.single-no-template {
    padding-top: 10px;
}

.pad-top-5 {
    padding-top: 5px;
}

.pad-top-10 {
    padding-top: 10px;
}

.pad-top-15 {
    padding-top: 15px;
}

.pad-top-20 {
    padding-top: 20px;
}

.pad-top-30 {
    padding-top: 30px;
}

.pad-top-40 {
    padding-top: 40px;
}

.pad-top-50 {
    padding-top: 50px;
}

.pad-top-60 {
    padding-top: 60px;
}

.pad-top-70 {
    padding-top: 70px;
}

.pad-top-80 {
    padding-top: 80px;
}

.pad-top-90 {
    padding-top: 90px;
}

.pad-top-100 {
    padding-top: 100px;
}

.pad-top-110 {
    padding-top: 110px;
}

.pad-top-120 {
    padding-top: 120px;
}

.mar-left-50 {
    margin-left: 50px;
}

.bg-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #fff;
    opacity: 0.8;
}

.op-1 {
    opacity: 0.1;
}

.op-2 {
    opacity: 0.2;
}

.op-3 {
    opacity: 0.3;
}

.op-4 {
    opacity: 0.4;
}

.op-5 {
    opacity: 0.5;
}

.op-6 {
    opacity: 0.6;
}

.op-7 {
    opacity: 0.7;
}

.op-8 {
    opacity: 0.8;
}

.op-9 {
    opacity: 0.9;
}

.op-10 {
    opacity: 0.10;
}

.full-container {
    max-width: 100%;
    width: 100%;
}

.btn-wrap {
    float: left;
    margin-top: 10px;
}

.btn-wrap a {
    padding: 12px 45px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    border-radius: 45px;
    text-transform: capitalize;
    font-weight: 600;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.btn-wrap a:hover {
    -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.06);
}

.btn-wrap.btn-right {
    float: right;
}

.btn-wrap.btn-center {
    text-align: center;
    width: 100%;
}

.btn-wrap.btn-bg-blue a {
    background: #338fd1;
    color: #fff;
}

.btn-wrap.btn-bg-white a {
    background: #fff;
    color: #1d3571;
}

.section-title {
    width: 100%;
}

.section-title h3 {
    line-height: 40px;
    margin-bottom: 5px;
}

.section-title .title-p {
    text-align: center;
    margin: 0 24%;
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    color: #737373;
    margin-bottom: 60px;
    position: relative;
}

.section-title.section-title-left {
    text-align: left;
}

.section-title.section-title-left h3,
.section-title.section-title-left p {
    text-align: left;
}

.section-title.section-title-left .title-p {
    margin: 0;
}

.section-title.section-title-center {
    text-align: center;
}

.section-title.section-title-center h3:after {
    left: 50%;
    margin-left: -31px;
}

.section-title.section-title-right {
    text-align: right;
}

.section-title.section-title-right h3,
.section-title.section-title-right p {
    text-align: right;
}

.section-title.section-title-right .title-p {
    margin: 0;
}

.section-title.section-type-not-icon-1 h3 {
    line-height: 35px;
    margin-bottom: 15px;
}

.section-title.section-type-not-icon-1 .title-p {
    margin: 0;
    font-size: 14px;
    line-height: 23px;
    margin-bottom: 15px;
}

.section-title.section-type-not-icon-2 h3 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 5px;
}

.section-title.section-type-not-icon-2 .title-p {
    color: #f5f5f5;
}

.section-title.section-type-not-icon-3 h3 {
    font-size: 34px;
    line-height: 38px;
    margin-bottom: 20px;
}

.section-title.section-type-not-icon-sub .title-p {
    margin: 0;
    font-size: 14px;
    line-height: 23px;
    color: #eee;
    margin-bottom: 30px;
}

.section-title.section-type-not-icon-5 h3,
.section-title.section-type-not-icon-5-1 h3 {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 10px;
}

.section-title.section-type-not-icon-5 .title-p,
.section-title.section-type-not-icon-5-1 .title-p {
    margin: 0;
    margin-bottom: 25px;
}

.section-title.section-type-not-icon-6 h3 {
    font-size: 44px;
    line-height: 49px;
    margin-bottom: 25px;
}

.section-title.section-type-not-icon-10 h3 {
    font-size: 26px;
    line-height: 29px;
    margin-bottom: 20px;
}

.section-title.section-type-not-icon-10 .title-p {
    font-size: 14px;
    margin-bottom: 30px;
}

.section-title.section-type-not-icon-11 h3 {
    line-height: 40px;
    font-weight: 500;
}

.section-title.section-type-not-icon-12 h3 {
    line-height: 1.2;
    margin-bottom: 0;
}

.section-title.section-type-not-icon-12 .title-p {
    font-size: 20px !important;
    line-height: 30px !important;
    font-weight: 300;
    margin-top: 25px;
    margin-bottom: 20px;
}


/* =================================================================================================== */

.feature-box .feature-title {
    color: #212529;
}

.feature-box {
    width: 100%;
}

.feature-box h3 {
    line-height: 40px;
    margin-bottom: 5px;
}

.feature-box .title-p {
    margin-bottom: 10px;
}

.feature-box.feature-box-left {
    text-align: left;
}

.feature-box.feature-box-left h3,
.feature-box.feature-box-left p {
    text-align: left;
}

.feature-box.feature-box-center {
    text-align: center;
}

.feature-box.feature-box-center h3:after {
    left: 50%;
    margin-left: -31px;
}

.feature-box.feature-box-right {
    text-align: right;
}

.feature-box.feature-box-right h3,
.feature-box.feature-box-right p {
    text-align: right;
}

.feature-box.feature-type-1,
.feature-box.feature-type-1-1 {
    border: 1px solid rgba(85, 130, 253, 0.35);
    border-radius: 10px;
    -webkit-box-shadow: 0 5px 45px -20px rgba(85, 130, 253, 0.2);
    box-shadow: 0 5px 45px -20px rgba(85, 130, 253, 0.2);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 30px;
}

.feature-box.feature-type-1 h3,
.feature-box.feature-type-1-1 h3 {
    font-size: 26px;
    line-height: 29px;
    margin-bottom: .5rem;
    color: #5882fd;
}

.feature-box.feature-type-1:hover,
.feature-box.feature-type-1-1:hover {
    -webkit-box-shadow: 0 20px 50px -20px rgba(85, 130, 253, 0.8);
    box-shadow: 0 20px 50px -20px rgba(85, 130, 253, 0.8);
}

.feature-box.feature-type-1:hover i,
.feature-box.feature-type-1-1:hover i {
    background-color: #5882fd;
    color: #fff;
}

.feature-box.feature-type-1-1 {
    padding: 60px 30px;
    -webkit-box-shadow: 0 1px 35px -5px #ddd;
    box-shadow: 0 1px 35px -5px #ddd;
}

.feature-box.feature-type-2 h3,
.feature-box.feature-type-2-1 h3 {
    line-height: 35px;
    margin-bottom: 15px;
}

.feature-box.feature-type-2 .title-p,
.feature-box.feature-type-2-1 .title-p {
    margin-bottom: 15px;
}

.feature-box.feature-type-3,
.feature-box.feature-type-3-1,
.feature-box.feature-type-3-2 {
    padding: 70px 30px;
    -webkit-box-shadow: 0 1px 35px -5px #ddd;
    box-shadow: 0 1px 35px -5px #ddd;
}

.feature-box.feature-type-3 h3,
.feature-box.feature-type-3-1 h3,
.feature-box.feature-type-3-2 h3 {
    font-size: 26px;
    line-height: 29px;
    margin-bottom: 10px;
}

.feature-box.feature-type-3:hover i,
.feature-box.feature-type-3:hover h3,
.feature-box.feature-type-3:hover p,
.feature-box.feature-type-3-1:hover i,
.feature-box.feature-type-3-1:hover h3,
.feature-box.feature-type-3-1:hover p,
.feature-box.feature-type-3-2:hover i,
.feature-box.feature-type-3-2:hover h3,
.feature-box.feature-type-3-2:hover p {
    color: #fff;
}

.feature-box.feature-type-3-1:hover h3,
.feature-box.feature-type-3-1:hover p {
    color: inherit;
}

.feature-box.feature-type-3-1:hover i {
    color: #fff;
}

.feature-box.feature-type-3-2 {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.feature-box.feature-type-4 h3,
.feature-box.feature-type-4-1 h3,
.feature-box.feature-type-4-2 h3 {
    font-size: 21px;
    line-height: 26px;
    margin-bottom: 10px;
}

.feature-box.feature-type-5 i {
    width: 60px;
    height: 60px;
    line-height: 60px;
}

.feature-box.feature-type-5 h3 {
    font-size: 26px;
    line-height: 29px;
    margin-bottom: 10px;
}

.feature-box.feature-type-5:hover {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
}

.feature-box.feature-type-6 {
    padding: 60px 30px;
    -webkit-box-shadow: 0 2px 35px -1px #5882fd3b;
    box-shadow: 0 2px 35px -1px #5882fd3b;
}

.feature-box.feature-type-6 i {
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.feature-box.feature-type-6 h3 {
    font-size: 26px;
    line-height: 29px;
}

.feature-box.feature-type-6:hover i {
    color: #fff;
}

.feature-box.feature-type-7 i,
.feature-box.feature-type-7-1 i,
.feature-box.feature-type-7-2 i {
    width: 75px;
    height: 75px;
    line-height: 75px;
    position: relative;
    left: 0;
    top: 0;
}

.feature-box.feature-type-7 i:after,
.feature-box.feature-type-7-1 i:after,
.feature-box.feature-type-7-2 i:after {
    content: "";
    position: absolute;
    left: 0%;
    top: 0%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    height: 100%;
    width: 100%;
    z-index: -1;
    border-radius: 50%;
    -webkit-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.feature-box.feature-type-7 .title-p,
.feature-box.feature-type-7-1 .title-p,
.feature-box.feature-type-7-2 .title-p {
    margin-top: 15px;
}

.feature-box.feature-type-7:hover i,
.feature-box.feature-type-7-1:hover i,
.feature-box.feature-type-7-2:hover i {
    background-color: transparent;
    color: #fff;
}

.feature-box.feature-type-7:hover i:after,
.feature-box.feature-type-7-1:hover i:after,
.feature-box.feature-type-7-2:hover i:after {
    left: 0;
    top: 0;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.feature-box.feature-type-7-2 i {
    width: 85px;
    height: 85px;
    line-height: 85px;
    position: relative;
    left: 0;
    top: 0;
    z-index: 5;
}

.feature-box.feature-type-7-2 .sec-content h3 {
    color: #fff;
}

.feature-box.feature-type-7-2 .sec-content p {
    color: #f5f5f5;
}

.feature-box.feature-type-7-2:hover i:after {
    color: #fff;
}

.feature-box.feature-type-8 {
    border: 1px solid #ff776266;
    cursor: pointer;
}

.feature-box.feature-type-8 i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    left: 20px;
}

.feature-box.feature-type-8 h3 {
    font-size: 26px;
    line-height: 29px;
    margin-bottom: 10px;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.feature-box.feature-type-8 .sec-content {
    padding-left: 70px;
}

.feature-box.feature-type-8:hover {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
}

.feature-box.feature-type-8:hover i {
    background-color: #fff;
}

.feature-box.feature-type-8:hover h3 {
    color: #fff;
}

.feature-box.feature-type-8:hover p {
    color: #f4f4f4;
}

.feature-box.feature-type-9 i {
    top: 30px;
    left: 30px;
    height: 70px;
    width: 70px;
    line-height: 70px;
}

.feature-box.feature-type-9 .sec-content {
    padding-left: 90px;
}

.feature-box.feature-type-9 h3 {
    font-size: 26px;
    line-height: 29px;
    margin-bottom: 10px;
}

.feature-box.feature-type-9 .title-p {
    margin-bottom: 10px;
}

.feature-box.feature-type-10 i,
.feature-box.feature-type-10-1 i {
    height: 50px;
    width: 50px;
    line-height: 50px;
    left: 0;
}

.feature-box.feature-type-10 .sec-content,
.feature-box.feature-type-10-1 .sec-content {
    padding-left: 60px;
}

.feature-box.feature-type-10 h3,
.feature-box.feature-type-10-1 h3 {
    font-size: 21px;
    line-height: 26px;
    margin-bottom: .5rem;
}

.feature-box.feature-type-10:hover i,
.feature-box.feature-type-10-1:hover i {
    color: #fff;
}

.feature-box.feature-type-11 i {
    left: 0;
}

.feature-box.feature-type-11 h3 {
    font-size: 21px;
    line-height: 26px;
    margin-bottom: .5rem;
}

.feature-box.feature-type-11 .sec-content {
    padding-left: 60px;
}

.feature-box.feature-type-11-1 i {
    left: 30px;
    line-height: 32px;
}

.feature-box.feature-type-11-1 .sec-content {
    text-align: left;
}

.feature-box.feature-type-11-1 h3 {
    font-size: 26px;
    line-height: 29px;
    margin-bottom: 15px;
    text-indent: 35px;
}

.feature-box.feature-type-not-icon-1 h3 {
    line-height: 35px;
    margin-bottom: 15px;
}

.feature-box.feature-type-not-icon-1 .title-p {
    margin-bottom: 15px;
}

.feature-box.feature-type-not-icon-1-1 h3 {
    line-height: 35px;
    margin-bottom: 15px;
}

.feature-box.feature-type-not-icon-1-1 .title-p {
    margin-bottom: 20px;
}

.feature-box.feature-type-not-icon-1-2 h3,
.feature-box.feature-type-not-icon-1-2-1 h3 {
    font-size: 34px;
    line-height: 38px;
    margin-bottom: 15px;
}

.feature-box.feature-type-not-icon-1-2 .sec-content span,
.feature-box.feature-type-not-icon-1-2-1 .sec-content span {
    font-size: 16px;
}

.feature-box.feature-type-not-icon-1-2 .title-p,
.feature-box.feature-type-not-icon-1-2-1 .title-p {
    margin-bottom: 15px;
}

.feature-box.feature-type-not-icon-1-3 h3,
.feature-box.feature-type-not-icon-1-3-1 h3 {
    line-height: 35px;
    margin-bottom: 15px;
}

.feature-box.feature-type-not-icon-1-3 .title-p,
.feature-box.feature-type-not-icon-1-3-1 .title-p {
    margin-bottom: 15px;
}

.feature-box.feature-type-not-icon-1-9 {
    border: 1px solid #e5e5e5;
}

.feature-box.feature-type-not-icon-1-9 h3 {
    font-size: 26px;
    line-height: 29px;
    margin-bottom: 12px;
}

.feature-box.feature-type-not-icon-1-9 .title-p {
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.feature-box.feature-type-not-icon-1-9:hover {
    border-color: #1eda65;
}

.feature-box.feature-type-not-icon-1-9:hover h3 {
    color: #fff;
}

.feature-box.feature-type-not-icon-1-9:hover p {
    color: #f5f5f5;
}

.feature-box.feature-type-not-icon-1-9-1 {
    border-color: #1eda65;
}

.feature-box.feature-type-not-icon-1-9-1 h3 {
    font-size: 26px;
    line-height: 29px;
    margin-bottom: 12px;
}

.feature-box.feature-type-not-icon-1-9-1 .title-p {
    color: #f5f5f5;
}

.feature-box.feature-type-not-icon-1-9-1:hover {
    border-color: #1eda65;
}

.feature-box.feature-type-not-icon-1-9-1:hover h3 {
    color: #fff;
}

.feature-box.feature-type-not-icon-1-9-1:hover p {
    color: #f5f5f5;
}


/* subscribe-form element */

.sub-form .section-title h3 {
    color: #fff;
    margin-bottom: 10px;
}

.sub-form .section-title .title-p {
    margin: 0;
    font-size: 14px;
    color: #eee;
    margin-bottom: 30px;
}


/* PLACEHOLDER INPUT,BUTTON Contact form */

.form-pxaas ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(255, 255, 255, 0.7);
    font-weight: 100;
}

.form-pxaas ::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(255, 255, 255, 0.7);
    font-weight: 100;
}

.form-pxaas :-ms-input-placeholder {
    /* IE 10+ */
    color: rgba(255, 255, 255, 0.7);
    font-weight: 100;
}

.form-pxaas :-moz-placeholder {
    /* Firefox 18- */
    color: rgba(255, 255, 255, 0.7);
    font-weight: 100;
}

.form-pxaas input:hover,
.form-pxaas textarea:hover {
    background-color: #fff;
}

.form-pxaas input:hover::-webkit-input-placeholder,
.form-pxaas textarea:hover::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #bfd8ff;
    font-weight: 100;
}

.form-pxaas input:hover::-moz-placeholder,
.form-pxaas textarea:hover::-moz-placeholder {
    /* Firefox 19+ */
    color: #bfd8ff;
    font-weight: 100;
}

.form-pxaas input:hover:-ms-input-placeholder,
.form-pxaas textarea:hover:-ms-input-placeholder {
    /* IE 10+ */
    color: #bfd8ff;
    font-weight: 100;
}

.form-pxaas input:hover:-moz-placeholder,
.form-pxaas textarea:hover:-moz-placeholder {
    /* Firefox 18- */
    color: #bfd8ff;
    font-weight: 100;
}

.prs_newsletter_field ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #86a0cc;
    font-weight: 400;
}

.prs_newsletter_field ::-moz-placeholder {
    /* Firefox 19+ */
    color: #86a0cc;
    font-weight: 400;
}

.prs_newsletter_field :-ms-input-placeholder {
    /* IE 10+ */
    color: #86a0cc;
    font-weight: 400;
}

.prs_newsletter_field :-moz-placeholder {
    /* Firefox 18- */
    color: #86a0cc;
    font-weight: 400;
}

.partner-item.show-title {
    float: left;
    width: 100%;
    display: block;
    text-align: center;
    padding: 55px 30px;
    -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.06);
    border-radius: 15px;
    background: #fff;
    line-height: 85px;
}

.partner-item.show-title img {
    width: 60px !important;
    text-align: center;
    margin-bottom: 20px;
    display: inline-block !important;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.partner-item.show-title h2 {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: #1d3571;
    text-transform: capitalize;
}

.partner-item.show-title:hover {
    -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border-radius: 15px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.partner-item.show-title:hover img {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.image-pject-slider {
    position: relative;
}

.image-pject-slider .owl-nav {
    top: 50% !important;
    margin-top: -20px !important;
    left: 30px !important;
    right: 30px !important;
}

.image-pject-slider .owl-nav .owl-prev,
.image-pject-slider .owl-nav .owl-next {
    width: 50px !important;
    height: 50px !important;
    line-height: 53px !important;
}

.partner-item {
    background: transparent;
    padding: 40px;
    border-radius: 20px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    margin-bottom: 20px;
    text-align: center;
}

.partner-item img {
    display: inline-block !important;
    border-radius: 20px 20px 0 0;
}

.partner-item:hover {
    background: #fff;
    -webkit-box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.06);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.image-pject-slider .partner-item {
    padding: 0px;
    margin-bottom: 0px;
}

.members-4 .member-excerpt {
    margin-bottom: 15px;
}

.team-area-2 {
    text-align: center;
}

.team-area-2 .mt-25px:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.team-area-2 .mt-25px .social {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -webkit-background: -webkit-linear-gradient(45deg, rgba(42, 169, 206, 0.6) 0%, rgba(88, 130, 253, 0.9) 100%);
    background: -o-linear-gradient(45deg, rgba(42, 169, 206, 0.6) 0%, rgba(88, 130, 253, 0.9) 100%);
    background: linear-gradient(45deg, rgba(42, 169, 206, 0.6) 0%, rgba(88, 130, 253, 0.9) 100%);
    opacity: 0;
}

.team-area-2 .mt-25px:hover .social {
    opacity: 1;
}

.team-area-2 .mt-25px a {
    width: 30px;
    height: 30px;
    line-height: 30px;
}


/*****  team-area for demo-2 *****/

.team-area {
    text-align: center;
}

.team-area .team-box.orange {
    border: 2px solid rgba(255, 119, 98, 0.25);
    padding: 30px 10px;
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-box-shadow: 0 5px 45px -20px rgba(255, 119, 98, 0.3);
    box-shadow: 0 5px 45px -20px rgba(255, 119, 98, 0.3);
}

.team-area.col-md-3 .team-box .avatar-wrap {
    max-width: 150px;
}

.team-area .team-box.orange:hover {
    border: 2px solid rgba(255, 119, 98, 0.8);
}

.team-area .mt-25px:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.team-area .mt-25px a {
    width: 30px;
    height: 30px;
    line-height: 30px;
}


/***** team-area-3 for demo-7 *****/

.team-area-3 {
    text-align: center;
}

.team-area-3 .mt-25px:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.team-area-3 .mt-25px .social {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -webkit-background: -webkit-linear-gradient(45deg, rgba(42, 169, 206, 0.6) 0%, #1eda65 100%);
    background: -o-linear-gradient(45deg, rgba(42, 169, 206, 0.6) 0%, #1eda65 100%);
    background: linear-gradient(45deg, rgba(42, 169, 206, 0.6) 0%, #1eda65 100%);
    opacity: 0;
}

.team-area-3 .mt-25px:hover .social {
    opacity: 1;
}

.team-area-3 .mt-25px a {
    width: 30px;
    height: 30px;
    line-height: 30px;
}


/***** team-area-4 for demo-8 *****/

.team-area-4 {
    text-align: center;
}

.team-area-4 .mt-25px:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.team-area-4 .mt-25px .social {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(30, 218, 101, 0.88);
    opacity: 0;
}

.team-area-4 .mt-25px:hover .social {
    opacity: 1;
}

.team-area-4 .mt-25px a {
    width: 30px;
    height: 30px;
    line-height: 30px;
}


/* Archive-Member */

.home-member {
    padding: 92px 0 80px 0;
}

.mem-item-wrapper .mem-socials {
    margin: 0 20%;
}

.mem-item-wrapper .mem-socials a {
    width: 30px;
    height: 30px;
    line-height: 30px;
}


/*----------------------------------------------------
                    14-contact-area for contact-page
----------------------------------------------------*/

.contact-area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.contact-area .btn-3:hover {
    background-color: #fff;
    cursor: pointer;
    outline: none;
}

.contact-area .address {
    -webkit-box-shadow: 0 3px 40px -12px rgba(88, 130, 253, 0.25);
    box-shadow: 0 3px 40px -12px rgba(88, 130, 253, 0.25);
    padding: 30px 15px;
    text-align: center;
}

.contact-area .address i {
    width: 80px;
    height: 80px;
    line-height: 80px;
}

.contact-area .address:hover i {
    background-color: #5882fd;
    color: #fff;
}

.contact-form .form-control {
    border: 1px solid rgba(88, 130, 253, 0.25);
}

.contact-area-item {
    width: 23%;
}

@media(max-width: 768px) {
    .contact-area-item {
        width: 100%;
    }
}

.contact-area-3 .contact-area-item {
    width: 31%;
}


/*----------------------------------------------------
                    End contact-area
----------------------------------------------------*/

.inline-facts-wrap i {
    height: 70px;
    width: 70px;
    line-height: 70px;
}

.inline-facts-wrap:hover i {
    background-color: #fff;
}

.form-pxaas {
    margin-bottom: 80px;
    margin-top: -30px;
}

.form-pxaas .form-group {
    margin-bottom: 0px;
}

.form-pxaas input {
    width: 100%;
    height: 50px;
    margin-top: 20px;
    padding-left: 20px;
    margin-bottom: 10px;
    border: 0;
    color: #7191c5;
    background: rgba(255, 255, 255, 0.2);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    border-radius: 50px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.form-pxaas textarea {
    width: 100%;
    margin-top: 30px;
    padding-left: 20px;
    color: #7191c5;
    border-radius: 20px;
    border: 0;
    height: auto;
    padding-top: 10px;
    background: rgba(255, 255, 255, 0.2);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    resize: none;
}

.form-pxaas input:focus,
.form-pxaas textarea:focus {
    border-bottom: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-pxaas .submitForm {
    margin-top: 40px;
    padding: 0px 65px;
    float: left;
    color: #1d3571;
    text-transform: capitalize;
    background: #fff;
    text-align: center;
    line-height: 46px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    border: 0;
    font-family: 'Montserrat', sans-serif;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.form-pxaas .submitForm:focus {
    outline: none;
}

.form-pxaas .submitForm:hover {
    -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.06);
}

.form-pxaas span.wpcf7-not-valid-tip {
    color: #fff;
    margin-top: 10px;
}

.wpcf7-validation-errors {
    color: #fff;
}

.items-grid-holder .single-review {
    text-align: center;
}

.items-grid-holder .single-review img {
    width: 100px;
    border-radius: 50% !important;
}

.items-grid-holder .single-review p {
    margin: 0 22%;
}

.items-grid-holder .owl-dot:hover span,
.items-grid-holder .owl-dot.active span {
    background-color: #5882fd !important;
}

.testimonials-2 .single-review img {
    border-radius: 10px !important;
}

.testimonials-3,
.testimonials-4 {
    padding: 0 50px;
}

.testimonials-3 .single-review,
.testimonials-4 .single-review {
    text-align: left !important;
}

.testimonials-3 .single-review img,
.testimonials-4 .single-review img {
    width: 120px;
}

.testimonials-3 .single-review p,
.testimonials-4 .single-review p {
    margin: 0;
    margin-bottom: 10px;
    color: #555;
    font-size: 16px;
    font-weight: 300;
}

.testimonials-5 {
    padding: 0 50px;
}

.testimonials-5 .single-review {
    text-align: left !important;
}

.testimonials-5 .single-review img {
    width: 70px;
}

.testimonials-5 .single-review p {
    margin: 0;
    color: #ccc;
    line-height: 1.5;
    display: block;
    font-family: 'Fira Sans', sans-serif;
}

.testimonials-5 .owl-dot:hover span,
.testimonials-5 .owl-dot.active span {
    background-color: #1eda65 !important;
}

.filtering .filter-item {
    width: 100%;
    text-align: center;
}

.filtering .filter-item ul {
    list-style: none;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: 0;
}

.filtering .filter-item ul li a {
    display: inline-block;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    padding: 9px 22px;
}

.filtering .filter-item ul li a.active {
    color: #fff;
}

.filtering.work-area-2 .filter-item ul li a {
    border: none;
}

.our-galleries .work-image {
    position: relative;
    overflow: hidden;
}

.our-galleries .work-image .overlay-bg {
    text-align: center;
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: -webkit-linear-gradient(45deg, rgba(42, 169, 206, 0.9) 0%, rgba(30, 218, 101, 0.95) 100%);
    background: -o-linear-gradient(45deg, rgba(42, 169, 206, 0.9) 0%, rgba(30, 218, 101, 0.95) 100%);
    background: linear-gradient(45deg, rgba(42, 169, 206, 0.9) 0%, rgba(30, 218, 101, 0.95) 100%);
    opacity: 0;
    -webkit-transform: translateX(-10px) translateY(10px);
    -ms-transform: translateX(-10px) translateY(10px);
    transform: translateX(-10px) translateY(10px);
}

.our-galleries .work-image .overlay-bg a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #fff;
}

.our-galleries .work-image .overlay-bg a:hover {
    color: #fff;
}

.our-galleries .work-image .overlay-bg h5 {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
}

.our-galleries .work-image .overlay-bg p {
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    color: #ddd;
}

.our-galleries .work-image:hover .overlay-bg {
    opacity: 1;
    -webkit-transform: translateX(0px) translateY(0px);
    -ms-transform: translateX(0px) translateY(0px);
    transform: translateX(0px) translateY(0px);
}

.our-galleries .work-image:hover .overlay-bg h5 {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    color: #fff;
}

.our-galleries.work-area-1 .work-image .overlay-bg {
    background: -webkit-linear-gradient(45deg, rgba(42, 169, 206, 0.9) 0%, rgba(30, 46, 218, 0.95) 100%);
    background: -o-linear-gradient(45deg, rgba(42, 169, 206, 0.9) 0%, rgba(30, 46, 218, 0.95) 100%);
    background: linear-gradient(45deg, rgba(42, 169, 206, 0.9) 0%, rgba(30, 46, 218, 0.95) 100%);
}

.our-galleries.work-area-1 .work-image .overlay-bg a {
    background-color: #fff;
}

.our-galleries.work-area-1 .work-image .overlay-bg a:hover {
    color: #fff;
}

.our-galleries.work-area-2 .work-image .overlay-bg {
    background: rgba(255, 255, 255, 0.95);
}

.our-galleries.work-area-2 .work-image .overlay-bg a.img-magnifying {
    background-color: transparent;
    top: 10px;
    right: 10px;
    height: 45px;
    width: 45px;
    line-height: 45px;
    border: 1px solid #88a1ea;
}

.our-galleries.work-area-2 .work-image .overlay-bg a.img-magnifying:hover {
    color: #fff;
}

.our-galleries.work-area-2 .work-image .overlay-bg .content {
    width: 100%;
    position: absolute;
    bottom: 0;
    text-align: left;
}

.our-galleries.work-area-2 .work-image .overlay-bg .content p {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
    -webkit-transition: -webkit-transform 0.5s ease-in-out;
    transition: -webkit-transform 0.5s ease-in-out;
    -o-transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
    font-weight: 500;
    margin-bottom: 5px;
}

.our-galleries.work-area-2 .work-image .overlay-bg .content h5 {
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
    -webkit-transition: -webkit-transform 0.5s ease-in-out;
    transition: -webkit-transform 0.5s ease-in-out;
    -o-transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
    font-weight: 600;
    color: #212529;
}

.our-galleries.work-area-2 .work-image:hover .overlay-bg {
    -webkit-transform: translateX(0px) translateY(0px);
    -ms-transform: translateX(0px) translateY(0px);
    transform: translateX(0px) translateY(0px);
}

.our-galleries.work-area-2 .work-image:hover .overlay-bg p,
.our-galleries.work-area-2 .work-image:hover .overlay-bg h5 {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.pricing-plan {
    padding: 40px 20px;
    text-align: center;
}

.main-header {
    z-index: 1000;
    width: 100%;
    position: relative;
    background: transparent;
}

.main-header.menu-blog {
    background-color: #fff;
}

.menu_fixed {
    background: #fff;
    position: fixed;
    z-index: 1000;
    max-width: 100%;
    width: 100%;
    top: 0px;
    left: 0;
    right: 0;
    -webkit-box-shadow: 0px 2px 20px -6px #3c3c3c;
    box-shadow: 0px 2px 20px -6px #3c3c3c;
    overflow: visible;
}

.main-menu-responsive .meanmenu-reveal {
    display: none !important;
    right: 0px;
    top: 0px;
    left: auto;
    text-align: center;
    font-size: 18px;
    border-radius: 6px;
    position: absolute;
    padding: 8px 9px;
    cursor: pointer;
    background: transparent;
    text-decoration: none;
    line-height: 26px;
    font-size: 1px;
    font-weight: 700;
    border: 0px;
    max-height: 37px;
}

.main-menu-responsive .meanmenu-reveal span {
    display: block;
    background: #fff !important;
    height: 2px;
    margin-top: 3px;
    margin-bottom: 4px;
    width: 25px;
}

.main-menu-responsive .meanmenu-reveal.collapsed:after {
    display: none;
}

.main-menu-responsive .meanmenu-reveal:after {
    content: 'X';
    font-size: 18px;
    color: #fff;
    right: 6px;
    position: relative;
}

.header-default-style .main-menu-responsive .meanmenu-reveal:after {
    right: 0px;
    top: 4px;
    position: relative;
    padding: 0px 6.5px 0px;
    line-height: 0;
}

button.meanmenu-reveal.navbar-toggle span {
    display: none;
}

button.meanmenu-reveal.navbar-toggle.collapsed span {
    display: block;
}


/* heder-special-style, heder-special-style-bg-dark-blue **********************************************/

.heder-special-style .nav-holder.main-menu a,
.heder-special-style-bg-dark-blue .nav-holder.main-menu a {
    color: #fff;
    font-weight: 400;
}

.heder-special-style .attr-nav i,
.heder-special-style-bg-dark-blue .attr-nav i {
    color: #fff;
}

.heder-special-style .logo-holder,
.heder-special-style-bg-dark-blue .logo-holder {
    padding-left: 30px;
}


/* heder-special-style **********************************************/

.heder-special-style {
    z-index: 1000;
    min-height: 94px;
}

.heder-special-style.menu_fixed {
    background-color: #3d8cc4;
}


/* heder-special-style-bg-dark-blue **********************************************/

.heder-special-style-bg-dark-blue {
    z-index: 1000;
}

.heder-special-style-bg-dark-blue.menu_fixed {
    background-image: -webkit-linear-gradient(40deg, rgba(81, 114, 211, 0.9) 0px, rgba(60, 48, 158, 0.9) 80%);
    background-image: -o-linear-gradient(40deg, rgba(81, 114, 211, 0.9) 0px, rgba(60, 48, 158, 0.9) 80%);
    background-image: linear-gradient(50deg, rgba(81, 114, 211, 0.9) 0px, rgba(60, 48, 158, 0.9) 80%);
}

.logo-text h2 {
    margin-bottom: 0;
}


/*----------------------------------------------------
                    navbar
----------------------------------------------------*/

.menu-item a {
    color: #333;
}

.menu-item ul a {
    color: #212529;
}

.navbar {
    position: fixed;
    top: auto;
    width: 100%;
    z-index: 999;
    padding-bottom: 0;
    padding-top: 0;
    background-color: #fff;
    /* box-shadow: 0 1px 8px 3px rgba(0, 0, 0, 0.05); */
}

.navbar .container {
    padding: 0;
    position: relative;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.navbar.navbar-colored .navbar-nav .menu-item {
    padding: 25px 18px;
}

.navbar .navbar-nav .menu-item {
    padding: 35px 18px;
    margin: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.navbar .navbar-nav .menu-item a {
    font-size: 15px;
    padding: 0;
}

.navbar .navbar-nav .menu-item:hover a {
    cursor: pointer;
}

.navbar .navbar-nav .menu-item.menu-item-has-children {
    position: relative;
}

.navbar .navbar-nav .menu-item.menu-item-has-children a:after {
    display: inline-block;
    width: 0;
    content: "\f107";
    font-family: 'FontAwesome';
    margin: 0;
    border: none;
    vertical-align: 0;
    margin-left: 10px;
}

.navbar .navbar-nav .menu-item .sub-menu {
    width: auto;
    padding: 10px 5px;
    position: absolute;
    left: 0;
    border: none;
    -webkit-box-shadow: 0 11px 35px rgba(0, 0, 0, 0.075);
    box-shadow: 0 11px 35px rgba(0, 0, 0, 0.075);
    top: 100%;
    z-index: 1000;
    float: left;
    min-width: 10rem;
    margin: .125rem 0 0;
    font-size: 1rem;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border-radius: .25rem;
    visibility: hidden;
    opacity: 0;
    display: block;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    -o-transition: transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.navbar .navbar-nav .menu-item .sub-menu .sub-menu {
    top: 0;
    right: 100%;
    left: auto;
}

.navbar .navbar-nav .menu-item .sub-menu li {
    padding: 10px;
}

.navbar .navbar-nav .menu-item .sub-menu li a {
    font-size: 14px;
    display: block;
    width: 100%;
    clear: both;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.navbar .navbar-nav .menu-item .sub-menu li a:before {
    content: '-';
    padding-right: 5px;
}

.navbar .navbar-nav .menu-item .sub-menu li a:after {
    content: none;
}

.navbar .navbar-nav .menu-item:hover>.sub-menu {
    margin-top: 0;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

.navbar .nav-item.log-in,
.navbar .nav-item.log-out {
    padding: 0 10px;
}

.navbar .nav-item.log-in .nav-link,
.navbar .nav-item.log-out .nav-link {
    padding: 10px 20px;
    font-size: 15px;
    color: #333;
    font-weight: 400;
    color: #fff;
}

.navbar .nav-item.log-in .nav-link:hover,
.navbar .nav-item.log-out .nav-link:hover {
    color: #fff !important;
    border-color: #ff7762;
}

.navbar .button.collapsed:after {
    display: none;
}

.navbar.navbar-special {
    background-color: transparent !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.navbar.navbar-special .menu-item a {
    color: #fff;
}

.navbar.navbar-special.navbar-colored {
    background-color: #fff !important;
}

.navbar.navbar-special.navbar-colored {
    -webkit-box-shadow: 0 1px 8px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 8px 3px rgba(0, 0, 0, 0.05);
}

.navbar.navbar-special.navbar-colored .menu-item a {
    color: inherit;
}

.navbar.navbar-special-transparent {
    background-color: transparent !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.navbar.navbar-special-transparent.navbar-colored {
    -webkit-box-shadow: 0 1px 8px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 8px 3px rgba(0, 0, 0, 0.05);
    background-color: #fff !important;
}

.navbar.navbar-hidden {
    display: none;
}

.navbar .attr-nav {
    display: none;
}

.navbar .navbar-brand .b-logo {
    display: block;
}

.navbar .navbar-toggler:focus {
    outline: none;
}

.navbar .navbar-toggler .fa-bars {
    color: #333;
}

.navbar-colored {
    background-color: #fff;
    -webkit-box-shadow: 0 1px 8px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 8px 3px rgba(0, 0, 0, 0.05);
    -webkit-transition: all .45s ease;
    -o-transition: all .45s ease;
    transition: all .45s ease;
}

.navbar-colored .navbar-nav .nav-link {
    color: #333;
}

.navbar-colored .navbar-toggler .fa-bars {
    color: #333;
}


/***** navbar-transparent for demo-5 and demo-6*****/

.navbar-transparent {
    background-color: transparent;
}

.navbar-transparent .navbar-nav .nav-link,
.navbar-transparent .navbar-toggler .fa {
    color: #fff;
}

.navbar-transparent.navbar-black-links .navbar-nav .nav-link,
.navbar-transparent.navbar-black-links .navbar-toggler .fa {
    color: #333;
}

.navbar-transparent.navbar-colored {
    background-color: #fff;
}

.navbar-transparent.navbar-colored .navbar-nav .nav-link,
.navbar-transparent.navbar-colored .navbar-toggler .fa {
    color: #333;
}


/*----------------------------------------------------
                    End navbar
----------------------------------------------------*/


/* @import "theme/layout/navigation"; */


/* GLOBAL */

.img-bot-hero:after {
    content: '';
    background-image: url("/wp-content/themes/pxaas/assets/images/Pattern-4.png");
    position: absolute;
    left: 0;
    bottom: 0;
    height: 200px;
    width: 100%;
    -webkit-background-size: contain;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
}

.img-top-bot:before {
    content: '';
    background-image: url("/wp-content/themes/pxaas/assets/images/Pattern-2.png");
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 0;
    -webkit-background-size: cover;
    background-size: cover;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    background-position: top;
}

.img-top-bot:after {
    content: '';
    background-image: url("/wp-content/themes/pxaas/assets/images/Pattern-4.png");
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 0;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: top;
}

.img-top:before {
    content: '';
    background-image: url("/wp-content/themes/pxaas/assets/images/Pattern-2.png");
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 0;
    -webkit-background-size: cover;
    background-size: cover;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    background-position: top;
}

.img-top-1:before {
    content: '';
    background-image: url("/wp-content/themes/pxaas/assets/images/Pattern-3.png");
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 250px;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: top;
    z-index: 0;
}

.img-bot:after {
    content: '';
    background-image: url("/wp-content/themes/pxaas/assets/images/Pattern-4.png");
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 0;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: top;
}

.img-bot-1:after {
    content: '';
    background-image: url("/wp-content/themes/pxaas/assets/images/bb.png");
    position: absolute;
    left: 0;
    bottom: 0;
    height: 200px;
    width: 100%;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}

.img-bot-2:after {
    content: '';
    background-image: url("/wp-content/themes/pxaas/assets/images/bb.png");
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 0;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: top;
}

button[type='submit'] {
    cursor: pointer;
}


/* /////////// */

.img-shape-1:after,
.img-shape-1-2:after,
.img-shape-1-2:before,
.img-shape-1-3:after,
.img-shape-1-3:before,
.img-shape-top:before,
.img-shape-bot:after,
.img-shape-bot:before {
    content: '';
    position: absolute;
}

.img-shape-1:after {
    right: -178px;
    top: -78px;
    height: 91%;
    width: 65%;
    border-radius: 0 0 0 146px;
    -webkit-transform: rotate(22deg);
    -ms-transform: rotate(22deg);
    transform: rotate(22deg);
    z-index: -1;
}

.img-shape-1-2:after {
    left: -178px;
    top: -78px;
    height: 50%;
    width: 40%;
    border-radius: 0 100px 100px 0;
    -webkit-transform: rotate(22deg);
    -ms-transform: rotate(22deg);
    transform: rotate(22deg);
    z-index: -1;
}

.img-shape-1-2:before {
    right: -178px;
    top: -78px;
    height: 91%;
    width: 65%;
    border-radius: 0 0 0 146px;
    -webkit-transform: rotate(22deg);
    -ms-transform: rotate(22deg);
    transform: rotate(22deg);
    z-index: -1;
}

.img-shape-1-3:after {
    left: -178px;
    top: -78px;
    height: 50%;
    width: 40%;
    border-radius: 0 100px 100px 0;
    -webkit-transform: rotate(22deg);
    -ms-transform: rotate(22deg);
    transform: rotate(22deg);
    z-index: -1;
}

.img-shape-1-3:before {
    right: -178px;
    top: -78px;
    height: 65%;
    width: 50%;
    border-radius: 0 0 0 146px;
    -webkit-transform: rotate(22deg);
    -ms-transform: rotate(22deg);
    transform: rotate(22deg);
    z-index: -1;
}

.img-shape-top:before {
    left: 50%;
    top: -80px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 180px;
    width: 180px;
    border-radius: 50%;
    z-index: -1;
}

.shape-3 {
    right: -178px;
    top: -148px;
    height: 112%;
}

.shape-2 {
    left: -178px;
    top: -158px;
    height: 87%;
}

.shape-4 {
    left: 20%;
    bottom: -251px;
}

.shape-5 {
    right: 20%;
    bottom: -251px;
}

.shape-6 {
    top: -160px;
}


/* ////////////// */

.triangle-top:after {
    content: "";
    position: absolute;
    top: 0px;
    right: 0;
    height: 0px;
    width: 0px;
    background-color: #fff;
    border-left: 100vw solid transparent;
    border-bottom: 50px solid #edf5ff;
}

.triangle-bot:before {
    content: "";
    position: absolute;
    bottom: 0px;
    right: 0;
    height: 0px;
    width: 0px;
    background-color: #fff;
    border-left: 100vw solid #edf5ff;
    border-bottom: 50px solid transparent;
}


/* ================================================================================================= */


/* hero slider - element */

.hero-slider.single-slider p {
    margin: 0 35% 0 0;
}

.hero-slider.single-slider .owl-item .item .flex-center h1,
.hero-slider.single-slider .owl-item .item .flex-center p,
.hero-slider.single-slider .owl-item .item .flex-center .btn-3 {
    opacity: 0;
}

.hero-slider.single-slider .owl-item.active .item .flex-center h1 {
    -webkit-animation: fadeInSlider 1.4s 0.3s forwards;
    animation: fadeInSlider 1.4s 0.3s forwards;
}

.hero-slider.single-slider .owl-item.active .item .flex-center p {
    -webkit-animation: fadeInSlider 1.4s 0.6s forwards;
    animation: fadeInSlider 1.4s 0.6s forwards;
}

.hero-slider.single-slider .owl-item.active .item .flex-center .btn-3 {
    -webkit-animation: bounceInSlider 0.9s 0.9s forwards;
    animation: bounceInSlider 0.9s 0.9s forwards;
}

@-webkit-keyframes fadeInSlider {
    0% {
        opacity: 0;
        -webkit-transform: translateY(70px) scale(1);
        transform: translateY(70px) scale(1);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0) scale(1);
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeInSlider {
    0% {
        opacity: 0;
        -webkit-transform: translateY(70px) scale(1);
        transform: translateY(70px) scale(1);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0) scale(1);
        transform: translateY(0) scale(1);
    }
}

@-webkit-keyframes fadeInLeftSlider {
    0% {
        opacity: 0;
        -webkit-transform: translateX(55px) scale(0.9);
        transform: translateX(55px) scale(0.9);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0) scale(1);
        transform: translateX(0) scale(1);
    }
}

@keyframes fadeInLeftSlider {
    0% {
        opacity: 0;
        -webkit-transform: translateX(55px) scale(0.9);
        transform: translateX(55px) scale(0.9);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0) scale(1);
        transform: translateX(0) scale(1);
    }
}

@-webkit-keyframes bounceInSlider {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px) scale(0.85);
        transform: translateY(40px) scale(0.85);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0) scale(1);
        transform: translateY(0) scale(1);
    }
}

.sec-hero-slider p {
    margin: 0 35% 0 0;
}

.hero-slider-wrap-1 p {
    margin: 0 10%;
}

.hero-slider-wrap-1 span {
    font-size: 1rem;
}

.hero-slider-wrap-2 h1,
.hero-slider-wrap-2 p {
    margin: 0 22% 20px 22%;
}


/* ================================================================================================= */


/* Accordion - elementor */

.elementor-accordion .elementor-accordion-item {
    border: none !important;
}

.elementor-accordion .elementor-accordion-item .elementor-tab-title {
    margin-bottom: 15px;
}

.elementor-accordion .elementor-accordion-item .elementor-tab-title span {
    width: auto;
    margin-right: 10px;
}

.elementor-accordion .elementor-accordion-item .elementor-tab-content {
    border-top: none;
}

.accor-1 .elementor-accordion .elementor-accordion-item .elementor-tab-title {
    color: #fff !important;
    background: -webkit-linear-gradient(45deg, #2aa9ce 0%, #5882fd 100%);
    background: -o-linear-gradient(45deg, #2aa9ce 0%, #5882fd 100%);
    background: linear-gradient(45deg, #2aa9ce 0%, #5882fd 100%);
    border-radius: 50px;
    padding: 10px 0 10px 20px;
}

.accor-1 .elementor-accordion .elementor-accordion-item .elementor-tab-title.elementor-active {
    background: -webkit-linear-gradient(45deg, #f23b3b 0%, #ff7762 100%);
    background: -o-linear-gradient(45deg, #f23b3b 0%, #ff7762 100%);
    background: linear-gradient(45deg, #f23b3b 0%, #ff7762 100%);
}

.accor-2 .elementor-accordion .elementor-accordion-item .elementor-tab-title {
    color: #fff !important;
    background: -webkit-linear-gradient(45deg, #2aa9ce 0%, #1eda65 100%);
    background: -o-linear-gradient(45deg, #2aa9ce 0%, #1eda65 100%);
    background: linear-gradient(45deg, #2aa9ce 0%, #1eda65 100%);
    border-radius: 50px;
    padding: 10px 0 10px 20px;
}

.accor-2 .elementor-accordion .elementor-accordion-item .elementor-tab-title.elementor-active {
    background: -webkit-linear-gradient(45deg, #602ace 0%, #5882fd 100%);
    background: -o-linear-gradient(45deg, #602ace 0%, #5882fd 100%);
    background: linear-gradient(45deg, #602ace 0%, #5882fd 100%);
}

.accor-3 .elementor-accordion .elementor-accordion-item .elementor-tab-title {
    background-color: transparent;
    border-radius: 5px;
    padding: 9px 0 10px 20px;
}

.accor-3 .elementor-accordion .elementor-accordion-item .elementor-tab-title span {
    margin-right: 5px;
}

.accor-3 .elementor-accordion .elementor-accordion-item .elementor-tab-title.elementor-active {
    color: #fff !important;
}


/* ================================================================================================= */


/* Plan listing - elementor */

#tab2-content {
    display: none;
}

.tabs-plan {
    display: block !important;
}

.tabs-plan li {
    font-size: 16px;
    cursor: pointer;
    -webkit-box-shadow: 0 4px 35px -12px #5882fd;
    box-shadow: 0 4px 35px -12px #5882fd;
}

.tabs-plan li:first-child {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    margin-right: -3px;
}

.tabs-plan li:last-child {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    margin-left: -3px;
}

.tabs-plan li.active {
    color: #fff;
}

.tabs-plan-2 li,
.tabs-plan-2-1 li {
    -webkit-box-shadow: 0 4px 35px -12px #1eda65;
    box-shadow: 0 4px 35px -12px #1eda65;
}

.tabs-plan-3 li {
    -webkit-box-shadow: 0 4px 35px -12px #ff7762;
    box-shadow: 0 4px 35px -12px #ff7762;
}

.membership-plans-wrap .price-item {
    padding: 80px 20px 60px 20px;
    border: 4px solid rgba(88, 130, 253, 0.25);
    -webkit-box-shadow: 0 3px 40px -15px rgba(88, 130, 253, 0.25);
    box-shadow: 0 3px 40px -15px rgba(88, 130, 253, 0.25);
}

.membership-plans-wrap .price-item:hover {
    border: 4px solid rgba(88, 130, 253, 0.8);
}

.membership-plans-wrap .price-icon {
    left: 50%;
    top: 40px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0.08;
    color: #5882fd;
}

.membership-plans-wrap .price-title .price-title-lines {
    bottom: -15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 1px;
    width: 80%;
    opacity: 0.6;
    background-color: #5882fd;
}

.membership-plans-wrap .price-desc p {
    margin-bottom: 20px;
}

.membership-plans-wrap .price-desc ul {
    list-style: none;
    margin: 0;
    /* li:last-child {
                border-bottom: none;
            } */
}

.membership-plans-wrap .price-desc ul li {
    color: #555;
    font-family: 'Poppins', sans-serif;
    padding-bottom: 10px;
    margin-bottom: 15px;
    /* border-bottom: 1px solid #eaeaea; */
}

.membership-plans-wrap .price-desc .price-link {
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    cursor: pointer;
}

.membership-plans-wrap .price-desc .price-link:hover {
    background: #fff;
}

.membership-plans-wrap.membership-plans-2 .price-item,
.membership-plans-wrap.membership-plans-2-1 .price-item {
    border: 4px solid rgba(30, 218, 101, 0.4);
    -webkit-box-shadow: 0 3px 40px -18px rgba(30, 218, 101, 0.4);
    box-shadow: 0 3px 40px -18px rgba(30, 218, 101, 0.4);
}

.membership-plans-wrap.membership-plans-2 .price-item:hover,
.membership-plans-wrap.membership-plans-2-1 .price-item:hover {
    border: 4px solid rgba(30, 218, 101, 0.95);
}

.membership-plans-wrap.membership-plans-2 .price-icon,
.membership-plans-wrap.membership-plans-2-1 .price-icon {
    color: #1eda65;
}

.membership-plans-wrap.membership-plans-2 .price-title .price-title-lines,
.membership-plans-wrap.membership-plans-2-1 .price-title .price-title-lines {
    background-color: #1eda65;
}

.membership-plans-wrap.membership-plans-2 .price-head span,
.membership-plans-wrap.membership-plans-2-1 .price-head span {
    background-color: #fff;
}

.membership-plans-wrap.membership-plans-2 .price-head .list-price,
.membership-plans-wrap.membership-plans-2-1 .price-head .list-price {
    font-weight: 600;
}

.membership-plans-wrap.membership-plans-2 input.btn-3:hover,
.membership-plans-wrap.membership-plans-2-1 input.btn-3:hover {
    background-color: #fff;
}

.membership-plans-wrap.membership-plans-2-1 .price-item {
    border: 1px solid #ddd;
    border-radius: 10px;
}

.membership-plans-wrap.membership-plans-3 .price-item {
    border: 4px solid rgba(255, 119, 98, 0.35);
    -webkit-box-shadow: 0 3px 40px -15px rgba(255, 119, 98, 0.25);
    box-shadow: 0 3px 40px -15px rgba(255, 119, 98, 0.25);
}

.membership-plans-wrap.membership-plans-3 .price-item:hover {
    border: 4px solid rgba(255, 119, 98, 0.9);
}

.membership-plans-wrap.membership-plans-3 .price-icon {
    color: #ff7762;
}

.membership-plans-wrap.membership-plans-3 .price-title .price-title-lines {
    background-color: #ff7762;
}

.membership-plans-wrap.membership-plans-3 .price-content i.color-orange {
    color: #999;
}


/* ================================================================================================= */


/* subscribe form - element */

.subscribe .pxaas_mailchimp-form {
    text-align: center;
    /* &:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.18);
            z-index: 0;
            border-radius: 20px;
        } */
}

.subscribe .pxaas_mailchimp-form input {
    padding-right: 120px;
    z-index: 1;
    position: relative;
}

.subscribe .pxaas_mailchimp-form input:focus {
    outline: none;
    -webkit-box-shadow: 0 5px 15px -5px #fff;
    box-shadow: 0 5px 15px -5px #fff;
}

.subscribe .pxaas_mailchimp-form button {
    cursor: pointer;
    outline: none;
    padding: 7px 15px;
    border-radius: 50px;
    border: none;
    color: #fff;
    z-index: 2;
    margin-top: 20px;
}

.subscribe .pxaas_mailchimp-form .subscribe-message {
    /* display: block; */
    color: #fff;
    margin-top: 5px;
    margin-bottom: 0;
    text-align: left;
    text-indent: 15px;
    font-size: 14px;
}


/* ================================================================================================= */


/* Login - Element */

.welcome-page p,
.welcome-page-lost-pass p,
.welcome-page-register p {
    margin: 0 35% 0 0;
}

.welcome-page p.login-error,
.welcome-page-lost-pass p.login-error,
.welcome-page-register p.login-error {
    margin: 0;
    margin-bottom: 1.25rem;
    color: #b81c23;
    font-weight: 500;
}

.welcome-page p.login-error a,
.welcome-page-lost-pass p.login-error a,
.welcome-page-register p.login-error a {
    display: inline-block;
    font-size: 14px;
    color: #000;
    margin-right: 5px;
}

.welcome-page p.reg-success,
.welcome-page-lost-pass p.reg-success,
.welcome-page-register p.reg-success {
    color: #28a745;
}

.welcome-page form label,
.welcome-page-lost-pass form label,
.welcome-page-register form label {
    width: 100%;
    margin-bottom: 0;
    display: block;
}

.welcome-page form label.check,
.welcome-page-lost-pass form label.check,
.welcome-page-register form label.check {
    font-size: 1rem;
}

.welcome-page form input,
.welcome-page-lost-pass form input,
.welcome-page-register form input {
    text-indent: 40px;
    width: 60%;
    height: 50px;
    border-radius: 4px;
    border: 1px solid #88a1ea;
    outline: none;
    font-size: 15px;
}

.welcome-page form i,
.welcome-page-lost-pass form i,
.welcome-page-register form i {
    left: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.welcome-page form .filter-tags,
.welcome-page-lost-pass form .filter-tags,
.welcome-page-register form .filter-tags {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
}

.welcome-page form .filter-tags input[type='checkbox'],
.welcome-page-lost-pass form .filter-tags input[type='checkbox'],
.welcome-page-register form .filter-tags input[type='checkbox'] {
    height: auto;
    width: auto;
    font-size: initial;
    margin-right: 10px;
    margin-top: 2px;
}

.welcome-page form .filter-tags label,
.welcome-page-lost-pass form .filter-tags label,
.welcome-page-register form .filter-tags label {
    color: #737373;
}

.welcome-page a,
.welcome-page-lost-pass a,
.welcome-page-register a {
    font-size: 1rem;
}


/* ============================================= */


/* Register - Element */

.welcome-page-register p {
    margin: 0;
}

.welcome-page-register input[type="checkbox"] {
    width: auto;
    height: auto;
    font-size: initial;
    margin-right: 5px;
}

.welcome-page-register h5:after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
}

.welcome-page-register label {
    color: #737373;
}

.welcome-page-register a.social.google {
    background-color: #db402c;
}

.welcome-page-register a.social.facebook {
    background-color: #3b5b9e;
}

.welcome-page-register a.social.twitter {
    background-color: #4ea2e1;
}

.welcome-page-register a.social i {
    left: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}


/* ================================================================================================= */


/* contactform7 - element */

.contact-form7 .wpcf7-submit {
    padding: 11px 25px;
    color: #fff;
    display: inline-block;
    text-decoration: none;
    border-radius: 5px;
    position: relative;
    font-size: 14px;
    word-spacing: 2px;
    font-weight: 500;
    -webkit-transform: perspective(1px) translateX(0px);
    transform: perspective(1px) translateX(0px);
    -webkit-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
    overflow: hidden;
}

.contact-form7 .wpcf7-submit:hover {
    background-color: #fff;
    cursor: pointer;
    outline: none;
}

.contact-form7 span.wpcf7-not-valid-tip {
    font-size: 1rem;
}


/* ================================================================================================= */


/* Carousel - Element */

.col-md-4 .vision-dots .dots {
    cursor: pointer;
}

.col-md-4 .vision-dots .dots i {
    width: 60px;
    height: 60px;
    line-height: 60px;
}

.col-md-4 .vision-dots .dots.active i {
    color: #fff;
}

.col-md-4 .vision-dots .dots:last-child {
    margin-bottom: 0;
}

.col-md-5 .vision-dots .dots {
    cursor: pointer;
    position: relative;
}

.col-md-5 .vision-dots .dots h4.p-absolute {
    width: 60px;
    height: 60px;
    line-height: 60px;
}

.col-md-5 .vision-dots .dots.active h4.p-absolute {
    color: #fff;
}

.col-md-5 .vision-dots .dots:after {
    content: "";
    position: absolute;
    left: 30px;
    top: 50px;
    height: 100%;
    width: 2px;
    z-index: -1;
}

.col-md-5 .vision-dots .dots:last-child:after {
    content: none;
}

.col-md-12 .vision-dots .dots {
    cursor: pointer;
}

.col-md-12 .vision-dots .dots i {
    width: 60px;
    height: 60px;
    line-height: 60px;
}

.col-md-12 .vision-dots .dots:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: scale(0) translateX(-50%);
    -ms-transform: scale(0) translateX(-50%);
    transform: scale(0) translateX(-50%);
    border-top: 30px solid #5882fd;
    border-bottom: 30px solid transparent;
    border-right: 30px solid transparent;
    border-left: 30px solid transparent;
    opacity: 0;
    -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.col-md-12 .vision-dots .dots h4.p-absolute {
    display: none;
}

.col-md-12 .vision-dots .dots p {
    margin-bottom: 0;
}

.col-md-12 .vision-dots .dots .pl-80px {
    padding-left: 0;
}

.col-md-12 .vision-dots .dots.active {
    color: #fff;
}

.col-md-12 .vision-dots .dots.active p {
    color: #fff;
}

.col-md-12 .vision-dots .dots.active:after {
    top: 100%;
    -webkit-transform: scale(1) translateX(-50%);
    -ms-transform: scale(1) translateX(-50%);
    transform: scale(1) translateX(-50%);
    opacity: 1;
}


/* ================================================================================================= */


/* Course - element */

.course-element .course-item {
    /* &:last-child:after {
            content: none;
        } */
}

.course-element .course-item span {
    height: 90px;
    width: 90px;
    line-height: 90px;
    border: 2px solid rgba(88, 130, 253, 0.4);
}

.course-element .course-item:after {
    content: "";
    position: absolute;
    right: 0;
    top: 40px;
    background-color: #edf5ff;
    height: 10px;
    width: 100%;
    z-index: -1;
}

.course-element .course-item:hover span {
    color: #fff;
}

.course-element .course-item:hover span:before {
    -webkit-animation: bulb 1s 1 forwards;
    animation: bulb 1s 1 forwards;
    content: "";
    position: absolute;
    right: -8%;
    top: -8%;
    height: 116%;
    width: 116%;
    border-radius: 50%;
    border: 8px solid #5882fd;
    z-index: 0;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
}

.course-element .course-item p {
    margin-bottom: 10px;
}

.vision-dots-3 .dots {
    min-width: 200px;
}

@-webkit-keyframes bulb {
    0% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
        opacity: 0.55;
    }
    100% {
        -webkit-transform: scale(1.4);
        transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes bulb {
    0% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
        opacity: 0.55;
    }
    100% {
        -webkit-transform: scale(1.4);
        transform: scale(1.4);
        opacity: 0;
    }
}

.course-element-2 .course-item span {
    height: 80px;
    width: 80px;
    line-height: 80px;
}

.course-element-2 .course-item:after {
    content: "";
    position: absolute;
    top: 45px;
    left: 0;
    height: 1px;
    width: 100%;
    border: 1px dashed #ffa500;
    z-index: -1;
}

.course-element-2 .course-item:first-child:after {
    width: 50%;
    right: 0;
    left: auto;
}

.course-element-2 .course-item:last-child:after {
    width: 50%;
}

.course-element-2 .course-item:hover span {
    color: #fff;
}

.course-element-2 .course-item:hover span:before {
    -webkit-animation: bulb 1s 1 forwards;
    animation: bulb 1s 1 forwards;
    content: "";
    position: absolute;
    right: -8%;
    top: -8%;
    height: 116%;
    width: 116%;
    border-radius: 10px;
    border: 8px solid rgba(255, 119, 98, 0.9);
    z-index: -1;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
}

.course-element-2 .course-item p {
    margin-bottom: 10px;
}


/* ================================================================================================= */


/* Image - Element */

.img-video img {
    border-radius: 10px !important;
}

.img-video .play-trigger {
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    height: 75px;
    width: 75px;
    line-height: 75px;
}

.img-video .play-trigger:after {
    content: "";
    position: absolute;
    left: -10%;
    top: -10%;
    height: 120%;
    width: 120%;
    border: 6px solid #fff;
    border-radius: 50%;
    z-index: -1;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0;
    -webkit-animation: bulb 1s infinite;
    animation: bulb 1s infinite;
}

.img-show-title:hover img {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}

.img-show-title-video:hover img {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}


/* ================================================================================================= */


/* Post - Element */

.blog-posts .blog-box .pos-author a {
    color: #737373;
}

.blog-posts .blog-box .pos-tags a {
    color: #333;
}


/* ================================================================================================= */


/* partner */

.partner-wrap img {
    opacity: 0.5;
}

.partner-wrap img:hover {
    opacity: 1;
}


/* ================================================================================================= */


/* Progress Bar - ELEMENT */

.elementor-widget-progress .elementor-title {
    font-size: 17px !important;
    line-height: 20px !important;
    font-weight: 600 !important;
    font-family: 'Fira Sans', sans-serif !important;
}

.elementor-widget-progress .elementor-progress-wrapper {
    height: 5px !important;
    width: 90%;
    border-radius: 50px !important;
    margin-top: .5rem;
}

.elementor-widget-progress .elementor-progress-bar {
    position: relative;
}

.elementor-widget-progress .elementor-progress-percentage {
    position: absolute;
    right: -15px;
    top: -25px;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
}


/* ================================================================================================= */


/* address-Element */

.address i {
    width: 80px;
    height: 80px;
    line-height: 80px;
}


/* ================================================================================================= */


/* member description - element */

.member-desc img {
    height: 60px !important;
    border-radius: 50% !important;
}

.member-desc span p {
    color: inherit;
    display: inline;
}


/* ================================================================================================= */


/* Project Information - Element */

.prject-info p a {
    color: inherit;
}

.prject-info h5.mb-5px {
    font-weight: 700;
}

.prject-share .share-holder span {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 10px;
}

.prject-share a {
    margin-right: 10px;
    margin-bottom: 10px;
    display: inline-block;
}


/* ================================================================================================= */


/* Form - search */

.search-page .wp-search-form input[type=text] {
    border: 1px solid rgba(88, 130, 253, 0.6);
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 10px 50px 10px 10px;
    width: 50%;
}

.search-page .wp-search-form .search-submit {
    cursor: pointer;
    padding: 11px 25px;
    color: #fff;
    display: inline-block;
    text-decoration: none;
    border-radius: 5px;
    position: relative;
    font-size: 14px;
    word-spacing: 2px;
    font-weight: 500;
    -webkit-transform: perspective(1px) translateX(0px);
    transform: perspective(1px) translateX(0px);
    -webkit-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
    overflow: hidden;
}

.search-page .wp-search-form .search-submit i {
    margin-right: 5px;
}

.search-page .wp-search-form .search-submit:hover {
    background-color: transparent;
}


/* =============================================== */


/* Page search */

.search-page .right-sidebar .wp-search-form input[type=text] {
    padding-left: 0;
}

.search-page .right-sidebar .wp-search-form .search-submit {
    background-color: transparent;
    border: none;
    color: #fff;
}


/* ================================================================================================= */

.pxaas-home-page h1 {
    width: 100%;
}

hr {
    background-color: rgba(0, 0, 0, 0.1);
}

.page-fullwidth-template article,
.page-sidebar-left-template article,
.page-sidebar-no-template article,
.page-sidebar-right-template article {
    margin-bottom: 0;
}


/* 404 */

.error-wrap .page-404 h1 {
    display: none;
}

.error-wrap .page-404 form input[type=text] {
    border: 1px solid rgba(88, 130, 253, 0.6);
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 10px;
    width: 100%;
    display: block;
}

.error-wrap .page-404 form button.search-submit {
    cursor: pointer;
    padding: 11px 25px;
    color: #fff;
    display: inline-block;
    text-decoration: none;
    border-radius: 5px;
    position: relative;
    font-size: 14px;
    word-spacing: 2px;
    font-weight: 500;
    -webkit-transform: perspective(1px) translateX(0px);
    transform: perspective(1px) translateX(0px);
    -webkit-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
    overflow: hidden;
}

.error-wrap .page-404 form button.search-submit i {
    display: none;
}

.error-wrap .page-404 form button.search-submit:hover {
    background-color: transparent;
}

.error-wrap .pattern {
    left: 0;
    bottom: 0;
    height: 200px;
    width: 100%;
    background-image: url("/wp-content/themes/pxaas/assets/images/bb.png");
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}


/* protected-sec-wrap */

.protected-sec-wrap .post-password-fields {
    position: relative;
    padding-bottom: 30px;
}

.protected-sec-wrap .post-password-fields input[type=password] {
    border: 1px solid rgba(88, 130, 253, 0.6);
    border-radius: 5px 0 0 5px;
    margin-bottom: 20px;
    padding: 10px;
    width: 100%;
    display: block;
}

.protected-sec-wrap .post-password-fields label {
    width: 50%;
}

.protected-sec-wrap .post-password-fields input[type=submit] {
    position: absolute;
    padding: 10px;
    border-radius: 0 5px 5px 0;
    border: 1px solid rgba(88, 130, 253, 0.6);
    margin-left: -1px;
}

.protected-sec-wrap .pattern {
    left: 0;
    bottom: 0;
    height: 200px;
    width: 100%;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}

.right-sidebar form button {
    color: #fff;
    width: 0px;
}

.right-sidebar form button i {
    text-indent: -20px;
}

.box-widget-item-header {
    margin-bottom: 20px;
}

.box-widget-item {
    margin-bottom: 50px;
    border-radius: 5px;
    padding: 30px 15px;
    border: 1px solid #e5e5e5;
}

.widget-title {
    font-size: 21px;
    line-height: 26px;
    margin-bottom: 30px;
    position: relative;
}

.pxaas-footer .widget-title {
    margin-bottom: 20px;
}

.right-sidebar .wp-search-form {
    position: relative;
}

.right-sidebar .wp-search-form input[type=text] {
    border: none;
    text-indent: 10px;
    width: 100%;
    height: 50px;
    border-bottom: 1px solid #88a1ea;
    font-size: 15px;
    display: block;
    border-radius: inherit;
}

.right-sidebar .wp-search-form .search-submit {
    right: 0;
    top: 10px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: absolute;
    padding: 0px 20px 0px 20px;
    color: #fff;
}

.right-sidebar .wp-search-form .search-submit i {
    font-size: 20px;
}

.right-sidebar .wp-search-form .search-submit:hover {
    color: #fff;
}

.widget_categories ul,
.widget_recent_entries ul,
.widget_recent_comments ul,
.widget_archive ul,
.widget_meta ul,
.widget_pages ul,
.widget_rss ul,
.widget_calendar ul,
.widget_text ul,
.pxaas_instagram_feed ul,
.open-table-widget ul,
.widget_archive ul,
.widget_categories ul {
    list-style: none;
    margin-left: 0;
}

.widget_categories ul li,
.widget_recent_entries ul li,
.widget_recent_comments ul li,
.widget_archive ul li,
.widget_meta ul li,
.widget_pages ul li,
.widget_rss ul li,
.widget_calendar ul li,
.widget_text ul li,
.pxaas_instagram_feed ul li,
.open-table-widget ul li,
.widget_archive ul li,
.widget_categories ul li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    /* border-bottom: 1px solid #ddd; */
    font-weight: 400;
    /* &:last-child {
                border-bottom: none;
            } */
}

.widget_categories ul li a,
.widget_recent_entries ul li a,
.widget_recent_comments ul li a,
.widget_archive ul li a,
.widget_meta ul li a,
.widget_pages ul li a,
.widget_rss ul li a,
.widget_calendar ul li a,
.widget_text ul li a,
.pxaas_instagram_feed ul li a,
.open-table-widget ul li a,
.widget_archive ul li a,
.widget_categories ul li a {
    color: #666;
}

.widget_categories ul li ul,
.widget_recent_entries ul li ul,
.widget_recent_comments ul li ul,
.widget_archive ul li ul,
.widget_meta ul li ul,
.widget_pages ul li ul,
.widget_rss ul li ul,
.widget_calendar ul li ul,
.widget_text ul li ul,
.pxaas_instagram_feed ul li ul,
.open-table-widget ul li ul,
.widget_archive ul li ul,
.widget_categories ul li ul {
    margin-left: 20px;
    margin-top: 20px;
}

.widget_categories ul li ul li:last-child,
.widget_recent_entries ul li ul li:last-child,
.widget_recent_comments ul li ul li:last-child,
.widget_archive ul li ul li:last-child,
.widget_meta ul li ul li:last-child,
.widget_pages ul li ul li:last-child,
.widget_rss ul li ul li:last-child,
.widget_calendar ul li ul li:last-child,
.widget_text ul li ul li:last-child,
.pxaas_instagram_feed ul li ul li:last-child,
.open-table-widget ul li ul li:last-child,
.widget_archive ul li ul li:last-child,
.widget_categories ul li ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.widget_archive li,
.widget_categories li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.widget_archive li ul,
.widget_categories li ul {
    -webkit-box-flex: 0;
    -webkit-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
}

.widget_archive li span,
.widget_categories li span {
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
    margin-left: auto;
}

.widget_recent_comments ul {
    margin-left: 0;
}

.widget_recent_comments ul li span {
    margin-left: 0 !important;
}

.widget_nav_menu ul {
    list-style: none;
    margin-left: 0;
}

.widget_nav_menu ul li {
    padding-top: 10px;
    margin: 0;
    margin-top: 10px;
}

.widget_nav_menu ul li a {
    color: #666;
    font-weight: 400;
}

.widget_nav_menu ul li:last-child {
    border-bottom: none;
}

.widget_nav_menu ul li ul.sub-menu {
    margin: 0;
}

.widget_nav_menu ul li ul.sub-menu li {
    border-top: 1px solid #ddd;
    padding-left: 10px;
    margin-top: 10px;
}

.widget_nav_menu ul li+li {
    border-top: 1px solid #ddd;
}

.widget_rss ul li span {
    margin-left: inherit !important;
}

.pxaas_recent_posts ul {
    list-style: none;
    margin-left: 0;
}

.pxaas_recent_posts ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.pxaas_recent_posts ul li .widget-posts-img {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.333333%;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding-right: 15px;
}

.pxaas_recent_posts ul li .widget-posts-descr {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.pxaas_recent_posts ul li .widget-posts-descr .widget-posts-date {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.pxaas_recent_posts ul li .widget-posts-descr .widget-posts-date .post-date,
.pxaas_recent_posts ul li .widget-posts-descr .widget-posts-date a {
    width: 50%;
    color: #737373;
}

.widget-posts-descr h5 {
    font-weight: 500;
}


/* ================================================================================================= */


/* tag */

.tagcloud a,
.tags-socials a {
    font-weight: 400;
    border-radius: 5px;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    /* background-color: #edf5ff; */
    /* color: #5882fd; */
    margin: 0 10px 10px 0;
    padding: 5px 15px;
    padding-bottom: 5px;
    padding-top: 5px;
    padding-left: 15px;
    display: inline-block;
}

.tagcloud a:hover,
.tags-socials a:hover {
    /* background-color: #5882fd; */
    color: #fff;
}

.tags-socials {
    margin-top: 30px;
}

.tags-socials:before {
    content: " ";
    display: table;
}


/* ================================================================================================= */


/* woocommerce-product-search */

.woocommerce-product-search {
    position: relative;
}

.woocommerce-product-search .search-field {
    width: 90%;
    padding: 5px 10px;
    background: #f6fbff;
    color: #8da0bf;
    border-bottom: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-left: 20px;
    margin: 0;
    border-radius: 40px;
    margin-top: 10px;
}

.woocommerce-product-search .search-field:focus {
    border: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.woocommerce-product-search button {
    position: absolute;
    top: 50%;
    margin-top: -27px;
    right: -10px;
    padding: 13px 5px;
    color: #fff;
    text-transform: capitalize;
    background: #328fd1;
    text-align: center;
    font-weight: 400;
    border-radius: 50px;
}

.woocommerce-product-search button:focus {
    outline: none;
}


/* ================================================================================================= */


/* Categories */

.woocommerce-widget-layered-nav-list li:hover a {
    color: #338fd1;
}

.count {
    font-weight: 400;
    color: #338fd1;
    float: right;
}

.pxaas-footer .widget_nav_menu ul,
.pxaas-footer .widget_categories ul {
    margin-left: 0;
}

.pxaas-footer .widget_nav_menu ul li,
.pxaas-footer .widget_categories ul li {
    border-bottom: none;
    padding-bottom: 0;
    position: relative;
    padding-top: 0;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 600;
}

.pxaas-footer .widget_nav_menu ul li a,
.pxaas-footer .widget_categories ul li a {
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    color: #333;
    font-size: 17px;
    line-height: 20px;
    font-weight: 600;
}

.pxaas-footer .widget_nav_menu ul li a:hover,
.pxaas-footer .widget_categories ul li a:hover {
    padding-left: 5px;
}

.pxaas-footer .widget_nav_menu ul li .sub-menu,
.pxaas-footer .widget_categories ul li .sub-menu {
    display: none;
}

.pxaas-footer .widget_nav_menu ul li:before,
.pxaas-footer .widget_categories ul li:before {
    font-family: 'FontAwesome';
    content: "\f105";
    font-size: 17px;
    line-height: 20px;
    margin-right: 5px;
}

.pxaas-footer .widget_nav_menu ul li+li,
.pxaas-footer .widget_categories ul li+li {
    border-top: none;
}

.pxaas-footer .widget_media_image {
    margin-bottom: 20px;
}

.pxaas-footer a.social,
.pxaas-footer .fa.address {
    height: 35px;
    width: 35px;
    line-height: 35px;
}

.pxaas-footer .widget-title:after {
    content: none;
}

.footer-widgets .container {
    padding: 80px 15px;
}

.footer-widgets .container .dynamic-footer-widget {
    margin: 25px 0;
}

#return-to-top {
    text-align: center;
}

#return-to-top i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    z-index: 9999;
    cursor: pointer;
    position: fixed;
    right: 15px;
    bottom: 10px;
    -webkit-box-shadow: 0 3px 35px -9px #000;
    box-shadow: 0 3px 35px -9px #000;
}

.pxaas-top-section .img-bot-sec {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 200px;
    width: 100%;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}


/* breadcrumd pxaas ************************************************/

.content-top-section .breadcrumbs {
    width: 100%;
    margin-bottom: 20px;
    max-width: 600px;
}

.content-top-section .breadcrumbs a.bread-item,
.content-top-section .breadcrumbs span.bread-item a {
    display: none;
}

.content-top-section .breadcrumbs span.bread-item {
    /* color: #5882fd; */
    font-size: 44px;
    line-height: 49px;
    font-weight: 500;
    margin-bottom: 20px;
}

.post-like i {
    margin-right: 5px;
}

.post-author a,
.post-like a,
.comment-num a,
.post-cat a,
.sing-tags a {
    color: #333;
}

.read {
    font-size: 1rem;
}

.read .line {
    left: -35px;
    bottom: 8px;
    width: 50px;
    height: 1px;
}

.read:hover {
    padding-left: 60px;
}

.read:hover .line {
    left: 0;
}

.blog-box:hover .post-media-wrap img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}


/* SINGLE POST ************************************************/

.post-single {
    margin-bottom: 0;
}

.resp-video {
    margin-bottom: 0 !important;
}


/* NEXT, PREVIOUS ************************************************/

.post-nav {
    padding-bottom: 50px;
    margin-bottom: 50px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.post-nav .icon-nav {
    display: none;
}

.post-nav a {
    display: block;
    width: 50%;
}

.post-nav a .text-nav p {
    margin-bottom: 0px;
}

.post-nav a .text-nav h4 {
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.post-nav a.prev-post-link {
    padding-right: 10px;
}

.post-nav a.next-post-link {
    padding-left: 10px;
}

.next-post-link {
    text-align: right;
    margin-left: auto;
}


/* .form-submit {
    padding-left: 15px;
} */

.post-content-wrap-title {
    margin-bottom: 25px;
}

.elementor-section.elementor-section-boxed>.elementor-container {
    /*  padding-left: 15px;
    padding-right: 15px; */
}

.elementor-section.elementor-section-boxed>.elementor-container .elementor-container {
    padding-left: 0;
    padding-right: 0;
}

.entry-title {
    margin-bottom: 25px;
}

.post-content-wrap-title .entry-title {
    margin-bottom: 10px;
}

hr.mb-50px {
    margin-bottom: 30px;
}

.related-post-name h4 {
    position: relative;
}

.post-nav {
    padding-bottom: 30px;
}

.pt-200px {
    padding-top: 200px;
}

.comment-number h2:after,
.widget-title:after,
.comment-respond .comment-reply-title:after,
.related-post-name h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    height: 3px;
    width: 50px;
}

.comment-respond .comment-reply-title,
.comment-number h2 {
    margin-bottom: 30px;
    font-size: 22px;
    line-height: 29px;
    position: relative;
}

.comments-wrap .comment {
    position: relative;
    border: 1px solid rgba(88, 130, 253, 0.25);
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 15px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.comments-wrap .comment .comment-avatar {
    position: absolute;
}

.comments-wrap .comment .comment-avatar img {
    width: 80px;
    border-radius: 50%;
}

.comments-wrap .comment .comment-reply a,
.comments-wrap .comment .comment-reply i {
    color: #fff;
}

.comments-wrap .comment .comment-text {
    padding-left: 95px;
}

.comments-wrap .comment .comment {
    margin-bottom: 0;
    margin-top: 30px;
}

.comment-comment {
    margin-top: 20px;
    margin-bottom: 10px;
}

.pingback {
    margin-bottom: 20px;
}

.comment-respond .text-center {
    display: none;
}

.comment-respond .has-icon input {
    text-indent: 40px;
    width: 60%;
    height: 50px;
    border-radius: 4px;
    border: 1px solid #88a1ea;
    outline: none;
    font-size: 15px;
}

.comment-respond .has-icon i {
    left: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.comment-respond textarea {
    text-indent: 25px;
    width: 60%;
    height: 200px;
    border-radius: 4px;
    border: 1px solid #88a1ea;
    outline: none;
    font-size: 15px;
    padding: 15px 15px;
}

.comment-respond .i-texta {
    left: 25px;
    top: 25px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.comment-respond .form-submit .main-btn:hover {
    background-color: #fff;
}

.comment-item+.comment-respond {
    margin-bottom: 50px;
}

.comment-item+.comment-respond .form-submit {
    margin-bottom: 0;
}

.comment-haschild .comment-item+.comment-respond {
    margin-bottom: 0;
    margin-top: 30px;
}

.comment-haschild .comment-item+.comment-respond .form-submit {
    margin-bottom: 0;
}

.post-single strong {
    font-size: 18px;
    font-weight: 600;
    font-family: 'Fira Sans', sans-serif;
    color: #212529;
}

.post-single blockquote {
    margin-bottom: 15px;
    padding: 15px;
}

.post-single blockquote p {
    font-family: 'Fira Sans', sans-serif;
    color: #212529;
    font-size: 1rem;
    text-indent: 25px;
    position: relative;
    margin-bottom: 0;
}

.post-single blockquote p:before {
    font-family: 'FontAwesome';
    content: "\f10d";
    position: absolute;
    top: 0;
    left: -25px;
}

.post-single ul {
    margin-bottom: 30px;
    padding-left: 15px;
    margin-left: 0;
}

.post-single ul li {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.post-single ul li:last-child {
    margin-bottom: 0;
}

.share-holder span {
    font-size: 21px;
    line-height: 26px;
    font-weight: 500;
}

.share-holder a.share-icon {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    padding: 0;
}

.share-holder a.share-icon:before {
    font-family: FontAwesome;
    font-style: normal;
    text-decoration: inherit;
}

.share-holder a.share-icon:hover {
    background-color: #333;
}

.share-holder .share-icon-facebook:before {
    content: "\f09a";
}

.share-holder .share-icon-pinterest:before {
    content: "\f0d2";
}

.share-holder .share-icon-googleplus:before {
    content: "\f0d5";
}

.share-holder .share-icon-twitter:before {
    content: "\f099";
}

.share-holder .share-icon-linkedin:before {
    content: "\f08c";
}

.page-links {
    margin-bottom: 10px;
}

.page-links span.page-links-title {
    width: auto;
    height: auto;
    line-height: normal;
    border: none;
    display: initial;
    background: none;
    color: inherit;
    margin-right: 5px;
}

.page-links span {
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    display: inline-block;
    border-radius: 4px;
    color: #fff;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.page-links a:hover span {
    color: #fff;
}

.edit-link {
    margin-bottom: 10px;
}

.format-gallery .single-slider {
    position: relative;
}

.format-gallery .single-slider .owl-nav,
.format-gallery .single-slider .owl-dots {
    position: absolute;
}

.format-gallery .single-slider .owl-nav {
    width: 100%;
    top: 50%;
    margin-top: -14px;
}

.format-gallery .single-slider .owl-nav .owl-prev,
.format-gallery .single-slider .owl-nav .owl-next {
    position: absolute;
}

.format-gallery .single-slider .owl-nav .owl-prev {
    left: 25px;
}

.format-gallery .single-slider .owl-nav .owl-next {
    right: 25px;
}

.format-gallery .single-slider .owl-dots {
    position: absolute;
    bottom: 0;
    margin: auto;
    width: 100%;
}

.format-audio iframe {
    width: 100%;
}


/*----------------------------------------------------
					load-wrapp
----------------------------------------------------*/

.load-wrapp {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #fff;
    color: #fff;
    left: 0;
    top: 0;
    z-index: 99999;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.load-wrapp .wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.load-wrapp .wrap ul.dots-box {
    position: relative;
    width: 80px;
    height: 80px;
    list-style: none;
}

.load-wrapp .wrap ul.dots-box li.dot {
    width: 100%;
    height: 100%;
    border-radius: 52px;
    top: 0;
    left: 0;
    z-index: 99;
    text-indent: -9999px;
    display: block;
    position: absolute;
    border: none;
}

.load-wrapp .wrap ul.dots-box li.dot span {
    background: #5882fd;
    bottom: 0px;
    left: 50%;
    margin-left: -2px;
    display: block;
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 10px;
}

.load-wrapp .wrap ul.dots-box li.dot {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-name: orbit;
    animation-name: orbit;
    -webkit-animation-duration: 4s;
    animation-duration: 4s;
}

.load-wrapp .wrap ul.dots-box li:nth-child(2) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.load-wrapp .wrap ul.dots-box li:nth-child(3) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.load-wrapp .wrap ul.dots-box li:nth-child(4) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.load-wrapp .wrap ul.dots-box li:nth-child(5) {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

@-webkit-keyframes orbit {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        opacity: 1;
    }
    5% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 1;
    }
    45% {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg);
        opacity: 1;
    }
    55% {
        -webkit-transform: rotate(540deg);
        transform: rotate(540deg);
        opacity: 1;
    }
    75% {
        -webkit-transform: rotate(630deg);
        transform: rotate(630deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: rotate(720deg);
        transform: rotate(720deg);
        opacity: 0;
    }
    100% {
        -webkit-transform: rotate(720deg);
        transform: rotate(720deg);
        opacity: 0;
    }
}

@keyframes orbit {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        opacity: 1;
    }
    5% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 1;
    }
    45% {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg);
        opacity: 1;
    }
    55% {
        -webkit-transform: rotate(540deg);
        transform: rotate(540deg);
        opacity: 1;
    }
    75% {
        -webkit-transform: rotate(630deg);
        transform: rotate(630deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: rotate(720deg);
        transform: rotate(720deg);
        opacity: 0;
    }
    100% {
        -webkit-transform: rotate(720deg);
        transform: rotate(720deg);
        opacity: 0;
    }
}


/*----------------------------------------------------
					End load-wrapp
----------------------------------------------------*/

.img-decor {
    position: relative;
}

.img-decor .vc_figure:after,
.img-decor .vc_figure:before {
    content: '';
    width: 80%;
    left: 10%;
    height: 60px;
    position: absolute;
    margin: 0px auto;
}

.img-decor .vc_figure:before {
    top: -60px;
}

.img-decor .vc_figure:after {
    bottom: -60px;
}

.cth_column-gap-1 .vc_column_container>.vc_column-inner {
    padding-left: 1px;
    padding-right: 1px;
}

.cth_column-gap-2 .vc_column_container>.vc_column-inner {
    padding-left: 2px;
    padding-right: 2px;
}

.cth_column-gap-5 .vc_column_container>.vc_column-inner {
    padding-left: 5px;
    padding-right: 5px;
}

.cth_column-gap-10 .vc_column_container>.vc_column-inner {
    padding-left: 10px;
    padding-right: 10px;
}

.cth_column-gap-15 .vc_column_container>.vc_column-inner {
    padding-left: 15px;
    padding-right: 15px;
}

.cth_column-gap-20 .vc_column_container>.vc_column-inner {
    padding-left: 20px;
    padding-right: 20px;
}

.pxaas_addons-like-button+.pxaas-like-loader {
    display: none;
}

.pxaas_addons-like-button.do-process+.pxaas-like-loader {
    display: inline-block;
}

.backgr-fix {
    background-attachment: fixed !important;
}

.main-overlay {
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
    background: rgba(0, 0, 0, 0.7);
}


/*-- Preloader css start --*/


/* #preloader {
        background-color: #ffffff;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 2147483647;
    width: 100%;
    height: 100%;
}
#status {
    background-position: center center;
    background-repeat: no-repeat;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
} */

.media-container-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.media-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-container {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    line-height: 0;
    z-index: 1;
}

.video-container video {
    width: 100%;
}

.video-iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden !important;
    top: 0;
    left: 0;
    padding: 0 !important;
}

.video-iframe iframe {
    position: absolute;
    top: -75px;
    left: 50%;
    width: 100%;
    height: 100%;
    display: block;
}

.media-container.video-parallax {
    height: 120%;
    top: -10%;
}

.resp-video {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    margin-bottom: 20px;
}

.resp-video iframe,
.resp-video object,
.resp-video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-holder iframe {
    position: absolute;
    top: -75px;
    left: 50%;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
}

.video-item h3 {
    font-size: 34px;
    color: #fff;
    float: left;
    width: 100%;
    font-weight: 700;
    padding-bottom: 20px;
}

.video-item p {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-style: italic;
    color: #eee;
    text-align: left;
    font-size: 13px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.video-item a {
    display: inline-table;
    margin-top: 30px;
}

.navbar .navbar-nav .menu-item .sub-menu li a:before {
    content: '';
    padding-right: 0;
}

.list-dot,
.cthlist-dot .cthlist-item-icon {
    display: inline-block;
    height: 4px;
    width: 4px;
    vertical-align: middle;
    position: relative;
    border-radius: 50%;
    margin-right: 15px;
    text-indent: -9999px;
}

.list-dot:after,
.cthlist-dot .cthlist-item-icon:after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    height: 10px;
    width: 10px;
    background-color: rgba(88, 130, 253, 0.4);
    border-radius: 50%;
    z-index: -1;
}

.how-work-s1 .how-box:after {
    content: '';
    position: absolute;
    right: -60%;
    top: 55px;
    width: 100%;
    height: 75px;
    background-repeat: no-repeat;
    background-image: url(/wp-content/themes/pxaas/assets/images/how-work-2.png);
    -webkit-background-size: contain;
    background-size: contain;
    z-index: -1;
}

.how-work-s1 .how-box+.how-box:after {
    top: 0;
    background-image: url(/wp-content/themes/pxaas/assets/images/how-work-1.png);
}

.how-work-s1 .how-box:last-child:after {
    content: none;
}

.how-work-s1 .how-box .how-icon i {
    height: 100px;
    width: 100px;
    line-height: 100px;
    background-color: #e7edff;
}

.how-work-s1 .how-box:hover .how-icon i {
    background-color: #5882fd;
    color: #fff;
}

.how-work-s1 .how-box .how-icon:after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    display: block;
    height: 120px;
    width: 120px;
    border-radius: 50%;
    border: 1px dashed rgba(88, 130, 253, 0.8);
}

.how-work-s1 .how-box .how-icon .how-number {
    top: -5px;
    right: -5px;
    height: 35px;
    width: 35px;
    line-height: 33px;
    z-index: 1;
    border: 2px solid #fff;
}

.cthlist-item {
    margin-bottom: 10px;
    line-height: 23px;
    font-weight: 400;
    color: #737373;
    font-family: 'Poppins', sans-serif;
}

.cthlist-icon .cthlist-item-icon {
    margin-right: 15px;
}

.cthlist-icon .cthlist-item-icon i {
    font-size: 12px;
}

.subscribe .pxaas_mailchimp-form input {
    padding: 13px 20px;
}

.subscribe-agree-label {
    display: block;
    margin-top: 15px;
    color: #eee;
}

.subscribe-agree-label a {
    color: #eee;
    text-decoration: underline !important;
}

.light-bg .subscribe-agree-label {
    color: #737373;
}

.light-bg .subscribe-agree-label a {
    color: #737373;
}

#subscribe-agree-checkbox {
    margin-right: 5px;
}


/* // WordPress Admin Bar  */

.admin-bar header.navbar {
    top: 32px;
}

@media only screen and (max-width: 1199px) {
    /* Elementor */
    .elementor-section.elementor-section-boxed>.elementor-container {
        max-width: 960px !important;
    }
}

@media only screen and (max-width: 991px) {
    /* Menu */
    .navbar .container {
        padding: 20px 0px;
    }
    .navbar.navbar-colored .container {
        padding: 10px 0px;
    }
    .navbar .navbar-collapse {
        margin-top: 10px;
        max-height: 440px;
        overflow-y: scroll;
    }
    .navbar.navbar-colored .navbar-nav .menu-item,
    .navbar .navbar-nav .menu-item {
        padding: 0px 20px;
    }
    .navbar.navbar-colored .navbar-nav .menu-item a,
    .navbar .navbar-nav .menu-item a {
        position: relative;
        padding: 10px;
        display: inline-block;
        width: 100%;
    }
    .navbar.navbar-colored .navbar-nav .menu-item.menu-item-has-children a:after,
    .navbar .navbar-nav .menu-item.menu-item-has-children a:after {
        position: absolute;
        right: 10px;
    }
    .navbar.navbar-colored .navbar-nav .menu-item .sub-menu,
    .navbar .navbar-nav .menu-item .sub-menu {
        position: relative;
        margin: 0px;
        padding: 0;
        border-radius: 0px;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        width: 100%;
        overflow: hidden;
        height: 0px;
        -webkit-transition: max-height 0.5s, opacity 0.2s 0.1s;
        -o-transition: max-height 0.5s, opacity 0.2s 0.1s;
        transition: max-height 0.5s, opacity 0.2s 0.1s;
        max-height: 0;
        display: block;
        overflow: hidden;
        opacity: 0;
    }
    .navbar.navbar-colored .navbar-nav .menu-item .sub-menu li,
    .navbar .navbar-nav .menu-item .sub-menu li {
        padding: 0;
    }
    .navbar.navbar-colored .navbar-nav .menu-item .sub-menu .sub-menu,
    .navbar .navbar-nav .menu-item .sub-menu .sub-menu {
        position: relative;
        left: 0;
        padding-left: 15px;
    }
    .navbar.navbar-colored .navbar-nav .menu-item.show>.sub-menu,
    .navbar .navbar-nav .menu-item.show>.sub-menu {
        height: auto;
        max-height: 230px;
        overflow-y: scroll;
        display: block;
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        visibility: visible;
    }
    .navbar.navbar-special .navbar-toggler span {
        color: #fff;
    }
    .navbar.navbar-special.navbar-colored .navbar-toggler span {
        color: #333;
    }
    .navbar.navbar-special .navbar-collapse {
        background-color: #fff;
    }
    .navbar.navbar-special .navbar-collapse .navbar-nav li a {
        color: #333;
    }
    .navbar.navbar-special-transparent .navbar-collapse {
        background-color: #fff;
    }
    .navbar.navbar-special-transparent .navbar-collapse .navbar-nav li a {
        color: #333;
    }
    .navbar .nav-item.log-in,
    .navbar .nav-item.log-out {
        display: none;
    }
    /* Elementor */
    .elementor-section.elementor-section-boxed>.elementor-container {
        max-width: 720px !important;
    }
}

@media screen and (max-width: 782px) {
    .admin-bar header.navbar {
        position: absolute;
        top: 46px;
    }
}

@media only screen and (max-width: 767px) {
    /* Menu */
    .navbar .phone-nav-menu ul.sub-menu {
        height: 100% !important;
        max-height: 100% !important;
        display: block !important;
        opacity: 1 !important;
        overflow: auto !important;
        visibility: visible !important;
        -webkit-transform: translateY(0) !important;
        -ms-transform: translateY(0) !important;
        transform: translateY(0) !important;
        margin: 0;
    }
    .navbar .phone-nav-menu ul.sub-menu li {
        padding: 0 !important;
        padding-left: 10px !important;
    }
    .navbar .phone-nav-menu ul.sub-menu li a {
        padding: 10px !important;
    }
    /* HOME */
    .navbar .navbar-collapse {
        max-height: 210px;
    }
    .img-shape-1:after,
    .img-shape-1-2:before,
    .img-shape-1-2:after,
    .shape-2,
    .shape-4 {
        display: none;
    }
    .sec-hero-slider p {
        margin: 0 10% 0 0;
    }
    .section-title .title-p {
        margin: 0 5%;
        margin-bottom: 60px;
    }
    .subscribe .pxaas_mailchimp-form {
        text-align: center;
    }
    .subscribe .pxaas_mailchimp-form button {
        position: relative;
        margin-top: 10px;
    }
    .course-element .course-item:after {
        content: none;
    }
    .course-element-2 .course-item:after {
        content: none;
    }
    .items-grid-holder .single-review p {
        margin: 0 10%;
    }
    .testimonials-3 .single-review,
    .testimonials-4 .single-review {
        text-align: center !important;
    }
    .testimonials-3 .single-review .row.p-50px,
    .testimonials-4 .single-review .row.p-50px {
        padding: 20px;
    }
    .testimonials-3 .single-review p,
    .testimonials-4 .single-review p {
        margin: 0;
        margin-bottom: 10px;
    }
    .testimonials-5 .single-review p {
        margin: 0;
    }
    /* SIDEBAR */
    .pxaas_recent_posts ul li {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .pxaas_recent_posts ul li .widget-posts-img {
        max-width: 100%;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        padding: 0;
    }
    .pxaas_recent_posts ul li .widget-posts-img img {
        width: 100%;
    }
    .pxaas_recent_posts ul li .widget-posts-descr {
        padding: 0;
    }
    .pxaas_recent_posts ul li .widget-posts-descr .widget-posts-date {
        margin-bottom: 10px;
    }
    /* Elementor */
    .elementor-section.elementor-section-boxed>.elementor-container {
        max-width: 540px !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .how-work-s1 .how-box:after {
        content: none;
    }
}


/* Extra large devices (large desktops, 1500px and up)  */

@media (min-width: 1500px) {
    .pattern-top {
        height: 325px;
    }
    .pattern-bottom {
        height: 240px;
    }
    .welcome-page .pattern,
    .services-area-4 .pattern-2,
    .pattern-bottom,
    .welcome-404 .pattern {
        height: 270px;
    }
    .get-started .patt {
        height: 140px;
    }
    .get-started .patt-2 {
        height: 115px;
    }
}