/*--------------------- Copyright (c) 2020 ----------------------- 
[Master Stylesheet] 
Project: Multifarious pc
Version: 1.0.0 
Author: Kamleshyadav
 ------------------------------------------------------------------- 
[Table of contents] 
	1. Global CSS Start
	2. Comman CSS Start
    3. Preloader CSS Start
    4. Header CSS Start
    5. Banner CSS Start
    6. About CSS Start
    7. Service CSS Start
    8. Our Service CSS Start
    9. Our Team CSS Start
    10. Testimonial Start
    11. Counter CSS Start
    12. Shop CSS Start
    13. Partners CSS Start
    14. Footer CSS Start
    15. Responsive CSS Start
-------------------------------------------------------------------*/


/********************************************************
    1. Global CSS Start
********************************************************/

body {
    color: var(--main-pc-text);
    background: var(--main-bg-color);
}

a,
a:hover,
a:focus {
    color: var(--main-link-color);
}

.white-header {
    background-image: unset !important;
    background: #ffffff !important;
}


/********************************************************
    2. Comman CSS Start
********************************************************/

:root {
    --main-black: #000000;
    --white-color: #ffffff;
    --pink-color: #ff577b;
    --green-color: #98cc46;
    --heading-color: #3b4969;
    --text-color: #a0a5ae;
    --main-link-color: #5a647a;
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

*,
*:before,
*:after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

a:hover,
a:focus {
    color: var(--pink-color);
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto', sans-serif;
    color: var(--heading-color);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    margin: 0;
    padding: 0;
    text-transform: capitalize;
}

img {
    max-width: 100%;
}

input,
textarea,
select,
button,
label,
svg,
svg path,
svg rect,
svg polygon,
img,
a,
 :after,
 :before,
 :hover,
 :focus,
.form-control:focus {
    outline: none !important;
    box-shadow: none;
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

p {
    margin: 0px;
    font-weight: 400;
    font-size: 16px;
}

.container {
    max-width: 1200px;
}

span.fa.fa-angle-double-up {
    background: #98cc46;
    color: #fff;
    padding: 14px 18px;
    border-radius: 100px;
    font-size: 20px;
}


/* button css */

.pc_green_btn a {
    background-color: var(--green-color);
    color: var(--white-color);
    border: solid 2px var(--green-color);
    padding: 10px 40px;
    height: 50px;
    width: auto;
    text-align: center;
    transition: all 0.5s;
    font-weight: 500;
    display: inline-block;
}

.pc_green_btn a:hover {
    background-color: var(--white-color);
    ;
    color: var(--green-color);
    border: solid 2px var(--green-color);
}

.pc_main_pink_btn a {
    background-color: var(--pink-color);
    color: var(--white-color);
    border: solid 2px var(--pink-color);
    padding: 11px 25px;
    height: 50px;
    width: auto;
    text-align: center;
    transition: all 0.5s;
    font-weight: 500;
    display: inline-block;
}

.pc_main_pink_btn a:hover {
    background-color: var(--white-color);
    ;
    color: var(--pink-color);
    border: solid 2px var(--pink-color);
}

::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #c4c7cd;
}


/********************************************************
    3. Preloader CSS Start
********************************************************/

.preloader_active .preloader_holder {
    background-color: var(--main-bg-color);
}

.preloader_active .preloader_holder .preloader span {
    box-shadow: 0px 0px 0px 0px var(--green-color);
}

@-webkit-keyframes loadingCircles {
    0% {
        -webkit-transform: scale(0);
        opacity: 1;
        box-shadow: 0px 0px 0px 10px var(--green-color);
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 0;
        box-shadow: 0px 0px 0px 2px var(--green-color);
    }
}

@-moz-keyframes loadingCircles {
    0% {
        -moz-transform: scale(0);
        opacity: 1;
        box-shadow: 0px 0px 0px 10px var(--green-color);
    }
    100% {
        -moz-transform: scale(1);
        opacity: 0;
        box-shadow: 0px 0px 0px 2px var(--green-color);
    }
}

@keyframes loadingCircles {
    0% {
        transform: scale(0);
        opacity: 1;
        box-shadow: 0px 0px 0px 10px var(--green-color);
    }
    100% {
        transform: scale(1);
        opacity: 0;
        box-shadow: 0px 0px 0px 2px var(--green-color);
    }
}

.preloader_open:before,
.preloader_open:after {
    background-color: var(--main-bg-color);
}


/********************************************************
    4. Header CSS Start
********************************************************/

.pc_header_wrapper {
    background-image: url(../images/banner-bg.jpg);
    background-size: cover;
    position: relative;
    z-index: 1;
    width: 100%;
    animation: animate 25s linear infinite;
}

@keyframes animate {
    0% {
        background-position: left 0px top 0px;
    }
    25% {
        background-position: left 150px top -150px;
    }
    50% {
        background-position: left 300px top -300px;
    }
    75% {
        background-position: left 150px top -150px;
    }
    100% {
        background-position: left 0px top 0px;
    }
}

.pc_banner_right_img {
    animation: mover 2s infinite alternate;
    margin-right: 90px;
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

.pc_header_wrapper {
    padding: 27px 0 170px;
}

.main_menu_wrapper,
.pc_call_btn,
.main_menu_wrapper>ul>li,
.pc_call_btn>ul>li {
    display: inline-block;
}

.main_menu_wrapper>ul>li>a {
    color: var(--main-link-color);
    text-transform: capitalize;
    position: relative;
    margin: 0 0px;
    font-size: 16px;
    font-weight: 500;
}

ul.sub_menu li a:hover {
    color: var(--green-color);
}

.main_menu_wrapper>ul>li>a:before {
    position: absolute;
    content: "";
    bottom: 0px;
    right: 0;
    left: 0;
    margin: auto;
    max-width: 50px;
    width: 0%;
    height: 2px;
    background-color: transparent;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.main_menu_wrapper>ul>li>a:hover:before {
    opacity: 1;
    visibility: visible;
    width: 100%;
    background-color: var(--green-color);
}

.main_menu_wrapper>ul>li>a,
.main_menu_wrapper>ul>li>a:before,
.main_menu_wrapper>ul>li:hover>a:before {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.main_menu_parent {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    margin-right: 90px;
}

.pc_logo {
    text-align: center;
    margin-right: 80px;
}

.pc_call_btn {
    margin-left: 25px;
}

.call_icon {
    background-color: #a4dd4b;
    padding: 18px 18px;
    border: 1px solid #a4dd4b;
    font-size: 18px;
    font-weight: 500;
    fill: #fff;
    transition: all 0.4s linear;
}

.call_number {
    color: #fff;
    background: var(--green-color);
    padding: 18px 18px;
    border: 1px solid var(--green-color);
    font-size: 18px;
    font-weight: 700;
}

.fixed_header.fixed {
    background-color: #ffffff;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    box-shadow: 0 14px 28px rgb(0 0 0 / 12%), 0 10px 10px rgb(0 0 0 / 2%);
    padding: 20px 0px;
}

.fixed_header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: transparent;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    padding: 20px 0;
}


/********************************************************
    4. Banner CSS Start
********************************************************/

.pc_banner_wrapper {
    margin-top: 35px;
}

.pc_banner_left_text1 p {
    font-size: 18px;
    font-weight: 500;
    color: var(--pink-color);
    line-height: 1.5;
    padding-bottom: 5px;
}

.pc_banner_left_text1 h1 {
    font-size: 52px;
    font-weight: 400;
    color: var(--heading-color);
    line-height: 1.5;
}

.pc_banner_left_content {
    margin-left: 140px;
    margin-top: 230px;
}

.pc_banner_btn {
    margin-top: 25px;
}

.pc_banner_form span {
    display: grid;
}

.pc_banner_form form {
    display: flex;
}

.pc_banner_form_section input {
    border: none;
    border-bottom: 1px solid transparent;
    height: 34px;
}

.pc_banner_form_section label {
    font-size: 16px;
    font-weight: bold;
    color: var(--heading-color);
}

.pc_banner_form span {
    display: grid;
    width: 100%;
    padding-right: 10px;
}

.pc_banner_form_section input:focus {
    border-bottom: 1px solid #ff577b;
}

.pc_banner_form {
    background: #fff;
    padding: 45px;
    box-shadow: 0px 0px 50px 0px rgba(59, 63, 94, 0.1);
    width: 62%;
    margin-top: -240px;
    margin-left: 125px;
}

input[type="text"] {
    color: var(--text-center);
}

.pc_banner_right_img img {
    margin: 60px auto 20px;
    display: block;
    width: 100%;
    -webkit-mask-image: url(../images/banner-shape1.png);
    mask-image: url(../images/banner-shape1.png);
    -webkit-mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    -webkit-mask-size: 100% 100%;
}


/********************************************************
    5. About CSS Start
********************************************************/

.ps_about_text1 p {
    color: var(--pink-color);
    font-size: 18px;
    font-weight: 400;
}

p.ps_about_text2 span {
    text-decoration: underline;
}

.ps_about_list li {
    font-size: 16px;
    color: #a0a5ae;
    font-weight: 400;
    line-height: 1.2;
}

.ps_about_body {
    margin-top: 80px;
}

h1.ps_about_heading {
    padding: 5px 0 10px;
    font-size: 34px;
    font-weight: 400;
    line-height: 1.5;
}

.ps_about_list {
    padding: 5px 0;
}

.ps_about_list ul li::before {
    content: "\2022";
    color: red;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    font-size: 22px;
}

.ps_about_btn {
    margin-top: 35px;
}

.pc_about_wrapper {
    margin: 80px 0 80px;
}


/********************************************************
    6. Service CSS Start
********************************************************/

.pc_service_box {
    text-align: center;
    background: #fff;
    box-shadow: 0px 0px 30px 0px rgba(59, 63, 94, 0.1);
    padding: 30px 25px 45px;
    position: relative;
}

.pc_service_box:after {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 0%;
    height: 4px;
    background-color: transparent;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.pc_service_box:hover:after {
    opacity: 1;
    visibility: visible;
    width: 100%;
    background-color: var(--pink-color);
}

.pc_service_seperater {
    padding: 8px 0 5px;
}

.pc_service_box_body h3 {
    font-size: 20px;
    font-weight: bold;
    padding: 26px 0 0px;
}

.pc_service_heading h2 {
    font-size: 34px;
    font-weight: 400;
    margin: 0px auto 30px auto;
    text-align: center;
    width: 70%;
    line-height: 1.3;
}

.pc_service_slider_wrapper {
    margin-top: 60px;
}

.pc_service_box_btn a {
    font-size: 16px;
    font-weight: bold;
    color: #ff577b;
    border-bottom: 1px solid #ff577b;
}

.pc_service_wrapper {
    margin-bottom: 80px;
    background: #f9f9f9;
    padding: 80px 0 80px;
}

.pc_service_box_body p {
    padding: 10px 0;
}

.pc_service_heading.center h2 {
    padding: 5px 0 10px;
    font-size: 34px;
    font-weight: 400;
    line-height: 1.4;
    width: 80%;
    margin-bottom: 20px;
}

.pc_service_button {
    cursor: pointer;
}

.pc_service_wrapper .swiper-container {
    z-index: 0;
}

.pc_service_wrapper .swiper-button-next1 svg {
    text-align: right;
    margin-right: 0;
    background: var(--green-color);
    padding: 14px 10px;
    width: 45px;
    height: 45px;
    float: right;
    fill: #fff;
    border: 1px solid var(--green-color);
    transition: all 0.4s;
    position: absolute;
    top: calc(50% - 22.5px);
    right: -50px;
}

.pc_service_wrapper .swiper-button-next1:hover svg {
    background: var(--white-color);
    fill: var(--text-color);
    border: 1px solid #dcdcdb;
}

.pc_service_wrapper .swiper-button-prev1 svg {
    margin-right: 0px;
    background: #a3d159;
    padding: 14px 10px;
    width: 45px;
    height: 45px;
    fill: #fff;
    border: 1px solid #a3d159;
    transition: all 0.4s;
    position: absolute;
    top: calc(50% - 22.5px);
    left: -50px;
}

.pc_service_wrapper .swiper-button-prev1:hover svg {
    background: var(--white-color);
    fill: var(--text-color);
    border: 1px solid #dcdcdb;
}

.pc_service_icon {
    padding: 20px 0 5px;
}


/********************************************************
    7. Our Service CSS Start
********************************************************/


/*=========video play button style start=========*/

.video-play-button {
    position: absolute;
    z-index: 0;
    bottom: 10%;
    left: 50px;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    padding: 18px 20px 18px 28px;
}

a#play-video {
    background: #ff577b;
}

.video-play-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
    border: 1px solid var(--pink-color);
}

.video-play-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
    transition: all 200ms;
    border: 1px solid var(--pink-color);
}

.video-play-button img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video-play-button span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    top: 10px;
    left: 5px;
    height: 0;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.video-overlay {
    position: fixed;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.80);
    opacity: 0;
    transition: all ease 500ms;
}

.video-overlay.open {
    position: fixed;
    z-index: 1000;
    opacity: 1;
}

.video-overlay-close {
    position: absolute;
    z-index: 1000;
    top: 15px;
    right: 20px;
    font-size: 36px;
    line-height: 1;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: all 200ms;
}

.video-overlay-close:hover {
    color: #fa183d;
}

.video-overlay iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
}


/*=========video play button style end=========*/

.pc_our_services_text1 p {
    color: var(--pink-color);
    font-size: 18px;
    font-weight: 400;
}

.pc_our_services_heading h2 {
    padding: 5px 0 10px;
    font-size: 34px;
    font-weight: 400;
    line-height: 1.4;
    width: 425px;
    text-transform: none;
}

.pc_service_type_box {
    margin-top: 30px;
}

.pc_service_type_box h5 {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    padding: 12px 0 4px;
}

.pc_service_type_box:hover h5 {
    color: #ff577b;
}

.pc_our_services_img {
    position: relative;
}


/********************************************************
    8. Team CSS Start
********************************************************/

.pc_team_wrapper {
    padding: 70px 0 80px;
    background: #f9f9f9;
    margin-top: 80px;
}

.pc_team_wrapper .swiper-container {
    z-index: 0;
}

.pc_team_section {
    position: relative;
    background: var(--main-bg-color);
    transition: all 0.4s;
    overflow: hidden;
    margin: 20px 0;
}

.pc_team_img_wrapper {
    display: flex;
}

.pc_team_img {
    width: 100%;
    position: relative;
}

.pc_team_img img {
    width: 100%;
}

.pc_team_hover {
    background: #2d333be0;
    opacity: 0;
    position: absolute;
    top: -56px;
    bottom: 90px;
    left: 0;
    right: 0px;
    border: none;
    display: flex;
    align-items: center;
    font-weight: 500;
    border-radius: 0;
    -webkit-transform: translateY(-500px);
    -moz-transform: translateY(-500px);
    -ms-transform: translateY(-500px);
    -o-transform: translateY(-500px);
    transform: translateY(-500px);
    transition: all 0.4s;
}

.pc_team_section:hover .pc_team_hover {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
}

.pc_team_info {
    background: transparent;
    opacity: 0;
    position: absolute;
    top: -56px;
    bottom: 90px;
    left: 0;
    right: 0px;
    transition: all 0.4s;
}

.social_icon:hover .pc_team_info {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
}

.pc_team_section .pc_share_icon {
    position: absolute;
    right: 15px;
    bottom: 65px;
    z-index: 1;
}

.pc_team_info_icon {
    position: absolute;
    right: -75px;
    bottom: 25px;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: all 0.5s;
}

.pc_partner_button {
    cursor: pointer;
}

.social_icon:hover .pc_team_info_icon {
    transform: scaleY(1);
}

.pc_team_inner {
    margin: 195px 0 15px 175px;
    text-align: center;
    color: var(--main-bg-color);
}

.pc_team_info:first-child {
    margin-bottom: 10px;
    padding-bottom: 10px;
    position: relative;
}

.pc_team_button {
    cursor: pointer;
}

.pc_team_info {
    width: 100%;
    display: inline-block;
}

.pc_team_info h6 {
    font-size: 20px;
    color: var(--main-green-color);
}

.pc_team_info a {
    color: var(--main-bg-color);
    display: inline-block;
    width: 100%;
}

.pc_team_img_wrapper,
.pc_team_img_wrapper:hover,
.pc_team_img_wrapper .pc_team_hover,
.pc_team_img_wrapper:hover .pc_team_hover,
.pc_team_button>div,
.pc_team_button>div:hover,
.pc_team_button>div svg,
.pc_team_button>div:hover svg {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.pc_team_identity a {
    color: var(--heading-color);
    font-weight: bold;
    font-size: 20px;
    margin-top: 17px;
    display: inline-block;
}

.pc_team_info_icon i.fa.fa-facebook {
    background: #0b8ff3;
    padding: 12px 16px;
    border-radius: 50px;
    margin-bottom: 0px;
    font-size: 20px;
    color: #fff;
}

.pc_team_info_icon i.fa.fa-linkedin {
    background: #0794b3;
    padding: 11px 13px;
    border-radius: 50px;
    margin-bottom: 0px;
    font-size: 20px;
    color: #fff;
}

.pc_team_info_icon i.fa.fa-twitter {
    background: #54ccfc;
    padding: 11px 12px;
    border-radius: 50px;
    margin-bottom: 10px;
    font-size: 20px;
    color: #fff;
}

.pc_share_icon {
    background: #98cc46;
    padding: 0px 17px 0px;
    border-radius: 100px;
}

.pc_share_icon img {
    padding: 0px 0px 15px;
}

.pc_heading h2 {
    padding: 5px 30px 10px;
    font-size: 34px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 20px;
}

.text-center {
    text-align: left;
    padding: 0 25px 10px;
}

.pc_team_identity p {
    color: var(--green-color);
}

.pc_team_identity {
    padding: 0 25px 15px;
    margin-top: 5px;
}

.pc_team_wrapper .swiper-button-next1 svg {
    text-align: right;
    margin-right: 0;
    background: var(--green-color);
    padding: 14px 10px;
    width: 45px;
    height: 45px;
    float: right;
    fill: #fff;
    border: 1px solid var(--green-color);
    transition: all 0.4s;
    position: absolute;
    top: calc(50% - 22.5px);
    right: -50px;
}

.pc_team_wrapper .swiper-button-next1:hover svg {
    background: var(--white-color);
    fill: var(--text-color);
    border: 1px solid #dcdcdb;
}

.pc_team_wrapper .swiper-button-prev1 svg {
    margin-right: 0px;
    background: #a3d159;
    padding: 14px 10px;
    width: 45px;
    height: 45px;
    fill: #fff;
    border: 1px solid #a3d159;
    transition: all 0.4s;
    position: absolute;
    top: calc(50% - 22.5px);
    left: -50px;
}

.pc_team_wrapper .swiper-button-prev1:hover svg {
    background: var(--white-color);
    fill: var(--text-color);
    border: 1px solid #dcdcdb;
}


/********************************************************
    9. Testimonial CSS Start
********************************************************/

.pc_testimonial_slider {
    background-color: #98cc46;
    padding: 0px 0px 0px 0px;
    position: relative;
}

.pc_testimonial_section {
    padding: 50px 0;
}

span.pc_left_shape {
    position: absolute;
    bottom: 10px;
    left: 25px;
    z-index: 0;
}

.pc_client_quote p {
    color: #fff;
    padding: 0 10px;
}

.pc_client_quote h4 {
    color: #fff;
}

.pc_client_quote h4 {
    color: #fff;
    font-size: 18px;
    padding: 10px 0;
}

.pc_client_quote span {
    color: #fff;
    font-size: 14px;
    padding-left: 10px;
}

img.pc_testimonial_icon {
    position: absolute;
    left: 50%;
    top: 35px;
}

.pc_testimonial_button {
    cursor: pointer;
}

.pc_client_img_quote img {
    background: #fff;
    border-radius: 50px;
    position: absolute;
    right: 35px;
    bottom: -3px;
}

img.pc_client_main_img {
    border-radius: 50px;
    border: 6px solid #baeb6d;
}

.pc_testimonial_wrapper {
    margin-top: 70px;
}

.pc_testimonial_button .swiper-button-next1 svg {
    margin-right: -7px;
    background: #a3d159;
    padding: 12px 22px;
    width: 55px;
    height: 50px;
    fill: #fff;
    border: 1px solid #a3d159;
    transition: all 0.4s;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.pc_testimonial_button .swiper-button-next1:hover svg {
    background: #90c143;
    fill: var(--white-color);
    border: 1px solid #90c143;
}

.pc_testimonial_button .swiper-button-prev1 svg {
    margin-right: 0px;
    background: #a3d159;
    padding: 12px 22px;
    width: 55px;
    height: 50px;
    fill: #fff;
    border: 1px solid #a3d159;
    transition: all 0.4s;
    position: absolute;
    right: 45px;
    bottom: 0px;
    z-index: 1;
}

.pc_testimonial_button .swiper-button-prev1:hover svg {
    background: #90c143;
    fill: var(--white-color);
    border: 1px solid #90c143;
}

span.pc_left_shape:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: -25px;
    width: 65px;
    height: 65px;
    background: #a7d958;
    z-index: 1;
    border-top-right-radius: 50px;
}

span.pc_left_shape:before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: -25px;
    width: 85px;
    height: 65px;
    background: #a1d352;
    z-index: 1;
    border-top-right-radius: 60px;
    border-bottom-right-radius: 0px;
}

span.pc_right_shape {
    position: absolute;
    right: 0;
    z-index: 0;
    top: 0;
}

span.pc_right_shape:after {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    width: 60px;
    height: 60px;
    background: #a7d958;
    z-index: 1;
    border-bottom-left-radius: 50px;
}

span.pc_right_shape:before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    width: 85px;
    height: 85px;
    background: #a1d352;
    z-index: 1;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 70px;
}

.pc_testimonial_icon_img {
    position: relative;
    z-index: 2;
}

.pc_client_quote {
    padding-right: 30px;
}

.pc_testimonial_wrapper .swiper-container {
    z-index: 0;
}


/********************************************************
    9. Counter CSS Start
********************************************************/

.pc_counter_wrapper {
    background-color: #f9f9f9;
    padding: 80px 0 80px;
    position: relative;
    z-index: 0;
    margin-top: 80px;
}

.pc_counter_wrapper:after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.96;
    background: transparent;
    z-index: -1;
}

.pc_counter_icon svg {
    fill: #fff;
}

.pc_counter_icon_box {
    text-align: center;
}

.pc_counter_icon p {
    fill: #fff;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    padding: 24px;
    margin: 0 auto;
    position: relative;
}

p.pc_counter_icon1 {
    background: #6dd1ff;
    border: 10px solid #f9f9f9;
    position: relative;
}

p.pc_counter_icon1:after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    border: 1px dashed #6dd1ff;
    border-radius: 50px;
    top: -10px;
    left: -10px;
    animation-name: spin;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

p.pc_counter_icon2 {
    background: #ffb064;
    border: 10px solid #f9f9f9;
    position: relative;
}

p.pc_counter_icon2:after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    border: 1px dashed #ffb064;
    border-radius: 50px;
    top: -10px;
    left: -10px;
    animation-name: spin;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

p.pc_counter_icon3 {
    background: #e086ff;
    border: 10px solid #f9f9f9;
    position: relative;
    padding: 20px;
}

p.pc_counter_icon3:after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    border: 1px dashed #e086ff;
    border-radius: 50px;
    top: -10px;
    left: -10px;
    animation-name: spin;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

p.pc_counter_icon4 {
    background: #ff7283;
    border: 10px solid #f9f9f9;
    position: relative;
    padding: 20px;
}

p.pc_counter_icon4:after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    border: 1px dashed #ff7283;
    border-radius: 50px;
    top: -10px;
    left: -10px;
    animation-name: spin;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.pc_counter_text h2 {
    padding: 20px 0px 8px;
    font-size: 36px;
    font-weight: bold;
}

.pc_counter_text p {
    font-size: 16px;
    font-weight: 400;
    color: var(--heading-color);
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


/********************************************************
    11. Pet Shop CSS Start
********************************************************/

.pc_shop_wrapper {
    margin-top: 70px;
}

.pc_shop_item_discount span {
    color: #fff;
    padding: 5px 15px;
    text-align: center;
    font-size: 14px;
}

.pc_shop_item_discount {
    position: absolute;
    left: 34px;
    top: 20px;
    z-index: 1;
}

.pc_shop_item_dis1 span {
    background: #ff5d65;
}

.pc_shop_item_dis2 span {
    background: #ffba58;
}

.pc_shop_item_dis3 span {
    background: #ff895a;
}

.pc_shop_item_dis4 span {
    background: #81df42;
}

.pc_shop_item_dis5 span {
    background: #81df42;
}

.pc_shop_item_dis6 span {
    background: #ff895a;
}

.pc_shop_item_dis7 span {
    background: #ffba58;
}

.pc_shop_item_dis8 span {
    background: #ff5d65;
}

h5.pc_shop_item_heading {
    font-size: 18px;
    font-weight: bold;
}

.pc_shop_item_content p {
    font-size: 14px;
    padding: 0px 0 5px;
    line-height: 1.5;
}

p.pc_shop_item_price {
    color: #98cc46;
    font-size: 18px;
    font-weight: bold;
}

.pc_shop_item_content {
    padding-top: 20px;
}

h5.pc_shop_item_heading:hover {
    color: var(--green-color);
}

.pc_shop_btn {
    margin: 40px 0 0;
}

.pc_shop_img_box {
    position: relative;
}

.pc_shop_img_box .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d333be0;
    overflow: hidden;
    z-index: 0;
    width: 100%;
    height: 0;
    transition: .5s ease;
}

.pc_shop_box:hover .overlay {
    height: 100%;
}

.pc_shop_img {
    width: 100%;
}

.pc_shop_box_text {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}


/********************************************************
    12. Blog CSS Start
********************************************************/

.pc_blog_img_box {
    position: relative;
}

.pc_blog_text h3 {
    font-size: 20px;
    color: #2c3e4a;
    font-weight: 600;
    line-height: 32px;
    transition: all 0.3s;
}

.pc_blog_text h3:hover {
    color: var(--green-color);
}

.pc_blog_text p {
    color: #898d94;
    padding: 8px 0px;
}

.pc_single_blog_text p {
    text-align: justify;
}

.pc_blog_user a {
    color: #898d94;
    transition: all 0.3s;
}

.pc_blog_user a:hover {
    color: var(--green-color);
}

.pc_blog_user_comment img {
    padding-right: 5px;
}

.pc_blog_text_body {
    background: #fff;
    padding: 25px 30px 25px 25px;
}

.pc_blog_comment a {
    color: #898d94;
    transition: all 0.3s;
}

.pc_blog_comment a:hover {
    color: var(--green-color);
}

.pc_blog_user_comment {
    display: flex;
    align-items: center;
}

.pc_blog_comment {
    padding-left: 40px;
}

.pc_blog_img img {
    transition: all 0.4s;
    position: relative;
    width: 100%;
}

.pc_blog_img:hover img {
    transition: all 0.4s;
    transform: scale(1.1);
}

.pc_blog_img {
    overflow: hidden;
    transition: all 0.4s;
}

.pc_blog_wrapper {
    margin-top: 80px;
    background: #f9f9f9;
    padding: 80px 0;
}

.pc_shop_img {
    transition: 0.4s;
}

.pc_shop_img:hover {
    filter: brightness(0.7);
}


/********************************************************
    13. Partners CSS Start
********************************************************/

.pc_partner_wrapper .swiper-container {
    z-index: 0;
}

.pc_partner_wrapper {
    padding: 80px 0;
}

.pc_partners_container img {
    filter: grayscale(100%);
}

.pc_partners_container:hover img {
    filter: grayscale(0%);
}

.pc_partners_container:hover img,
.pc_partners_container:hover,
.pc_partners_container img,
.pc_partners_container {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.pc_partner_button .swiper-button-next1 {
    margin-right: -100px;
    background: #a3d159;
    padding: 13px 15px 0 20px;
    width: 50px;
    height: 50px;
    color: #fff;
    border: 1px solid #a3d159;
    transition: all 0.4s;
    position: absolute;
    right: 0;
    bottom: 25px;
    z-index: 1;
}

.pc_partner_button .swiper-button-next1:hover {
    background: transparent;
    color: var(--text-color);
    border: 1px solid #a5a9b133;
}

.pc_partner_button .swiper-button-prev1 {
    margin-left: -100px;
    background: #a3d159;
    padding: 14px 20px 0 20px;
    width: 50px;
    height: 50px;
    color: #fff;
    border: 1px solid #a3d159;
    transition: all 0.4s;
    position: absolute;
    left: : 0;
    bottom: 25px;
    z-index: 1;
}

.pc_partner_button .swiper-button-prev1:hover {
    background: transparent;
    color: var(--text-color);
    border: 1px solid #a5a9b133;
}


/********************************************************
    14. Contact CSS Start
********************************************************/

.pc_contact_wrapper {
    position: relative;
    background: #2d3346;
    padding: 60px 410px;
}

.pc_contact_box h1 {
    color: var(--white-color);
    font-size: 20px;
    font-weight: 500;
    padding: 20px 0px;
}

.pc_contact_box p {
    color: var(--white-color);
}

.pc_contact_box {
    text-align: center;
}

.pc_contact_wrapper .row {
    border-bottom: 1px solid #80808042;
    padding-bottom: 50px;
}

button.sal_btn.submitForm {
    background-color: var(--green-color);
    color: var(--white-color);
    border: solid 2px var(--green-color);
    padding: 10px 40px;
    height: 50px;
    width: auto;
    text-align: center;
    transition: all 0.5s;
    font-weight: 500;
}

button.sal_btn.submitForm:hover {
    background-color: var(--white-color);
    color: var(--green-color);
    border: solid 2px var(--green-color);
}


/********************************************************
    15. Footer CSS Start
********************************************************/

.cs_footer_wrapper {
    padding: 0px 0 100px;
    position: relative;
    background: #2d3346;
}

.cs_footer_wrapper:after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.96;
    background: #2a2a32;
    z-index: -1;
}

.cs_footer_wrapper a {
    color: #fff;
}

.cs_footer_logo a {
    color: #fff;
    font-size: 21px;
    font-weight: bold;
    font-family: 'Cormorant Garamond', serif;
    display: flex;
    align-items: center;
}

.cs_footer_logo span {
    margin-left: 5px;
}

.cs_footer_logo a:hover {
    color: #fff;
}

.cs_footer_logo img {
    max-width: 35px;
}

.cs_footer_icon i.fa.fa-facebook {
    background: #424859;
    padding: 10px 13px;
    border-radius: 50px;
    color: #fff;
    transition: all 0.3s;
}

.cs_footer_icon i.fa.fa-facebook:hover {
    background: var(--green-color);
    padding: 10px 13px;
    color: #fff;
}

.cs_footer_icon i.fa.fa-twitter {
    background: #424859;
    padding: 10px 10px;
    border-radius: 50px;
    transition: all 0.3s;
    color: #fff;
}

.cs_footer_icon i.fa.fa-twitter:hover {
    background: var(--green-color);
    padding: 10px 10px;
    color: #fff;
}

.cs_footer_icon i.fa.fa-google-plus {
    background: #424859;
    padding: 10px 8px;
    border-radius: 50px;
    transition: all 0.3s;
    color: #fff;
}

.cs_footer_icon i.fa.fa-google-plus:hover {
    background: var(--green-color);
    padding: 10px 8px;
    color: #fff;
}

.cs_footer_icon i.fa.fa-youtube-play {
    background: #424859;
    padding: 10px 9px;
    border-radius: 50px;
    transition: all 0.3s;
    color: #fff;
}

.cs_footer_icon i.fa.fa-youtube-play:hover {
    background: var(--green-color);
    padding: 10px 9px;
    color: #fff;
}

.cs_footer_icon ul {
    display: flex;
    align-items: center;
}

.cs_footer_icon li {
    margin-right: 12px;
}

.cs_footer_icon h5 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    padding: 25px 0px 15px;
}

.cs_footer_section1 p {
    padding: 25px 0px 0px;
    color: #fff;
}

.cs_footer_wrapper h5 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    padding: 10px 0px 15px;
}

.cs_footer_wrapper li {
    padding-bottom: 5px;
}

.cs_copyright {
    text-align: center;
    margin-top: 80px;
    border-top: 1px solid #484848;
    padding: 15px 0 0;
    margin-bottom: -90px;
}

.cs_footer_wrapper a:hover {
    color: var(--green-color);
}

.cs_footer_section2 a:hover,
.cs_footer_section3 a:hover,
.cs_footer_section4 a:hover,
.cs_footer_section5 a:hover {
    margin-left: 10px;
}

.cs_footer_logo a:hover {
    color: #fff;
}

.cs_copyright p {
    color: #fff;
}


/********************************************************
    About Page
********************************************************/

.page_title_wrapper {
    position: relative;
    background: url(../images/page_title_banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    padding: 145px 0 41px;
    color: var(--main-bg-color);
}

.page_title_wrapper:before {
    content: "";
    background: var(--main-black);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    opacity: 0.9;
}

.page_title_text h2 {
    color: #fff;
    font-size: 38px;
    line-height: 46px;
    font-weight: 700;
    margin-bottom: 6px;
}

.page_title_text ul {
    display: flex;
    justify-content: center;
}

.page_title_text ul>li {
    position: relative;
    padding-left: 20px;
}

.page_title_text ul>li:first-child {
    padding-left: 0;
}

.page_title_text ul>li:before {
    content: "\f105";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    top: 3px;
    left: 8px;
}

.page_title_text ul>li:first-child:before {
    content: unset;
}

.page_title_text ul>li a {
    color: #fff;
}

.ps_about_text1 {
    margin-bottom: 5px;
}

.ps_about_heading {
    margin-bottom: 10px;
}

.ps_about_text2 {
    line-height: 26px;
}


/********************************************************
    Blog Page
********************************************************/

.pc_sidebar_search input[type="text"] {
    width: 100%;
    border: 1px solid #e6e6e6;
    height: 47px;
    padding: 0 50px 0 30px;
    position: relative;
    line-height: 50px;
    margin-bottom: 4px;
}

.pc_sidebar_search a {
    position: absolute;
    top: 0;
    right: 0;
    background: #a3d159;
    color: #fff;
    padding: 11px 15px;
}

h4.pc_sub_heading.relative {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.pc_category_field ul li {
    padding: 0 0 12px 0px;
    position: relative;
    justify-content: space-between;
    display: flex;
    flex-wrap: wrap;
}

.pc_sidebar_tags_box {
    margin-top: 22px;
}

.pc_latestPost_field {
    margin-top: 20px;
}

.pc_category_field a:hover {
    color: #98cc46;
}

.pc_sidebar_post {
    margin-top: 10px;
    margin-bottom: 30px;
}

.pc_sidebar_tags_box ul li {
    border: none;
    margin-bottom: 20px;
    display: inline-block;
    margin-right: 7px;
}

.pc_sidebar_search {
    position: relative;
    margin-bottom: 30px;
}

.pc_category_field a {
    color: #898d94;
    font-size: 16px;
    font-weight: 400;
}

.pc_latestPost_field li {
    display: flex;
    margin-bottom: 20px;
}

a.pc_blog_title:hover {
    color: #98cc46;
}

p.pc_blog_date {
    color: #98cc46;
    font-size: 16px;
}

.pc_blog_sidebar_tags {
    margin-top: 5px;
}

a.pc_blog_title {
    font-size: 16px;
    color: #898d94;
}

.pc_blog_title_wrap {
    width: 80%;
    margin-left: 15px;
}

a.ed_btn.ed_orange {
    color: #fff;
    background: #98cc46;
    padding: 7px 10px;
    border: 1px solid #98cc46;
    transition: all 0.4s;
}

a.ed_btn.ed_orange:hover {
    color: #98cc46;
    background: #fff;
    padding: 7px 10px;
    border: 1px solid #98cc46;
}

.pc_blog_section2 {
    margin-top: 30px;
}

.blog_pagination_wrapper ul li {
    display: inline-block;
    font-size: 18px;
}

.pagination {
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: .25rem;
    justify-content: center;
    margin-top: 50px;
}

li.page-item a {
    color: #fff;
    background: #a3d159;
    padding: 10px 15px;
    margin-right: 15px;
}

li.page-item a:hover {
    z-index: 2;
    color: #a3d159;
    text-decoration: none;
    background-color: #ffffff;
    border-color: #a3d159;
}

.page-link:focus {
    outline: none;
    box-shadow: none;
}


/********************************************************
    Single Blog Page
********************************************************/

.pc_blockquote {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.pc_blockquote_img {
    width: 160px;
    margin-right: 10px;
    position: relative;
}

.pc_blockquote_img:before {
    content: "\f10e";
    right: 12px;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
    color: #98cc46;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: 40px;
    height: 40px;
    line-height: 32px;
    background: #fff;
    border: 5px solid #98cc46;
    padding-left: 8px;
    border-radius: 100%;
}

.pc_blockquote_img img.pc_quote_user {
    border: 3px solid #98cc46;
    border-radius: 50%;
    width: 130px;
    height: 130px;
}

.pc_quote_user {
    color: var(--main-link-color);
    font-weight: 700;
    font-size: 20px;
    width: 100%;
    display: inline-block;
}

.pc_blockquote_quote p,
.pc_quote_user {
    text-align: left;
}

.pc_blockquote_quote {
    width: calc(100% - 170px);
    color: #898d94;
    position: relative;
    text-align: center;
}

.pc_blockquote_quote:before {
    content: "\f10e";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
    color: #98cc46;
    position: absolute;
    left: 0;
    right: 0;
    font-size: 84px;
    margin: auto;
    top: 50%;
    opacity: .1;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.pc_blockquote_quote p,
.pc_quote_user {
    text-align: left;
}

.pc_quote_user {
    color: #2c3e4a;
    font-weight: 700;
    font-size: 20px;
    width: 100%;
    display: inline-block;
}

.pc_quote_user>span {
    color: var(--main-txt-color);
    font-size: 16px;
    font-weight: 400;
}

.pc_img_text_container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.pc_img_text_container img {
    width: 370px;
    display: inline-block;
    margin: 6px 15px 6px 0;
}

.pc_img_text_container p {
    display: inline-block;
    width: calc(100% - 385px);
}

.pc_divider {
    margin: 22px 0;
    display: block;
}

.pc_author_message_box {
    background: #98cc46;
    border: none;
    border-radius: 0;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 74px 0 73px;
    color: var(--main-bg-color);
}

.pc_S_blog_wrapper {
    margin-top: 0;
}

.pc_author_image {
    width: 110px;
    height: 110px;
    overflow: hidden;
    margin-right: 30px;
}

.pc_author_image img {
    width: 110px;
    height: 110px;
    border: none;
    border-radius: 100%;
    object-fit: fill;
}

.pc_author_content {
    width: calc(100% - 140px);
}

.pc_author_content h5 {
    color: var(--main-bg-color);
    font-weight: 700;
    font-size: 20px;
}

.pc_author_content h5 span {
    font-weight: 400;
    font-size: 16px;
}

.pc_section_heading {
    font-size: 28px;
    margin-bottom: 35px;
    font-weight: 700;
}

.pc_blog_comment>ul>li {
    margin-bottom: 26px;
    display: inline-block;
}

.pc_comment_holder {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 30px;
}

.pc_comment_user {
    width: 100px;
    height: 100px;
    overflow: hidden;
    margin-right: 30px;
}

.pc_comment_user img {
    width: 100px;
    height: 100px;
    border: none;
    border-radius: 100%;
    object-fit: fill;
}

h5.pc_user_name {
    font-weight: 700;
    font-size: 18px;
}

.pc_comment_detail {
    width: calc(100% - 130px);
}

.pc_reply_btn {
    color: #98cc46;
    margin-left: 15px;
}

.pc_blog_comment ul li ul {
    padding-left: 80px;
}

.pc_reply_btn svg {
    width: 16px;
    fill: #98cc46;
}

.pc_comment_form .pc_section_heading {
    margin-bottom: 40px;
}

.pc_field_holder {
    margin-bottom: 30px;
}

.pc_form_field {
    width: 100%;
    border: 1px solid var(--main-border-color);
    padding: 0 20px;
    height: 50px;
    border-radius: 6px;
    display: flex;
}

textarea.pc_form_field {
    height: 150px;
    resize: none;
    padding: 12px 20px;
}


/********************************************************
    17. Contact CSS Start
********************************************************/

.pc_contact_form {
    padding: 50px 40px 50px 30px;
    box-shadow: 0 19px 38px rgb(255 255 255 / 7%), 0 15px 12px rgb(255 255 255 / 5%);
    margin-right: -50px;
    margin-top: 40px;
    background: #f9f9f9;
}

.pc_contact_form .pc_sub_heading {
    margin-bottom: 30px;
    font-size: 26px;
}

.pc_sub_heading {
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 22px;
    text-transform: capitalize;
}

.pc_contact_form .pc_field_holder {
    margin-bottom: 30px;
}

.pc_form_field {
    width: 100%;
    border: 1px solid var(--main-border-color);
    padding: 0 20px;
    height: 50px;
    border-radius: 6px;
    display: flex;
}

.pc_contact_form textarea.pc_form_field {
    height: 140px;
}

textarea.pc_form_field {
    height: 150px;
    resize: none;
    padding: 12px 20px;
}

.cs_map_wrapper {
    margin-top: 0;
    margin-bottom: 0;
}

iframe {
    width: 100%;
    border: none;
}

.pc_main_contact_wrapper {
    background: #f9f9f9;
    padding: 80px 0;
}

.pc_banner_form {
    position: relative;
}

.pc_shop_box {
    position: relative;
    z-index: 0;
}
/********************************************************
    17. Responsive CSS Start
********************************************************/

@media only screen and (min-width: 1400px) and (max-width: 1700px) {
    .pc_banner_form {
        background: #fff;
        padding: 45px 40px 45px 45px;
        box-shadow: 0px 0px 50px 0px rgba(59, 63, 94, 0.1);
        width: 80%;
        margin-top: 0;
        margin-left: 125px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1480px) {
    .pc_banner_form span {
        margin-left: -25px;
    }
}

@media (max-width: 1400px) {
    .pc_banner_form {
        padding: 40px 20px 40px 20px;
        width: 100%;
        margin-top: 80px;
        margin-left: 0;
    }
    .main_menu_parent {
        margin-right: 10px;
    }
    .pc_banner_left_content {
        margin-left: 20px;
        margin-top: 60px;
    }
    .pc_partner_button .swiper-button-next1 {
        margin-right: -60px;
    }
    .pc_partner_button .swiper-button-prev1 {
        margin-left: -60px;
    }
    .pc_contact_wrapper {
        padding: 60px 0px;
    }
    .pc_team_button {
        position: absolute;
        right: 70px;
        top: -40px;
    }
    .pc_service_button {
        position: absolute;
        right: 70px;
        top: -40px;
    }
    .main_menu_wrapper ul>li>a {
        padding: 12px 10px;
    }
    .call_icon {
        padding: 18px 10px;
    }
    .call_number {
        padding: 18px 10px;
    }
    .pc_partner_button {
        display: none;
    }
    .pc_sidebar_search a {
        padding: 11px 15px;
    }
    .pc_sidebar_search input[type="text"] {
        height: 47px;
    }
}

@media (max-width: 1200px) {
    .main_menu_wrapper ul>li>a {
        padding: 12px 10px;
    }
    .call_number {
        padding: 18px 10px;
    }
    .call_icon {
        padding: 18px 10px;
    }
    .pc_call_btn {
        margin-left: 5px;
    }
    .main_menu_parent {
        margin-right: 20px;
    }
    .pc_main_pink_btn a {
        padding: 11px 10px;
    }
    .pc_banner_form_section input[type="text"] {
        width: 100%;
    }
    .pc_banner_form {
        width: 100%;
        margin-top: 60px;
        margin-left: 0px;
    }
    .pc_banner_form form {
        display: flex;
    }
    .pc_banner_left_content {
        margin-left: 22px;
    }
    .pc_partner_button {
        display: none;
    }
    .pc_contact_wrapper {
        padding: 60px 0px;
    }
    .pc_team_button {
        position: absolute;
        right: 70px;
        top: -40px;
    }
    .pc_service_button {
        right: 70px;
        top: -40px;
    }
    .video-play-button {
        bottom: 20%;
        left: 20px;
    }
}

@media (max-width: 1024px) {
    .main_menu_parent {
        margin-right: 20px;
    }
    .main_menu_wrapper ul>li>a {
        padding: 12px 15px;
    }
    img.pc_testimonial_icon {
        left: 40%;
        top: 150px;
    }
    .cs_footer_section4 {
        margin-top: 30px;
    }
    .cs_footer_section5 {
        margin-top: 30px;
    }
    .main_menu_wrapper ul>li>a {
        padding: 12px 7px;
    }
}

@media (max-width: 991.98px) {
    .main_menu_wrapper li.has_submenu:before,
    .main_menu_wrapper li.has_submenu:after {
        background: var(--green-color);
    }
    .main_menu_wrapper li.has_submenu:before {
        right: 26px;
        width: 2px;
        height: 12px;
        top: 20px;
    }
    .main_menu_wrapper li.has_submenu:before,
    .main_menu_wrapper li.has_submenu:after {
        position: absolute;
        bottom: 0;
        content: '';
    }
    .fixed_header {
        position: relative;
        padding: 0;
    }
    .pc_header_wrapper {
        padding: 0;
    }
    .page_title_wrapper {
        padding: 41px 0 41px;
    }
}

@media (max-width: 991px) {
    .pc_banner_form {
        width: 100%;
        margin-top: 60px;
        margin-left: 0;
    }
    .main_menu_wrapper ul>li>a {
        padding: 15px 20px 0px;
    }
    .pc_client_img_quote img {
        left: 50%;
        bottom: -12px;
    }
    .call_icon {
        padding: 14px 10px;
        font-size: 14px;
    }
    .call_number {
        padding: 14px 10px;
        font-size: 14px;
    }
    .call_number:hover {
        padding: 14px 10px;
        font-size: 14px;
    }
    .main_menu_parent {
        margin-right: 0;
        margin-top: 30px;
    }
    .pc_banner_form form {
        display: inline-block;
    }
    .pc_banner_form span {
        display: inline-block;
        margin-bottom: 10px;
    }
    .pc_banner_form {
        width: 80%;
    }
    .pc_banner_left_content {
        margin-left: 20px;
        margin-top: 60px;
    }
    .video-play-button {
        top: 50%;
        left: 10px;
    }
    .pc_contact_wrapper {
        padding: 60px 0px;
    }
    .pc_partner_button {
        display: none;
    }
    .pc_logo {
        text-align: left;
        margin-right: 0;
    }
    .menu_btn {
        padding: 5px 0 0px 0;
    }
    .pc_team_button {
        position: absolute;
        right: 70px;
        top: -40px;
    }
    .pc_service_button {
        position: absolute;
        right: 70px;
        top: -40px;
    }
    .pc_client_quote {
        padding-right: 0px;
        padding-top: 20px;
    }
    img.pc_testimonial_icon {
        left: 40%;
        top: 150px;
    }
    .main_menu_wrapper>ul>li>a:before {
        display: none;
    }
    .pc_about_img {
        text-align: center;
    }
    .pc_banner_right_img {
        margin-right: 0;
        margin-top: 60px;
    }
    .pc_blog_section {
        margin-bottom: 30px;
    }
    .pc_contact_form {
        margin-right: 0;
        margin-bottom: 40px;
    }
    .pc_img_text_container {
        display: block;
    }
    .pc_img_text_container p {
        width: 100%;
        padding: 15px 0 0;
    }
    .pc_blog_comment ul li ul {
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .menu_btn {
        padding: 6px 0 16px 0;
    }
    .pc_contact_wrapper {
        padding: 60px 0px;
    }
    .pc_banner_form {
        width: 100%;
        margin-top: 60px;
        margin-left: 0;
    }
    .pc_service_button {
        display: none;
    }
    .pc_banner_form form {
        display: block;
    }
    .pc_banner_form span {
        padding-bottom: 10px;
    }
    .pc_banner_left_content {
        margin-left: 20px;
        margin-top: 60px;
    }
    .cs_footer_section4 {
        margin-top: 30px;
    }
    .cs_footer_section5 {
        margin-top: 30px;
    }
    .pc_blog_user_comment {
        display: block;
    }
    .pc_blog_comment {
        padding-left: 0;
    }
    .video-play-button {
        top: 20%;
        left: 15%;
        transform: translateX(0%) translateY(0%);
    }
    .pc_about_img {
        text-align: center;
    }
    .pc_logo {
        text-align: left;
        margin-right: 0;
    }
    .main_menu_parent {
        margin-right: 0;
    }
    .pc_header_wrapper {
        padding: 27px 0 100px;
    }
    .pc_team_button {
        right: 80px;
        top: -35px;
    }
    .pc_client_quote {
        padding-right: 0px;
    }
    img.pc_testimonial_icon {
        left: 25%;
        top: 150px;
    }
    .pc_contact_box {
        padding-bottom: 30px;
    }
    .pc_banner_right_img {
        margin-right: 0;
        margin-top: 60px;
    }
    .pc_our_services_img {
        margin-top: 50px;
        text-align: center;
    }
    .pc_blog_section {
        margin-bottom: 30px;
    }
    .cs_footer_section3 {
        margin-top: 30px;
    }
    .pc_sidebar_wrapper {
        margin-top: 50px;
    }
    .pc_blockquote {
        display: block;
    }
    .pc_blockquote_quote {
        width: 100%;
        margin: 15px 0 0;
    }
    .pc_img_text_container {
        display: block;
    }
    .pc_img_text_container p {
        width: 100%;
    }
    .pc_author_message_box {
        display: block;
        margin: 40px 0 43px;
    }
    .pc_author_content {
        width: 100%;
        padding: 13px 0 0;
    }
    .pc_comment_holder {
        display: block;
    }
    .pc_comment_detail {
        width: 100%;
        padding: 12px 0;
    }
    .pc_blog_comment ul li ul {
        padding-left: 0;
    }
}

@media (max-width: 567px) {
    .pc_banner_form {
        width: 100%;
        margin-top: 60px;
        margin-left: 0;
    }
    .main_menu_parent {
        margin-right: 0;
    }
    .pc_banner_form form {
        display: inline-block;
    }
    .pc_about_img {
        text-align: center;
    }
    .pc_banner_form span {
        padding-bottom: 10px;
    }
    .pc_partner_button {
        display: none;
    }
    .pc_contact_wrapper {
        padding: 60px 0px;
    }
    .pc_contact_box {
        margin-bottom: 30px;
    }
    .cs_footer_section3 {
        margin-bottom: 30px;
    }
    .cs_footer_section4 {
        margin-bottom: 30px;
    }
    .cs_footer_section5 {
        margin-bottom: 30px;
    }
    .pc_call_btn {
        margin-left: 0;
    }
    a.menu_btn {
        margin-top: -7px;
    }
    .pc_banner_left_content {
        margin-left: 30px;
        margin-top: 60px;
    }
    .pc_our_services_img {
        margin-top: 40px;
    }
    .main_menu_parent {
        margin-right: 0px;
    }
    .pc_banner_left_text1 h1 {
        font-size: 26px;
    }
    .pc_banner_left_text1 p {
        font-size: 14px;
    }
    .pc_team_wrapper .swiper-button-next1 {
        display: none;
    }
    .pc_logo {
        text-align: left;
        margin-right: 0;
    }
    .pc_service_heading.center h2 {
        padding: 5px 0 10px;
        font-size: 24px;
        width: 100%;
    }
    .pc_service_button {
        display: none;
    }
    .menu_btn {
        padding: 15px 0 11px 0;
    }
    .cs_footer_section2 {
        margin-top: 30px;
    }
    .cs_footer_section3 {
        margin-top: 30px;
    }
    .cs_footer_section4 {
        margin: 0;
    }
    h2.ps_about_heading {
        font-size: 24px;
    }
    .pc_our_services_heading h2 {
        font-size: 24px;
        width: 100%;
    }
    .pc_heading h2 {
        padding: 5px 0px 10px;
        font-size: 24px;
    }
    .pc_shop_box {
        margin-top: 30px;
    }
    .pc_header_wrapper {
        padding: 27px 0 100px;
    }
    .pc_team_button {
        display: none;
    }
    .pc_service_button {
        display: none;
    }
    .pc_client_quote {
        padding-right: 0px;
    }
    img.pc_testimonial_icon {
        left: 25%;
        top: 150px;
    }
    .pc_banner_right_img {
        margin-right: 0;
        margin-top: 60px;
    }
    .video-play-button {
        left: 0;
    }
}

@media (max-width: 400px) {
    .pc_banner_form {
        width: 100%;
        margin-top: 50px;
        margin-left: 0;
    }
    .pc_banner_form form {
        display: inline-block;
    }
    .pc_partner_button {
        display: none;
    }
    .pc_contact_box {
        margin-bottom: 30px;
    }
    .cs_footer_section3 {
        margin-bottom: 20px;
    }
    .pc_contact_wrapper {
        padding: 60px 0px;
    }
    .main_menu_parent {
        margin-right: 35px;
        margin-top: 30px;
    }
    .pc_call_btn {
        margin-left: 0;
    }
    .call_number {
        padding: 15px 3px;
        font-size: 14px;
    }
    .pc_service_button {
        display: none;
    }
    .call_icon {
        padding: 15px 3px;
        font-size: 14px;
    }
    .pc_shop_box {
        margin-top: 20px;
    }
    .pc_shop_item_discount {
        left: 150px;
        top: 50px;
    }
    .cs_footer_section2 {
        margin-top: 30px;
    }
    .cs_footer_section3 {
        margin-top: 30px;
    }
    .cs_footer_section5 {
        margin: 0;
    }
    .cs_footer_section4 {
        margin: 0 0 30px;
    }
    .pc_service_button {
        display: none;
    }
    .pc_counter_icon_box {
        margin-top: 30px;
    }
    .pc_banner_left_content {
        margin-left: 20px;
        margin-top: 40px;
    }
    .pc_team_button {
        display: none;
    }
    .pc_logo {
        text-align: left;
        margin-right: 0;
    }
    a.menu_btn {
        margin-top: 0;
    }
    .pc_our_services_heading h2 {
        font-size: 24px;
        width: 100%;
    }
    .pc_banner_left_text1 p {
        font-size: 14px;
    }
    .main_menu_parent {
        margin-right: 35px;
        margin-top: 30px;
    }
    .pc_heading h2 {
        padding: 5px 0px 10px;
        font-size: 24px;
    }
    .pc_header_wrapper {
        padding: 27px 0 100px;
    }
    a.menu_btn {
        position: absolute;
        top: 0px;
    }
    a.menu_btn {
        margin-top: -7px;
    }
    li.pc_call_info_box {
        margin-top: -30px;
    }
    img.pc_testimonial_icon {
        left: 25%;
        top: 150px;
    }
    .pc_client_quote {
        padding-right: 0px;
    }
    .pc_banner_right_img {
        margin-right: 0;
        margin-top: 60px;
    }
    .video-play-button {
        top: 20%;
        left: 0;
        transform: translateX(0%) translateY(0%);
    }
}

@media (max-width: 300px) {
    .pc_service_button {
        display: none;
    }
    .pc_client_quote {
        padding-right: 0px;
    }
    .pc_main_menu.main_menu_parent {
        text-align: center;
        margin-top: 20px;
    }
    .pc_banner_left_text1 p {
        font-size: 14px;
    }
    .pc_banner_right_img {
        margin-top: 40px;
    }
    .ps_about_text1 p {
        font-size: 14px;
    }
    h1.ps_about_heading {
        font-size: 24px;
    }
    .pc_heading h2 {
        padding: 5px 0px 10px;
        font-size: 24px;
    }
    li.pc_call_info_box {
        margin-top: -30px;
    }
    .pc_counter_icon_box {
        margin-top: 20px;
    }
    .pc_shop_item_discount {
        left: 40px;
        top: 40px;
    }
    .pc_shop_box {
        margin-top: 20px;
    }
    .cs_footer_section2 {
        margin-top: 30px;
    }
    .cs_footer_section3 {
        margin-top: 30px;
    }
    .cs_footer_section4 {
        margin-bottom: 0px;
        margin-top: 0px;
    }
    .pc_header_wrapper {
        padding: 27px 0 100px;
    }
    .call_icon {
        padding: 15px 3px;
        font-size: 14px;
    }
    .call_number {
        padding: 15px 3px;
        font-size: 14px;
    }
    a.menu_btn {
        position: absolute;
        top: 0px;
    }
    img.pc_testimonial_icon {
        left: 25%;
        top: 150px;
    }
    .pc_banner_right_img {
        margin-right: 0;
        margin-top: 60px;
    }
}