<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/*------------------------------------------------------------------
[Master Stylesheet]
Theme Name:     Charito - Multipurpose Charity WordPress Theme
Version:        1.0.4
-------------------------------------------------------------------*/
/*--------------------------------------------------------------
&gt;&gt;&gt; TABLE OF CONTENTS:
----------------------------------------------------------------

1. General
  1.1 Theme Reset Style
  1.2 Global Elements

2. header
  2.1 topbar
  2.2 navigation

3. content
  3.1 wpo-hero-slider
  3.2 wpo-features-section
  3.3 wpo-about-sections
  3.4 wpo-campaign-area
  3.5 wpo-team-area
  3.6 wpo-testimonial-area
  3.7 wpo-cta-area
  3.8 wpo-event-area
  3.9 wpo-blog-section
  3.10 partners-section

4. wpo-footer

5. Home-style-2
   5.1 wpo-features-section-s2
   5.2 wpo-about-section-s2
   5.3 wpo-fun-fact-section
   5.4 wpo-project-section

6. Home-style-3
  6.1 wpo-features-section-s3
  6.2 wpo-about-section-s3
  6.3 wpo-fun-fact-section-s2
  6.4 wpo-campaign-area-s2
  6.5 wpo-project-section-s2
  6.6 wpo-testimonial-area-s2
  6.7 wpo-event-area-s2
  6.8 wpo-blog-section-s2

7. Home-style-4
   7.1 wpo-features-section-s3
   7.2 wpo-about-section-s3
   7.3 wpo-campaign-area-s3
   7.4 wpo-campaign-area-s2
   7.5 wpo-campaign-area-s2

8. Home-style-5
   8.1 wpo-features-section-s5
   8.2 wpo-map-section
   8.3 wpo-about-section-s5
   8.4 wpo-team-area-s2
   8.5 wpo-campaign-area-s4
   8.6 wpo-blog-section-s3

9. Home-style-6
   9.1 wpo-about-section-s5
   9.2 wpo-features-section-s6

10. about-page

11. volunteer page

12. cause-single-page

13. event-details-page

14. wpo-service-single-section

15. wpo-project-section

16. wpo-blog-pg-section

17. wpo-blog-single-section

18. wpo-contact-pg-section

19. login-design

20. error-404-section


----------------------------------------------------------------*/
/*------------------------------------------------------------------
1. General
----------------------------------------------------------------*/
/*---------------------------
  Fonts
----------------------------*/

@font-face {
    font-family: "Muli";
    font-style: normal;
    font-weight: 500;
    src: local("Muli Regular"), url("../fonts/text-font/Muli-Regular.woff") format("woff");
}

@font-face {
    font-family: "Muli";
    font-style: normal;
    font-weight: 600;
    src: local("Muli SemiBold"), url("../fonts/text-font/Muli-SemiBold.woff") format("woff");
}

@font-face {
    font-family: "Muli";
    font-style: normal;
    font-weight: 700;
    src: local("Muli Bold"), url("../fonts/text-font/Muli-Bold.woff") format("woff");
}

/* 1.1  Theme Reset Style */
html {
    font-size: 15px;
}

:root {
    scroll-behavior: unset;
}

body {
    font-family: "Muli";
    color: #4f555a;
    background-color: #fff;
    font-size: 15px;
    font-size: 1rem;
    overflow-x: hidden;
}

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

p {
    font-size: 16px;
    color: #4f555a;
    line-height: 1.8em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #212158;
    font-family: 'Roboto Slab', serif;
}

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

a {
    text-decoration: none;
    transition: all 0.2s;
}

a:hover {
    text-decoration: none;
}

h2.hidden {
    display: none;
}

.sr-only {
    display: none !important;
    opacity: 0;
    visibility: hidden;
}

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

.wow {
    visibility: hidden;
}

.fi:before {
    margin: 0;
}

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

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

/*** contact form error handling ***/
.contact-validation-active .error-handling-messages {
    width: 100% !important;
    margin-top: 15px !important;
}

.contact-validation-active label.error {
    color: red;
    font-size: 0.9333333333rem;
    font-weight: normal;
    margin: 5px 0 0 0;
    text-align: left;
    display: block;
}

.contact-validation-active #loader {
    display: none;
    margin-top: 10px;
}

.contact-validation-active #loader i {
    font-size: 30px;
    font-size: 2rem;
    color: #ef5f34;
    display: inline-block;
    -webkit-animation: rotating linear 2s infinite;
    animation: rotating linear 2s infinite;
}

.contact-validation-active #success,
.contact-validation-active #error {
    width: 100%;
    color: #fff;
    padding: 5px 10px;
    font-size: 16px;
    text-align: center;
    display: none;
}

@media (max-width: 767px) {

    .contact-validation-active #success,
    .contact-validation-active #error {
        font-size: 15px;
    }
}

.contact-validation-active #success {
    background-color: #009a00;
    border-left: 5px solid green;
    margin-bottom: 5px;
}

.contact-validation-active #error {
    background-color: #ff1a1a;
    border-left: 5px solid red;
}

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

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

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

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

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

/*** back to top **/
.back-to-top {
    background-color: rgba(239, 95, 52, 0.7);
    width: 45px;
    height: 45px;
    line-height: 45px;
    border: 2px solid #ef5f34;
    border-radius: 45px;
    text-align: center;
    display: none;
    position: fixed;
    z-index: 999;
    right: 15px;
    bottom: 15px;
    transition: all 0.2s;
}

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

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

.back-to-top i {
    font-size: 18px;
    font-size: 1.2rem;
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/** for popup image ***/
.mfp-wrap {
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 99999;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
    opacity: 0;
    -webkit-backface-visibility: hidden;
    transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0;
}

/*** for fancybox video ***/
.fancybox-overlay {
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999 !important;
}

.fancybox-wrap {
    z-index: 99999 !important;
}

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

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

.wpo-section-title span {
    font-size: 18px;
    font-size: 1.2rem;
    color: #ef5f34;
    font-family: "Roboto Slab", serif;
}

.wpo-section-title h2 {
    font-size: 40px;
    font-size: 2.6666666667rem;
    margin: 0;
    position: relative;
    text-transform: capitalize;
    font-family: "Roboto Slab", serif;
    margin: 15px 0 20px;
    font-weight: 500;
}

@media (max-width: 1200px) {
    .wpo-section-title h2 {
        font-size: 35px;
        font-size: 2.3333333333rem;
    }
}

@media (max-width: 767px) {
    .wpo-section-title h2 {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .wpo-section-title h2 {
        font-size: 22px;
    }
}

.section-title-area .wpo-section-title p {
    max-width: 580px;
    font-size: 18px;
    margin: auto;
}
@media (max-width: 575px) { 
    .section-title-area .wpo-section-title p {
        padding:0px 15px;
        font-size:16px;
    }
}
.theme-btn,
.view-cart-btn,
.theme-btn-s3,
.theme-btn-s4,
.theme-btn-s2 {
    background: #ef5f34;
    background: linear-gradient(to left, rgba(239, 95, 52, 0.75), #e34212);
    color: #fff;
    display: inline-block;
    font-weight: 500;
    padding: 10px 25px;
    border: 0;
    border-radius: 6px;
    text-transform: capitalize;
    -webkit-backface-visibility: hidden;
    z-index: 1;
    position: relative;
    font-size: 20px;
    font-size: 1.3333333333rem;
}

.theme-btn:after,
.view-cart-btn:after,
.theme-btn-s3:after,
.theme-btn-s4:after,
.theme-btn-s2:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    background: linear-gradient(to left, #e34212, rgba(239, 95, 52, 0.75));
    transition: opacity 0.5s ease-out;
    opacity: 0;
    z-index: -1;
}

.theme-btn:hover,
.view-cart-btn:hover,
.theme-btn-s3:hover,
.theme-btn-s4:hover,
.theme-btn:focus,
.view-cart-btn:focus,
.theme-btn-s3:focus,
.theme-btn-s4:focus,
.theme-btn:active,
.view-cart-btn:active,
.theme-btn-s3:active,
.theme-btn-s4:active,
.theme-btn-s2:hover,
.theme-btn-s2:focus,
.theme-btn-s2:active {
    color: #fff;
}

.theme-btn:hover:after,
.view-cart-btn:hover:after,
.theme-btn-s3:hover:after,
.theme-btn-s4:hover:after,
.theme-btn-s2:hover:after {
    opacity: 1;
}

@media (max-width: 991px) {

    .theme-btn,
    .view-cart-btn,
    .theme-btn-s3,
    .theme-btn-s4,
    .theme-btn-s2 {
        font-size: 18px;
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {

    .theme-btn,
    .view-cart-btn,
    .theme-btn-s3,
    .theme-btn-s4,
    .theme-btn-s2 {
        padding: 12px 18px;
        font-size: 14px;
    }
}

.theme-btn-s2 {
    background: linear-gradient(to left, rgba(93, 196, 184, 0.75), #41b2a5);
}

.theme-btn-s2:after {
    background: linear-gradient(to left, #41b2a5, rgba(93, 196, 184, 0.75));
}

@media (max-width: 991px) {
    .theme-btn-s2 {
        font-size: 14px;
        font-size: 0.9333333333rem;
    }
}

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

.theme-btn-s2:hover:after {
    opacity: 1;
}

@media (max-width: 767px) {
    .theme-btn-s2 {
        padding: 12px 18px;
        font-size: 13px;
    }
}

.theme-btn-s3,
.theme-btn-s4 {
    background: #c968ff;
    box-shadow: 0 0 0 5px #f3e0fe;
    background: linear-gradient(left, #6168f3, #c968ff);
    z-index: 1;
    position: relative;
}

.theme-btn-s3:after,
.theme-btn-s4:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 55px;
    background: linear-gradient(left, #c968ff, #6168f3);
    transition: opacity 0.5s ease-out;
    opacity: 0;
    z-index: -1;
}

.theme-btn-s3:hover:after,
.theme-btn-s4:hover:after {
    opacity: 1;
}

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

.theme-btn-s4 {
    background: #f6d365;
    background: linear-gradient(left, #f6d365, #fda085);
    box-shadow: 0 0 0 5px #fcf5df;
    z-index: 1;
    position: relative;
}

.theme-btn-s4:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 55px;
    background: linear-gradient(left, #fda085, #f6d365);
    transition: opacity 0.5s ease-out;
    opacity: 0;
    z-index: -1;
}

.theme-btn-s4:hover:after {
    opacity: 1;
}

.theme-btn-s4:hover,
.theme-btn-s4:focus,
.theme-btn-s4:active {
    color: #fff;
}

.view-cart-btn {
    display: block;
    margin-top: 20px;
}

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

.form input:focus,
.form textarea:focus,
.form select:focus {
    border-color: #ef5f34;
    -o-box-shadow: 0 0 5px 0 #f38463;
    -ms-box-shadow: 0 0 5px 0 #f38463;
    box-shadow: 0 0 5px 0 #f38463;
}

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

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

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

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

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

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

.form :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    font-style: normal;
}

.form ::-moz-placeholder {
    font-style: normal;
}

.form ::placeholder {
    font-style: normal;
}

.social-links {
    overflow: hidden;
}

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

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

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

.wpo-page-title {
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    min-height: 400px;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    z-index: 1;
}

@media (max-width: 767px) {
    .wpo-page-title {
        min-height: 250px;
    }
}

.wpo-page-title:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #212158;
    content: "";
    z-index: -1;
    opacity: 0.7;
}

.wpo-page-title .wpo-breadcumb-wrap {
    text-align: center;
}

.wpo-page-title .wpo-breadcumb-wrap h2 {
    font-size: 50px;
    color: #fff;
    line-height: 60px;
    margin-bottom: 20px;
    margin-top: 5px;
    font-weight: 600;
}

@media (max-width: 767px) {
    .wpo-page-title .wpo-breadcumb-wrap h2 {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 10px;
    }
}

.wpo-page-title .wpo-breadcumb-wrap ul li {
    display: inline-block;
    padding: 0px 5px;
    color: #fff;
    position: relative;
    font-size: 20px;
    font-family: "Roboto Slab", serif;
}

@media (max-width: 767px) {
    .wpo-page-title .wpo-breadcumb-wrap ul li {
        font-size: 18px;
    }
}

.wpo-page-title .wpo-breadcumb-wrap ul li:after {
    content: "/";
    position: relative;
    left: 7px;
}

.wpo-page-title .wpo-breadcumb-wrap ul li:last-child span {
    color: #cbd4fd;
}

.wpo-page-title .wpo-breadcumb-wrap ul li:last-child:after {
    display: none;
}

.wpo-page-title .wpo-breadcumb-wrap ul li a {
    color: #fff;
    font-size: 20px;
    transition: all 0.3s;
}

.wpo-page-title .wpo-breadcumb-wrap ul li a:hover {
    color: #ef5f34;
}


.preloader {
    background-color: #4aa59a;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 99999999;
    overflow: hidden;
}

.preloader .vertical-centered-box {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
}

.preloader .vertical-centered-box:after {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em;
}

.preloader .vertical-centered-box .content {
    box-sizing: border-box;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    font-size: 0;
}

.preloader * {
    transition: all 0.3s;
}

.preloader .loader-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    margin-left: -60px;
    margin-top: -60px;
}

.preloader .loader-line-mask {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60px;
    height: 120px;
    margin-left: -60px;
    margin-top: -60px;
    overflow: hidden;
    transform-origin: 60px 60px;
    -webkit-mask-image: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0));
    -webkit-animation: rotate 1.2s infinite linear;
    animation: rotate 1.2s infinite linear;
}

.preloader .loader-line-mask .loader-line {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.preloader #particles-background,
.preloader #particles-foreground {
    left: -51%;
    top: -51%;
    width: 202%;
    height: 202%;
    transform: scale3d(0.5, 0.5, 1);
}

.preloader #particles-background {
    background: #2c2d44;
    background-image: linear-gradient(45deg, #3f3251 2%, #002025 100%);
}

.preloader lesshat-selector {
    -lh-property: 0;
}

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

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

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.preloader [not-existing] {
    zoom: 1;
}

.preloader lesshat-selector {
    -lh-property: 0;
}

@-webkit-keyframes fade {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.25;
    }
}

@keyframes fade {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.25;
    }
}

.preloader [not-existing] {
    zoom: 1;
}

.preloader lesshat-selector {
    -lh-property: 0;
}

@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.preloader [not-existing] {
    zoom: 1;
}

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

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

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

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

.blog-sidebar .widget h3 ,
.blog-sidebar .widget_block h2 {
    font-size: 23px;
    color: #212158;
    margin: 0 0 1.3em;
    position: relative;
    text-transform: capitalize;
    font-family: "Roboto Slab", serif;
    padding-bottom: 20px;
}

.blog-sidebar .widget h3:before ,
.blog-sidebar .widget_block h2:before {
    content: "";
    background-color: #ef5f34;
    width: 55px;
    height: 4px;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 10px;
}

.blog-sidebar .widget h3:after ,
.blog-sidebar .widget_block h2:after {
    content: "";
    background-color: #f2f2f2;
    width: 80%;
    height: 4px;
    position: absolute;
    left: 65px;
    bottom: 0;
    border-radius: 10px;
}

.blog-sidebar&gt;.widget+.widget {
    margin-top: 65px;
}

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

.blog-sidebar .search-widget input {
    background-color: rgba(239, 95, 52, 0.05);
    height: 70px;
    font-size: 16px;
    font-size: 1.0666666667rem;
    padding: 6px 50px 6px 20px;
    border: 0;
    border-radius: 5px;
    box-shadow: none;
    transition: all 0.3s;
}

.blog-sidebar .search-widget input:focus {
    background-color: rgba(239, 95, 52, 0.1);
}

.blog-sidebar .search-widget form button {
    background: transparent;
    font-size: 20px;
    font-size: 1.3333333333rem;
    color: #fff;
    background-color: #ef5f34;
    border: 0;
    outline: 0;
    position: absolute;
    right: 10px;
    top: 52%;
    height: 50px;
    line-height: 50px;
    width: 50px;
    border-radius: 6px;
    transform: translateY(-50%);
}

.blog-sidebar .about-widget {
    text-align: center;
    background-color: #f4f8fc;
    padding: 45px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1200px) {
    .blog-sidebar .about-widget {
        padding: 35px;
    }
}

.blog-sidebar .about-widget .aw-shape {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

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

.blog-sidebar .about-widget .img-holder img {
    border-radius: 50%;
    width: 100%;
    max-width: 200px;
}

.blog-sidebar .about-widget ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

.blog-sidebar .about-widget ul li {
    margin-right: 10px;
}

.blog-sidebar .about-widget ul li:last-child {
    margin-right: 0;
}

.blog-sidebar .about-widget ul li a {
    text-decoration: none;
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #fff;
    border-radius: 50%;
}

.blog-sidebar .about-widget h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.blog-sidebar .about-widget p {
    font-size: 15px;
    font-size: 1rem;
    margin-bottom: 1.2em;
}

.blog-sidebar .about-widget a {
    font-family: "Roboto Slab", serif;
    font-size: 14px;
    font-size: 0.9333333333rem;
    color: #212158;
    text-decoration: underline;
}

.blog-sidebar .about-widget a:hover {
    color: #ef5f34;
}

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

.blog-sidebar .category-widget ul li {
    font-size: 19px;
    font-size: 1.2666666667rem;
    position: relative;
}

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

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

.blog-sidebar .category-widget ul&gt;li+li {
    margin-top: 12px;
    padding-top: 12px;
}

.blog-sidebar .category-widget ul a {
    display: block;
    color: #474f62;
    font-family: "Roboto Slab", serif;
}

.blog-sidebar .category-widget ul a span {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background-color: #f4f8fc;
    text-align: center;
    border-radius: 50%;
    font-size: 18px;
}

@media (max-width: 767px) {
    .blog-sidebar .category-widget ul a span {
        font-size: 14px;
        font-size: 0.9333333333rem;
    }
}

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

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

.blog-sidebar .recent-post-widget .posts&gt;.post+.post {
    margin-top: 15px;
    padding-top: 15px;
}

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

.blog-sidebar .recent-post-widget .post .img-holder img {
    border-radius: 6px;
}

.blog-sidebar .recent-post-widget .post .details {
    width: calc(100% - 90px);
    float: left;
    padding-left: 20px;
}
.case-single-sidebar .recent-post-widget .post .details {
    padding-left: 5px;
}
.case-single-sidebar span.goal ,
.case-single-sidebar span.raised {
   font-weight: 700;
}
.blog-sidebar .recent-post-widget .post h4 {
    font-size: 18px;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.4em;
    margin: 0 0 0.3em;
    font-family: "Roboto Slab", serif;
    color: #4d4d4d;
}

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

@media (max-width: 767px) {
    .blog-sidebar .recent-post-widget .post h4 {
        font-size: 16px;
        font-size: 1.0666666667rem;
    }
}

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

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

.blog-sidebar .recent-post-widget .post .details .date {
    font-size: 13px;
    font-size: 0.8666666667rem;
    color: #6e6e6e;
}

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

.blog-sidebar .wpo-instagram-widget ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

.blog-sidebar .wpo-instagram-widget ul li {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    margin-bottom: 5px;
    padding: 0px 3px;
}

.blog-sidebar .wpo-instagram-widget ul li img {
    width: 100%;
    border-radius: 6px;
}

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

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

.blog-sidebar .tag-widget ul li a {
    font-size: 15px;
    font-size: 1rem;
    display: inline-block;
    padding: 5px 18px;
    color: #232f4b;
    background: #ecf4fb;
    border-radius: 5px;
}

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

.blog-sidebar .wpo-contact-widget {
    border: 0;
    background: #212158;
    padding: 30px 40px;
}

@media (max-width: 1200px) {
    .blog-sidebar .wpo-contact-widget {
        padding: 20px;
    }
}

.blog-sidebar .wpo-contact-widget h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: left;
    color: #fff;
    margin-bottom: 20px;
}

.blog-sidebar .wpo-contact-widget h2::before {
    left: 28px;
    background: url(../images/Single-title-shape2.png) no-repeat right center;
}

.blog-sidebar .wpo-contact-widget p {
    color: #fff;
    font-size: 18px;
}

.blog-sidebar .wpo-contact-widget a {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #fff;
    font-size: 18px;
    color: #fff;
    padding-right: 90px;
    position: relative;
    margin-top: 10px;
}

.blog-sidebar .wpo-contact-widget a::before {
    font-family: "themify";
    content: "";
    font-size: 18px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

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

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

.pagination-wrapper .pg-pagination {
    display: inline-block;
    overflow: hidden;
    list-style-type: none;
    text-align: center;
}

.pagination-wrapper .pg-pagination li {
    font-family: "Roboto Slab", serif;
    float: left;
    margin-right: 10px;
}

@media (max-width: 767px) {
    .pagination-wrapper .pg-pagination li {
        margin-right: 5px;
    }
}

.pagination-wrapper .pg-pagination li:last-child {
    margin-right: 0;
}

.pagination-wrapper .pg-pagination li a {
    background-color: transparent;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    font-size: 1.0666666667rem;
    font-weight: 600;
    color: #212158;
    background: #ebf4fc;
    display: block;
}

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

.pagination-wrapper .pg-pagination .active a,
.pagination-wrapper .pg-pagination li a:hover {
    background: #5dc4b8;
    border-color: #5dc4b8;
    color: #fff;
}

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

.pagination-wrapper-left {
    text-align: left;
}

.pagination-wrapper-right {
    text-align: right;
}

@media screen and (min-width: 1200px) {
    .pagination-wrapper-right {
        padding-right: 50px;
    }
}

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

/*--------------------------------------------------------------
2. header
--------------------------------------------------------------*/
/*-- 2.1 topbar --*/
.topbar {
    background: #191933;
    padding: 0 130px;
}

@media (max-width: 991px) {
    .topbar {
        text-align: center;
        padding: 0;
    }
}

@media (max-width: 767px) {
    .header-style-1 {
        text-align: center;
        padding: 20px 0;
    }
}

.topbar {
    font-size: 16px;
    color: #e5e3e3;
    margin: 0;
}

.topbar ul {
    overflow: hidden;
    list-style: none;
    float: right;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .topbar ul {
        float: none;
        display: inline-block;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.topbar ul li {
    font-size: 16px;
    float: left;
    padding: 15px 10px;
    color: #e5e3e3;
    line-height: 1em;
}

@media (max-width: 991px) {
    .topbar ul li {
        padding: 15px 10px;
    }
}

.topbar .contact-info ul li a {
    color: #fff;
}

.topbar .contact-info ul li a:hover {
    color: #7db1f0;
}

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

.topbar .contact-intro ul {
    float: none;
    margin-bottom: 0;
}

@media (max-width: 1200px) {
    .topbar ul li {
        font-size: 12px;
        padding: 15px 10px;
    }
}

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

    .topbar {
        padding: 10px 0;
    }
}

@media (max-width: 767px) {
    .topbar ul li {
        float: left;
        border: none;
        padding: 8px 6px;
        font-size: 13px;
    }
}

@media (max-width: 590px) {
    .topbar ul li {
        float: none;
    }

    .topbar .contact-info ul li {
        float: left;
    }

    .topbar ul {
        flex-wrap: wrap;
    }
}

.topbar .theme-btn-s2 {
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: -3px;
    color: #fff !important;
}

.topbar ul .fi {
    position: relative;
    top: 1px;
    display: inline-block;
    padding-right: 3px;
}

.topbar ul .fi:before {
    font-size: 15px;
    font-size: 1rem;
    color: #fff;
}

/* 2.2 navigation */
.wpo-site-header {
    /* navigation open and close btn hide for width screen */
    /* style for navigation less than 992px */
    /*navbar collaps less then 992px*/
    /*** cart-search-contact ***/
    background-color: transparent;
    z-index: 99;
    position: relative;
}

.wpo-site-header .navigation {
    background-color: #fff;
    margin-bottom: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
}

.sticky-header {
    width: 100%;
    position: fixed;
    left: 0;
    top: -400px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 1s;
    box-shadow: 0 -5px 15px #086ad84a;
}

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

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

@media (min-width: 991px) {
    .wpo-site-header {
        padding: 0 130px;
    }
}

.wpo-site-header .row {
    width: 100%;
}

@media (max-width: 991px) {
    .wpo-site-header .navigation {
        padding: 20px 0;
    }
}

.wpo-site-header #navbar {
    transition: all 0.5s;
}

.wpo-site-header #navbar&gt;ul li a:hover,
.wpo-site-header #navbar&gt;ul li a:focus {
    text-decoration: none;
    color: #ef5f34;
}

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

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

    .wpo-site-header #navbar&gt;ul&gt;li&gt;a:before {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 4px;
        background: #ef5f34;
        content: "";
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        border-radius: 3px;
    }

    .wpo-site-header #navbar&gt;ul&gt;li&gt;a:hover:before,
    .wpo-site-header #navbar&gt;ul&gt;li&gt;a.active:before {
        opacity: 1;
        visibility: visible;
    }

    .wpo-site-header #navbar&gt;ul&gt;li&gt;.sub-menu&gt;.menu-item-has-children&gt;a {
        position: relative;
    }

    .wpo-site-header #navbar&gt;ul&gt;li&gt;.sub-menu&gt;.menu-item-has-children&gt;a:before {
        font-family: "themify";
        content: "";
        font-size: 11px;
        font-size: 0.73333rem;
        position: absolute;
        right: 15px;
        top: 58%;
        transform: translateY(-50%);
    }

    .wpo-site-header #navbar&gt;ul&gt;li:hover&gt;.sub-menu {
        top: 100%;
        visibility: visible;
        opacity: 1;
    }

    .wpo-site-header #navbar .sub-menu&gt;li:hover&gt;.sub-menu {
        left: 100%;
        visibility: visible;
        opacity: 1;
    }
}

.wpo-site-header .container-fluid {
    padding-right: 0;
}

@media (max-width: 991px) {
    .wpo-site-header {
        /* class for show hide navigation */
    }

    .wpo-site-header .container {
        width: 100%;
        max-width: 100%;
    }

    .wpo-site-header .header-right {
        right: -10px;
    }

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

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

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

@media (max-width: 991px) and (max-width: 991px) {
    .wpo-site-header #navbar {
        top: 0;
        visibility: visible;
        opacity: 1;
    }
}

@media (max-width: 991px) {
    .wpo-site-header #navbar&gt;ul {
        z-index: 101;
    }

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

    .wpo-site-header #navbar ul a:hover,
    .wpo-site-header #navbar ul li.current a {
        color: #ef5f34;
    }

    .wpo-site-header #navbar .close-navbar .ti-close {
        position: relative;
        top: 1px;
    }

    .wpo-site-header .navbar-toggler .first-angle,
    .wpo-site-header .navbar-toggler .last-angle {
        transition: all 0.3s;
    }

    .wpo-site-header .x-close .middle-angle {
        opacity: 0;
    }

    .wpo-site-header .x-close .first-angle {
        position: absolute;
        -webkit-transform: rotate(-44deg);
        top: 16px;
        left: 10px;
    }

    .wpo-site-header .x-close .last-angle {
        -webkit-transform: rotate(44deg);
        position: absolute;
        top: 16px;
        right: 10px;
    }
}

@media (max-width: 767px) {
    .wpo-site-header .navbar-header .navbar-brand {
        font-size: 24px;
    }

    .wpo-site-header #navbar .navbar-nav {
        margin: 0;
    }
}

@media (max-width: 991px) {
    .wpo-site-header .navbar-collapse.collapse {
        display: none;
    }

    .wpo-site-header .navbar-collapse.collapse.in {
        display: block;
    }

    .wpo-site-header .navbar-header .collapse,
    .wpo-site-header .navbar-toggle {
        display: block;
    }

    .wpo-site-header .navbar-header {
        float: none;
        position: relative;
        z-index: 999;
        text-align: center;
    }

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

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

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

.wpo-site-header .header-right {
    display: flex;
    justify-content: flex-end;
    z-index: 991;
    position: relative;
    align-items: center;
}

.wpo-site-header .header-right button {
    background: transparent;
    padding: 0;
    border: 0;
    outline: 0;
}

.wpo-site-header .header-right&gt;div {
    float: left;
    position: relative;
    margin-right: 8px;
}

.wpo-site-header .header-right .close-form .theme-btn,
.wpo-site-header .header-right .close-form .theme-btn-s3,
.wpo-site-header .header-right .close-form .theme-btn-s4,
.wpo-site-header .header-right .close-form .view-cart-btn {
    padding: 10px 25px;
}

@media (max-width: 767px) {
    .wpo-site-header .header-right&gt;div {
        margin-right: 10px;
    }
}

.wpo-site-header .header-right&gt;div:last-child {
    margin: 0 0 0 10px;
    position: relative;
}

@media (max-width: 767px) {
    .wpo-site-header .header-right&gt;div:last-child {
        margin: 3px 0 0 10px;
    }
}

.wpo-site-header .header-right .header-search-form-wrapper {
    position: relative;
}

.wpo-site-header .header-right .header-search-form-wrapper .fi:before {
    font-size: 18px;
}

.wpo-site-header .header-right .search-toggle-btn {
    background-color: #c9f0eb;
    line-height: 0.66em;
    color: #232f4b;
    width: 55px;
    height: 50px;
    border: 0;
    border-radius: 5px;
}
.wpo-site-header .header-right .search-toggle-btn i {
  position: relative;
  top: -3px;
}
@media (max-width: 767px) { 
  .wpo-site-header .header-right .search-toggle-btn i {
    top: -6px;
  }
}
.wpo-site-header .header-right .search-toggle-btn i:before {
  font-size: 22px;
}
@media (max-width: 1200px) {
    .wpo-site-header .header-right .search-toggle-btn {
        width: 50px;
        height: 45px;
    }
}

@media (max-width: 991px) {
    .wpo-site-header .header-right .search-toggle-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 991px) {
    .wpo-site-header .header-right .search-toggle-btn .fi:before {
        font-size: 16px;
    }
}

.wpo-site-header .header-right .search-toggle-btn .ti-close {
    display: block;
    line-height: 20px;
    position: relative;
    top: 0px;
}
.wpo-site-header .header-right .search-toggle-btn .ti-close:before {
  font-size: 20px;
}
@media (max-width: 767px) { 
  .wpo-site-header .header-right .search-toggle-btn .ti-close:before {
    font-size: 16px;
  }
}
/*** cart-search-contact ***/
.cart-search-contact button {
    background: transparent;
    padding: 0;
    border: 0;
    outline: 0;
}

.cart-search-contact .fi {
    font-size: 30px;
    font-size: 2rem;
    color: #212158;
    line-height: .6;
}
@media (max-width: 767px) { 
    .cart-search-contact .fi {
        line-height: 1;
    }
}
.cart-search-contact&gt;div {
    float: left;
    position: relative;
}

.cart-search-contact&gt;div+div {
    margin-left: 12px;
}

.cart-search-contact .header-search-form {
    position: absolute;
    width: 350px;
    right: 0;
    top: 75px;
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
    background: #fff;
    padding: 30px;
    border-radius: 6px;
    transition: all 0.5s;
    box-shadow: -2px 18px 40px -9px #999999;
}

@media (max-width: 991px) {
    .cart-search-contact .header-search-form {
        top: 65px;
    }
}

@media (max-width: 767px) {
    .cart-search-contact .header-search-form {
        right: 15px;
    }
}

@media (max-width: 575px) {
    .cart-search-contact .header-search-form {
        width: 260px;
        padding: 15px;
    }
}

.cart-search-contact .header-search-form-wrapper .fi:before {
    font-size: 18px;
    font-size: 1.2rem;
}

.cart-search-contact form div {
    position: relative;
}

.cart-search-contact form div button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.cart-search-contact form div button .fi:before {
    font-size: 18px !important;
}

.cart-search-contact input {
    width: 100%;
    height: 50px;
    padding: 6px 20px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid #e1e1e1;
}

.cart-search-contact input:focus {
    box-shadow: none;
    border-color: #ef5f34;
}

.wpo-site-header .header-right .header-search-content-toggle {
    opacity: 1;
    visibility: visible;
    right: 0;
    transform: scale(1);
}

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

    .body-overlay:before {
        content: "";
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        position: absolute;
        left: 0;
        top: 0;
        z-index: 10;
        transition: all 0.3s;
    }
}

.header-search-area {
    background: #fff;
    width: 100%;
    padding: 100px 0;
    text-align: center;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
}

.header-search-area h3 {
    font-size: 45px;
    margin: 0 0 1em;
}

.header-search-area form {
    position: relative;
}

.header-search-area input {
    height: 50px;
    font-size: 18px;
    font-size: 1.2rem;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #d0d0d0;
    box-shadow: none;
}

.header-search-area input:focus {
    box-shadow: none;
    border-color: #ef5f34;
}

.header-search-area form button {
    background: transparent;
    border: 0;
    font-size: 20px;
    font-size: 1.33333rem;
    position: absolute;
    right: 0;
    bottom: 10px;
}

.header-search-area form button:focus {
    border: none;
    outline: none;
}

.header-search-area .close-form {
    position: absolute;
    right: 35px;
    top: 35px;
    bottom: auto;
    padding-bottom: 5px;
    border-bottom: 1px solid;
}

.header-search-area .close-form button {
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 13px;
    font-size: 0.86667rem;
    text-transform: uppercase;
    color: #000;
    letter-spacing: 2px;
    z-index: 99;
}

.header-search-area .close-form button:focus {
    border: 0;
    outline: 0;
}

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

.wpo-site-header .navigation {
    background-color: transparent;
    margin-bottom: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
}

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

@media (max-width: 991px) {
    .wpo-site-header .navigation {
        padding: 20px 0;
    }
}

.wpo-site-header .navigation.sticky-on {
    background: #fff;
}

.wpo-site-header #navbar {
    transition: all 0.5s;
}

.wpo-site-header #navbar&gt;ul li a:hover,
.wpo-site-header #navbar&gt;ul li a:focus {
    text-decoration: none;
    color: #ef5f34;
}

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

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

    .wpo-site-header #navbar&gt;ul&gt;li&gt;a {
        font-size: 18px;
        padding: 35px 12px;
        display: block;
        color: #232f4b;
        font-weight: 600;
        position: relative;
    }

    .wpo-site-header #navbar&gt;ul .sub-menu {
        background-color: #fff;
        box-shadow: 0px 2px 20px 0px rgba(62, 65, 159, 0.09);
        width: 250px;
        position: absolute;
        padding: 10px 0;
        left: 0;
        top: 110%;
        z-index: 10;
        visibility: hidden;
        opacity: 0;
        transition: all 0.3s;
    }

    .wpo-site-header #navbar&gt;ul&gt;li .sub-menu a {
        font-size: 18px;
        font-size: 1.2rem;
        display: block;
        padding: 10px 20px;
        color: #212158;
        position: relative;
        overflow: hidden;
        font-weight: 500;
    }

    .wpo-site-header #navbar&gt;ul&gt;li .sub-menu a:after {
        position: absolute;
        left: 20px;
        bottom: 4px;
        width: 0px;
        height: 2px;
        content: "";
        background: #ef5f34;
        transition: all 0.3s;
        opacity: 0;
        visibility: hidden;
    }

    .wpo-site-header #navbar&gt;ul&gt;li .sub-menu a:hover:after,
    .wpo-site-header #navbar&gt;ul&gt;li .sub-menu a.active:after {
        width: 40px;
        opacity: 1;
        visibility: visible;
    }

    .wpo-site-header #navbar&gt;ul&gt;li&gt;.sub-menu .sub-menu {
        left: 110%;
        top: 0;
    }

    .wpo-site-header #navbar&gt;ul&gt;li&gt;.sub-menu&gt;.menu-item-has-children&gt;a {
        position: relative;
    }

    .wpo-site-header #navbar&gt;ul&gt;li&gt;.sub-menu&gt;.menu-item-has-children&gt;a:before {
        font-family: "themify";
        content: "";
        font-size: 11px;
        font-size: 0.7333333333rem;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    .wpo-site-header #navbar&gt;ul&gt;li:hover&gt;.sub-menu {
        top: 100%;
        visibility: visible;
        opacity: 1;
    }

    .wpo-site-header #navbar .sub-menu&gt;li:hover&gt;.sub-menu {
        left: 100%;
        visibility: visible;
        opacity: 1;
    }
}

@media (max-width: 991px) {
    .wpo-site-header #navbar&gt;ul&gt;li a {
        display: block;
        font-size: 15px;
        font-size: 1rem;
        color: #fff;
        font-weight: 600;
    }

    .wpo-site-header #navbar&gt;ul&gt;li a:hover,
    .wpo-site-header #navbar&gt;ul&gt;li a.active {
        color: #fff;
    }

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

    .wpo-site-header #navbar&gt;ul&gt;li&gt;.sub-menu a {
        padding: 8px 15px 8px 45px;
    }

    .wpo-site-header #navbar&gt;ul&gt;li&gt;.sub-menu .sub-menu a {
        padding: 8px 15px 8px 65px;
    }

    .wpo-site-header #navbar&gt;ul .menu-item-has-children&gt;a {
        position: relative;
    }

    .wpo-site-header #navbar&gt;ul .menu-item-has-children&gt;a:hover,
    .wpo-site-header #navbar&gt;ul .menu-item-has-children&gt;a.active {
        color: #dce2ff;
    }

    .wpo-site-header #navbar&gt;ul .menu-item-has-children&gt;a:before {
        font-family: "themify";
        content: "";
        font-size: 11px;
        font-size: 0.7333333333rem;
        position: absolute;
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
        transition: all 0.3s;
    }

    .wpo-site-header #navbar&gt;ul .menu-item-has-children&gt;a.rotate:before {
        transform: rotate(90deg);
        top: 29%;
    }

    .wpo-site-header #navbar&gt;ul .menu-item-has-children&gt;a.rotate {
        color: #dce2ff;
    }
}

@media screen and (min-width: 992px) {
    .wpo-site-header .navbar-header .open-btn {
        display: none;
    }

    .wpo-site-header #navbar .close-navbar {
        display: none;
    }
}

.wpo-site-header .menu-close {
    display: none;
}

@media (max-width: 991px) {
    .wpo-site-header {
        /* class for show hide navigation */
    }

    .wpo-site-header .container {
        width: 100%;
    }

    .wpo-site-header .mobail-menu button {
        background-color: #ef5f34;
        width: 40px;
        height: 35px;
        border: 0;
        padding: 5px 10px;
        outline: 0;
        position: relative;
        z-index: 20;
    }

    .wpo-site-header .mobail-menu button:focus {
        outline: none;
        box-shadow: none;
    }

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

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

    .wpo-site-header #navbar {
        background: #212158;
        display: block !important;
        width: 300px;
        height: 100%;
        margin: 0;
        padding: 0;
        border: 0;
        position: fixed;
        left: -320px;
        top: 0px;
        z-index: 999999;
        opacity: 0;
        visibility: hidden;
    }

    .wpo-site-header #navbar .navbar-nav {
        display: block;
    }

    .wpo-site-header #navbar&gt;ul {
        position: relative;
        z-index: 101;
    }

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

    .wpo-site-header #navbar ul a:hover,
    .wpo-site-header #navbar ul li.current a {
        color: #ef5f34;
    }

    .wpo-site-header #navbar .navbar-nav {
        height: 100%;
        overflow: auto;
        padding-bottom: 60px;
    }

    .wpo-site-header #navbar .close-navbar {
        background-color: #fff;
        width: 40px;
        height: 40px;
        color: #000;
        border: 0;
        outline: none;
        position: absolute;
        left: -41px;
        top: 90px;
        z-index: 20;
    }

    .wpo-site-header #navbar .close-navbar .ti-close {
        position: relative;
        top: 1px;
    }

    .wpo-site-header #navbar&gt;ul&gt;li&gt;a {
        padding: 10px 35px 10px 35px !important;
        color: #fff;
    }

    .wpo-site-header .menu-close {
        display: block;
        z-index: 99;
        background: none;
        text-align: center;
        color: #fff;
        border: 0;
        text-align: center;
        margin-left: auto;
        margin-top: 30px;
        margin-right: 30px;
        margin-bottom: 30px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        border: 1px solid #fff;
    }

    .wpo-site-header .slideInn {
        left: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .wpo-site-header .navbar-toggler .first-angle,
    .wpo-site-header .navbar-toggler .last-angle {
        transition: all 0.3s;
    }

    .wpo-site-header .x-close .middle-angle {
        opacity: 0;
    }

    .wpo-site-header .x-close .first-angle {
        position: absolute;
        -webkit-transform: rotate(-44deg);
        top: 16px;
        left: 10px;
    }

    .wpo-site-header .x-close .last-angle {
        -webkit-transform: rotate(44deg);
        position: absolute;
        top: 16px;
        right: 10px;
    }
}

@media (max-width: 767px) {
    .wpo-site-header .navbar-header .navbar-brand {
        font-size: 24px;
    }

    .wpo-site-header #navbar .navbar-nav {
        margin: 0;
    }
}

@media (max-width: 991px) {
    .wpo-site-header .navbar-collapse.collapse {
        display: none;
    }

    .wpo-site-header .navbar-collapse.collapse.in {
        display: block;
    }

    .wpo-site-header .navbar-header .collapse,
    .wpo-site-header .navbar-toggle {
        display: block;
    }

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

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

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

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

@media (max-width: 440px) {
    .wpo-site-header .navbar-header .navbar-brand img {
        max-width: 170px;
    }
}

@media (max-width: 370px) {
    .wpo-site-header .navbar-header .navbar-brand img {
        max-width: 140px;
    }
}

@media (max-width: 1700px) {
    .wpo-site-header {
        padding: 0 30px;
    }
}

@media (max-width: 1500px) {
    .wpo-site-header #navbar&gt;ul&gt;li&gt;a {
        padding: 30px 15px;
    }

    .wpo-site-header {
        padding: 0 10px;
    }
}

@media (max-width: 1400px) {
    .wpo-site-header #navbar&gt;ul&gt;li&gt;a {
        padding: 30px 10px;
        font-size: 18px;
    }
}

@media (max-width: 1200px) {
    .wpo-site-header #navbar&gt;ul&gt;li&gt;a {
        padding: 30px 6px;
        font-size: 16px;
    }

    .wpo-site-header .header-right .theme-btn,
    .wpo-site-header .header-right .theme-btn-s3,
    .wpo-site-header .header-right .theme-btn-s4,
    .wpo-site-header .header-right .view-cart-btn {
        display: none;
    }
}

@media (max-width: 991px) {
    .wpo-site-header #navbar&gt;ul&gt;li&gt;a {
        font-size: 15px;
    }
}

@media (max-width: 767px) {

    .header-right .theme-btn,
    .header-right .theme-btn-s3,
    .header-right .theme-btn-s4,
    .header-right .view-cart-btn {
        padding: 20px 12px;
    }

    .wpo-site-header .header-right .close-form {
        display: none;
    }
}

@media (max-width: 575px) {
    .wpo-hero-section-1 {
        height: 400px;
    }

    .wpo-hero-section-1 .wpo-hero-title-top span {
        font-size: 18px;
    }

    .wpo-hero-section-1 .wpo-hero-title h2 {
        font-size: 30px;
        line-height: 35px;
    }

    .wpo-hero-section-1 .wpo-hero-subtitle p {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 30px;
    }

    .wpo-hero-section-1.wpo-hero-section-2 .right-vec .right-img .video-holder {
        left: 0;
        top: 10px;
    }

    .wpo-hero-section-1.wpo-hero-section-2 .right-vec .right-img .r-img {
        left: 195px;
        top: -20%;
    }

    .wpo-hero-section-1.wpo-hero-section-2 {
        height: 720px;
    }

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

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

.wpo-header-style-2 {
    position: absolute;
    left: 0;
    width: 100%;
    background: transparent;
}

.wpo-header-style-3,
.wpo-header-style-4 {
    position: absolute;
    left: 0;
    width: 100%;
    background: transparent;
}

.wpo-header-style-3 #navbar&gt;ul&gt;li&gt;a,
.wpo-header-style-4 #navbar&gt;ul&gt;li&gt;a {
    color: #fff;
}

.wpo-header-style-3 .navigation.sticky-on,
.wpo-header-style-4 .navigation.sticky-on {
    background: #044e47;
}

.wpo-header-style-4 {
    background: rgba(255, 255, 255, 0.1);
}

/*--------------------------------------------------------------
3. content
--------------------------------------------------------------*/
/*3.1 wpo-hero-slider*/
.wpo-hero-section-1,
.wpo-hero-section-2,
.wpo-hero-section-3,
.wpo-hero-section-4,
.wpo-hero-section-5,
.wpo-hero-section-6,
.wpo-hero-section-7 {
    position: relative;
    height: 900px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    z-index: 1;
}

@media (max-width: 1400px) {

    .wpo-hero-section-1,
    .wpo-hero-section-2,
    .wpo-hero-section-3,
    .wpo-hero-section-4,
    .wpo-hero-section-5,
    .wpo-hero-section-6,
    .wpo-hero-section-7 {
        height: 700px;
        border-bottom: 1px solid #ebebeb;
    }
}

@media (max-width: 991px) {

    .wpo-hero-section-1,
    .wpo-hero-section-2,
    .wpo-hero-section-3,
    .wpo-hero-section-4,
    .wpo-hero-section-5,
    .wpo-hero-section-6,
    .wpo-hero-section-7 {
        height: 500px;
        background: #ebfcfa;
        border-bottom: 0;
    }
}

@media (max-width: 767px) {

    .wpo-hero-section-1,
    .wpo-hero-section-2,
    .wpo-hero-section-3,
    .wpo-hero-section-4,
    .wpo-hero-section-5,
    .wpo-hero-section-6,
    .wpo-hero-section-7 {
        height: 450px;
    }
}

.wpo-hero-section-1:before,
.wpo-hero-section-2:before,
.wpo-hero-section-3:before,
.wpo-hero-section-4:before,
.wpo-hero-section-5:before,
.wpo-hero-section-6:before,
.wpo-hero-section-7:before {
    position: absolute;
    right: -10%;
    top: -40%;
    width: 986px;
    height: 986px;
    content: "";
    background: #ebfcfa;
    border-radius: 50%;
    z-index: -1;
}

@media (max-width: 1500px) {

    .wpo-hero-section-1:before,
    .wpo-hero-section-2:before,
    .wpo-hero-section-3:before,
    .wpo-hero-section-4:before,
    .wpo-hero-section-5:before,
    .wpo-hero-section-6:before,
    .wpo-hero-section-7:before {
        width: 786px;
        height: 786px;
    }
}

@media (max-width: 991px) {

    .wpo-hero-section-1:before,
    .wpo-hero-section-2:before,
    .wpo-hero-section-3:before,
    .wpo-hero-section-4:before,
    .wpo-hero-section-5:before,
    .wpo-hero-section-6:before,
    .wpo-hero-section-7:before {
        display: none;
    }
}

.wpo-hero-section-1 .right-vec,
.wpo-hero-section-2 .right-vec,
.wpo-hero-section-3 .right-vec,
.wpo-hero-section-4 .right-vec,
.wpo-hero-section-5 .right-vec,
.wpo-hero-section-6 .right-vec,
.wpo-hero-section-7 .right-vec {
    z-index: 1;
}

@media (max-width: 1440px) {

    .wpo-hero-section-1 .right-vec,
    .wpo-hero-section-2 .right-vec,
    .wpo-hero-section-3 .right-vec,
    .wpo-hero-section-4 .right-vec,
    .wpo-hero-section-5 .right-vec,
    .wpo-hero-section-6 .right-vec,
    .wpo-hero-section-7 .right-vec {
        top: -30px;
    }
}

@media (max-width: 1200px) {

    .wpo-hero-section-1 .right-vec,
    .wpo-hero-section-2 .right-vec,
    .wpo-hero-section-3 .right-vec,
    .wpo-hero-section-4 .right-vec,
    .wpo-hero-section-5 .right-vec,
    .wpo-hero-section-6 .right-vec,
    .wpo-hero-section-7 .right-vec {
        top: 0px;
    }
}

@media (max-width: 991px) {

    .wpo-hero-section-1 .right-vec,
    .wpo-hero-section-2 .right-vec,
    .wpo-hero-section-3 .right-vec,
    .wpo-hero-section-4 .right-vec,
    .wpo-hero-section-5 .right-vec,
    .wpo-hero-section-6 .right-vec,
    .wpo-hero-section-7 .right-vec {
        display: none;
    }
}

.wpo-hero-section-1 .right-vec .right-items-wrap,
.wpo-hero-section-2 .right-vec .right-items-wrap,
.wpo-hero-section-3 .right-vec .right-items-wrap,
.wpo-hero-section-4 .right-vec .right-items-wrap,
.wpo-hero-section-5 .right-vec .right-items-wrap,
.wpo-hero-section-6 .right-vec .right-items-wrap,
.wpo-hero-section-7 .right-vec .right-items-wrap {
    z-index: -11;
    background: none;
    display: flex;
}

@media (max-width: 991px) {

    .wpo-hero-section-1 .right-vec .right-items-wrap,
    .wpo-hero-section-2 .right-vec .right-items-wrap,
    .wpo-hero-section-3 .right-vec .right-items-wrap,
    .wpo-hero-section-4 .right-vec .right-items-wrap,
    .wpo-hero-section-5 .right-vec .right-items-wrap,
    .wpo-hero-section-6 .right-vec .right-items-wrap,
    .wpo-hero-section-7 .right-vec .right-items-wrap {
        display: block;
        position: relative;
        height: unset;
    }
}

.wpo-hero-section-1 .right-vec .right-items-wrap .r-img,
.wpo-hero-section-2 .right-vec .right-items-wrap .r-img,
.wpo-hero-section-3 .right-vec .right-items-wrap .r-img,
.wpo-hero-section-4 .right-vec .right-items-wrap .r-img,
.wpo-hero-section-5 .right-vec .right-items-wrap .r-img,
.wpo-hero-section-6 .right-vec .right-items-wrap .r-img,
.wpo-hero-section-7 .right-vec .right-items-wrap .r-img {
    flex-basis: 50%;
}

.wpo-hero-section-1 .right-vec .right-items-wrap .r-img img,
.wpo-hero-section-2 .right-vec .right-items-wrap .r-img img,
.wpo-hero-section-3 .right-vec .right-items-wrap .r-img img,
.wpo-hero-section-4 .right-vec .right-items-wrap .r-img img,
.wpo-hero-section-5 .right-vec .right-items-wrap .r-img img,
.wpo-hero-section-6 .right-vec .right-items-wrap .r-img img,
.wpo-hero-section-7 .right-vec .right-items-wrap .r-img img {
    width: 100%;
}

@media (max-width: 991px) {

    .wpo-hero-section-1 .right-vec .right-items-wrap .r-img img,
    .wpo-hero-section-2 .right-vec .right-items-wrap .r-img img,
    .wpo-hero-section-3 .right-vec .right-items-wrap .r-img img,
    .wpo-hero-section-4 .right-vec .right-items-wrap .r-img img,
    .wpo-hero-section-5 .right-vec .right-items-wrap .r-img img,
    .wpo-hero-section-6 .right-vec .right-items-wrap .r-img img,
    .wpo-hero-section-7 .right-vec .right-items-wrap .r-img img {
        display: none;
    }
}

.wpo-hero-section-1 .right-vec .right-items-wrap .right-item,
.wpo-hero-section-2 .right-vec .right-items-wrap .right-item,
.wpo-hero-section-3 .right-vec .right-items-wrap .right-item,
.wpo-hero-section-4 .right-vec .right-items-wrap .right-item,
.wpo-hero-section-5 .right-vec .right-items-wrap .right-item,
.wpo-hero-section-6 .right-vec .right-items-wrap .right-item,
.wpo-hero-section-7 .right-vec .right-items-wrap .right-item {
    margin: 0 20px;
}

@media (max-width: 1400px) {

    .wpo-hero-section-1 .right-vec .right-items-wrap .right-item,
    .wpo-hero-section-2 .right-vec .right-items-wrap .right-item,
    .wpo-hero-section-3 .right-vec .right-items-wrap .right-item,
    .wpo-hero-section-4 .right-vec .right-items-wrap .right-item,
    .wpo-hero-section-5 .right-vec .right-items-wrap .right-item,
    .wpo-hero-section-6 .right-vec .right-items-wrap .right-item,
    .wpo-hero-section-7 .right-vec .right-items-wrap .right-item {
        margin: 0 10px;
    }
}

.wpo-hero-section-1 .right-vec .right-items-wrap .right-item .wpo-happy-client,
.wpo-hero-section-2 .right-vec .right-items-wrap .right-item .wpo-happy-client,
.wpo-hero-section-3 .right-vec .right-items-wrap .right-item .wpo-happy-client,
.wpo-hero-section-4 .right-vec .right-items-wrap .right-item .wpo-happy-client,
.wpo-hero-section-5 .right-vec .right-items-wrap .right-item .wpo-happy-client,
.wpo-hero-section-6 .right-vec .right-items-wrap .right-item .wpo-happy-client,
.wpo-hero-section-7 .right-vec .right-items-wrap .right-item .wpo-happy-client {
    padding: 45px 30px;
    display: flex;
    align-items: center;
    z-index: 99;
    display: flex;
    justify-content: center;
}

@media (max-width: 1300px) {

    .wpo-hero-section-1 .right-vec .right-items-wrap .right-item .wpo-happy-client,
    .wpo-hero-section-2 .right-vec .right-items-wrap .right-item .wpo-happy-client,
    .wpo-hero-section-3 .right-vec .right-items-wrap .right-item .wpo-happy-client,
    .wpo-hero-section-4 .right-vec .right-items-wrap .right-item .wpo-happy-client,
    .wpo-hero-section-5 .right-vec .right-items-wrap .right-item .wpo-happy-client,
    .wpo-hero-section-6 .right-vec .right-items-wrap .right-item .wpo-happy-client,
    .wpo-hero-section-7 .right-vec .right-items-wrap .right-item .wpo-happy-client {
        padding: 30px 10px;
        display: flex;
        justify-content: center;
    }
}

.wpo-hero-section-1 .right-vec .right-items-wrap .right-item .wpo-happy-client h3,
.wpo-hero-section-2 .right-vec .right-items-wrap .right-item .wpo-happy-client h3,
.wpo-hero-section-3 .right-vec .right-items-wrap .right-item .wpo-happy-client h3,
.wpo-hero-section-4 .right-vec .right-items-wrap .right-item .wpo-happy-client h3,
.wpo-hero-section-5 .right-vec .right-items-wrap .right-item .wpo-happy-client h3,
.wpo-hero-section-6 .right-vec .right-items-wrap .right-item .wpo-happy-client h3,
.wpo-hero-section-7 .right-vec .right-items-wrap .right-item .wpo-happy-client h3 {
    font-size: 52px;
    font-family: "Roboto Slab", serif;
    margin-bottom: 0px;
}

.wpo-hero-section-1 .right-vec .right-items-wrap .right-item .wpo-happy-client p,
.wpo-hero-section-2 .right-vec .right-items-wrap .right-item .wpo-happy-client p,
.wpo-hero-section-3 .right-vec .right-items-wrap .right-item .wpo-happy-client p,
.wpo-hero-section-4 .right-vec .right-items-wrap .right-item .wpo-happy-client p,
.wpo-hero-section-5 .right-vec .right-items-wrap .right-item .wpo-happy-client p,
.wpo-hero-section-6 .right-vec .right-items-wrap .right-item .wpo-happy-client p,
.wpo-hero-section-7 .right-vec .right-items-wrap .right-item .wpo-happy-client p {
    margin-bottom: 0;
    font-size: 22px;
    color: #838383;
    font-family: "Roboto Slab", serif;
}

.wpo-hero-section-1 .right-vec .right-items-wrap .right-item .wpo-happy-client .wpo-happy-client-slide,
.wpo-hero-section-2 .right-vec .right-items-wrap .right-item .wpo-happy-client .wpo-happy-client-slide,
.wpo-hero-section-3 .right-vec .right-items-wrap .right-item .wpo-happy-client .wpo-happy-client-slide,
.wpo-hero-section-4 .right-vec .right-items-wrap .right-item .wpo-happy-client .wpo-happy-client-slide,
.wpo-hero-section-5 .right-vec .right-items-wrap .right-item .wpo-happy-client .wpo-happy-client-slide,
.wpo-hero-section-6 .right-vec .right-items-wrap .right-item .wpo-happy-client .wpo-happy-client-slide,
.wpo-hero-section-7 .right-vec .right-items-wrap .right-item .wpo-happy-client .wpo-happy-client-slide {
    max-width: 275px;
    margin-left: 25px;
    list-style: none;
    padding-left: 0;
}

@media (max-width: 1500px) {

    .wpo-hero-section-1 .right-vec .right-items-wrap .right-item .wpo-happy-client .wpo-happy-client-slide,
    .wpo-hero-section-2 .right-vec .right-items-wrap .right-item .wpo-happy-client .wpo-happy-client-slide,
    .wpo-hero-section-3 .right-vec .right-items-wrap .right-item .wpo-happy-client .wpo-happy-client-slide,
    .wpo-hero-section-4 .right-vec .right-items-wrap .right-item .wpo-happy-client .wpo-happy-client-slide,
    .wpo-hero-section-5 .right-vec .right-items-wrap .right-item .wpo-happy-client .wpo-happy-client-slide,
    .wpo-hero-section-6 .right-vec .right-items-wrap .right-item .wpo-happy-client .wpo-happy-client-slide,
    .wpo-hero-section-7 .right-vec .right-items-wrap .right-item .wpo-happy-client .wpo-happy-client-slide {
        max-width: 205px;
        margin-left: 0;
    }
}

.wpo-hero-section-1 .right-vec .right-items-wrap .right-item .wpo-happy-client .wpo-happy-client-slide .owl-nav,
.wpo-hero-section-2 .right-vec .right-items-wrap .right-item .wpo-happy-client .wpo-happy-client-slide .owl-nav,
.wpo-hero-section-3 .right-vec .right-items-wrap .right-item .wpo-happy-client .wpo-happy-client-slide .owl-nav,
.wpo-hero-section-4 .right-vec .right-items-wrap .right-item .wpo-happy-client .wpo-happy-client-slide .owl-nav,
.wpo-hero-section-5 .right-vec .right-items-wrap .right-item .wpo-happy-client .wpo-happy-client-slide .owl-nav,
.wpo-hero-section-6 .right-vec .right-items-wrap .right-item .wpo-happy-client .wpo-happy-client-slide .owl-nav,
.wpo-hero-section-7 .right-vec .right-items-wrap .right-item .wpo-happy-client .wpo-happy-client-slide .owl-nav {
    display: none;
}

.wpo-hero-section-1 .right-vec .right-items-wrap .right-item .wpo-happy-client .wpo-happy-client-slide li,
.wpo-hero-section-2 .right-vec .right-items-wrap .right-item .wpo-happy-client .wpo-happy-client-slide li,
.wpo-hero-section-3 .right-vec .right-items-wrap .right-item .wpo-happy-client .wpo-happy-client-slide li,
.wpo-hero-section-4 .right-vec .right-items-wrap .right-item .wpo-happy-client .wpo-happy-client-slide li,
.wpo-hero-section-5 .right-vec .right-items-wrap .right-item .wpo-happy-client .wpo-happy-client-slide li,
.wpo-hero-section-6 .right-vec .right-items-wrap .right-item .wpo-happy-client .wpo-happy-client-slide li,
.wpo-hero-section-7 .right-vec .right-items-wrap .right-item .wpo-happy-client .wpo-happy-client-slide li {
    width: 55px;
    height: 55px;
}

.wpo-hero-section-1 .right-vec .right-items-wrap .right-item .wpo-happy-client .wpo-happy-client-slide li img,
.wpo-hero-section-2 .right-vec .right-items-wrap .right-item .wpo-happy-client .wpo-happy-client-slide li img,
.wpo-hero-section-3 .right-vec .right-items-wrap .right-item .wpo-happy-client .wpo-happy-client-slide li img,
.wpo-hero-section-4 .right-vec .right-items-wrap .right-item .wpo-happy-client .wpo-happy-client-slide li img,
.wpo-hero-section-5 .right-vec .right-items-wrap .right-item .wpo-happy-client .wpo-happy-client-slide li img,
.wpo-hero-section-6 .right-vec .right-items-wrap .right-item .wpo-happy-client .wpo-happy-client-slide li img,
.wpo-hero-section-7 .right-vec .right-items-wrap .right-item .wpo-happy-client .wpo-happy-client-slide li img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
}

.wpo-hero-section-1 .right-vec .right-items-wrap .right-item:first-child .r-img img,
.wpo-hero-section-2 .right-vec .right-items-wrap .right-item:first-child .r-img img,
.wpo-hero-section-3 .right-vec .right-items-wrap .right-item:first-child .r-img img,
.wpo-hero-section-4 .right-vec .right-items-wrap .right-item:first-child .r-img img,
.wpo-hero-section-5 .right-vec .right-items-wrap .right-item:first-child .r-img img,
.wpo-hero-section-6 .right-vec .right-items-wrap .right-item:first-child .r-img img,
.wpo-hero-section-7 .right-vec .right-items-wrap .right-item:first-child .r-img img {
    border-radius: 200px 200px 40px 40px;
}

.wpo-hero-section-1 .right-vec .right-items-wrap .right-item:last-child .r-img img,
.wpo-hero-section-2 .right-vec .right-items-wrap .right-item:last-child .r-img img,
.wpo-hero-section-3 .right-vec .right-items-wrap .right-item:last-child .r-img img,
.wpo-hero-section-4 .right-vec .right-items-wrap .right-item:last-child .r-img img,
.wpo-hero-section-5 .right-vec .right-items-wrap .right-item:last-child .r-img img,
.wpo-hero-section-6 .right-vec .right-items-wrap .right-item:last-child .r-img img,
.wpo-hero-section-7 .right-vec .right-items-wrap .right-item:last-child .r-img img {
    border-radius: 40px 40px 180px 180px;
}

.wpo-hero-section-1 .right-vec .right-items-wrap .right-item .wpo-total-project,
.wpo-hero-section-2 .right-vec .right-items-wrap .right-item .wpo-total-project,
.wpo-hero-section-3 .right-vec .right-items-wrap .right-item .wpo-total-project,
.wpo-hero-section-4 .right-vec .right-items-wrap .right-item .wpo-total-project,
.wpo-hero-section-5 .right-vec .right-items-wrap .right-item .wpo-total-project,
.wpo-hero-section-6 .right-vec .right-items-wrap .right-item .wpo-total-project,
.wpo-hero-section-7 .right-vec .right-items-wrap .right-item .wpo-total-project {
    padding: 20px 30px;
    background: linear-gradient(to left, #225c55, rgba(93, 196, 184, 0.85));
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

@media (max-width: 1400px) {

    .wpo-hero-section-1 .right-vec .right-items-wrap .right-item .wpo-total-project,
    .wpo-hero-section-2 .right-vec .right-items-wrap .right-item .wpo-total-project,
    .wpo-hero-section-3 .right-vec .right-items-wrap .right-item .wpo-total-project,
    .wpo-hero-section-4 .right-vec .right-items-wrap .right-item .wpo-total-project,
    .wpo-hero-section-5 .right-vec .right-items-wrap .right-item .wpo-total-project,
    .wpo-hero-section-6 .right-vec .right-items-wrap .right-item .wpo-total-project,
    .wpo-hero-section-7 .right-vec .right-items-wrap .right-item .wpo-total-project {
        padding: 12px 10px;
    }
}

.wpo-hero-section-1 .right-vec .right-items-wrap .right-item .wpo-total-project .project-shape,
.wpo-hero-section-2 .right-vec .right-items-wrap .right-item .wpo-total-project .project-shape,
.wpo-hero-section-3 .right-vec .right-items-wrap .right-item .wpo-total-project .project-shape,
.wpo-hero-section-4 .right-vec .right-items-wrap .right-item .wpo-total-project .project-shape,
.wpo-hero-section-5 .right-vec .right-items-wrap .right-item .wpo-total-project .project-shape,
.wpo-hero-section-6 .right-vec .right-items-wrap .right-item .wpo-total-project .project-shape,
.wpo-hero-section-7 .right-vec .right-items-wrap .right-item .wpo-total-project .project-shape {
    position: absolute;
    right: -140px;
    top: -60px;
    z-index: -1;
}

.wpo-hero-section-1 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap,
.wpo-hero-section-2 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap,
.wpo-hero-section-3 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap,
.wpo-hero-section-4 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap,
.wpo-hero-section-5 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap,
.wpo-hero-section-6 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap,
.wpo-hero-section-7 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap {
    display: flex;
    align-items: center;
}

.wpo-hero-section-1 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-icon,
.wpo-hero-section-2 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-icon,
.wpo-hero-section-3 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-icon,
.wpo-hero-section-4 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-icon,
.wpo-hero-section-5 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-icon,
.wpo-hero-section-6 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-icon,
.wpo-hero-section-7 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-icon {
    width: 90px;
    height: 90px;
    line-height: 90px;
    background: #2b766e;
    border-radius: 50%;
    text-align: center;
    margin-right: 30px;
}

@media (max-width: 1400px) {

    .wpo-hero-section-1 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-icon,
    .wpo-hero-section-2 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-icon,
    .wpo-hero-section-3 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-icon,
    .wpo-hero-section-4 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-icon,
    .wpo-hero-section-5 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-icon,
    .wpo-hero-section-6 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-icon,
    .wpo-hero-section-7 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-icon {
        width: 70px;
        height: 70px;
        line-height: 70px;
        margin-right: 17px;
    }
}

.wpo-hero-section-1 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-icon .fi,
.wpo-hero-section-2 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-icon .fi,
.wpo-hero-section-3 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-icon .fi,
.wpo-hero-section-4 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-icon .fi,
.wpo-hero-section-5 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-icon .fi,
.wpo-hero-section-6 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-icon .fi,
.wpo-hero-section-7 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-icon .fi {
    font-size: 30px;
    color: #fff;
}

@media (max-width: 1400px) {

    .wpo-hero-section-1 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-icon .fi,
    .wpo-hero-section-2 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-icon .fi,
    .wpo-hero-section-3 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-icon .fi,
    .wpo-hero-section-4 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-icon .fi,
    .wpo-hero-section-5 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-icon .fi,
    .wpo-hero-section-6 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-icon .fi,
    .wpo-hero-section-7 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-icon .fi {
        font-size: 20px;
    }
}

.wpo-hero-section-1 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-text h3,
.wpo-hero-section-2 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-text h3,
.wpo-hero-section-3 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-text h3,
.wpo-hero-section-4 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-text h3,
.wpo-hero-section-5 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-text h3,
.wpo-hero-section-6 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-text h3,
.wpo-hero-section-7 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-text h3 {
    font-size: 45px;
    color: #fff;
    margin: 0;
}

@media (max-width: 1400px) {

    .wpo-hero-section-1 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-text h3,
    .wpo-hero-section-2 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-text h3,
    .wpo-hero-section-3 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-text h3,
    .wpo-hero-section-4 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-text h3,
    .wpo-hero-section-5 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-text h3,
    .wpo-hero-section-6 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-text h3,
    .wpo-hero-section-7 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-text h3 {
        font-size: 30px;
        margin-bottom: 0;
    }
}

.wpo-hero-section-1 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-text p,
.wpo-hero-section-2 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-text p,
.wpo-hero-section-3 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-text p,
.wpo-hero-section-4 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-text p,
.wpo-hero-section-5 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-text p,
.wpo-hero-section-6 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-text p,
.wpo-hero-section-7 .right-vec .right-items-wrap .right-item .wpo-total-project .wpo-total-project-wrap .wpo-total-project-text p {
    color: #fff;
    margin-bottom: 0;
}

.wpo-hero-section-1 .wpo-hero-title h2,
.wpo-hero-section-2 .wpo-hero-title h2,
.wpo-hero-section-3 .wpo-hero-title h2,
.wpo-hero-section-4 .wpo-hero-title h2,
.wpo-hero-section-5 .wpo-hero-title h2,
.wpo-hero-section-6 .wpo-hero-title h2,
.wpo-hero-section-7 .wpo-hero-title h2 {
    font-size: 60px;
    font-weight: 400;
    line-height: 85px;
    margin: 10px 0 25px;
}

@media (max-width: 1600px) {

    .wpo-hero-section-1 .wpo-hero-title h2,
    .wpo-hero-section-2 .wpo-hero-title h2,
    .wpo-hero-section-3 .wpo-hero-title h2,
    .wpo-hero-section-4 .wpo-hero-title h2,
    .wpo-hero-section-5 .wpo-hero-title h2,
    .wpo-hero-section-6 .wpo-hero-title h2,
    .wpo-hero-section-7 .wpo-hero-title h2 {
        font-size: 50px;
        line-height: 75px;
    }
}

@media (max-width: 1200px) {

    .wpo-hero-section-1 .wpo-hero-title h2,
    .wpo-hero-section-2 .wpo-hero-title h2,
    .wpo-hero-section-3 .wpo-hero-title h2,
    .wpo-hero-section-4 .wpo-hero-title h2,
    .wpo-hero-section-5 .wpo-hero-title h2,
    .wpo-hero-section-6 .wpo-hero-title h2,
    .wpo-hero-section-7 .wpo-hero-title h2 {
        font-size: 40px;
        line-height: 60px;
    }
}

@media (max-width: 575px) {

    .wpo-hero-section-1 .wpo-hero-title h2,
    .wpo-hero-section-2 .wpo-hero-title h2,
    .wpo-hero-section-3 .wpo-hero-title h2,
    .wpo-hero-section-4 .wpo-hero-title h2,
    .wpo-hero-section-5 .wpo-hero-title h2,
    .wpo-hero-section-6 .wpo-hero-title h2,
    .wpo-hero-section-7 .wpo-hero-title h2 {
        font-size: 25px;
    }
}

.wpo-hero-section-1 .wpo-hero-title h2 span,
.wpo-hero-section-2 .wpo-hero-title h2 span,
.wpo-hero-section-3 .wpo-hero-title h2 span,
.wpo-hero-section-4 .wpo-hero-title h2 span,
.wpo-hero-section-5 .wpo-hero-title h2 span,
.wpo-hero-section-6 .wpo-hero-title h2 span,
.wpo-hero-section-7 .wpo-hero-title h2 span {
    color: #ef5f34;
}

.wpo-hero-section-1 .wpo-hero-title-top span,
.wpo-hero-section-2 .wpo-hero-title-top span,
.wpo-hero-section-3 .wpo-hero-title-top span,
.wpo-hero-section-4 .wpo-hero-title-top span,
.wpo-hero-section-5 .wpo-hero-title-top span,
.wpo-hero-section-6 .wpo-hero-title-top span,
.wpo-hero-section-7 .wpo-hero-title-top span {
    font-size: 22px;
    color: #ef5f34;
    font-weight: 600;
}

.wpo-hero-section-1 .wpo-hero-subtitle p,
.wpo-hero-section-2 .wpo-hero-subtitle p,
.wpo-hero-section-3 .wpo-hero-subtitle p,
.wpo-hero-section-4 .wpo-hero-subtitle p,
.wpo-hero-section-5 .wpo-hero-subtitle p,
.wpo-hero-section-6 .wpo-hero-subtitle p,
.wpo-hero-section-7 .wpo-hero-subtitle p {
    font-size: 25px;
    color: #676767;
    line-height: 35px;
    max-width: 595px;
    margin-bottom: 40px;
    font-weight: 400;
}

@media (max-width: 1200px) {

    .wpo-hero-section-1 .wpo-hero-subtitle p,
    .wpo-hero-section-2 .wpo-hero-subtitle p,
    .wpo-hero-section-3 .wpo-hero-subtitle p,
    .wpo-hero-section-4 .wpo-hero-subtitle p,
    .wpo-hero-section-5 .wpo-hero-subtitle p,
    .wpo-hero-section-6 .wpo-hero-subtitle p,
    .wpo-hero-section-7 .wpo-hero-subtitle p {
        font-size: 18px;
    }
}

@media (max-width: 991px) {

    .wpo-hero-section-1 .wpo-hero-subtitle p,
    .wpo-hero-section-2 .wpo-hero-subtitle p,
    .wpo-hero-section-3 .wpo-hero-subtitle p,
    .wpo-hero-section-4 .wpo-hero-subtitle p,
    .wpo-hero-section-5 .wpo-hero-subtitle p,
    .wpo-hero-section-6 .wpo-hero-subtitle p,
    .wpo-hero-section-7 .wpo-hero-subtitle p {
        margin-bottom: 30px;
    }
}

.wpo-hero-section-text {
    position: relative;
    padding-left: 160px;
}

@media (max-width: 1600px) {
    .wpo-hero-section-text {
        padding-left: 80px;
    }
}

@media (max-width: 1400px) {
    .wpo-hero-section-text {
        padding-left: 30px;
    }
}

@media (max-width: 991px) {
    .wpo-hero-section-text {
        padding-left: 10px;
    }
}

.wpo-hero-section-2 {
    height: 950px;
    border-bottom: 0 !important;
}

.wpo-hero-section-2::before {
    display: none;
}

@media (max-width: 1400px) {
    .wpo-hero-section-2 {
        height: 700px;
    }
}

@media (max-width: 991px) {
    .wpo-hero-section-2 {
        height: 500px;
        border-bottom: 0;
    }
}

.wpo-hero-section-2 .wpo-hero-section-text {
    padding-top: 40px;
}

.wpo-hero-section-2 .wpo-hero-section-text .wpo-hero-title h2 span {
    color: #ef5f34;
}

.wpo-hero-section-2 .right-item {
    position: relative;
}

.wpo-hero-section-2 .right-item .sp-1 {
    position: absolute;
    left: 0;
    top: 100px;
    -webkit-animation: bounceTop 3s linear infinite;
    animation: bounceTop 3s linear infinite;
}

@media (max-width: 1200px) {
    .wpo-hero-section-2 .right-item .sp-1 {
        top: 40px;
    }
}

.wpo-hero-section-2 .right-item .sp-2 {
    position: absolute;
    left: 0;
    bottom: 100px;
    -webkit-animation: rotate3d 5s linear infinite;
    animation: rotate3d 5s linear infinite;
}

@media (max-width: 1200px) {
    .wpo-hero-section-2 .right-item .sp-2 {
        bottom: 40px;
    }
}

.wpo-hero-section-2 .right-item .sp-3 {
    position: absolute;
    right: -80px;
    top: 50%;
    -webkit-animation: rotate3d 6s linear infinite;
    animation: rotate3d 6s linear infinite;
}

@media (max-width: 1200px) {
    .wpo-hero-section-2 .right-item .sp-3 {
        right: 10px;
    }
}

.wpo-hero-section-3 {
    background: #044e47;
    z-index: 1;
    height: 1000px;
    overflow: hidden;
}

@media (max-width: 1400px) {
    .wpo-hero-section-3 {
        height: 700px;
    }
}

@media (max-width: 991px) {
    .wpo-hero-section-3 {
        height: 500px;
        border-bottom: 0;
    }
}

.wpo-hero-section-3::before {
    display: none;
}

.wpo-hero-section-3 .sd-1 {
    position: absolute;
    left: 0;
    top: -5%;
    z-index: -1;
}

.wpo-hero-section-3 .sd-2 {
    position: absolute;
    left: 30%;
    bottom: -17%;
    z-index: -1;
}

@media (max-width: 1400px) {
    .wpo-hero-section-3 .sd-2 {
        bottom: -27%;
    }
}

@media (max-width: 991px) {
    .wpo-hero-section-3 .sd-2 {
        bottom: -37%;
        left: 60%;
    }
}

.wpo-hero-section-3 .right-tiger-img {
    position: relative;
    right: -30px;
    top: 40px;
    padding: 30px;
    border: 2px solid #f06439;
    border-radius: 370px 0px 0px 370px;
    padding-right: 0;
}

.wpo-hero-section-3 .right-tiger-img .r-img {
    overflow: hidden;
    border-radius: 350px 0px 0px 350px;
}

.wpo-hero-section-3 .right-tiger-img .r-img img {
    width: 100%;
    border-radius: none;
    border-radius: 350px 0px 0px 350px;
    -webkit-animation: kenburn 25s 2s alternate infinite;
    -animation: kenburn 25s 2s alternate infinite;
}

.wpo-hero-section-3 .wpo-hero-section-text {
    padding-top: 40px;
    padding-left: 293px;
}

@media (max-width: 1800px) {
    .wpo-hero-section-3 .wpo-hero-section-text {
        padding-left: 100px;
    }
}

@media (max-width: 1400px) {
    .wpo-hero-section-3 .wpo-hero-section-text {
        padding-left: 30px;
    }
}

@media (max-width: 991px) {
    .wpo-hero-section-3 .wpo-hero-section-text {
        padding-left: 10px;
    }
}

.wpo-hero-section-3 .wpo-hero-section-text .wpo-hero-title h2 {
    font-size: 90px;
    font-weight: 700;
    color: #fff;
    line-height: 130px;
}

.wpo-hero-section-3 .wpo-hero-section-text .wpo-hero-title h2 span {
    color: #5dc4b8;
}

@media (max-width: 1600px) {
    .wpo-hero-section-3 .wpo-hero-section-text .wpo-hero-title h2 {
        font-size: 50px;
        line-height: 75px;
    }
}

@media (max-width: 1200px) {
    .wpo-hero-section-3 .wpo-hero-section-text .wpo-hero-title h2 {
        font-size: 40px;
        line-height: 60px;
    }
}

@media (max-width: 575px) {
    .wpo-hero-section-3 .wpo-hero-section-text .wpo-hero-title h2 {
        font-size: 22px;
        line-height: 40px;
        margin-bottom: 20px;
    }
}

.wpo-hero-section-3 .wpo-hero-section-text p {
    color: #fff;
}

.wpo-hero-section-4,
.wpo-hero-section-7 {
    z-index: 1;
    height: 995px;
    overflow: hidden;
    position: relative;
}

.wpo-hero-section-4::before,
.wpo-hero-section-7::before {
    display: none;
}

@media (max-width: 1400px) {

    .wpo-hero-section-4,
    .wpo-hero-section-7 {
        height: 700px;
        border-bottom: 1px solid #ebebeb;
    }
}

@media (max-width: 991px) {

    .wpo-hero-section-4,
    .wpo-hero-section-7 {
        height: 500px;
        border-bottom: 0;
    }
}

@media (max-width: 767px) {

    .wpo-hero-section-4,
    .wpo-hero-section-7 {
        height: 450px;
    }
}

.wpo-hero-section-4:after,
.wpo-hero-section-7:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 60%;
    height: 100%;
    content: "";
    z-index: -1;
}

@media (max-width: 1300px) {

    .wpo-hero-section-4:after,
    .wpo-hero-section-7:after {
        width: 70%;
    }
}

@media (max-width: 767px) {

    .wpo-hero-section-4:after,
    .wpo-hero-section-7:after {
        width: 80%;
    }
}

.wpo-hero-section-4 .wpo-hero-title h2,
.wpo-hero-section-7 .wpo-hero-title h2 {
    color: #fff;
    font-weight: 700;
}

.wpo-hero-section-4 .wpo-hero-title h2 span,
.wpo-hero-section-7 .wpo-hero-title h2 span {
    color: #fff;
    font-weight: 300;
}

@media (max-width: 575px) {

    .wpo-hero-section-4 .wpo-hero-title h2,
    .wpo-hero-section-7 .wpo-hero-title h2 {
        line-height: 40px;
        margin-bottom: 20px;
    }
}

.wpo-hero-section-4 .wpo-hero-subtitle p,
.wpo-hero-section-7 .wpo-hero-subtitle p {
    color: #fff;
    max-width: 550px;
}

.wpo-hero-section-4 .btns .theme-btn,
.wpo-hero-section-4 .btns .theme-btn-s3,
.wpo-hero-section-4 .btns .theme-btn-s4,
.wpo-hero-section-4 .btns .view-cart-btn,
.wpo-hero-section-7 .btns .theme-btn,
.wpo-hero-section-7 .btns .theme-btn-s3,
.wpo-hero-section-7 .btns .theme-btn-s4,
.wpo-hero-section-7 .btns .view-cart-btn {
    background: #fff;
    color: #212158;
}

.wpo-hero-section-4 .btns .theme-btn:hover,
.wpo-hero-section-4 .btns .theme-btn-s3:hover,
.wpo-hero-section-4 .btns .theme-btn-s4:hover,
.wpo-hero-section-4 .btns .view-cart-btn:hover,
.wpo-hero-section-7 .btns .theme-btn:hover,
.wpo-hero-section-7 .btns .theme-btn-s3:hover,
.wpo-hero-section-7 .btns .theme-btn-s4:hover,
.wpo-hero-section-7 .btns .view-cart-btn:hover {
    color: #fff;
}

.wpo-hero-section-5 {
    z-index: 1;
    height: 995px;
    overflow: hidden;
    position: relative;
    background-size: cover;
}

@media (max-width: 1400px) {
    .wpo-hero-section-5 {
        height: 700px;
        border-bottom: 1px solid #ebebeb;
    }
}

@media (max-width: 991px) {
    .wpo-hero-section-5 {
        height: 500px;
        border-bottom: 0;
    }
}

@media (max-width: 767px) {
    .wpo-hero-section-5 {
        height: 450px;
    }
}

.wpo-hero-section-5::before {
    display: none;
}

.wpo-hero-section-5::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(4, 8, 53, 0.8);
    z-index: -1;
}

.wpo-hero-section-5 .wpo-hero-section-text {
    padding-left: 0;
}

.wpo-hero-section-5 .wpo-hero-title-top span {
    color: #5dc4b8;
}

.wpo-hero-section-5 .wpo-hero-title h2 {
    color: #fff;
    font-weight: 700;
}

.wpo-hero-section-5 .wpo-hero-title h2 span {
    color: #5dc4b8;
}

@media (max-width: 575px) {
    .wpo-hero-section-5 .wpo-hero-title h2 {
        line-height: 40px;
        margin-bottom: 20px;
    }
}

.wpo-hero-section-5 .wpo-hero-subtitle p {
    color: #fff;
    max-width: 550px;
}

.wpo-hero-section-5 .right-vec .right-items-wrap .right-item:last-child .r-img img {
    border-radius: 0;
}

.wpo-hero-section-5 .right-vec .right-items-wrap .right-item .r-img {
    position: relative;
    z-index: 1;
    bottom: -50px;
}

.wpo-hero-section-5 .right-vec .right-items-wrap .right-item .r-img img {
    width: 120%;
    border-radius: 0;
}

.wpo-hero-section-5 .right-vec .right-items-wrap .right-item .r-img .r-shape {
    position: absolute;
    left: -20%;
    top: 0;
    z-index: -1;
    width: 130%;
    -webkit-animation: bounceTop 3s linear infinite;
    animation: bounceTop 3s linear infinite;
}

.wpo-hero-section-5 .right-vec .right-items-wrap .right-item .r-img .r-shape img {
    width: 100%;
    border-radius: 0;
}
.wpo-total-project-icon i:before {
    font-size: 40px;
}
.wpo-hero-section-5 .btns .theme-btn-s2 {
    background: #ef5f34;
    background: linear-gradient(to left, rgba(239, 95, 52, 0.75), #e34212);
}
.wpo-hero-section-5 .btns .theme-btn-s2:after {
    background: linear-gradient(to left, #e34212, rgba(239, 95, 52, 0.75));
}
/*--------------------------------------------------------------
wpo-hero-section-6
--------------------------------------------------------------*/
.wpo-hero-slider {
    width: 100%;
    height: 900px;
    display: flex;
    position: relative;
    z-index: 0;
}

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

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

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

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

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

.wpo-hero-slider .slide-inner .slide-content,
.wpo-hero-slider .hero-inner .slide-content {
    padding-bottom: 70px;
}

@media (max-width: 991px) {

    .wpo-hero-slider .slide-inner .slide-content,
    .wpo-hero-slider .hero-inner .slide-content {
        padding-bottom: 0;
    }
}

.wpo-hero-slider .slide-inner:before,
.wpo-hero-slider .hero-inner:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(0, 0, 0, 0.5);
}

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

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

@media (max-width: 767px) {

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

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

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

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

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

@media (max-width: 991px) {

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

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

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

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

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

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

.wpo-hero-slider {
    z-index: 1;
}

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

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

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

.wpo-hero-slider .gradient-overlay {
    background: #212158;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.5;
    z-index: -1;
}

.wpo-hero-slider .gradient-overlay+.container {
    position: relative;
    z-index: 11;
}

.wpo-hero-slider .swiper-slide {
    position: relative;
    z-index: 11;
}

.wpo-hero-slider .wpo-hero-title-top span {
    font-size: 22px;
    color: #e4e4e4;
    font-family: "Roboto Slab", serif;
}

@media (max-width: 767px) {
    .wpo-hero-slider .wpo-hero-title-top span {
        font-size: 15px;
    }
}

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

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

.wpo-hero-slider .slide-title h2 {
    font-size: 70px;
    font-weight: 900;
    line-height: 90px;
    margin: 10px 0 25px;
    color: #fff;
}

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

@media (max-width: 991px) {
    .wpo-hero-slider .slide-title h2 {
        font-size: 40px;
        font-size: 2.6666666667rem;
        line-height: 55px;
    }
}

@media (max-width: 767px) {
    .wpo-hero-slider .slide-title h2 {
        font-size: 30px;
        font-size: 2rem;
        line-height: 36px;
    }
}

@media (max-width: 575px) {
    .wpo-hero-slider .slide-title h2 {
        font-size: 25px;
    }
}

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

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

.wpo-hero-slider .slide-text p {
    font-size: 25px;
    color: #676767;
    font-family: "Roboto Slab", serif;
    line-height: 35px;
    max-width: 595px;
    padding-left: 20px;
    border-left: 2px solid #e2e2e2;
    margin-bottom: 60px;
    color: #e2e2e2;
}

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

@media (max-width: 767px) {
    .wpo-hero-slider .slide-text p {
        font-size: 16px;
        font-size: 1.0666666667rem;
        line-height: 22px;
        margin-bottom: 30px;
    }
}

@media (max-width: 991px) {
    .wpo-hero-slider .slide-btns {
        max-width: 400px;
    }
}

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

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

@media (max-width: 1700px) {
    .wpo-hero-section-1 .right-img2 {
        left: 38px;
    }
}

@media (max-width: 1500px) {
    .wpo-hero-section-1 .right-img2 {
        left: 18px;
    }

    .wpo-hero-section-1.wpo-hero-section-2 .right-vec .right-img .r-img {
        right: 20px;
    }
}

@media (max-width: 991px) {
    .right-img {
        display: none;
    }
}

@media (max-width: 767px) {

    .wpo-hero-section-1 .wpo-hero-title h2,
    .wpo-hero-section-2 .wpo-hero-title h2 {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 10px;
    }
}

@media (max-width: 575px) {
    .wpo-hero-section-1 .wpo-hero-title h2 {
        font-size: 25px;
    }
}

@-webkit-keyframes kenburn {
    from {
        transform: scale3d(1, 1, 1);
    }

    to {
        transform: scale3d(1.3, 1.3, 1.3);
    }
}

@keyframes kenburn {
    from {
        transform: scale3d(1, 1, 1);
    }

    to {
        transform: scale3d(1.3, 1.3, 1.3);
    }
}

.wpo-hero-section-6 {
    height: 1000px;
}

@media (max-width: 1400px) {
    .wpo-hero-section-6 {
        height: 700px;
        border-bottom: 1px solid #ebebeb;
    }
}

@media (max-width: 991px) {
    .wpo-hero-section-6 {
        height: 600px;
        border-bottom: 0;
    }
}

@media (max-width: 767px) {
    .wpo-hero-section-6 {
        height: 550px;
    }
}

.wpo-hero-section-6 .slide-content {
    max-width: 915px;
    margin: 0 auto;
    text-align: center;
    padding-top: 130px;
}

@media (max-width: 991px) {
    .wpo-hero-section-6 .slide-content {
        padding-top: 50px;
    }
}

.wpo-hero-section-6 .wpo-hero-title h2 {
    color: #fff;
    font-weight: 700;
    font-size: 80px;
    line-height: 110px;
}

.wpo-hero-section-6 .wpo-hero-title h2 span {
    color: #5dc4b8;
}

@media (max-width: 575px) {
    .wpo-hero-section-6 .wpo-hero-title h2 {
        line-height: 40px;
        margin-bottom: 20px;
    }
}

@media (max-width: 1199px) {
    .wpo-hero-section-6 .wpo-hero-title h2 {
        font-size: 45px;
        font-size: 3rem;
        margin-bottom: 10px;
    }
}

@media (max-width: 991px) {
    .wpo-hero-section-6 .wpo-hero-title h2 {
        font-size: 40px;
        font-size: 2.6666666667rem;
        line-height: 55px;
    }
}

@media (max-width: 767px) {
    .wpo-hero-section-6 .wpo-hero-title h2 {
        font-size: 30px;
        font-size: 2rem;
        line-height: 36px;
    }
}

@media (max-width: 575px) {
    .wpo-hero-section-6 .wpo-hero-title h2 {
        font-size: 25px;
    }
}

.wpo-hero-section-6 .wpo-hero-subtitle p {
    color: #fff;
    margin: 0 auto;
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .wpo-hero-section-6 .slide-btns {
        margin: auto;
    }
}

.wpo-hero-section-7 {
    z-index: 11;
    background: url(../images/slider/slide-3.jpg) no-repeat right center;
    height: 1000px;
}

@media (max-width: 1400px) {
    .wpo-hero-section-7 {
        height: 700px;
        border-bottom: 1px solid #ebebeb;
    }
}

@media (max-width: 991px) {
    .wpo-hero-section-7 {
        height: 600px;
        border-bottom: 0;
    }
}

@media (max-width: 767px) {
    .wpo-hero-section-7 {
        height: 550px;
    }
}

.wpo-hero-section-7::after {
    background: url(../images/slider/left-shape-2.png) no-repeat right center;
    width: 73%;
}

@media (max-width: 1400px) {
    .wpo-hero-section-7::after {
        width: 85%;
    }
}

@media (max-width: 1200px) {
    .wpo-hero-section-7::after {
        width: 90%;
    }
}

@media (max-width: 991px) {
    .wpo-hero-section-7::after {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .wpo-hero-section-7::after {
        width: 130%;
    }
}

.wpo-hero-section-7:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(0, 0, 0, 0.5);
    display: block;
    border-radius: 0;
    right: 0;
}

.wpo-hero-section-7 .wpo-hero-section-text {
    padding-top: 70px;
}

@media (max-width: 991px) {
    .wpo-hero-section-7 .wpo-hero-section-text {
        padding-top: 80px;
    }
}

/*--------------------------------------------------------------
4. wpo-footer
--------------------------------------------------------------*/
.wpo-site-footer {
    background: #29395b;
    position: relative;
    font-size: 15px;
    overflow: hidden;
}

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

.wpo-site-footer p {
    color: #e7e7e7;
}

.wpo-site-footer .wpo-lower-footer p {
    margin-bottom: 0;
}
.wpo-site-footer .wpo-lower-footer a {
  color: #fff;
}
.wpo-site-footer li {
    color: #e7e7e7;
}

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

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

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

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

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

@media (max-width: 767px) {
    .wpo-site-footer .wpo-upper-footer .col {
        min-height: auto;
        margin-bottom: 60px;
    }
}

.wpo-site-footer .widget-title {
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .wpo-site-footer .widget-title {
        margin-bottom: 20px;
    }
}

.wpo-site-footer .widget-title h3 {
    font-size: 22px;
    color: #fff;
    margin: 0;
    position: relative;
    font-family: "Roboto Slab", serif;
}

@media (max-width: 991px) {
    .wpo-site-footer .widget-title h3 {
        font-size: 20px;
        font-size: 1.25rem;
    }
}

.wpo-site-footer .about-widget .logo {
    max-width: 180px;
}

.wpo-site-footer .about-widget p {
    margin-bottom: 0.8em;
    line-height: 1.9em;
    color: #e7e7e7;
}

.wpo-site-footer .about-widget p:last-child {
    margin-bottom: 0;
}

.wpo-site-footer .about-widget ul {
    overflow: hidden;
    padding-top: 10px;
}

.wpo-site-footer .about-widget ul li {
    font-size: 22px;
    float: left;
}

.wpo-site-footer .about-widget ul li a {
    color: #e7e7e7;
    width: 36px;
    height: 36px;
    line-height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: block;
    text-align: center;
    border-radius: 50%;
    font-size: 18px;
}

.wpo-site-footer .about-widget ul li a:hover {
    color: #212158;
    background: #fff;
}

.wpo-site-footer .about-widget ul li+li {
    margin-left: 20px;
}

.wpo-site-footer .wpo-service-link-widget {
    padding-left: 40px;
    padding-right: 40px;
}

@media (max-width: 1200px) {
    .wpo-site-footer .wpo-service-link-widget {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (max-width: 991px) {
    .wpo-site-footer .wpo-service-link-widget {
        padding-left: 0;
    }
}

.wpo-site-footer .link-widget {
    overflow: hidden;
    padding-left: 50px;
}

@media (max-width: 991px) {
    .wpo-site-footer .link-widget {
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .wpo-site-footer .link-widget {
        max-width: 350px;
    }
}

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

.wpo-site-footer .link-widget ul li a {
    color: #e7e7e7;
    font-size: 17px;
}

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

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

.wpo-site-footer .contact-ft {
    margin-top: 20px;
}

.wpo-site-footer .contact-ft ul li {
    padding-bottom: 15px;
    position: relative;
    padding-left: 35px;
    color: #e5e3e3;
    font-size: 17px;
}

.wpo-site-footer .contact-ft ul li i {
    position: absolute;
    left: 0;
    top: 0;
}

.wpo-site-footer .contact-ft ul li .fi:before {
    font-size: 20px;
    margin-right: 15px;
}

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

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

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

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

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

.wpo-site-footer .instagram ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0px -3px;
}

.wpo-site-footer .instagram ul li {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    margin-bottom: 5px;
    padding: 0px 3px;
}

.wpo-site-footer .instagram ul li img {
    width: 100%;
}

.sticky-header {
    width: 100%;
    position: fixed;
    left: 0;
    top: -200px;
    z-index: 9999;
    opacity: 0;
    transition: all 0.7s;
}

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

/* 3.2 wpo-features-section */


.wpo-features-section .wpo-features-item,
.wpo-features-section-s2 .wpo-features-item,
.wpo-features-section-s3 .wpo-features-item,
.wpo-features-section-s4 .wpo-features-item,
.wpo-features-section-s6 .wpo-features-item {
    text-align: center;
    padding: 40px;
    box-shadow: 0px 1px 15px 0px rgba(62, 65, 159, 0.2);
    padding-top: 0;
    border-radius: 153.5px 153.5px 15px 15px;
    max-width: 310px;
    margin: 0 auto;
    margin-bottom: 70px;
}

@media (max-width: 1400px) {

    .wpo-features-section .wpo-features-item,
    .wpo-features-section-s2 .wpo-features-item,
    .wpo-features-section-s3 .wpo-features-item,
    .wpo-features-section-s4 .wpo-features-item,
    .wpo-features-section-s6 .wpo-features-item {
        padding: 30px;
    }
}

@media (max-width: 767px) {

    .wpo-features-section .wpo-features-item,
    .wpo-features-section-s2 .wpo-features-item,
    .wpo-features-section-s3 .wpo-features-item,
    .wpo-features-section-s4 .wpo-features-item,
    .wpo-features-section-s6 .wpo-features-item {
        padding: 20px;
    }
}

.wpo-features-section .wpo-features-item .wpo-features-icon,
.wpo-features-section-s2 .wpo-features-item .wpo-features-icon,
.wpo-features-section-s3 .wpo-features-item .wpo-features-icon,
.wpo-features-section-s4 .wpo-features-item .wpo-features-icon,
.wpo-features-section-s6 .wpo-features-item .wpo-features-icon {
    width: 150px;
    height: 150px;
    background: #caf7f2;
    line-height: 150px;
    text-align: center;
    margin: 0 auto;
    border-radius: 50%;
    position: relative;
    top: -75px;
}
.wpo-features-section-s5 .wpo-features-icon img {
    max-width: 50px;
}
.wpo-features-section-s5 .wpo-features-icon .icon  {
    border-radius: 50px;
    border: 1px solid #41b2a5;
    width: 75px;
    height: 75px;
    text-align: center;
    line-height: 70px;
}
.wpo-features-section .wpo-features-item .wpo-features-icon i:before,
.wpo-features-section-s2 .wpo-features-item .wpo-features-icon i:before,
.wpo-features-section-s3 .wpo-features-item .wpo-features-icon i:before,
.wpo-features-section-s4 .wpo-features-item .wpo-features-icon i:before,
.wpo-features-section-s6 .wpo-features-item .wpo-features-icon i:before {
    font-size: 60px;
    color: #5dc4b8;
}
.wpo-features-section-s4 .wpo-features-item .wpo-features-icon i:before {
    color: #26877c;
}
.wpo-features-section .wpo-features-item .wpo-features-text,
.wpo-features-section-s2 .wpo-features-item .wpo-features-text,
.wpo-features-section-s3 .wpo-features-item .wpo-features-text,
.wpo-features-section-s4 .wpo-features-item .wpo-features-text,
.wpo-features-section-s6 .wpo-features-item .wpo-features-text {
    margin-top: -30px;
}

@media (max-width: 767px) {

    .wpo-features-section .wpo-features-item .wpo-features-text,
    .wpo-features-section-s2 .wpo-features-item .wpo-features-text,
    .wpo-features-section-s3 .wpo-features-item .wpo-features-text,
    .wpo-features-section-s4 .wpo-features-item .wpo-features-text,
    .wpo-features-section-s6 .wpo-features-item .wpo-features-text {
        margin-top: -60px;
    }
}

.wpo-features-section .wpo-features-item .wpo-features-text h2,
.wpo-features-section-s2 .wpo-features-item .wpo-features-text h2,
.wpo-features-section-s3 .wpo-features-item .wpo-features-text h2,
.wpo-features-section-s4 .wpo-features-item .wpo-features-text h2,
.wpo-features-section-s6 .wpo-features-item .wpo-features-text h2 {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 20px;
    margin-top: 0;
}

@media (max-width: 767px) {

    .wpo-features-section .wpo-features-item .wpo-features-text h2,
    .wpo-features-section-s2 .wpo-features-item .wpo-features-text h2,
    .wpo-features-section-s3 .wpo-features-item .wpo-features-text h2,
    .wpo-features-section-s4 .wpo-features-item .wpo-features-text h2,
    .wpo-features-section-s6 .wpo-features-item .wpo-features-text h2 {
        font-size: 20px;
    }
}

.wpo-features-section .wpo-features-item .wpo-features-text h2 a,
.wpo-features-section-s2 .wpo-features-item .wpo-features-text h2 a,
.wpo-features-section-s3 .wpo-features-item .wpo-features-text h2 a,
.wpo-features-section-s4 .wpo-features-item .wpo-features-text h2 a,
.wpo-features-section-s6 .wpo-features-item .wpo-features-text h2 a {
    color: #212158;
}

.wpo-features-section .wpo-features-item .wpo-features-text h2 a:hover,
.wpo-features-section-s2 .wpo-features-item .wpo-features-text h2 a:hover,
.wpo-features-section-s3 .wpo-features-item .wpo-features-text h2 a:hover,
.wpo-features-section-s4 .wpo-features-item .wpo-features-text h2 a:hover,
.wpo-features-section-s6 .wpo-features-item .wpo-features-text h2 a:hover {
    color: #ef5f34;
}

.wpo-features-section .wpo-features-item .wpo-features-text p,
.wpo-features-section-s2 .wpo-features-item .wpo-features-text p,
.wpo-features-section-s3 .wpo-features-item .wpo-features-text p,
.wpo-features-section-s4 .wpo-features-item .wpo-features-text p,
.wpo-features-section-s6 .wpo-features-item .wpo-features-text p {
    margin-bottom: 0;
    font-size: 17px;
    margin-bottom: 22px;
}

.wpo-features-section .wpo-features-item .wpo-features-text a.read,
.wpo-features-section-s2 .wpo-features-item .wpo-features-text a.read,
.wpo-features-section-s3 .wpo-features-item .wpo-features-text a.read,
.wpo-features-section-s4 .wpo-features-item .wpo-features-text a.read,
.wpo-features-section-s6 .wpo-features-item .wpo-features-text a.read {
    font-size: 18px;
    color: #212158;
    font-family: "Roboto Slab", serif;
}

.wpo-features-section .wpo-features-item .wpo-features-text a.read:hover,
.wpo-features-section-s2 .wpo-features-item .wpo-features-text a.read:hover,
.wpo-features-section-s3 .wpo-features-item .wpo-features-text a.read:hover,
.wpo-features-section-s4 .wpo-features-item .wpo-features-text a.read:hover,
.wpo-features-section-s6 .wpo-features-item .wpo-features-text a.read:hover {
    color: #ef5f34;
}

.wpo-features-section .col:nth-child(2) .wpo-features-item .wpo-features-icon,
.wpo-features-section-s2 .col:nth-child(2) .wpo-features-item .wpo-features-icon,
.wpo-features-section-s3 .col:nth-child(2) .wpo-features-item .wpo-features-icon,
.wpo-features-section-s4 .col:nth-child(2) .wpo-features-item .wpo-features-icon,
.wpo-features-section-s6 .col:nth-child(2) .wpo-features-item .wpo-features-icon {
    background: #fde4dd;
}

.wpo-features-section .col:nth-child(2) .wpo-features-item .wpo-features-icon i:before,
.wpo-features-section-s2 .col:nth-child(2) .wpo-features-item .wpo-features-icon i:before,
.wpo-features-section-s3 .col:nth-child(2) .wpo-features-item .wpo-features-icon i:before,
.wpo-features-section-s6 .col:nth-child(2) .wpo-features-item .wpo-features-icon i:before {
    color: #ef5f34;
}

.wpo-features-section .col:nth-child(3) .wpo-features-item .wpo-features-icon,
.wpo-features-section-s2 .col:nth-child(3) .wpo-features-item .wpo-features-icon,
.wpo-features-section-s3 .col:nth-child(3) .wpo-features-item .wpo-features-icon,
.wpo-features-section-s4 .col:nth-child(3) .wpo-features-item .wpo-features-icon,
.wpo-features-section-s6 .col:nth-child(3) .wpo-features-item .wpo-features-icon {
    background: #d2ecf4;
}

.wpo-features-section .col:nth-child(3) .wpo-features-item .wpo-features-icon .fi,
.wpo-features-section-s2 .col:nth-child(3) .wpo-features-item .wpo-features-icon .fi,
.wpo-features-section-s3 .col:nth-child(3) .wpo-features-item .wpo-features-icon .fi,
.wpo-features-section-s4 .col:nth-child(3) .wpo-features-item .wpo-features-icon .fi,
.wpo-features-section-s6 .col:nth-child(3) .wpo-features-item .wpo-features-icon .fi {
    color: #2eb1dc;
}

.wpo-features-section .col:nth-child(4) .wpo-features-item .wpo-features-icon,
.wpo-features-section-s2 .col:nth-child(4) .wpo-features-item .wpo-features-icon,
.wpo-features-section-s3 .col:nth-child(4) .wpo-features-item .wpo-features-icon,
.wpo-features-section-s4 .col:nth-child(4) .wpo-features-item .wpo-features-icon,
.wpo-features-section-s6 .col:nth-child(4) .wpo-features-item .wpo-features-icon {
    background: #fdf3e0;
}

.wpo-features-section .col:nth-child(4) .wpo-features-item .wpo-features-icon .fi,
.wpo-features-section-s2 .col:nth-child(4) .wpo-features-item .wpo-features-icon .fi,
.wpo-features-section-s3 .col:nth-child(4) .wpo-features-item .wpo-features-icon .fi,
.wpo-features-section-s4 .col:nth-child(4) .wpo-features-item .wpo-features-icon .fi,
.wpo-features-section-s6 .col:nth-child(4) .wpo-features-item .wpo-features-icon .fi {
    color: #e89800;
}

/* 3.3 wpo-about-sections */
.wpo-about-section,
.wpo-about-section-s2,
.wpo-about-section-s3,
.wpo-about-section-s4,
.wpo-about-section-s5,
.wpo-about-section-s6 {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    z-index: 1;
}

.wpo-about-section:before,
.wpo-about-section-s2:before,
.wpo-about-section-s3:before,
.wpo-about-section-s4:before,
.wpo-about-section-s5:before,
.wpo-about-section-s6:before {
    position: absolute;
    left: 10px;
    top: 0;
    height: 100%;
    width: 32%;
    content: "";
    background: #fef6f3;
    z-index: -1;
}

@media (max-width: 991px) {

    .wpo-about-section:before,
    .wpo-about-section-s2:before,
    .wpo-about-section-s3:before,
    .wpo-about-section-s4:before,
    .wpo-about-section-s5:before,
    .wpo-about-section-s6:before {
        display: none;
    }
}

.wpo-about-section .wpo-about-wrap .wpo-about-img,
.wpo-about-section-s2 .wpo-about-wrap .wpo-about-img,
.wpo-about-section-s3 .wpo-about-wrap .wpo-about-img,
.wpo-about-section-s4 .wpo-about-wrap .wpo-about-img,
.wpo-about-section-s5 .wpo-about-wrap .wpo-about-img,
.wpo-about-section-s6 .wpo-about-wrap .wpo-about-img {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 505px;
    margin: 0 auto;
}

@media (max-width: 991px) {

    .wpo-about-section .wpo-about-wrap .wpo-about-img,
    .wpo-about-section-s2 .wpo-about-wrap .wpo-about-img,
    .wpo-about-section-s3 .wpo-about-wrap .wpo-about-img,
    .wpo-about-section-s4 .wpo-about-wrap .wpo-about-img,
    .wpo-about-section-s5 .wpo-about-wrap .wpo-about-img,
    .wpo-about-section-s6 .wpo-about-wrap .wpo-about-img {
        margin: 0;
        margin-bottom: 40px;
    }
}

.wpo-about-section .wpo-about-wrap .wpo-about-img:before,
.wpo-about-section-s2 .wpo-about-wrap .wpo-about-img:before,
.wpo-about-section-s3 .wpo-about-wrap .wpo-about-img:before,
.wpo-about-section-s4 .wpo-about-wrap .wpo-about-img:before,
.wpo-about-section-s5 .wpo-about-wrap .wpo-about-img:before,
.wpo-about-section-s6 .wpo-about-wrap .wpo-about-img:before {
    position: absolute;
    left: 2%;
    top: 2%;
    content: "";
    width: 96%;
    height: 96%;
    border: 1px solid #fff;
    border-radius: 250px 250px 16.73px 16.73px;
}

.wpo-about-section .wpo-about-wrap .wpo-about-img img,
.wpo-about-section-s2 .wpo-about-wrap .wpo-about-img img,
.wpo-about-section-s3 .wpo-about-wrap .wpo-about-img img,
.wpo-about-section-s4 .wpo-about-wrap .wpo-about-img img,
.wpo-about-section-s5 .wpo-about-wrap .wpo-about-img img,
.wpo-about-section-s6 .wpo-about-wrap .wpo-about-img img {
    width: 100%;
    border-radius: 250px 250px 16.73px 16.73px;
}

.wpo-about-section .wpo-about-wrap .wpo-about-img .wpo-ab-shape-1,
.wpo-about-section-s2 .wpo-about-wrap .wpo-about-img .wpo-ab-shape-1,
.wpo-about-section-s3 .wpo-about-wrap .wpo-about-img .wpo-ab-shape-1,
.wpo-about-section-s4 .wpo-about-wrap .wpo-about-img .wpo-ab-shape-1,
.wpo-about-section-s5 .wpo-about-wrap .wpo-about-img .wpo-ab-shape-1,
.wpo-about-section-s6 .wpo-about-wrap .wpo-about-img .wpo-ab-shape-1 {
    position: absolute;
    left: -30px;
    top: 0px;
    z-index: 1;
}

@media (max-width: 600px) {

    .wpo-about-section .wpo-about-wrap .wpo-about-img .wpo-ab-shape-1,
    .wpo-about-section-s2 .wpo-about-wrap .wpo-about-img .wpo-ab-shape-1,
    .wpo-about-section-s3 .wpo-about-wrap .wpo-about-img .wpo-ab-shape-1,
    .wpo-about-section-s4 .wpo-about-wrap .wpo-about-img .wpo-ab-shape-1,
    .wpo-about-section-s5 .wpo-about-wrap .wpo-about-img .wpo-ab-shape-1,
    .wpo-about-section-s6 .wpo-about-wrap .wpo-about-img .wpo-ab-shape-1 {
        left: 0;
    }
}

.wpo-about-section .wpo-about-wrap .wpo-about-img .wpo-ab-shape-1 .s-s1,
.wpo-about-section .wpo-about-wrap .wpo-about-img .wpo-ab-shape-1 .s-s2,
.wpo-about-section-s2 .wpo-about-wrap .wpo-about-img .wpo-ab-shape-1 .s-s1,
.wpo-about-section-s2 .wpo-about-wrap .wpo-about-img .wpo-ab-shape-1 .s-s2,
.wpo-about-section-s3 .wpo-about-wrap .wpo-about-img .wpo-ab-shape-1 .s-s1,
.wpo-about-section-s3 .wpo-about-wrap .wpo-about-img .wpo-ab-shape-1 .s-s2,
.wpo-about-section-s4 .wpo-about-wrap .wpo-about-img .wpo-ab-shape-1 .s-s1,
.wpo-about-section-s4 .wpo-about-wrap .wpo-about-img .wpo-ab-shape-1 .s-s2,
.wpo-about-section-s5 .wpo-about-wrap .wpo-about-img .wpo-ab-shape-1 .s-s1,
.wpo-about-section-s5 .wpo-about-wrap .wpo-about-img .wpo-ab-shape-1 .s-s2,
.wpo-about-section-s6 .wpo-about-wrap .wpo-about-img .wpo-ab-shape-1 .s-s1,
.wpo-about-section-s6 .wpo-about-wrap .wpo-about-img .wpo-ab-shape-1 .s-s2 {
    width: 58px;
    height: 58px;
    background: linear-gradient(to left, #41b2a5, #5dc4b8);
    -webkit-animation: rotate3d 4s linear infinite;
    animation: rotate3d 4s linear infinite;
}

.wpo-about-section .wpo-about-wrap .wpo-about-img .wpo-ab-shape-1 .s-s2,
.wpo-about-section-s2 .wpo-about-wrap .wpo-about-img .wpo-ab-shape-1 .s-s2,
.wpo-about-section-s3 .wpo-about-wrap .wpo-about-img .wpo-ab-shape-1 .s-s2,
.wpo-about-section-s4 .wpo-about-wrap .wpo-about-img .wpo-ab-shape-1 .s-s2,
.wpo-about-section-s5 .wpo-about-wrap .wpo-about-img .wpo-ab-shape-1 .s-s2,
.wpo-about-section-s6 .wpo-about-wrap .wpo-about-img .wpo-ab-shape-1 .s-s2 {
    background: linear-gradient(to left, #e34212, #ef5f34);
    position: relative;
    left: 58px;
    -webkit-animation: rotate3dd 4s linear infinite;
    animation: rotate3dd 4s linear infinite;
}

.wpo-about-section .wpo-about-wrap .wpo-about-img .wpo-ab-shape-2,
.wpo-about-section-s2 .wpo-about-wrap .wpo-about-img .wpo-ab-shape-2,
.wpo-about-section-s3 .wpo-about-wrap .wpo-about-img .wpo-ab-shape-2,
.wpo-about-section-s4 .wpo-about-wrap .wpo-about-img .wpo-ab-shape-2,
.wpo-about-section-s5 .wpo-about-wrap .wpo-about-img .wpo-ab-shape-2,
.wpo-about-section-s6 .wpo-about-wrap .wpo-about-img .wpo-ab-shape-2 {
    position: absolute;
    right: -35px;
    top: 0px;
    z-index: -1;
    -webkit-animation: bounceTop 3s linear infinite;
    animation: bounceTop 3s linear infinite;
}

@media (max-width: 600px) {

    .wpo-about-section .wpo-about-wrap .wpo-about-img .wpo-ab-shape-2,
    .wpo-about-section-s2 .wpo-about-wrap .wpo-about-img .wpo-ab-shape-2,
    .wpo-about-section-s3 .wpo-about-wrap .wpo-about-img .wpo-ab-shape-2,
    .wpo-about-section-s4 .wpo-about-wrap .wpo-about-img .wpo-ab-shape-2,
    .wpo-about-section-s5 .wpo-about-wrap .wpo-about-img .wpo-ab-shape-2,
    .wpo-about-section-s6 .wpo-about-wrap .wpo-about-img .wpo-ab-shape-2 {
        right: 0;
    }
}

.wpo-about-section .wpo-about-wrap .wpo-about-img .wpo-total-raised,
.wpo-about-section-s2 .wpo-about-wrap .wpo-about-img .wpo-total-raised,
.wpo-about-section-s3 .wpo-about-wrap .wpo-about-img .wpo-total-raised,
.wpo-about-section-s4 .wpo-about-wrap .wpo-about-img .wpo-total-raised,
.wpo-about-section-s5 .wpo-about-wrap .wpo-about-img .wpo-total-raised,
.wpo-about-section-s6 .wpo-about-wrap .wpo-about-img .wpo-total-raised {
    padding: 15px 20px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 30px;
    box-shadow: 0px 1px 15px 0px rgba(62, 65, 159, 0.15);
    max-width: 350px;
    position: absolute;
    left: -125px;
    bottom: 0;
    width: 350px;
}

@media (max-width: 1500px) {

    .wpo-about-section .wpo-about-wrap .wpo-about-img .wpo-total-raised,
    .wpo-about-section-s2 .wpo-about-wrap .wpo-about-img .wpo-total-raised,
    .wpo-about-section-s3 .wpo-about-wrap .wpo-about-img .wpo-total-raised,
    .wpo-about-section-s4 .wpo-about-wrap .wpo-about-img .wpo-total-raised,
    .wpo-about-section-s5 .wpo-about-wrap .wpo-about-img .wpo-total-raised,
    .wpo-about-section-s6 .wpo-about-wrap .wpo-about-img .wpo-total-raised {
        left: -100px;
    }
}

@media (max-width: 1300px) {

    .wpo-about-section .wpo-about-wrap .wpo-about-img .wpo-total-raised,
    .wpo-about-section-s2 .wpo-about-wrap .wpo-about-img .wpo-total-raised,
    .wpo-about-section-s3 .wpo-about-wrap .wpo-about-img .wpo-total-raised,
    .wpo-about-section-s4 .wpo-about-wrap .wpo-about-img .wpo-total-raised,
    .wpo-about-section-s5 .wpo-about-wrap .wpo-about-img .wpo-total-raised,
    .wpo-about-section-s6 .wpo-about-wrap .wpo-about-img .wpo-total-raised {
        left: -30px;
    }
}

@media (max-width: 600px) {

    .wpo-about-section .wpo-about-wrap .wpo-about-img .wpo-total-raised,
    .wpo-about-section-s2 .wpo-about-wrap .wpo-about-img .wpo-total-raised,
    .wpo-about-section-s3 .wpo-about-wrap .wpo-about-img .wpo-total-raised,
    .wpo-about-section-s4 .wpo-about-wrap .wpo-about-img .wpo-total-raised,
    .wpo-about-section-s5 .wpo-about-wrap .wpo-about-img .wpo-total-raised,
    .wpo-about-section-s6 .wpo-about-wrap .wpo-about-img .wpo-total-raised {
        width: 300px;
        left: -10px;
    }
}

.wpo-about-section .wpo-about-wrap .wpo-about-img .wpo-total-raised .project-shape,
.wpo-about-section-s2 .wpo-about-wrap .wpo-about-img .wpo-total-raised .project-shape,
.wpo-about-section-s3 .wpo-about-wrap .wpo-about-img .wpo-total-raised .project-shape,
.wpo-about-section-s4 .wpo-about-wrap .wpo-about-img .wpo-total-raised .project-shape,
.wpo-about-section-s5 .wpo-about-wrap .wpo-about-img .wpo-total-raised .project-shape,
.wpo-about-section-s6 .wpo-about-wrap .wpo-about-img .wpo-total-raised .project-shape {
    position: absolute;
    right: -140px;
    top: -60px;
    z-index: -1;
}

.wpo-about-section .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap,
.wpo-about-section-s2 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap,
.wpo-about-section-s3 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap,
.wpo-about-section-s4 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap,
.wpo-about-section-s5 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap,
.wpo-about-section-s6 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap {
    display: flex;
    align-items: center;
}

.wpo-about-section .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-icon,
.wpo-about-section-s2 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-icon,
.wpo-about-section-s3 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-icon,
.wpo-about-section-s4 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-icon,
.wpo-about-section-s5 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-icon,
.wpo-about-section-s6 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: #f7e9e5;
    border-radius: 50%;
    text-align: center;
    margin-right: 20px;
}

@media (max-width: 1400px) {

    .wpo-about-section .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-icon,
    .wpo-about-section-s2 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-icon,
    .wpo-about-section-s3 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-icon,
    .wpo-about-section-s4 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-icon,
    .wpo-about-section-s5 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-icon,
    .wpo-about-section-s6 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-icon {
        width: 40px;
        height: 40px;
        line-height: 40px;
        margin-right: 17px;
    }
}

.wpo-about-section .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-icon .fi,
.wpo-about-section-s2 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-icon .fi,
.wpo-about-section-s3 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-icon .fi,
.wpo-about-section-s4 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-icon .fi,
.wpo-about-section-s5 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-icon .fi,
.wpo-about-section-s6 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-icon .fi {
    font-size: 20px;
    color: #ef5f34;
}

@media (max-width: 1400px) {

    .wpo-about-section .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-icon .fi,
    .wpo-about-section-s2 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-icon .fi,
    .wpo-about-section-s3 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-icon .fi,
    .wpo-about-section-s4 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-icon .fi,
    .wpo-about-section-s5 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-icon .fi,
    .wpo-about-section-s6 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-icon .fi {
        font-size: 15px;
    }
}

.wpo-about-section .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-text,
.wpo-about-section-s2 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-text,
.wpo-about-section-s3 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-text,
.wpo-about-section-s4 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-text,
.wpo-about-section-s5 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-text,
.wpo-about-section-s6 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-text {
    flex-basis: 70%;
}

.wpo-about-section .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-text h3,
.wpo-about-section-s2 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-text h3,
.wpo-about-section-s3 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-text h3,
.wpo-about-section-s4 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-text h3,
.wpo-about-section-s5 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-text h3,
.wpo-about-section-s6 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-text h3 {
    font-size: 45px;
    color: #fff;
}

@media (max-width: 1400px) {

    .wpo-about-section .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-text h3,
    .wpo-about-section-s2 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-text h3,
    .wpo-about-section-s3 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-text h3,
    .wpo-about-section-s4 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-text h3,
    .wpo-about-section-s5 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-text h3,
    .wpo-about-section-s6 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-text h3 {
        font-size: 30px;
        margin-bottom: 0;
    }
}

.wpo-about-section .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-text p,
.wpo-about-section-s2 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-text p,
.wpo-about-section-s3 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-text p,
.wpo-about-section-s4 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-text p,
.wpo-about-section-s5 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-text p,
.wpo-about-section-s6 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-text p {
    color: #fff;
    margin-bottom: 0;
}

.wpo-about-section .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-text ul,
.wpo-about-section-s2 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-text ul,
.wpo-about-section-s3 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-text ul,
.wpo-about-section-s4 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-text ul,
.wpo-about-section-s5 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-text ul,
.wpo-about-section-s6 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-text ul {
    list-style: none;
    margin-bottom: 15px;
    padding-left: 0;
}

.wpo-about-section .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-text ul li,
.wpo-about-section-s2 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-text ul li,
.wpo-about-section-s3 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-text ul li,
.wpo-about-section-s4 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-text ul li,
.wpo-about-section-s5 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-text ul li,
.wpo-about-section-s6 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-text ul li {
    font-size: 18px;
    font-weight: 700;
    font-family: "Roboto Slab", serif;
    display: flex;
    justify-content: space-between;
}

.wpo-about-section .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-text ul li span,
.wpo-about-section-s2 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-text ul li span,
.wpo-about-section-s3 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-text ul li span,
.wpo-about-section-s4 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-text ul li span,
.wpo-about-section-s5 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-text ul li span,
.wpo-about-section-s6 .wpo-about-wrap .wpo-about-img .wpo-total-raised .wpo-total-raised-wrap .wpo-total-raised-text ul li span {
    color: #5dc4b8;
}

.wpo-about-section .wpo-about-wrap .wpo-about-img .wpo-total-raised .progress,
.wpo-about-section-s2 .wpo-about-wrap .wpo-about-img .wpo-total-raised .progress,
.wpo-about-section-s3 .wpo-about-wrap .wpo-about-img .wpo-total-raised .progress,
.wpo-about-section-s4 .wpo-about-wrap .wpo-about-img .wpo-total-raised .progress,
.wpo-about-section-s5 .wpo-about-wrap .wpo-about-img .wpo-total-raised .progress,
.wpo-about-section-s6 .wpo-about-wrap .wpo-about-img .wpo-total-raised .progress {
    height: 8px;
    overflow: unset;
    background-color: #f9ded6;
}

.wpo-about-section .wpo-about-wrap .wpo-about-img .wpo-total-raised .progress .progress-bar,
.wpo-about-section-s2 .wpo-about-wrap .wpo-about-img .wpo-total-raised .progress .progress-bar,
.wpo-about-section-s3 .wpo-about-wrap .wpo-about-img .wpo-total-raised .progress .progress-bar,
.wpo-about-section-s4 .wpo-about-wrap .wpo-about-img .wpo-total-raised .progress .progress-bar,
.wpo-about-section-s5 .wpo-about-wrap .wpo-about-img .wpo-total-raised .progress .progress-bar,
.wpo-about-section-s6 .wpo-about-wrap .wpo-about-img .wpo-total-raised .progress .progress-bar {
    border-radius: 15px;
    box-shadow: none;
    position: relative;
    -webkit-animation: animate-positive 4s;
    animation: animate-positive 4s;
    width: 65%;
    background: #ef5f34;
    height: 8px;
}

.wpo-about-section .wpo-about-text,
.wpo-about-section-s2 .wpo-about-text,
.wpo-about-section-s3 .wpo-about-text,
.wpo-about-section-s4 .wpo-about-text,
.wpo-about-section-s5 .wpo-about-text,
.wpo-about-section-s6 .wpo-about-text {
    max-width: 595px;
}

.wpo-about-section .wpo-about-text h2,
.wpo-about-section-s2 .wpo-about-text h2,
.wpo-about-section-s3 .wpo-about-text h2,
.wpo-about-section-s4 .wpo-about-text h2,
.wpo-about-section-s5 .wpo-about-text h2,
.wpo-about-section-s6 .wpo-about-text h2 {
    font-size: 40px;
    font-family: "Roboto Slab", serif;
    margin-bottom: 20px;
    line-height: 65px;
    font-weight: 500;
}

@media (max-width: 1200px) {

    .wpo-about-section .wpo-about-text h2,
    .wpo-about-section-s2 .wpo-about-text h2,
    .wpo-about-section-s3 .wpo-about-text h2,
    .wpo-about-section-s4 .wpo-about-text h2,
    .wpo-about-section-s5 .wpo-about-text h2,
    .wpo-about-section-s6 .wpo-about-text h2 {
        font-size: 34px;
        line-height: 50px;
    }
}

@media (max-width: 600px) {

    .wpo-about-section .wpo-about-text h2,
    .wpo-about-section-s2 .wpo-about-text h2,
    .wpo-about-section-s3 .wpo-about-text h2,
    .wpo-about-section-s4 .wpo-about-text h2,
    .wpo-about-section-s5 .wpo-about-text h2,
    .wpo-about-section-s6 .wpo-about-text h2 {
        font-size: 30px;
    }
}

.wpo-about-section .wpo-about-text span,
.wpo-about-section-s2 .wpo-about-text span,
.wpo-about-section-s3 .wpo-about-text span,
.wpo-about-section-s4 .wpo-about-text span,
.wpo-about-section-s5 .wpo-about-text span,
.wpo-about-section-s6 .wpo-about-text span {
    color: #ef5f34;
    font-size: 18px;
    font-family: "Roboto Slab", serif;
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.wpo-about-section .wpo-about-text p,
.wpo-about-section-s2 .wpo-about-text p,
.wpo-about-section-s3 .wpo-about-text p,
.wpo-about-section-s4 .wpo-about-text p,
.wpo-about-section-s5 .wpo-about-text p,
.wpo-about-section-s6 .wpo-about-text p {
    margin-bottom: 20px;
}

.wpo-about-section .wpo-about-text ul,
.wpo-about-section-s2 .wpo-about-text ul,
.wpo-about-section-s3 .wpo-about-text ul,
.wpo-about-section-s4 .wpo-about-text ul,
.wpo-about-section-s5 .wpo-about-text ul,
.wpo-about-section-s6 .wpo-about-text ul {
    list-style: none;
    margin-bottom: 30px;
    padding-left: 0;
}

.wpo-about-section .wpo-about-text ul li,
.wpo-about-section-s2 .wpo-about-text ul li,
.wpo-about-section-s3 .wpo-about-text ul li,
.wpo-about-section-s4 .wpo-about-text ul li,
.wpo-about-section-s5 .wpo-about-text ul li,
.wpo-about-section-s6 .wpo-about-text ul li {
    padding: 6px 0;
    padding-left: 30px;
    position: relative;
}

.wpo-about-section .wpo-about-text ul li:before,
.wpo-about-section-s2 .wpo-about-text ul li:before,
.wpo-about-section-s3 .wpo-about-text ul li:before,
.wpo-about-section-s4 .wpo-about-text ul li:before,
.wpo-about-section-s5 .wpo-about-text ul li:before,
.wpo-about-section-s6 .wpo-about-text ul li:before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    font-family: "Flaticon";
    color: #ef5f34;
}

@media (max-width: 991px) {
    .wpo-about-section {
        padding-bottom: 0;
    }
}

@media (max-width: 767px) {
    .wpo-about-section {
       padding-top: 0;
    }
}

/*=================================================
3.4 wpo-campaign-area
===================================================*/

.wpo-campaign-area .progress-section,
.wpo-campaign-area-s2 .progress-section,
.wpo-campaign-area-s3 .progress-section,
.wpo-campaign-area-s4 .progress-section {
    padding-top: 20px;
}

.wpo-campaign-area .progress,
.wpo-campaign-area-s2 .progress,
.wpo-campaign-area-s3 .progress,
.wpo-campaign-area-s4 .progress {
    height: 8px;
    overflow: unset;
    background-color: #ffdcd1;
    margin-bottom: 15px;
}

.wpo-campaign-area .progress .progress-bar,
.wpo-campaign-area-s2 .progress .progress-bar,
.wpo-campaign-area-s3 .progress .progress-bar,
.wpo-campaign-area-s4 .progress .progress-bar {
    border-radius: 15px;
    box-shadow: none;
    position: relative;
    -webkit-animation: animate-positive 4s;
    animation: animate-positive 4s;
    background: #ef5f34;
    height: 8px;
}

.wpo-campaign-area .progress-bar,
.wpo-campaign-area-s2 .progress-bar,
.wpo-campaign-area-s3 .progress-bar,
.wpo-campaign-area-s4 .progress-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #F26522;
    transition: width 0.6s ease;
    overflow: unset;
}

.wpo-campaign-area .progress .progress-value,
.wpo-campaign-area-s2 .progress .progress-value,
.wpo-campaign-area-s3 .progress .progress-value,
.wpo-campaign-area-s4 .progress .progress-value {
    text-align: center;
    left: 90%;
    position: absolute;
    color: #212158;
    font-weight: 700;
    font-size: 14px;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.45);
    top: -30px;
    line-height: 20px;
}

.wpo-campaign-area .wpo-campaign-content h2,
.wpo-campaign-area-s2 .wpo-campaign-content h2,
.wpo-campaign-area-s3 .wpo-campaign-content h2,
.wpo-campaign-area-s4 .wpo-campaign-content h2 {
    font-size: 25px;
    line-height: 35px;
    margin-top: 0;
    font-weight: 600;
    margin-bottom: 15px;
}

.wpo-campaign-area .wpo-campaign-content h2 a,
.wpo-campaign-area-s2 .wpo-campaign-content h2 a,
.wpo-campaign-area-s3 .wpo-campaign-content h2 a,
.wpo-campaign-area-s4 .wpo-campaign-content h2 a {
    color: #212158;
}

.wpo-campaign-area .wpo-campaign-content h2 a:hover,
.wpo-campaign-area-s2 .wpo-campaign-content h2 a:hover,
.wpo-campaign-area-s3 .wpo-campaign-content h2 a:hover,
.wpo-campaign-area-s4 .wpo-campaign-content h2 a:hover {
    color: #ef5f34;
}

.wpo-campaign-area .wpo-campaign-item,
.wpo-campaign-area-s2 .wpo-campaign-item,
.wpo-campaign-area-s3 .wpo-campaign-item,
.wpo-campaign-area-s4 .wpo-campaign-item {
    padding: 15px;
    box-shadow: 0px 1px 15px 0px rgba(62, 65, 159, 0.15);
    border-radius: 15px;
    background: #fff;
}

.wpo-campaign-area .wpo-campaign-item .wpo-campaign-img,
.wpo-campaign-area-s2 .wpo-campaign-item .wpo-campaign-img,
.wpo-campaign-area-s3 .wpo-campaign-item .wpo-campaign-img,
.wpo-campaign-area-s4 .wpo-campaign-item .wpo-campaign-img {
    position: relative;
}

.wpo-campaign-area .wpo-campaign-item .wpo-campaign-img .thumb,
.wpo-campaign-area .wpo-campaign-item .wpo-campaign-img .thumb-2,
.wpo-campaign-area-s2 .wpo-campaign-item .wpo-campaign-img .thumb,
.wpo-campaign-area-s2 .wpo-campaign-item .wpo-campaign-img .thumb-2,
.wpo-campaign-area-s3 .wpo-campaign-item .wpo-campaign-img .thumb,
.wpo-campaign-area-s3 .wpo-campaign-item .wpo-campaign-img .thumb-2,
.wpo-campaign-area-s4 .wpo-campaign-item .wpo-campaign-img .thumb,
.wpo-campaign-area-s4 .wpo-campaign-item .wpo-campaign-img .thumb-2 {
    position: absolute;
    left: 20px;
    top: 20px;
    background: linear-gradient(to left, #ef5f34, #e34212);
    padding: 4px 20px;
    border-radius: 4px;
    color: #fff;
}

.wpo-campaign-area .wpo-campaign-item .wpo-campaign-img .thumb-2,
.wpo-campaign-area-s2 .wpo-campaign-item .wpo-campaign-img .thumb-2,
.wpo-campaign-area-s3 .wpo-campaign-item .wpo-campaign-img .thumb-2,
.wpo-campaign-area-s4 .wpo-campaign-item .wpo-campaign-img .thumb-2 {
    background: linear-gradient(to left, #5dc4b8, #41b2a5);
}

.wpo-campaign-area .wpo-campaign-item .wpo-campaign-img img,
.wpo-campaign-area-s2 .wpo-campaign-item .wpo-campaign-img img,
.wpo-campaign-area-s3 .wpo-campaign-item .wpo-campaign-img img,
.wpo-campaign-area-s4 .wpo-campaign-item .wpo-campaign-img img {
    border-radius: 15px;
}

.wpo-campaign-area .wpo-campaign-text-top,
.wpo-campaign-area-s2 .wpo-campaign-text-top,
.wpo-campaign-area-s3 .wpo-campaign-text-top,
.wpo-campaign-area-s4 .wpo-campaign-text-top {
    padding: 15px;
    padding-top: 22px;
}

@media (max-width: 1400px) {

    .wpo-campaign-area .wpo-campaign-text-top,
    .wpo-campaign-area-s2 .wpo-campaign-text-top,
    .wpo-campaign-area-s3 .wpo-campaign-text-top,
    .wpo-campaign-area-s4 .wpo-campaign-text-top {
        padding: 15px 0;
    }
}

.wpo-campaign-area .wpo-campaign-content ul,
.wpo-campaign-area-s2 .wpo-campaign-content ul,
.wpo-campaign-area-s3 .wpo-campaign-content ul,
.wpo-campaign-area-s4 .wpo-campaign-content ul {
    list-style: none;
}

.wpo-campaign-area .wpo-campaign-text-top ul,
.wpo-campaign-area-s2 .wpo-campaign-text-top ul,
.wpo-campaign-area-s3 .wpo-campaign-text-top ul,
.wpo-campaign-area-s4 .wpo-campaign-text-top ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    padding-left: 0;
}

.wpo-campaign-area .wpo-campaign-text-top ul li,
.wpo-campaign-area-s2 .wpo-campaign-text-top ul li,
.wpo-campaign-area-s3 .wpo-campaign-text-top ul li,
.wpo-campaign-area-s4 .wpo-campaign-text-top ul li {
    font-size: 14px;
    color: #212158;
    display: flex;
    align-items: center;
}

.wpo-campaign-area .wpo-campaign-text-top ul li span,
.wpo-campaign-area-s2 .wpo-campaign-text-top ul li span,
.wpo-campaign-area-s3 .wpo-campaign-text-top ul li span,
.wpo-campaign-area-s4 .wpo-campaign-text-top ul li span {
    font-weight: 700;
}

.wpo-campaign-area .wpo-campaign-text-top ul li:first-child span.user-img {
    max-width: 45px;
}
.wpo-campaign-area .wpo-campaign-text-top ul li:first-child span + span {
    padding-left: 10px;
}
.wpo-campaign-area .wpo-campaign-text-top ul li span a,
.wpo-campaign-area-s2 .wpo-campaign-text-top ul li span a,
.wpo-campaign-area-s3 .wpo-campaign-text-top ul li span a,
.wpo-campaign-area-s4 .wpo-campaign-text-top ul li span a {
    color: #212158;
}

.wpo-campaign-area .wpo-campaign-text-top ul li span a:hover,
.wpo-campaign-area-s2 .wpo-campaign-text-top ul li span a:hover,
.wpo-campaign-area-s3 .wpo-campaign-text-top ul li span a:hover,
.wpo-campaign-area-s4 .wpo-campaign-text-top ul li span a:hover {
    color: #ef5f34;
}

.wpo-campaign-area .campaign-btn ul,
.wpo-campaign-area-s2 .campaign-btn ul,
.wpo-campaign-area-s3 .campaign-btn ul,
.wpo-campaign-area-s4 .campaign-btn ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 30px;
    border-top: 1px solid #ebebeb;
    padding-left: 0;
}

.wpo-campaign-area .campaign-btn ul li span img,
.wpo-campaign-area-s2 .campaign-btn ul li span img,
.wpo-campaign-area-s3 .campaign-btn ul li span img,
.wpo-campaign-area-s4 .campaign-btn ul li span img {
    border-radius: 50%;
    margin-right: 10px;
}

.wpo-campaign-area .campaign-btn ul li a.e-btn,
.wpo-campaign-area-s2 .campaign-btn ul li a.e-btn,
.wpo-campaign-area-s3 .campaign-btn ul li a.e-btn,
.wpo-campaign-area-s4 .campaign-btn ul li a.e-btn {
    display: block;
    text-align: center;
    height: 50px;
    line-height: 50px;
    color: #333333;
    font-weight: 500;
    width: 150px;
    border-radius: 40px;
    margin-left: auto;
    border: 1px solid #5dc4b8;
    color: #212158;
    font-weight: 700;
}

.wpo-campaign-area .campaign-btn ul li a.e-btn:hover,
.wpo-campaign-area-s2 .campaign-btn ul li a.e-btn:hover,
.wpo-campaign-area-s3 .campaign-btn ul li a.e-btn:hover,
.wpo-campaign-area-s4 .campaign-btn ul li a.e-btn:hover {
    background: #5dc4b8;
    color: #fff;
}

@media (max-width: 1200px) {

    .wpo-campaign-area .campaign-btn ul li a.e-btn,
    .wpo-campaign-area-s2 .campaign-btn ul li a.e-btn,
    .wpo-campaign-area-s3 .campaign-btn ul li a.e-btn,
    .wpo-campaign-area-s4 .campaign-btn ul li a.e-btn {
        height: 40px;
        line-height: 40px;
        width: 90px;
        font-size: 12px;
    }
}

.wpo-campaign-area .wpo-campaign-img img,
.wpo-campaign-area-s2 .wpo-campaign-img img,
.wpo-campaign-area-s3 .wpo-campaign-img img,
.wpo-campaign-area-s4 .wpo-campaign-img img {
    width: 100%;
}

.wpo-campaign-area .wpo-campaign-item,
.wpo-campaign-area-s2 .wpo-campaign-item,
.wpo-campaign-area-s3 .wpo-campaign-item,
.wpo-campaign-area-s4 .wpo-campaign-item {
    margin-bottom: 30px;
}

@media (max-width: 1200px) {

    .wpo-campaign-area .wpo-campaign-area,
    .wpo-campaign-area-s2 .wpo-campaign-area,
    .wpo-campaign-area-s3 .wpo-campaign-area,
    .wpo-campaign-area-s4 .wpo-campaign-area {
        padding-bottom: 90px;
    }

    .wpo-campaign-area .wpo-campaign-content h2,
    .wpo-campaign-area-s2 .wpo-campaign-content h2,
    .wpo-campaign-area-s3 .wpo-campaign-content h2,
    .wpo-campaign-area-s4 .wpo-campaign-content h2 {
        font-size: 20px;
    }
}

.wpo-campaign-area .wpo-campaign-single,
.wpo-campaign-area-s2 .wpo-campaign-single,
.wpo-campaign-area-s3 .wpo-campaign-single,
.wpo-campaign-area-s4 .wpo-campaign-single {
    padding: 0 5px;
}

@media (max-width: 767px) {

    .wpo-campaign-area .wpo-campaign-content h2,
    .wpo-campaign-area-s2 .wpo-campaign-content h2,
    .wpo-campaign-area-s3 .wpo-campaign-content h2,
    .wpo-campaign-area-s4 .wpo-campaign-content h2 {
        font-size: 20px;
    }
}

/*=================================================
3.5 wpo-team-area
===================================================*/


.wpo-team-area .team-slider.owl-carousel .owl-stage-outer,
.wpo-team-area-s2 .team-slider.owl-carousel .owl-stage-outer {
    overflow: inherit;
}

.wpo-team-area .owl-nav,
.wpo-team-area-s2 .owl-nav {
    display: none;
}

.wpo-team-area .wpo-team-item .wpo-team-content,
.wpo-team-area-s2 .wpo-team-item .wpo-team-content {
    padding-top: 25px;
}

.wpo-team-area .wpo-team-item .wpo-team-content h2,
.wpo-team-area-s2 .wpo-team-item .wpo-team-content h2 {
    font-size: 25px;
    margin-top: 0;
    margin-bottom: 5px;
}

.wpo-team-area .wpo-team-item .wpo-team-content h2 a,
.wpo-team-area-s2 .wpo-team-item .wpo-team-content h2 a {
    color: #212158;
}

.wpo-team-area .wpo-team-item .wpo-team-content h2 a:hover,
.wpo-team-area-s2 .wpo-team-item .wpo-team-content h2 a:hover {
    color: #ef5f34;
}


/*==========================================
6. wpo-Attorney-single
===========================================*/
.attorney-info-img {
    padding: 25px;
    box-shadow: 0px 6px 20.1px 4.9px rgba(176, 191, 238, 0.12);
}

@media (max-width: 991px) {
    .attorney-info-img {
        margin-bottom: 40px;
    }
}
@media (max-width: 500px) { 
    .attorney-info-img {
        padding: 10px;
    }
}
.attorney-info-img img {
    width: 100%;
    height: 465px;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 991px) {
    .attorney-info-img img {
        height: 100%;
    }
}

.attorney-info-text h2 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin-top: 0;
    margin-bottom: 50px;
    text-align: center;
}

.attorney-info-text {
    box-shadow: 0px 6px 20.1px 4.9px rgba(176, 191, 238, 0.12);
    padding: 58px 50px;
}
@media (max-width: 500px) { 
    .attorney-info-text {
        padding: 10px 10px;
    }
}
.attorney-pg-area .attorney-info-text ul li {
    font-size: 17px;
    color: #1d2327;
    font-weight: 700;
    margin-bottom: 22px;
    list-style: none;
    line-height: 23px;
}

.attorney-pg-area .attorney-info-text ul li:last-child {
    padding-bottom: 0;
}

.attorney-pg-area .attorney-info-text ul li span {
    font-size: 16px;
    color: #8c8c8c;
    display: inline-block;
    position: relative;
    padding-left: 5px;
}

.attorney-pg-area .attorney-info-text ul li:last-child {
    margin-bottom: 0;
}

.at-progress {
    box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.1);
    padding: 40px 0;
}

@media (max-width: 991px) {
    .at-progress {
        padding-bottom: 0;
    }
}

.attorney-info-text h2 {
    font-size: 27px;
    font-weight: 700;
    color: #1d2327;
    margin-top: 0;
    margin-bottom: 25px;
    text-align: center;
    background: #eee;
    padding: 20px;
}

.attorney-info-wrap ul {
    padding-left: 0;
}

.exprience-wrap p {
    color: #5d5851;
    margin-bottom: 30px;
}

.exprience-wrap {
    padding-bottom: 40px;
}

.attorney-pg-area .wpcf7 .form-control {
    height: 55px;
    border: 1px solid #ebebeb;
    margin-bottom: 20px;
    padding: 15px;
}

.attorney-pg-area .wpcf7 ::-webkit-input-placeholder {
    font-style: 15px;
    font-style: normal;
    color: #848c9e;
}

.attorney-pg-area .wpcf7 :-moz-placeholder {
    font-style: 15px;
    font-style: normal;
    color: #848c9e;
}

.attorney-pg-area .wpcf7 ::-moz-placeholder {
    font-style: 15px;
    font-style: normal;
    color: #848c9e;
}

.attorney-pg-area .wpcf7 :-ms-input-placeholder {
    font-style: 15px;
    font-style: normal;
    color: #848c9e;
}
.attorney-pg-area .wpcf7 select {
    color: #848c9e;
}
/*=================================================
3.6 wpo-testimonial-area
===================================================*/
.wpo-testimonial-area .wpo-testimonial-wrap .wpo-testimonial-item .wpo-testimonial-img,
.wpo-testimonial-area-s2 .wpo-testimonial-wrap .wpo-testimonial-item .wpo-testimonial-img,
.wpo-testimonial-area-s3 .wpo-testimonial-wrap .wpo-testimonial-item .wpo-testimonial-img {
    margin-bottom: 25px;
    width: 150px;
    height: 150px;
}

@media (max-width: 767px) {

    .wpo-testimonial-area .wpo-testimonial-wrap .wpo-testimonial-item .wpo-testimonial-img,
    .wpo-testimonial-area-s2 .wpo-testimonial-wrap .wpo-testimonial-item .wpo-testimonial-img,
    .wpo-testimonial-area-s3 .wpo-testimonial-wrap .wpo-testimonial-item .wpo-testimonial-img {
        margin: 0 auto;
        margin-bottom: 25px;
    }
}

.wpo-testimonial-area .wpo-testimonial-wrap .wpo-testimonial-item .wpo-testimonial-img img,
.wpo-testimonial-area-s2 .wpo-testimonial-wrap .wpo-testimonial-item .wpo-testimonial-img img,
.wpo-testimonial-area-s3 .wpo-testimonial-wrap .wpo-testimonial-item .wpo-testimonial-img img {
    border-radius: 50%;
}

.wpo-testimonial-area .wpo-testimonial-wrap .wpo-testimonial-item .wpo-testimonial-content h2,
.wpo-testimonial-area-s2 .wpo-testimonial-wrap .wpo-testimonial-item .wpo-testimonial-content h2,
.wpo-testimonial-area-s3 .wpo-testimonial-wrap .wpo-testimonial-item .wpo-testimonial-content h2 {
    font-size: 25px;
    font-weight: 600;
}

.wpo-testimonial-area .wpo-testimonial-wrap .wpo-testimonial-item .wpo-testimonial-content p,
.wpo-testimonial-area-s2 .wpo-testimonial-wrap .wpo-testimonial-item .wpo-testimonial-content p,
.wpo-testimonial-area-s3 .wpo-testimonial-wrap .wpo-testimonial-item .wpo-testimonial-content p {
    font-size: 22px;
    line-height: 42px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.wpo-testimonial-area .wpo-testimonial-wrap .wpo-testimonial-item .wpo-testimonial-content p:before,
.wpo-testimonial-area-s2 .wpo-testimonial-wrap .wpo-testimonial-item .wpo-testimonial-content p:before,
.wpo-testimonial-area-s3 .wpo-testimonial-wrap .wpo-testimonial-item .wpo-testimonial-content p:before {
    position: absolute;
    left: -35px;
    top: 13px;
    content: "";
    font-family: "Flaticon";
    z-index: -1;
    font-size: 60px;
    color: #fbb59f;
}

@media (max-width: 767px) {

    .wpo-testimonial-area .wpo-testimonial-wrap .wpo-testimonial-item .wpo-testimonial-content p:before,
    .wpo-testimonial-area-s2 .wpo-testimonial-wrap .wpo-testimonial-item .wpo-testimonial-content p:before,
    .wpo-testimonial-area-s3 .wpo-testimonial-wrap .wpo-testimonial-item .wpo-testimonial-content p:before {
        left: 0;
        display: none;
    }
}

@media (max-width: 991px) {

    .wpo-testimonial-area .wpo-testimonial-wrap .wpo-testimonial-item .wpo-testimonial-content p,
    .wpo-testimonial-area-s2 .wpo-testimonial-wrap .wpo-testimonial-item .wpo-testimonial-content p,
    .wpo-testimonial-area-s3 .wpo-testimonial-wrap .wpo-testimonial-item .wpo-testimonial-content p {
        font-size: 18px;
        line-height: 34px;
    }
}

@media (max-width: 767px) {

    .wpo-testimonial-area .wpo-testimonial-wrap .wpo-testimonial-item,
    .wpo-testimonial-area-s2 .wpo-testimonial-wrap .wpo-testimonial-item,
    .wpo-testimonial-area-s3 .wpo-testimonial-wrap .wpo-testimonial-item {
        text-align: center;
    }
}

.wpo-testimonial-area .wpo-testimonial-wrap .testimonial-slider,
.wpo-testimonial-area-s2 .wpo-testimonial-wrap .testimonial-slider,
.wpo-testimonial-area-s3 .wpo-testimonial-wrap .testimonial-slider {
    padding-bottom: 130px;
}

.wpo-testimonial-area .wpo-testimonial-wrap .testimonial-slider .owl-stage-outer,
.wpo-testimonial-area-s2 .wpo-testimonial-wrap .testimonial-slider .owl-stage-outer,
.wpo-testimonial-area-s3 .wpo-testimonial-wrap .testimonial-slider .owl-stage-outer {
    padding-left: 35px;
}

@media (max-width: 767px) {

    .wpo-testimonial-area .wpo-testimonial-wrap .testimonial-slider .owl-stage-outer,
    .wpo-testimonial-area-s2 .wpo-testimonial-wrap .testimonial-slider .owl-stage-outer,
    .wpo-testimonial-area-s3 .wpo-testimonial-wrap .testimonial-slider .owl-stage-outer {
        padding-left: 0;
    }
}

@media (max-width: 991px) {

    .wpo-testimonial-area .wpo-testimonial-wrap .testimonial-slider,
    .wpo-testimonial-area-s2 .wpo-testimonial-wrap .testimonial-slider,
    .wpo-testimonial-area-s3 .wpo-testimonial-wrap .testimonial-slider {
        padding-bottom: 0px;
    }
}

.wpo-testimonial-area .wpo-testimonial-wrap .testimonial-slider button,
.wpo-testimonial-area-s2 .wpo-testimonial-wrap .testimonial-slider button,
.wpo-testimonial-area-s3 .wpo-testimonial-wrap .testimonial-slider button {
    position: absolute;
    left: 46%;
    bottom: -30px;
    transform: translateY(-50%);
    height: 50px;
    width: 50px;
    line-height: 46px;
    text-align: center;
    background: #fff;
    transition: all 0.3s;
    border: 1px solid #ebebeb;
    font-size: 20px;
    border-radius: 5px;
}

.wpo-testimonial-area .wpo-testimonial-wrap .testimonial-slider button:hover,
.wpo-testimonial-area-s2 .wpo-testimonial-wrap .testimonial-slider button:hover,
.wpo-testimonial-area-s3 .wpo-testimonial-wrap .testimonial-slider button:hover {
    background: #ef5f34;
    color: #fff;
}

@media (max-width: 1200px) {

    .wpo-testimonial-area .wpo-testimonial-wrap .testimonial-slider button,
    .wpo-testimonial-area-s2 .wpo-testimonial-wrap .testimonial-slider button,
    .wpo-testimonial-area-s3 .wpo-testimonial-wrap .testimonial-slider button {
        left: 43%;
    }
}

@media (max-width: 991px) {

    .wpo-testimonial-area .wpo-testimonial-wrap .testimonial-slider button,
    .wpo-testimonial-area-s2 .wpo-testimonial-wrap .testimonial-slider button,
    .wpo-testimonial-area-s3 .wpo-testimonial-wrap .testimonial-slider button {
        display: none;
    }
}

.wpo-testimonial-area .wpo-testimonial-wrap .testimonial-slider .owl-next,
.wpo-testimonial-area-s2 .wpo-testimonial-wrap .testimonial-slider .owl-next,
.wpo-testimonial-area-s3 .wpo-testimonial-wrap .testimonial-slider .owl-next {
    left: 51%;
    bottom: -30px;
    transform: translateY(-50%);
}

@media (max-width: 991px) {

    .wpo-testimonial-area .wpo-testimonial-wrap .testimonial-slider .owl-next,
    .wpo-testimonial-area-s2 .wpo-testimonial-wrap .testimonial-slider .owl-next,
    .wpo-testimonial-area-s3 .wpo-testimonial-wrap .testimonial-slider .owl-next {
        display: none;
    }
}

/*======================================
3.7 wpo-cta-area
=======================================*/


.wpo-cta-area .wpo-cta-section,
.wpo-cta-area-s2 .wpo-cta-section {
    padding: 100px 80px;
    background: linear-gradient(to left, rgba(239, 95, 52, 0.75), #ed4918);
    position: relative;
    z-index: 1;
    border-radius: 20px;
    padding-right: 470px;
}

@media (max-width: 1400px) {

    .wpo-cta-area .wpo-cta-section,
    .wpo-cta-area-s2 .wpo-cta-section {
        padding: 100px 60px;
        padding-right: 450px;
    }
}

@media (max-width: 991px) {

    .wpo-cta-area .wpo-cta-section,
    .wpo-cta-area-s2 .wpo-cta-section {
        padding-right: 340px;
    }
}

@media (max-width: 767px) {

    .wpo-cta-area .wpo-cta-section,
    .wpo-cta-area-s2 .wpo-cta-section {
        padding: 40px;
    }
}

@media (max-width: 440px) {

    .wpo-cta-area .wpo-cta-section,
    .wpo-cta-area-s2 .wpo-cta-section {
        padding: 35px;
    }
}

.wpo-cta-area .wpo-cta-section .volunteer-img,
.wpo-cta-area-s2 .wpo-cta-section .volunteer-img {
    position: absolute;
    right: 80px;
    bottom: 0;
}

@media (max-width: 1400px) {

    .wpo-cta-area .wpo-cta-section .volunteer-img,
    .wpo-cta-area-s2 .wpo-cta-section .volunteer-img {
        right: 40px;
    }
}

@media (max-width: 991px) {

    .wpo-cta-area .wpo-cta-section .volunteer-img,
    .wpo-cta-area-s2 .wpo-cta-section .volunteer-img {
        text-align: right;
    }
}

@media (max-width: 767px) {

    .wpo-cta-area .wpo-cta-section .volunteer-img,
    .wpo-cta-area-s2 .wpo-cta-section .volunteer-img {
        display: none;
    }
}

@media (max-width: 991px) {

    .wpo-cta-area .wpo-cta-section .volunteer-img img,
    .wpo-cta-area-s2 .wpo-cta-section .volunteer-img img {
        width: 80%;
    }
}

.wpo-cta-area .wpo-cta-section .wpo-cta-content,
.wpo-cta-area-s2 .wpo-cta-section .wpo-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 970px;
}

@media (max-width: 1200px) {

    .wpo-cta-area .wpo-cta-section .wpo-cta-content,
    .wpo-cta-area-s2 .wpo-cta-section .wpo-cta-content {
        flex-wrap: wrap;
    }
}

.wpo-cta-area .wpo-cta-section .wpo-cta-content h2,
.wpo-cta-area-s2 .wpo-cta-section .wpo-cta-content h2 {
    max-width: 560px;
    font-size: 50px;
    font-weight: 500;
    line-height: 80px;
    margin: 0;
    color: #fff;
}

@media (max-width: 1400px) {

    .wpo-cta-area .wpo-cta-section .wpo-cta-content h2,
    .wpo-cta-area-s2 .wpo-cta-section .wpo-cta-content h2 {
        font-size: 35px;
        line-height: 50px;
        max-width: 390px;
        margin-bottom: 30px;
    }
}

@media (max-width: 1200px) {

    .wpo-cta-area .wpo-cta-section .wpo-cta-content h2,
    .wpo-cta-area-s2 .wpo-cta-section .wpo-cta-content h2 {
        margin-bottom: 30px;
    }
}

@media (max-width: 991px) {

    .wpo-cta-area .wpo-cta-section .wpo-cta-content h2,
    .wpo-cta-area-s2 .wpo-cta-section .wpo-cta-content h2 {
        font-size: 25px;
        line-height: 40px;
    }
}

@media (max-width: 767px) {

    .wpo-cta-area .wpo-cta-section .wpo-cta-content h2,
    .wpo-cta-area-s2 .wpo-cta-section .wpo-cta-content h2 {
        margin-bottom: 15px;
        max-width: 100%;
    }
}

@media (max-width: 575px) {

    .wpo-cta-area .wpo-cta-section .wpo-cta-content h2,
    .wpo-cta-area-s2 .wpo-cta-section .wpo-cta-content h2 {
        font-size: 20px;
        line-height: 30px;
    }
}

.wpo-cta-area .wpo-cta-section .wpo-cta-content a,
.wpo-cta-area-s2 .wpo-cta-section .wpo-cta-content a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: #fff;
    border-radius: 5px;
    color: #062265;
    font-weight: 500;
    width: 265px;
    font-size: 22px;
    justify-content: center;
    font-family: "Roboto Slab", serif;
}

@media (max-width: 1600px) {

    .wpo-cta-area .wpo-cta-section .wpo-cta-content a,
    .wpo-cta-area-s2 .wpo-cta-section .wpo-cta-content a {
        font-size: 17px;
        width: 255px;
    }
}

@media (max-width: 1400px) {

    .wpo-cta-area .wpo-cta-section .wpo-cta-content a,
    .wpo-cta-area-s2 .wpo-cta-section .wpo-cta-content a {
        width: 200px;
        font-size: 16px;
    }
}

@media (max-width: 767px) {

    .wpo-cta-area .wpo-cta-section .wpo-cta-content a,
    .wpo-cta-area-s2 .wpo-cta-section .wpo-cta-content a {
        width: 175px;
        font-size: 14px;
    }
}

.wpo-cta-area .wpo-cta-section .shape,
.wpo-cta-area-s2 .wpo-cta-section .shape {
    position: absolute;
    left: -10%;
    top: -10%;
    width: 100%;
    height: 100%;
    z-index: -1;
}

@media (max-width: 992px) {
    .wpo-cta-section h2 {
        max-width: 340px;
        font-size: 34px;
        line-height: 45px;
    }

    .wpo-cta-section a {
        padding: 15px 10px;
        font-size: 14px;
    }
}

/*=================================================
3.8 wpo-event-area
===================================================*/

.wpo-event-area .progress-section {
    padding-top: 20px;
}

.wpo-event-area .wpo-event-wrap .wpo-event-content h2 {
    font-size: 25px;
    line-height: 35px;
    margin-top: 0;
    font-weight: 600;
    margin-bottom: 15px;
}

.wpo-event-area .wpo-event-wrap .wpo-event-content h2 a {
    color: #212158;
}

.wpo-event-area .wpo-event-wrap .wpo-event-content h2 a:hover {
    color: #ef5f34;
}

@media (max-width: 1200px) {
    .wpo-event-area .wpo-event-wrap .wpo-event-content h2 {
        font-size: 16px;
        line-height: 25px;
    }
}

@media (max-width: 767px) {
    .wpo-event-area .wpo-event-wrap .wpo-event-content h2 {
        font-size: 25px;
        line-height: 35px;
    }
}

.wpo-event-area .wpo-event-wrap .wpo-event-content p {
    margin-bottom: 0;
}

.wpo-event-area .wpo-event-wrap .wpo-event-item {
    padding: 15px;
    box-shadow: 0px 1px 15px 0px rgba(62, 65, 159, 0.15);
    border-radius: 15px;
}

@media (max-width: 991px) {
    .wpo-event-area .wpo-event-wrap .wpo-event-item {
        margin-bottom: 30px;
        min-height: 370px;
    }
}

.wpo-event-area .wpo-event-wrap .wpo-event-item .wpo-event-img {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.wpo-event-area .wpo-event-wrap .wpo-event-item .wpo-event-img img {
    border-radius: 15px;
    transform: scale(1);
    transition: all 0.3s;
}

@media (max-width: 991px) {
    .wpo-event-area .wpo-event-wrap .wpo-event-item .wpo-event-img img {
        border-radius: 15px;
        max-height: 170px;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

@media (max-width: 767px) {
    .wpo-event-area .wpo-event-wrap .wpo-event-item .wpo-event-img img {
        max-height: 100%;
    }
}

.wpo-event-area .wpo-event-wrap .wpo-event-item:hover .wpo-event-img img {
    transform: scale(1.2);
}

.wpo-event-area .wpo-event-wrap .wpo-event-text-top {
    padding: 15px;
    padding-top: 22px;
}

@media (max-width: 1400px) {
    .wpo-event-area .wpo-event-wrap .wpo-event-text-top {
        padding: 15px 0;
    }
}

.wpo-event-area .wpo-event-wrap .wpo-event-content ul {
    list-style: none;
}

.wpo-event-area .wpo-event-wrap .wpo-event-img .thumb {
    position: absolute;
    left: 20px;
    top: 20px;
    background: #276b63;
    padding: 10px 20px;
    text-align: center;
    color: #fff;
    font-size: 32px;
    font-family: "Roboto Slab", serif;
    font-weight: 700;
    line-height: 30px;
    border-radius: 15px;
}

.wpo-event-area .wpo-event-wrap .wpo-event-img .thumb span {
    display: block;
    font-size: 16px;
    font-family: "Muli";
    font-weight: 400;
}

.wpo-event-area .wpo-event-wrap .wpo-event-img img {
    width: 100%;
}



.wpo-event-area .wpo-event-wrap .col:nth-child(2) .wpo-event-content h2,
.wpo-event-area .wpo-event-wrap .col:nth-child(3) .wpo-event-content h2 {
    font-size: 22px;
    line-height: 35px;
}

@media (max-width: 1400px) {

    .wpo-event-area .wpo-event-wrap .col:nth-child(2) .wpo-event-content h2,
    .wpo-event-area .wpo-event-wrap .col:nth-child(3) .wpo-event-content h2 {
        font-size: 18px;
    }
}

@media (max-width: 1200px) {

    .wpo-event-area .wpo-event-wrap .col:nth-child(2) .wpo-event-content h2,
    .wpo-event-area .wpo-event-wrap .col:nth-child(3) .wpo-event-content h2 {
        font-size: 16px;
        line-height: 25px;
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {

    .wpo-event-area .wpo-event-wrap .col:nth-child(2) .wpo-event-content h2,
    .wpo-event-area .wpo-event-wrap .col:nth-child(3) .wpo-event-content h2 {
        font-size: 25px;
        line-height: 35px;
    }
}

.wpo-event-area .wpo-event-wrap .col:nth-child(2) .wpo-event-content span,
.wpo-event-area .wpo-event-wrap .col:nth-child(3) .wpo-event-content span {
    color: #107569;
    margin-bottom: 12px;
    display: block;
    font-weight: 600;
    margin-top: 10px;
}

@media (max-width: 1200px) {

    .wpo-event-area .wpo-event-wrap .col:nth-child(2) .wpo-event-content span,
    .wpo-event-area .wpo-event-wrap .col:nth-child(3) .wpo-event-content span {
        margin-bottom: 10px;
    }
}

@media (max-width: 1200px) {
    .wpo-event-area .wpo-event-area {
        padding-bottom: 90px;
    }

    .wpo-event-area .wpo-event-content h2 {
        font-size: 20px;
    }
}

.wpo-event-area .wpo-event-single {
    padding: 0 5px;
}

@media (max-width: 767px) {
    .wpo-event-area .wpo-event-content h2 {
        font-size: 20px;
    }
}

/* 3.9 wpo-blog-section */

.wpo-blog-section .wpo-blog-img,
.wpo-blog-section-s2 .wpo-blog-img,
.wpo-blog-section-s3 .wpo-blog-img {
    position: relative;
}

.wpo-blog-section .wpo-blog-img img,
.wpo-blog-section-s2 .wpo-blog-img img,
.wpo-blog-section-s3 .wpo-blog-img img {
    width: 100%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.wpo-blog-section .wpo-blog-img .thumb,
.wpo-blog-section .wpo-blog-img .thumb-2,
.wpo-blog-section-s2 .wpo-blog-img .thumb,
.wpo-blog-section-s2 .wpo-blog-img .thumb-2,
.wpo-blog-section-s3 .wpo-blog-img .thumb,
.wpo-blog-section-s3 .wpo-blog-img .thumb-2 {
    position: absolute;
    left: 20px;
    top: 20px;
    background: linear-gradient(to left, #ef5f34, #e34212);
    padding: 4px 20px;
    border-radius: 4px;
    color: #fff;
}

.wpo-blog-section .wpo-blog-img .thumb-2,
.wpo-blog-section-s2 .wpo-blog-img .thumb-2,
.wpo-blog-section-s3 .wpo-blog-img .thumb-2 {
    background: linear-gradient(to left, #5dc4b8, #41b2a5);
}

@media (max-width: 991px) {

    .wpo-blog-section .wpo-blog-item,
    .wpo-blog-section-s2 .wpo-blog-item,
    .wpo-blog-section-s3 .wpo-blog-item {
        margin-bottom: 30px;
    }
}

.wpo-blog-section .wpo-blog-content,
.wpo-blog-section-s2 .wpo-blog-content,
.wpo-blog-section-s3 .wpo-blog-content {
    box-shadow: 0px 2px 20px 0px rgba(62, 65, 159, 0.09);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background: #fff;
}

.wpo-blog-section .wpo-blog-content .wpo-blog-content-top,
.wpo-blog-section-s2 .wpo-blog-content .wpo-blog-content-top,
.wpo-blog-section-s3 .wpo-blog-content .wpo-blog-content-top {
    padding: 30px 20px;
}

@media (max-width: 1200px) {

    .wpo-blog-section .wpo-blog-content .wpo-blog-content-top,
    .wpo-blog-section-s2 .wpo-blog-content .wpo-blog-content-top,
    .wpo-blog-section-s3 .wpo-blog-content .wpo-blog-content-top {
        padding: 20px 10px;
    }
}

.wpo-blog-section .wpo-blog-content .wpo-blog-content-top .wpo-blog-thumb span,
.wpo-blog-section-s2 .wpo-blog-content .wpo-blog-content-top .wpo-blog-thumb span,
.wpo-blog-section-s3 .wpo-blog-content .wpo-blog-content-top .wpo-blog-thumb span {
    display: inline-block;
    background: #f3f3fb;
    border-radius: 3px;
    padding: 5px 20px;
    font-size: 15px;
    font-family: "Roboto Slab", serif;
    color: #ef5f34;
    font-weight: 900;
}

.wpo-blog-section .wpo-blog-content .wpo-blog-content-top h2,
.wpo-blog-section-s2 .wpo-blog-content .wpo-blog-content-top h2,
.wpo-blog-section-s3 .wpo-blog-content .wpo-blog-content-top h2 {
    font-size: 25px;
    font-family: "Roboto Slab", serif;
    line-height: 36px;
    margin-bottom: 0;
    margin-top: 0;
    font-weight: 500;
}

.wpo-blog-section .wpo-blog-content .wpo-blog-content-top h2 a,
.wpo-blog-section-s2 .wpo-blog-content .wpo-blog-content-top h2 a,
.wpo-blog-section-s3 .wpo-blog-content .wpo-blog-content-top h2 a {
    color: #212158;
}

.wpo-blog-section .wpo-blog-content .wpo-blog-content-top h2 a:hover,
.wpo-blog-section-s2 .wpo-blog-content .wpo-blog-content-top h2 a:hover,
.wpo-blog-section-s3 .wpo-blog-content .wpo-blog-content-top h2 a:hover {
    color: #ef5f34;
}

@media (max-width: 1200px) {

    .wpo-blog-section .wpo-blog-content .wpo-blog-content-top h2,
    .wpo-blog-section-s2 .wpo-blog-content .wpo-blog-content-top h2,
    .wpo-blog-section-s3 .wpo-blog-content .wpo-blog-content-top h2 {
        font-size: 20px;
    }
}

.wpo-blog-section .wpo-blog-content .wpo-blog-content-btm,
.wpo-blog-section-s2 .wpo-blog-content .wpo-blog-content-btm,
.wpo-blog-section-s3 .wpo-blog-content .wpo-blog-content-btm {
    padding: 20px 30px;
    border-top: 1px solid #f3f3fb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 1200px) {

    .wpo-blog-section .wpo-blog-content .wpo-blog-content-btm,
    .wpo-blog-section-s2 .wpo-blog-content .wpo-blog-content-btm,
    .wpo-blog-section-s3 .wpo-blog-content .wpo-blog-content-btm {
        padding: 10px 20px;
    }
}

.wpo-blog-section .wpo-blog-content .wpo-blog-content-btm .wpo-blog-content-btm-left,
.wpo-blog-section-s2 .wpo-blog-content .wpo-blog-content-btm .wpo-blog-content-btm-left,
.wpo-blog-section-s3 .wpo-blog-content .wpo-blog-content-btm .wpo-blog-content-btm-left {
    display: flex;
    align-items: center;
}

.wpo-blog-section .wpo-blog-content .wpo-blog-content-btm .wpo-blog-content-btm-left .wpo-blog-content-btm-left-img img,
.wpo-blog-section-s2 .wpo-blog-content .wpo-blog-content-btm .wpo-blog-content-btm-left .wpo-blog-content-btm-left-img img,
.wpo-blog-section-s3 .wpo-blog-content .wpo-blog-content-btm .wpo-blog-content-btm-left .wpo-blog-content-btm-left-img img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.wpo-blog-section .wpo-blog-content .wpo-blog-content-btm .wpo-blog-content-btm-left .wpo-blog-content-btm-left-text,
.wpo-blog-section-s2 .wpo-blog-content .wpo-blog-content-btm .wpo-blog-content-btm-left .wpo-blog-content-btm-left-text,
.wpo-blog-section-s3 .wpo-blog-content .wpo-blog-content-btm .wpo-blog-content-btm-left .wpo-blog-content-btm-left-text {
    margin-left: 15px;
}

@media (max-width: 1200px) {

    .wpo-blog-section .wpo-blog-content .wpo-blog-content-btm .wpo-blog-content-btm-left .wpo-blog-content-btm-left-text,
    .wpo-blog-section-s2 .wpo-blog-content .wpo-blog-content-btm .wpo-blog-content-btm-left .wpo-blog-content-btm-left-text,
    .wpo-blog-section-s3 .wpo-blog-content .wpo-blog-content-btm .wpo-blog-content-btm-left .wpo-blog-content-btm-left-text {
        margin-left: 15px;
    }
}

.wpo-blog-section .wpo-blog-content .wpo-blog-content-btm .wpo-blog-content-btm-left .wpo-blog-content-btm-left-text h4,
.wpo-blog-section-s2 .wpo-blog-content .wpo-blog-content-btm .wpo-blog-content-btm-left .wpo-blog-content-btm-left-text h4,
.wpo-blog-section-s3 .wpo-blog-content .wpo-blog-content-btm .wpo-blog-content-btm-left .wpo-blog-content-btm-left-text h4 {
    font-size: 18px;
    margin-bottom: 0;
    margin-top: 0;
    font-weight: 500;
}

.wpo-blog-section .wpo-blog-content .wpo-blog-content-btm .wpo-blog-content-btm-left .wpo-blog-content-btm-left-text h4 a,
.wpo-blog-section-s2 .wpo-blog-content .wpo-blog-content-btm .wpo-blog-content-btm-left .wpo-blog-content-btm-left-text h4 a,
.wpo-blog-section-s3 .wpo-blog-content .wpo-blog-content-btm .wpo-blog-content-btm-left .wpo-blog-content-btm-left-text h4 a {
    color: #5a5858;
}

.wpo-blog-section .wpo-blog-content .wpo-blog-content-btm .wpo-blog-content-btm-left .wpo-blog-content-btm-left-text h4 a:hover,
.wpo-blog-section-s2 .wpo-blog-content .wpo-blog-content-btm .wpo-blog-content-btm-left .wpo-blog-content-btm-left-text h4 a:hover,
.wpo-blog-section-s3 .wpo-blog-content .wpo-blog-content-btm .wpo-blog-content-btm-left .wpo-blog-content-btm-left-text h4 a:hover {
    color: #ef5f34;
}

@media (max-width: 1200px) {

    .wpo-blog-section .wpo-blog-content .wpo-blog-content-btm .wpo-blog-content-btm-left .wpo-blog-content-btm-left-text h4,
    .wpo-blog-section-s2 .wpo-blog-content .wpo-blog-content-btm .wpo-blog-content-btm-left .wpo-blog-content-btm-left-text h4,
    .wpo-blog-section-s3 .wpo-blog-content .wpo-blog-content-btm .wpo-blog-content-btm-left .wpo-blog-content-btm-left-text h4 {
        font-size: 14px;
    }
}

.wpo-blog-section .wpo-blog-content .wpo-blog-content-btm .wpo-blog-content-btm-right span,
.wpo-blog-section-s2 .wpo-blog-content .wpo-blog-content-btm .wpo-blog-content-btm-right span,
.wpo-blog-section-s3 .wpo-blog-content .wpo-blog-content-btm .wpo-blog-content-btm-right span {
    font-size: 15px;
    color: #848892;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: "Roboto Slab", serif;
    display: flex;
    align-items: center;
}

.wpo-blog-section .wpo-blog-content .wpo-blog-content-btm .wpo-blog-content-btm-right span i,
.wpo-blog-section-s2 .wpo-blog-content .wpo-blog-content-btm .wpo-blog-content-btm-right span i,
.wpo-blog-section-s3 .wpo-blog-content .wpo-blog-content-btm .wpo-blog-content-btm-right span i {
    position: relative;
    top: 2px;
    margin-right: 6px;
}

/*--------------------------------------------------------------
3.10 partners-section
--------------------------------------------------------------*/
.partners-section .container {
    position: relative;
    padding: 25px 15px;
}

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

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

.partners-section .owl-nav {
    display: none;
}

.bg-green {
    background: #e9fafa;
}

/*--------------------------------------------------------------
5. Home-style-2
--------------------------------------------------------------*/
/* 5.1 wpo-features-section-s2 */


.wpo-features-section-s2 .wpo-features-item {
    background: #caf7f2;
    border-radius: 15px;
    box-shadow: none;
    position: relative;
}

.wpo-features-section-s2 .wpo-features-item .wpo-features-icon {
    background: #fff;
    box-shadow: 0px 0px 63px 0px rgba(4, 8, 88, 0.05);
}

.wpo-features-section-s2 .col:nth-child(2) .wpo-features-item {
    background: #fde4dd;
    top: 70px;
}

@media (max-width: 1199px) {
    .wpo-features-section-s2 .col:nth-child(2) .wpo-features-item {
        top: 0;
    }
}

.wpo-features-section-s2 .col:nth-child(2) .wpo-features-item .wpo-features-icon {
    background: #fff;
}

.wpo-features-section-s2 .col:nth-child(2) .wpo-features-item .wpo-features-icon .fi {
    color: #ef5f34;
}

.wpo-features-section-s2 .col:nth-child(3) .wpo-features-item {
    background: #d2ecf4;
}

.wpo-features-section-s2 .col:nth-child(3) .wpo-features-item .wpo-features-icon {
    background: #fff;
}

.wpo-features-section-s2 .col:nth-child(3) .wpo-features-item .wpo-features-icon .fi {
    color: #2eb1dc;
}

.wpo-features-section-s2 .col:nth-child(4) .wpo-features-item {
    top: 70px;
    background: #fdf3e0;
}

@media (max-width: 1199px) {
    .wpo-features-section-s2 .col:nth-child(4) .wpo-features-item {
        top: 0;
    }
}

.wpo-features-section-s2 .col:nth-child(4) .wpo-features-item .wpo-features-icon {
    background: #fff;
}

.wpo-features-section-s2 .col:nth-child(4) .wpo-features-item .wpo-features-icon .fi {
    color: #e89800;
}



.wpo-features-section-s2.v1 .col:nth-child(2) .wpo-features-item {
    top: 0px;
}

.wpo-features-section-s2.v1 .col:nth-child(4) .wpo-features-item {
    top: 0px;
}


.wpo-about-section-s2::before {
    display: none;
}

.wpo-about-section-s2 .wpo-about-wrap {
    position: relative;
}

.wpo-about-section-s2 .wpo-about-wrap:before {
    position: absolute;
    left: -50%;
    top: -8%;
    height: 120%;
    width: 140%;
    content: "";
    background: #fef6f3;
    z-index: -1;
    border-radius: 0px 323.36px 356.64px 0px;
}

@media (max-width: 1400px) {
    .wpo-about-section-s2 .wpo-about-wrap:before {
        left: -40%;
    }
}

@media (max-width: 991px) {
    .wpo-about-section-s2 .wpo-about-wrap:before {
        display: none;
    }
}

.wpo-about-section-s2 .wpo-about-wrap .wpo-about-img {
    margin: 0;
}

.wpo-about-section-s2 .wpo-about-wrap .wpo-about-img::before {
    display: none;
}

@media (max-width: 991px) {
    .wpo-about-section-s2 .wpo-about-wrap .wpo-about-img {
        margin-bottom: 50px;
    }
}

.wpo-about-section-s2 .round-ball-1 {
    position: absolute;
    left: 0;
    top: 0;
    width: 54px;
    height: 54px;
    background: #9dd8d2;
    border-radius: 50%;
    -webkit-animation: roundball 1.5s alternate infinite ease-in;
    animation: roundball 1.5s alternate infinite ease-in;
}

.wpo-about-section-s2 .round-ball-2 {
    position: absolute;
    left: 60%;
    top: 0px;
    width: 30px;
    height: 30px;
    background: #dccdb0;
    border-radius: 50%;
    -webkit-animation: roundball 1.5s alternate infinite ease-in;
    animation: roundball 1.5s alternate infinite ease-in;
}

.wpo-about-section-s2 .round-ball-3 {
    position: absolute;
    left: 60%;
    bottom: -40px;
    width: 54px;
    height: 54px;
    background: #fcd6cc;
    border-radius: 50%;
    -webkit-animation: roundball 1.5s alternate infinite ease-in;
    animation: roundball 1.5s alternate infinite ease-in;
}

.wpo-about-section-s2 .round-ball-4 {
    position: absolute;
    right: 6%;
    bottom: -15px;
    width: 30px;
    height: 30px;
    background: #98c4d2;
    border-radius: 50%;
    -webkit-animation: roundball 1.5s alternate infinite ease-in;
    animation: roundball 1.5s alternate infinite ease-in;
}

@-webkit-keyframes roundball {
    0% {
        transform: scale(0.7);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes roundball {
    0% {
        transform: scale(0.7);
    }

    100% {
        transform: scale(1);
    }
}

/* 5.3 wpo-fun-fact-section */


.wpo-fun-fact-section .wpo-fun-fact-grids,
.wpo-fun-fact-section-s2 .wpo-fun-fact-grids {
    padding: 80px 100px;
    background: linear-gradient(to left, rgba(239, 95, 52, 0.75), #ed4918);
    z-index: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

@media (max-width: 991px) {

    .wpo-fun-fact-section .wpo-fun-fact-grids,
    .wpo-fun-fact-section-s2 .wpo-fun-fact-grids {
        padding: 40px;
    }
}

@media (max-width: 767px) {

    .wpo-fun-fact-section .wpo-fun-fact-grids,
    .wpo-fun-fact-section-s2 .wpo-fun-fact-grids {
        padding: 20px;
    }
}

.wpo-fun-fact-section .wpo-fun-fact-grids .shape,
.wpo-fun-fact-section-s2 .wpo-fun-fact-grids .shape {
    position: absolute;
    left: -10%;
    top: -65%;
    width: 100%;
    height: 100%;
    z-index: -1;
}

@media (max-width: 767px) {

    .wpo-fun-fact-section .wpo-fun-fact-grids .shape,
    .wpo-fun-fact-section-s2 .wpo-fun-fact-grids .shape {
        top: -15%;
    }
}

.wpo-fun-fact-section h2,
.wpo-fun-fact-section-s2 h2 {
    font-size: 30px;
    font-size: 2rem;
    font-weight: 600;
    margin: 0 0 1.8em;
}

@media (max-width: 767px) {

    .wpo-fun-fact-section h2,
    .wpo-fun-fact-section-s2 h2 {
        margin-bottom: 20px;
    }
}

@media (max-width: 991px) {

    .wpo-fun-fact-section h2,
    .wpo-fun-fact-section-s2 h2 {
        font-size: 26px;
        font-size: 1.7333333333rem;
    }
}

@media (max-width: 767px) {

    .wpo-fun-fact-section h2,
    .wpo-fun-fact-section-s2 h2 {
        font-size: 25px;
        font-size: 1.6666666667rem;
    }
}

.wpo-fun-fact-section .wpo-fun-fact-grids .grid,
.wpo-fun-fact-section-s2 .wpo-fun-fact-grids .grid {
    width: 25%;
    float: left;
}

@media (max-width: 767px) {

    .wpo-fun-fact-section .wpo-fun-fact-grids .grid,
    .wpo-fun-fact-section-s2 .wpo-fun-fact-grids .grid {
        width: 50%;
        margin-bottom: 20px;
    }
}

.wpo-fun-fact-section .grid h3,
.wpo-fun-fact-section-s2 .grid h3 {
    font-size: 60px;
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.2em;
    font-family: "Roboto Slab", serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1200px) {

    .wpo-fun-fact-section .grid h3,
    .wpo-fun-fact-section-s2 .grid h3 {
        font-size: 50px;
        ont-size: 3.3333333333rem;
    }
}

@media (max-width: 991px) {

    .wpo-fun-fact-section .grid h3,
    .wpo-fun-fact-section-s2 .grid h3 {
        font-size: 40px;
        font-size: 2.6666666667rem;
    }
}

@media (max-width: 767px) {

    .wpo-fun-fact-section .grid h3,
    .wpo-fun-fact-section-s2 .grid h3 {
        font-size: 35px;
        font-size: 2.3333333333rem;
    }
}

.wpo-fun-fact-section .grid h3+p,
.wpo-fun-fact-section-s2 .grid h3+p {
    font-size: 20px;
    font-size: 1.3333333333rem;
    margin: 0;
    color: #fff;
    font-family: "Roboto Slab", serif;
    text-align: center;
}

@media (max-width: 1200px) {

    .wpo-fun-fact-section .grid h3+p,
    .wpo-fun-fact-section-s2 .grid h3+p {
        font-size: 18px;
        font-size: 1.2rem;
    }
}

@media (max-width: 991px) {

    .wpo-fun-fact-section .grid h3+p,
    .wpo-fun-fact-section-s2 .grid h3+p {
        font-size: 16px;
        font-size: 1.0666666667rem;
    }
}

@media (max-width: 767px) {

    .wpo-fun-fact-section .grid h3+p,
    .wpo-fun-fact-section-s2 .grid h3+p {
        font-size: 14px;
        font-size: 0.9333333333rem;
    }
}

/*--------------------------------------------------------------
5.4 wpo-project-section
--------------------------------------------------------------*/
.wpo-project-section,
.wpo-project-section-s2 {
    padding-top: 0;
}

.wpo-project-section .container-fluid,
.wpo-project-section-s2 .container-fluid {
    padding: 0 5px;
}

@media (max-width: 991px) {

    .wpo-project-section .container-fluid,
    .wpo-project-section-s2 .container-fluid {
        padding: 0 15px;
    }
}

.wpo-project-section.pb-0,
.wpo-project-section-s2.pb-0 {
    padding-bottom: 0;
}

.wpo-project-section .project-grids,
.wpo-project-section-s2 .project-grids {
    margin: 0 -7.5px;
}

.wpo-project-section .project-grids .grid,
.wpo-project-section-s2 .project-grids .grid {
    width: 25%;
    float: left;
    padding: 0 1px 1px;
}

@media (max-width: 1500px) {

    .wpo-project-section .project-grids .grid,
    .wpo-project-section-s2 .project-grids .grid {
        padding: 0 5.5px 10px;
    }
}

@media (max-width: 991px) {

    .wpo-project-section .project-grids .grid,
    .wpo-project-section-s2 .project-grids .grid {
        padding: 0 4.5px 8px;
    }
}

.wpo-project-section .project-grids .grid:last-child,
.wpo-project-section-s2 .project-grids .grid:last-child {
    width: 50%;
}

@media (max-width: 1199px) {

    .wpo-project-section .project-grids .grid:last-child,
    .wpo-project-section-s2 .project-grids .grid:last-child {
        width: 100%;
    }
}

.wpo-project-section .project-grids .grid:first-child,
.wpo-project-section-s2 .project-grids .grid:first-child {
    width: 50%;
}

@media (max-width: 1199px) {

    .wpo-project-section .project-grids .grid:first-child,
    .wpo-project-section-s2 .project-grids .grid:first-child {
        width: 100%;
    }
}

@media (max-width: 1199px) {

    .wpo-project-section .project-grids .grid,
    .wpo-project-section-s2 .project-grids .grid {
        width: 50%;
    }
}

@media (max-width: 600px) {

    .wpo-project-section .project-grids .grid,
    .wpo-project-section-s2 .project-grids .grid {
        width: 100%;
    }
}

.wpo-project-section .project-grids .grid img,
.wpo-project-section-s2 .project-grids .grid img {
    width: 100%;
}

.wpo-project-section .grid .img-holder,
.wpo-project-section-s2 .grid .img-holder {
    position: relative;
}

.wpo-project-section .grid .img-holder img,
.wpo-project-section-s2 .grid .img-holder img {
    min-height: 545px;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 1200px) {

    .wpo-project-section .grid .img-holder img,
    .wpo-project-section-s2 .grid .img-holder img {
        min-height: 100%;
    }
}

@media (max-width: 575px) {

    .wpo-project-section .grid .img-holder img,
    .wpo-project-section-s2 .grid .img-holder img {
        min-height: 350px;
    }
}

.wpo-project-section .grid .img-holder .hover-content,
.wpo-project-section-s2 .grid .img-holder .hover-content {
    transition: all 0.3s;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    text-align: center;
    width: 415px;
}

@media (max-width: 1800px) {

    .wpo-project-section .grid .img-holder .hover-content,
    .wpo-project-section-s2 .grid .img-holder .hover-content {
        width: 100%;
        max-width: 300px;
        padding: 30px;
    }
}

.wpo-project-section .grid .img-holder .hover-content a.plus,
.wpo-project-section-s2 .grid .img-holder .hover-content a.plus {
    display: block;
    width: 45px;
    height: 45px;
    line-height: 48px;
    background: #fff;
    border-radius: 50%;
    color: #212158;
    margin: 0 auto;
    margin-bottom: 20px;
}

.wpo-project-section .grid .img-holder .hover-content a.plus:hover,
.wpo-project-section-s2 .grid .img-holder .hover-content a.plus:hover {
    color: #ef5f34;
}

.wpo-project-section .grid .img-holder .hover-content p,
.wpo-project-section-s2 .grid .img-holder .hover-content p {
    color: #fff;
}

.wpo-project-section .grid .img-holder .hover-content h4,
.wpo-project-section-s2 .grid .img-holder .hover-content h4 {
    font-size: 30px;
    font-weight: 600;
}

@media (max-width: 1800px) {

    .wpo-project-section .grid .img-holder .hover-content h4,
    .wpo-project-section-s2 .grid .img-holder .hover-content h4 {
        font-size: 25px;
    }
}

.wpo-project-section .grid .img-holder .hover-content h4 a,
.wpo-project-section-s2 .grid .img-holder .hover-content h4 a {
    color: #fff;
}

.wpo-project-section .grid .img-holder .hover-content h4 a:hover,
.wpo-project-section-s2 .grid .img-holder .hover-content h4 a:hover {
    color: #fff;
}

.wpo-project-section .grid .img-holder:before,
.wpo-project-section-s2 .grid .img-holder:before {
    position: absolute;
    left: 2%;
    top: 2%;
    width: 96%;
    height: 96%;
    content: "";
    background: linear-gradient(to left, rgba(239, 95, 52, 0.65), #ed4918);
    opacity: 0;
    transition: all 0.3s;
    border-radius: 20px;
    transform: scale(0);
}
.wpo-project-section .grid:first-child .img-holder:before {
    left: 1%;
    top: 2%;
    width: 98%;
}
.wpo-project-section .grid:last-child .img-holder:before {
    left: 1%;
    top: 2%;
    width: 98%;
}
.wpo-project-section .img-holder:hover .hover-content,
.wpo-project-section-s2 .img-holder:hover .hover-content {
    opacity: 1;
}

.wpo-project-section .img-holder:hover:before,
.wpo-project-section-s2 .img-holder:hover:before {
    opacity: 0.95;
    transform: scale(1);
}

/*--------------------------------------------------------------
6. Home-style-3
--------------------------------------------------------------*/
/* 6.1 wpo-features-section-s3 */


.wpo-features-section-s3 .wpo-features-item {
    text-align: left;
    padding: 50px;
    max-width: 100%;
    border-radius: 50px;
    box-shadow: none;
}

@media (max-width: 1200px) {
    .wpo-features-section-s3 .wpo-features-item {
        padding: 30px;
    }
}

@media (max-width: 991px) {
    .wpo-features-section-s3 .wpo-features-item {
        margin-bottom: 20px;
        padding: 20px;
    }
}

.wpo-features-section-s3 .wpo-features-item .wpo-features-icon {
    margin: 0;
    top: 0;
    width: 100px;
    height: 100px;
    line-height: 100px;
    margin-bottom: 20px;
    box-shadow: 0px 1px 15px 0px rgba(62, 65, 159, 0.05);
    background: #fff;
}

.wpo-features-section-s3 .wpo-features-item .wpo-features-icon .fi {
    font-size: 50px;
    color: #26877c;
}

.wpo-features-section-s3 .wpo-features-item .wpo-features-text {
    margin-top: 0;
}

.wpo-features-section-s3 .wpo-features-item .wpo-features-text p {
    margin-bottom: 0;
}

.wpo-features-section-s3 .col:nth-child(2) .wpo-features-item {
    background: #fff;
    box-shadow: 0px 1px 15px 0px rgba(62, 65, 159, 0.05);
}

.wpo-features-section-s3 .col:nth-child(2) .wpo-features-item .wpo-features-icon {
    background: #e0f5f3;
}

.wpo-features-section-s3 .col:nth-child(2) .wpo-features-item .wpo-features-icon i:before {
    color: #26877c;
}

.wpo-features-section-s3 .col:nth-child(3) .wpo-features-item .wpo-features-icon {
    background: #fff;
}

.wpo-features-section-s3 .col:nth-child(3) .wpo-features-item .wpo-features-icon .fi {
    color: #26877c;
}

/* 6.2 wpo-about-section-s3  */
.wpo-about-section-s3 {
    background: #e9fafa;
    padding-top: 50px;
}

.wpo-about-section-s3:before {
    display: none;
}

.wpo-about-section-s3 .wpo-about-wrap .wpo-about-img {
    padding: 20px;
    background: #fff;
    border-radius: 250px 250px 16.73px 16.73px;
}

@media (max-width: 991px) {
    .wpo-about-section-s3 .wpo-about-wrap .wpo-about-img {
        margin-bottom: 80px;
    }
}

.wpo-about-section-s3 .wpo-about-wrap .wpo-about-img .wpo-total-raised {
    left: 50%;
    bottom: -65px;
    transform: translateX(-50%);
}

.wpo-about-section-s3 .ab-left-img {
    position: absolute;
    left: 0;
    padding: 20px;
    background: #fff;
    border-radius: 320px 320px 14px 14px;
    max-width: 50%;
}

@media (max-width: 1700px) {
    .wpo-about-section-s3 .ab-left-img {
        max-width: 40%;
    }
}

@media (max-width: 991px) {
    .wpo-about-section-s3 .ab-left-img {
        display: none;
    }
}

.wpo-about-section-s3 .ab-left-img img {
    border-radius: 300px 300px 8.4px 8.4px;
    width: 100%;
}

.wpo-about-section-s3 .ab-right-img {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 991px) {
    .wpo-about-section-s3 .ab-right-img {
        top: auto;
        bottom: 0;
        transform: translateY(0);
    }
}

/* 6.3 wpo-fun-fact-section-s2  */



.wpo-cta-area-s2 .wpo-cta-section {
    background: linear-gradient(to left, rgba(93, 196, 184, 0.75), #47bcae);
}

.wpo-cta-area-s2 .wpo-cta-section .volunteer-img {
    bottom: -45px;
}

@media (max-width: 1200px) {
    .wpo-cta-area-s2 .wpo-cta-section .volunteer-img {
        right: 0;
    }
}

.wpo-cta-area-s2 .wpo-cta-section .wpo-cta-content {
    max-width: 900px;
}

.wpo-cta-area-s2 .wpo-cta-section .wpo-cta-content h2 {
    max-width: 620px;
}

/* 6.4 wpo-campaign-area-s2 */
.wpo-campaign-area-s2 {
    background: #e9fafa;
    padding-top: 0;
}

/* 6.5 wpo-project-section-s2 */
.wpo-project-section-s2 {
    background: #e9fafa;
    padding-top: 0;
}

.wpo-project-section-s2 .container-fluid {
    padding: 0;
}

.wpo-project-section-s2 .project-grids {
    margin: 0;
}

.wpo-project-section-s2 .project-grids .grid {
    width: 100%;
}

.wpo-project-section-s2 .project-grids .grid:first-child {
    width: 100%;
}

.wpo-project-section-s2 .project-grids .grid .img-holder::before {
    z-index: 11;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.wpo-project-section-s2 .project-grids .grid .img-holder .hover-content {
    z-index: 12;
}

@media (max-width: 1600px) {
    .wpo-project-section-s2 .project-grids .grid .img-holder .hover-content h4 {
        font-size: 20px;
    }
}

.wpo-project-section-s2 .project-grids .grid .img-holder .hover-content p {
    max-width: 370px;
    margin: auto;
}

.wpo-project-section-s2 .project-grids .owl-nav {
    display: none;
}

/* 6.6 wpo-testimonial-area-s2 */
.wpo-testimonial-area-s2,
.wpo-testimonial-area-s3 {
    padding-top: 0;
}

.wpo-testimonial-area-s2 .wpo-testimonial-item,
.wpo-testimonial-area-s3 .wpo-testimonial-item {
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 0px 1px 15px 0px rgba(62, 65, 159, 0.05);
    padding: 50px 40px;
}

.wpo-testimonial-area-s2 .wpo-testimonial-item,
.wpo-testimonial-area-s3 .wpo-testimonial-item {
    position: relative;
    z-index: 1;
}

.wpo-testimonial-area-s2 .wpo-testimonial-item .wpo-testimonial-content p::before,
.wpo-testimonial-area-s3 .wpo-testimonial-item .wpo-testimonial-content p::before {
    display: none;
}

.wpo-testimonial-area-s2 .wpo-testimonial-item:before,
.wpo-testimonial-area-s3 .wpo-testimonial-item:before {
    position: absolute;
    right: 20px;
    top: 0;
    content: "";
    font-family: "Flaticon";
    z-index: -1;
    font-size: 80px;
    color: #ebf6f6;
}

@media (max-width: 767px) {

    .wpo-testimonial-area-s2 .wpo-testimonial-item:before,
    .wpo-testimonial-area-s3 .wpo-testimonial-item:before {
        font-size: 60px;
    }
}

.wpo-testimonial-area-s2 .testimonial-slider-s2,
.wpo-testimonial-area-s3 .testimonial-slider-s2 {
    padding-bottom: 80px;
}

@media (max-width: 991px) {

    .wpo-testimonial-area-s2 .testimonial-slider-s2,
    .wpo-testimonial-area-s3 .testimonial-slider-s2 {
        padding-bottom: 0;
    }
}

.wpo-testimonial-area-s2 .testimonial-slider-s2 button,
.wpo-testimonial-area-s3 .testimonial-slider-s2 button {
    position: absolute;
    left: 46%;
    bottom: -30px;
    transform: translateY(-50%);
    height: 50px;
    width: 50px;
    line-height: 46px;
    text-align: center;
    background: #fff;
    transition: all 0.3s;
    border: 1px solid #ebebeb;
    font-size: 20px;
    border-radius: 5px;
}

.wpo-testimonial-area-s2 .testimonial-slider-s2 button:hover,
.wpo-testimonial-area-s3 .testimonial-slider-s2 button:hover {
    background: #ef5f34;
    color: #fff;
}

@media (max-width: 1200px) {

    .wpo-testimonial-area-s2 .testimonial-slider-s2 button,
    .wpo-testimonial-area-s3 .testimonial-slider-s2 button {
        left: 43%;
    }
}

@media (max-width: 991px) {

    .wpo-testimonial-area-s2 .testimonial-slider-s2 button,
    .wpo-testimonial-area-s3 .testimonial-slider-s2 button {
        display: none;
    }
}

.wpo-testimonial-area-s2 .testimonial-slider-s2 .owl-next,
.wpo-testimonial-area-s3 .testimonial-slider-s2 .owl-next {
    left: 51%;
    bottom: -30px;
    transform: translateY(-50%);
}

@media (max-width: 991px) {

    .wpo-testimonial-area-s2 .testimonial-slider-s2 .owl-next,
    .wpo-testimonial-area-s3 .testimonial-slider-s2 .owl-next {
        display: none;
    }
}

/* 6.7 wpo-event-area-s2 */
@media (max-width: 991px) {
    .wpo-event-area-s2 {
        padding-bottom: 70px;
    }
}

.wpo-event-area-s2 .wpo-event-single {
    margin-bottom: 30px;
}

.wpo-event-area-s2 .wpo-event-single:last-child {
    margin-bottom: 0;
}

.wpo-event-area-s2 .wpo-event-single .wpo-event-item {
    padding: 15px;
    box-shadow: 0px 1px 15px 0px rgba(62, 65, 159, 0.15);
    border-radius: 15px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #fff;
}

@media (max-width: 991px) {
    .wpo-event-area-s2 .wpo-event-single .wpo-event-item {
        display: block;
    }
}

.wpo-event-area-s2 .wpo-event-single .wpo-event-item::before {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    background: rgba(93, 196, 184, 0.6);
    width: 10px;
    height: 120px;
    border-radius: 10px 0 0 10px;
}

@media (max-width: 991px) {
    .wpo-event-area-s2 .wpo-event-single .wpo-event-item::before {
        display: none;
    }
}

@media (max-width: 991px) {
    .wpo-event-area-s2 .wpo-event-single .wpo-event-item {
        margin-bottom: 30px;
        min-height: 370px;
    }
}

.wpo-event-area-s2 .wpo-event-single .wpo-event-item .wpo-event-img {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    flex-basis: 35%;
}

.wpo-event-area-s2 .wpo-event-single .wpo-event-item .wpo-event-img img {
    border-radius: 15px;
    transform: scale(1);
    transition: all 0.3s;
    width: 100%;
}

@media (max-width: 991px) {
    .wpo-event-area-s2 .wpo-event-single .wpo-event-item .wpo-event-img img {
        border-radius: 15px;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

.wpo-event-area-s2 .wpo-event-single .wpo-event-item:hover .wpo-event-img img {
    transform: scale(1.2);
}

.wpo-event-area-s2 .wpo-event-single .wpo-event-item .wpo-event-content {
    padding-left: 40px;
    padding-right: 80px;
    flex-basis: 65%;
}

@media (max-width: 1400px) {
    .wpo-event-area-s2 .wpo-event-single .wpo-event-item .wpo-event-content {
        padding-right: 40px;
    }
}

@media (max-width: 1200px) {
    .wpo-event-area-s2 .wpo-event-single .wpo-event-item .wpo-event-content {
        padding-right: 30px;
    }
}

@media (max-width: 991px) {
    .wpo-event-area-s2 .wpo-event-single .wpo-event-item .wpo-event-content {
        padding-left: 0;
        padding-right: 0;
        padding-top: 20px;
        padding-bottom: 10px;
    }
}

.wpo-event-area-s2 .wpo-event-single .wpo-event-item .wpo-event-content h2 {
    font-size: 25px;
    line-height: 35px;
    margin-top: 0;
    font-weight: 600;
    margin-bottom: 15px;
}

.wpo-event-area-s2 .wpo-event-single .wpo-event-item .wpo-event-content h2 a {
    color: #212158;
}

.wpo-event-area-s2 .wpo-event-single .wpo-event-item .wpo-event-content h2 a:hover {
    color: #ef5f34;
}

@media (max-width: 1200px) {
    .wpo-event-area-s2 .wpo-event-single .wpo-event-item .wpo-event-content h2 {
        font-size: 18px;
        line-height: 25px;
    }
}

@media (max-width: 991px) {
    .wpo-event-area-s2 .wpo-event-single .wpo-event-item .wpo-event-content h2 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .wpo-event-area-s2 .wpo-event-single .wpo-event-item .wpo-event-content h2 {
        font-size: 25px;
        line-height: 35px;
    }
}

.wpo-event-area-s2 .wpo-event-single .wpo-event-item .wpo-event-content span {
    color: #107569;
    margin-bottom: 12px;
    display: block;
    font-weight: 600;
    margin-top: 10px;
}

@media (max-width: 1200px) {
    .wpo-event-area-s2 .wpo-event-single .wpo-event-item .wpo-event-content span {
        margin-bottom: 10px;
    }
}

.wpo-event-area-s2 .wpo-event-single .wpo-event-item .wpo-event-content a.read-more {
    font-size: 18px;
    color: #212158;
    font-weight: 600;
}

.wpo-event-area-s2 .wpo-event-single .wpo-event-item .wpo-event-content a.read-more:hover {
    color: #ef5f34;
}

/* 6.8 wpo-blog-section-s2 */
.wpo-blog-section-s2 {
    background: #e9fafa;
}

/*--------------------------------------------------------------
7. Home-style-4
--------------------------------------------------------------*/
/* 7.1 wpo-features-section-s3 */
.wpo-features-section-s4 .wpo-features-item,
.wpo-features-section-s6 .wpo-features-item {
    text-align: left;
    padding: 50px;
    max-width: 100%;
    border-radius: 50px;
    background: #fff;
    box-shadow: 0px 1px 15px 0px rgba(62, 65, 159, 0.15);
}

@media (max-width: 1200px) {

    .wpo-features-section-s4 .wpo-features-item,
    .wpo-features-section-s6 .wpo-features-item {
        padding: 30px;
    }
}

@media (max-width: 991px) {

    .wpo-features-section-s4 .wpo-features-item,
    .wpo-features-section-s6 .wpo-features-item {
        margin-bottom: 20px;
        padding: 20px;
    }
}

.wpo-features-section-s4 .wpo-features-item .wpo-features-icon,
.wpo-features-section-s6 .wpo-features-item .wpo-features-icon {
    margin: 0;
    top: 0;
    width: 100px;
    height: 100px;
    line-height: 100px;
    margin-bottom: 20px;
    box-shadow: 0px 1px 15px 0px rgba(62, 65, 159, 0.05);
    background: #e0f5f3;
}

.wpo-features-section-s4 .wpo-features-item .wpo-features-icon .fi,
.wpo-features-section-s6 .wpo-features-item .wpo-features-icon .fi {
    font-size: 50px;
    color: #26877c;
}

.wpo-features-section-s4 .wpo-features-item .wpo-features-text,
.wpo-features-section-s6 .wpo-features-item .wpo-features-text {
    margin-top: 0;
}

.wpo-features-section-s4 .wpo-features-item .wpo-features-text p,
.wpo-features-section-s6 .wpo-features-item .wpo-features-text p {
    margin-bottom: 0;
}

.wpo-features-section-s4 .col:nth-child(2) .wpo-features-item .wpo-features-icon,
.wpo-features-section-s6 .col:nth-child(2) .wpo-features-item .wpo-features-icon {
    background: #e0f5f3;
}

.wpo-features-section-s4 .col:nth-child(2) .wpo-features-item .wpo-features-icon i:before,
.wpo-features-section-s6 .col:nth-child(2) .wpo-features-item .wpo-features-icon i:before {
    color: #26877c;
}

.wpo-features-section-s4 .col:nth-child(3) .wpo-features-item .wpo-features-icon,
.wpo-features-section-s6 .col:nth-child(3) .wpo-features-item .wpo-features-icon {
    background: #e0f5f3;
}

.wpo-features-section-s4 .col:nth-child(3) .wpo-features-item .wpo-features-icon .fi,
.wpo-features-section-s6 .col:nth-child(3) .wpo-features-item .wpo-features-icon .fi {
    color: #26877c;
}

/* 7.2 wpo-about-section-s3  */
.wpo-about-section-s4,
.wpo-about-section-s5 {
    padding-top: 0px;
}

@media (max-width: 1200px) {

    .wpo-about-section-s4,
    .wpo-about-section-s5 {
        padding-top: 40px;
    }
}

@media (max-width: 991px) {

    .wpo-about-section-s4,
    .wpo-about-section-s5 {
        padding-top: 80px;
    }
}

.wpo-about-section-s4:before,
.wpo-about-section-s5:before {
    display: none;
}

.wpo-about-section-s4 .wpo-about-items,
.wpo-about-section-s5 .wpo-about-items {
    background: #e9fafa;
    border-radius: 20px;
}

@media (max-width: 991px) {

    .wpo-about-section-s4 .wpo-about-items,
    .wpo-about-section-s5 .wpo-about-items {
        background: #fff;
    }
}

.wpo-about-section-s4 .wpo-about-items .wpo-about-wrap .wpo-about-img,
.wpo-about-section-s5 .wpo-about-items .wpo-about-wrap .wpo-about-img {
    padding: 20px;
    box-shadow: 0px 1px 15px 0px rgba(62, 65, 159, 0.15);
    background: #fff;
    border-radius: 20px;
    margin: 0;
    position: relative;
}

.wpo-about-section-s4 .wpo-about-items .wpo-about-wrap .wpo-about-img img,
.wpo-about-section-s5 .wpo-about-items .wpo-about-wrap .wpo-about-img img {
    border-radius: 18px;
}

.wpo-about-section-s4 .wpo-about-items .wpo-about-wrap .wpo-about-img::before,
.wpo-about-section-s5 .wpo-about-items .wpo-about-wrap .wpo-about-img::before {
    display: none;
}

.wpo-about-section-s4 .wpo-about-items .wpo-about-wrap .wpo-about-img img,
.wpo-about-section-s5 .wpo-about-items .wpo-about-wrap .wpo-about-img img {
    border-radius: 18px;
}

@media (max-width: 991px) {

    .wpo-about-section-s4 .wpo-about-items .wpo-about-wrap .wpo-about-img,
    .wpo-about-section-s5 .wpo-about-items .wpo-about-wrap .wpo-about-img {
        margin-bottom: 30px;
    }
}

.wpo-about-section-s4 .wpo-about-items .wpo-about-wrap .wpo-about-img .video-holder,
.wpo-about-section-s5 .wpo-about-items .wpo-about-wrap .wpo-about-img .video-holder {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.wpo-about-section-s4 .wpo-about-items .wpo-about-wrap .wpo-about-img .video-holder a,
.wpo-about-section-s5 .wpo-about-items .wpo-about-wrap .wpo-about-img .video-holder a {
    display: block;
    width: 84px;
    height: 84px;
    background: #5dc4b8;
    text-align: center;
    line-height: 87px;
    color: #fff;
    font-size: 30px;
    border-radius: 50%;
    position: relative;
}

.wpo-about-section-s4 .wpo-about-items .wpo-about-wrap .wpo-about-img .video-holder a:before,
.wpo-about-section-s5 .wpo-about-items .wpo-about-wrap .wpo-about-img .video-holder a:before {
    content: " ";
    width: 130%;
    height: 130%;
    background: rgba(93, 196, 184, 0.3);
    border-radius: 50%;
    position: absolute;
    left: -12px;
    top: -12px;
    -webkit-animation: pulse 1s infinite;
    animation: pulse 1s infinite;
    z-index: -1;
}

.wpo-about-section-s4 .wpo-about-items .wpo-about-wrap .wpo-about-img .video-holder a .fi,
.wpo-about-section-s5 .wpo-about-items .wpo-about-wrap .wpo-about-img .video-holder a .fi {
    font-size: 25px;
}

.wpo-about-section-s4 .wpo-about-text,
.wpo-about-section-s5 .wpo-about-text {
    padding-left: 30px;
}

@media (max-width: 991px) {

    .wpo-about-section-s4 .wpo-about-text,
    .wpo-about-section-s5 .wpo-about-text {
        padding-left: 0;
        max-width: 100%;
    }
}

@media (max-width: 1400px) {

    .wpo-about-section-s4 .wpo-about-text h2,
    .wpo-about-section-s5 .wpo-about-text h2 {
        font-size: 35px;
        line-height: 50px;
    }
}

@media (max-width: 1200px) {

    .wpo-about-section-s4 .wpo-about-text h2,
    .wpo-about-section-s5 .wpo-about-text h2 {
        font-size: 25px;
        line-height: 35px;
        margin-bottom: 10px;
    }
}

@media (max-width: 1200px) {

    .wpo-about-section-s4 .wpo-about-text p,
    .wpo-about-section-s5 .wpo-about-text p {
        margin-bottom: 10px;
    }
}

@media (max-width: 1200px) {

    .wpo-about-section-s4 .wpo-about-text ul,
    .wpo-about-section-s5 .wpo-about-text ul {
        margin-bottom: 15px;
    }
}

/* 7.3 wpo-campaign-area-s3  */
.wpo-campaign-area-s3 {
    background: #e9fafa;
}

/* 7.4 wpo-campaign-area-s2 */
.wpo-campaign-area-s2 {
    background: #e9fafa;
    padding-top: 0;
}

/* 7.5 wpo-campaign-area-s2 */
.wpo-testimonial-area-s3 {
    background: #fff;
}

.wpo-testimonial-area-s3 .wpo-testimonial-item {
    box-shadow: 0px 1px 15px 0px rgba(62, 65, 159, 0.1);
    background: #fff;
}

.wpo-testimonial-area-s3 .owl-stage {
    margin: 15px;
}

.wpo-testimonial-area-s3 .owl-stage-outer {
    margin: -15px;
}

/*--------------------------------------------------------------
8. Home-style-5
--------------------------------------------------------------*/
/* 8.1 wpo-features-section-s5 */
.wpo-features-section-s5 {
    position: relative;
    margin-top: -30px;
    z-index: 99;
}

@media (max-width: 991px) {
    .wpo-features-section-s5 {
        margin-top: 0px;
        padding-top: 100px;
    }
}

.wpo-features-section-s5 .wpo-features-item {
    padding: 40px;
    box-shadow: 0px 1px 15px 0px rgba(62, 65, 159, 0.15);
    background: #fff;
    border-radius: 10px;
    display: flex;
}

@media (max-width: 1400px) {
    .wpo-features-section-s5 .wpo-features-item {
        padding: 40px 20px;
    }
}

@media (max-width: 1200px) {
    .wpo-features-section-s5 .wpo-features-item {
        padding: 20px 10px;
    }
}

@media (max-width: 991px) {
    .wpo-features-section-s5 .wpo-features-item {
        margin-bottom: 30px;
    }
}

.wpo-features-section-s5 .wpo-features-item .wpo-features-text {
    margin-left: 20px;
}

@media (max-width: 1200px) {
    .wpo-features-section-s5 .wpo-features-item .wpo-features-text {
        margin-left: 10px;
    }
}

.wpo-features-section-s5 .wpo-features-item .wpo-features-text h2 {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 15px;
    margin-top: 0;
}

@media (max-width: 1400px) {
    .wpo-features-section-s5 .wpo-features-item .wpo-features-text h2 {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .wpo-features-section-s5 .wpo-features-item .wpo-features-text h2 {
        font-size: 20px;
    }
}

.wpo-features-section-s5 .wpo-features-item .wpo-features-text h2 a {
    color: #212158;
}

.wpo-features-section-s5 .wpo-features-item .wpo-features-text h2 a:hover {
    color: #ef5f34;
}

.wpo-features-section-s5 .wpo-features-item .wpo-features-text p {
    margin-bottom: 0;
}

.wpo-features-section-s5 .col:last-child .wpo-features-item {
    margin-bottom: 0;
}

/* 8.2 wpo-map-section */
@media (max-width: 991px) {
    .wpo-map-section {
        padding-top: 90px;
    }
}

.wpo-map-section .wpo-map-item {
    padding: 20px;
    background: #cbdee5;
    border-radius: 20px;
}

.wpo-map-section .wpo-map-item iframe {
    height: 560px;
}

/* 8.3 wpo-about-section-s5 */
@media (max-width: 575px) {
    .wpo-about-section-s5 {
        padding-top: 20px;
    }
}

.wpo-about-section-s5 .wpo-about-items {
    background: none;
}

.wpo-about-section-s5 .wpo-about-wrap {
    position: relative;
}

.wpo-about-section-s5 .wpo-about-wrap .ab-shape {
    position: absolute;
    left: -50%;
    top: -10%;
    opacity: 0.1;
    -webkit-animation: bounceTop 3s linear infinite;
    animation: bounceTop 3s linear infinite;
}

/* 8.4 wpo-team-area-s2 */
.wpo-team-area-s2 {
    background: #fff;
}

@media (max-width: 991px) {
    .wpo-team-area-s2 .wpo-team-item {
        margin-bottom: 30px;
    }
}

.wpo-team-area-s2 .wpo-team-img img {
    border-radius: 15px;
    width: 100%;
}

/* 8.5 wpo-campaign-area-s4 */
.wpo-campaign-area-s4 {
    background: #e9fafa;
}

.wpo-campaign-area-s4 .wpo-campaign-text-top {
    padding: 15px 6px;
}

/* 8.6 wpo-blog-section-s3 */
.wpo-blog-section-s3 {
    background: #fff;
    padding-bottom: 0;
}

/*--------------------------------------------------------------
9. Home-style-6
--------------------------------------------------------------*/
/* 9.1 wpo-about-section-s5 */
.wpo-about-section-s6:before {
    display: none;
}

.wpo-about-section-s6 .wpo-about-items {
    background: none;
}

.wpo-about-section-s6 .wpo-about-items .wpo-about-wrap .wpo-about-img {
    margin: 0;
    position: relative;
    z-index: 1;
}

.wpo-about-section-s6 .wpo-about-items .wpo-about-wrap .wpo-about-img::before {
    display: none;
}

.wpo-about-section-s6 .wpo-about-items .wpo-about-wrap .wpo-about-img .shp-1,
.wpo-about-section-s6 .wpo-about-items .wpo-about-wrap .wpo-about-img .shp-2 {
    position: absolute;
    right: -10px;
    top: -10px;
    width: 199px;
    height: 199px;
    background: linear-gradient(to left, rgba(93, 196, 184, 0.75), #41b2a5);
    z-index: -1;
}

.wpo-about-section-s6 .wpo-about-items .wpo-about-wrap .wpo-about-img .shp-2 {
    right: auto;
    top: auto;
    left: -10px;
    bottom: -10px;
    width: 199px;
    height: 199px;
    background: linear-gradient(to left, rgba(239, 95, 52, 0.75), #e34212);
}

.wpo-about-section-s6 .wpo-about-items .wpo-about-wrap .wpo-about-img img {
    border-radius: 0px;
}

@media (max-width: 991px) {
    .wpo-about-section-s6 .wpo-about-items .wpo-about-wrap .wpo-about-img {
        margin-bottom: 30px;
    }
}

.wpo-about-section-s6 .wpo-about-items .wpo-about-text {
    padding-left: 20px;
    max-width: 100%;
}

@media (max-width: 991px) {
    .wpo-about-section-s6 .wpo-about-items .wpo-about-text {
        padding-left: 0;
        padding-top: 20px;
    }
}

/* 9.2 wpo-features-section-s6  */
.wpo-features-section-s6 {
    background: #e9fafa;
}

/*--------------------------------------------------------------
10. about-page
--------------------------------------------------------------*/

.wpo-about-video-area .wpo-about-video-item h2 {
    font-size: 36px;
    max-width: 625px;
    font-weight: 700;
    text-align: center;
    margin: auto;
    line-height: 55px;
    margin-top: 45px;
}
@media (max-width: 767px) { 
    .wpo-about-video-area .wpo-about-video-item h2 {
        font-size: 25px;
        line-height: 35px;
        margin-top: 25px;
    }
}
.wpo-about-video-area .wpo-about-video-item span {
    color: #5dc4b8;
}

.wpo-about-video-area .row {
    padding-bottom: 60px;
}

.wpo-about-video-area .wpo-about-video-img {
    position: relative;
}

.wpo-about-video-area .wpo-about-video-img:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    content: "";
    z-index: 1;
}

@media (max-width: 767px) { 
    .wpo-about-video-area .wpo-about-video-img:after {
        display: none;
    }
}

.wpo-about-video-area .wpo-about-video-img:after {
    position: absolute;
    left: -30px;
    top: -30px;
    width: 107%;
    height: 56%;
    background: linear-gradient(to left, #5dc4b8, #40aea2);
    content: "";
    z-index: -1;
}

.wpo-about-video-area .wpo-about-video-img img {
    width: 100%;
}

.wpo-about-video-area .video-holder a {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.5);
    width: 83px;
    height: 83px;
    border-radius: 83px;
    display: inline-block;
    -webkit-animation: spineer 2s infinite;
    animation: spineer 2s infinite;
    z-index: 99;
    border: 1px solid #fff;
}

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

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

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

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

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

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

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

@media (max-width: 1200px) {
    .wpo-about-video-img:after {
        left: -30px;
        top: -30px;
        width: 106%;
        height: 56%;
    }
}

@media (max-width: 992px) {
    .wpo-about-video-img:after {
        left: -18px;
        top: -30px;
        width: 105%;
        height: 56%;
    }

    .wpo-team-area-2 {
        padding-bottom: 70px;
    }
}

@media (max-width: 767px) {
    .wpo-about-video-img:after {
        left: -7px;
        top: -12px;
        width: 102%;
        height: 56%;
    }
}

@media (max-width: 590px) {
    .wpo-about-video-img:after {
        left: -7px;
        top: -12px;
        width: 104%;
        height: 56%;
    }

    .wpo-about-video-item h2 {
        font-size: 27px;
        line-height: 35px;
    }

    .wpo-about-video-area .row {
        padding-bottom: 60px;
    }


}

/*--------------------------------------------------------------
11. volunteer page
--------------------------------------------------------------*/
.volunteer-area {
    padding: 120px 0 45px;
}

.volunteer-wrap {
    padding-bottom: 120px;
}

.volunter-img {
    padding: 30px;
}

.volunter-img img {
    width: 100%;
}

.volunteer-img-wrap {
    box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.15);
}

.volunteer-contact-form form input,
.volunteer-contact-form form select,
.volunteer-contact-form form label,
.volunteer-contact-form form textarea {
    border: 1px solid #d0d4df;
    padding-left: 15px;
    height: 50px;
    width: 100%;
}

.volunteer-contact-form form label {
    line-height: 50px;
    font-weight: 400;
    font-size: 14px;
}

.volunteer-contact-form form label.error {
    height: 15px;
    border: 0;
    line-height: 10px;
    padding-left: 0;
}

.volunteer-contact-form .form-group-in input {
    opacity: 0;
    visibility: hidden;
    position: absolute;
}

.volunteer-contact-form form textarea {
    height: 100px;
}

.volunteer-contact-form .form-group-in {
    position: relative;
}

.volunteer-contact-form .form-group-in i {
    position: absolute;
    right: 30px;
    top: 17px;
    font-size: 20px;
}

.volunteer-contact-form .form-group {
    margin-bottom: 30px;
}

.volunteer-contact-form {
    max-width: 760px;
    margin: auto;
    padding: 50px 40px;
    background: #fff;
    margin-top: -295px;
    position: relative;
    z-index: 1;
}

.volunteer-contact-form:after {
    position: absolute;
    left: 0px;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #fff;
    z-index: -1;
}

.volunteer-contact-form:before {
    position: absolute;
    left: -7px;
    bottom: -8px;
    width: 102%;
    height: 47%;
    content: "";
    background: #d9f7eb;
    z-index: -1;
}

.volunteer-contact-form h2 {
    margin-top: 0;
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
}

@media (max-width: 1200px) {
    .volunteer-contact-form {
        max-width: 635px;
        margin-top: -210px;
    }

    .volunteer-contact-form:before {
        height: 62%;
        width: 103%;
    }
}

@media (max-width: 767px) {
    .volunteer-contact-form {
        margin-top: 0px;
        padding: 14px 16px;
        box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.15);
        margin-top: 50px;
        padding-top: 30px;
    }

    .volunteer-contact-form h2 {
        font-size: 23px;
    }

    .volunteer-area {
        padding: 70px 0 0;
    }
}

.volunteer-contact-form .submit-area {
    text-align: center;
}

/*--------------------------------------------------------------
12. cause-single-page
--------------------------------------------------------------*/
.wpo-case-details-tab {
    padding: 15px 30px;
    border: 1px solid #ebebeb;
    margin-top: 40px;
}

.wpo-case-details-tab .nav li a {
    display: block;
    width: 160px;
    height: 45px;
    line-height: 30px;
    text-align: center;
    border-radius: 40px;
    color: #2d4277;
    transition: all 0.5s;
    font-weight: 600;
    box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.1);
    margin-right: 10px;
    border: none;
}

.wpo-case-details-tab .nav li.active a,
.wpo-case-details-tab .nav li:hover a {
    background: #ef5f34;
    color: #fff;
    outline: none;
    border-radius: 40px;
    border: none;
}

.nav-tabs {
    border-bottom: none;
}

@media (max-width: 767px) {
    .nav-tabs {
        justify-content: center;
    }
}

.wpo-case-details-text {
    margin-top: 50px;
}

.case-b-text {
    margin-top: 40px;
}

#Description {
    padding: 15px 30px;
    border: 1px solid #ebebeb;
}

@media (max-width: 575px) {
    #Description {
        padding: 15px 2px;
    }
}

.wpo-case-details-text .wpo-case-text-top p {
    margin-bottom: 30px;
}

.wpo-case-details-tab .event-b-text {
    margin-top: 40px;
}

.wpo-case-details-text .wpo-case-content h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.wpo-case-details-text .wpo-case-content h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

.case-bb-text ul {
    display: unset;
    list-style: none;
}

.case-bb-text ul li {
    font-size: 15px;
    font-size: 0.9375rem;
    position: relative;
    padding-left: 20px;
    padding-bottom: 10px;
}

.case-bb-text ul li:before {
    content: "";
    background: #ef5f34;
    width: 6px;
    height: 6px;
    position: absolute;
    left: 0;
    top: 6px;
}

.wpo-case-details-area .wpo-blog-single-section .comments-area {
    margin-top: 0;
}

.wpo-donations-amount,
.wpo-donations-details,
.wpo-doanation-payment {
    padding: 30px;
    border: 1px solid #ebebeb;
    margin-bottom: 40px;
}

.wpo-donations-amount h2,
.wpo-donations-details h2,
.wpo-doanation-payment h2 {
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 600;
    position: relative;
    text-transform: capitalize;
    margin-bottom: 30px;
    margin-top: 0;
}

.wpo-donations-amount input,
.wpo-donations-details input,
.wpo-donations-details textarea {
    background: transparent;
    width: 100%;
    height: 50px;
    border: 0;
    border: 1px solid #ebebeb;
    padding-left: 15px;
    border-radius: 0;
    box-shadow: none !important;
    color: #525252;
    border-radius: 5px;
    margin-bottom: 30px;
}

.wpo-donations-details textarea {
    height: 135px;
}

.wpo-donations-details .form-group .error {
    margin-bottom: 20px;
}

.wpo-donations-amount input:focus,
.wpo-donations-details input:focus,
.wpo-donations-details textarea:focus {
    border-color: #ef5f34;
}

.payment-name ul li input {
    margin-right: 0;
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.wpo-payment-select ul {
    list-style: none;
}

.payment-name ul {
    display: flex;
    margin-top: 30px;
    flex-wrap: wrap;
}

.wpo-payment-area form {
    overflow: unset !important;
}

.payment-name ul li {
    width: 100px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    margin-bottom: 5px;
}

.payment-name ul {
    list-style: none;
}

.payment-name ul li input {
    margin-right: 0;
}

.payment-name ul li {
    margin-right: 15px;
}

.wpo-payment-area h2 {
    padding-bottom: 40px;
    margin-bottom: 0;
}

.wpo-payment-select ul {
    display: flex;
}

.wpo-payment-select ul li {
    margin-right: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #5B5B5B;
}

.wpo-payment-select label {
    font-size: 18px;
    font-weight: 600;
}

.wpo-payment-area h2 {
    font-size: 20px;
    color: #878787;
    font-weight: 700;
}

.wpo-payment-area h2 span {
    font-size: 30px;
    color: #ff493c;
}

.wpo-payment-area {
    width: 100%;
}

.payment-name ul li input {
    margin-right: 0;
    position: absolute;
    z-index: -1;
}

.payment-name ul li input:checked~label {
    background: #fcebbd;
}

.payment-name label {
    width: 100%;
    border: 1px solid transparent;
    cursor: pointer;
}

.payment-name .visa label {
    border: 1px solid #0057A0;
}

.payment-name .mas label {
    border: 1px solid #CC0000;
}

.payment-name .ski label {
    border: 1px solid #691A5F;
}

.payment-name .pay label {
    border: 1px solid #019CDE;
}

.wpo-payment-option {
    padding: 0 15px;
}

.payment-name.active {
    display: block;
}

.wpo-payment-option.active .payment-name {
    display: none !important;
}

.wpo-payment-area .form-style input {
    width: 100%;
    margin-bottom: 15px;
    padding-left: 20px;
    height: 40px;
    background: #fff;
    border-radius: 2px;
    border: none;
    border: 1px solid #ebebeb;
}

.wpo-payment-area .form-style input:focus {
    border: 1px solid #ef5f34;
}

.wpo-payment-area .contact-form {
    margin-top: 40px;
}

#Donations .theme-btn,
#Donations .theme-btn-s3,
#Donations .theme-btn-s4,
#Donations .view-cart-btn {
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: none;
}

#Donations .submit-area {
    text-align: center;
}

.progress-sub .progress-section {
    padding-top: 20px;
}

.progress-sub .progress {
    height: 8px;
    overflow: unset;
    background-color: #ffdcd1;
    margin-bottom: 15px;
}

.progress-sub .progress .progress-bar {
    border-radius: 15px;
    box-shadow: none;
    position: relative;
    -webkit-animation: animate-positive 4s;
    animation: animate-positive 4s;
    background: #ef5f34;
    height: 8px;
}

.progress-sub .progress-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #F26522;
    transition: width 0.6s ease;
    overflow: unset;
}

.progress-sub .progress .progress-value {
    text-align: center;
    left: 90%;
    position: absolute;
    color: #212158;
    font-weight: 700;
    font-size: 14px;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.45);
    top: -30px;
    line-height: 20px;
}

.progress-sub ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.progress-sub ul li {
    font-size: 14px;
    color: #212158;
    display: flex;
    align-items: center;
}

@media (max-width: 575px) {
    .progress-sub ul li {
        font-size: 13px;
    }
}

.progress-sub ul li span {
    font-weight: 700;
}

.progress-sub ul li span a {
    color: #212158;
}

.progress-sub ul li span a:hover {
    color: #ef5f34;
}

@media (max-width: 992px) {
    .wpo-event-details-wrap {
        margin-bottom: 30px;
    }
}

@media (max-width: 590px) {
    .wpo-case-details-text .wpo-case-content h2 {
        font-size: 18px;
    }

    .wpo-case-details-tab .nav li a {
        margin-bottom: 20px;
    }

    .wpo-case-details-tab .nav li:last-child a {
        margin-bottom: 0;
    }

    .wpo-case-details-text .wpo-case-text-top {
        padding: 8px;
    }

    .wpo-payment-select ul {
        display: flex;
        flex-wrap: wrap;
    }

    .wpo-doanation-payment {
        padding: 20px 10px;
    }
}

.wpo-donate-header h2 {
    margin-bottom: 50px;
    text-align: center;
    font-size: 36px;
    font-weight: 500;
    margin-top: 0;
}

.br-top {
    border-top: 1px solid #ebebeb;
    padding: 60px 0;
}

/*----------------------------------------------
13. event-details-page
----------------------------------------------*/
.wpo-event-details-text {
    margin-top: 50px;
}

.wpo-event-details-text h2 {
    margin-bottom: 30px;
}

.wpo-event-details-wrap {
    margin-top: 35px;
}

.wpo-event-details-tab .nav {
    justify-content: space-between;
    display: flex;
}

.wpo-event-details-tab .nav-tabs&gt;li {
    margin-bottom: -1px;
    width: 100%;
    flex-basis: 33.33%;
}

.wpo-event-details-wrap {
    border: 1px solid #ebebeb;
}

.wpo-event-details-tab .nav li a {
    display: block;
    text-align: center;
    color: #2d4277;
    transition: all 0.5s;
    font-weight: 700;
    margin-right: 1px;
    border: none;
    border-radius: 0px;
    background: #f6f6f6;
    border-bottom: none;
    border-top: 4px solid transparent;
    line-height: 20px;
    height: 50px;
}

.wpo-event-details-tab .nav li:last-child a {
    margin-right: -1px;
}

.wpo-event-details-tab .nav li a.active,
.wpo-event-details-tab .nav li:hover a {
    background: #fff;
    outline: none;
    border: none;
    color: #2d4277;
    border-top: 4px solid #ef5f34;
}

.wpo-event-details-content {
    padding: 30px;
}

#Schedule ul {
    list-style: none;
    margin-top: 30px;
     padding-left: 0;
}

#Schedule ul li {
    font-size: 15px;
    font-size: 0.9375rem;
    position: relative;
    padding-left: 20px;
    padding-bottom: 10px;
}

#Schedule ul li:before {
    content: "";
    background: #ef5f34;
    width: 6px;
    height: 6px;
    position: absolute;
    left: 0;
    top: 6px;
}

#Map .contact-map iframe {
    width: 100%;
    height: 500px;
}

.event-contact .wpo-donations-details {
    border: none;
    padding: 0;
    margin-bottom: 0;
}

.event-contact .wpo-donations-details .theme-btn,
.event-contact .wpo-donations-details .theme-btn-s3,
.event-contact .wpo-donations-details .theme-btn-s4,
.event-contact .wpo-donations-details .view-cart-btn {
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: none;
    margin-top: 20px;
}

.event-contact .wpo-donations-details .wpcf7-submit {
    color: #fff;
    width: auto;
    background: #ef5f34;
    padding: 0 35px;
    margin-bottom: 0;
}
@media (max-width: 590px) {
    .wpo-event-details-tab .nav li a {
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    .wpo-event-details-tab .nav {
        flex-wrap: wrap;
    }

    .wpo-event-details-tab .nav li a {
        margin-bottom: 15px;
        padding: 12px;
    }
}

.wpo-event-img img,
.wpo-case-details-img img {
    width: 100%;
}

/*--------------------------------------------------------------
14. wpo-service-single-section
--------------------------------------------------------------*/
@media (max-width: 991px) {
    .wpo-service-single-section {
        padding-bottom: 40px;
    }
}
@media (max-width: 767px) {
    .wpo-service-single-section {
        padding-bottom: 0px;
    }
}

.wpo-service-single-section .wpo-service-single-wrap img {
    width: 100%;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-service-single-content .wpo-service-single-content-des {
    padding: 60px 0;
}

@media (max-width: 767px) {
    .wpo-service-single-section .wpo-service-single-wrap .wpo-service-single-content .wpo-service-single-content-des {
        padding: 35px 0;
    }
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-service-single-content .wpo-service-single-content-des h2 {
    font-size: 33px;
    font-family: "Roboto Slab", serif;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .wpo-service-single-section .wpo-service-single-wrap .wpo-service-single-content .wpo-service-single-content-des h2 {
        font-size: 25px;
        margin-bottom: 16px;
    }
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-service-single-content .wpo-service-single-content-des p {
    margin-bottom: 30px;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-service-single-content .wpo-service-single-content-des .wpo-service-single-sub-img {
    margin-top: 50px;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-service-single-content .wpo-service-single-content-des .wpo-service-single-sub-img ul {
    display: flex;
    list-style: none;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-service-single-content .wpo-service-single-content-des .wpo-service-single-sub-img li {
    padding-left: 10px;
    padding-right: 10px;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-service-single-content .wpo-service-single-content-des .wpo-service-single-sub-img li:last-child {
    padding-left: 10px;
    padding-right: 0;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-solutions-section h2 {
    font-size: 33px;
    font-family: "Roboto Slab", serif;
    margin-bottom: 30px;
}

@media (max-width: 575px) {
    .wpo-service-single-section .wpo-service-single-wrap .wpo-solutions-section h2 {
        font-size: 25px;
    }
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-solutions-section .wpo-solutions-item {
    background: #fff;
    padding: 30px 25px;
    margin-bottom: 30px;
    box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.1);
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-solutions-section .wpo-solutions-item .wpo-solutions-icon i:before {
    font-size: 50px;
    color: #5dc4b8;
    line-height: 1;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-solutions-section .wpo-solutions-item .wpo-solutions-text h2 {
    font-size: 22px;
    font-weight: 500;
    margin: 20px 0;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-solutions-section .wpo-solutions-item .wpo-solutions-text h2 a {
    color: #212158;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-solutions-section .wpo-solutions-item .wpo-solutions-text h2 a:hover {
    color: #ef5f34;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-solutions-section .wpo-solutions-item .wpo-solutions-text p {
    margin-bottom: 0;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-benefits-section {
    padding-top: 30px;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-benefits-section h2 {
    font-size: 33px;
    font-family: "Roboto Slab", serif;
    margin-bottom: 30px;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-benefits-section .accordion {
    border-top: 1px solid #e1e1e1;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-benefits-section .accordion-item {
    border: 0;
    border-bottom: 1px solid #e1e1e1;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-benefits-section .accordion-item .accordion-body {
    padding-left: 0;
    padding-right: 0;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-benefits-section .accordion-item button {
    padding: 20px;
    border: 0;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 20px;
    color: #212158;
    text-align: left;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-benefits-section .accordion-item button::after {
    background: none;
    font-family: "themify";
    content: "";
    font-size: 15px;
    transform: rotate(0deg);
    font-weight: 700;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-benefits-section .accordion-item button.collapsed {
    color: #373b3e;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-benefits-section .accordion-item button.collapsed::after {
    content: "";
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-benefits-section .accordion-item button:focus {
    box-shadow: none;
    outline: none;
    border-color: #e1e1e1;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-benefits-section .accordion-item .accordion-collapse {
    border: 0;
}

.wpo-service-single-section .wpo-service-single-wrap .wpo-benefits-section .accordion-button {
    background: transparent;
}

.wpo-single-sidebar {
    padding-left: 20px;
}

@media (max-width: 991px) {
    .wpo-single-sidebar {
        padding-left: 0;
        margin-top: 60px;
    }
}

.wpo-single-sidebar .widget {
    padding: 30px 40px;
    border: 1px solid #e1e1e1;
    margin-bottom: 40px;
}

@media (max-width: 1200px) {
    .wpo-single-sidebar .widget {
        padding: 20px;
    }
}

.wpo-single-sidebar .widget h2 {
    font-size: 25px;
    font-family: "Roboto Slab", serif;
    padding-bottom: 35px;
    position: relative;
    text-align: center;
    display: block;
    margin-bottom: 30px;
}

.wpo-single-sidebar .widget h2::before {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    background: url(../images/Single-title-shape.png) no-repeat right center;
    content: "";
    width: 52px;
    height: 20px;
}

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

.wpo-single-sidebar .wpo-service-widget ul li a {
    display: block;
    padding: 15px 0;
    font-size: 16px;
    color: #212158;
    font-weight: 600;
    border-bottom: 1px solid #e1e1e1;
    padding-left: 30px;
    position: relative;
}

.wpo-single-sidebar .wpo-service-widget ul li a:before {
    position: absolute;
    left: 0;
    top: 15px;
    font-family: "themify";
    content: "";
    font-size: 14px;
    color: #ef5f34;
}

.wpo-single-sidebar .wpo-service-widget ul li a:hover {
    color: #ef5f34;
}

.wpo-single-sidebar .wpo-service-widget ul li:last-child a {
    padding-bottom: 0;
    border-bottom: 0;
}

.wpo-single-sidebar .wpo-service-widget ul li:first-child a {
    padding-top: 0;
}

.wpo-single-sidebar .wpo-service-widget ul li:first-child a:before {
    top: 2px;
}

.wpo-single-sidebar .wpo-newsletter-widget p {
    font-size: 20px;
    font-family: "Roboto Slab", serif;
    color: #212158;
    text-align: center;
}

.wpo-single-sidebar .wpo-newsletter-widget span {
    font-size: 15px;
    color: #848892;
}

.wpo-single-sidebar .wpo-newsletter-widget span a {
    color: #212158;
    font-weight: 700;
}

.wpo-single-sidebar .wpo-newsletter-widget span a:hover {
    color: #ef5f34;
}

.wpo-single-sidebar .wpo-newsletter-widget .form input {
    border: 0;
    display: block;
    width: 100%;
    height: 50px;
    border-radius: 50px;
    border: 1px solid #e1e1e1;
    padding: 15px;
    text-align: center;
}

.wpo-single-sidebar .wpo-newsletter-widget .form input:focus {
    box-shadow: none;
}

.wpo-single-sidebar .wpo-newsletter-widget .form button {
    background: #ef5f34;
    width: 100%;
    height: 50px;
    border-radius: 50px;
    text-align: center;
    color: #fff;
    border: none;
    margin: 20px 0;
}

.wpo-single-sidebar .wpo-instagram-widget ul {
    display: flex;
    flex-wrap: wrap;
}

.wpo-single-sidebar .wpo-instagram-widget ul li {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    margin-bottom: 5px;
    padding: 0px 3px;
}

.wpo-single-sidebar .wpo-instagram-widget ul li img {
    width: 100%;
}

.wpo-single-sidebar .wpo-contact-widget {
    border: 0;
    background: #ef5f34;
}

.wpo-single-sidebar .wpo-contact-widget h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: left;
    color: #fff;
    margin-bottom: 20px;
}

.wpo-single-sidebar .wpo-contact-widget h2::before {
    left: 28px;
    background: url(../images/Single-title-shape2.png) no-repeat right center;
}

.wpo-single-sidebar .wpo-contact-widget p {
    color: #fff;
    font-size: 18px;
}

.wpo-single-sidebar .wpo-contact-widget a {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #fff;
    font-size: 18px;
    color: #fff;
    padding-right: 90px;
    position: relative;
    margin-top: 10px;
}

.wpo-single-sidebar .wpo-contact-widget a::before {
    font-family: "themify";
    content: "";
    font-size: 18px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

/*--------------------------------------------------------------
15. wpo-project-section
--------------------------------------------------------------*/
.wpo-gallery-section.wpo-gallery-section-s2 .wpo-gallery-container .grid {
    width: 33.33%;
}

@media (max-width: 991px) {
    .wpo-gallery-section.wpo-gallery-section-s2 .wpo-gallery-container .grid {
        width: 50%;
    }
}

@media (max-width: 575px) {
    .wpo-gallery-section.wpo-gallery-section-s2 .wpo-gallery-container .grid {
        width: 100%;
        float: none;
    }
}

/*--------------------------------------------------------------
9. wpo-project-single-section
--------------------------------------------------------------*/
@media (max-width: 991px) {
    .wpo-project-single-section {
        padding-bottom: 60px;
    }
}

.wpo-project-single-section .wpo-project-single-wrap {
    /*** tag-share ***/
    /*** more-posts ***/
}

.wpo-project-single-section .wpo-project-single-wrap img {
    width: 100%;
}

.wpo-project-single-section .wpo-project-single-wrap .wpo-project-single-content .wpo-project-single-content-des {
    padding: 60px 0;
}

@media (max-width: 767px) {
    .wpo-project-single-section .wpo-project-single-wrap .wpo-project-single-content .wpo-project-single-content-des {
        padding: 35px 0;
    }
}

.wpo-project-single-section .wpo-project-single-wrap .wpo-project-single-content .wpo-project-single-content-des h2 {
    font-size: 33px;
    font-family: "Roboto Slab", serif;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .wpo-project-single-section .wpo-project-single-wrap .wpo-project-single-content .wpo-project-single-content-des h2 {
        font-size: 25px;
        margin-bottom: 16px;
    }
}

.wpo-project-single-section .wpo-project-single-wrap .wpo-project-single-content .wpo-project-single-content-des p {
    margin-bottom: 30px;
}

.wpo-project-single-section .wpo-project-single-wrap .wpo-project-single-content .wpo-project-single-content-des .wpo-project-single-content-des-wrap {
    display: flex;
}

@media (max-width: 1200px) {
    .wpo-project-single-section .wpo-project-single-wrap .wpo-project-single-content .wpo-project-single-content-des .wpo-project-single-content-des-wrap {
        flex-wrap: wrap;
    }
}

.wpo-project-single-section .wpo-project-single-wrap .wpo-project-single-content .wpo-project-single-content-des .wpo-project-single-content-des-wrap .wpo-project-single-content-des-left {
    flex-basis: 65%;
    padding-right: 40px;
}

@media (max-width: 1200px) {
    .wpo-project-single-section .wpo-project-single-wrap .wpo-project-single-content .wpo-project-single-content-des .wpo-project-single-content-des-wrap .wpo-project-single-content-des-left {
        flex-basis: 100%;
    }
}

.wpo-project-single-section .wpo-project-single-wrap .wpo-project-single-content .wpo-project-single-content-des .wpo-project-single-content-des-wrap .wpo-project-single-content-des-right {
    max-width: 380px;
    flex-basis: 35%;
}

@media (max-width: 1200px) {
    .wpo-project-single-section .wpo-project-single-wrap .wpo-project-single-content .wpo-project-single-content-des .wpo-project-single-content-des-wrap .wpo-project-single-content-des-right {
        flex-basis: 100%;
        margin-bottom: 40px;
    }
}

.wpo-project-single-section .wpo-project-single-wrap .wpo-project-single-content .wpo-project-single-content-des .wpo-project-single-content-des-wrap .wpo-project-single-content-des-right ul {
    list-style: none;
    padding: 50px 40px;
    border: 1px solid #e1e1e1;
}

@media (max-width: 575px) {
    .wpo-project-single-section .wpo-project-single-wrap .wpo-project-single-content .wpo-project-single-content-des .wpo-project-single-content-des-wrap .wpo-project-single-content-des-right ul {
        padding: 50px 20px;
    }
}

.wpo-project-single-section .wpo-project-single-wrap .wpo-project-single-content .wpo-project-single-content-des .wpo-project-single-content-des-wrap .wpo-project-single-content-des-right ul li {
    display: flex;
    padding: 15px 0;
    font-size: 16px;
    color: #212158;
    font-weight: 600;
    border-bottom: 1px solid #ebebeb;
    position: relative;
    justify-content: space-between;
    font-weight: 600;
}

.wpo-project-single-section .wpo-project-single-wrap .wpo-project-single-content .wpo-project-single-content-des .wpo-project-single-content-des-wrap .wpo-project-single-content-des-right ul li span {
    flex-basis: 70%;
    color: #4f555a;
    font-weight: 400;
}

.wpo-project-single-section .wpo-project-single-wrap .wpo-project-single-content .wpo-project-single-content-des .wpo-project-single-content-des-wrap .wpo-project-single-content-des-right ul li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.wpo-project-single-section .wpo-project-single-wrap .wpo-project-single-content .wpo-project-single-content-des .wpo-project-single-content-des-wrap .wpo-project-single-content-des-right ul li:first-child {
    padding-top: 0;
}

.wpo-project-single-section .wpo-project-single-wrap .wpo-project-single-content .wpo-project-single-content-des .wpo-project-single-sub-img ul {
    display: flex;
    list-style: none;
}

.wpo-project-single-section .wpo-project-single-wrap .wpo-project-single-content .wpo-project-single-content-des .wpo-project-single-sub-img li {
    padding-left: 0px;
    padding-right: 10px;
}

.wpo-project-single-section .wpo-project-single-wrap .wpo-project-single-content .wpo-project-single-content-des .wpo-project-single-sub-img li:last-child {
    padding-left: 10px;
    padding-right: 0;
}

.wpo-project-single-section .wpo-project-single-wrap .wpo-solutions-section h2 {
    font-size: 33px;
    font-family: "Roboto Slab", serif;
    margin-bottom: 30px;
}

@media (max-width: 575px) {
    .wpo-project-single-section .wpo-project-single-wrap .wpo-solutions-section h2 {
        font-size: 25px;
    }
}

.wpo-project-single-section .wpo-project-single-wrap .wpo-solutions-section .wpo-solutions-item {
    background: #fff;
    padding: 30px 25px;
    margin-bottom: 30px;
    box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.1);
}

.wpo-project-single-section .wpo-project-single-wrap .wpo-solutions-section .wpo-solutions-item .wpo-solutions-icon .fi {
    font-size: 50px;
    color: #5dc4b8;
    line-height: 1;
}

.wpo-project-single-section .wpo-project-single-wrap .wpo-solutions-section .wpo-solutions-item .wpo-solutions-text h2 {
    font-size: 22px;
    font-weight: 500;
    margin: 20px 0;
}

.wpo-project-single-section .wpo-project-single-wrap .wpo-solutions-section .wpo-solutions-item .wpo-solutions-text h2 a {
    color: #212158;
}

.wpo-project-single-section .wpo-project-single-wrap .wpo-solutions-section .wpo-solutions-item .wpo-solutions-text h2 a:hover {
    color: #ef5f34;
}

.wpo-project-single-section .wpo-project-single-wrap .wpo-solutions-section .wpo-solutions-item .wpo-solutions-text p {
    margin-bottom: 0;
}

.wpo-project-single-section .wpo-project-single-wrap .tag-share {
    margin: 60px 0 40px;
    background: #eceffb;
    padding: 15px;
}

@media (max-width: 767px) {
    .wpo-project-single-section .wpo-project-single-wrap .tag-share {
        margin: 50px 0 30px;
        text-align: center;
    }
}

.wpo-project-single-section .wpo-project-single-wrap .tag-share .tag {
    display: inline-block;
    float: left;
    margin-top: 5px;
}

@media (max-width: 767px) {
    .wpo-project-single-section .wpo-project-single-wrap .tag-share .tag {
        display: block;
        margin: 0 auto;
        margin-bottom: 25px;
        float: none;
    }
}

.wpo-project-single-section .wpo-project-single-wrap .tag-share .share {
    display: flex;
    align-items: center;
    float: right;
}

.wpo-project-single-section .wpo-project-single-wrap .tag-share .share span {
    margin-right: 10px;
}

@media (max-width: 767px) {
    .wpo-project-single-section .wpo-project-single-wrap .tag-share .share {
        float: none;
        justify-content: center;
    }
}

.wpo-project-single-section .wpo-project-single-wrap .tag-share ul {
    overflow: hidden;
    list-style: none;
}

@media (max-width: 767px) {
    .wpo-project-single-section .wpo-project-single-wrap .tag-share ul {
        display: flex;
        justify-content: center;
    }
}

.wpo-project-single-section .wpo-project-single-wrap .tag-share ul li {
    float: left;
}

.wpo-project-single-section .wpo-project-single-wrap .tag-share .tag ul&gt;li+li,
.wpo-project-single-section .wpo-project-single-wrap .tag-share .share ul&gt;li+li {
    margin-left: 10px;
}

@media (max-width: 767px) {

    .wpo-project-single-section .wpo-project-single-wrap .tag-share .tag ul&gt;li+li,
    .wpo-project-single-section .wpo-project-single-wrap .tag-share .share ul&gt;li+li {
        margin-left: 2px;
    }
}

.wpo-project-single-section .wpo-project-single-wrap .tag-share .tag a {
    background-color: #fff;
    display: block;
    padding: 6px 18px;
    color: #212158;
    border-radius: 50px;
}

.wpo-project-single-section .wpo-project-single-wrap .tag-share .tag a:hover {
    background-color: #ef5f34;
    color: #fff;
}

.wpo-project-single-section .wpo-project-single-wrap .tag-share .share a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    font-size: 0.9333333333rem;
    text-align: center;
    color: #212158;
    border-radius: 50%;
    padding: 0;
    display: block;
    border: 1px solid #dadada;
}

.wpo-project-single-section .wpo-project-single-wrap .tag-share .share a:hover {
    background: #ef5f34;
    color: #fff;
    border-color: #ef5f34;
}

.wpo-project-single-section .wpo-project-single-wrap .more-posts {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .wpo-project-single-section .wpo-project-single-wrap .more-posts {
        display: block;
        text-align: center;
    }
}

.wpo-project-single-section .wpo-project-single-wrap .more-posts a {
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .wpo-project-single-section .wpo-project-single-wrap .more-posts a {
        justify-content: center;
        padding: 20px;
        border: 1px solid #ebebeb;
    }
}

.wpo-project-single-section .wpo-project-single-wrap .more-posts .post-img {
    max-width: 80px;
    margin-right: 20px;
}

.wpo-project-single-section .wpo-project-single-wrap .more-posts .post-img img {
    border-radius: 6px;
}

.wpo-project-single-section .wpo-project-single-wrap .more-posts .post-text span {
    display: block;
}

.wpo-project-single-section .wpo-project-single-wrap .more-posts .post-text span:first-child {
    color: #4f555a;
}

.wpo-project-single-section .wpo-project-single-wrap .more-posts .post-text span:last-child {
    color: #212158;
    font-size: 20px;
    font-family: "Roboto Slab", serif;
}

.wpo-project-single-section .wpo-project-single-wrap .more-posts .next-post .post-text {
    text-align: right;
}

.wpo-project-single-section .wpo-project-single-wrap .more-posts .next-post .post-img {
    margin-left: 20px;
}

@media (max-width: 767px) {
    .wpo-project-single-section .wpo-project-single-wrap .more-posts .next-post a {
        margin-top: 10px;
    }
}


.wpo-project-single-box ul {
    list-style: none;
    padding: 35px 30px;
    border: 1px solid #e1e1e1;
}

@media (max-width: 767px) {
    .wpo-project-single-box ul {
        padding: 30px 20px;
    }
}

.wpo-project-single-box ul li {
    display: flex;
    padding: 15px 0;
    font-size: 16px;
    color: #232f4b;
    font-weight: 500;
    border-bottom: 1px solid #ebebeb;
    position: relative;
    justify-content: space-between;
    font-weight: 600;
}

.wpo-project-single-box ul li:first-child {
    padding-top: 0;
}

.wpo-project-single-box ul li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.wpo-project-single-box ul li span {
    color: #4f555a;
    font-weight: 400;
    flex-basis: 68%;
}


@media screen and (min-width: 992px) {
    .project-single-content .project-article {
        background: #fff;
        padding: 50px 55px 75px;
        position: relative;
        -webkit-box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 10%);
        box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 10%);
    }
}
/*--------------------------------------------------------------
16. wpo-blog-pg-section
--------------------------------------------------------------*/
.wpo-blog-pg-section {
    /*** format-standard ***/
    /*** format-gallery ***/
    /*** format-quote ***/
    /*** format-video ***/
}

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

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

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

.wpo-blog-pg-section .wpo-blog-content .post .entry-media {
    margin-bottom: 20px;
}

.wpo-blog-pg-section .entry-meta {
    list-style: none;
    overflow: hidden;
    margin-bottom: 35px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;

}

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

.wpo-blog-pg-section .entry-meta ul {
    list-style: none;
    padding-left: 0;
}

.wpo-blog-pg-section .entry-meta ul li {
    font-weight: 600;
    font-size: 14px;
    float: left;
    text-transform: uppercase;
    color: #636893;
}

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

.wpo-blog-pg-section .entry-meta ul li a:hover {
    color: #ef5f34;
}

.wpo-blog-pg-section .entry-meta ul li i {
    position: relative;
    top: 2px;
    margin-right: 3px;
}
.wpo-blog-pg-section .entry-meta ul li i:before {
  color: #636893;
}
.wpo-blog-pg-section .entry-meta ul li:first-child i:before {
  font-size: 15px;
}
.wpo-blog-pg-section .entry-meta ul li:last-child i:before {
  position: relative;
  top: -2px;
}
.wpo-blog-pg-section .entry-meta ul li+li {
    margin-left: 20px;
    padding-left: 20px;
    position: relative;
}

@media (max-width: 440px) {
    .wpo-blog-pg-section .entry-meta ul li+li {
        margin-left: 0;
        padding-left: 0;
    }
}

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

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

.wpo-blog-pg-section .post h3 {
    font-size: 34px;
    font-size: 2.2666666667rem;
    line-height: 1.2em;
    font-weight: 600;
    margin: -0.27em 0 0.7em;
    font-family: "Roboto Slab", serif;
}

@media (max-width: 991px) {
    .wpo-blog-pg-section .post h3 {
        font-size: 25px;
        font-size: 1.6666666667rem;
    }
}

@media (max-width: 767px) {
    .wpo-blog-pg-section .post h3 {
        font-size: 22px;
        font-size: 1.4666666667rem;
    }
}

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

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

.wpo-blog-pg-section .post p {
    margin-bottom: 1.5em;
}

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

.wpo-blog-pg-section .post a.read-more {
    text-decoration: underline;
    color: #6e6e6e;
    text-transform: uppercase;
    font-family: "Roboto Slab", serif;
    font-size: 16px;
}

.wpo-blog-pg-section .post a.read-more:hover {
    color: #ef5f34;
}

.wpo-blog-pg-section .format-standard {
    position: relative;
}

.wpo-blog-pg-section .format-gallery {
    position: relative;
}

.wpo-blog-pg-section .format-gallery .owl-controls {
    width: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.wpo-blog-pg-section .format-gallery .owl-nav [class*=owl-]:hover {
    background: #ef5f34;
    color: #fff;
}

.wpo-blog-pg-section .format-gallery .owl-nav [class*=owl-] {
    background: #fff;
    width: 50px;
    height: 50px;
    line-height: 58px;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    color: #ef5f34;
    transition: all 0.3s;
    border: 0;
}

.wpo-blog-pg-section .format-gallery .owl-nav [class*=owl-] .fi::before {
    font-size: 20px;
}

.wpo-blog-pg-section .format-gallery .owl-nav .owl-prev,
.wpo-blog-pg-section .format-gallery .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.wpo-blog-pg-section .format-gallery .owl-nav .owl-prev {
    left: 15px;
}

.wpo-blog-pg-section .format-gallery .owl-nav .owl-next {
    right: 15px;
}

.wpo-blog-pg-section .format-quote {
    text-align: center;
    padding: 80px 60px;
    position: relative;
}

@media (max-width: 767px) {
    .wpo-blog-pg-section .format-quote {
        padding: 40px 20px;
    }
}

.wpo-blog-pg-section .format-quote p {
    margin-bottom: 0;
}

.wpo-blog-pg-section .format-quote:before {
    font-family: "Flaticon";
    content: "";
    font-size: 250px;
    font-size: 16.6666666667rem;
    color: #ecf3fb;
    margin-left: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.wpo-blog-pg-section .format-quote h3,
.wpo-blog-pg-section .format-quote p {
    position: relative;
}

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

.wpo-blog-pg-section .format-video .video-holder:before {
    content: "";
    background-color: #212158;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s;
    opacity: 0.5;
}

.wpo-blog-pg-section .format-video .video-holder:hover:before {
    opacity: 0.7;
}

.wpo-blog-pg-section .format-video .video-holder a {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 63px;
    height: 63px;
    line-height: 63px;
    background: #fff;
    border-radius: 50%;
    z-index: 1;
}

.wpo-blog-pg-section .format-video .video-holder a:before {
    position: absolute;
    left: -12px;
    top: -12px;
    width: 140%;
    height: 140%;
    background: rgba(255, 255, 255, 0.3);
    content: "";
    -webkit-animation: save-the-date-pulse 1s infinite;
    animation: save-the-date-pulse 1s infinite;
    border-radius: 50%;
    z-index: -1;
}

.wpo-blog-pg-section .format-video .video-holder .fi:before {
    font-size: 20px;
    font-size: 1.3333333333rem;
    color: #ef5f34;
}

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

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

@-webkit-keyframes save-the-date-pulse {
    from {
        transform: scale3d(1, 1, 1);
    }

    50% {
        transform: scale3d(0.95, 0.95, 0.95);
    }

    to {
        transform: scale3d(1, 1, 1);
    }
}

@keyframes save-the-date-pulse {
    from {
        transform: scale3d(1, 1, 1);
    }

    50% {
        transform: scale3d(0.95, 0.95, 0.95);
    }

    to {
        transform: scale3d(1, 1, 1);
    }
}

/*--------------------------------------------------------------
17. wpo-blog-single-section
--------------------------------------------------------------*/
.wpo-blog-single-section {
    /*** tag-share ***/
    /*** author-box ***/
    /*** more-posts ***/
    /*** comments area ***/
    /*** comment-respond ***/
}

.wpo-blog-single-section .entry-media {
    margin-bottom: 20px;
}

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

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

.wpo-blog-single-section .entry-meta ul {
    list-style: none;
    padding-left: 0;
}

.wpo-blog-single-section .entry-meta ul li {
    font-weight: 5600;
    font-size: 14px;
    float: left;
    text-transform: uppercase;
     color: #636893;
}

.wpo-blog-single-section .entry-meta ul li a {
    color: #636893;
}

.wpo-blog-single-section .entry-meta ul li a:hover {
    color: #ef5f34;
}
.wpo-blog-single-section .entry-meta ul li:first-child i:before {
  font-size: 15px;
}
.wpo-blog-single-section .entry-meta ul li:last-child i:before {
  position: relative;
  top: -2px;
}
.wpo-blog-single-section .entry-meta ul li i {
    position: relative;
    top: 2px;
    margin-right: 3px;
}
.wpo-blog-single-section .entry-meta ul li i:before {
     color: #636893;
}

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


@media (max-width: 440px) {
    .wpo-blog-single-section .entry-meta ul li+li {
        margin-left: 0;
        padding-left: 0;
    }
}

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

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

.wpo-blog-single-section .entry-media img {
    width: 100%;
}

.wpo-blog-single-section .post h2 {
    font-size: 35px;
    font-size: 2.3333333333rem;
    margin: -0.22em 0 0.7em;
    line-height: 1.3em;
    font-family: "Roboto Slab", serif;
}

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

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

.wpo-blog-single-section .post p {
    margin-bottom: 1.5em;
}

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

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

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

.wpo-blog-single-section .post blockquote {
    background-color: #fef6f3;
    color: #233d62;
    font-size: 20px;
    line-height: 1.6em;
    padding: 65px;
    margin-top: 60px;
    margin-bottom: 40px;
    border: 0;
    text-align: left;
    position: relative;
    text-decoration: underline;
}

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

.wpo-blog-single-section .post blockquote:before {
    font-family: "Flaticon";
    content: "\f12a";
    font-size: 20px;
    font-size: 1.3333333333rem;
    color: rgba(255, 255, 255, 0.5);
    position: absolute;
    left: 50%;
    top: -30px;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    line-height: 60px;
    border: 2px solid #fef6f3;
    color: #eee;
    border-radius: 50%;
}

.wpo-blog-single-section .post .gallery {
    overflow: hidden;
    margin: 40px -7.5px 0;
}

.wpo-blog-single-section .post .gallery&gt;div {
    width: calc(50% - 15px);
    float: left;
    margin: 0 7.5px 15px;
}

.wpo-blog-single-section .post .gallery img {
    width: 100%;
}

.wpo-blog-single-section .tag-share,
.wpo-blog-single-section .tag-share-s2 {
    color: #212158;
}
.wpo-blog-single-section .tag-share-s2 .share {
    display: flex;
}
.wpo-blog-single-section .tag-share-s2 .share span {
    color: #212158;
    font-weight: 600;
    font-family: "Roboto Slab", serif;
    padding-right: 15px;
    top: 4px;
    position: relative;
}
@media (max-width: 767px) {

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

.wpo-blog-single-section .tag-share ul,
.wpo-blog-single-section .tag-share-s2 ul {
    list-style: none;
    display: inline-block;
    overflow: hidden;
    padding-left: 0;
}

.wpo-blog-single-section .tag-share ul li,
.wpo-blog-single-section .tag-share-s2 ul li {
    float: left;
}

@media (max-width: 767px) {

    .wpo-blog-single-section .tag-share ul li,
    .wpo-blog-single-section .tag-share-s2 ul li {
        margin: 2px;
    }
}

.wpo-blog-single-section .tag-share ul&gt;li+li,
.wpo-blog-single-section .tag-share-s2 ul&gt;li+li {
    margin-left: 10px;
}

@media (max-width: 767px) {

    .wpo-blog-single-section .tag-share ul&gt;li+li,
    .wpo-blog-single-section .tag-share-s2 ul&gt;li+li {
        margin: 2px;
    }
}

.wpo-blog-single-section .tag-share .tag,
.wpo-blog-single-section .tag-share-s2 .tag {
    display: flex;
    align-items: center;
}

.wpo-blog-single-section .tag-share .tag&gt;span,
.wpo-blog-single-section .tag-share-s2 .tag&gt;span {
    font-family: "Roboto Slab", serif;
    color: #212158;
    font-weight: 600;
    display: inline-block;
    padding-right: 15px;
}

.wpo-blog-single-section .tag-share .tag ul,
.wpo-blog-single-section .tag-share-s2 .tag ul {
    list-style: none;
    position: relative;
}

.wpo-blog-single-section .tag-share .tag li,
.wpo-blog-single-section .tag-share-s2 .tag li {
    position: relative;
}

.wpo-blog-single-section .tag-share .tag a,
.wpo-blog-single-section .tag-share-s2 .tag a {
    font-size: 12px;
    font-size: 0.8rem;
    display: inline-block;
    padding: 5px 18px;
    color: #212158;
    background: #ecf4fb;
    border-radius: 5px;
    text-transform: uppercase;
}

@media (max-width: 767px) {

    .wpo-blog-single-section .tag-share .tag a,
    .wpo-blog-single-section .tag-share-s2 .tag a {
        font-size: 13px;
        font-size: 0.8666666667rem;
    }
}

.wpo-blog-single-section .tag-share .tag a:hover,
.wpo-blog-single-section .tag-share-s2 .tag a:hover {
    color: #ef5f34;
}

.wpo-blog-single-section .tag-share-s2 {
    margin: 0;
    border-bottom: 0;
}

.wpo-blog-single-section .tag-share-s2 .tag a {
    padding: 0;
    font-size: 16px;
    font-size: 1.0666666667rem;
    text-transform: capitalize;
    background: none;
    text-decoration: underline;
    color: #6e6e6e;
}


.wpo-blog-single-section .tag-share-s2 .share ul.share-list li a {
    width: 35px;
    height: 35px;
    line-height: 36px;
    text-align: center;
    border: 1px solid #eae6e6;
    border-radius: 50%;
    display: inline-block;
    font-size: 14px;
    font-size: 0.875rem;
    color: #627381;
    padding: 0;
}

.wpo-blog-single-section .tag-share-s2 .share ul.share-list&gt;li:first-child a {
    color: #3c5ba4;
}

.wpo-blog-single-section .tag-share-s2 .share ul.share-list&gt;li:nth-child(2) a {
    color: #47a0d9;
}

.wpo-blog-single-section .tag-share-s2 .share ul.share-list&gt;li:nth-child(3) a {
    color: #0073b1;
}

.wpo-blog-single-section .tag-share-s2 .share ul.share-list&gt;li:nth-child(4) a {
    color: #9c0343;
}

.wpo-blog-single-section .tag-share-s2 .share ul.share-list li a:hover {
    color: #fff;
    background: #3454d1;
}
.wpo-blog-single-section .author-box {
    margin: 35px 0 60px;
}

.wpo-blog-single-section .author-box .author-avatar {
    float: left;
}

@media (max-width: 767px) {
    .wpo-blog-single-section .author-box .author-avatar {
        float: none;
    }
}

.wpo-blog-single-section .author-box .author-avatar img {
    border-radius: 50%;
}

.wpo-blog-single-section .author-box .author-content {
    display: block;
    overflow: hidden;
    padding-left: 25px;
}

@media (max-width: 767px) {
    .wpo-blog-single-section .author-box .author-content {
        padding: 0;
        margin: 15px 0 0 0;
    }
}

.wpo-blog-single-section .author-box .author-content p {
    margin-bottom: 20px;
}

.wpo-blog-single-section .author-box .author-name {
    font-family: "Roboto Slab", serif;
    font-size: 24px;
    font-size: 1.6rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
    color: #212158;
}

.wpo-blog-single-section .author-box .social-link {
    display: inline-block;
    list-style: none;
}

.wpo-blog-single-section .author-box .social-link li {
    float: left;
    margin-right: 12px;
}

.wpo-blog-single-section .author-box .social-link a {
    display: block;
    font-size: 13px;
    font-size: 0.8666666667rem;
    color: #212158;
}

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

.wpo-blog-single-section .more-posts {
    overflow: hidden;
    border: 1px solid #d8e0f1;
    padding: 0 25px;
}

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

@media (max-width: 767px) {
    .wpo-blog-single-section .more-posts&gt;div {
        width: 100%;
        float: none;
    }
}

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

.wpo-blog-single-section .more-posts .previous-post,
.wpo-blog-single-section .more-posts .next-post {
    padding: 40px 0;
}

@media (max-width: 767px) {

    .wpo-blog-single-section .more-posts .previous-post,
    .wpo-blog-single-section .more-posts .next-post {
        padding: 25px 15px !important;
    }
}

.wpo-blog-single-section .more-posts .next-post {
    text-align: right;
    border-left: 1px solid #d8e0f1;
    padding-left: 15px;
    padding-right: 5px;
}

@media (max-width: 767px) {
    .wpo-blog-single-section .more-posts .next-post {
        border-left: 0;
        text-align: left;
        border-top: 1px solid #d8e0f1;
    }
}

.wpo-blog-single-section .more-posts .next-post .post-control-link {
    padding-right: 25px;
    position: relative;
}

@media (max-width: 767px) {
    .wpo-blog-single-section .more-posts .next-post .post-control-link {
        padding-right: 0;
    }
}

.wpo-blog-single-section .more-posts .next-post .post-control-link:before {
    font-family: "themify";
    content: "";
    position: absolute;
    right: 0;
    top: 0;
}

@media (max-width: 767px) {
    .wpo-blog-single-section .more-posts .next-post .post-control-link:before {
        display: none;
    }
}

.wpo-blog-single-section .more-posts .previous-post {
    padding-right: 15px;
    padding-left: 5px;
}

.wpo-blog-single-section .more-posts .previous-post .post-control-link {
    padding-left: 25px;
    position: relative;
}

@media (max-width: 767px) {
    .wpo-blog-single-section .more-posts .previous-post .post-control-link {
        padding-left: 0;
    }
}

.wpo-blog-single-section .more-posts .previous-post .post-control-link:before {
    font-family: "themify";
    content: "";
    position: absolute;
    left: 0;
    top: 0;
}

@media (max-width: 767px) {
    .wpo-blog-single-section .more-posts .previous-post .post-control-link:before {
        display: none;
    }
}

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

.wpo-blog-single-section .more-posts .post-control-link {
    font-size: 14px;
    font-size: 0.9333333333rem;
    color: #6e6e6e;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
}

.wpo-blog-single-section .more-posts .post-name {
    font-family: "Roboto Slab", serif;
    font-size: 18px;
    font-size: 1.2rem;
    color: #212158;
    margin: 0.7em 0 0;
}

@media (max-width: 991px) {
    .wpo-blog-single-section .more-posts .post-name {
        font-size: 18px;
        font-size: 1.2rem;
    }
}

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

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

.wpo-blog-single-section .comments-area li&gt;div {
    border-bottom: 1px solid #e4effb;
    padding: 35px;
}

@media (max-width: 991px) {
    .wpo-blog-single-section .comments-area li&gt;div {
        padding: 35px 25px;
    }
}

.wpo-blog-single-section .comments-area ol {
    list-style-type: none;
    padding-left: 0;
}

.wpo-blog-single-section .comments-area ol ul {
    padding-left: 30px;
    list-style-type: none;
}

.wpo-blog-single-section .comments-area ol&gt;li:last-child div {
    border-bottom: 0;
}

.wpo-blog-single-section .comments-area .comments-title {
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 1em;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 991px) {
    .wpo-blog-single-section .comments-area .comments-title {
        font-size: 20px;
        font-size: 1.3333333333rem;
    }
}

.wpo-blog-single-section .comments-area li&gt;div {
    position: relative;
}

.wpo-blog-single-section .comments-area .comment-theme {
    position: absolute;
    left: 35px;
}

@media (max-width: 767px) {
    .wpo-blog-single-section .comments-area .comment-theme {
        position: static;
    }
}

.wpo-blog-single-section .comments-area .comment-theme img {
    border-radius: 50%;
}

.wpo-blog-single-section .comments-area .comment-main-area {
    padding-left: 100px;
}

@media (max-width: 767px) {
    .wpo-blog-single-section .comments-area .comment-main-area {
        padding-left: 0;
        margin-top: 25px;
    }
}

.wpo-blog-single-section .comments-area .comment-main-area p {
    margin-bottom: 20px;
}

.wpo-blog-single-section .comments-area .comments-meta h4 {
    font-family: "Roboto Slab", serif;
    font-size: 18px;
    font-size: 1.2rem;
    color: #212158;
    font-weight: 600;
    margin: 0 0 1em;
}

.wpo-blog-single-section .comments-area .comments-meta h4 span {
    font-size: 15px;
    font-size: 1rem;
    color: #6e6e6e;
    font-weight: normal;
    text-transform: none;
    display: inline-block;
    padding-left: 5px;
    font-family: "Muli";
}

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

.wpo-blog-single-section .comments-area .comment-reply-link {
    font-size: 14px;
    font-size: 0.9333333333rem;
    font-weight: 600;
    color: #212158;
    text-align: center;
    border-radius: 50px;
    display: inline-block;
    font-family: "Muli";
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wpo-blog-single-section .comments-area .comment-reply-link:hover {
    color: #ef5f34;
}



.wpo-blog-single-section .comment-respond .comment-reply-title {
    font-size: 22px;
    font-size: 1.4666666667rem;
    margin: 0 0 1.5em;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 991px) {
    .wpo-blog-single-section .comment-respond .comment-reply-title {
        font-size: 20px;
        font-size: 1.3333333333rem;
    }
}

.wpo-blog-single-section .comment-respond form input,
.wpo-blog-single-section .comment-respond form textarea {
    background-color: #fff;
    width: 100%;
    height: 55px;
    border: 1px solid #a4adbe;
    padding: 6px 15px;
    margin-bottom: 15px;
    outline: 0;
    border-radius: 30px;
    box-shadow: none;
    transition: all 0.3s;
}

.wpo-blog-single-section .comment-respond form input:focus,
.wpo-blog-single-section .comment-respond form textarea:focus {
    box-shadow: none;
    border-color: #ef5f34;
}

@media (max-width: 991px) {

    .wpo-blog-single-section .comment-respond form input,
    .wpo-blog-single-section .comment-respond form textarea {
        height: 40px;
    }
}

.wpo-blog-single-section .comment-respond form textarea {
    height: 220px;
    padding: 15px;
}

@media (max-width: 991px) {
    .wpo-blog-single-section .comment-respond form textarea {
        height: 150px;
    }
}

.wpo-blog-single-section .comment-respond .form-inputs {
    overflow: hidden;
}

.wpo-blog-single-section .comment-respond .form-inputs&gt;input:nth-child(1) {
    width: 49%;
    float: left;
}

@media (max-width: 767px) {
    .wpo-blog-single-section .comment-respond .form-inputs&gt;input:nth-child(1) {
        width: 100%;
        float: none;
    }
}

.wpo-blog-single-section .comment-respond .form-inputs&gt;input:nth-child(2) {
    width: 49%;
    float: right;
}

@media (max-width: 767px) {
    .wpo-blog-single-section .comment-respond .form-inputs&gt;input:nth-child(2) {
        width: 100%;
        float: none;
    }
}

.wpo-blog-single-section .comment-respond .form-submit input {
    font-family: "Roboto Slab", serif;
    max-width: 180px;
    background-color: #1e2845;
    color: #fff;
    margin-bottom: 0;
    border: 0;
    outline: 0;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 1px;
    border-radius: 30px;
}

.wpo-blog-single-section .comment-respond .form-submit input:hover {
    background-color: #212158;
}

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

/*--------------------------------------------------------------
18. wpo-contact-pg-section
--------------------------------------------------------------*/
.wpo-contact-pg-section {
    padding-bottom: 0px;
}

.wpo-contact-pg-section .wpo-contact-title {
    max-width: 510px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 50px;
}

@media (max-width: 767px) {
    .wpo-contact-pg-section .wpo-contact-title {
        margin-bottom: 30px;
    }
}

.wpo-contact-pg-section .wpo-contact-title h2 {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 0;
}

@media (max-width: 575px) {
    .wpo-contact-pg-section .wpo-contact-title h2 {
        font-size: 25px;
    }
}

.wpo-contact-pg-section form input,
.wpo-contact-pg-section form select,
.wpo-contact-pg-section form textarea {
    background: #f9f9f9;
    width: 100%;
    height: 50px;
    border: 1px solid #E3E3E3;
    border-radius: 0px;
    box-shadow: none !important;
    padding-left: 25px;
}

@media (max-width: 991px) {

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

.wpo-contact-pg-section form input:focus,
.wpo-contact-pg-section form select:focus,
.wpo-contact-pg-section form textarea:focus {
    border-color: #ef5f34;
    background: #f4f6fa;
}

.wpo-contact-pg-section form textarea {
    height: 180px;
    padding-top: 15px;
}

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

.wpo-contact-pg-section form ::-webkit-input-placeholder {
    font-style: 15px;
    font-style: normal;
    color: #9d9c9c;
}

.wpo-contact-pg-section form :-moz-placeholder {
    font-style: 15px;
    font-style: normal;
    color: #9d9c9c;
}

.wpo-contact-pg-section form ::-moz-placeholder {
    font-style: 15px;
    font-style: normal;
    color: #9d9c9c;
}

.wpo-contact-pg-section form :-ms-input-placeholder {
    font-style: 15px;
    font-style: normal;
    color: #9d9c9c;
}

.wpo-contact-pg-section form select {
    display: inline-block;
    color: #a9a9a9;
    cursor: pointer;
    opacity: 1;
    padding: 6px 25px;
    font-size: 15px;
    font-size: 1rem;
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
}

.wpo-contact-pg-section form .wpo-contact-form-wrapper .submit-area .charitio-cf7-btn {
    width: auto;
    display: inline-block;
    padding-right: 50px;
    padding-left: 50px;
    height: 55px;
    background: #ef5f34;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    transition: .3s;
}
.wpo-contact-pg-section form .wpo-contact-form-wrapper .submit-area .charitio-cf7-btn:hover {
     background: #e34212;
}
.wpo-contact-pg-section form .wpo-contact-form-wrapper .submit-area {
    text-align: center;
    width: 100%;
    margin-bottom: 45px;
}
@media (max-width: 767px) {
    .wpo-contact-pg-section form .submit-area {
        margin-bottom: 0;
    }
}

.wpo-contact-pg-section .wpo-contact-form-wrapper .submit-area .theme-btn,
.wpo-contact-pg-section .wpo-contact-form-wrapper .submit-area .theme-btn-s3,
.wpo-contact-pg-section .wpo-contact-form-wrapper .submit-area .theme-btn-s4,
.wpo-contact-pg-section .wpo-contact-form-wrapper .submit-area .view-cart-btn {
    border-radius: 30px;
    font-family: "Muli";
    font-size: 16px;
}

.wpo-contact-pg-section .wpo-contact-form-wrapper .submit-area .theme-btn:after,
.wpo-contact-pg-section .wpo-contact-form-wrapper .submit-area .theme-btn-s3:after,
.wpo-contact-pg-section .wpo-contact-form-wrapper .submit-area .theme-btn-s4:after,
.wpo-contact-pg-section .wpo-contact-form-wrapper .submit-area .view-cart-btn:after {
    border-radius: 30px;
}

.wpo-contact-pg-section .wpo-contact-form-wrapper&gt;div {
    width: calc(50% - 20px);
    float: left;
    margin: 0 10px 25px;
}

@media (max-width: 600px) {
    .wpo-contact-pg-section .wpo-contact-form-wrapper&gt;div {
        width: calc(100% - 25px);
        float: none;
    }
}

.wpo-contact-pg-section .wpo-contact-form-wrapper .fullwidth {
    width: calc(100% - 20px);
    float: none;
    clear: both;
}

.wpo-contact-pg-section .office-info {
    padding-bottom: 100px;
}

@media (max-width: 767px) {
    .wpo-contact-pg-section .office-info {
        padding-bottom: 60px;
    }
}

@media (max-width: 1200px) {
    .wpo-contact-pg-section .office-info .col .office-info-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 1200px) {
    .wpo-contact-pg-section .office-info .col:last-child .office-info-item {
        margin-bottom: 0px;
    }
}

.office-info .office-info-item {
    text-align: center;
    box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.1);
    padding: 40px;
}

.office-info .office-info-item .office-info-icon {
    width: 85px;
    height: 85px;
    background: #f5f5f5;
    line-height: 85px;
    text-align: center;
    margin: 0 auto;
    border-radius: 50%;
}

.office-info .office-info-item .office-info-icon i:before {
    font-size: 30px;
    color: #5dc4b8;
}

.office-info .office-info-item .office-info-text h2 {
    font-size: 30px;
    font-weight: 500;
    margin: 20px 0;
}

.office-info .office-info-item .office-info-text p {
    margin-bottom: 0;
}

.wpo-contact-pg-section .wpo-contact-form-area {
    padding: 50px;
    background: #fff;
    box-shadow: 0px 1px 15px 0px rgba(62, 65, 159, 0.1);
    padding-bottom: 0;
    position: relative;
    z-index: 99;
}

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

.wpo-contact-map-section .wpo-contact-map {
    height: 550px;
}

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

.wpo-contact-map-section h2.hidden {
    display: none;
}

/*---------------------------------------------------------
19. login-design
-----------------------------------------------------------*/
.wpo-login-area {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 100px 0;
}

.wpo-accountWrapper {
    width: 1170px;
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    margin: auto;
    box-shadow: 0px 14px 60px rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    overflow: hidden;
}

.wpo-accountInfo {
    width: 50%;
    background: #062265;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 600px;
    text-align: center;
    padding: 50px;
}

.wpo-accountForm {
    width: 50%;
    padding: 70px 85px;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wpo-accountInfoHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.wpo-accountInfoHeader h2 a {
    display: block;
    line-height: 50px;
    font-size: 35px;
    font-weight: 600;
    color: #fff;
}

.wpo-accountInfo .wpo-accountBtn {
    height: 40px;
    background: #fff;
    padding: 0px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    font-size: 14px;
    color: #062265;
    border: 2px solid #fff;
    transition: all 0.4s ease-in-out 0s;
}

.wpo-accountInfo .wpo-accountBtn:hover {
    background: transparent;
    color: #fff;
}

.wpo-accountInfo p {
    color: #fff;
    font-size: 18px;
    margin-top: 20px;
}

.fromTitle h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

.fromTitle p {
    font-size: 15px;
    margin-bottom: 40px;
}

.form-style input {
    width: 100%;
    margin-bottom: 15px;
    padding-left: 20px;
    height: 60px;
    border: 1px solid #e5e5e5 !important;
    border-radius: 2px;
    border: none;
}

.form-style input:focus {
    outline: none;
    border: 1px solid #e5e5e5 !important;
}

input[type=checkbox]+label {
    display: block;
    margin: 0.2em;
    cursor: pointer;
    padding: 0.2em;
}

input[type=checkbox] {
    display: none;
}

input[type=checkbox]+label:before {
    content: "✔";
    border: 1px solid #e5e5e5;
    border-radius: 0.2em;
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    padding-left: 0.2em;
    padding-bottom: 0.3em;
    margin-right: 0.2em;
    vertical-align: bottom;
    color: transparent;
    transition: 0.2s;
    line-height: 1.2em;
    position: absolute;
    left: 14px;
}

input[type=checkbox]+label:active:before {
    transform: scale(0);
}

input[type=checkbox]:checked+label:before {
    background-color: #ef5f34;
    border-color: #ef5f34;
    color: #fff;
}

input[type=checkbox]:disabled+label:before {
    transform: scale(1);
    border-color: #aaa;
}

input[type=checkbox]:checked:disabled+label:before {
    transform: scale(1);
    background-color: #bfb;
    border-color: #bfb;
}

.check-box-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.forget-btn a {
    display: inline-block;
    font-size: 14px;
    color: #ef5f34;
}

.input-box label {
    color: #676B79;
    font-weight: 500;
    font-size: 16px;
    padding-left: 20px !important;
}

.wpo-accountForm .wpo-accountBtn {
    font-size: 16px;
    padding: 10px 20px;
    border: 2px solid #ef5f34;
    width: 100%;
    background: #ef5f34;
    color: #fff;
    transition: all 0.4s ease-in-out 0s;
    margin-top: 30px;
}

.wpo-accountForm .wpo-accountBtn:hover {
    background: transparent;
    color: #333;
}

.or {
    border-top: 1px dashed #e5e5e5;
    margin-top: 45px;
    text-align: center;
    font-weight: 500;
    margin-bottom: 20px;
}

.or span {
    font-size: 16px;
    text-transform: uppercase;
    display: inline-block;
    padding: 0 25px;
    background: #fff;
    position: relative;
    top: -14px;
    color: #ef5f34;
}

.wpo-socialLoginBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    list-style: none;
}

.wpo-socialLoginBtn li button {
    height: 40px;
    width: 50px;
    min-width: 50px;
    font-size: 15px;
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    border: none;
    text-transform: capitalize;
    font-weight: 400;
    color: #fff;
}

.wpo-socialLoginBtn li button.facebook {
    background: #3b5998;
}

.wpo-socialLoginBtn li button.linkedin {
    background: #0077B5;
}

.wpo-socialLoginBtn li button.twitter {
    background: #55acee;
}

.wpo-socialLoginBtn li {
    margin: 0px 5px 5px;
}

.subText {
    text-align: center;
}

.subText a {
    display: inline-block;
    font-size: 14px;
    color: #ef5f34;
}

.form-group {
    position: relative;
}

.input-group-btn {
    position: absolute;
    right: 10px;
    top: 37px;
}

.input-group-btn button {
    background: transparent !important;
    border: none;
    outline: none;
    background: none;
    box-shadow: none !important;
}

.input-group-btn button:hover {
    background: transparent;
}

.input-group-btn button:focus,
.input-group-btn button.active {
    background: none !important;
    border: none !important;
    outline: none !important;
}

.btn-default.active,
.btn-default.active,
.open&gt;.dropdown-toggle.btn-default {
    background: none !important;
    border: none;
    outline: none;
}

@media (max-width: 1200px) {
    .wpo-accountWrapper {
        width: 900px;
    }

    .wpo-accountForm {
        padding: 70px 35px;
    }
}

@media (max-width: 1024px) {
    .wpo-accountWrapper {
        width: 100%;
        max-width: 100%;
    }

    .wpo-accountForm {
        padding: 70px 35px;
    }

    .image img {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .wpo-accountInfo {
        width: 100%;
    }

    .wpo-accountForm {
        width: 100%;
    }

    .accountArea {
        padding: 0px 16px;
    }
}

@media (max-width: 767px) {
    .wpo-accountInfo {
        width: 100%;
    }

    .wpo-accountForm {
        width: 100%;
    }
}

.back-home {
    max-width: 150px;
}

/*--------------------------------------------------------------
20. error-404-section
--------------------------------------------------------------*/
.error-404-section {
    text-align: center;
    padding-top: 80px;
}

.error-404-section .error-message {
    margin-top: 20px;
    padding: 0 200px;
}

@media (max-width: 991px) {
    .error-404-section .error-message {
        margin-top: 0px;
        padding: 0 100px;
    }
}

@media (max-width: 767px) {
    .error-404-section .error-message {
        padding: 0;
    }
}

.error-404-section .error-message h3 {
    font-size: 30px;
    margin: 0 0 0.8em;
}

.error-404-section .error h2 {
    font-size: 150px;
    margin: 0;
}
@media (max-width: 991px) {
    .error-404-section .error h2 {
        font-size: 120px;
    }
}

@media (max-width: 767px) {
    .error-404-section .error h2 {
        font-size: 100px;
    }
}

.error-404-section .error-message p {
    margin-bottom: 1.8em;
}

.error-404-section .theme-btn {
  text-transform: capitalize;
  font-size: 18px;
  padding: 14px 25px;
}

/*# sourceMappingURL=style.css.map */
</pre></body></html>