﻿/* ----------------------------------------------------------------
[Table of contents]
01. Fonts settings
02. Default styles
03. Scrollbar styles
04. Selection styles
05. Owl Carousel Custom styles
06. Sidebar styles
07. Content styles
08. Slider styles
09. Heading styles
10. Title Banner styles
11. Team styles
12. Testimonials styles
13. Price styles
14. Clients styles
15. Services styles
16. Portfolio styles
17. Gallery styles 
18. Blog & Post styles
19. Button styles
20. Contact styles
21. Footer styles
22. Navigation styles
23. Overlay Effect Bg image 
------------------------------------------------------------------- */


/* ===== Fonts settings) ===== */

/* Google Font: Cormorant Garamond & Nunito Sans */
@import url('../../../../../css2');
@import url('https://fonts.cdnfonts.com/css/respective');
/* Custom Font: TuesdayNight */
@font-face {
    font-family: 'TuesdayNight';
    src: url('fonts/TuesdayNight-Regular.eot');
    src: url('fonts/TuesdayNight-Regular-1.eot') format('embedded-opentype'), url('fonts/TuesdayNight-Regular.woff') format('woff'), url('fonts/TuesdayNight-Regular.ttf') format('truetype'), url('fonts/TuesdayNight-Regular.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}


/* ===== Default styles ===== */
html,
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;
}
body {
       font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.5em;
    color: #000;
}
/*** typography ***/
/* headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    line-height: 1.5em;
    margin: 0 0 20px 0;
    letter-spacing: 1px;
}
/* paragraph */
p {
       font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.5em;
    color: #000;
    margin: 0 0 20px;
}
/* lists */
ul {
    list-style-type: none;
}
/* links */
a {
    color: #000;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
a:hover,
a:active,
a:focus {
    color: #000;
    outline: none;
    text-decoration: none !important;
}
a:link {
    text-decoration: none;
}
a:focus {
    outline: none;
}
img {
    width: 100%;
    height: auto;
}
.small,
small {
    font-size: 80%;
}
b,
strong {
    color: #000;
    font-weight: 600;
}
span,
a,
a:hover {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}
hr {
    margin-top: 0px;
    margin-bottom: -20px;
    border: 0;
}
.js .animate-box {
    opacity: 0;
}
/*** form element ***/
/* text field */
form .form-group {
    margin-bottom: 15px;
}
button,
input,
optgroup,
select,
textarea {
    font-family: 'Poppins', sans-serif;
}
input[type="password"]:focus,
input[type="email"]:focus,
input[type="text"]:focus,
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus,
textarea:focus {
    outline: none;
}
input[type="password"],
input[type="email"],
input[type="text"],
input[type="file"],
textarea,
#message,
#search {
    max-width: 100%;
    margin-bottom: 0px;
    border: none;
    padding: 7px 15px;
    height: auto;
    background-color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
    display: block;
    width: 100%;
       font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.75em;
    color: #000;
    background-image: none;
    border: 1px solid #ececec;
}
input:focus,
textarea:focus {
       font-family: 'Poppins', sans-serif;
    border: 1px solid #ececec;
}
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
    font-family: 'Poppins', sans-serif;
    background: #ff4da6;
    border: 1px solid #000;
    color: #fff;
    padding: 15px 30px;
    margin: 0;
    font-weight: 400;
    position: relative;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0px;
    line-height: 1em;
}
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
button:hover {
    background-color: transparent;
    color: #000;
}
select {
    padding: 10px;
    border-radius: 5px;
}
table,
th,
tr,
td {
    border: 1px solid #000;
}
th,
tr,
td {
    padding: 10px;
}
input[type="radio"],
input[type="checkbox"] {
    display: inline;
}

/* alert success */
.alert-success {
    background: transparent;
    color: #000;
    border: 1px solid #ff82cd;
    border-radius: 0px;
}
/* Placeholder */
::-webkit-input-placeholder {
    color: #000;
    font-size: 15px;
    font-weight: 400;
}
:-moz-placeholder {
    color: #000;
}
::-moz-placeholder {
    color: #000;
    opacity: 1;
}
:-ms-input-placeholder {
    color: #000;
}


/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 0px;
}
::-webkit-scrollbar-track {
    background: #fff;
}
::-webkit-scrollbar-thumb {
    background: #000;
}
::-webkit-scrollbar-thumb:hover {
    background: #000;
}

/* padding */
.p-30 {
    padding: 30px;
}
.pt-0 {
    padding-top: 0px;
}
.pt-60 {
    padding-top: 60px;
}
.pt-90 {
    padding-top: 90px;
}
.pb-60 {
    padding-bottom: 60px;
}
.pb-90 {
    padding-bottom: 90px;
}
/* margin */
.mb-0 {
    margin-bottom: 0;
}
.mb-30 {
    margin-bottom: 30px;
}
.mb-60 {
    margin-bottom: 60px;
}
/* line */
.line {
    border: 1px solid #ececec;
    background: transparent;
}
.line:hover {
    border: 1px solid #F8F5F1;
    background: #F8F5F1;
}
/* important */
.clear {
    clear: both;
}
.o-hidden {
    overflow: hidden;
}
.pos-re {
    position: relative;
}
.full-width {
    width: 100% !important;
}
.bg-img {
    background-size: cover;
    background-repeat: no-repeat;
}
.bg-fixed {
    background-attachment: fixed;
}
.bg-cover {
    background-size: cover !important;
}
.v-middle {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}
.valign {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
/* Default for mobile */
.container-fluid {
    padding-left: 30px;
    padding-right: 30px;
}

/* For larger screens (laptop & desktop) */
@media (min-width: 992px) {
    .container-fluid {
        padding-left: 100px;
        padding-right: 100px;
    }
}





/* ===== Selection ===== */
::-webkit-selection {
    color: #000;
    background: rgba(0, 0, 0, 0.1);
}
::-moz-selection {
    color: #000;
    background: rgba(0, 0, 0, 0.1);
}
::selection {
    color: #000;
    background: rgba(0, 0, 0, 0.1);
}


/* ======= Preloader style ======= */
.preloader-bg,
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #fff;
    z-index: 999999;
}
#preloader {
    display: table;
    table-layout: fixed;
}
#preloader-status {
    display: table-cell;
    vertical-align: middle;
}
.preloader-position {
    position: relative;
    margin: 0 auto;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}
.loader {
    position: relative;
    width: 55px;
    height: 55px;
    left: 50%;
    top: auto;
    margin-left: -22px;
    margin-top: 1px;
    -webkit-animation: rotate 1s infinite linear;
    -moz-animation: rotate 1s infinite linear;
    -ms-animation: rotate 1s infinite linear;
    -o-animation: rotate 1s infinite linear;
    animation: rotate 1s infinite linear;
    border: 1px solid #efedeb;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}
.loader span {
    position: absolute;
    width: 55px;
    height: 55px;
    top: -1px;
    left: -1px;
    border: 1px solid transparent;
    border-top: 1px solid #ff82cd;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}
@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ===== Owl Carousel Styles ===== */
.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 30px;
    line-height: .7;
}
.owl-theme .owl-dots .owl-dot span {
    width: 7px;
    height: 7px;
    margin: 0 2px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #000;
}
.owl-theme .owl-nav [class*=owl-] {
    background-color: #ff82cd;
    width: 30px;
    height: 30px;
    line-height: 25px;
    border-radius: 50%;
}
.owl-theme .owl-nav [class*=owl-] {
    color: #FFF;
    font-size: 12px;
    margin: 5px;
    padding: 4px 7px;
    background: #ff82cd;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px;
}
.owl-theme .owl-nav [class*=owl-] {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    width: 30px;
    height: 30px;
    line-height: 25px;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
}
.owl-theme .owl-nav [class*=owl-]:hover {
    background-color: transparent;
    border: 1px solid #ff82cd;
    color: #ff82cd;
}
.bg-pink {
    background-color: #F8F5F1;
}


.owl-carousel .owl-nav button.owl-next, 
.owl-carousel .owl-nav button.owl-prev, 
.owl-carousel button.owl-dot {
  outline: none;
}

/* ===== Sidebar styles ===== */
#pwe-page {
    width: 100%;
    overflow: hidden;
    position: relative;
}
#pwe-aside {
    padding: 60px 30px;
    width: 23%;
    position: fixed;
    bottom: 0;
    top: 0;
    left: 0;
    overflow-y: scroll;
    z-index: 1001;
    background: #000000;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    scrollbar-width: none;
}
@media screen and (max-width: 1200px) {
    #pwe-aside {
        width: 30%;
    }
}
@media screen and (max-width: 768px) {
    #pwe-aside {
        width: 270px;
        -moz-transform: translateX(-270px);
        -webkit-transform: translateX(-270px);
        -ms-transform: translateX(-270px);
        -o-transform: translateX(-270px);
        transform: translateX(-270px);
        padding-top: 30px;
    }
}
#pwe-aside #pwe-logo {
    text-align: center;
       font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 60px;
    display: block;
    width: 100%;
    position: relative;
    color: #000;
    line-height: 1.2em;
    letter-spacing: 0px;
}
#pwe-aside #pwe-logo span {
   font-family: 'Respective Slanted', sans-serif;

    text-transform: none;
    text-align: center;
    font-size: 24px;
    color: #333;
    font-weight: 500;
    letter-spacing: 1px;
}
#pwe-aside #pwe-logo img {
    width: 180px;
}
#pwe-logo-footer {
    text-align: center;
    font-weight: 400;
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 0;
    display: block;
    width: 100%;
}
@media screen and (max-width: 768px) {
    #pwe-aside #pwe-logo {
        margin-bottom: 60px;
    }
}
#pwe-aside #pwe-logo a {
    display: inline-block;
}
#pwe-logo-footer a {
    display: inline-block;
    text-align: center;
    color: #ff82cd;
}
#pwe-aside #pwe-logo a span {
    display: block;
   font-family: 'Respective Slanted', sans-serif;

    font-size: 24px;
    color: #ff82cd;
    font-weight: 500;
    letter-spacing: 1px;
    display: block;
    margin-top: 0px;
    text-align: center;
    line-height: 1.2em;
}
#pwe-aside #pwe-logo a i {
    color: #000;
    font-size: 18px;
    vertical-align: super;
}
#pwe-aside #pwe-main-menu ul {
    text-align: center;
    margin: 0;
    padding: 0;
}
@media screen and (max-width: 768px) {
    #pwe-aside #pwe-main-menu ul {
        margin: 0 0 30px 0;
    }
}
#pwe-aside #pwe-main-menu ul li {
    margin: 9px 0 9px 0;
    padding: 0 0 9px 0;
    list-style: none;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5em;
    text-transform: uppercase;
    letter-spacing: 1px;
}
#pwe-aside #pwe-main-menu ul li a {
    color: #ffffff;
    text-decoration: none;
    position: relative;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border-bottom: 1px solid transparent;
}
#pwe-aside #pwe-main-menu ul li a:hover {
    border-bottom: 1px solid #000;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out
}
#pwe-aside #pwe-main-menu ul li.pwe-active a {
    color: #ff82cd;
}
#pwe-aside #pwe-main-menu ul li.pwe-active a:after {
    visibility: visible;
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
}
#pwe-aside #pwe-main-menu ul li a span:hover {
    color: #000;
}
#pwe-aside .pwe-footer {
    position: absolute;
    bottom: 30px;
    right: 0;
    left: 0;
    font-size: 15px;
    text-align: center;
    font-weight: 400;
    color: #000;
}
/* sidebar footer */
.pwe-footer p {
    font-size: 18px;
    color: #ffffff;
       font-family: 'Poppins', sans-serif;
}
.pwe-footer span,
.pwe-footer span a {
   font-family: 'Respective Slanted', sans-serif;

    text-transform: none;
    font-size: 24px;
    font-weight: 500;
    color: #000;
    letter-spacing: 0;
    margin-bottom: 0;
}
.pwe-footer span a:hover,
.pwe-footer a {
    color: #000;
}
.separator {
    width: 16%;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    border-bottom: 1px solid #ebebeb;
    margin: 10px 0;
}
@media screen and (max-width: 768px) {
    #pwe-aside .pwe-footer {
        position: relative;
        padding-top: 60px;
    }
}
#pwe-aside .pwe-footer span {
    display: block;
}
/* sidebar social */
#pwe-aside .pwe-footer .social a {
    color: #ffffff;
    width: 32px;
    height: 32px;
    line-height: 32px;
    background: transparent;
    margin: 0 5px 15px 0;
    text-align: center;
    border: 1px solid #ebebeb;
    font-size: 12px;
}
#pwe-aside .pwe-footer .social a:hover {
    color: #000000;
    background: #ffffff;
    border: 1px solid #000;
}


/* ===== Content styles ===== */
#pwe-main {
    width: 77%;
    float: right;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
@media screen and (max-width: 1200px) {
    #pwe-main {
        width: 70%;
    }
}
@media screen and (max-width: 768px) {
    #pwe-main {
        width: 100%;
    }
}
#pwe-hero {
    min-height: 560px;
    width: 100%;
    float: left;
    margin-bottom: 0;
    clear: both;
}


/* ===== Slider styles ===== */
#pwe-hero .flexslider {
    border: none;
    z-index: 1;
    margin-bottom: 0;
}
#pwe-hero .flexslider .slides {
    position: relative;
    overflow: hidden;
}
#pwe-hero .flexslider .slides li {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    min-height: 400px;
}
#pwe-hero .flexslider .flex-control-nav {
    bottom: 20px;
    z-index: 1000;
    right: 20px;
    float: right;
    width: auto;
}
#pwe-hero .flexslider .flex-control-nav li {
    display: block;
    margin-bottom: 6px;
}
#pwe-hero .flexslider .flex-control-nav li a {
    background: rgba(255, 255, 255, 0.6);
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 10px;
    height: 10px;
    cursor: pointer;
}
#pwe-hero .flexslider .flex-control-nav li a.flex-active {
    cursor: pointer;
    background: rgba(0, 0, 0, 0.8);
}
#pwe-hero .flexslider .flex-direction-nav {
    display: none;
}
#pwe-hero .flexslider .slider-text {
    display: table;
    opacity: 0;
    min-height: 100vh;
    padding: 15px 15px;
    z-index: 9;
}
#pwe-hero .flexslider .slider-text > .slider-text-inner {
    display: table-cell;
    vertical-align: middle;
    min-height: 700px;
    padding: 2.5em;
    position: relative;
}
#pwe-hero .flexslider .slider-text > .slider-text-inner .desc {
    position: absolute;
    bottom: 15px;
    left: 0;
    padding: 30px;
    background: #fff;
}
@media screen and (max-width: 768px) {
    #pwe-hero .flexslider .slider-text > .slider-text-inner {
        text-align: center;
    }
}
#pwe-hero .flexslider .slider-text > .slider-text-inner h6,
#pwe-hero .flexslider .slider-text > .slider-text-inner h6 {
    position: relative;
    top: 2px;
   font-family: 'Respective Slanted', sans-serif;

    font-size: 48px;
    color: #000000;
    line-height: 2em;
  
    margin-bottom: 0;
}
#pwe-hero .flexslider .slider-text > .slider-text-inner h1,
#pwe-hero .flexslider .slider-text > .slider-text-inner h1 {
    position: relative;
    font-size: 24px;
    line-height: 1em;
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
    #pwe-hero .flexslider .slider-text > .slider-text-inner h1 {
        font-size: 30px;
    }
}
#pwe-hero .flexslider .slider-text > .slider-text-inner .heading-section {
    font-size: 50px;
}
@media screen and (max-width: 768px) {
    #pwe-hero .flexslider .slider-text > .slider-text-inner .heading-section {
        font-size: 30px;
    }
}
#pwe-hero .flexslider .slider-text > .slider-text-inner p {
    margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
    #pwe-hero .flexslider .slider-text > .slider-text-inner .btn {
        width: 100%;
    }
    #pwe-hero .flexslider .flex-control-nav {
        right: 5px;
        bottom: 30px;
    }
}
body.offcanvason {
    overflow-x: hidden;
}
body.offcanvason #pwe-aside {
    -moz-transform: translateX(0);
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    width: 270px;
    z-index: 999;
    position: fixed;
}
body.offcanvason #pwe-main,
body.offcanvason .pwe-nav-toggle {
    top: 0;
    -moz-transform: translateX(270px);
    -webkit-transform: translateX(270px);
    -ms-transform: translateX(270px);
    -o-transform: translateX(270px);
    transform: translateX(270px);
}


/* ===== Heading styles ===== */
.pwe-heading {
    color: #000;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0px;
    font-weight: 500;
    font-size: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.pwe-heading span {
    display: block;
}
.pwe-about-heading {
    position: relative;
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.5em;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.pwe-about-subheading {
       font-family: 'Poppins', sans-serif;
    font-size: 20px;
    line-height: 1.2em;
    color: #ff82cd;
    font-style: italic;
}
.pwe-post-heading {
    color: #000;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 24px;
}
.pwe-post-heading span {
    display: block;
}
.heading-meta {
    display: block;
    position: relative;
    top: 12px;
   font-family: 'Respective Slanted', sans-serif;

    font-size: 50px;
    color: #000000;
    line-height: 1.5em;
    margin-bottom: 0;
}
@media screen and (max-width: 768px) {
    .pwe-post-heading {
        margin-bottom: 15px;
    }
}


/* ===== Title Banner styles ===== */
.banner-container {
    position: relative;
}
.banner-img-width {
    width: 100%;
    font-family: "object-fit:cover";
    -o-object-fit: cover;
    object-fit: cover;
}
.banner-img-width,
.banner-img:after {
    position: absolute;
    height: 100%;
}
.banner-img-width,
.banner-img:after {
    position: absolute;
    height: 100%;
}
.banner-img:after {
    right: 0;
    left: 0;
    content: "";
    background: linear-gradient(hsla(0, 0%, 100%, .8), hsla(0, 0%, 100%, .9) 50%, #fff);
}
.banner-head:after,
.banner-head:before {
    content: " ";
    display: table;
}
.banner-head-padding {
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
}
.banner-head-margin {
    margin-left: auto;
    margin-right: auto;
}


/* ===== Team styles ===== */
.team .item {}
.team .item:hover .info .social {
    top: 0;
}
.team .info {
    background-color: #fff;
    text-align: center;
    padding: 30px 15px;
    position: relative;
    overflow: hidden;
}
.team .info h6 {
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.team .info p {
       font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.5em;
    color: #000;
    margin-bottom: 5px;
}
.team .info .social {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    -webkit-transition: all .4s;
    transition: all .4s;
}
.team .info .social a {
    font-size: 15px;
    color: #000;
    margin: 0 5px;
}
.team .info .social a:hover {
    color: #ff82cd;
}


/* =====  Testimonials style  ===== */
.testimonials .section-head {
    text-align: left;
    margin-bottom: 0;
    z-index: 1;
    position: relative;
}
.testimonials .section-head p {
    color: #000000;
    font-size: 18px;
}
.testimonials .section-head span {
    display: block;
    position: relative;
    top: 12px;
   font-family: 'Respective Slanted', sans-serif;

    font-size: 32px;
    color: #060606;
    line-height: 1.5em;
    margin-bottom: 0;
}
.testimonials .section-head h4 {
    position: relative;
    color: #171617d4;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 50px;
    line-height: 1.2em;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding-bottom: 0;
}
.testimonials .section-head h4:after {
    display: none;
}
.testimonials .item-box {
    background: #FFF;
    padding: 30px;
    position: relative;
    border: 1px solid #FFF;
}
.testimonials .item-box .quote {
    position: absolute;
    right: 30px;
    top: 30px;
    width: 100px;
    margin: 0 auto 30px;
    opacity: .1;
}
.testimonials .item-box p {
    font-size: 17px;
    color: #000;
    font-style: italic;
}
.testimonials .item-box .info {
    text-align: left;
    margin: 30px 0 15px 0;
}
.testimonials .item-box .info .author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    float: left;
    overflow: hidden;
}
.testimonials .item-box .info .cont {
    margin-left: 75px;
}
.testimonials .item-box .info h6 {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0px;
    padding-top: 5px;
    line-height: 1.2em;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.testimonials .item-box .info span {
    font-size: 17px;
    font-weight: 400;
    color: #000;
    margin-right: 5px;
    font-style: italic;
}
.testimonials .item-box .info .rate {
    float: right;
}
.testimonials .item-box .info i {
    color: #ff82cd;
    font-size: 10px;
}
.testimonials .owl-theme .owl-nav {
    position: absolute;
    left: -70%;
    bottom: 20px;
    margin-top: 0;
}

.testimonials .owl-theme .owl-nav [class*=owl-] {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    font-size: 9px;
}

.testimonials .owl-theme .owl-nav [class*=owl-]:hover {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}


/* =====  Price style  ===== */
.price .item {
    padding: 60px 30px;
    background: #fff;
    text-align: center;
    -webkit-box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
    -webkit-transition: all .4s;
    transition: all .4s;
    margin: 30px 0;
}
.price .item .type {
    position: relative;
    border-bottom: 1px solid #eee;
    position: relative;
}
.price .item .type:after {
    content: '';
    width: 20px;
    height: 20px;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    background: #fff;
    position: absolute;
    bottom: -11px;
    left: calc(50% - 10px);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.price .item .type h6 {
    position: relative;
    color: #000;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.price .item .value {
    margin: 30px 0;
}
.price .item .value h4 {
    font-size: 40px;
    margin-bottom: 0;
}
.price .item .value h4 span {
    font-size: 15px;
}
.price .item .value p {
    font-size: 13px;
    font-weight: 400;
    margin-top: 0px;
    color: #ff82cd;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
}
.price .item .feat ul {
    margin-bottom: 30px;
    padding: 0;
}
.price .item .feat li {
    color: #000;
    margin-bottom: 10px;
}
.price .item .feat li:last-child {
    margin-bottom: 0;
}
.price .item .feat del {
    opacity: .8;
}


/* =====  Clients Style  ===== */
.clients {
    background-color: #F8F5F1;
}
.clients .owl-carousel {
    margin: 30px 0;
}
.clients .client-logo {
    opacity: 1;
    line-height: 0;
}
.clients .client-logo:hover {
    opacity: 1;
}
.clients img {
    -webkit-filter: none;
    filter: none;
}
.clients img:hover {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: all .5s;
    transition: all .5s;
}


/* ===== Services  ===== */
.services .item {
    position: relative;
    overflow: hidden;
}
.services .item:hover img {
    -webkit-filter: none;
    filter: none;
    -webkit-transform: scale(1.09, 1.09);
    transform: scale(1.09, 1.09);
    -webkit-filter: brightness(70%);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
}
.services .item:hover .con {
    bottom: 0;
}
.services .item img {
    -webkit-transition: all .5s;
    transition: all .5s;
}
.services .item .con {
    padding: 30px 15px;
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    -webkit-transition: all .3s;
    transition: all .3s;
    text-align: center;
    z-index: 20;
    height: auto;
    box-sizing: border-box;
    background: -moz-linear-gradient(top, transparent 0, rgba(0, 0, 0, .1) 2%, rgba(0, 0, 0, .75) 90%);
    background: -webkit-linear-gradient(top, transparent 0, rgba(0, 0, 0, .01) 2%, rgba(0, 0, 0, .75) 90%);
    background: linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, .01) 2%, rgba(0, 0, 0, .75) 90%);
}
.services .item .con .category {
   font-family: 'Respective Slanted', sans-serif;

    font-size: 40px;
    color: #fff;
    line-height: 1em;
    margin-bottom: 0;
}
.services .item .con .category a {
    margin-right: 5px;
    position: relative;
    color: #FFF;
}
.services .item .con .category a:last-child {
    margin-right: 0;
}
.services .item .con .category a:last-child:after {
    display: none;
}
.services .item .con h5,
.services .item .con h5 a {
    position: relative;
    color: #fff;
    font-size: 17px;
    margin-top: 0px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4em;
}
.services .item .con p {
    color: #fff;
    font-size: 15px;
}
.services .item .con i {
    color: #fff;
    font-size: 20px;
}
.services .item .con i:hover {
    color: #c5a47e;
}
.services .item .con .btn {
    margin-left: 0;
    border-radius: 30px;
    border-color: #000;
    padding: 11px 30px;
}
.services .item .con .btn:hover {
    border-color: #c5a47e;
}


/* ===== Portfolio styles ===== */
.portfolio .item {}
.portfolio .item .portfolio-img {
    position: relative;
    overflow: hidden;
}
.portfolio .item .portfolio-img:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.portfolio .item .portfolio-img img {
    -webkit-transition: all .5s;
    transition: all .5s;
}
.portfolio .item .content {
    padding: 20px;
    margin-bottom: 30px;
}
.portfolio .item .content h5,
.portfolio .item .content h5 a {
       font-family: 'Poppins', sans-serif;
    font-size: 17px;
    margin-top: 0px;
    margin-bottom: 0px;
    text-align: center;
    line-height: 1.4em;
}
.portfolio .item .content h5:hover,
.portfolio .item .content h5 a:hover {
    color: #ff82cd;
}
.portfolio .item .content h5 b {
    color: #ff82cd;
}


/* =====  Gallery Style  ===== */
.gallery-item {
    position: relative;
    padding-top: 25px;
}
.gallery-box {
    overflow: hidden;
    position: relative;
}
.gallery-box .gallery-img {
    position: relative;
    overflow: hidden;
}
.gallery-box .gallery-img:after {
    content: " ";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0px;
    transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
}
.gallery-box .gallery-img > img {
    transition: all 0.3s cubic-bezier(0.3, 0.1, 0.58, 1);
    border-radius: 0;
}
.gallery-box .gallery-detail {
    opacity: 0;
    color: #ffffff;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    overflow: hidden;
    transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
}
.gallery-box .gallery-detail h4 {
    font-size: 18px;
}
.gallery-box .gallery-detail p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}
.gallery-box .gallery-detail i {
    color: #fff;
    font-size: 20px;
}
.gallery-box .gallery-detail i:hover {
    color: #fff;
}
.gallery-box:hover .gallery-detail {
    top: 50%;
    transform: translate(0, -50%);
    opacity: 1;
}
.gallery-box:hover .gallery-img:after {
    background: rgba(0, 0, 0, 0.6);
}
.gallery-box:hover .gallery-img > img {
    transform: scale(1.05);
}
/* magnific popup custom */
.mfp-figure button {
    border: 0px solid transparent;
}
button.mfp-close,
button.mfp-arrow {
    border: 0px solid transparent;
}



/* ===== Blog & Post styles ===== */
.blog .item {
    -webkit-box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
}
.blog .item .post-img {
    position: relative;
    overflow: hidden;
}
.blog .item .post-img:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.blog .item .post-img img {
    -webkit-transition: all .5s;
    transition: all .5s;
}
.blog .item .post-img .date {
    display: inline-block;
    position: absolute;
    top: 15px;
    left: 15px;
    background: #000;
    color: #fff;
    padding: 10px 15px;
    text-align: center;
}
.blog .item .post-img .date span {
   font-family: 'Respective Slanted', sans-serif;

    display: block;
    font-size: 20px;
}
.blog .item .post-img .date i {
       font-family: 'Poppins', sans-serif;
    display: block;
    font-size: 20px;
}
.blog .item .content {
    padding: 20px 20px 30px 20px;
    background: #fff;
}
.blog .item .content .tag a {
    color: #000;
    font-style: italic;
}
.blog .item .content .tag a:hover {
    color: #ff82cd;
}
.blog .item .content h5 {
    font-size: 17px;
    margin-top: 10px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4em;
}
.blog-entry {
    width: 100%;
    float: left;
    background: #fff;
    margin-bottom: 60px;
    box-shadow: 0 25px 75px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
    .blog-entry {
        margin-bottom: 45px;
    }
}
.blog-entry .blog-img {
    width: 100%;
    float: left;
    overflow: hidden;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}
.blog-entry .blog-img img {
    position: relative;
    max-width: 100%;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.blog-entry .desc {
    padding: 20px;
}
.blog-entry .desc h3 {
    font-size: 24px;
    line-height: 1.2em;
    font-weight: 400;
    margin-bottom: 15px;
}
.blog-entry .desc h3 a {
    color: #000;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.blog-entry:hover .blog-img img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.pwe-post img {
    padding-bottom: 30px;
}
/* blog sidebar */
.pwe-sidebar-part {
    box-shadow: 0 25px 75px rgba(0, 0, 0, 0.05);
    padding: 30px;
}
.pwe-sidebar-block {
    margin-bottom: 60px;
    position: relative;
}
.pwe-sidebar-block .pwe-sidebar-block-title {
    color: #000;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* search */
.pwe-sidebar-search-form {
    position: relative;
}
.pwe-sidebar-search-submit {
    position: absolute;
    right: 0px;
    top: 0px;
    background: none;
    border: 0;
    padding: 14px;
    font-size: 18px;
    color: #fff;
    background: #000;
    border-radius: 0;
    border: 1px solid transparent;
}
.pwe-sidebar-search-submit:hover {
    background: #ff82cd;
    border: 1px solid transparent;
}
/* categories */
.ul1 {
    padding: 0;
    margin: 0;
    list-style: none;
}
.ul1 > li {
    padding: 5px 0;
    border-bottom: 1px solid #f6f6f6;
    line-height: 32px;
}
.ul1 > li a {
    color: #000;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}
.ul1 > li a:hover {
    color: #ff82cd;
    text-decoration: none;
}
/* latest */
.latest {
    margin-bottom: 20px;
    border-bottom: 1px solid #f6f6f6;
    padding-bottom: 20px;
}
.latest a {
    display: block;
    text-decoration: none;
}
.latest a .txt1 {
    font-weight: 600;
    line-height: 1.5em;
    font-size: 18px;
    color: #000;
}
.latest a .txt2 {
    color: #000;
    font-size: 14px;
    transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}
.latest a:hover .txt1 {
    color: #ff82cd;
}
/* tags keywords */
.tags {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
}
.tags li {
    display: inline-block;
    margin: 0 5px 5px 0px;
    float: left;
}
.tags li a {
    display: inline-block;
    background: #fff;
    border: 1px solid #ececec;
    padding: 9px 12px;
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    text-decoration: none;
    font-size: 18px;

    color: #000;
    transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}
.tags li a:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}
/* pagination */
.pwe-pagination-wrap {
    padding: 0;
    margin: 0 0 30px 0;
    text-align: center;
}
.pwe-pagination-wrap li {
    display: inline-block;
    margin: 0 5px;
}
.pwe-pagination-wrap li a {
    background: transparent;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #000;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    border: 1px solid #ebebeb;
}
.pwe-pagination-wrap li a:hover {
    opacity: 1;
    text-decoration: none;
    background-color: #000;
    border: 1px solid #000;
    color: #fff;
}
.pwe-pagination-wrap li a.active {
    background-color: #000;
    border: 1px solid #000;
    color: #fff;
}
@media screen and (max-width: 768px) {
    .pwe-pagination-wrap {
        padding: 0 0 60px 0;
        margin: 0;
        text-align: center;
    }
}
/* post comment */
.comments-area {
    padding: 30px 0;
}
.comments-area .comments-title {
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.5em;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}
ol.comment-list {
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}
ol.comment-list li.comment {
    position: relative;
    padding: 0;
}
ol.comment-list li.comment .comment-body {
    position: relative;
    padding: 20px 30px 20px 90px;
    margin-left: 40px;
    color: #000;
    position: relative;
}
ol.comment-list li.comment .comment-author {
    display: block;
    margin-bottom: 0px;
}
ol.comment-list li.comment .comment-author .avatar {
    position: absolute;
    top: 20px;
    left: -40px;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background-color: #fff;
}
ol.comment-list li.comment .comment-author .name {
    display: inline-block;
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    line-height: 1.5em;
    font-weight: 500;
    margin-bottom: 0;
    letter-spacing: 0px;
}
ol.comment-list li.comment .comment-author .says {
    display: none;
    color: #000;
    font-weight: 500;
}
ol.comment-list li.comment .comment-meta {
    color: #000;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
}
ol.comment-list li.comment .comment-meta a {
    color: #000;
}
ol.comment-list li.comment .comment-meta:before,
ol.comment-list li.comment .reply a:before {
    font-family: "FontAwesome";
    font-size: 18px;
    vertical-align: top;
}
ol.comment-list li.comment p {
    margin: 0 0 20px;
    color: #000;
}
ol.comment-list li.comment .reply a {
    position: absolute;
    top: 50px;
    right: 30px;
    margin-top: -5px;
    font-size: 14px;
    color: #000;
}
ol.comment-list li.comment .reply a:hover {
    color: #ff82cd;
}
ol.comment-list li .children {
    list-style: none;
    margin-left: 80px;
}
ol.comment-list li .children li {
    padding: 0;
}
@media only screen and (max-width: 767px) {
    .comments-area .padding-30 {
        padding: 15px;
    }
    ol.comment-list li.comment .comment-body {
        margin-bottom: 30px;
        margin-left: 30px;
    }
    ol.comment-list li.comment .comment-author .avatar {
        left: -35px;
        height: 70px;
        width: 70px;
    }
    ol.comment-list li .children {
        margin-left: 20px;
    }
    ol.comment-list li.comment .reply a {
        position: static;
    }
}
@media only screen and (max-width: 480px) {
    ol.comment-list li.comment .comment-body {
        margin-left: 26px;
    }
    ol.comment-list li.comment .comment-author .avatar {
        left: -15px;
        top: 12px;
        width: 60px;
        height: 60px;
    }
    ol.comment-list li.comment .comment-body {
        padding-left: 55px;
    }
}


/* =====  Button styles  ===== */
.btn-contact {
    position: relative;
    line-height: 1em;
}
.btn-contact a {
    font-family: 'Poppins', sans-serif;
    background: #ff4da6;
    border: 1px solid #000;
    color: #000000;
    padding: 12px 30px;
    margin: 0;
    font-weight: 500;
    position: relative;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.btn-contact a:after {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 100%;
    z-index: 1;
    background: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.btn-contact a span {
    position: relative;
    z-index: 2;
}
.btn-contact a:hover:after {
    width: 100%;
    left: 0;
    -webkit-transition: width 0.3s ease;
    transition: width 0.3s ease;
}
.btn-contact a:hover span {
    color: #000;
}


/* ===== Contact styles ===== */
.map-section {
    overflow: hidden;
}
.google-maps {
  height: 100%;
  min-height: 500px;
  width: 100%;
  position: relative;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.google-maps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pwe-more-contact {
    background: #fafafa;
}
/* form */
.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: transparent;
    border: none;
    border-bottom: 0px solid #e5e5e5;
    height: 54px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    padding: 0;
       font-family: 'Poppins', sans-serif;
    font-size: 17px;
    line-height: 1.75em;
    font-weight: 400;
}
.form-control:active,
.form-control:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: #fff;
    border: 1px solid #ececec;
}
#message {
       font-family: 'Poppins', sans-serif;
    height: 130px;
    padding: 12px;
    border: 1px solid #ececec;
}


/* ===== Footer styles ===== */
#pwe-footer2 {
    padding: 100px 60px;
    background: #000;
}
#pwe-footer2 h2,
#pwe-footer2 h2 a {
       font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 500;
    display: block;
    width: 100%;
    position: relative;
    color: #fff;
    line-height: 1em;
    letter-spacing: 0px;
}
#pwe-footer2 h2 a span,
#pwe-footer2 h2 span {
    display: block;
   font-family: 'Respective Slanted', sans-serif;

    font-size: 24px;
    color: #ff82cd;
    font-weight: 500;
    letter-spacing: 1px;
}
#pwe-footer2 h2 a i {
    color: #fff;
    font-size: 18px;
    vertical-align: super;
}
#pwe-footer2 h6 {
    color: #ff82cd;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}
#pwe-footer2 p {
       font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-style: italic;
    color: #fff;
}
#pwe-footer2 .copyright {
    color: #fff;
}
@media screen and (max-width: 768px) {
    #pwe-footer2 {
        padding: 100px 30px 80px 30px;
        background: #000;
        text-align: center;
    }
}
/* footer social */
#pwe-footer2 .social a {
    color: #fff;
    width: 32px;
    height: 32px;
    line-height: 32px;
    background: transparent;
    margin: 0 5px 20px 0;
    text-align: center;
    border: 1px solid #222;
    font-size: 12px;
}
#pwe-footer2 .social a:hover {
    color: #000;
    background: #ff82cd;
    border: 1px solid #ff82cd;
}


/* ===== Navigation styles ===== */
.pwe-nav-toggle {
    cursor: pointer;
    text-decoration: none;
}
.pwe-nav-toggle.active i::before,
.pwe-nav-toggle.active i::after {
    background: #fff;
}
.pwe-nav-toggle.dark.active i::before,
.pwe-nav-toggle.dark.active i::after {
    background: #000;
}
.pwe-nav-toggle:hover,
.pwe-nav-toggle:focus,
.pwe-nav-toggle:active {
    outline: none;
    border-bottom: none !important;
}
.pwe-nav-toggle i {
    position: relative;
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    width: 19px;
    height: 1px;
    color: #fff;
    font: bold 14px/.4 Helvetica;
    text-transform: uppercase;
    text-indent: -55px;
    background: #fff;
    -webkit-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
    top: -4px;
}
.pwe-nav-toggle i::before,
.pwe-nav-toggle i::after {
    content: '';
    width: 20px;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 0;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
.pwe-nav-toggle.dark i {
    position: relative;
    color: #000;
    background: #000;
    -webkit-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
}
.pwe-nav-toggle.dark i::before,
.pwe-nav-toggle.dark i::after {
    background: #000;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
.pwe-nav-toggle i::before {
    top: -7px;
}
.pwe-nav-toggle i::after {
    bottom: -7px;
}
.pwe-nav-toggle:hover i::before {
    top: -10px;
}
.pwe-nav-toggle:hover i::after {
    bottom: -10px;
}
.pwe-nav-toggle.active i {
    background: transparent;
}
.pwe-nav-toggle.active i::before {
    top: 0;
    -webkit-transform: rotateZ(45deg);
    -moz-transform: rotateZ(45deg);
    -ms-transform: rotateZ(45deg);
    -o-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
}
.pwe-nav-toggle.active i::after {
    bottom: 0;
    -webkit-transform: rotateZ(-45deg);
    -moz-transform: rotateZ(-45deg);
    -ms-transform: rotateZ(-45deg);
    -o-transform: rotateZ(-45deg);
    transform: rotateZ(-45deg);
}
.pwe-nav-toggle {
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 9999;
    cursor: pointer;
    opacity: 1;
    visibility: hidden;
    padding: 12px 15px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    background: #000;
    margin: 15px 30px;
    border-radius: 50%;
}
@media screen and (max-width: 768px) {
    .pwe-nav-toggle {
        opacity: 1;
        visibility: visible;
    }
}


/* ===== Overlay Effect Bg image ===== */
[data-overlay-dark],
[data-overlay-light] {
    position: relative;
}
[data-overlay-dark] .container,
[data-overlay-light] .container {
    position: relative;
    z-index: 2;
}
[data-overlay-dark]:before,
[data-overlay-light]:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}
[data-overlay-dark]:before {
    background: #000;
}
[data-overlay-light]:before {
    background: #fff;
}
[data-overlay-dark] h1,
[data-overlay-dark] h2,
[data-overlay-dark] h3,
[data-overlay-dark] h4,
[data-overlay-dark] h5,
[data-overlay-dark] h6,
[data-overlay-dark] span {
    color: #fff;
}
[data-overlay-dark] p {
    color: #bbb;
}
[data-overlay-dark="0"]:before,
[data-overlay-light="0"]:before {
    opacity: 0;
}
[data-overlay-dark="1"]:before,
[data-overlay-light="1"]:before {
    opacity: 0.1;
}
[data-overlay-dark="2"]:before,
[data-overlay-light="2"]:before {
    opacity: 0.2;
}
[data-overlay-dark="3"]:before,
[data-overlay-light="3"]:before {
    opacity: 0.3;
}
[data-overlay-dark="4"]:before,
[data-overlay-light="4"]:before {
    opacity: 0.4;
}
[data-overlay-dark="5"]:before,
[data-overlay-light="5"]:before {
    opacity: 0.5;
}
[data-overlay-dark="6"]:before,
[data-overlay-light="6"]:before {
    opacity: 0.6;
}
[data-overlay-dark="7"]:before,
[data-overlay-light="7"]:before {
    opacity: 0.7;
}
[data-overlay-dark="8"]:before,
[data-overlay-light="8"]:before {
    opacity: 0.8;
}
[data-overlay-dark="9"]:before,
[data-overlay-light="9"]:before {
    opacity: 0.9;
}
[data-overlay-dark="10"]:before,
[data-overlay-light="10"]:before {
    opacity: 1;
}
@media (max-width: 991px) {
    #main-menu {
        display: none;
        width: 100%;
        background: #000;
        text-align: center;
        transition: max-height 0.3s ease-out;
    }

    #main-menu.open {
        display: block;
    }
}

        /* New Header Styles */
        .pwe-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: #000;
            padding: 10px 0;
            z-index: 9999;
        }

        .pwe-header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .pwe-header .logo-img {
            height: 50px;
        }

        .pwe-header nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            gap: 30px;
        }

        .pwe-header nav ul li a {
            color: #fff;
            font-weight: 600;
            text-decoration: none;
            transition: 0.3s;
        }

        .pwe-header nav ul li a:hover,
        .pwe-header nav ul li.pwe-active a {
            color: #ff4f92;
        }

        .pwe-header .social a {
            color: #fff;
            font-size: 18px;
            margin-left: 12px;
            transition: 0.3s;
        }

        .pwe-header .social a:hover {
            color: #ff4f92;
        }

        body {
            padding-top: 80px;
        }
        /* Hide toggle by default */
.mobile-menu-toggle {
    display: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 991px) {
    .pwe-header .container {
        flex-wrap: wrap;
    }

    nav#main-menu {
        display: none;
        width: 100%;
        background: #000;
        text-align: center;
    }

    nav#main-menu ul {
        flex-direction: column;
        gap: 0;
    }

    nav#main-menu ul li {
        border-top: 1px solid #333;
    }

    nav#main-menu ul li a {
        display: block;
        padding: 12px;
        color: #fff;
    }

    .mobile-menu-toggle {
        display: block;
    }
}

.contact-btns {
    display: flex;
    gap: 10px;
}

/* Section Background */
.price-section.bg-pink {
  background: #fff0f5;
  padding: 60px 0;
}

/* Heading Styles */


/* Accordion Container */
.accordion {
  max-width: 800px;
  margin: 40px auto 0;
}

/* Accordion Item Base */
.accordion-item {
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Accordion Button */
.accordion-button {
  width: 100%;
  text-align: left;
  padding: 15px 20px;
  font-weight: 600;
  font-size: 18px;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
}

/* GOLD PACKAGE */
.accordion-item.gold .accordion-button {
  background: #fff8dc;       /* light gold */
  color: #b8860b;
}
.accordion-item.gold .accordion-button:hover {
  background: #ffecb3;
}

/* SILVER PACKAGE */
.accordion-item.silver .accordion-button {
  background: #f0f0f0;       /* light silver */
  color: #757575;
}
.accordion-item.silver .accordion-button:hover {
  background: #e0e0e0;
}

/* BRONZE PACKAGE */
.accordion-item.bronze .accordion-button {
  background: #fce8dc;       /* light bronze */
  color: #a0522d;
}
.accordion-item.bronze .accordion-button:hover {
  background: #f6d5c0;
}

.accordion-item.active .accordion-button::after {
  transform: rotate(90deg);
}

/* Accordion Content */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 20px;
  background: #fff;
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
  padding: 15px 20px;
}

/* Accordion List */
.accordion-content ul {
  padding-left: 20px;
  margin: 0;
}

.accordion-content li {
  margin-bottom: 8px;
  color: #5c2a3e;
  font-size: 16px;
}

/* Custom Note */
.custom-note {
  text-align: center;
  margin-top: 40px;
  background: #ffd9e6;
  padding: 20px;
  border-radius: 12px;
  color: #5c2a3e;
}

.custom-note h4 {
  margin-bottom: 10px;
  color: #c2185b;
}
.custom-note .small-text {
  font-size: 13px;
  color: #8b4c5c;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .accordion-button {
    font-size: 16px;
    padding: 12px 15px;
  }

  .accordion-content {
    font-size: 15px;
    padding: 12px 15px;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .price-section {
    padding: 40px 15px;
  }

  .accordion-button {
    font-size: 15px;
    padding: 10px 12px;
  }

  .accordion-content {
    font-size: 14px;
    padding: 10px 12px;
  }
}



/* Mobile improvements */
@media (max-width: 768px) {

  /* Reduce heading size */
  .price-section .pwe-heading {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  /* Accordion buttons smaller & full width */
  .accordion-button {
    font-size: 15px;
    padding: 10px 14px;
    border-radius: 6px;
  }

  /* Accordion content compact */
  .accordion-content {
    font-size: 14px;
    line-height: 1.5;
    padding: 0px 14px;
  }

  /* Reduce space between items */
  .accordion-item {
    margin-bottom: 12px;
  }

  /* Custom note box adjustments */
  .custom-note {
    padding: 15px;
    text-align: center;
    font-size: 14px;
    border-radius: 8px;
  }
  .custom-note h4 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .custom-note p {
    margin-bottom: 6px;
  }
}
.accordion-content ul {
    list-style: none; /* Remove default bullets */
    padding-left: 0;  /* Remove default padding */
}

.accordion-content ul li {
    position: relative;
    padding-left: 30px; /* Space for heart icon */
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
}

.accordion-content ul li::before {
    content: "❤"; /* Heart symbol */
    position: absolute;
    left: 0;
    top: 0;
    color: #ff6699; /* Pink heart */
    font-size: 16px;
    line-height: 1.6;
}


.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.portfolio-item:hover .overlay {
  opacity: 1;
}

.zoom-icon {
  font-size: 40px;
  color: #fff;
  font-weight: bold;
}

/* Fancybox customization */
.fancybox__caption {
  font-size: 16px;
  font-weight: bold;
  color: white;
}

.fancybox__counter {
  font-size: 16px;
  color: #fff;
}

.fancybox__toolbar {
  background: rgba(0, 0, 0, 0.6);
}




/* ===== Section Styling ===== */
.testimonials-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fff0f6 0%, #ffe6f0 100%);
  text-align: center;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}
.section-title span {
  color: #ff4da6;
}
.section-title p {
  color: #000;
  max-width: 500px;
  margin: 0 auto 50px;
  font-size: 1rem;
}

/* ===== Testimonial Cards ===== */
.testimonial-slider {
  display: flex;
  gap: 25px;
  overflow: hidden;
  scroll-behavior: smooth;
}

.testimonial-card {
  flex: 0 0 33.33%;
  background: white;
  border-radius: 15px;
  padding: 30px 25px;
  box-shadow: 0 4px 25px rgba(255, 77, 166, 0.1);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-8px);
}

.testimonial-content p {
  font-style: italic;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-footer {
  border-top: 1px solid #f5f5f5;
  padding-top: 15px;
  text-align: left;
}

.stars {
  color: gold;
  font-size: 1rem;
  margin-bottom: 8px;
}
.testimonial-footer h4 {
  margin: 0;
  color: #ff4da6;
  font-weight: 600;
}
.testimonial-footer small {
  color: #888;
  display: block;
  font-size: 0.85rem;
  margin-top: 3px;
}

/* ===== Pagination Dots ===== */
.testimonial-dots {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.testimonial-dots span {
  width: 12px;
  height: 12px;
  background: #ff4da6;
  border-radius: 50%;
  opacity: 0.4;
  cursor: pointer;
  transition: 0.3s;
}
.testimonial-dots span.active {
  opacity: 1;
  transform: scale(1.2);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .testimonial-card {
    flex: 0 0 50%;
  }
}
@media (max-width: 600px) {
  .testimonial-card {
    flex: 0 0 100%;
  }
}


        /* Portfolio Items */
        .portfolio-item {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            cursor: pointer;
            margin-bottom: 20px;
        }

        .portfolio-item img {
            width: 100%;
            height: 350px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .portfolio-item:hover img {
            transform: scale(1.1);
        }

        /* Overlay with Zoom Icon */
        .portfolio-item .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.3s;
        }

        .portfolio-item:hover .overlay {
            opacity: 1;
        }

        .zoom-icon {
            font-size: 40px;
            color: #fff;
            font-weight: bold;
        }

        /* Fancybox Customization */
        .fancybox__counter {
            font-size: 16px;
            color: #fff;
        }

        .fancybox__toolbar {
            background: rgba(0, 0, 0, 0.6);
        }

        .fancybox__button--close {
            background: rgba(0, 0, 0, 0.7);
            border-radius: 50%;
        }
    /* Professional Form Styling */
    .contact__form {
        background: #ffffff;
        padding: 35px;
        border-radius: 15px;
        box-shadow: 0 8px 30px rgba(0,0,0,0.08);
        font-family: 'Segoe UI', sans-serif;
    }

    .contact__form p {
        font-size: 22px;
        font-weight: 600;
        color: #ff4f92;
        margin-bottom: 20px;
        text-align: center;
    }

    .contact__form .form-group {
        margin-bottom: 18px;
    }

    .contact__form input,
    .contact__form select,
    .contact__form textarea {
        width: 100%;
        padding: 12px 15px;
        font-size: 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        outline: none;
        transition: 0.3s;
        background-color: #fff;
    }

    .contact__form input:focus,
    .contact__form select:focus,
    .contact__form textarea:focus {
        border-color: #ff4f92;
        box-shadow: 0 0 8px rgba(191, 10, 48, 0.15);
    }

    .contact__form textarea {
        resize: none;
        min-height: 100px;
    }

    .contact__form input[type="submit"] {
        background: linear-gradient(135deg, #ff4da6, #ff56c1);
        color: #000000;
        font-weight: bold;
        border: none;
        cursor: pointer;
        transition: 0.3s;
        padding: 12px;
        border-radius: 8px;
    }

    .contact__form input[type="submit"]:hover {
        background: linear-gradient(135deg, #000000, #f36bc8);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(191, 10, 48, 0.3);
    }

.btn-contact a span {
    font-weight: 900; /* or use bolder */
}

/* Floating Button */
.chat-toggle {
  position: fixed;
  bottom: 60px;
  right: 20px;
  background: #000000;
  color: #fff;
  padding: 12px 18px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Chat Widget Box */
.chat-widget {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 320px;
  max-width: 95%;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: none;
  flex-direction: column;
  z-index: 10000;
}

/* Header */
.chat-header {
  display: flex;
  align-items: center;
  padding: 12px;
  border-bottom: 1px solid #eee;
  background: #f9f9f9;
}

.chat-header img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.chat-header .online-status {
  font-size: 12px;
  color: green;
}

.chat-header .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: green;
  border-radius: 50%;
  margin-left: 5px;
}

.chat-header button {
  margin-left: auto;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
}

/* Body */
.chat-body {
  padding: 15px;
}

.message-time {
  font-size: 12px;
  color: #999;
  text-align: center;
  margin-bottom: 10px;
}

.message-bubble {
  display: flex;
  align-items: center;
  gap: 10px;
}

.message-bubble img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.message-bubble p {
  background: #f0f0f0;
  padding: 10px 15px;
  color: #000;
  border-radius: 15px;
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.stl strong {
  color: #000;
}

.connect-title {
  margin: 20px 0 10px;
  font-weight: bold;
  color: #000;
  text-align: center;
}

.chat-actions {
  display: flex;
  justify-content: space-around;
  gap: 10px;
  flex-wrap: wrap;
}

.chat-actions a {
  background: #e0f0ff;
  color: #ff4f92;
  padding: 10px 30px 10px 30px;
  border-radius: 12px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
}
.chat-actions a:hover {
  background: #f0f0f0; /* light grey */
  color: #0056b3;      /* darker blue on hover */
}

/* Responsive Adjustments */
@media (max-width: 480px) {
  .chat-toggle {
    bottom: 15px;
    right: 15px;
    font-size: 14px;
    padding: 10px 16px;
  }

  .chat-widget {
    right: 10px;
    left: 10px;
    width: auto;
    bottom: 70px;
  }

  .chat-actions {
    justify-content: space-evenly;
  }

  .chat-header img,
  .message-bubble img {
    width: 35px;
    height: 35px;
  }

  .chat-header button {
    font-size: 24px;
  }

  .message-bubble p {
    font-size: 13px;
  }
}

/* Default (desktop) */


/* Mobile fix */
@media (max-width: 768px) {
    .footer-logo {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .footer-logo img {
        max-height: 10px;
        padding-right: 0;
    }
}





/* Make gallery items equal size */
.square-thumb {
  position: relative;
  width: 100%;
  padding-top: 100%; /* makes it a square (1:1 ratio) */
  overflow: hidden;
  border-radius: 12px;
}

.square-thumb img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* crops evenly without stretching */
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.square-thumb:hover img {
  transform: scale(1.05);
}

/* Overlay style */
.square-thumb .overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 79, 146, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.square-thumb:hover .overlay {
  opacity: 1;
}

.zoom-icon {
  font-size: 28px;
  font-weight: bold;
  color: white;
}


.footer-logo {
    display: block;         /* remove inline gap */
    height: auto;           /* maintain aspect ratio */
    width: auto;            /* prevent stretching */
    max-width: 100%;        /* never overflow container */
    max-height: 90px;       /* limit height on desktop */
    object-fit: contain;    /* safety: keeps proportion inside box */
}

@media (max-width: 768px) {
    .footer-logo {
        max-height: 70px;   /* slightly smaller for tablets */
    }
}

@media (max-width: 576px) {
    .footer-logo {
        max-height: 60px;   /* smaller on phones */
    }
}


@media (max-width: 576px) {
    .pwe-heading {
        padding-top: 30px !important;
    }
}


/* Banner container */
.banner-container{
  position:relative;
  width:100%;
  height:400px;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}
/* Dark overlay – explicitly put it BEHIND content */
.banner-container::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.35);
  z-index:0;                /* <-- important */
}
/* Content (title) is ABOVE overlay */
.banner-head{
  position:relative;
  z-index:2;                /* <-- important */
  color:#fff;
}
.banner-head .pwe-heading{
  color:#000000 !important;    /* always white text */
  margin:0;
  padding-top:30px;
}
@media (max-width:768px){
  .banner-container{ height:220px; }
}

