@charset "UTF-8";
/*------------------------------------------------------------------
[Master Stylesheet]
Theme Name:     Arkitek –  Architecture & Interior WordPress Theme
Version:        1.0.1
-------------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> 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-fun-fact-section
    3.3 wpo-about-section
    3.4 wpo-service-area
    3.5 wpo-video-section
    3.6 wpo-project-section
    3.7 wpo-cta-section
    3.8 partners-section
    3.9 wpo-blog-section

4. wpo-footer

5. Home-style-2
   5.1 wpo-about-section-s2
   5.2 wpo-fun-fact-section-s2
   5.3 wpo-service-area-s2
   5.4 wpo-video-section-s2
   5.5 wpo-team-section
   5.6 wpo-project-section-s2
   5.7 wpo-testimonial-section-s2
   5.8 wpo-calculation-section
   5.9 wpo-blog-section-s2
   5.10 wpo-subscribe-section

6. Home-style-3
   6.1 wpo-about-section-s2
   6.2 wpo-service-area-s3
   6.3 wpo-team-section-s3
   6.4 wpo-video-section-s3
   6.5 wpo-project-section-s3
   6.6 wpo-testimonial-section-s3
   6.7 wpo-calculation-section-s2
   6.8 wpo-blog-section-s3
   6.9 wpo-subscribe-section-s2

7. wpo-service-single

8. wpo-project-single

9. wpo-cart-page-style

10. wpo-checkout-page-style

11. wpo-shop-page

12. wpo-shop-single-page

13. wpo-blog-pg-section

14. wpo-blog-single-section

15. wpo-contact-pg-section

16. error-404-section

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

@font-face {
    font-family: "titillium";
    font-weight: 400;
    font-style: normal;
    src: local("titilliumregular"), url("../fonts/text-font/titillium-regular-webfont.woff") format("woff");
}

@font-face {
    font-family: "titillium";
    font-weight: 300;
    font-style: normal;
    src: local("titilliumthin"), url("../fonts/text-font/titillium-thin-webfont.woff") format("woff");
}

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

:root {
    scroll-behavior: unset;
}

body {
    font-family: "Inter", sans-serif;
    color: #626B72;
    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: #626B72;
    line-height: 1.8em;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #1E3446;
    font-family: "titillium";
    font-weight: 600;
}

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

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

a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.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: 991px) {
    .section-padding {
        padding: 90px 0;
    }
}

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

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

@media (max-width: 991px) {
    .pt-120 {
        padding-top: 90px;
    }
}

@media (max-width: 767px) {
    .pt-120 {
        padding-top: 80px;
    }
}

@media (max-width: 575px) {
    .pt-120 {
        padding-top: 60px;
    }
}

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

@media (max-width: 991px) {
    .pb-120 {
        padding-bottom: 90px;
    }
}

@media (max-width: 767px) {
    .pb-120 {
        padding-bottom: 80px;
    }
}

@media (max-width: 575px) {
    .pb-120 {
        padding-bottom: 60px;
    }
}

/*** 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.93333rem;
    font-weight: normal;
    margin: 5px 0 0 0;
    text-align: left;
    display: block;
}

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

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

.contact-validation-active #success,
.contact-validation-active #c-success,
.contact-validation-active #c-error,
.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 #c-success,
    .contact-validation-active #c-error,
    .contact-validation-active #error {
        font-size: 15px;
    }
}

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

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

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

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

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

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

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

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

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

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

.back-to-top i {
    font-size: 18px;
    font-size: 1.2rem;
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -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;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

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

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

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

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

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

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

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

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

.wpo-section-title span {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    line-height: 16px;
    color: #1E3446;
    text-align: center;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
    z-index: 1;
    letter-spacing: 0.16em;
    margin-left: 6px;
}

.wpo-section-title span:before {
    position: absolute;
    left: -6px;
    top: -3px;
    width: 34px;
    height: 22px;
    background: #ffe1d1;
    content: "";
    z-index: -1;
}

.wpo-subscribe-section .wpo-section-title span:before {
    background: #779a65;
}

.wpo-section-title h2 {
    margin: 0;
    margin-top: 15px;
    position: relative;
    font-weight: 500;
    font-size: 45px;
    line-height: 57px;
    margin-top: 0px;
}


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

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

.wpo-section-title p {
    font-size: 18px;
}

.theme-btn,
.view-cart-btn {
    background: #D9916A;
    color: #fff;
    display: inline-block;
    font-weight: 600;
    padding: 20px 45px;
    padding-bottom: 16px;
    border: 0;
    text-transform: uppercase;
    position: relative;
    font-family: "Josefin Sans", sans-serif;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    z-index: 1;
    border-radius: 0;
}


.theme-btn:hover,
.view-cart-btn:hover,
.theme-btn:focus,
.view-cart-btn:focus,
.theme-btn:active,
.view-cart-btn:active {
    color: #fff;
    background: #779A65;
}

@media (max-width: 991px) {

    .theme-btn,
    .view-cart-btn {
        font-size: 15px;
    }
}

@media (max-width: 767px) {

    .theme-btn,
    .view-cart-btn {
        padding: 17px 20px;
        font-size: 14px;
        padding-bottom: 12px;
    }
}

.theme-btn-s2 {
    color: #D9916A;
    display: inline-block;
    font-family: "Josefin Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 25px;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

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

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

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

.view-cart-btn {
    display: block;
    margin-top: 15px;
    border-radius: 5px;
    padding: 10px 45px;
}

.view-cart-btn:after {
    display: none;
}

.view-cart-btn:hover {
    background-color: #688f55;
}

.view-cart-btn.s1 {
    background: #b1b1b1;
}

.view-cart-btn.s1:hover {
    background-color: #688f55;
}

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

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

.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;
    -ms-appearance: none;
    appearance: none;
    cursor: pointer;
}

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

.form ::-webkit-input-placeholder {
    /* Edge */
    font-style: normal;
}

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

.form ::-ms-input-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: #ff9f96;
    width: 35px;
    height: 35px;
    line-height: 35px;
    display: block;
    color: #fff;
    text-align: center;
}

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

.wpo-page-title {
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    min-height: 380px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    z-index: 1;
    overflow: hidden;
}

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

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

.wpo-page-title .vector-1,
.wpo-page-title .vector-2,
.wpo-page-title .vector-3,
.wpo-page-title .vector-4,
.wpo-page-title .vector-5,
.wpo-page-title .vector-6,
.wpo-page-title .vector-7,
.wpo-page-title .vector-8 {
    position: absolute;
    left: -125px;
    top: 0px;
    background: #b75927;
    opacity: 0.12;
    width: 200px;
    height: 115%;
    z-index: 11;
    -webkit-transform: rotate(345deg);
    transform: rotate(345deg);
}

.wpo-page-title .vector-2 {
    left: -125px;
    top: -100px;
    -webkit-transform: rotate(20deg);
    transform: rotate(20deg);
}

.wpo-page-title .vector-3 {
    left: -155px;
    top: 0px;
    -webkit-transform: rotate(348deg);
    transform: rotate(348deg);
}

.wpo-page-title .vector-4 {
    left: -155px;
    top: -100px;
    -webkit-transform: rotate(17deg);
    transform: rotate(17deg);
}

.wpo-page-title .vector-5 {
    left: -185px;
    -webkit-transform: rotate(351deg);
    transform: rotate(351deg);
}

.wpo-page-title .vector-6 {
    left: -185px;
    top: -80px;
    top: -100px;
    -webkit-transform: rotate(14deg);
    transform: rotate(14deg);
}

.wpo-page-title .vector-7 {
    left: -205px;
    -webkit-transform: rotate(354deg);
    transform: rotate(354deg);
}

.wpo-page-title .vector-8 {
    left: -215px;
    top: -100px;
    -webkit-transform: rotate(11deg);
    transform: rotate(11deg);
}

.wpo-page-title .wpo-breadcumb-wrap {
    text-align: center;
    margin-top: 10px;
    justify-content: center;
}

.wpo-page-title .wpo-breadcumb-wrap h2 {
    font-size: 50px;
    color: #fff;
    line-height: 60px;
    margin-bottom: 10px;
    font-weight: 700;
    word-break: break-all;
}

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

.wpo-page-title .wpo-breadcumb-wrap ol {
    padding-left: 0;
    margin-bottom: 0;
}

.wpo-page-title .wpo-breadcumb-wrap ul li {
    display: inline-block;
    padding: 0px 5px;
    padding-right: 20px;
    color: #fff;
    position: relative;
    font-weight: 500;
    font-size: 17px;
    line-height: 34px;
}

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

.wpo-page-title .wpo-breadcumb-wrap ul li:last-child {
    padding-right: 0;
}

.wpo-page-title .wpo-breadcumb-wrap ul li:after {
    content: "//";
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #D9916A;
}

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

.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-weight: 500;
    font-size: 17px;
    line-height: 34px;
    -webkit-transition: all .3s;
    transition: all .3s;
}

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

.wpo-page-title-section {
    background-position: center top;
    background-size: cover;
    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-section {
        min-height: 250px;
    }
}

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

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

.wpo-page-title-section .wpo-page-title-wrapper h2 {
    font-size: 60px;
    color: #fff;
    line-height: 60px;
    margin-top: -10px;
    margin-bottom: 0px;
}

@media (max-width: 767px) {
    .wpo-page-title-section .wpo-page-title-wrapper h2 {
        font-size: 30px;
        line-height: 35px;
        margin-bottom: 0px;
    }
}

.wpo-page-title-section .wpo-page-title-wrapper ul li {
    display: inline-block;
    padding: 0px 5px;
    color: #fff;
    position: relative;
    font-size: 20px;
}

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

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

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

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

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

.wpo-page-title-section .wpo-page-title-wrapper ul li a:hover {
    color: #D9916A;
}

.wpo-about-section.wpo-about-section-s2 {
    padding-top: 170px;
}

.preloader {
    background-color: #779A65;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 1000;
    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 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    font-size: 0;
}

.preloader * {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.preloader .loader-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    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;
    -webkit-transform-origin: 60px 60px;
    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%;
    -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    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%;
    -webkit-transform: scale3d(0.5, 0.5, 1);
    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% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        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 h2 {
    font-size: 23px;
    color: #262626;
    margin: 0 0 1.3em;
    position: relative;
    text-transform: capitalize;
    padding-bottom: 20px;
}

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

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

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

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

.blog-sidebar .search-widget input {
    background-color: #F3F6F6;
    height: 70px;
    font-size: 16px;
    font-size: 1.06667rem;
    padding: 6px 50px 6px 20px;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.blog-sidebar .search-widget input:focus {
    background-color: rgba(23, 114, 101, 0.1);
}

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

.blog-sidebar .about-widget {
    text-align: center;
    background-color: #F3F6F6;
    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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    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: 44px;
    background-color: #f1f1f1;
    border-radius: 50%;
}

.blog-sidebar .about-widget h4 {
    font-size: 25px;
    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: "Inter", sans-serif;
    font-size: 14px;
    font-size: 0.93333rem;
    color: #1E3446;
    text-decoration: underline;
}

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

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

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

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

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

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

.blog-sidebar .category-widget ul a {
    display: block;
    color: #474f62;
    font-size: 16px;
    padding: 20px;
    background: #F3F6F6;
    padding-left: 60px;
    position: relative;
    width: 100%;
}

@media (max-width: 1200px) {
    .blog-sidebar .category-widget ul a {
        padding: 10px;
        padding-left: 25px;
        font-size: 14px;
    }
}

.blog-sidebar .category-widget ul a:after {
    position: absolute;
    left: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    content: "\e6af";
    font-family: "themify";
    transform: translateY(-50%);
    font-weight: 500;
}

@media (max-width: 1200px) {
    .blog-sidebar .category-widget ul a:after {
        left: 5px;
    }
}

.blog-sidebar .category-widget ul a:hover,
.blog-sidebar .category-widget ul a.active,
.blog-sidebar .category-widget ul li:hover:before {
    background: #779A65;
    color: #fff;
}

.blog-sidebar .category-widget ul li.current-menu-item a {
    background: #779A65;
    color: #fff;
}

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

.blog-sidebar .recent-post-widget .posts>.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;
}

.blog-sidebar .recent-post-widget .post h4 {
    font-size: 18px;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.5em;
    margin: 0 0 0.3em;
    font-family: "Inter", sans-serif;
}

@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.06667rem;
    }
}

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

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

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

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

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

.blog-sidebar .wpo-instagram-widget ul li {
    -ms-flex: 0 0 33.33%;
    -webkit-box-flex: 0;
    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: 15px 25px;
    color: #1E3446;
    background: #F3F6F6;
    border-radius: 0px;
}

@media (max-width: 1399px) {
    .blog-sidebar .tag-widget ul li a {
        padding: 15px 20px;
    }
}

@media (max-width: 1199px) {
    .blog-sidebar .tag-widget ul li a {
        padding: 8px 10px;
        font-size: 14px;
        font-size: 0.93333rem;
    }
}

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

.wpo-contact-widget {
    border: 0;
    background: url(../images/bg-2.jpg) no-repeat center center;
    position: relative;
    background-size: cover;
    z-index: 1;
    padding: 70px 35px;
    text-align: center;
    overflow: hidden;
}

.wpo-contact-widget:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 112, 99, 0.9);
    content: "";
    z-index: -1;
}

.wpo-contact-widget:after {
    position: absolute;
    left: -10%;
    bottom: -75%;
    width: 120%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    content: "";
    z-index: -1;
    border-radius: 50%;
}

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

.blog-sidebar .wpo-contact-widget h2 {
    font-weight: 700;
    font-size: 28px;
    line-height: 40px;
    color: #fff;
    margin-bottom: 30px;
    margin-top: 0;
}

.wpo-contact-widget h2 {
    font-weight: 700;
    font-size: 28px;
    line-height: 40px;
    color: #fff;
    margin-bottom: 30px;
    margin-top: 0;
}

.wpo-contact-widget h2::before {
    left: 28px;
}

.wpo-contact-widget .theme-btn {
    background: #ffffff;
    color: #484848;
}

.wpo-contact-widget .theme-btn:hover {
    background: #779A65;
    color: #fff;
}

.blog-sidebar.service-sidebar .wpo-contact-widget h2::after,
.blog-sidebar.service-sidebar .wpo-contact-widget h2::before {
    background: none;
}

.blog-sidebar.service-sidebar .wpo-contact-widget h2 {
    margin-bottom: 0;
}

.blog-sidebar.service-sidebar .wpo-contact-widget h5 {
    margin-bottom: 0;
    margin-top: 0;
}

@media (max-width: 1199px) {
    .wpo-contact-widget h2 {
        font-size: 24px;
        line-height: 35px;
        margin-bottom: 20px;
    }
}

.wpo-contact-widget .call {
    margin-bottom: 40px;
}

.wpo-contact-widget .call span {
    font-weight: 700;
    font-size: 15px;
    line-height: 36px;
    color: #fff;
}

.wpo-contact-widget .call h5 {
    font-weight: 700;
    font-size: 20px;
    line-height: 36px;
    color: #fff;
    margin-top: 0;
    margin-bottom: 0;
}

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

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


/**** 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 {
    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.06667rem;
    font-weight: 600;
    color: #1E3446;
    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: #D9916A;
    border-color: #D9916A;
    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: transparent;
    padding: 20px 0;
    position: relative;
    z-index: 11;
}

@media (max-width: 767px) {
    .topbar .container {
        max-width: 100%;
    }
}

.topbar .contyact-info-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

@media (max-width: 991px) {
    .topbar .contyact-info-wrap {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding-right: 0;
    }
}

@media (max-width: 640px) {
    .topbar .contyact-info-wrap {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.topbar .contyact-info-wrap .contact-info {
    margin: 0 20px;
}

@media (max-width: 1200px) {
    .topbar .contyact-info-wrap .contact-info {
        margin: 5px;
    }
}

@media (max-width: 991px) {
    .topbar .contyact-info-wrap .contact-info {
        margin: 0 15px;
    }
}

@media (max-width: 767px) {
    .topbar .contyact-info-wrap .contact-info {
        margin: 0 5px;
    }
}

@media (max-width: 640px) {
    .topbar .contyact-info-wrap .contact-info {
        text-align: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin: 0 10px;
    }
}

@media (max-width: 575px) {
    .topbar .contyact-info-wrap .contact-info {
        margin-bottom: 15px;
    }
}

.topbar .contyact-info-wrap .contact-info .icon {
    float: left;
    text-align: center;
    margin-right: 20px;
}

@media (max-width: 640px) {
    .topbar .contyact-info-wrap .contact-info .icon {
        float: none;
        margin: 0 auto;
        margin-bottom: 5px;
    }
}

@media (max-width: 575px) {
    .topbar .contyact-info-wrap .contact-info .icon {
        margin-bottom: 5px;
    }
}

.topbar .contyact-info-wrap .contact-info .icon .fi:before {
    line-height: unset;
    color: #D9916A;
    font-size: 25px;
}

@media (max-width: 640px) {
    .topbar .contyact-info-wrap .contact-info .icon .fi:before {
        font-size: 18px;
    }
}

.topbar .contyact-info-wrap .contact-info .info-text {
    overflow: hidden;
    margin-left: 20px;
}

@media (max-width: 575px) {
    .topbar .contyact-info-wrap .contact-info .info-text {
        margin-left: 0;
    }
}

@media (max-width: 640px) {
    .topbar .contyact-info-wrap .contact-info .info-text {
        margin-left: 0;
    }
}

.topbar .contyact-info-wrap .contact-info .info-text span {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    line-height: 18px;
    color: #779A65;
    display: block;
    margin-bottom: 8px;
}

@media (max-width: 1400px) {
    .topbar .contyact-info-wrap .contact-info .info-text span {
        font-size: 13px;
    }
}

.topbar .contyact-info-wrap .contact-info .info-text p {
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    color: #A3A3A3;
    margin-bottom: 0;
}

@media (max-width: 1400px) {
    .topbar .contyact-info-wrap .contact-info .info-text p {
        font-size: 13px;
    }
}

.topbar .contyact-info-wrap .contact-info:last-child {
    margin-right: 0;
}

.topbar .contyact-info-wrap .contact-info:last-child .info-text {
    margin-right: 0;
}

@media (max-width: 550px) {
    .topbar .contyact-info-wrap .contact-info:last-child {
        padding-left: 0;
    }
}

.topbar.s2 {
    padding: 0;
    border-bottom: 1px solid #EFEFEF;
}

.topbar.s2 .contyact-info-wrap {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .topbar.s2 .contyact-info-wrap {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media (max-width: 1199px) {
    .topbar.s2 .contyact-info-wrap .contact-info .icon {
        margin-right: 10px;
    }
}

.topbar.s2 .contyact-info-wrap .contact-info {
    padding: 20px 0;
    position: relative;
    margin: 0;
}

@media (max-width: 767px) {
    .topbar.s2 .contyact-info-wrap .contact-info {
        margin: 0 5px;
    }
}

@media (max-width: 600px) {
    .topbar.s2 .contyact-info-wrap .contact-info:nth-child(4) {
        padding-top: 0;
    }
}

@media (max-width: 480px) {

    .topbar.s2 .contyact-info-wrap .contact-info:nth-child(3),
    .topbar.s2 .contyact-info-wrap .contact-info:nth-child(4) {
        padding-top: 0;
    }
}

@media (max-width: 330px) {
    .topbar.s2 .contyact-info-wrap .contact-info:nth-child(2) {
        padding-top: 0;
    }
}

.topbar.s2 .contyact-info-wrap .contact-info+.contact-info:before {
    position: absolute;
    left: -50%;
    top: 0;
    width: 1px;
    height: 100%;
    content: "";
    background: #EFEFEF;
}

@media (max-width: 1199px) {
    .topbar.s2 .contyact-info-wrap .contact-info+.contact-info:before {
        left: -25%;
    }
}

@media (max-width: 991px) {
    .topbar.s2 .contyact-info-wrap .contact-info+.contact-info:before {
        display: none;
    }
}

.topbar.s3 {
    background: #779A65;
    padding: 10px 0;
}

.topbar.s3 .topbar-welcome {
    text-align: center;
}

.topbar.s3 .topbar-welcome p {
    margin-bottom: 0;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (max-width: 575px) {
    .topbar.s3 .topbar-welcome p {
        font-size: 14px;
    }
}

.topbar.s3 .topbar-welcome p i {
    margin: 0 20px;
}

.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;
    position: relative;
    z-index: 111;
}

@media (max-width: 991px) {
    .wpo-site-header {
        margin-bottom: 0;
        border-radius: 0;
        background: none;
    }
}

.wpo-site-header .row {
    border-radius: 0px;
}

.wpo-site-header.default-header .row {
    margin-bottom: 0px;
}

@media (max-width: 991px) {
    .wpo-site-header .row {
        margin-bottom: 0;
        border-radius: 0;
        background: none;
    }

    .wpo-site-header .topbar .row {
        margin: 0 auto;
    }
}

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

@media (max-width: 991px) {
    .wpo-site-header .navigation {
        height: 80px;
    }

}

.global-header__navigation .navigation {
    height: unset;
}

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

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

.wpo-site-header .navigation>.container {
    position: relative;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (max-width: 450px) {
    .wpo-site-header .navigation>.container {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

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

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

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

.wpo-site-header #navbar>ul li a:hover,
.wpo-site-header #navbar>ul li a.active,
.wpo-site-header #navbar>ul li a:focus {
    text-decoration: none;
    color: #d48256;
}

@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>ul>li>.sub-menu>.menu-item-has-children>a {
        position: relative;
    }

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

    .wpo-site-header #navbar>ul>li:hover>.sub-menu {
        top: 100%;
        visibility: visible;
        opacity: 1;
        transform: scaleY(100%);
        -webkit-transform: scaleY(100%);
        -moz-transform: scaleY(100%);
        -ms-transform: scaleY(100%);
        -o-transform: scaleY(100%);
    }

    .wpo-site-header #navbar .sub-menu>li:hover>.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: -18px;
    }

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

    .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 {
        -webkit-transition: all 0.3s;
        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: 99;
        text-align: center;
    }

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

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

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

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

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

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

@media (max-width: 1400px) {

    .wpo-site-header .header-right .close-form .theme-btn,
    .wpo-site-header .header-right .close-form .view-cart-btn {
        padding: 10px 15px;
        font-size: 15px;
    }
}

@media (max-width: 450px) {
    .wpo-site-header .header-right>div {
        margin-right: 20px;
    }

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

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

@media (max-width: 767px) {
    .wpo-site-header .header-right>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;
}

@media (max-width: 450px) {
    .wpo-site-header .header-right .search-toggle-btn {
        display: none;
    }
}

.wpo-site-header .header-right .search-toggle-btn,
.wpo-site-header .header-right .cart-toggle-btn {
    background-color: transparent;
    line-height: 0.66em;
    color: #232f4b;
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 50%;
    border: 1px solid rgba(35, 35, 35, 0.09);
}

@media (max-width: 1200px) {

    .wpo-site-header .header-right .search-toggle-btn,
    .wpo-site-header .header-right .cart-toggle-btn {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 991px) {

    .wpo-site-header .header-right .search-toggle-btn,
    .wpo-site-header .header-right .cart-toggle-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 991px) {

    .wpo-site-header .header-right .search-toggle-btn .fi:before,
    .wpo-site-header .header-right .cart-toggle-btn .fi:before {
        font-size: 16px;
    }
}

.wpo-site-header .header-right .search-toggle-btn .ti-close,
.wpo-site-header .header-right .cart-toggle-btn .ti-close {
    display: block;
    line-height: 20px;
    position: relative;
    top: 0px;
    font-size: 17px;
}

/*** cart-search-contact ***/
.cart-search-contact button {
    background: transparent;
    padding: 0;
    border: 0;
    outline: 0;
}

.cart-search-contact .fi {
    font-size: 30px;
    color: #1E3446;
    top: 0px;
    position: relative;
}

.cart-search-contact .fi:before {
    font-size: 18px;
}

.cart-search-contact>div {
    float: left;
    position: relative;
}

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

.cart-search-contact .header-search-form {
    position: absolute;
    width: 350px;
    right: 0;
    top: 75px;
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
    background: #fff;
    padding: 30px;
    border-radius: 6px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-box-shadow: -2px 18px 40px -9px #999999;
    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%;
    -webkit-transform: translateY(-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;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #EFEFEF;
}

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

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

.mini-cart .cart-count {
    background: #D9916A;
    width: 19px;
    height: 19px;
    font-size: 10px;
    font-size: 0.53333rem;
    line-height: 17px;
    color: white;
    position: absolute;
    top: -2px;
    right: -5px;
    border-radius: 50%;
    font-weight: 600;
}

.mini-cart-content {
    background: #fff;
    width: 320px;
    height: 100%;
    z-index: 100;
    position: fixed;
    right: -320px;
    top: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-box-shadow: -2px 18px 40px -9px #999999;
    box-shadow: -2px 18px 40px -9px #999999;
}

.admin-bar .mini-cart-content {
    top: 32px;
}

@media (max-width: 575px) {
    .mini-cart-content {
        width: 290px;
    }
}

.mini-cart-content .mini-cart-close {
    display: block;
    width: 40px;
    height: 40px;
    background-color: #333333;
    color: white;
    font-size: 0px;
    text-align: center;
    overflow: hidden;
    position: relative;
    float: right;
    line-height: 54px;
    border-radius: 3px;
    right: 10px;
    top: 20px;
}

.mini-cart-content .mini-cart-close i {
    font-size: 15px;
}

.mini-cart .mini-cart-content p {
    font-size: 15px;
    font-weight: 500;
    color: #1E3446;
    margin: 0;
    text-transform: uppercase;
}

.mini-cart-content .mini-cart-items {
    padding: 100px 20px 25px;
}

.mini-cart-content .mini-cart-item {
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #efefef;
}

.mini-cart-content .mini-cart-item:first-child {
    padding-top: 0;
    margin-top: 0;
    border-top: 0;
}

.mini-cart-content .mini-cart-item-image {
    width: 50px;
    height: 50px;
    border: 2px solid #f3f3f3;
    float: left;
    margin-right: 15px;
}

.mini-cart-content .mini-cart-item-image a,
.mini-cart-content .mini-cart-item-image img {
    display: block;
    width: 46px;
    height: 46px;
}

.mini-cart-content .mini-cart-item-des {
    position: relative;
    overflow: hidden;
}

.mini-cart-content .mini-cart-item-des a {
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    color: #1E3446;
}

.mini-cart-content .mini-cart-item-des a:hover {
    color: #D9916A;
}

.mini-cart-content .mini-cart-item-des .mini-cart-item-price {
    font-size: 13px;
    color: #888;
    display: block;
    margin-top: 3px;
    position: relative;
}

.mini-cart-content .mini-cart-item-des .mini-cart-item-quantity {
    font-size: 12px;
    color: #444;
    display: block;
    position: absolute;
    left: 25%;
    top: 2px;
}

.mini-cart-content .visible-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    opacity: .02;
    z-index: -1;
}

.mini-cart-content .mini-cart-action {
    padding: 20px 0 30px;
    text-align: center;
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 80%;
    margin-bottom: 30px;
}

.mini-cart-content .mini-cart-action .theme-btn-s2 {
    float: right;
}

.mini-cart-content .mini-cart-action .mini-btn {
    width: 240px;
}

.mini-cart-content .mini-cart-action .mini-checkout-price {
    font-size: 16px;
    font-size: 1.06667rem;
    font-weight: 600;
    color: #1E3446;
    display: block;
    margin-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.mini-cart-content .mini-cart-action .mini-checkout-price span {
    color: #779A65;
    font-size: 20px;
}

.mini-cart-content-toggle,
.mini-wislist-content-toggle {
    opacity: 1;
    visibility: visible;
    right: 0;
}

.mini-cart-content .mini-cart-empty p {
    text-transform: capitalize;
    color: #687693;
    margin-bottom: 0;
}

.mini-cart-content .mini-cart-empty {
    padding-top: 80px;
    text-align: center;
}

.mini-cart-content .mini-cart-empty .cart-emty-icon i:before {
    font-size: 120px;
    color: #eee;
}

.view-cart-btn.s2 {
    padding: 20px 25px 15px 25px;
    display: inline-block;
    color: #fff;
    background-color: #D9916A;
    line-height: 1;
}

.mini-cart .view-cart-btn {
    color: #fff;
    background-color: #D9916A;
}

.mini-cart .view-cart-btn:hover {
    background-color: #779A65;
}

.mini-cart .view-cart-btn.s1 {
    color: #fff;
    background-color: #b1b1b1;
}

.mini-cart .view-cart-btn.s1:hover {
    color: #fff;
    background-color: #333333;
}

.view-cart-btn.s2:before {
    content: none;
}

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

    .body-overlay:before {
        content: "";
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        position: absolute;
        left: 0;
        top: 0;
        z-index: 10;
        -webkit-transition: all 0.3s;
        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;
    -webkit-box-shadow: none;
    box-shadow: none;
}

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

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

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

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

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

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

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

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

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

    .wpo-site-header #navbar>ul>li>a {
        font-size: 20px;
        padding: 30px 20px;
        display: block;
        color: #232f4b;
        font-weight: 400;
        position: relative;
        font-family: "titillium";
        text-transform: uppercase;

    }
}

@media screen and (min-width: 992px) and (max-width: 1870px) {
    .wpo-site-header #navbar>ul>li>a {
        padding: 35px 18px;
    }
}

@media screen and (min-width: 992px) {
    .wpo-site-header #navbar>ul .sub-menu {
        background-color: #fff;
        -webkit-box-shadow: 0px 2px 20px 0px rgba(62, 65, 159, 0.09);
        box-shadow: 0px 2px 20px 0px rgba(62, 65, 159, 0.09);
        width: 235px;
        position: absolute;
        padding: 15px 8px;
        left: 0;
        top: 110%;
        z-index: 10;
        visibility: hidden;
        opacity: 0;
        transform: scaleY(0);
        -webkit-transform: scaleY(0);
        -moz-transform: scaleY(0);
        -ms-transform: scaleY(0);
        -o-transform: scaleY(0);
        transform-origin: center top 0;
        -webkit-transform-origin: center top 0;
        -moz-transform-origin: center top 0;
        -ms-transform-origin: center top 0;
        -o-transform-origin: center top 0;
        transition: all 0.3s ease-in-out 0s;
        -webkit-transition: all 0.3s ease-in-out 0s;
        -moz-transition: all 0.3s ease-in-out 0s;
        -ms-transition: all 0.3s ease-in-out 0s;
        -o-transition: all 0.3s ease-in-out 0s;
    }

    .wpo-site-header #navbar>ul>li .sub-menu a {
        font-size: 18px;
        display: block;
        padding: 10px 15px;
        color: #1E3446;
        position: relative;
        overflow: hidden;
        font-weight: 400;
        text-transform: uppercase;
        font-family: "titillium";
    }

    .wpo-site-header #navbar>ul>li .sub-menu a:after {
        position: absolute;
        left: 15px;
        bottom: 4px;
        width: 0px;
        height: 2px;
        content: "";
        background: #D9916A;
        -webkit-transition: all .3s;
        transition: all .3s;
        opacity: 0;
        visibility: hidden;
    }

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

    .wpo-site-header #navbar>ul>li>.sub-menu .sub-menu {
        left: 110%;
        top: 0;
        -webkit-transform: unset;
        transform: unset;
    }

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

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

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

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

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

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

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

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

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

    .wpo-site-header #navbar>ul .menu-item-has-children>a {
        position: relative;
        color: #ddd;
    }

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

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

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

    .wpo-site-header #navbar>ul .menu-item-has-children>a.rotate {
        color: #fff;
    }
}

@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: #D9916A;
        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;
        -webkit-box-shadow: 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: #1E3446;
        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>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 {
        color: #D9916A;
    }

    .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 .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 {
        -webkit-transition: all 0.3s;
        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;
    }
}

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

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

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

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

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

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

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

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

@media (max-width: 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>ul>li>a {
        padding: 30px 15px;
    }
}

@media (max-width: 991px) {

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

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

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

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

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

@media (max-width: 767px) {

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

    .header-right .view-cart-btn {
        padding: 20px 20px;
    }

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

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

@media (max-width: 991px) {

    .wpo-site-header,
    .wpo-header-style-2 {
        z-index: 99;
    }
}

.wpo-site-header .navigation.sticky-header {
    background: #fff;
    z-index: 1;
}

.admin-bar .wpo-site-header .navigation.sticky-header {
    top: 32px;
}

@media (max-width: 991px) {
    .admin-bar .wpo-site-header .navigation.sticky-header {
        top: 42px;
    }
}

@media (max-width: 575px) {
    .admin-bar .wpo-site-header .navigation.sticky-header {
        top: 0px;
    }
}

.wpo-site-header .navigation.sticky-header .row {
    background: #fff;
    margin-bottom: 0;
}

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

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

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

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

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

    .wpo-site-header .navigation.sticky-header .row {
        border: 0;
    }
}

.wpo-header-style-2 .row,
.wpo-header-style-3 .row {
    margin: 0;
}

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

.wpo-header-style-2 .navigation #navbar,
.wpo-header-style-3 .navigation #navbar {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (max-width: 1199px) {

    .wpo-header-style-2 .navigation #navbar,
    .wpo-header-style-3 .navigation #navbar {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}

.wpo-header-style-2 .navigation .header-right .search-toggle-btn,
.wpo-header-style-3 .navigation .header-right .search-toggle-btn {
    display: block;
}

@media (min-width: 991px) {

    .wpo-header-style-2 .navigation .navbar-header,
    .wpo-header-style-3 .navigation .navbar-header {
        background: #fff;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding-right: 30px;
    }
}

.wpo-header-style-2 .navigation.sticky-on,
.wpo-header-style-3 .navigation.sticky-on {
    background: #fff;
}

.wpo-header-style-3 {
    padding: 0;
}

.wpo-header-style-3 .row {
    margin: 0;
}

@media (max-width: 1199px) {
    .wpo-header-style-3 .row {
        background: #fff;
        padding: 0;
    }
}

.wpo-header-style-3 .navigation {
    background: transparent;
    padding: 0;
}

.wpo-header-style-3 .navigation #navbar {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

@media (max-width: 1199px) {
    .wpo-header-style-3 .navigation #navbar {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media (max-width: 1600px) {
    .wpo-header-style-3 .navigation #navbar>ul>li>a {
        padding: 35px 12px;
    }
}

@media (max-width: 1399px) {
    .wpo-header-style-3 .navigation #navbar>ul>li>a {
        padding: 35px 6px;
    }
}

@media (max-width: 991px) {
    .wpo-header-style-3 .navigation #navbar>ul>li>a {
        padding: 15px 30px;
    }
}

@media (min-width: 991px) {
    .wpo-header-style-3 .navigation .navbar-header {
        padding-right: 80px;
        padding-left: 30px;
    }
}

@media (max-width: 1700px) {
    .wpo-header-style-3 .navigation .navbar-header {
        padding-right: 50px;
        padding-left: 20px;
    }
}

@media (max-width: 1500px) {
    .wpo-header-style-3 .navigation .navbar-header {
        padding-right: 20px;
        padding-left: 20px;
    }
}

@media (max-width: 1399px) {
    .wpo-header-style-3 .navigation .navbar-header {
        padding-right: 0px;
        padding-left: 10px;
    }
}

@media (max-width: 991px) {
    .wpo-header-style-3 .navigation .navbar-header {
        padding: 0;
    }
}

.wpo-header-style-3 .navigation.sticky-header {
    padding: 0;
}

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

.wpo-header-style-3 .header-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .wpo-header-style-3 .header-right {
        text-align: center;
        margin: 0;
    }
}

@media (max-width: 991px) {
    .wpo-header-style-3 .header-right {
        margin-right: 30px;
        overflow: unset;
    }
}

.wpo-header-style-3 .header-right>div {
    padding: 15px 0;
    padding-left: 20px;
    position: relative;
    -ms-flex-preferred-size: 33.33%;
    flex-basis: 33.33%;
}

@media (max-width: 1888px) {
    .wpo-header-style-3 .header-right>div {
        padding: 5px;
        padding-left: 10px;
    }
}

@media (max-width: 1199px) {
    .wpo-header-style-3 .header-right>div {
        padding: 0;
    }
}

.wpo-header-style-3 .header-right>div:before {
    position: absolute;
    left: 0;
    top: -5px;
    width: 1px;
    height: 120%;
    content: "";
    background: #DEDEDE;
}

@media (max-width: 1199px) {
    .wpo-header-style-3 .header-right>div:before {
        display: none;
    }
}

.wpo-header-style-3 .header-right>div:after {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    content: "";
    background: #D9916A;
}

@media (max-width: 1199px) {
    .wpo-header-style-3 .header-right>div:after {
        display: none;
    }
}

.wpo-header-style-3 .header-right .contact-info {
    margin: 0 20px;
}

@media (max-width: 1199px) {
    .wpo-header-style-3 .header-right .contact-info {
        text-align: center;
        margin: 0;
    }
}

@media (max-width: 640px) {
    .wpo-header-style-3 .header-right .contact-info {
        text-align: center;
        margin: 0 5px;
    }
}

.wpo-header-style-3 .header-right .contact-info .icon {
    float: left;
    text-align: center;
    margin-right: 20px;
}

@media (max-width: 1700px) {
    .wpo-header-style-3 .header-right .contact-info .icon {
        margin-right: 8px;
    }
}

@media (max-width: 1199px) {
    .wpo-header-style-3 .header-right .contact-info .icon {
        width: 50px;
        height: 50px;
        line-height: 50px;
        background: #F3F6F6;
        border-radius: 50%;
        margin: 0 auto;
        margin-left: 10px;
    }
}

@media (max-width: 640px) {
    .wpo-header-style-3 .header-right .contact-info .icon {
        width: 40px;
        height: 40px;
        line-height: 40px;
        margin: 0;
    }
}

.wpo-header-style-3 .header-right .contact-info .icon .fi:before {
    line-height: unset;
    color: #D9916A;
    font-size: 25px;
}

@media (max-width: 640px) {
    .wpo-header-style-3 .header-right .contact-info .icon .fi:before {
        font-size: 18px;
    }
}

.wpo-header-style-3 .header-right .contact-info .info-text {
    overflow: hidden;
    margin-left: 20px;
}

@media (max-width: 1199px) {
    .wpo-header-style-3 .header-right .contact-info .info-text {
        display: none;
    }
}

.wpo-header-style-3 .header-right .contact-info .info-text span {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    line-height: 18px;
    color: #779A65;
    display: block;
    margin-bottom: 8px;
}

@media (max-width: 1400px) {
    .wpo-header-style-3 .header-right .contact-info .info-text span {
        font-size: 13px;
    }
}

.wpo-header-style-3 .header-right .contact-info .info-text p {
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    color: #A3A3A3;
    margin-bottom: 0;
}

@media (max-width: 1700px) {
    .wpo-header-style-3 .header-right .contact-info .info-text p {
        font-size: 13px;
    }
}

.wpo-header-style-3 .header-right .contact-info:last-child {
    margin-right: 0;
}

.wpo-header-style-3 .header-right .contact-info:last-child .info-text {
    margin-right: 0;
}

@media (max-width: 450px) {
    .wpo-header-style-3 .header-right .contact-info:nth-child(2) {
        display: none;
    }
}

.wpo-header-style-3 .header-right .theme-btn {
    color: #fff;
    background-color: #D9916A;
}

.wpo-header-style-3 .header-right .theme-btn:hover {
    background-color: #779A65;
}

/*header-info-wrap   */

.contact-info-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.contact-info-wrap .contact-info:before {
    position: absolute;
    left: 0;
    top: -5px;
    width: 1px;
    height: 120%;
    content: "";
    background: #DEDEDE;
}

.contact-info-wrap .contact-info:after {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    content: "";
    background: #D9916A;
}

@media (max-width: 1199px) {
    .contact-info-wrap .contact-info:before {
        display: none;
    }

    .contact-info-wrap .contact-info:after {
        display: none;
    }

}

.contact-info-wrap .contact-info {
    margin: 0 20px;
    position: relative;
    padding-left: 20px;
}

@media (max-width: 1888px) {
    .contact-info-wrap .contact-info {
        padding: 5px;
        padding-left: 10px;
    }
}


@media (max-width: 1199px) {
    .contact-info-wrap .contact-info {
        text-align: center;
        margin: 0;
        padding-left: 0;
    }
}

@media (max-width: 640px) {
    .contact-info-wrap .contact-info {
        text-align: center;
        margin: 0 5px;
    }
}

.contact-info-wrap .contact-info .icon {
    float: left;
    text-align: center;
    margin-right: 20px;
}

@media (max-width: 1700px) {
    .contact-info-wrap .contact-info .icon {
        margin-right: 8px;
    }
}

@media (max-width: 1199px) {
    .contact-info-wrap .contact-info .icon {
        width: 50px;
        height: 50px;
        line-height: 50px;
        background: #F3F6F6;
        border-radius: 50%;
        margin: 0 auto;
        margin-left: 10px;
    }
}

@media (max-width: 640px) {
    .contact-info-wrap .contact-info .icon {
        width: 40px;
        height: 40px;
        line-height: 40px;
        margin: 0;
    }
}

.contact-info-wrap .contact-info .icon .fi:before {
    line-height: unset;
    color: #D9916A;
    font-size: 25px;
}

@media (max-width: 640px) {
    .contact-info-wrap .contact-info .icon .fi:before {
        font-size: 18px;
    }
}

.contact-info-wrap .contact-info .info-text {
    overflow: hidden;
    margin-left: 20px;
}

@media (max-width: 1199px) {
    .contact-info-wrap .contact-info .info-text {
        display: none;
    }
}

.contact-info-wrap .contact-info .info-text span {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    line-height: 18px;
    color: #779A65;
    display: block;
    margin-bottom: 8px;
}

@media (max-width: 1400px) {
    .contact-info-wrap .contact-info .info-text span {
        font-size: 13px;
    }
}

.contact-info-wrap .contact-info .info-text p {
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    color: #A3A3A3;
    margin-bottom: 0;
}

@media (max-width: 1700px) {
    .contact-info-wrap .contact-info .info-text p {
        font-size: 13px;
    }
}

.contact-info-wrap .contact-info:last-child {
    margin-right: 0;
}

.contact-info-wrap .contact-info:last-child .info-text {
    margin-right: 0;
}

@media (max-width: 450px) {
    .contact-info-wrap .contact-info:nth-child(2) {
        display: none;
    }
}


@media (max-width: 1399px) {
    .wpo-header-style-3 .header-right .close-form {
        display: none;
    }
}

@media (max-width: 1888px) {

    .wpo-header-style-3 .header-right .close-form .theme-btn,
    .wpo-header-style-3 .header-right .close-form .view-cart-btn {
        padding: 15px 25px;
    }
}

@media (max-width: 1600px) {

    .wpo-header-style-3 .header-right .close-form .theme-btn,
    .wpo-header-style-3 .header-right .close-form .view-cart-btn {
        padding: 15px;
        font-size: 12px;
    }
}

/*Transparent header*/

.transparent-header {
    background-color: transparent;
    position: absolute;
    left: 0;
    top: 20px;
    width: 100%;
    z-index: 11;
}

.transparent-header .navigation {
    margin-bottom: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
}

@media (min-width: 991px) {
    .transparent-header {
        padding: 0 100px;
    }
}

@media (max-width: 991px) {
    .transparent-header {
        position: relative;
        top: 0px;
    }
}

/*--------------------------------------------------------------
3. content
--------------------------------------------------------------*/

/*3.1 wpo-hero-slider*/
.wpo-hero-slider,
.static-hero,
.wpo-hero-slider-s2 {
    width: 100%;
    height: 850px;
    display: flex;
    position: relative;
    z-index: 0;
}

@media (max-width: 991px) {

    .wpo-hero-slider,
    .static-hero,
    .wpo-hero-slider-s2 {
        height: 600px;
    }
}

@media (max-width: 767px) {

    .wpo-hero-slider,
    .static-hero,
    .wpo-hero-slider-s2 {
        height: 500px;
    }
}

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

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

.wpo-hero-slider .slide-inner,
.wpo-hero-slider .hero-inner,
.static-hero .slide-inner,
.static-hero .hero-inner,
.wpo-hero-slider-s2 .slide-inner,
.wpo-hero-slider-s2 .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:before,
.wpo-hero-slider .hero-inner:before,
.static-hero .slide-inner:before,
.static-hero .hero-inner:before,
.wpo-hero-slider-s2 .slide-inner:before,
.wpo-hero-slider-s2 .hero-inner:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #040128;
    content: "";
    opacity: 0.6;
}

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

@media (max-width: 991px) {

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

@media (max-width: 767px) {

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

.wpo-hero-slider .swiper-button-prev,
.wpo-hero-slider .swiper-button-next,
.static-hero .swiper-button-prev,
.static-hero .swiper-button-next,
.wpo-hero-slider-s2 .swiper-button-prev,
.wpo-hero-slider-s2 .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,
.static-hero .swiper-button-prev:hover,
.static-hero .swiper-button-next:hover,
.wpo-hero-slider-s2 .swiper-button-prev:hover,
.wpo-hero-slider-s2 .swiper-button-next:hover {
    opacity: 0.9;
}

@media (max-width: 767px) {

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

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

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

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

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

@media (max-width: 991px) {

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

.wpo-hero-slider .swiper-pagination-bullet,
.static-hero .swiper-pagination-bullet,
.wpo-hero-slider-s2 .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,
    .static-hero .swiper-pagination-bullet,
    .wpo-hero-slider-s2 .swiper-pagination-bullet {
        display: none;
    }
}

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

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

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

@media (max-width: 1199px) {

    .wpo-hero-slider,
    .static-hero,
    .wpo-hero-slider-s2 {
        height: 600px;
    }
}

@media (max-width: 991px) {

    .wpo-hero-slider,
    .static-hero,
    .wpo-hero-slider-s2 {
        height: 600px;
    }
}

@media (max-width: 767px) {

    .wpo-hero-slider,
    .static-hero,
    .wpo-hero-slider-s2 {
        height: 500px;
    }
}

.wpo-hero-slider .gradient-overlay,
.static-hero .gradient-overlay,
.wpo-hero-slider-s2 .gradient-overlay {
    background: linear-gradient(left, #262626 45%, transparent 65%);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    opacity: 0.6;
}

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

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

.wpo-hero-slider .slide-title,
.static-hero .slide-title,
.wpo-hero-slider-s2 .slide-title {
    max-width: 930px;
    margin: 0 auto;
}

@media (max-width: 1199px) {

    .wpo-hero-slider .slide-title,
    .static-hero .slide-title,
    .wpo-hero-slider-s2 .slide-title {
        max-width: 555px;
    }
}

.wpo-hero-slider .slide-title h2,
.static-hero .slide-title h2,
.wpo-hero-slider-s2 .slide-title h2 {
    font-weight: 400;
    font-size: 100px;
    line-height: 100px;
    margin: 10px 0 15px;
    color: #fff;
    text-align: center;
}

@media (max-width: 1199px) {

    .wpo-hero-slider .slide-title h2,
    .static-hero .slide-title h2,
    .wpo-hero-slider-s2 .slide-title h2 {
        font-size: 50px;
    }
}

@media (max-width: 991px) {

    .wpo-hero-slider .slide-title h2,
    .static-hero .slide-title h2,
    .wpo-hero-slider-s2 .slide-title h2 {
        font-size: 40px;
        line-height: 55px;
    }
}

@media (max-width: 767px) {

    .wpo-hero-slider .slide-title h2,
    .static-hero .slide-title h2,
    .wpo-hero-slider-s2 .slide-title h2 {
        font-size: 30px;
        line-height: 36px;
    }
}

.wpo-hero-slider .slide-text,
.static-hero .slide-text,
.wpo-hero-slider-s2 .slide-text {
    max-width: 740px;
    text-align: center;
    margin: 0 auto;
}

@media (max-width: 991px) {

    .wpo-hero-slider .slide-text,
    .static-hero .slide-text,
    .wpo-hero-slider-s2 .slide-text {
        max-width: 500px;
    }
}

.wpo-hero-slider .slide-text p,
.static-hero .slide-text p,
.wpo-hero-slider-s2 .slide-text p {
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 40px;
    color: #e2e2e2;
    text-align: center;
}

@media (max-width: 991px) {

    .wpo-hero-slider .slide-text p,
    .static-hero .slide-text p,
    .wpo-hero-slider-s2 .slide-text p {
        font-size: 18px;
    }
}

@media (max-width: 767px) {

    .wpo-hero-slider .slide-text p,
    .static-hero .slide-text p,
    .wpo-hero-slider-s2 .slide-text p {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 30px;
    }
}

.wpo-hero-slider .slide-btns,
.static-hero .slide-btns,
.wpo-hero-slider-s2 .slide-btns {
    text-align: center;
    margin: 0 auto;
}

@media (max-width: 991px) {

    .wpo-hero-slider .slide-btns,
    .static-hero .slide-btns,
    .wpo-hero-slider-s2 .slide-btns {
        max-width: 400px;
    }
}

.wpo-hero-slider .slide-btns .theme-btn,
.wpo-hero-slider .slide-btns .view-cart-btn,
.static-hero .slide-btns .theme-btn,
.static-hero .slide-btns .view-cart-btn,
.wpo-hero-slider-s2 .slide-btns .theme-btn,
.wpo-hero-slider-s2 .slide-btns .view-cart-btn {
    border-radius: 0;
    font-weight: 600;
    font-size: 18px;
    color: #fff;
    background: #D9916A;
}


/*-------------------------------------------
  hero style 1
--------------------------------------------*/
.static-hero,
.static-hero-s2,
.static-hero-s3 {
    height: 1000px;
    display: flex;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media (max-width: 1399px) {

    .static-hero,
    .static-hero-s2,
    .static-hero-s3 {
        height: 900px;
    }
}

@media (max-width: 1199px) {

    .static-hero,
    .static-hero-s2,
    .static-hero-s3 {
        height: 820px;
    }
}

@media (max-width: 991px) {

    .static-hero,
    .static-hero-s2,
    .static-hero-s3 {
        height: 700px;
    }
}

@media (max-width: 767px) {

    .static-hero,
    .static-hero-s2,
    .static-hero-s3 {
        height: 500px;
    }
}

.static-hero:before,
.static-hero-s2:before,
.static-hero-s3:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.74);
    content: "";
}

@media (min-width: 992px) {

    .static-hero:before,
    .static-hero-s2:before,
    .static-hero-s3:before {
        display: none;
    }
}

.static-hero .hero-container .hero-inner::before,
.static-hero-s2 .hero-container .hero-inner::before,
.static-hero-s3 .hero-container .hero-inner::before {
    display: none;
}

.static-hero .hero-container .hero-inner .wpo-static-hero-inner,
.static-hero-s2 .hero-container .hero-inner .wpo-static-hero-inner,
.static-hero-s3 .hero-container .hero-inner .wpo-static-hero-inner {
    position: relative;
    margin-left: -120px;
}

@media (max-width: 1649px) {

    .static-hero .hero-container .hero-inner .wpo-static-hero-inner,
    .static-hero-s2 .hero-container .hero-inner .wpo-static-hero-inner,
    .static-hero-s3 .hero-container .hero-inner .wpo-static-hero-inner {
        margin-left: -60px;
    }
}

@media (max-width: 1499px) {

    .static-hero .hero-container .hero-inner .wpo-static-hero-inner,
    .static-hero-s2 .hero-container .hero-inner .wpo-static-hero-inner,
    .static-hero-s3 .hero-container .hero-inner .wpo-static-hero-inner {
        margin-left: -10px;
    }
}

@media (max-width: 1199px) {

    .static-hero .hero-container .hero-inner .wpo-static-hero-inner,
    .static-hero-s2 .hero-container .hero-inner .wpo-static-hero-inner,
    .static-hero-s3 .hero-container .hero-inner .wpo-static-hero-inner {
        margin: 0;
        margin-top: 50px;
    }
}

@media (max-width: 991px) {

    .static-hero .hero-container .hero-inner .wpo-static-hero-inner,
    .static-hero-s2 .hero-container .hero-inner .wpo-static-hero-inner,
    .static-hero-s3 .hero-container .hero-inner .wpo-static-hero-inner {
        margin-top: 100px;
    }
}

@media (max-width: 767px) {

    .static-hero .hero-container .hero-inner .wpo-static-hero-inner,
    .static-hero-s2 .hero-container .hero-inner .wpo-static-hero-inner,
    .static-hero-s3 .hero-container .hero-inner .wpo-static-hero-inner {
        margin-top: 0;
    }
}

.static-hero .hero-container .hero-inner .wpo-static-hero-inner span,
.static-hero-s2 .hero-container .hero-inner .wpo-static-hero-inner span,
.static-hero-s3 .hero-container .hero-inner .wpo-static-hero-inner span {
    font-family: "Josefin Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    text-transform: uppercase;
    color: #779A65;
}

.static-hero .hero-container .hero-inner .wpo-static-hero-inner .title,
.static-hero-s2 .hero-container .hero-inner .wpo-static-hero-inner .title,
.static-hero-s3 .hero-container .hero-inner .wpo-static-hero-inner .title {
    margin-top: 18px;
    font-family: "titillium";
    font-weight: 400;
    font-size: 70px;
    line-height: 90px;
    color: #262626;
    margin-bottom: 25px;
}

@media (max-width: 1199px) {

    .static-hero .hero-container .hero-inner .wpo-static-hero-inner .title,
    .static-hero-s2 .hero-container .hero-inner .wpo-static-hero-inner .title,
    .static-hero-s3 .hero-container .hero-inner .wpo-static-hero-inner .title {
        margin-top: 0px;
        font-size: 60px;
        line-height: 75px;
        margin-bottom: 16px;
    }
}

@media (max-width: 767px) {

    .static-hero .hero-container .hero-inner .wpo-static-hero-inner .title,
    .static-hero-s2 .hero-container .hero-inner .wpo-static-hero-inner .title,
    .static-hero-s3 .hero-container .hero-inner .wpo-static-hero-inner .title {
        font-size: 30px;
        line-height: 40px;
    }
}

.static-hero .hero-container .hero-inner .wpo-static-hero-inner .sub-title,
.static-hero-s2 .hero-container .hero-inner .wpo-static-hero-inner .sub-title,
.static-hero-s3 .hero-container .hero-inner .wpo-static-hero-inner .sub-title {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #525252;
    margin-bottom: 60px;
    margin-right: 155px;
}

@media (max-width: 1199px) {

    .static-hero .hero-container .hero-inner .wpo-static-hero-inner .sub-title,
    .static-hero-s2 .hero-container .hero-inner .wpo-static-hero-inner .sub-title,
    .static-hero-s3 .hero-container .hero-inner .wpo-static-hero-inner .sub-title {
        margin-right: 0;
    }
}

@media (max-width: 767px) {

    .static-hero .hero-container .hero-inner .wpo-static-hero-inner .sub-title,
    .static-hero-s2 .hero-container .hero-inner .wpo-static-hero-inner .sub-title,
    .static-hero-s3 .hero-container .hero-inner .wpo-static-hero-inner .sub-title {
        margin-bottom: 30px;
    }
}


.static-hero .shape-1,
.static-hero-s2 .shape-1,
.static-hero-s3 .shape-1 {
    position: absolute;
    top: 10%;
    left: 0;
    z-index: -11;
}

@media (max-width: 991px) {

    .static-hero .shape-1,
    .static-hero-s2 .shape-1,
    .static-hero-s3 .shape-1 {
        display: none;
    }
}

.static-hero .shape-2,
.static-hero-s2 .shape-2,
.static-hero-s3 .shape-2 {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -11;
}

@media (max-width: 991px) {

    .static-hero .shape-2,
    .static-hero-s2 .shape-2,
    .static-hero-s3 .shape-2 {
        display: none;
    }
}

.static-hero .slider-img-1,
.static-hero-s2 .slider-img-1,
.static-hero-s3 .slider-img-1 {
    position: absolute;
    width: 1060px;
    height: 630px;
    top: 31%;
    right: -28%;
    transform: translate(-50%, -50%);
    z-index: -11;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 16% 70%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 16% 70%);
}

@media (max-width: 1849px) {

    .static-hero .slider-img-1,
    .static-hero-s2 .slider-img-1,
    .static-hero-s3 .slider-img-1 {
        top: 31%;
        right: -30%;
    }
}

@media (max-width: 1799px) {

    .static-hero .slider-img-1,
    .static-hero-s2 .slider-img-1,
    .static-hero-s3 .slider-img-1 {
        top: 31%;
        right: -36%;
    }
}

@media (max-width: 1749px) {

    .static-hero .slider-img-1,
    .static-hero-s2 .slider-img-1,
    .static-hero-s3 .slider-img-1 {
        width: 985px;
        height: 620px;
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 97%, 16% 70%);
        clip-path: polygon(0 0, 100% 0, 100% 97%, 16% 70%);
    }
}

@media (max-width: 1549px) {

    .static-hero .slider-img-1,
    .static-hero-s2 .slider-img-1,
    .static-hero-s3 .slider-img-1 {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 79%, 16% 70%);
        clip-path: polygon(0 0, 100% 0, 100% 79%, 16% 70%);
        width: 913px;
        height: 695px;
        top: 34.7%;
        right: -37%;
    }
}

@media (max-width: 1399px) {

    .static-hero .slider-img-1,
    .static-hero-s2 .slider-img-1,
    .static-hero-s3 .slider-img-1 {
        width: 800px;
        height: 600px;
        top: 31%;
        right: -37%;
    }
}

@media (max-width: 1299px) {

    .static-hero .slider-img-1,
    .static-hero-s2 .slider-img-1,
    .static-hero-s3 .slider-img-1 {
        right: -38%;
    }
}

@media (max-width: 1199px) {

    .static-hero .slider-img-1,
    .static-hero-s2 .slider-img-1,
    .static-hero-s3 .slider-img-1 {
        right: -20%;
        top: 0;
        transform: none;
    }
}

@media (max-width: 991px) {

    .static-hero .slider-img-1,
    .static-hero-s2 .slider-img-1,
    .static-hero-s3 .slider-img-1 {
        right: -26%;
        top: -12%;
    }
}

@media (max-width: 767px) {

    .static-hero .slider-img-1,
    .static-hero-s2 .slider-img-1,
    .static-hero-s3 .slider-img-1 {
        left: 0;
        top: 0;
        -webkit-clip-path: none;
        clip-path: none;
        width: 100%;
        height: 100%;
    }
}

.static-hero .slider-img-1 img,
.static-hero-s2 .slider-img-1 img,
.static-hero-s3 .slider-img-1 img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 767px) {

    .static-hero .slider-img-1 img,
    .static-hero-s2 .slider-img-1 img,
    .static-hero-s3 .slider-img-1 img {
        height: 100vh;
    }
}

.static-hero .slider-img-2,
.static-hero-s2 .slider-img-2,
.static-hero-s3 .slider-img-2 {
    position: absolute;
    height: 671px;
    width: 934.5px;
    top: 67%;
    right: 0%;
    transform: translate(-50%, -50%);
    z-index: -11;
    -webkit-clip-path: polygon(55% 17%, 100% 31%, 87% 100%, 5% 100%);
    clip-path: polygon(55% 17%, 100% 31%, 87% 100%, 5% 100%);
}

@media (max-width: 1849px) {

    .static-hero .slider-img-2,
    .static-hero-s2 .slider-img-2,
    .static-hero-s3 .slider-img-2 {
        top: 67%;
        right: 1%;
    }
}

@media (max-width: 1799px) {

    .static-hero .slider-img-2,
    .static-hero-s2 .slider-img-2,
    .static-hero-s3 .slider-img-2 {
        top: 67%;
        right: -6%;
        -webkit-clip-path: polygon(54% 17%, 99% 31%, 86% 100%, 7% 100%);
        clip-path: polygon(54% 17%, 99% 31%, 86% 100%, 7% 100%);
    }
}

@media (max-width: 1749px) {

    .static-hero .slider-img-2,
    .static-hero-s2 .slider-img-2,
    .static-hero-s3 .slider-img-2 {
        top: 67%;
        right: -13%;
        -webkit-clip-path: polygon(50% 17%, 100% 31%, 87% 100%, 7% 100%);
        clip-path: polygon(50% 17%, 100% 31%, 87% 100%, 7% 100%);
    }
}

@media (max-width: 1699px) {

    .static-hero .slider-img-2,
    .static-hero-s2 .slider-img-2,
    .static-hero-s3 .slider-img-2 {
        right: -12.5%;
    }
}

@media (max-width: 1649px) {

    .static-hero .slider-img-2,
    .static-hero-s2 .slider-img-2,
    .static-hero-s3 .slider-img-2 {
        right: -12%;
    }
}

@media (max-width: 1599px) {

    .static-hero .slider-img-2,
    .static-hero-s2 .slider-img-2,
    .static-hero-s3 .slider-img-2 {
        right: -11%;
    }
}

@media (max-width: 1549px) {

    .static-hero .slider-img-2,
    .static-hero-s2 .slider-img-2,
    .static-hero-s3 .slider-img-2 {
        width: 849px;
        top: 73%;
        right: -7%;
        -webkit-clip-path: polygon(59% 16%, 100% 21%, 87% 100%, 17% 100%);
        clip-path: polygon(59% 16%, 100% 21%, 87% 100%, 17% 100%);
    }
}

@media (max-width: 1499px) {

    .static-hero .slider-img-2,
    .static-hero-s2 .slider-img-2,
    .static-hero-s3 .slider-img-2 {
        top: 73%;
        right: -6.8%;
    }
}

@media (max-width: 1449px) {

    .static-hero .slider-img-2,
    .static-hero-s2 .slider-img-2,
    .static-hero-s3 .slider-img-2 {
        right: -5.5%;
    }
}

@media (max-width: 1399px) {

    .static-hero .slider-img-2,
    .static-hero-s2 .slider-img-2,
    .static-hero-s3 .slider-img-2 {
        right: -8%;
        top: 70%;
        -webkit-clip-path: polygon(69% 18%, 100% 21%, 87% 100%, 34% 100%);
        clip-path: polygon(69% 18%, 100% 21%, 87% 100%, 34% 100%);
    }
}

@media (max-width: 1349px) {

    .static-hero .slider-img-2,
    .static-hero-s2 .slider-img-2,
    .static-hero-s3 .slider-img-2 {
        right: -7%;
    }
}

@media (max-width: 1199px) {

    .static-hero .slider-img-2,
    .static-hero-s2 .slider-img-2,
    .static-hero-s3 .slider-img-2 {
        display: none;
    }
}

.static-hero .slider-img-2 img,
.static-hero-s2 .slider-img-2 img,
.static-hero-s3 .slider-img-2 img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.static-hero .slider-img-3,
.static-hero-s2 .slider-img-3,
.static-hero-s3 .slider-img-3 {
    position: absolute;
    height: 510px;
    width: 633.5px;
    top: 75%;
    right: -18%;
    transform: translate(-50%, -50%);
    z-index: -11;
    -webkit-clip-path: polygon(25% 10%, 100% 30%, 100% 100%, 6% 100%);
    clip-path: polygon(25% 10%, 100% 30%, 100% 100%, 6% 100%);
}

@media (max-width: 1799px) {

    .static-hero .slider-img-3,
    .static-hero-s2 .slider-img-3,
    .static-hero-s3 .slider-img-3 {
        top: 75%;
        right: -25%;
    }
}

@media (max-width: 1749px) {

    .static-hero .slider-img-3,
    .static-hero-s2 .slider-img-3,
    .static-hero-s3 .slider-img-3 {
        top: 75%;
        right: -33%;
    }
}

@media (max-width: 1549px) {

    .static-hero .slider-img-3,
    .static-hero-s2 .slider-img-3,
    .static-hero-s3 .slider-img-3 {
        -webkit-clip-path: polygon(24% 8%, 100% 16%, 100% 100%, 9% 100%);
        clip-path: polygon(24% 8%, 100% 16%, 100% 100%, 9% 100%);
    }
}

@media (max-width: 1399px) {

    .static-hero .slider-img-3,
    .static-hero-s2 .slider-img-3,
    .static-hero-s3 .slider-img-3 {
        top: 72%;
        right: -37%;
    }
}

@media (max-width: 1299px) {

    .static-hero .slider-img-3,
    .static-hero-s2 .slider-img-3,
    .static-hero-s3 .slider-img-3 {
        right: -38%;
    }
}

@media (max-width: 1249px) {

    .static-hero .slider-img-3,
    .static-hero-s2 .slider-img-3,
    .static-hero-s3 .slider-img-3 {
        right: -39%;
    }
}

@media (max-width: 1199px) {

    .static-hero .slider-img-3,
    .static-hero-s2 .slider-img-3,
    .static-hero-s3 .slider-img-3 {
        right: -31%;
        top: 79%;
    }
}

@media (max-width: 1099px) {

    .static-hero .slider-img-3,
    .static-hero-s2 .slider-img-3,
    .static-hero-s3 .slider-img-3 {
        right: -32%;
    }
}

@media (max-width: 991px) {

    .static-hero .slider-img-3,
    .static-hero-s2 .slider-img-3,
    .static-hero-s3 .slider-img-3 {
        right: -40%;
        top: 80%;
    }
}

@media (max-width: 899px) {

    .static-hero .slider-img-3,
    .static-hero-s2 .slider-img-3,
    .static-hero-s3 .slider-img-3 {
        right: -41%;
    }
}

@media (max-width: 799px) {

    .static-hero .slider-img-3,
    .static-hero-s2 .slider-img-3,
    .static-hero-s3 .slider-img-3 {
        right: -42%;
    }
}

@media (max-width: 767px) {

    .static-hero .slider-img-3,
    .static-hero-s2 .slider-img-3,
    .static-hero-s3 .slider-img-3 {
        display: none;
    }
}

.static-hero .slider-img-3 img,
.static-hero-s2 .slider-img-3 img,
.static-hero-s3 .slider-img-3 img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/*-------------------------------------------
  wpo-hero-slider-1
--------------------------------------------*/
.wpo-hero-slider-1 {
    height: 900px;
    position: relative;
    border-top: 1px solid #D9D9D9;
    /** slider controls **/
}

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

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

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

.wpo-hero-slider-1::before {
    position: absolute;
    content: "";
    left: 210px;
    top: 0;
    width: 1px;
    height: 100%;
    background: #D9D9D9;
}

@media (max-width: 1799px) {
    .wpo-hero-slider-1::before {
        left: 150px;
    }
}

@media (max-width: 1499px) {
    .wpo-hero-slider-1::before {
        left: 80px;
    }
}

@media (max-width: 991px) {
    .wpo-hero-slider-1::before {
        left: 20px;
    }
}

@media (max-width: 575px) {
    .wpo-hero-slider-1::before {
        left: 5px;
    }
}

.wpo-hero-slider-1::after {
    position: absolute;
    content: "";
    right: 170px;
    top: 0;
    width: 1px;
    height: 100%;
    background: #D9D9D9;
}

@media (max-width: 1799px) {
    .wpo-hero-slider-1::after {
        right: 120px;
    }
}

@media (max-width: 1499px) {
    .wpo-hero-slider-1::after {
        right: 80px;
    }
}

@media (max-width: 991px) {
    .wpo-hero-slider-1::after {
        right: 20px;
    }
}

@media (max-width: 575px) {
    .wpo-hero-slider-1::after {
        right: 5px;
    }
}

.wpo-hero-slider-1 .slide {
    height: 900px;
    position: relative;
}

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

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

.wpo-hero-slider-1 .slide::before {
    position: absolute;
    content: "";
    left: 51%;
    top: 42%;
    transform: translate(-50%, -50%);
    width: 77%;
    height: 669px;
    background: #F1F5EE;
    z-index: -11;
}

@media (max-width: 1799px) {
    .wpo-hero-slider-1 .slide::before {
        width: 80%;
        height: 600px;
    }
}

@media (max-width: 1699px) {
    .wpo-hero-slider-1 .slide::before {
        top: 40%;
    }
}

@media (max-width: 1599px) {
    .wpo-hero-slider-1 .slide::before {
        height: 569px;
        top: 35%;
    }
}

@media (max-width: 1499px) {
    .wpo-hero-slider-1 .slide::before {
        left: 50%;
        width: 85%;
    }
}

@media (max-width: 1399px) {
    .wpo-hero-slider-1 .slide::before {
        height: 530px;
        top: 30%;
    }
}

@media (max-width: 1199px) {
    .wpo-hero-slider-1 .slide::before {
        height: 400px;
        top: 25%;
        width: 82%;
    }
}

@media (max-width: 991px) {
    .wpo-hero-slider-1 .slide::before {
        top: 30%;
        width: 93%;
    }
}

@media (max-width: 767px) {
    .wpo-hero-slider-1 .slide::before {
        top: 50%;
        width: 93%;
        height: 100%;
    }
}

@media (max-width: 575px) {
    .wpo-hero-slider-1 .slide::before {
        width: 100%;
        left: 50%;
        top: 50%;
    }
}

.wpo-hero-slider-1 .slide-caption {
    margin-top: 95px;
    z-index: 1;
}

@media (max-width: 1699px) {
    .wpo-hero-slider-1 .slide-caption {
        margin-left: 50px;
    }
}

@media (max-width: 1599px) {
    .wpo-hero-slider-1 .slide-caption {
        margin-left: 80px;
    }
}

@media (max-width: 1199px) {
    .wpo-hero-slider-1 .slide-caption {
        margin-top: 40px;
    }
}

@media (max-width: 991px) {
    .wpo-hero-slider-1 .slide-caption {
        margin-left: 0;
        margin-top: 85px;
    }
}

@media (max-width: 991px) {
    .wpo-hero-slider-1 .slide-caption {
        margin-top: 100px;
    }
}

@media (max-width: 767px) {
    .wpo-hero-slider-1 .slide-caption {
        margin-top: 80px;
    }
}

.wpo-hero-slider-1 .slide-title h2 {
    font-weight: 400;
    font-size: 100px;
    line-height: 120px;
    color: #262626;
}

@media (max-width: 1399px) {
    .wpo-hero-slider-1 .slide-title h2 {
        font-size: 80px;
        line-height: 100px;
    }
}

@media (max-width: 1199px) {
    .wpo-hero-slider-1 .slide-title h2 {
        font-size: 60px;
        line-height: 70px;
    }
}

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

@media (max-width: 575px) {
    .wpo-hero-slider-1 .slide-title h2 {
        font-size: 30px;
        line-height: 40px;
    }
}

.wpo-hero-slider-1 .slide-subtitle p {
    font-family: "titillium";
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #525252;
    margin-bottom: 30px;
    margin-right: 130px;
}

@media (max-width: 1199px) {
    .wpo-hero-slider-1 .slide-subtitle p {
        margin-bottom: 15px;
    }
}

@media (max-width: 991px) {
    .wpo-hero-slider-1 .slide-subtitle p {
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .wpo-hero-slider-1 .slide-subtitle p {
        margin-right: 30px;
    }
}

.wpo-hero-slider-1 .theme-btn-s2 {
    color: #779A65;
}

.wpo-hero-slider-1 .slider-pic {
    position: absolute;
    right: 220px;
    top: 150px;
    width: 910px;
    height: 680px;
    background: #fff;
    padding: 15px;
}

@media (max-width: 1799px) {
    .wpo-hero-slider-1 .slider-pic {
        width: 750px;
        height: 640px;
    }
}

@media (max-width: 1699px) {
    .wpo-hero-slider-1 .slider-pic {
        right: 180px;
    }
}

@media (max-width: 1599px) {
    .wpo-hero-slider-1 .slider-pic {
        width: 650px;
        height: 488px;
    }
}

@media (max-width: 1499px) {
    .wpo-hero-slider-1 .slider-pic {
        right: 135px;
    }
}

@media (max-width: 1399px) {
    .wpo-hero-slider-1 .slider-pic {
        right: 100px;
        width: 580px;
        height: 450px;
    }
}

@media (max-width: 1199px) {
    .wpo-hero-slider-1 .slider-pic {
        width: 430px;
        height: auto;
        top: 50px;
    }
}

@media (max-width: 991px) {
    .wpo-hero-slider-1 .slider-pic {
        right: 40px;
        width: 400px;
    }
}

@media (max-width: 767px) {
    .wpo-hero-slider-1 .slider-pic {
        display: none;
    }
}

.wpo-hero-slider-1 .slider-pic .slider-item img {
    width: 100%;
}

.wpo-hero-slider-1 .hero-left-img {
    background: #fff;
    width: 380px;
    padding: 15px;
    display: inline-block;
    position: absolute;
    left: 26%;
    top: 29%;
    transform: translate(-50%, 50%);
}

@media (max-width: 1399px) {
    .wpo-hero-slider-1 .hero-left-img {
        width: 350px;
    }
}

@media (max-width: 1199px) {
    .wpo-hero-slider-1 .hero-left-img {
        width: 300px;
        top: 24%;
    }
}

@media (max-width: 991px) {
    .wpo-hero-slider-1 .hero-left-img {
        display: none;
    }
}

.wpo-hero-slider-1 .hero-left-img img {
    width: 100%;
}

.wpo-hero-slider-1 .hero-social-icon {
    list-style: none;
    position: absolute;
    left: -7%;
    top: 44%;
    transform: rotate(-90deg);
}

@media (max-width: 1799px) {
    .wpo-hero-slider-1 .hero-social-icon {
        left: -9%;
    }
}

@media (max-width: 1499px) {
    .wpo-hero-slider-1 .hero-social-icon {
        left: -14%;
    }
}

@media (max-width: 1399px) {
    .wpo-hero-slider-1 .hero-social-icon {
        left: -17%;
    }
}

@media (max-width: 1199px) {
    .wpo-hero-slider-1 .hero-social-icon {
        left: -19%;
    }
}

@media (max-width: 991px) {
    .wpo-hero-slider-1 .hero-social-icon {
        display: none;
    }
}

.wpo-hero-slider-1 .hero-social-icon li {
    display: inline-block;
}

.wpo-hero-slider-1 .hero-social-icon li a {
    font-family: "titillium";
    font-weight: 400;
    font-size: 25px;
    line-height: 40px;
    text-transform: uppercase;
    color: #525252;
    margin-right: 50px;
    transition: all 0.3s ease-in-out;
}

.wpo-hero-slider-1 .hero-social-icon li a:hover {
    color: #D9916A;
}

.wpo-hero-slider-1 .slick-dots {
    width: 0;
    top: 52%;
    left: 112%;
    transform: translate(-50%, -50%);
}

@media (max-width: 1499px) {
    .wpo-hero-slider-1 .slick-dots {
        left: 110%;
    }
}

@media (max-width: 1399px) {
    .wpo-hero-slider-1 .slick-dots {
        left: 105%;
    }
}

@media (max-width: 1199px) {
    .wpo-hero-slider-1 .slick-dots {
        top: 77%;
    }
}

@media (max-width: 991px) {
    .wpo-hero-slider-1 .slick-dots {
        top: 117%;
        left: -50px;
        display: flex;
        bottom: 0;
    }
}

.wpo-hero-slider-1 .slick-dots li {
    margin: 0;
}

.wpo-hero-slider-1 .slick-dots li.slick-active button {
    color: #D9916A;
    transition: all 0.3s ease-in-out;
    font-size: 50px;
    line-height: 40px;
    color: #525252;
}

@media (max-width: 991px) {
    .wpo-hero-slider-1 .slick-dots li.slick-active button {
        font-size: 25px;
        line-height: 30px;
    }
}

.wpo-hero-slider-1 .slick-dots li.slick-active {
    color: #D9916A;
    position: relative;
}

.wpo-hero-slider-1 .slick-dots button:before,
.wpo-hero-slider-1 .slick-dots button:before {
    display: none;
}

.wpo-hero-slider-1 .slick-dots li {
    display: block;
    height: 60px;
    width: 60px;
    cursor: pointer;
    color: #262626;
}

@media (max-width: 991px) {
    .wpo-hero-slider-1 .slick-dots li {
        height: 40px;
        width: 40px;
    }
}

.wpo-hero-slider-1 .slick-dots li button {
    height: 60px;
    width: 60px;
    display: block;
    cursor: pointer;
    font-family: "titillium";
    font-weight: 400;
    font-size: 30px;
    line-height: 40px;
    text-transform: uppercase;
    color: #C9C9C9;
}

@media (max-width: 991px) {
    .wpo-hero-slider-1 .slick-dots li button {
        font-size: 20px;
        line-height: 30px;
        height: 40px;
        width: 40px;
    }
}

/*-------------------------------------------
  hero style 2
--------------------------------------------*/
.static-hero-s2,
.static-hero-s3 {
    display: block;
}

@media (max-width: 575px) {

    .static-hero-s2,
    .static-hero-s3 {
        height: 600px;
    }
}

@media (max-width: 399px) {

    .static-hero-s2,
    .static-hero-s3 {
        height: 500px;
    }
}

.static-hero-s2::before,
.static-hero-s3::before {
    position: unset;
    display: none;
}

.static-hero-s2 .hero-inner,
.static-hero-s3 .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: end;
    text-align: left;
}

.static-hero-s2 .wpo-static-hero-inner,
.static-hero-s3 .wpo-static-hero-inner {
    top: -85px;
}

@media (max-width: 399px) {

    .static-hero-s2 .hero-container .hero-inner .wpo-static-hero-inner span,
    .static-hero-s3 .hero-container .hero-inner .wpo-static-hero-inner span {
        font-size: 15px;
    }
}

.static-hero-s2 .hero-container .hero-inner .wpo-static-hero-inner .title,
.static-hero-s3 .hero-container .hero-inner .wpo-static-hero-inner .title {
    margin-top: 0;
}

@media (max-width: 1399px) {

    .static-hero-s2 .hero-container .hero-inner .wpo-static-hero-inner .title,
    .static-hero-s3 .hero-container .hero-inner .wpo-static-hero-inner .title {
        font-size: 65px;
        line-height: 80px;
    }
}

@media (max-width: 1199px) {

    .static-hero-s2 .hero-container .hero-inner .wpo-static-hero-inner .title,
    .static-hero-s3 .hero-container .hero-inner .wpo-static-hero-inner .title {
        font-size: 52px;
        line-height: 74px;
    }
}

@media (max-width: 767px) {

    .static-hero-s2 .hero-container .hero-inner .wpo-static-hero-inner .title,
    .static-hero-s3 .hero-container .hero-inner .wpo-static-hero-inner .title {
        font-size: 48px;
        line-height: 63px;
    }
}

@media (max-width: 575px) {

    .static-hero-s2 .hero-container .hero-inner .wpo-static-hero-inner .title,
    .static-hero-s3 .hero-container .hero-inner .wpo-static-hero-inner .title {
        font-size: 32px;
        line-height: 40px;
    }
}

.static-hero-s2 .slider-img-4,
.static-hero-s3 .slider-img-4 {
    right: 0;
    margin: 0 auto;
    top: 20px;
    width: 80%;
    height: 980px;
    align-items: center;
    background-position: 50%;
    background-size: cover;
    display: flex;
    justify-content: center;
    position: absolute;
    text-align: right;
    z-index: -1;
    background-image: url(../images/slider/slide-7.jpg);
}

@media (max-width: 1399px) {

    .static-hero-s2 .slider-img-4,
    .static-hero-s3 .slider-img-4 {
        height: 875px;
    }
}

@media (max-width: 1199px) {

    .static-hero-s2 .slider-img-4,
    .static-hero-s3 .slider-img-4 {
        height: 800px;
    }
}

@media (max-width: 991px) {

    .static-hero-s2 .slider-img-4,
    .static-hero-s3 .slider-img-4 {
        height: 650px;
        top: 40px;
    }
}

.static-hero-s2 .slider-img-4:after,
.static-hero-s3 .slider-img-4:after {
    background: url(../images/slider/shape-3.jpg) no-repeat;
    background-size: cover;
    content: "";
    height: 100%;
    right: 0;
    mix-blend-mode: screen;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 999;
}

/*-------------------------------------------
    static-hero-s3
--------------------------------------------*/
.static-hero-s3 {
    background: url(../images/slider/slide-11.jpg);
}

@media (max-width: 1399px) {
    .static-hero-s3 {
        height: 900px;
    }
}

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

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

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

.static-hero-s3 .hero-inner {
    align-items: center;
}

.static-hero-s3 .hero-inner .wpo-static-hero-inner {
    top: 0;
}

.static-hero-s3 .hero-inner .wpo-static-hero-inner .title {
    font-family: "titillium";
    font-weight: 300;
    font-size: 70px;
    line-height: 100px;
    color: #262626;
}

.static-hero-s3 .hero-inner .wpo-static-hero-inner p {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #525252;
    max-width: 575px;
    margin-bottom: 60px;
}

@media (max-width: 767px) {
    .static-hero-s3 .hero-inner .wpo-static-hero-inner p {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .static-hero-s3 .hero-container .hero-inner .wpo-static-hero-inner {
        margin-top: 0px;
    }
}

/*3.3 wpo-fun-fact-section */
.wpo-fun-fact-section,
.wpo-fun-fact-section-s2 {
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.wpo-fun-fact-section .wpo-fun-fact-grids,
.wpo-fun-fact-section-s2 .wpo-fun-fact-grids {
    border: 2px dashed #DADADA;
    padding: 20px;
}

.wpo-fun-fact-section .wpo-fun-fact-grids .grid,
.wpo-fun-fact-section-s2 .wpo-fun-fact-grids .grid {
    width: 25%;
    float: left;
    border-top: 2px dashed #DADADA;
    border-bottom: 2px dashed #DADADA;
    border-left: 2px dashed #DADADA;
    padding: 30px 0;
    padding-bottom: 19px;
}

@media (max-width: 767px) {

    .wpo-fun-fact-section .wpo-fun-fact-grids .grid,
    .wpo-fun-fact-section-s2 .wpo-fun-fact-grids .grid {
        border: 2px dashed #DADADA;
        border-bottom: 2px dashed transparent;
    }
}

@media (max-width: 991px) {

    .wpo-fun-fact-section .wpo-fun-fact-grids .grid:nth-child(1),
    .wpo-fun-fact-section-s2 .wpo-fun-fact-grids .grid:nth-child(1) {
        border-bottom: 2px dashed transparent;
    }
}

.wpo-fun-fact-section .wpo-fun-fact-grids .grid:nth-child(4),
.wpo-fun-fact-section-s2 .wpo-fun-fact-grids .grid:nth-child(4) {
    border-right: 2px dashed #DADADA;
}

@media (max-width: 767px) {

    .wpo-fun-fact-section .wpo-fun-fact-grids .grid:nth-child(4),
    .wpo-fun-fact-section-s2 .wpo-fun-fact-grids .grid:nth-child(4) {
        border-bottom: 2px dashed #DADADA;
    }
}

@media (max-width: 991px) {

    .wpo-fun-fact-section .wpo-fun-fact-grids .grid:nth-child(2),
    .wpo-fun-fact-section-s2 .wpo-fun-fact-grids .grid:nth-child(2) {
        border-right: 2px dashed #DADADA;
        border-bottom: 2px dashed transparent;
    }
}

@media (max-width: 991px) {

    .wpo-fun-fact-section .wpo-fun-fact-grids .grid,
    .wpo-fun-fact-section-s2 .wpo-fun-fact-grids .grid {
        width: 50%;
    }
}

@media (max-width: 767px) {

    .wpo-fun-fact-section .wpo-fun-fact-grids .grid,
    .wpo-fun-fact-section-s2 .wpo-fun-fact-grids .grid {
        width: 100%;
        float: none;
    }
}

.wpo-fun-fact-section .grid h3,
.wpo-fun-fact-section-s2 .grid h3 {
    margin: 0 0 0.2em;
    font-family: "titillium";
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 50px;
    line-height: 60px;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #262626;
}

@media (max-width: 767px) {

    .wpo-fun-fact-section .grid h3,
    .wpo-fun-fact-section-s2 .grid h3 {
        line-height: 45px;
        font-size: 35px;
    }
}

.wpo-fun-fact-section .grid h3+p,
.wpo-fun-fact-section-s2 .grid h3+p {
    text-transform: uppercase;
    color: #262626;
    font-family: "titillium";
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
}

@media (max-width: 767px) {

    .wpo-fun-fact-section .grid h3+p,
    .wpo-fun-fact-section-s2 .grid h3+p {
        font-size: 18px;
        margin-bottom: 10px;
    }
}

/* 3.6 wpo-pricing-section */

@media (max-width: 1199px) {
    .wpo-pricing-section .wpo-section-title h2 {
        font-size: 43px;
        line-height: 60px;
    }
}

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

.wpo-pricing-section .wpo-pricing-wrap {
    margin-top: 35px;
}

.wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item {
    background: transparent;
    box-shadow: 0px 5px 30px rgba(7, 6, 56, 0.08);
}

@media (max-width: 991px) {
    .wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item {
        margin-bottom: 30px;
    }
}

.wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item .wpo-pricing-top {
    padding: 30px;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 0;
}

.wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item .wpo-pricing-top .pricing-thumb {
    display: inline-block;
}

.wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item .wpo-pricing-top .pricing-thumb span {
    color: #262626;
    font-family: "titillium";
    font-weight: 400;
    font-size: 35px;
    line-height: 60px;
}

.wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item .wpo-pricing-top .wpo-pricing-text {
    border-bottom: 1px solid #f1f1f1;
}

.wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item .wpo-pricing-top .wpo-pricing-text h2 {
    color: #779A65;
    font-size: 60px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 20px;
    font-weight: 400;
    margin-top: 0;
}

.wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item .wpo-pricing-top .wpo-pricing-text h2 strong {
    font-size: 30px;
    line-height: 50px;
}

@media (max-width: 1199px) {
    .wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item .wpo-pricing-top .wpo-pricing-text h2 strong {
        line-height: 37px;
        font-size: 25px;
    }
}

@media (max-width: 1199px) {
    .wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item .wpo-pricing-top .wpo-pricing-text h2 {
        font-size: 40px;
    }
}

.wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item .wpo-pricing-top .wpo-pricing-text h2 span {
    font-weight: 400;
    color: #919191;
    font-size: 16px;
    text-transform: capitalize;
    padding-left: 5px;
    line-height: 40px;
}

@media (max-width: 1199px) {
    .wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item .wpo-pricing-top .wpo-pricing-text h2 span {
        line-height: 35px;
    }
}

.wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item .wpo-pricing-top .wpo-pricing-text p {
    padding-bottom: 30px;
    max-width: 282px;
    margin: 0 auto;
    border-bottom: 1px solid #D9916A;
}

.wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item .wpo-pricing-bottom {
    padding: 40px;
    padding-top: 35px;
    text-align: center;
}

@media (max-width: 1199px) {
    .wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item .wpo-pricing-bottom {
        padding: 40px 20px;
    }
}

.wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item .wpo-pricing-bottom .wpo-pricing-bottom-text ul {
    list-style: none;
    padding-left: 0;
}

.wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item .wpo-pricing-bottom .wpo-pricing-bottom-text ul li {
    color: #525252;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 20px;
}

@media (max-width: 1199px) {
    .wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item .wpo-pricing-bottom .wpo-pricing-bottom-text ul li {
        margin-bottom: 15px;
    }
}

@media (max-width: 399px) {
    .wpo-pricing-section .wpo-pricing-wrap .wpo-pricing-item .wpo-pricing-bottom .wpo-pricing-bottom-text ul li {
        font-size: 17px;
        line-height: 20px;
    }
}


.wpo-pricing-section .wpo-pricing-wrap .col:nth-child(2) .wpo-pricing-item {
    border: 1px dashed transparent;
    background: #779A65;
}

.wpo-pricing-section .wpo-pricing-wrap .col:nth-child(2) .wpo-pricing-item .wpo-pricing-top .pricing-thumb span {
    color: #fff;
}

.wpo-pricing-section .wpo-pricing-wrap .col:nth-child(2) .wpo-pricing-item .wpo-pricing-top .wpo-pricing-text {
    border-bottom: 1px solid #95b385;
}

.wpo-pricing-section .wpo-pricing-wrap .col:nth-child(2) .wpo-pricing-item .wpo-pricing-top .wpo-pricing-text h2 {
    color: #fff;
}

.wpo-pricing-section .wpo-pricing-wrap .col:nth-child(2) .wpo-pricing-item .wpo-pricing-top .wpo-pricing-text h2 span {
    color: #fff;
}

.wpo-pricing-section .wpo-pricing-wrap .col:nth-child(2) .wpo-pricing-item .wpo-pricing-bottom-text ul li {
    color: #fff;
}


.wpo-pricing-section .wpo-pricing-wrap .col:last-child .wpo-pricing-item {
    margin-bottom: 0;
}

.wpo-pricing-section .wpo-pricing-wrap .price-btn {
    min-width: 165px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 600;
    color: #779A65;
    border-radius: 0px;
    display: inline-block;
    border: 1px solid #ffcdb6;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-top: 20px;
}

.wpo-pricing-section .wpo-pricing-wrap .price-btn:hover {
    border-color: #D9916A;
    color: #fff;
}

.wpo-pricing-section .wpo-pricing-wrap .price-btn::before {
    position: absolute;
    content: '';
    width: 0;
    background: #D9916A;
    top: 0;
    left: 0;
    height: 100%;
    z-index: -1;
}

.wpo-pricing-section .wpo-pricing-wrap .price-btn:hover::before {
    animation: pricebtnanim 0.60s forwards;
}

.wpo-pricing-section .wpo-pricing-wrap .col:nth-child(2) .price-btn {
    color: #D9916A;
    background: #fff;
    border-color: #fff;
}

.wpo-pricing-section .wpo-pricing-wrap .col:nth-child(2) .price-btn:hover {
    color: #fff;
    border-color: #D9916A;
}

@-webkit-keyframes pricebtnanim {

    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* 5.10 wpo-subscribe-section */

.wpo-subscribe-section,
.wpo-subscribe-section-s2 {
    background: #5a7e48;
    position: relative;
    z-index: 11;
}

.wpo-subscribe-section .s-shape,
.wpo-subscribe-section-s2 .s-shape {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.wpo-subscribe-section:before,
.wpo-subscribe-section-s2:before {
    position: absolute;
    left: 50%;
    bottom: -20px;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #5a7e48;
    content: "";
}

.wpo-subscribe-section .wpo-section-title,
.wpo-subscribe-section-s2 .wpo-section-title {
    max-width: 590px;
    margin: 0 auto;
    margin-bottom: 50px;
}

@media (max-width: 575px) {

    .wpo-subscribe-section .wpo-section-title,
    .wpo-subscribe-section-s2 .wpo-section-title {
        margin-bottom: 30px;
    }
}

.wpo-subscribe-section .wpo-section-title h2,
.wpo-subscribe-section-s2 .wpo-section-title h2 {
    color: #fff;
    font-weight: 700;
    font-size: 38px;
    line-height: 48px;
}

@media (max-width: 575px) {

    .wpo-subscribe-section .wpo-section-title h2,
    .wpo-subscribe-section-s2 .wpo-section-title h2 {
        font-size: 30px;
        line-height: 42px;
    }
}

@media (max-width: 450px) {

    .wpo-subscribe-section .wpo-section-title h2,
    .wpo-subscribe-section-s2 .wpo-section-title h2 {
        font-size: 22px;
        line-height: 30px;
    }
}

.wpo-subscribe-section .wpo-section-title h2:before,
.wpo-subscribe-section .wpo-section-title h2:after {
    content: none;
}

.wpo-subscribe-section .wpo-section-title span,
.wpo-subscribe-section-s2 .wpo-section-title span {
    color: #fff;
}

.wpo-subscribe-section .wpo-subscribe-wrap,
.wpo-subscribe-section-s2 .wpo-subscribe-wrap {
    max-width: 1030px;
    margin: 0 auto;
}

.wpo-subscribe-section .wpo-subscribe-wrap form,
.wpo-subscribe-section-s2 .wpo-subscribe-wrap form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (max-width: 991px) {

    .wpo-subscribe-section .wpo-subscribe-wrap form,
    .wpo-subscribe-section-s2 .wpo-subscribe-wrap form {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.wpo-subscribe-section .wpo-subscribe-wrap form .form-field,
.wpo-subscribe-section-s2 .wpo-subscribe-wrap form .form-field {
    margin: 0 10px;
    -ms-flex-preferred-size: 35%;
    flex-basis: 35%;
}

@media (max-width: 991px) {

    .wpo-subscribe-section .wpo-subscribe-wrap form .form-field,
    .wpo-subscribe-section-s2 .wpo-subscribe-wrap form .form-field {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        margin-bottom: 20px;
    }
}

.wpo-subscribe-section .wpo-subscribe-wrap form .form-field .form-control,
.wpo-subscribe-section-s2 .wpo-subscribe-wrap form .form-field .form-control {
    height: 60px;
    background: transparent;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #5a7e48;
    color: #fff;
    padding: 15px;
}

.wpo-subscribe-section .wpo-subscribe-wrap form .form-field .form-control:focus,
.wpo-subscribe-section-s2 .wpo-subscribe-wrap form .form-field .form-control:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.wpo-subscribe-section .wpo-subscribe-wrap form .form-field .form-control::-webkit-input-placeholder,
.wpo-subscribe-section-s2 .wpo-subscribe-wrap form .form-field .form-control::-webkit-input-placeholder {
    color: #fff;
}

.wpo-subscribe-section .wpo-subscribe-wrap form .form-field .form-control:-ms-input-placeholder,
.wpo-subscribe-section-s2 .wpo-subscribe-wrap form .form-field .form-control:-ms-input-placeholder {
    color: #fff;
}

.wpo-subscribe-section .wpo-subscribe-wrap form .form-field .form-control::-ms-input-placeholder,
.wpo-subscribe-section-s2 .wpo-subscribe-wrap form .form-field .form-control::-ms-input-placeholder {
    color: #fff;
}

.wpo-subscribe-section .wpo-subscribe-wrap form .form-field .form-control::placeholder,
.wpo-subscribe-section-s2 .wpo-subscribe-wrap form .form-field .form-control::placeholder {
    color: #fff;
}

.wpo-subscribe-section .wpo-subscribe-wrap form .form-field.s-btn,
.wpo-subscribe-section-s2 .wpo-subscribe-wrap form .form-field.s-btn {
    -ms-flex-preferred-size: 30%;
    flex-basis: 30%;
}

@media (max-width: 991px) {

    .wpo-subscribe-section .wpo-subscribe-wrap form .form-field.s-btn,
    .wpo-subscribe-section-s2 .wpo-subscribe-wrap form .form-field.s-btn {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        margin-bottom: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.wpo-subscribe-section .wpo-subscribe-wrap form .form-field.s-btn .theme-btn-s2,
.wpo-subscribe-section-s2 .wpo-subscribe-wrap form .form-field.s-btn .theme-btn-s2 {
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #D9916A;
    color: #fff;
    padding: 15px 45px;
    text-decoration: none;
    border: none;
    padding-bottom: 11px;
    border-radius: 5px;
}

.wpo-subscribe-section .wpo-subscribe-wrap form .form-field.s-btn .theme-btn-s2:hover {
    background: #d98456;
}

.wpo-subscribe-section .wpo-subscribe-wrap form .form-field.s-btn .theme-btn-s2 i,
.wpo-subscribe-section-s2 .wpo-subscribe-wrap form .form-field.s-btn .theme-btn-s2 i {
    margin-left: 10px;
}

@media (max-width: 1199px) {

    .wpo-subscribe-section .wpo-subscribe-wrap form .form-field.s-btn .theme-btn-s2,
    .wpo-subscribe-section-s2 .wpo-subscribe-wrap form .form-field.s-btn .theme-btn-s2 {
        padding: 10px 20px;
    }
}

@media (max-width: 1199px) {

    .wpo-subscribe-section .wpo-subscribe-wrap form .form-field.s-btn .theme-btn-s2 img,
    .wpo-subscribe-section-s2 .wpo-subscribe-wrap form .form-field.s-btn .theme-btn-s2 img {
        max-width: 60%;
    }
}

/* 3.6 arkitek-service-area */
.arkitek-service-area .arkitek-service-wrap {
    position: relative;
    z-index: 1;
    -webkit-box-shadow: 0px 5px 30px rgba(7, 6, 56, 0.08);
    box-shadow: 0px 5px 30px rgba(7, 6, 56, 0.08);
}

.arkitek-service-area .arkitek-service-wrap .arkitek-service-item {
    border-left: 1px solid #EFF2F3;
    -webkit-transition: all .3s;
    transition: all .3s;
    padding: 70px 30px;
    background: #fff;
}

@media (max-width: 1399px) {
    .arkitek-service-area .arkitek-service-wrap .arkitek-service-item {
        padding: 60px 15px;
    }
}

@media (max-width: 991px) {
    .arkitek-service-area .arkitek-service-wrap .arkitek-service-item {
        padding: 60px 40px;
        border-bottom: 1px solid #EFF2F3;
    }
}

@media (max-width: 767px) {
    .arkitek-service-area .arkitek-service-wrap .arkitek-service-item {
        padding: 40px 15px;
    }
}

.arkitek-service-area .arkitek-service-wrap .arkitek-service-item .fi {
    position: relative;
}

.arkitek-service-area .arkitek-service-wrap .arkitek-service-item .fi:after {
    position: absolute;
    left: 20px;
    top: -40px;
    width: 55px;
    height: 55px;
    background: rgba(177, 151, 119, 0.08);
    content: "";
    border-radius: 50%;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.arkitek-service-area .arkitek-service-wrap .arkitek-service-item .fi:before {
    font-size: 50px;
    color: #B19777;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.arkitek-service-area .arkitek-service-wrap .arkitek-service-item img {
    max-width: 55px;
}

.arkitek-service-area .arkitek-service-wrap .arkitek-service-item h2 {
    font-weight: 500;
    font-size: 30px;
    line-height: 33px;
    max-width: 250px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.arkitek-service-area .arkitek-service-wrap .arkitek-service-item h2 a {
    color: #1A284F;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.arkitek-service-area .arkitek-service-wrap .arkitek-service-item h2 a:hover {
    color: #B19777;
}

.arkitek-service-area .arkitek-service-wrap .arkitek-service-item p {
    font-weight: 300;
    font-size: 17px;
    line-height: 160%;
    margin-bottom: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.arkitek-service-area .arkitek-service-wrap .arkitek-service-item .read-more {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    background: rgba(187, 187, 187, 0.24);
    text-align: center;
    position: relative;
    margin-top: 20px;
}

.arkitek-service-area .arkitek-service-wrap .arkitek-service-item .read-more:hover {
    background: #B19777;
}

.arkitek-service-area .arkitek-service-wrap .arkitek-service-item .read-more .fi {
    position: absolute;
    -webkit-transform: rotate(82deg);
    transform: rotate(82deg);
    left: 11px;
    top: 10px;
}

.arkitek-service-area .arkitek-service-wrap .arkitek-service-item .read-more .fi:after {
    display: none;
}

.arkitek-service-area .arkitek-service-wrap .arkitek-service-item .read-more .fi:before {
    font-size: 18px;
}

.arkitek-service-area .arkitek-service-wrap .col {
    padding: 0;
}

@media (max-width: 767px) {
    .arkitek-service-area .arkitek-service-wrap .col {
        padding: 0 15px;
    }
}

.arkitek-service-area .arkitek-service-wrap .col:first-child .arkitek-service-item {
    border-left: 0;
}

@media (max-width: 991px) {
    .arkitek-service-area .arkitek-service-wrap .col:nth-child(3) .arkitek-service-item {
        border-left: 0;
    }
}

@media (max-width: 767px) {
    .arkitek-service-area .arkitek-service-wrap .col .arkitek-service-item {
        border-left: 0;
    }
}

.arkitek-service-area .arkitek-service-wrap .col:hover .arkitek-service-item {
    background: #202632;
}

.arkitek-service-area .arkitek-service-wrap .col:hover .arkitek-service-item .fi:before {
    color: #fff;
}

.arkitek-service-area .arkitek-service-wrap .col:hover .arkitek-service-item .fi:after {
    background: rgba(255, 255, 255, 0.08);
}

.arkitek-service-area .arkitek-service-wrap .col:hover .arkitek-service-item h2 a {
    color: #fff;
}

.arkitek-service-area .arkitek-service-wrap .col:hover .arkitek-service-item h2 a:hover {
    color: #B19777;
}

.arkitek-service-area .arkitek-service-wrap .col:hover .arkitek-service-item p {
    color: #fff;
}


/* 3.8 arkitek-blog-section */
.arkitek-blog-section {
    padding-bottom: 90px;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .arkitek-blog-section {
        padding-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .arkitek-blog-section {
        padding-bottom: 10px;
    }
}

.arkitek-blog-section .arkitek-button {
    text-align: right;
}

@media (max-width: 991px) {
    .arkitek-blog-section .arkitek-button {
        text-align: center;
        margin-bottom: 30px;
    }
}

.arkitek-blog-section .arkitek-blog-items .arkitek-blog-item {
    margin-bottom: 30px;
    position: relative;
}

.arkitek-blog-section .arkitek-blog-items .arkitek-blog-item .arkitek-blog-img img {
    width: 100%;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.arkitek-blog-section .arkitek-blog-items .arkitek-blog-item .arkitek-blog-content {
    padding: 30px 50px;
    position: relative;
    padding-bottom: 0;
}

@media (max-width: 1199px) {
    .arkitek-blog-section .arkitek-blog-items .arkitek-blog-item .arkitek-blog-content {
        padding: 30px 25px;
    }
}

@media (max-width: 575px) {
    .arkitek-blog-section .arkitek-blog-items .arkitek-blog-item .arkitek-blog-content {
        padding: 20px;
    }
}

.arkitek-blog-section .arkitek-blog-items .arkitek-blog-item .arkitek-blog-content ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 15px;
    padding-left: 0;
}

@media (max-width: 991px) {
    .arkitek-blog-section .arkitek-blog-items .arkitek-blog-item .arkitek-blog-content ul {
        margin-bottom: 10px;
    }
}

.arkitek-blog-section .arkitek-blog-items .arkitek-blog-item .arkitek-blog-content ul li {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 123.5%;
    text-transform: uppercase;
    color: #969AA6;
}

@media (max-width: 1399px) {
    .arkitek-blog-section .arkitek-blog-items .arkitek-blog-item .arkitek-blog-content ul li {
        font-size: 15px;
    }
}

@media (max-width: 991px) {
    .arkitek-blog-section .arkitek-blog-items .arkitek-blog-item .arkitek-blog-content ul li {
        font-size: 14px;
    }
}

.arkitek-blog-section .arkitek-blog-items .arkitek-blog-item .arkitek-blog-content ul li+li {
    padding-left: 15px;
    margin-left: 15px;
    position: relative;
}

@media (max-width: 575px) {
    .arkitek-blog-section .arkitek-blog-items .arkitek-blog-item .arkitek-blog-content ul li+li {
        padding-left: 10px;
        margin-left: 10px;
    }
}

.arkitek-blog-section .arkitek-blog-items .arkitek-blog-item .arkitek-blog-content ul li+li:before {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    content: "|";
}

.arkitek-blog-section .arkitek-blog-items .arkitek-blog-item .arkitek-blog-content ul li a {
    color: #969AA6;
}

.arkitek-blog-section .arkitek-blog-items .arkitek-blog-item .arkitek-blog-content ul li a:hover {
    color: #B19777;
}

.arkitek-blog-section .arkitek-blog-items .arkitek-blog-item .arkitek-blog-content h2 {
    margin-bottom: 15px;
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 105.8%;
    margin-top: 0;
    border-bottom: 1px solid #E2EBEF;
    padding-bottom: 20px;
    margin-bottom: 25px;
}

@media (max-width: 1399px) {
    .arkitek-blog-section .arkitek-blog-items .arkitek-blog-item .arkitek-blog-content h2 {
        font-size: 24px;
    }
}

@media (max-width: 1200px) {
    .arkitek-blog-section .arkitek-blog-items .arkitek-blog-item .arkitek-blog-content h2 {
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    .arkitek-blog-section .arkitek-blog-items .arkitek-blog-item .arkitek-blog-content h2 {
        margin-bottom: 10px;
    }
}

.arkitek-blog-section .arkitek-blog-items .arkitek-blog-item .arkitek-blog-content h2 a {
    color: #1A284F;
}

.arkitek-blog-section .arkitek-blog-items .arkitek-blog-item .arkitek-blog-content h2 a:hover {
    color: #B19777;
}

.arkitek-blog-section .arkitek-blog-items .arkitek-blog-item .arkitek-blog-content .b-btn {
    display: inline-block;
    padding-right: 30px;
    position: relative;
    font-weight: 500;
    font-size: 16px;
    line-height: 123.5%;
    text-transform: uppercase;
    color: #D9916A;
}

@media (max-width: 575px) {
    .arkitek-blog-section .arkitek-blog-items .arkitek-blog-item .arkitek-blog-content .b-btn {
        font-size: 16px;
    }
}

.arkitek-blog-section .arkitek-blog-items .arkitek-blog-item .arkitek-blog-content .b-btn:before {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    content: "\f123";
    -webkit-transition: all .3s;
    transition: all .3s;
    font-family: flaticon !important;
}

.arkitek-blog-section .arkitek-blog-items .arkitek-blog-item .arkitek-blog-content .b-btn:hover {
    color: #B19777;
}

.arkitek-blog-section .arkitek-blog-items .arkitek-blog-item .arkitek-blog-content .b-btn:hover:before {
    right: -5px;
}

/*--------------------------------------------------------------
4. wpo-footer
--------------------------------------------------------------*/
.wpo-site-footer {
    background: #1E2E3E;
    position: relative;
    font-size: 15px;
    overflow: hidden;
    /*** newsletter-widget ***/
}

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

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

.wpo-site-footer li {
    color: #fff;
}

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

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

@media (max-width: 991px) {
    .wpo-site-footer .wpo-upper-footer {
        padding: 50px 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 {
    color: #fff;
    margin: 0;
    position: relative;
    font-family: "titillium";
    font-weight: 400;
    font-size: 34px;
}

@media (max-width: 1399px) {
    .wpo-site-footer .widget-title h3 {
        font-size: 29px;
    }
}

@media (max-width: 1199px) {
    .wpo-site-footer .widget-title h3 {
        font-size: 24px;
    }
}

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

.wpo-site-footer .about-widget .widget-title {
    margin-bottom: 0;
}

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

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

.wpo-site-footer .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: #fff;
    background: #D9916A;
}

.wpo-site-footer .about-widget ul li a i::before {
    font-size: 14px;
}

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

@media (max-width: 1200px) {
    .wpo-site-footer .about-widget ul li+li {
        margin-left: 15px;
    }
}

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

.wpo-site-footer .link-widget {
    overflow: hidden;
}

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

    .wpo-site-footer .text-widget {
        padding-left: 20px;
    }

}

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

    .wpo-site-footer .text-widget {
        padding-left: 0px;
    }
}

@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: #fff;
    font-size: 17px;
    line-height: 30px;
    font-weight: 400;
}

.wpo-site-footer .link-widget ul li a:hover {
    color: #D9916A;
}

.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;
    font-weight: 400;
}

.wpo-site-footer .contact-ft ul li:nth-child(2) {
    max-width: 200px;
}

.wpo-site-footer .contact-ft ul li:nth-child(3) {
    max-width: 250px;
}

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

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

.wpo-site-footer .social-widget ul li a {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.wpo-site-footer .social-widget ul li a:hover {
    color: #D9916A;
}

.wpo-site-footer .social-widget ul li a i {
    margin-right: 10px;
}

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

.wpo-site-footer .newsletter-widget p {
    margin-bottom: 20px;
}

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

.wpo-site-footer .newsletter-widget form input {
    background-color: transparent;
    height: 55px;
    color: #fff;
    padding: 6px 15px;
    border: 1px solid #fff;
    box-shadow: none;
    border-radius: 0;
}

.wpo-site-footer .newsletter-widget form .submit {
    margin-top: 20px;
}

.wpo-site-footer .newsletter-widget form .submit button {
    background: #D9916A;
    border: 1px solid transparent;
    outline: 0;
    color: #fff;
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    line-height: 45px;
}

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

.wpo-site-footer .wpo-lower-footer .row {
    padding: 20px 0;
    position: relative;
    border-top: 1px dashed #30465C;
}

.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 arkitek-about-section */
.arkitek-about-section .about-left-item,
.arkitek-about-section-s3 .about-left-item {
    margin-right: 40px;
}

@media (max-width: 1399px) {

    .arkitek-about-section .about-left-item,
    .arkitek-about-section-s3 .about-left-item {
        margin-right: 0;
    }
}

@media (max-width: 991px) {

    .arkitek-about-section .about-left-item,
    .arkitek-about-section-s3 .about-left-item {
        margin-bottom: 50px;
    }
}

.arkitek-about-section .wpo-section-title,
.arkitek-about-section-s3 .wpo-section-title {
    text-align: left;
    margin-bottom: 30px;
}

@media (max-width: 767px) {

    .arkitek-about-section .wpo-section-title,
    .arkitek-about-section-s3 .wpo-section-title {
        margin-bottom: 20px;
    }
}

.arkitek-about-section .wpo-section-title h2,
.arkitek-about-section-s3 .wpo-section-title h2 {
    position: unset;
    margin-top: 0;
    line-height: 70px;
    margin-top: 10px;
    margin-bottom: 10px;
}

@media (max-width: 1399px) {

    .arkitek-about-section .wpo-section-title h2,
    .arkitek-about-section-s3 .wpo-section-title h2 {
        font-size: 45px;
        line-height: 55px;
    }
}

@media (max-width: 767px) {

    .arkitek-about-section .wpo-section-title h2,
    .arkitek-about-section-s3 .wpo-section-title h2 {
        font-size: 35px;
        line-height: 45px;
    }
}


.arkitek-about-section .wpo-section-title p,
.arkitek-about-section-s3 .wpo-section-title p {
    font-weight: 400;
    font-size: 18px;
    line-height: 35px;
    color: #525252;
    margin-bottom: 0;
}

.about-left-item .wpo-section-title {
    margin-bottom: 40px;
}

.about-left-item .wpo-section-title p {
    margin-bottom: 0;
    margin-top: 20px;
}

@media (max-width: 767px) {
    .about-left-item .wpo-section-title {
        margin-bottom: 25px;
    }

    .arkitek-about-section .wpo-section-title p,
    .arkitek-about-section-s3 .wpo-section-title p {
        font-size: 16px;
        line-height: 30px;
    }
}

@media (max-width: 991px) {

    .arkitek-about-section .about-middle-item,
    .arkitek-about-section-s3 .about-middle-item {
        margin-bottom: 50px;
    }
}

.arkitek-about-section .about-middle-item img,
.arkitek-about-section-s3 .about-middle-item img {
    width: 100%;
}

.arkitek-about-section .about-right-item,
.arkitek-about-section-s3 .about-right-item {
    text-align: left;
    margin-left: 49px;
}

@media (max-width: 1399px) {

    .arkitek-about-section .about-right-item,
    .arkitek-about-section-s3 .about-right-item {
        margin-left: 0;
    }
}

.arkitek-about-section .about-right-item p,
.arkitek-about-section-s3 .about-right-item p {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 37px;
    color: #525252;
}

@media (max-width: 767px) {

    .arkitek-about-section .about-right-item p,
    .arkitek-about-section-s3 .about-right-item p {
        font-size: 16px;
        line-height: 30px;
    }
}

.arkitek-about-section .about-right-item p span,
.arkitek-about-section-s3 .about-right-item p span {
    font-family: "titillium";
    font-size: 50px;
    font-weight: 400;
    color: #779A65;
}

@media (max-width: 767px) {

    .arkitek-about-section .about-right-item p span,
    .arkitek-about-section-s3 .about-right-item p span {
        font-size: 40px;
    }
}

.arkitek-about-section .about-right-item h2,
.arkitek-about-section-s3 .about-right-item h2 {
    font-weight: 400;
    font-size: 30px;
    line-height: 50px;
    color: #262626;
    margin-top: 29px;
    margin-bottom: 0;
}

@media (max-width: 991px) {

    .arkitek-about-section .about-right-item h2,
    .arkitek-about-section-s3 .about-right-item h2 {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {

    .arkitek-about-section .about-right-item h2,
    .arkitek-about-section-s3 .about-right-item h2 {
        line-height: 40px;
        margin-top: 15px;
    }
}

.arkitek-about-section .about-right-item h3,
.arkitek-about-section-s3 .about-right-item h3 {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #525252;
    margin-top: 0;
    margin-bottom: 10px;
}

.arkitek-about-section .about-right-item .signeture-img,
.arkitek-about-section-s3 .about-right-item .signeture-img {
    width: 200px;
    height: 80px;
    display: block;
    margin-top: 40px;
}

@media (max-width: 1399px) {

    .arkitek-about-section .about-right-item .signeture-img,
    .arkitek-about-section-s3 .about-right-item .signeture-img {
        margin-top: 30px;
    }
}

@media (max-width: 991px) {

    .arkitek-about-section .about-right-item .signeture-img,
    .arkitek-about-section-s3 .about-right-item .signeture-img {
        width: 150px;
        height: 60px;
    }
}

@media (max-width: 575px) {

    .arkitek-about-section .about-right-item .signeture-img,
    .arkitek-about-section-s3 .about-right-item .signeture-img {
        width: 120px;
        height: 50px;
    }
}

.about-left-item .theme-btn-s2:hover {
    color: #779A65;
}

.arkitek-about-section.s2,
.arkitek-about-section-s3.s2 {
    padding-top: 75px;
}

@media (max-width: 991px) {

    .arkitek-about-section.s2,
    .arkitek-about-section-s3.s2 {
        padding-top: 90px;
    }
}

@media (max-width: 767px) {

    .arkitek-about-section.s2,
    .arkitek-about-section-s3.s2 {
        padding-top: 80px;
    }
}

/*--------------------------------------------------------------
5. Home-style-2
--------------------------------------------------------------*/
/*5.1 arkitek-about-section-s2 */


.arkitek-about-section-s2 .about-left-item,
.arkitek-about-section-s3 .about-left-item {
    margin-right: 50px;
}

@media (max-width: 1199px) {

    .arkitek-about-section-s2 .about-left-item,
    .arkitek-about-section-s3 .about-left-item {
        margin-right: 0;
    }
}

.arkitek-about-section-s2 .wpo-section-title,
.arkitek-about-section-s3 .wpo-section-title {
    text-align: left;
}

@media (max-width: 1199px) {

    .arkitek-about-section-s2 .wpo-section-title,
    .arkitek-about-section-s3 .wpo-section-title {
        margin-bottom: 40px;
    }
}

@media (max-width: 1199px) {

    .arkitek-about-section-s2 .wpo-section-title span,
    .arkitek-about-section-s3 .wpo-section-title span {
        line-height: 24px;
    }
}

.arkitek-about-section-s2 .wpo-section-title h2,
.arkitek-about-section-s3 .wpo-section-title h2 {
    font-size: 70px;
    font-weight: 400;
    line-height: 100px;
}

@media (max-width: 1399px) {

    .arkitek-about-section-s2 .wpo-section-title h2,
    .arkitek-about-section-s3 .wpo-section-title h2 {
        font-size: 62px;
        line-height: 80px;
    }
}

@media (max-width: 1199px) {

    .arkitek-about-section-s2 .wpo-section-title h2,
    .arkitek-about-section-s3 .wpo-section-title h2 {
        font-size: 48px;
        line-height: 63px;
        margin-bottom: 10px;
    }
}

@media (max-width: 575px) {

    .arkitek-about-section-s2 .wpo-section-title h2,
    .arkitek-about-section-s3 .wpo-section-title h2 {
        font-size: 32px;
        line-height: 40px;
    }
}


@media (max-width: 575px) {

    .arkitek-about-section-s2 .wpo-section-title p,
    .arkitek-about-section-s3 .wpo-section-title p {
        font-size: 15px;
    }
}

.arkitek-about-section-s2 .left-btn,
.arkitek-about-section-s3 .left-btn {
    display: flex;
    align-items: center;
}

@media (max-width: 575px) {

    .arkitek-about-section-s2 .left-btn,
    .arkitek-about-section-s3 .left-btn {
        display: block;
    }
}

.arkitek-about-section-s2 .left-btn .theme-btn,
.arkitek-about-section-s2 .left-btn .view-cart-btn,
.arkitek-about-section-s3 .left-btn .theme-btn,
.arkitek-about-section-s3 .left-btn .view-cart-btn {
    background: #D9916A;
    color: #fff;
}

@media (max-width: 1199px) {

    .arkitek-about-section-s2 .left-btn .theme-btn,
    .arkitek-about-section-s2 .left-btn .view-cart-btn,
    .arkitek-about-section-s3 .left-btn .theme-btn,
    .arkitek-about-section-s3 .left-btn .view-cart-btn {
        padding: 15px 15px;
    }
}



.arkitek-about-section-s2 .left-btn .theme-btn:hover,
.arkitek-about-section-s3 .left-btn .theme-btn:hover,
    {
    color: #fff;
}

.arkitek-about-section-s2 .left-btn .theme-btn:hover {
    background: #779A65;
}


.arkitek-about-section-s2 .left-btn .call,
.arkitek-about-section-s3 .left-btn .call {
    display: flex;
    align-items: center;
    margin-left: 50px;
}

@media (max-width: 1199px) {

    .arkitek-about-section-s2 .left-btn .call,
    .arkitek-about-section-s3 .left-btn .call {
        margin-left: 30px;
    }
}

@media (max-width: 575px) {

    .arkitek-about-section-s2 .left-btn .call,
    .arkitek-about-section-s3 .left-btn .call {
        margin: 0;
        margin-top: 20px;
    }
}

.arkitek-about-section-s2 .left-btn .call .icon,
.arkitek-about-section-s3 .left-btn .call .icon {
    width: 35px;
    height: 35px;
}

.arkitek-about-section-s2 .left-btn .call .icon i:before,
.arkitek-about-section-s3 .left-btn .call .icon i:before {
    font-size: 35px;
}

@media (max-width: 575px) {

    .arkitek-about-section-s2 .left-btn .call .icon,
    .arkitek-about-section-s3 .left-btn .call .icon {
        width: 25px;
        height: 25px;
    }
}

.arkitek-about-section-s2 .left-btn .call .text,
.arkitek-about-section-s3 .left-btn .call .text {
    padding-left: 15px;
}

.arkitek-about-section-s2 .left-btn .call .text h5,
.arkitek-about-section-s3 .left-btn .call .text h5 {
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    color: #525252;
    margin-bottom: 0;
    font-family: "Raleway", sans-serif;
}

.arkitek-about-section-s2 .left-btn .call .text span,
.arkitek-about-section-s3 .left-btn .call .text span {
    margin-bottom: 0;
    font-family: "titillium";
    font-weight: 400;
    font-size: 22px;
    line-height: 40px;
    color: #262626;
}

@media (max-width: 575px) {

    .arkitek-about-section-s2 .left-btn .call .text span,
    .arkitek-about-section-s3 .left-btn .call .text span {
        font-size: 15px;
        line-height: 25px;
    }
}

.arkitek-about-section-s2 .about-right-item,
.arkitek-about-section-s3 .about-right-item {
    position: relative;
    padding: 120px 0;
}

@media (max-width: 1399px) {

    .arkitek-about-section-s2 .about-right-item,
    .arkitek-about-section-s3 .about-right-item {
        padding: 100px 0;
    }
}

@media (max-width: 576px) {

    .arkitek-about-section-s2 .about-right-item,
    .arkitek-about-section-s3 .about-right-item {
        padding: 60px 0;
        padding-bottom: 0;
    }
}

.arkitek-about-section-s2 .right-image-1,
.arkitek-about-section-s3 .right-image-1 {
    background: #fff;
    padding: 15px;
    width: 600px;
    height: 660px;
}

@media (max-width: 1499px) {

    .arkitek-about-section-s2 .right-image-1,
    .arkitek-about-section-s3 .right-image-1 {
        width: 500px;
        height: 560px;
    }
}

@media (max-width: 1399px) {

    .arkitek-about-section-s2 .right-image-1,
    .arkitek-about-section-s3 .right-image-1 {
        width: 455px;
        height: 500px;
    }
}

@media (max-width: 1199px) {

    .arkitek-about-section-s2 .right-image-1,
    .arkitek-about-section-s3 .right-image-1 {
        width: 400px;
        height: 440px;
    }
}

@media (max-width: 991px) {

    .arkitek-about-section-s2 .right-image-1,
    .arkitek-about-section-s3 .right-image-1 {
        width: 450px;
        height: 100%;
    }
}

@media (max-width: 767px) {

    .arkitek-about-section-s2 .right-image-1,
    .arkitek-about-section-s3 .right-image-1 {
        width: 400px;
    }
}

@media (max-width: 575px) {

    .arkitek-about-section-s2 .right-image-1,
    .arkitek-about-section-s3 .right-image-1 {
        width: 100%;
        height: 100%;
    }
}

.arkitek-about-section-s2 .right-image-1 img,
.arkitek-about-section-s3 .right-image-1 img {
    width: 100%;
}

.arkitek-about-section-s2 .right-image-2,
.arkitek-about-section-s3 .right-image-2 {
    background: #fff;
    padding: 15px;
    width: 380px;
    height: 510px;
    position: absolute;
    right: -190px;
    bottom: 0;
    z-index: 1;
}

@media (max-width: 1699px) {

    .arkitek-about-section-s2 .right-image-2,
    .arkitek-about-section-s3 .right-image-2 {
        right: -140px;
    }
}

@media (max-width: 1499px) {

    .arkitek-about-section-s2 .right-image-2,
    .arkitek-about-section-s3 .right-image-2 {
        right: -10px;
        width: 280px;
        height: 370px;
    }
}

@media (max-width: 991px) {

    .arkitek-about-section-s2 .right-image-2,
    .arkitek-about-section-s3 .right-image-2 {
        right: 0px;
        width: 300px;
        height: auto;
    }
}

@media (max-width: 767px) {

    .arkitek-about-section-s2 .right-image-2,
    .arkitek-about-section-s3 .right-image-2 {
        width: 250px;
    }
}

@media (max-width: 575px) {

    .arkitek-about-section-s2 .right-image-2,
    .arkitek-about-section-s3 .right-image-2 {
        display: none;
    }
}

.arkitek-about-section-s2 .right-image-2 img,
.arkitek-about-section-s3 .right-image-2 img {
    width: 100%;
}

.arkitek-about-section-s2 .right-text,
.arkitek-about-section-s3 .right-text {
    position: absolute;
    right: -105px;
    top: 0;
}

@media (max-width: 1499px) {

    .arkitek-about-section-s2 .right-text,
    .arkitek-about-section-s3 .right-text {
        right: -10px;
    }
}

@media (max-width: 991px) {

    .arkitek-about-section-s2 .right-text,
    .arkitek-about-section-s3 .right-text {
        right: 70px;
        top: 20px;
    }
}

@media (max-width: 991px) {

    .arkitek-about-section-s2 .right-text,
    .arkitek-about-section-s3 .right-text {
        right: 10px;
        top: 40px;
    }
}

@media (max-width: 576px) {

    .arkitek-about-section-s2 .right-text,
    .arkitek-about-section-s3 .right-text {
        right: 0;
        top: 0;
    }
}

@media (max-width: 399px) {

    .arkitek-about-section-s2 .right-text,
    .arkitek-about-section-s3 .right-text {
        top: 60px;
    }
}

.arkitek-about-section-s2 .right-text .info,
.arkitek-about-section-s3 .right-text .info {
    background: #D9916A;
    height: 300px;
    width: 300px;
    border-radius: 150px;
    outline: 1px solid #FFFFFF;
    outline-offset: -20px;
    display: inline-block;
    text-align: center;
    padding: 50px 40px;
}

@media (max-width: 1399px) {

    .arkitek-about-section-s2 .right-text .info,
    .arkitek-about-section-s3 .right-text .info {
        height: 280px;
        width: 280px;
    }
}

@media (max-width: 1199px) {

    .arkitek-about-section-s2 .right-text .info,
    .arkitek-about-section-s3 .right-text .info {
        padding: 20px 25px;
        height: 250px;
        width: 250px;
    }
}

@media (max-width: 767px) {

    .arkitek-about-section-s2 .right-text .info,
    .arkitek-about-section-s3 .right-text .info {
        padding-top: 40px;
    }
}

@media (max-width: 399px) {

    .arkitek-about-section-s2 .right-text .info,
    .arkitek-about-section-s3 .right-text .info {
        padding: 10px 20px;
        padding-top: 30px;
        height: 200px;
        width: 200px;
        outline-offset: -10px;
    }
}

.arkitek-about-section-s2 .right-text .info h3,
.arkitek-about-section-s3 .right-text .info h3 {
    font-weight: 400;
    font-size: 50px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    font-family: "titillium";
    font-weight: 400;
}

@media (max-width: 1399px) {

    .arkitek-about-section-s2 .right-text .info h3,
    .arkitek-about-section-s3 .right-text .info h3 {
        font-size: 45px;
    }
}

.arkitek-about-section-s2 .right-text .info h3 span,
.arkitek-about-section-s3 .right-text .info h3 span {
    font-size: 100px;
    line-height: 100px;
}

@media (max-width: 1399px) {

    .arkitek-about-section-s2 .right-text .info h3 span,
    .arkitek-about-section-s3 .right-text .info h3 span {
        font-size: 95px;
    }
}

@media (max-width: 767px) {

    .arkitek-about-section-s2 .right-text .info h3 span,
    .arkitek-about-section-s3 .right-text .info h3 span {
        font-size: 60px;
        line-height: 80px;
    }
}

.arkitek-about-section-s2 .right-text .info p,
.arkitek-about-section-s3 .right-text .info p {
    font-family: "titillium";
    font-weight: 400;
    font-size: 25px;
    line-height: 40px;
    color: #F9F9F9;
}

@media (max-width: 1399px) {

    .arkitek-about-section-s2 .right-text .info p,
    .arkitek-about-section-s3 .right-text .info p {
        font-size: 22px;
        line-height: 30px;
    }
}

@media (max-width: 399px) {

    .arkitek-about-section-s2 .right-text .info p,
    .arkitek-about-section-s3 .right-text .info p {
        font-size: 18px;
        line-height: 25px;
    }
}

/*5.2 arkitek-about-section-s3 */
.arkitek-about-section-s3 {
    background: transparent;
}

.arkitek-about-section-s3 .about-right-item {
    padding: 0;
}

@media (max-width: 1499px) {
    .arkitek-about-section-s3 .about-right-item {
        margin-left: 0;
    }
}

.arkitek-about-section-s3 .about-right-item .right-image-1 {
    width: auto;
    height: auto;
    position: relative;
    background: transparent;
    z-index: 1;
}

.arkitek-about-section-s3 .about-right-item .right-image-1::before {
    position: absolute;
    content: "";
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 88%;
    z-index: -1;
    border: 10px solid #779A65;
}

.arkitek-about-section-s3 .about-right-item .right-text {
    z-index: 1;
    top: 300px;
}

@media (max-width: 1499px) {
    .arkitek-about-section-s3 .about-right-item .right-text {
        margin-right: -97px;
    }
}

@media (max-width: 1399px) {
    .arkitek-about-section-s3 .about-right-item .right-text {
        margin-right: -68px;
    }
}

@media (max-width: 1199px) {
    .arkitek-about-section-s3 .about-right-item .right-text {
        margin-right: 0;
    }
}

@media (max-width: 991px) {
    .arkitek-about-section-s3 .about-right-item .right-text {
        right: -40px;
    }
}

@media (max-width: 575px) {
    .arkitek-about-section-s3 .about-right-item .right-text {
        right: 0px;
    }
}

@media (max-width: 399px) {
    .arkitek-about-section-s3 .about-right-item .right-text {
        top: 200px;
    }
}

.arkitek-about-section-s3 .about-right-item .right-text .info {
    outline: 1px solid transparent;
    border-radius: 20px;
    background: transparent;
    position: relative;
    transform: rotate(45deg);
}

@media (max-width: 1199px) {
    .arkitek-about-section-s3 .about-right-item .right-text .info {
        height: 200px;
        width: 200px;
    }
}

@media (max-width: 575px) {
    .arkitek-about-section-s3 .about-right-item .right-text .info {
        height: 150px;
        width: 150px;
    }
}

.arkitek-about-section-s3 .about-right-item .right-text .info::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #D9916A;
    z-index: -1;
    border-radius: 20px;
}

.arkitek-about-section-s3 .about-right-item .right-text .info::after {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    z-index: 1;
    border: 1px solid #fff;
    border-radius: 15px;
}

.arkitek-about-section-s3 .about-right-item .right-text .info h3 {
    transform: rotate(315deg);
    margin-left: -69px;
    margin-top: 0;
}

@media (max-width: 575px) {
    .arkitek-about-section-s3 .about-right-item .right-text .info h3 {
        font-size: 30px;
        margin-left: -25px;
        margin-top: -20px;
    }
}

@media (max-width: 1199px) {
    .arkitek-about-section-s3 .about-right-item .right-text .info h3 span {
        font-size: 64px;
    }
}

@media (max-width: 575px) {
    .arkitek-about-section-s3 .about-right-item .right-text .info h3 span {
        font-size: 40px;
    }
}

.arkitek-about-section-s3 .about-right-item .right-text .info p {
    transform: rotate(315deg);
    margin-top: -33px;
    margin-right: -41px;
}

@media (max-width: 1199px) {
    .arkitek-about-section-s3 .about-right-item .right-text .info p {
        font-size: 19px;
    }
}

@media (max-width: 575px) {
    .arkitek-about-section-s3 .about-right-item .right-text .info p {
        font-size: 15px;
        line-height: 20px;
        margin-top: -35px;
        margin-right: -35px;
    }
}

/*3.3 wpo-fun-fact-section */
.wpo-fun-fact-section,
.wpo-fun-fact-section-s2 {
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.wpo-fun-fact-section .wpo-fun-fact-grids,
.wpo-fun-fact-section-s2 .wpo-fun-fact-grids {
    border: 2px dashed #DADADA;
    padding: 20px;
}

.wpo-fun-fact-section .wpo-fun-fact-grids .grid,
.wpo-fun-fact-section-s2 .wpo-fun-fact-grids .grid {
    width: 25%;
    float: left;
    border-top: 2px dashed #DADADA;
    border-bottom: 2px dashed #DADADA;
    border-left: 2px dashed #DADADA;
    padding: 30px 0;
    padding-bottom: 19px;
}

@media (max-width: 767px) {

    .wpo-fun-fact-section .wpo-fun-fact-grids .grid,
    .wpo-fun-fact-section-s2 .wpo-fun-fact-grids .grid {
        border: 2px dashed #DADADA;
        border-bottom: 2px dashed transparent;
    }
}

@media (max-width: 991px) {

    .wpo-fun-fact-section .wpo-fun-fact-grids .grid:nth-child(1),
    .wpo-fun-fact-section-s2 .wpo-fun-fact-grids .grid:nth-child(1) {
        border-bottom: 2px dashed transparent;
    }
}

.wpo-fun-fact-section .wpo-fun-fact-grids .grid:nth-child(4),
.wpo-fun-fact-section-s2 .wpo-fun-fact-grids .grid:nth-child(4) {
    border-right: 2px dashed #DADADA;
}

@media (max-width: 767px) {

    .wpo-fun-fact-section .wpo-fun-fact-grids .grid:nth-child(4),
    .wpo-fun-fact-section-s2 .wpo-fun-fact-grids .grid:nth-child(4) {
        border-bottom: 2px dashed #DADADA;
    }
}

@media (max-width: 991px) {

    .wpo-fun-fact-section .wpo-fun-fact-grids .grid:nth-child(2),
    .wpo-fun-fact-section-s2 .wpo-fun-fact-grids .grid:nth-child(2) {
        border-right: 2px dashed #DADADA;
        border-bottom: 2px dashed transparent;
    }
}

@media (max-width: 991px) {

    .wpo-fun-fact-section .wpo-fun-fact-grids .grid,
    .wpo-fun-fact-section-s2 .wpo-fun-fact-grids .grid {
        width: 50%;
    }
}

@media (max-width: 767px) {

    .wpo-fun-fact-section .wpo-fun-fact-grids .grid,
    .wpo-fun-fact-section-s2 .wpo-fun-fact-grids .grid {
        width: 100%;
        float: none;
    }
}

.wpo-fun-fact-section .grid h3,
.wpo-fun-fact-section-s2 .grid h3 {
    margin: 0 0 0.2em;
    font-family: "titillium";
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 50px;
    line-height: 60px;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #262626;
}

@media (max-width: 767px) {

    .wpo-fun-fact-section .grid h3,
    .wpo-fun-fact-section-s2 .grid h3 {
        line-height: 45px;
        font-size: 35px;
    }
}

.wpo-fun-fact-section .grid h3+p,
.wpo-fun-fact-section-s2 .grid h3+p {
    text-transform: uppercase;
    color: #262626;
    font-family: "titillium";
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
}

@media (max-width: 767px) {

    .wpo-fun-fact-section .grid h3+p,
    .wpo-fun-fact-section-s2 .grid h3+p {
        font-size: 18px;
    }
}



/* 3.3 arkitek-about-section */
.arkitek-about-section .arkitek-about-wrap .arkitek-about-img {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-right: 50px;
}

.arkitek-about-section .arkitek-about-wrap .arkitek-about-img .arkitek-about-inner {
    position: absolute;
    left: -50px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: -1;
}

@media (max-width: 767px) {
    .arkitek-about-section .arkitek-about-wrap .arkitek-about-img .arkitek-about-inner {
        height: 80%;
    }

    .arkitek-about-section .arkitek-about-wrap .arkitek-about-img .arkitek-about-inner img {
        width: 100%;
        height: 100%;
    }
}

.arkitek-about-section .arkitek-about-wrap .arkitek-about-img .arkitek-about-img-text {
    width: 201px;
    height: 225px;
    background: rgba(177, 151, 119, 0.88);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-radius: 8px;
    padding: auto;
    position: absolute;
    right: 0;
    bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

@media (max-width: 575px) {
    .arkitek-about-section .arkitek-about-wrap .arkitek-about-img .arkitek-about-img-text {
        width: 140px;
        height: 180px;
        margin-top: -135px;
    }
}

.arkitek-about-section .arkitek-about-wrap .arkitek-about-img .arkitek-about-img-text .arkitek-about-icon {
    display: block;
}

.arkitek-about-section .arkitek-about-wrap .arkitek-about-img .arkitek-about-img-text .arkitek-about-icon a i:before {
    font-size: 45px;
}

.arkitek-about-section .arkitek-about-wrap .arkitek-about-img .arkitek-about-img-text .arkitek-about-icon .video-btn {
    display: block;
    width: 65px;
    height: 65px;
    line-height: 65px;
    background: #fff;
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: 20px;
}

.arkitek-about-section .arkitek-about-wrap .arkitek-about-img .arkitek-about-img-text .arkitek-about-icon .fi:before {
    font-size: 50px;
    color: #fff;
}

.arkitek-about-section .arkitek-about-wrap .arkitek-about-img .arkitek-about-img-text span {
    display: block;
    max-width: 160px;
    margin: 0 auto;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    text-transform: capitalize;
    color: #fff;
}

@media (max-width: 575px) {
    .arkitek-about-section .arkitek-about-wrap .arkitek-about-img .arkitek-about-img-text span {
        font-size: 14px;
    }
}

.arkitek-about-section .arkitek-about-wrap .arkitek-about-text {
    padding-left: 20px;
}

@media (max-width: 991px) {
    .arkitek-about-section .arkitek-about-wrap .arkitek-about-text {
        margin-top: 50px;
    }
}

@media (max-width: 767px) {
    .arkitek-about-section .arkitek-about-wrap .arkitek-about-text {
        padding-right: 0;
    }
}

.arkitek-about-section .arkitek-about-wrap .arkitek-about-text h2 {
    font-weight: 400;
    font-size: 54px;
    line-height: 100.8%;
    letter-spacing: 0.01em;
    text-transform: capitalize;
    margin-bottom: 25px;
}

@media (max-width: 1199px) {
    .arkitek-about-section .arkitek-about-wrap .arkitek-about-text h2 {
        font-size: 45px;
    }
}

.arkitek-about-section .arkitek-about-wrap .arkitek-about-text h5 {
    font-weight: 300;
    font-size: 32px;
    line-height: 104.8%;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    text-transform: capitalize;
    margin-bottom: 30px;
    color: #71788A;
}

@media (max-width: 991px) {
    .arkitek-about-section .arkitek-about-wrap .arkitek-about-text h5 {
        max-width: 100%;
    }
}

.arkitek-about-section .arkitek-about-wrap .arkitek-about-text small {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0.215em;
    text-transform: uppercase;
    font-family: "Teko", sans-serif;
    color: #B19777;
    padding-left: 15px;
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
    z-index: 1;
}

.arkitek-about-section .arkitek-about-wrap .arkitek-about-text small:after {
    position: absolute;
    left: 0;
    top: -8px;
    width: 37px;
    height: 40px;
    content: "";
    background: rgba(177, 151, 119, 0.1);
    z-index: -1;
}

.arkitek-about-section .arkitek-about-wrap .arkitek-about-text .arkitek-about-quote {
    padding-left: 70px;
    margin-top: 30px;
    position: relative;
}

.arkitek-about-section .arkitek-about-wrap .arkitek-about-text .arkitek-about-quote:before {
    position: absolute;
    left: 0;
    top: -10px;
    content: "\f10a";
    font-family: flaticon !important;
    font-size: 40px;
    color: #D3D8E3;
    transform: rotate(180deg);
}

.arkitek-about-section .arkitek-about-wrap .arkitek-about-text .arkitek-about-quote p {
    font-style: italic;
    font-weight: 400;
    font-size: 20px;
    line-height: 160%;
    font-family: "Lora", serif;
}

@media (max-width: 991px) {
    .arkitek-about-section .arkitek-about-wrap .arkitek-about-text .arkitek-about-quote p {
        max-width: 100%;
    }
}

.arkitek-about-section .arkitek-about-wrap .arkitek-about-text .arkitek-about-left-info {
    margin-top: 30px;
}

.arkitek-about-section .arkitek-about-wrap .arkitek-about-text .arkitek-about-left-info .arkitek-about-left-img img {
    border-radius: 50%;
    max-width: 65px;
}

.arkitek-about-section .arkitek-about-wrap .arkitek-about-text .arkitek-about-left-info .arkitek-about-left-text {
    margin-left: 20px;
    margin-top: 0px;
}

.arkitek-about-section .arkitek-about-wrap .arkitek-about-text .arkitek-about-left-info .arkitek-about-left-text h6 {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 160%;
    text-transform: capitalize;
    color: rgba(26, 36, 63, 0.84);
    margin-bottom: 0;
    font-family: "La Belle Aurore", cursive;
    margin-top: 0;
}

.arkitek-about-section .arkitek-about-wrap .arkitek-about-text .arkitek-about-left-info .arkitek-about-left-text span {
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    text-transform: capitalize;
    color: rgba(26, 36, 63, 0.39);
}

.arkitek-about-section .arkitek-about-wrap .arkitek-about-text .arkitek-about-left-info .arkitek-about-left-inner {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 575px) {
    .arkitek-about-section .arkitek-about-wrap .arkitek-about-text .arkitek-about-left-info .arkitek-about-left-inner {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        margin-bottom: 20px;
    }
}

/*--------------------------------------------------------------
#0.5    footer
--------------------------------------------------------------*/
.wpo-site-footer,
.wpo-site-footer-s2,
.wpo-site-footer-s3 {
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    /*** upper contact area ***/
    /*** about-widget ***/
    /*** link-widget ***/
    /*** service-link-widget ***/
    /*** newsletter-widget ***/
    /*** lower-footer ***/
}

.wpo-site-footer:before,
.wpo-site-footer-s2:before,
.wpo-site-footer-s3:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #1E3446;
    opacity: .98;
}

.wpo-site-footer .vector-1,
.wpo-site-footer .vector-2,
.wpo-site-footer .vector-3,
.wpo-site-footer .vector-4,
.wpo-site-footer-s2 .vector-1,
.wpo-site-footer-s2 .vector-2,
.wpo-site-footer-s2 .vector-3,
.wpo-site-footer-s2 .vector-4,
.wpo-site-footer-s3 .vector-1,
.wpo-site-footer-s3 .vector-2,
.wpo-site-footer-s3 .vector-3,
.wpo-site-footer-s3 .vector-4 {
    position: absolute;
    left: -130px;
    top: 0px;
    background: #D9916A;
    opacity: 0.06;
    width: 250px;
    height: 115%;
    z-index: 11;
    -webkit-transform: rotate(345deg);
    transform: rotate(345deg);
}

@media (max-width: 1199px) {

    .wpo-site-footer .vector-1,
    .wpo-site-footer .vector-2,
    .wpo-site-footer .vector-3,
    .wpo-site-footer .vector-4,
    .wpo-site-footer-s2 .vector-1,
    .wpo-site-footer-s2 .vector-2,
    .wpo-site-footer-s2 .vector-3,
    .wpo-site-footer-s2 .vector-4,
    .wpo-site-footer-s3 .vector-1,
    .wpo-site-footer-s3 .vector-2,
    .wpo-site-footer-s3 .vector-3,
    .wpo-site-footer-s3 .vector-4 {
        display: none;
    }
}

.wpo-site-footer .vector-1,
.wpo-site-footer-s2 .vector-1,
.wpo-site-footer-s3 .vector-1 {
    left: -125px;
    top: -130px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
}

.wpo-site-footer .vector-2,
.wpo-site-footer-s2 .vector-2,
.wpo-site-footer-s3 .vector-2 {
    left: -160px;
    top: -100px;
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
}

.wpo-site-footer .vector-3,
.wpo-site-footer-s2 .vector-3,
.wpo-site-footer-s3 .vector-3 {
    left: -185px;
    top: -80px;
    top: -100px;
    -webkit-transform: rotate(23deg);
    transform: rotate(23deg);
}

.wpo-site-footer .vector-4,
.wpo-site-footer-s2 .vector-4,
.wpo-site-footer-s3 .vector-4 {
    left: -210px;
    top: -100px;
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
}

.wpo-site-footer .vector-5,
.wpo-site-footer .vector-6,
.wpo-site-footer .vector-7,
.wpo-site-footer .vector-8,
.wpo-site-footer-s2 .vector-5,
.wpo-site-footer-s2 .vector-6,
.wpo-site-footer-s2 .vector-7,
.wpo-site-footer-s2 .vector-8,
.wpo-site-footer-s3 .vector-5,
.wpo-site-footer-s3 .vector-6,
.wpo-site-footer-s3 .vector-7,
.wpo-site-footer-s3 .vector-8 {
    position: absolute;
    right: -60px;
    bottom: -235px;
    background: #779A65;
    opacity: 0.06;
    width: 250px;
    height: 115%;
    z-index: 11;
    -webkit-transform: rotate(59deg);
    transform: rotate(59deg);
}

@media (max-width: 1199px) {

    .wpo-site-footer .vector-5,
    .wpo-site-footer .vector-6,
    .wpo-site-footer .vector-7,
    .wpo-site-footer .vector-8,
    .wpo-site-footer-s2 .vector-5,
    .wpo-site-footer-s2 .vector-6,
    .wpo-site-footer-s2 .vector-7,
    .wpo-site-footer-s2 .vector-8,
    .wpo-site-footer-s3 .vector-5,
    .wpo-site-footer-s3 .vector-6,
    .wpo-site-footer-s3 .vector-7,
    .wpo-site-footer-s3 .vector-8 {
        display: none;
    }
}

.wpo-site-footer .vector-6,
.wpo-site-footer-s2 .vector-6,
.wpo-site-footer-s3 .vector-6 {
    bottom: -265px;
    -webkit-transform: rotate(50deg);
    transform: rotate(50deg);
}

.wpo-site-footer .vector-7,
.wpo-site-footer-s2 .vector-7,
.wpo-site-footer-s3 .vector-7 {
    bottom: -330px;
    -webkit-transform: rotate(40deg);
    transform: rotate(40deg);
}

.wpo-site-footer .vector-8,
.wpo-site-footer-s2 .vector-8,
.wpo-site-footer-s3 .vector-8 {
    bottom: -345px;
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
    right: -110px;
}

.wpo-site-footer ul,
.wpo-site-footer-s2 ul,
.wpo-site-footer-s3 ul {
    list-style: none;
    padding-left: 0;
}

.wpo-site-footer p,
.wpo-site-footer li,
.wpo-site-footer-s2 p,
.wpo-site-footer-s2 li,
.wpo-site-footer-s3 p,
.wpo-site-footer-s3 li {
    color: #fff;
}

.wpo-site-footer .upper-contact-area,
.wpo-site-footer-s2 .upper-contact-area,
.wpo-site-footer-s3 .upper-contact-area {
    position: absolute;
    width: 100%;
    top: -63px;
    z-index: 10;
}

@media (max-width: 991px) {

    .wpo-site-footer .upper-contact-area,
    .wpo-site-footer-s2 .upper-contact-area,
    .wpo-site-footer-s3 .upper-contact-area {
        display: none;
    }
}

.contact-grids {
    background-color: #1c3142;
    padding: 40px 34px;
    overflow: hidden;
    border-radius: 80px;
}

.contact-grids .grid {
    width: 33.33%;
    float: left;
    padding-left: 60px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (max-width: 1366px) {
    .contact-grids {
        padding: 40px 5px;
    }

    .contact-grids .grid {
        padding-left: 80px;
    }
}

.contact-grids .grid .icon {
    left: 12%;
}

.contact-grids>.grid+.grid {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 95px;
}

@media (max-width: 1366px) {
    .contact-grids>.grid+.grid {
        padding-left: 30px;
    }
}

.contact-grids>.grid+.grid .icon {
    left: 28%;
}

@media (max-width: 1366px) {
    .contact-grids>.grid+.grid .icon {
        left: 15%;
    }
}

.contact-grids .grid .icon {
    position: absolute;
    left: 12%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 40px;
    font-size: 2.66667rem;
    color: #fff;
}

.contact-grids .grid .icon .fi:before {
    font-size: 40px;
}

.contact-grids .grid h5 {
    font-size: 18px;
    font-size: cacl-rem-value(18);
    font-weight: 600;
    color: #fff;
    margin: 0 0 0.2em;
}

.contact-grids .grid p {
    font-size: 15px;
    font-size: 1rem;
    margin: 0;
    color: #efefef;
}

.wpo-site-footer .upper-footer,
.wpo-site-footer-s2 .upper-footer,
.wpo-site-footer-s3 .upper-footer {
    padding: 90px 0;
    z-index: 1;
    position: relative;
    overflow: hidden;
}

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

    .wpo-site-footer .upper-footer,
    .wpo-site-footer-s2 .upper-footer,
    .wpo-site-footer-s3 .upper-footer {
        padding-top: 160px;
    }
}

@media (max-width: 991px) {

    .wpo-site-footer .upper-footer,
    .wpo-site-footer-s2 .upper-footer,
    .wpo-site-footer-s3 .upper-footer {
        padding: 90px 0 20px;
    }
}

@media (max-width: 767px) {

    .wpo-site-footer .upper-footer,
    .wpo-site-footer-s2 .upper-footer,
    .wpo-site-footer-s3 .upper-footer {
        padding: 80px 0 10px;
    }
}

@media (max-width: 991px) {

    .wpo-site-footer .upper-footer .col,
    .wpo-site-footer-s2 .upper-footer .col,
    .wpo-site-footer-s3 .upper-footer .col {
        min-height: 235px;
        margin-bottom: 70px;
    }
}

@media (max-width: 767px) {

    .wpo-site-footer .upper-footer .col,
    .wpo-site-footer-s2 .upper-footer .col,
    .wpo-site-footer-s3 .upper-footer .col {
        min-height: auto;
        margin-bottom: 60px;
    }
}

.wpo-site-footer .upper-footer .shape-1,
.wpo-site-footer-s2 .upper-footer .shape-1,
.wpo-site-footer-s3 .upper-footer .shape-1 {
    position: absolute;
    left: 20px;
    top: 50px;
    z-index: -1;
}

@media (max-width: 1700px) {

    .wpo-site-footer .upper-footer .shape-1,
    .wpo-site-footer-s2 .upper-footer .shape-1,
    .wpo-site-footer-s3 .upper-footer .shape-1 {
        opacity: .3;
    }
}

.wpo-site-footer .upper-footer .shape-2,
.wpo-site-footer-s2 .upper-footer .shape-2,
.wpo-site-footer-s3 .upper-footer .shape-2 {
    position: absolute;
    right: 20px;
    bottom: 50px;
    z-index: -1;
}

@media (max-width: 1700px) {

    .wpo-site-footer .upper-footer .shape-2,
    .wpo-site-footer-s2 .upper-footer .shape-2,
    .wpo-site-footer-s3 .upper-footer .shape-2 {
        opacity: .3;
    }
}

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

@media (max-width: 767px) {

    .wpo-site-footer .widget-title,
    .wpo-site-footer-s2 .widget-title,
    .wpo-site-footer-s3 .widget-title {
        margin-bottom: 20px;
    }
}

.wpo-site-footer .widget-title h3,
.wpo-site-footer-s2 .widget-title h3,
.wpo-site-footer-s3 .widget-title h3 {
    font-size: 24px;
    font-size: 1.6rem;
    font-weight: blod;
    color: #fff;
    margin: 0;
    padding-bottom: 0.4em;
    text-transform: capitalize;
    position: relative;
}

@media (max-width: 767px) {

    .wpo-site-footer .widget-title h3,
    .wpo-site-footer-s2 .widget-title h3,
    .wpo-site-footer-s3 .widget-title h3 {
        font-size: 22px;
        font-size: 1.46667rem;
    }
}

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

    .wpo-site-footer .about-widget,
    .wpo-site-footer-s2 .about-widget,
    .wpo-site-footer-s3 .about-widget {
        padding-right: 75px;
        position: relative;
    }

    .wpo-site-footer .about-widget:after,
    .wpo-site-footer-s2 .about-widget:after,
    .wpo-site-footer-s3 .about-widget:after {
        content: "";
        background: rgba(255, 255, 255, 0.05);
        width: 1px;
        height: 100%;
        position: absolute;
        right: 35px;
        top: 0;
    }
}

@media (max-width: 1199px) {

    .wpo-site-footer .about-widget .logo,
    .wpo-site-footer-s2 .about-widget .logo,
    .wpo-site-footer-s3 .about-widget .logo {
        max-width: 90%;
    }
}

.wpo-site-footer .about-widget p,
.wpo-site-footer-s2 .about-widget p,
.wpo-site-footer-s3 .about-widget p {
    margin-bottom: 0.8em;
    line-height: 1.9em;
}

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

.wpo-site-footer .about-widget .social-icons ul,
.wpo-site-footer-s2 .about-widget .social-icons ul,
.wpo-site-footer-s3 .about-widget .social-icons ul {
    overflow: hidden;
    padding-top: 15px;
}

@media (max-width: 767px) {

    .wpo-site-footer .about-widget .social-icons ul,
    .wpo-site-footer-s2 .about-widget .social-icons ul,
    .wpo-site-footer-s3 .about-widget .social-icons ul {
        padding-top: 8px;
    }
}

.wpo-site-footer .about-widget .social-icons ul li,
.wpo-site-footer-s2 .about-widget .social-icons ul li,
.wpo-site-footer-s3 .about-widget .social-icons ul li {
    float: left;
}

.wpo-site-footer .about-widget .social-icons ul>li+li,
.wpo-site-footer-s2 .about-widget .social-icons ul>li+li,
.wpo-site-footer-s3 .about-widget .social-icons ul>li+li {
    margin-left: 15px;
}

.wpo-site-footer .about-widget .social-icons ul a,
.wpo-site-footer-s2 .about-widget .social-icons ul a,
.wpo-site-footer-s3 .about-widget .social-icons ul a {
    color: #fff;
}

.wpo-site-footer .about-widget .social-icons ul a:hover,
.wpo-site-footer-s2 .about-widget .social-icons ul a:hover,
.wpo-site-footer-s3 .about-widget .social-icons ul a:hover {
    color: #779A65;
}

@media (max-width: 1199px) {

    .wpo-site-footer .link-widget,
    .wpo-site-footer-s2 .link-widget,
    .wpo-site-footer-s3 .link-widget {
        padding-left: 20px;
    }
}

@media (max-width: 991px) {

    .wpo-site-footer .link-widget,
    .wpo-site-footer-s2 .link-widget,
    .wpo-site-footer-s3 .link-widget {
        padding-left: 0;
    }
}

.wpo-site-footer .link-widget ul li,
.wpo-site-footer-s2 .link-widget ul li,
.wpo-site-footer-s3 .link-widget ul li {
    position: relative;
    padding-left: 15px;
}

.wpo-site-footer .link-widget ul li:before,
.wpo-site-footer-s2 .link-widget ul li:before,
.wpo-site-footer-s3 .link-widget ul li:before {
    content: "";
    background-color: #fff;
    width: 5px;
    height: 1px;
    position: absolute;
    left: 0;
    top: 15px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.wpo-site-footer .link-widget ul li:hover:before,
.wpo-site-footer-s2 .link-widget ul li:hover:before,
.wpo-site-footer-s3 .link-widget ul li:hover:before {
    background: #D9916A;
}

.wpo-site-footer .link-widget ul a,
.wpo-site-footer-s2 .link-widget ul a,
.wpo-site-footer-s3 .link-widget ul a {
    color: #fff;
}

.wpo-site-footer .link-widget ul a:hover,
.wpo-site-footer .link-widget ul li:hover:before,
.wpo-site-footer-s2 .link-widget ul a:hover,
.wpo-site-footer-s2 .link-widget ul li:hover:before,
.wpo-site-footer-s3 .link-widget ul a:hover,
.wpo-site-footer-s3 .link-widget ul li:hover:before {
    color: #D9916A;
}

.wpo-site-footer .link-widget ul>li+li,
.wpo-site-footer-s2 .link-widget ul>li+li,
.wpo-site-footer-s3 .link-widget ul>li+li {
    margin-top: 17px;
}

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

    .wpo-site-footer .service-link-widget,
    .wpo-site-footer-s2 .service-link-widget,
    .wpo-site-footer-s3 .service-link-widget {
        padding-left: 25px;
    }
}

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

.wpo-site-footer .newsletter-widget form input,
.wpo-site-footer-s2 .newsletter-widget form input,
.wpo-site-footer-s3 .newsletter-widget form input {
    background-color: #2c4456;
    height: 50px;
    color: #fff;
    padding: 6px 15px;
    border: 1px solid #2c4456;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.wpo-site-footer .newsletter-widget form input::-webkit-input-placeholder,
.wpo-site-footer-s2 .newsletter-widget form input::-webkit-input-placeholder,
.wpo-site-footer-s3 .newsletter-widget form input::-webkit-input-placeholder {
    color: #CFD8DF;
}

.wpo-site-footer .newsletter-widget form input:-ms-input-placeholder,
.wpo-site-footer-s2 .newsletter-widget form input:-ms-input-placeholder,
.wpo-site-footer-s3 .newsletter-widget form input:-ms-input-placeholder {
    color: #CFD8DF;
}

.wpo-site-footer .newsletter-widget form input::-ms-input-placeholder,
.wpo-site-footer-s2 .newsletter-widget form input::-ms-input-placeholder,
.wpo-site-footer-s3 .newsletter-widget form input::-ms-input-placeholder {
    color: #CFD8DF;
}

.wpo-site-footer .newsletter-widget form input::placeholder,
.wpo-site-footer-s2 .newsletter-widget form input::placeholder,
.wpo-site-footer-s3 .newsletter-widget form input::placeholder {
    color: #CFD8DF;
}

.wpo-site-footer .newsletter-widget form .submit,
.wpo-site-footer-s2 .newsletter-widget form .submit,
.wpo-site-footer-s3 .newsletter-widget form .submit {
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.wpo-site-footer .newsletter-widget form .submit button,
.wpo-site-footer-s2 .newsletter-widget form .submit button,
.wpo-site-footer-s3 .newsletter-widget form .submit button {
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 20px;
    color: #fff;
}

.wpo-site-footer .wpo-lower-footer,
.wpo-site-footer-s2 .wpo-lower-footer,
.wpo-site-footer-s3 .wpo-lower-footer {
    text-align: center;
    position: relative;
}

.wpo-site-footer .wpo-lower-footer .row,
.wpo-site-footer-s2 .wpo-lower-footer .row,
.wpo-site-footer-s3 .wpo-lower-footer .row {
    padding: 20px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.125);
}

.wpo-site-footer .wpo-lower-footer .copyright,
.wpo-site-footer-s2 .wpo-lower-footer .copyright,
.wpo-site-footer-s3 .wpo-lower-footer .copyright {
    display: inline-block;
    font-size: 15px;
    font-size: 0.9375rem;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
}

.wpo-site-footer .wpo-lower-footer .copyright span,
.wpo-site-footer-s2 .wpo-lower-footer .copyright span,
.wpo-site-footer-s3 .wpo-lower-footer .copyright span {
    color: #D9916A;
    padding: 0 10px 0 5px;
}

.wpo-site-footer .wpo-lower-footer .copyright .copyright-icon,
.wpo-site-footer-s2 .wpo-lower-footer .copyright .copyright-icon,
.wpo-site-footer-s3 .wpo-lower-footer .copyright .copyright-icon {
    padding-right: 10px;
    color: #fff;
}

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

@media (max-width: 991px) {

    .wpo-site-footer .wpo-lower-footer .copyright,
    .wpo-site-footer-s2 .wpo-lower-footer .copyright,
    .wpo-site-footer-s3 .wpo-lower-footer .copyright {
        float: none;
        display: block;
    }
}

.wpo-site-footer .wpo-lower-footer p,
.wpo-site-footer-s2 .wpo-lower-footer p,
.wpo-site-footer-s3 .wpo-lower-footer p {
    font-size: 15px;
    font-size: 0.9375rem;
    font-weight: 400;
    margin-bottom: 0;
}

.wpo-site-footer .wpo-lower-footer p a {
    color: #fff;
}

.wpo-site-footer .wpo-lower-footer .link,
.wpo-site-footer-s2 .wpo-lower-footer .link,
.wpo-site-footer-s3 .wpo-lower-footer .link {
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: right;
    -ms-flex-pack: right;
    justify-content: right;
}

.wpo-site-footer .wpo-lower-footer .link a,
.wpo-site-footer-s2 .wpo-lower-footer .link a,
.wpo-site-footer-s3 .wpo-lower-footer .link a {
    color: #fff;
}

.wpo-site-footer .wpo-lower-footer .link span,
.wpo-site-footer-s2 .wpo-lower-footer .link span,
.wpo-site-footer-s3 .wpo-lower-footer .link span {
    color: #D9916A;
    padding: 0 10px;
}

@media (max-width: 991px) {

    .wpo-site-footer .wpo-lower-footer .link,
    .wpo-site-footer-s2 .wpo-lower-footer .link,
    .wpo-site-footer-s3 .wpo-lower-footer .link {
        float: none;
        display: block;
    }
}

.wpo-site-footer-s2 {
    margin-top: 0;
    background: #1E3446;
}

@media screen and (min-width: 992px) {
    .wpo-site-footer-s2 .upper-footer {
        padding-top: 100px;
    }
}

.wpo-site-footer-s3 {
    margin-top: 0;
    background: url(../images/ft-bg2.jpg) no-repeat center top/cover;
}

.wpo-site-footer-s3 .instagram ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0px -3px;
}

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

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


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



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

    .wpo-site-footer .wpo-upper-footer .col {
        margin-bottom: 70px;
    }

}

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

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

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


/*3.4 arkitek-service-section */
@media (max-width: 767px) {

    .arkitek-service-section,
    .arkitek-service-section-s2 {
        padding-bottom: 50px;
    }
}

.arkitek-service-section .service-wrap,
.arkitek-service-section-s2 .service-wrap {
    margin-top: 75px;
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media (max-width: 767px) {

    .arkitek-service-section .service-wrap,
    .arkitek-service-section-s2 .service-wrap {
        margin-top: 35px;
    }
}

.arkitek-service-section .service-wrap .bg-image,
.arkitek-service-section-s2 .service-wrap .bg-image {
    position: absolute;
    left: 50%;
    top: 47%;
    transform: translate(-50%, -50%);
    width: 990px;
    height: 745px;
    z-index: -1;
}

@media (max-width: 1399px) {

    .arkitek-service-section .service-wrap .bg-image,
    .arkitek-service-section-s2 .service-wrap .bg-image {
        width: 755px;
        height: 100%;
    }
}

@media (max-width: 1199px) {

    .arkitek-service-section .service-wrap .bg-image,
    .arkitek-service-section-s2 .service-wrap .bg-image {
        width: 660px;
    }
}

@media (max-width: 991px) {

    .arkitek-service-section .service-wrap .bg-image,
    .arkitek-service-section-s2 .service-wrap .bg-image {
        width: 640px;
    }
}

@media (max-width: 767px) {

    .arkitek-service-section .service-wrap .bg-image,
    .arkitek-service-section-s2 .service-wrap .bg-image {
        display: none;
    }
}

.arkitek-service-section .service-item,
.arkitek-service-section-s2 .service-item {
    border: 2px dashed #DADADA;
    display: flex;
    justify-content: space-between;
    padding: 40px 28px;
    padding-bottom: 20px;
    background: #fff;
    max-width: 400px;
    margin-bottom: 30px;
}

@media (max-width: 1399px) {

    .arkitek-service-section .service-item,
    .arkitek-service-section-s2 .service-item {
        margin-right: 0;
        padding: 20px;
    }
}

@media (max-width: 1199px) {

    .arkitek-service-section .service-item,
    .arkitek-service-section-s2 .service-item {
        padding: 20px;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {

    .arkitek-service-section .service-item,
    .arkitek-service-section-s2 .service-item {
        margin: 0 auto;
        margin-bottom: 30px;
    }
}

.arkitek-service-section .service-item .icon,
.arkitek-service-section-s2 .service-item .icon {
    margin-top: 10px;
    width: 80px;
}

@media (max-width: 767px) {

    .arkitek-service-section .service-item .icon,
    .arkitek-service-section-s2 .service-item .icon {
        margin-top: 0;
        width: 60px;
    }
}

@media (max-width: 575px) {

    .arkitek-service-section .service-item .icon,
    .arkitek-service-section-s2 .service-item .icon {
        width: 80px;
    }
}

.arkitek-service-section .service-item .icon img,
.arkitek-service-section-s2 .service-item .icon img {
    width: 100%;
}

.arkitek-service-section .service-item .text,
.arkitek-service-section-s2 .service-item .text {
    padding-left: 30px;
    text-align: left;
}

@media (max-width: 1399px) {

    .arkitek-service-section .service-item .text,
    .arkitek-service-section-s2 .service-item .text {
        padding-left: 20px;
    }
}

@media (max-width: 1199px) {

    .arkitek-service-section .service-item .text,
    .arkitek-service-section-s2 .service-item .text {
        padding-left: 15px;
    }
}

.arkitek-service .service-item .text h2 {
    margin-top: 0;
    margin-bottom: 8px;
}

.arkitek-service-section .service-item .text h2 a,
.arkitek-service-section-s2 .service-item .text h2 a {
    font-family: "titillium";
    color: #262626;
    font-weight: 400;
    font-size: 30px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 1199px) {

    .arkitek-service-section .service-item .text h2 a,
    .arkitek-service-section-s2 .service-item .text h2 a {
        font-size: 28px;
    }
}

@media (max-width: 575px) {

    .arkitek-service-section .service-item .text h2 a,
    .arkitek-service-section-s2 .service-item .text h2 a {
        font-size: 25px;
    }
}

.arkitek-service-section .service-item .text h2 a:hover,
.arkitek-service-section-s2 .service-item .text h2 a:hover {
    color: #D9916A;
}

.arkitek-service-section .service-item .text p,
.arkitek-service-section-s2 .service-item .text p {
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #525252;
    padding-top: 10px;
    margin-bottom: 15px;
}

@media (max-width: 1399px) {

    .arkitek-service-section .service-item .text p,
    .arkitek-service-section-s2 .service-item .text p {
        margin-bottom: 0;
        padding-top: 0;
    }
}

@media (max-width: 1199px) {

    .arkitek-service-section .service-item .text p,
    .arkitek-service-section-s2 .service-item .text p {
        font-size: 16px;
    }
}

.arkitek-service-section .service-item-wrap,
.arkitek-service-section-s2 .service-item-wrap {
    flex-basis: 50%;
}

@media (max-width: 991px) {

    .arkitek-service-section .service-item-wrap,
    .arkitek-service-section-s2 .service-item-wrap {
        flex-basis: 48%;
    }
}

@media (max-width: 767px) {

    .arkitek-service-section .service-item-wrap,
    .arkitek-service-section-s2 .service-item-wrap {
        flex-basis: 100%;
    }
}

.arkitek-service-section .service-item-wrap:nth-child(2) .service-item,
.arkitek-service-section-s2 .service-item-wrap:nth-child(2) .service-item {
    margin-left: auto;
    flex: 1 1;
}

@media (max-width: 767px) {

    .arkitek-service-section .service-item-wrap:nth-child(2) .service-item,
    .arkitek-service-section-s2 .service-item-wrap:nth-child(2) .service-item {
        margin: 0 auto;
        margin-bottom: 30px;
    }
}

.arkitek-service-section .service-item-wrap:nth-child(2) .service-item .icon,
.arkitek-service-section-s2 .service-item-wrap:nth-child(2) .service-item .icon {
    order: 1;
}

@media (max-width: 767px) {

    .arkitek-service-section .service-item-wrap:nth-child(2) .service-item .icon,
    .arkitek-service-section-s2 .service-item-wrap:nth-child(2) .service-item .icon {
        order: 0;
    }
}

.arkitek-service-section .service-item-wrap:nth-child(2) .service-item .text,
.arkitek-service-section-s2 .service-item-wrap:nth-child(2) .service-item .text {
    padding-right: 30px;
    padding-left: 0;
    text-align: right;
}

@media (max-width: 1399px) {

    .arkitek-service-section .service-item-wrap:nth-child(2) .service-item .text,
    .arkitek-service-section-s2 .service-item-wrap:nth-child(2) .service-item .text {
        padding-right: 20px;
        padding-left: 0;
    }
}

@media (max-width: 1199px) {

    .arkitek-service-section .service-item-wrap:nth-child(2) .service-item .text,
    .arkitek-service-section-s2 .service-item-wrap:nth-child(2) .service-item .text {
        padding-right: 15px;
        padding-left: 0;
    }
}

@media (max-width: 767px) {

    .arkitek-service-section .service-item-wrap:nth-child(2) .service-item .text,
    .arkitek-service-section-s2 .service-item-wrap:nth-child(2) .service-item .text {
        padding-right: 0;
        padding-left: 15px;
        text-align: left;
    }
}

.arkitek-service-section .service-item-wrap:nth-child(4) .service-item,
.arkitek-service-section-s2 .service-item-wrap:nth-child(4) .service-item {
    margin-left: auto;
    flex: 1 1;
}

.arkitek-service-section .service-item-wrap:nth-child(4) .service-item .icon,
.arkitek-service-section-s2 .service-item-wrap:nth-child(4) .service-item .icon {
    order: 1;
}

@media (max-width: 767px) {

    .arkitek-service-section .service-item-wrap:nth-child(4) .service-item .icon,
    .arkitek-service-section-s2 .service-item-wrap:nth-child(4) .service-item .icon {
        order: 0;
    }
}

.arkitek-service-section .service-item-wrap:nth-child(4) .service-item .text,
.arkitek-service-section-s2 .service-item-wrap:nth-child(4) .service-item .text {
    padding-right: 30px;
    padding-left: 0;
    text-align: right;
}

@media (max-width: 1399px) {

    .arkitek-service-section .service-item-wrap:nth-child(4) .service-item .text,
    .arkitek-service-section-s2 .service-item-wrap:nth-child(4) .service-item .text {
        padding-right: 20px;
        padding-left: 0;
    }
}

@media (max-width: 1199px) {

    .arkitek-service-section .service-item-wrap:nth-child(4) .service-item .text,
    .arkitek-service-section-s2 .service-item-wrap:nth-child(4) .service-item .text {
        padding-right: 15px;
        padding-left: 0;
    }
}

@media (max-width: 767px) {

    .arkitek-service-section .service-item-wrap:nth-child(4) .service-item .text,
    .arkitek-service-section-s2 .service-item-wrap:nth-child(4) .service-item .text {
        padding-right: 0;
        padding-left: 15px;
        text-align: left;
    }
}

.arkitek-service-section .service-item-wrap:nth-child(6) .service-item,
.arkitek-service-section-s2 .service-item-wrap:nth-child(6) .service-item {
    margin-left: auto;
    flex: 1 1;
}

.arkitek-service-section .service-item-wrap:nth-child(6) .service-item .icon,
.arkitek-service-section-s2 .service-item-wrap:nth-child(6) .service-item .icon {
    order: 1;
}

@media (max-width: 767px) {

    .arkitek-service-section .service-item-wrap:nth-child(6) .service-item .icon,
    .arkitek-service-section-s2 .service-item-wrap:nth-child(6) .service-item .icon {
        order: 0;
    }
}

.arkitek-service-section .service-item-wrap:nth-child(6) .service-item .text,
.arkitek-service-section-s2 .service-item-wrap:nth-child(6) .service-item .text {
    padding-right: 30px;
    padding-left: 0;
    text-align: right;
}

@media (max-width: 1399px) {

    .arkitek-service-section .service-item-wrap:nth-child(6) .service-item .text,
    .arkitek-service-section-s2 .service-item-wrap:nth-child(6) .service-item .text {
        padding-right: 20px;
        padding-left: 0;
    }
}

@media (max-width: 1199px) {

    .arkitek-service-section .service-item-wrap:nth-child(6) .service-item .text,
    .arkitek-service-section-s2 .service-item-wrap:nth-child(6) .service-item .text {
        padding-right: 15px;
        padding-left: 0;
    }
}

@media (max-width: 767px) {

    .arkitek-service-section .service-item-wrap:nth-child(6) .service-item .text,
    .arkitek-service-section-s2 .service-item-wrap:nth-child(6) .service-item .text {
        padding-right: 0;
        padding-left: 15px;
        text-align: left;
    }
}

/* 3.5 arkitek-project-section */
.arkitek-project-section .container-fluid,
.arkitek-project-section-s2 .container-fluid {
    padding: 0;
}

.arkitek-project-section .row,
.arkitek-project-section-s2 .row {
    margin: 0 110px;
}

@media (max-width: 1760px) {

    .arkitek-project-section .row,
    .arkitek-project-section-s2 .row {
        margin: 0 50px;
    }
}

@media (max-width: 1499px) {

    .arkitek-project-section .row,
    .arkitek-project-section-s2 .row {
        margin: 0 20px;
    }
}

@media (max-width: 1199px) {

    .arkitek-project-section .row,
    .arkitek-project-section-s2 .row {
        margin: 0;
    }
}

.arkitek-project-section .wpo-section-title,
.arkitek-project-section-s2 .wpo-section-title {
    text-align: left;
}

@media (max-width: 991px) {

    .arkitek-project-section .wpo-section-title,
    .arkitek-project-section-s2 .wpo-section-title {
        text-align: center;
    }
}

@media (max-width: 1399px) {

    .arkitek-project-section .wpo-section-title h2,
    .arkitek-project-section-s2 .wpo-section-title h2 {
        font-size: 48px;
        line-height: 70px;
    }
}

@media (max-width: 1199px) {

    .arkitek-project-section .wpo-section-title h2,
    .arkitek-project-section-s2 .wpo-section-title h2 {
        font-size: 40px;
        line-height: 55px;
    }
}

@media (max-width: 767px) {

    .arkitek-project-section .wpo-section-title h2,
    .arkitek-project-section-s2 .wpo-section-title h2 {
        font-size: 32px;
        line-height: 40px;
    }
}


.arkitek-project-section .project-btn,
.arkitek-project-section-s2 .project-btn {
    text-align: right;
}

@media (max-width: 991px) {

    .arkitek-project-section .project-btn,
    .arkitek-project-section-s2 .project-btn {
        text-align: center;
    }
}

@media (max-width: 767px) {

    .arkitek-project-section .project-btn,
    .arkitek-project-section-s2 .project-btn {
        padding-top: 20px;
    }
}

.arkitek-project-section .project-wrap,
.arkitek-project-section-s2 .project-wrap {
    margin-top: 35px;
}

@media (max-width: 991px) {

    .arkitek-project-section .project-wrap,
    .arkitek-project-section-s2 .project-wrap {
        margin-top: 50px;
    }
}

.arkitek-project-section .project-item,
.arkitek-project-section-s2 .project-item {
    transition: all 0.3s;
    margin-top: 0px;
}

.arkitek-project-section .project-item .image img,
.arkitek-project-section-s2 .project-item .image img {
    width: 100%;
}

.arkitek-project-section .project-item .text,
.arkitek-project-section-s2 .project-item .text {
    margin-top: 30px;
}

@media (max-width: 1199px) {

    .arkitek-project-section .project-item .text,
    .arkitek-project-section-s2 .project-item .text {
        margin-top: 0;
    }
}

@media (max-width: 767px) {

    .arkitek-project-section .project-item .text,
    .arkitek-project-section-s2 .project-item .text {
        margin-top: 10px;
        text-align: center;
    }
}

.arkitek-project-section .project-item .text h2 a,
.arkitek-project-section-s2 .project-item .text h2 a {
    font-family: "titillium";
    font-weight: 400;
    font-size: 30px;
    color: #262626;
    display: inline-block;
    padding-left: 80px;
    transition: all 0.3s ease-in-out;
    position: relative;
}

@media (max-width: 1760px) {

    .arkitek-project-section .project-item .text h2 a,
    .arkitek-project-section-s2 .project-item .text h2 a {
        padding-left: 70px;
        font-size: 25px;
    }
}

@media (max-width: 1399px) {

    .arkitek-project-section .project-item .text h2 a,
    .arkitek-project-section-s2 .project-item .text h2 a {
        padding-left: 50px;
        font-size: 22px;
    }
}

@media (max-width: 1199px) {

    .arkitek-project-section .project-item .text h2 a,
    .arkitek-project-section-s2 .project-item .text h2 a {
        padding-left: 30px;
        font-size: 20px;
    }
}

@media (max-width: 991px) {

    .arkitek-project-section .project-item .text h2 a,
    .arkitek-project-section-s2 .project-item .text h2 a {
        padding-left: 0;
        font-size: 20px;
    }
}

.arkitek-project-section .project-item .text h2 a:hover,
.arkitek-project-section-s2 .project-item .text h2 a:hover {
    color: #D9916A;
}

.arkitek-project-section .project-item .text h2 a::before,
.arkitek-project-section-s2 .project-item .text h2 a::before {
    position: absolute;
    left: 10px;
    top: 50%;
    content: "";
    height: 1px;
    width: 50px;
    background: #779A65;
}

@media (max-width: 1399px) {

    .arkitek-project-section .project-item .text h2 a::before,
    .arkitek-project-section-s2 .project-item .text h2 a::before {
        width: 40px;
        left: 5px;
    }
}

@media (max-width: 1199px) {

    .arkitek-project-section .project-item .text h2 a::before,
    .arkitek-project-section-s2 .project-item .text h2 a::before {
        width: 20px;
        left: 5px;
    }
}

@media (max-width: 991px) {

    .arkitek-project-section .project-item .text h2 a::before,
    .arkitek-project-section-s2 .project-item .text h2 a::before {
        display: none;
    }
}

.arkitek-project-section .project-slider .owl-item.cloned,
.arkitek-project-section-s2 .project-slider .owl-item.cloned {
    transition: all 0.3s;
}

.arkitek-project-section .project-slider .owl-item.active.center,
.arkitek-project-section-s2 .project-slider .owl-item.active.center {
    margin-top: 100px;
}

@media (max-width: 1399px) {

    .arkitek-project-section .project-slider .owl-item.active.center,
    .arkitek-project-section-s2 .project-slider .owl-item.active.center {
        margin-top: 60px;
    }
}

@media (max-width: 1199px) {

    .arkitek-project-section .project-slider .owl-item.active.center,
    .arkitek-project-section-s2 .project-slider .owl-item.active.center {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {

    .arkitek-project-section .project-slider .owl-item.active.center,
    .arkitek-project-section-s2 .project-slider .owl-item.active.center {
        margin-top: 20px;
    }
}

@media (max-width: 574px) {

    .arkitek-project-section .project-slider .owl-item.active.center,
    .arkitek-project-section-s2 .project-slider .owl-item.active.center {
        margin-top: 0;
    }
}

.arkitek-project-section .project-slider .owl-nav.disabled,
.arkitek-project-section-s2 .project-slider .owl-nav.disabled {
    display: none;
}

.arkitek-project-section .project-slider .owl-dots,
.arkitek-project-section-s2 .project-slider .owl-dots {
    text-align: center;
    margin-top: 30px;
}

@media (min-width: 992px) {

    .arkitek-project-section .project-slider .owl-dots,
    .arkitek-project-section-s2 .project-slider .owl-dots {
        display: none;
    }
}

.arkitek-project-section .project-slider .owl-dot,
.arkitek-project-section-s2 .project-slider .owl-dot {
    width: 10px;
    height: 12px;
    background: #779A65;
    border-radius: 50%;
    margin: 0 5px;
    border: 0;
}

.arkitek-project-section .project-slider .owl-dot.active,
.arkitek-project-section-s2 .project-slider .owl-dot.active {
    background: #D9916A;
}


/*3.8 arkitek-cta-section */
.arkitek-cta-section,
.arkitek-cta-section-s2 {
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    position: relative;
}

.arkitek-cta-section::before,
.arkitek-cta-section-s2::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #779A65;
    opacity: 0.95;
    z-index: -1;
}

.arkitek-cta-section .cta-content,
.arkitek-cta-section-s2 .cta-content {
    text-align: center;
}

.arkitek-cta-section .cta-content span,
.arkitek-cta-section-s2 .cta-content span {
    display: inline-block;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
}

@media (max-width: 767px) {

    .arkitek-cta-section .cta-content span,
    .arkitek-cta-section-s2 .cta-content span {
        font-size: 15px;
        margin-bottom: 8px;
    }
}

.arkitek-cta-section .cta-content .call,
.arkitek-cta-section-s2 .cta-content .call {
    display: block;
    color: #fff;
    font-family: "titillium";
    font-weight: 400;
    font-size: 60px;
    margin-bottom: 20px;
}

@media (max-width: 1199px) {

    .arkitek-cta-section .cta-content .call,
    .arkitek-cta-section-s2 .cta-content .call {
        font-size: 55px;
    }
}

@media (max-width: 991px) {

    .arkitek-cta-section .cta-content .call,
    .arkitek-cta-section-s2 .cta-content .call {
        font-size: 45px;
    }
}

@media (max-width: 767px) {

    .arkitek-cta-section .cta-content .call,
    .arkitek-cta-section-s2 .cta-content .call {
        font-size: 32px;
        margin-bottom: 7px;
    }
}

.arkitek-cta-section .cta-content p,
.arkitek-cta-section-s2 .cta-content p {
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 37px;
}

@media (max-width: 767px) {

    .arkitek-cta-section .cta-content p,
    .arkitek-cta-section-s2 .cta-content p {
        font-size: 15px;
        margin-bottom: 20px;
    }
}

.arkitek-cta-section .cta-content .cta-btn,
.arkitek-cta-section-s2 .cta-content .cta-btn {
    display: inline-block;
}

.arkitek-cta-section .cta-content .cta-btn .theme-btn:hover {
    color: #fff;
    background-color: #4d683f;
}

.arkitek-cta-section-s2 .cta-content .cta-btn .theme-btn:hover {
    color: #fff;
    background-color: #D9916A;
}

/*5.7 arkitek-cta-section-s2 */
.arkitek-cta-section-s2 {
    z-index: 0;
    overflow: hidden;
    padding: 100px 0;
}

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

.arkitek-cta-section-s2::before {
    left: 50%;
    width: 50%;
    transform: translateX(-50%);
    -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

@media (max-width: 1399px) {
    .arkitek-cta-section-s2::before {
        width: 60%;
    }
}

@media (max-width: 1199px) {
    .arkitek-cta-section-s2::before {
        width: 70%;
    }
}

@media (max-width: 991px) {
    .arkitek-cta-section-s2::before {
        width: 80%;
    }
}

@media (max-width: 767px) {
    .arkitek-cta-section-s2::before {
        width: 100%;
        -webkit-clip-path: none;
        clip-path: none;
    }
}

.arkitek-cta-section-s2 .cta-left {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -11;
    height: 499px;
    width: 719px;
}

@media (max-width: 1399px) {
    .arkitek-cta-section-s2 .cta-left {
        left: -229px;
    }
}

@media (max-width: 1199px) {
    .arkitek-cta-section-s2 .cta-left {
        left: -330px;
    }
}

@media (max-width: 991px) {
    .arkitek-cta-section-s2 .cta-left {
        width: 670px;
    }
}

@media (max-width: 767px) {
    .arkitek-cta-section-s2 .cta-left {
        display: none;
    }
}

.arkitek-cta-section-s2 .cta-left img {
    width: 100%;
}

.arkitek-cta-section-s2 .cta-right {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -11;
    height: 499px;
    width: 719px;
}

@media (max-width: 1399px) {
    .arkitek-cta-section-s2 .cta-right {
        right: -229px;
    }
}

@media (max-width: 1199px) {
    .arkitek-cta-section-s2 .cta-right {
        right: -335px;
    }
}

@media (max-width: 991px) {
    .arkitek-cta-section-s2 .cta-right {
        width: 670px;
    }
}

@media (max-width: 767px) {
    .arkitek-cta-section-s2 .cta-right {
        display: none;
    }
}

.arkitek-cta-section-s2 .cta-right img {
    width: 100%;
}

/* 3.7 arkitek-testimonial-section */
.arkitek-testimonial-section,
.arkitek-testimonial-section-s2 {
    padding-top: 0;
}

@media (max-width: 767px) {

    .arkitek-testimonial-section .testimonial-left-item,
    .arkitek-testimonial-section-s2 .testimonial-left-item {
        width: 350px;
        height: 350px;
        margin: 0 auto;
    }
}

@media (max-width: 575px) {

    .arkitek-testimonial-section .testimonial-left-item,
    .arkitek-testimonial-section-s2 .testimonial-left-item {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 399px) {

    .arkitek-testimonial-section .testimonial-left-item,
    .arkitek-testimonial-section-s2 .testimonial-left-item {
        width: 250px;
        height: 250px;
    }
}

.arkitek-testimonial-section .testimonial-left-item .image,
.arkitek-testimonial-section-s2 .testimonial-left-item .image {
    margin: 20px;
    outline: 2px dashed #DADADA;
    outline-offset: 15px;
    border-radius: 50%;
}

.arkitek-testimonial-section .testimonial-left-item .image img,
.arkitek-testimonial-section-s2 .testimonial-left-item .image img {
    border-radius: 50%;
    width: 100%;
}

.arkitek-testimonial-section .testimonial-item,
.arkitek-testimonial-section-s2 .testimonial-item {
    margin-left: 40px;
    margin-right: 5px;
}

@media (max-width: 1399px) {

    .arkitek-testimonial-section .testimonial-item,
    .arkitek-testimonial-section-s2 .testimonial-item {
        margin-left: 30px;
        margin-right: 0;
    }
}

@media (max-width: 1199px) {

    .arkitek-testimonial-section .testimonial-item,
    .arkitek-testimonial-section-s2 .testimonial-item {
        margin-left: 0;
    }
}

@media (max-width: 767px) {

    .arkitek-testimonial-section .testimonial-item,
    .arkitek-testimonial-section-s2 .testimonial-item {
        margin-top: 30px;
        text-align: center;
    }
}

.arkitek-testimonial-section .testimonial-item .icon,
.arkitek-testimonial-section-s2 .testimonial-item .icon {
    display: inline-block;
}

@media (max-width: 1199px) {

    .arkitek-testimonial-section .testimonial-item .icon,
    .arkitek-testimonial-section-s2 .testimonial-item .icon {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 991px) {

    .arkitek-testimonial-section .testimonial-item .icon,
    .arkitek-testimonial-section-s2 .testimonial-item .icon {
        width: 80px;
        height: 80px;
    }
}

.arkitek-testimonial-section .testimonial-item p,
.arkitek-testimonial-section-s2 .testimonial-item p {
    font-family: "titillium";
    font-weight: 400;
    font-size: 30px;
    line-height: 50px;
    color: #525252;
    margin-bottom: 80px;
    margin-top: 20px;
    position: relative;
}

@media (max-width: 1399px) {

    .arkitek-testimonial-section .testimonial-item p,
    .arkitek-testimonial-section-s2 .testimonial-item p {
        font-size: 29px;
        margin-top: 0;
        margin-bottom: 65px;
    }
}

@media (max-width: 1199px) {

    .arkitek-testimonial-section .testimonial-item p,
    .arkitek-testimonial-section-s2 .testimonial-item p {
        font-size: 25px;
        line-height: 40px;
        margin-bottom: 40px;
    }
}

@media (max-width: 991px) {

    .arkitek-testimonial-section .testimonial-item p,
    .arkitek-testimonial-section-s2 .testimonial-item p {
        font-size: 19px;
        line-height: 30px;
    }
}

.arkitek-testimonial-section .testimonial-item p:before,
.arkitek-testimonial-section-s2 .testimonial-item p:before {
    position: absolute;
    left: 0;
    top: 35px;
    width: 50%;
    height: 100%;
    content: "";
    border-bottom: 2px dashed rgba(119, 154, 101, 0.6784313725);
    z-index: -1;
}

@media (max-width: 1199px) {

    .arkitek-testimonial-section .testimonial-item p:before,
    .arkitek-testimonial-section-s2 .testimonial-item p:before {
        top: 20px;
    }
}

@media (max-width: 767px) {

    .arkitek-testimonial-section .testimonial-item p:before,
    .arkitek-testimonial-section-s2 .testimonial-item p:before {
        left: 50%;
        transform: translateX(-50%);
    }
}

.arkitek-testimonial-section .testimonial-item p::after,
.arkitek-testimonial-section-s2 .testimonial-item p::after {
    position: absolute;
    left: 0;
    top: 45px;
    width: 40%;
    height: 100%;
    content: "";
    border-bottom: 2px dashed rgba(119, 154, 101, 0.6784313725);
    z-index: -1;
}

@media (max-width: 1199px) {

    .arkitek-testimonial-section .testimonial-item p::after,
    .arkitek-testimonial-section-s2 .testimonial-item p::after {
        top: 30px;
    }
}

@media (max-width: 767px) {

    .arkitek-testimonial-section .testimonial-item p::after,
    .arkitek-testimonial-section-s2 .testimonial-item p::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

.arkitek-testimonial-section .testimonial-item h3,
.arkitek-testimonial-section-s2 .testimonial-item h3 {
    margin-top: 30px;
    font-family: "titillium";
    font-weight: 400;
    font-size: 38px;
    color: #262626;
    margin-top: 50px;
    margin-bottom: 10px;
}

@media (max-width: 1199px) {

    .arkitek-testimonial-section .testimonial-item h3,
    .arkitek-testimonial-section-s2 .testimonial-item h3 {
        font-size: 35px;
    }
}

@media (max-width: 991px) {

    .arkitek-testimonial-section .testimonial-item h3,
    .arkitek-testimonial-section-s2 .testimonial-item h3 {
        font-size: 25px;
        line-height: 30px;
        margin-bottom: 10px;
    }
}

.arkitek-testimonial-section .testimonial-item span,
.arkitek-testimonial-section-s2 .testimonial-item span {
    font-weight: 400;
    font-size: 20px;
    color: #525252;
}

@media (max-width: 1199px) {

    .arkitek-testimonial-section .testimonial-item span,
    .arkitek-testimonial-section-s2 .testimonial-item span {
        font-size: 22px;
    }
}

@media (max-width: 991px) {

    .arkitek-testimonial-section .testimonial-item span,
    .arkitek-testimonial-section-s2 .testimonial-item span {
        font-size: 18px;
        line-height: 22px;
    }
}

@media (max-width: 767px) {

    .arkitek-testimonial-section .testimonial-item span,
    .arkitek-testimonial-section-s2 .testimonial-item span {
        font-size: 16px;
        line-height: 20px;
    }
}

.arkitek-testimonial-section.s3,
.arkitek-testimonial-section-s2.s3 {
    padding-top: 120px;
}

@media (max-width: 991px) {

    .arkitek-testimonial-section.s3,
    .arkitek-testimonial-section-s2.s3 {
        padding-top: 90px;
    }
}

@media (max-width: 767px) {

    .arkitek-testimonial-section.s3,
    .arkitek-testimonial-section-s2.s3 {
        padding-top: 80px;
    }
}

/*5.6 arkitek-testimonial-section-s2*/

@media (max-width: 767px) {
    .arkitek-testimonial-section-s2 .testimonial-left-item {
        width: 170px;
        height: 170px;
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    .arkitek-testimonial-section-s2 .testimonial-left-item {
        width: 170px;
        height: 170px;
    }
}

@media (max-width: 399px) {
    .arkitek-testimonial-section-s2 .testimonial-left-item {
        width: 170px;
        height: 170px;
    }
}

.arkitek-testimonial-section-s2 .testimonial-left-item .image {
    width: 170px;
    height: 170px;
    margin: 0;
    margin: 20px;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .arkitek-testimonial-section-s2 .testimonial-left-item .image {
        margin: 0;
        margin-top: 23px;
    }
}

.arkitek-testimonial-section-s2 .testimonial-item {
    position: relative;
    margin: 0;
    margin-top: 50px;
}

.arkitek-testimonial-section-s2 .testimonial-item .icon {
    position: absolute;
    right: 113px;
    top: -70px;
}

@media (max-width: 1199px) {
    .arkitek-testimonial-section-s2 .testimonial-item .icon {
        right: 43px;
        top: -45px;
    }
}

.arkitek-testimonial-section-s2 .testimonial-item p {
    font-weight: 400;
    font-size: 25px;
    line-height: 50px;
    padding-right: 75px;
}

@media (max-width: 1399px) {
    .arkitek-testimonial-section-s2 .testimonial-item p {
        padding-right: 0;
    }
}

@media (max-width: 1199px) {
    .arkitek-testimonial-section-s2 .testimonial-item p {
        font-size: 21px;
        line-height: 40px;
    }
}

@media (max-width: 1199px) {
    .arkitek-testimonial-section-s2 .testimonial-item span {
        font-size: 20px;
    }
}

.arkitek-testimonial-section-s2 .owl-nav.disabled {
    display: none;
}

.arkitek-testimonial-section-s2 .owl-dots {
    text-align: center;
    margin-top: 40px;
}

.arkitek-testimonial-section-s2 .owl-dot {
    width: 10px;
    height: 12px;
    background: #779A65;
    border-radius: 50%;
    margin: 0 5px;
    border: 0;
}

.arkitek-testimonial-section-s2 .owl-dot.active {
    background: #D9916A;
}


/* arka-testimonial-section-s3 */
.arka-testimonial-section-s3 .testimonial-left-item {
    position: relative;
}

.arka-testimonial-section-s3 .testimonial-left-item::before {
    position: absolute;
    content: "";
    left: -20px;
    bottom: -20px;
    width: 347px;
    height: 496px;
    background: #D9916A;
    z-index: -1;
}

@media (max-width: 991px) {
    .arka-testimonial-section-s3 .testimonial-left-item::before {
        width: 200px;
        height: 200px;
    }
}

.arka-testimonial-section-s3 .testimonial-left-item::after {
    position: absolute;
    content: "";
    right: -60px;
    top: -85px;
    width: 350px;
    height: 350px;
    background: #EDF5E9;
    z-index: -1;
    border-radius: 50%;
}

@media (max-width: 1399px) {
    .arka-testimonial-section-s3 .testimonial-left-item::after {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 1199px) {
    .arka-testimonial-section-s3 .testimonial-left-item::after {
        width: 200px;
        height: 200px;
        top: -60px;
        right: -40px;
    }
}

@media (max-width: 991px) {
    .arka-testimonial-section-s3 .testimonial-left-item::after {
        width: 150px;
        height: 150px;
        top: -40px;
        right: -30px;
    }
}

.arka-testimonial-section-s3 .testimonial-left-item .image {
    width: 600px;
    margin: 0 auto;
}

.arka-testimonial-section-s3 .testimonial-item {
    margin-left: 40px;
    margin-right: 5px;
}

@media (max-width: 1399px) {
    .arka-testimonial-section-s3 .testimonial-item {
        margin-left: 30px;
        margin-right: 0;
    }
}

@media (max-width: 1199px) {
    .arka-testimonial-section-s3 .testimonial-item {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .arka-testimonial-section-s3 .testimonial-item {
        margin-top: 30px;
        text-align: center;
    }
}

.arka-testimonial-section-s3 .testimonial-item .icon {
    display: inline-block;
}

@media (max-width: 1199px) {
    .arka-testimonial-section-s3 .testimonial-item .icon {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 991px) {
    .arka-testimonial-section-s3 .testimonial-item .icon {
        width: 80px;
        height: 80px;
    }
}

.arka-testimonial-section-s3 .testimonial-item p {
    font-family: "titillium";
    font-weight: 400;
    font-size: 29px;
    line-height: 50px;
    color: #525252;
    margin-bottom: 80px;
    margin-top: 20px;
    position: relative;
}

@media (max-width: 1399px) {
    .arka-testimonial-section-s3 .testimonial-item p {
        font-size: 29px;
        margin-top: 0;
        margin-bottom: 65px;
    }
}

@media (max-width: 1199px) {
    .arka-testimonial-section-s3 .testimonial-item p {
        font-size: 25px;
        line-height: 40px;
        margin-bottom: 40px;
    }
}

@media (max-width: 991px) {
    .arka-testimonial-section-s3 .testimonial-item p {
        font-size: 20px;
        line-height: 30px;
    }
}

.arka-testimonial-section-s3 .testimonial-item p:before {
    position: absolute;
    left: 0;
    top: 35px;
    width: 50%;
    height: 100%;
    content: "";
    border-bottom: 2px dashed rgba(119, 154, 101, 0.6784313725);
    z-index: -1;
}

@media (max-width: 1199px) {
    .arka-testimonial-section-s3 .testimonial-item p:before {
        top: 20px;
    }
}

@media (max-width: 767px) {
    .arka-testimonial-section-s3 .testimonial-item p:before {
        left: 50%;
        transform: translateX(-50%);
    }
}

.arka-testimonial-section-s3 .testimonial-item p::after {
    position: absolute;
    left: 0;
    top: 45px;
    width: 40%;
    height: 100%;
    content: "";
    border-bottom: 2px dashed rgba(119, 154, 101, 0.6784313725);
    z-index: -1;
}

@media (max-width: 1199px) {
    .arka-testimonial-section-s3 .testimonial-item p::after {
        top: 30px;
    }
}

@media (max-width: 767px) {
    .arka-testimonial-section-s3 .testimonial-item p::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

.arka-testimonial-section-s3 .testimonial-item h3 {
    margin-top: 30px;
    font-family: "titillium";
    font-weight: 400;
    font-size: 40px;
    color: #262626;
}

@media (max-width: 1199px) {
    .arka-testimonial-section-s3 .testimonial-item h3 {
        font-size: 35px;
    }
}

@media (max-width: 991px) {
    .arka-testimonial-section-s3 .testimonial-item h3 {
        font-size: 25px;
        line-height: 30px;
    }
}

.arka-testimonial-section-s3 .testimonial-item span {
    font-weight: 400;
    font-size: 22px;
    color: #525252;
}

@media (max-width: 1199px) {
    .arka-testimonial-section-s3 .testimonial-item span {
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    .arka-testimonial-section-s3 .testimonial-item span {
        font-size: 18px;
        line-height: 22px;
    }
}

@media (max-width: 767px) {
    .arka-testimonial-section-s3 .testimonial-item span {
        font-size: 16px;
        line-height: 20px;
    }
}

/* 3.8 partners-section*/
.partners-section {
    padding: 80px 0;
    background-size: cover;
    position: relative;
}

@media (max-width: 575px) {
    .partners-section {
        padding: 40px 0;
    }
}

.partners-section h3 {
    font-weight: 700;
    font-size: 23px;
    line-height: 34px;
    color: #fff;
}

@media (max-width: 991px) {
    .partners-section h3 {
        text-align: center;
        margin-bottom: 30px;
    }
}

.partners-section h3 span {
    color: #D9916A;
}

.partners-section .container {
    position: relative;
    padding: 0px 15px;
}

.partners-section .hidden {
    display: none;
}

.partners-section .grid {
    text-align: center;
}

.partners-section .grid img {
    width: auto;
    margin: 0 auto;
    display: inline-block;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: all .3s;
    transition: all .3s;
}

.partners-section .grid img:hover {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.partners-section .owl-nav {
    display: none;
}

/* 3.9 wpo-blog-section*/
/* 3.9 wpo-blog-section */


.wpo-blog-section .blog-wrap {
    margin-top: 35px;
}

.wpo-blog-section .image img {
    width: 100%;
}

.wpo-blog-section .blog-content {
    background: #fff;
    border: 2px dashed #DADADA;
    margin: 0 30px;
    padding: 35px;
    position: relative;
    z-index: 1;
    margin-top: -95px;
}

@media (max-width: 1399px) {
    .wpo-blog-section .blog-content {
        margin: 0 15px;
        margin-top: -50px;
    }
}

@media (max-width: 1199px) {
    .wpo-blog-section .blog-content {
        margin: 0 10px;
        padding: 20px 15px;
        margin-top: -50px;
    }
}

@media (max-width: 991px) {
    .wpo-blog-section .blog-content {
        margin: 0 10px;
        margin-top: -110px;
    }
}

@media (max-width: 399px) {
    .wpo-blog-section .blog-content {
        padding: 10px;
        margin: 0 5px;
        margin-top: -110px;
    }
}

.wpo-blog-section .blog-content h2 {
    margin-top: 0;
    margin-bottom: 8px;
}

.wpo-blog-section .blog-content h2 a {
    font-family: "titillium";
    font-weight: 400;
    font-size: 36px;
    line-height: 60px;
    color: #262626;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 1399px) {
    .wpo-blog-section .blog-content h2 a {
        font-size: 30px;
        line-height: 50px;
    }
}

@media (max-width: 575px) {
    .wpo-blog-section .blog-content h2 a {
        font-size: 25px;
        line-height: 45px;
    }
}

@media (max-width: 399px) {
    .wpo-blog-section .blog-content h2 a {
        font-size: 18px;
        line-height: 26px;
    }
}

.wpo-blog-section .blog-content h2:hover a {
    color: #D9916A;
}

.wpo-blog-section .blog-content a.theme-btn-s2 {
    display: block;
    padding-top: 15px;
}

.wpo-blog-section .blog-content p {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #525252;
    margin-bottom: 0;
}

@media (max-width: 399px) {
    .wpo-blog-section .blog-content p {
        font-size: 16px;
        line-height: 25px;
    }
}

.wpo-blog-section .thumb ul {
    list-style: none;
    padding-left: 0;
}

.wpo-blog-section .thumb ul li {
    display: inline-block;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #779A65;
    z-index: 1;
}

@media (max-width: 767px) {
    .wpo-blog-section .thumb ul li {
        font-size: 18px;
    }
}

@media (max-width: 399px) {
    .wpo-blog-section .thumb ul li {
        font-size: 15px;
        line-height: 22px;
    }
}

.wpo-blog-section .thumb ul li a {
    position: relative;
    color: #779A65;
    padding-right: 20px;
    transition: all 0.3s ease-in-out;
}

.wpo-blog-section .thumb ul li a::before {
    position: absolute;
    content: "";
    right: 5px;
    top: 9px;
    width: 5px;
    height: 5px;
    background: #779A65;
}

.wpo-blog-section .thumb ul li a:hover {
    color: #D9916A;
}

.wpo-blog-section .grid {
    width: 50%;
    float: left;
    padding: 0 15px 30px;
}

@media (max-width: 991px) {
    .wpo-blog-section .grid {
        width: 100%;
        float: none;
    }
}

@media (max-width: 991px) {
    .wpo-blog-section .grid:last-child {
        padding-bottom: 0;
    }
}

.wpo-blog-section .blog-item.s2 {
    margin-bottom: 30px;
}

.wpo-blog-section .blog-item.s2 .image {
    width: 330px;
    height: 300px;
    display: inline-block;
}

@media (max-width: 1199px) {
    .wpo-blog-section .blog-item.s2 .image {
        width: 270px;
        height: 250px;
    }
}

@media (max-width: 991px) {
    .wpo-blog-section .blog-item.s2 .image {
        width: 100%;
        height: 100%;
    }

    .wpo-blog-section .blog-item.s2 {
        margin-bottom: 0;
    }
}

.wpo-blog-section .blog-item.s2 .blog-content {
    width: 420px;
    margin: 0;
    margin-top: -260px;
    margin-left: 200px;
}

@media (max-width: 1399px) {
    .wpo-blog-section .blog-item.s2 .blog-content {
        margin-left: 140px;
    }
}

@media (max-width: 1199px) {
    .wpo-blog-section .blog-item.s2 .blog-content {
        margin-top: -220px;
        width: 380px;
        margin-left: 61px;
    }
}

@media (max-width: 991px) {
    .wpo-blog-section .blog-item.s2 .blog-content {
        margin: 0 10px;
        margin-top: -110px;
        width: 100%;
        padding: 20px 20px;
        width: 97%;
    }
}

@media (max-width: 767px) {
    .wpo-blog-section .blog-item.s2 .blog-content {
        width: 96%;
    }
}

@media (max-width: 575px) {
    .wpo-blog-section .blog-item.s2 .blog-content {
        width: 95%;
    }
}

@media (max-width: 399px) {
    .wpo-blog-section .blog-item.s2 .blog-content {
        padding: 10px;
        margin: 0 5px;
        margin-top: -110px;
        width: 96%;
    }
}

.wpo-blog-section .blog-item.s2 .blog-content h2 {
    margin-bottom: 0;
    margin-top: 0;
}

.wpo-blog-section .blog-item.s2 .blog-content h2 a {
    font-weight: 400;
    font-size: 26px;
    line-height: 60px;
}

@media (max-width: 575px) {
    .wpo-blog-section .blog-item.s2 .blog-content h2 a {
        font-size: 25px;
        line-height: 55px;
    }
}

@media (max-width: 399px) {
    .wpo-blog-section .blog-item.s2 .blog-content h2 a {
        font-size: 18px;
        line-height: 30px;
    }
}

@media (max-width: 399px) {
    .wpo-blog-section .blog-item.s2 .blog-content p {
        font-size: 16px;
        line-height: 25px;
        margin-bottom: 10px;
    }
}

@media (min-width: 992px) {
    .wpo-blog-section .blog-item.s2 .blog-content .theme-btn-s2 {
        display: none;
    }
}

/*======================================
 5. Home-style-2 
 =======================================*/
/* 5.1 wpo-about-section-s2 */
.wpo-about-section-s2 {
    position: relative;
    z-index: 1;
}

.wpo-about-section-s2::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    content: "";
    background: #F3F6F6;
    z-index: -1;
}

@media (max-width: 1199px) {
    .wpo-about-section-s2::before {
        display: none;
    }
}

@media (max-width: 1199px) {
    .wpo-about-section-s2 .wpo-about-section-wrapper .wpo-about-content {
        margin-top: 0;
    }
}

.wpo-about-section-s2 .wpo-about-section-wrapper .wpo-about-content .wpo-about-check-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.wpo-about-section-s2 .wpo-about-section-wrapper .wpo-about-content .wpo-about-check-wrap .wpo-about-check-item {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    margin-bottom: 40px;
}

@media (max-width: 575px) {
    .wpo-about-section-s2 .wpo-about-section-wrapper .wpo-about-content .wpo-about-check-wrap .wpo-about-check-item {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }
}

.wpo-about-section-s2 .wpo-about-section-wrapper .wpo-about-content .wpo-about-check-wrap .wpo-about-check-item:before {
    background: #779A65;
    color: #fff;
}

.wpo-about-section-s2 .wpo-about-section-wrapper .wpo-about-img {
    padding-right: 0;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.wpo-about-section-s2 .wpo-about-section-wrapper .wpo-about-img .wpo-about-img-left {
    -ms-flex-preferred-size: 45%;
    flex-basis: 45%;
    padding-top: 130px;
}

@media (max-width: 575px) {
    .wpo-about-section-s2 .wpo-about-section-wrapper .wpo-about-img .wpo-about-img-left {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        padding-top: 50px;
    }
}

.wpo-about-section-s2 .wpo-about-section-wrapper .wpo-about-img .about-img-inner {
    -ms-flex-preferred-size: 55%;
    flex-basis: 55%;
    position: relative;
    z-index: 1;
}

@media (max-width: 575px) {
    .wpo-about-section-s2 .wpo-about-section-wrapper .wpo-about-img .about-img-inner {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }
}

.wpo-about-section-s2 .wpo-about-section-wrapper .wpo-about-img .about-img-inner::before {
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 200px;
    height: 200px;
    content: "";
    background: #fff;
    z-index: -1;
    border-radius: 50%;
}

@media (max-width: 1199px) {
    .wpo-about-section-s2 .wpo-about-section-wrapper .wpo-about-img .about-img-inner::before {
        background: #F3F6F6;
    }
}

/* 5.2 wpo-fun-fact-section-s2 */
.wpo-fun-fact-section-s2 {
    padding: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

@media (max-width: 991px) {
    .wpo-fun-fact-section-s2 {
        padding: 50px 0;
    }
}

.wpo-fun-fact-section-s2:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #D9916A;
    opacity: .95;
}

.wpo-fun-fact-section-s2 .grid {
    padding: 40px 0;
}

@media (max-width: 991px) {
    .wpo-fun-fact-section-s2 .grid {
        padding: 0;
    }
}

.wpo-fun-fact-section-s2 .grid+.grid:before {
    content: "";
    left: 0;
    top: -10px;
    width: 1px;
    height: 115%;
    background: #fff;
    -webkit-transform: rotate(25deg);
    transform: rotate(25deg);
}

@media (max-width: 991px) {
    .wpo-fun-fact-section-s2 .grid+.grid:before {
        display: none;
    }
}

/* 5.3 wpo-service-area-s2 */
.wpo-service-area-s2 {
    padding-bottom: 300px;
}

@media (max-width: 991px) {
    .wpo-service-area-s2 {
        padding-bottom: 250px;
    }
}

.wpo-service-area-s2.pb-120 {
    padding-bottom: 100px;
}

@media (max-width: 991px) {
    .wpo-service-area-s2.pb-120 {
        padding-bottom: 80px;
    }
}

@media (max-width: 767px) {
    .wpo-service-area-s2.pb-120 {
        padding-bottom: 70px;
    }
}

.wpo-service-area-s2:before {
    width: 30%;
    height: 100%;
}

@media (max-width: 991px) {
    .wpo-service-area-s2:before {
        display: none;
    }
}

.wpo-service-area-s2 .wpo-service-wrap:before,
.wpo-service-area-s2 .wpo-service-wrap:after {
    display: none;
}

.wpo-service-area-s2 .wpo-service-wrap .wpo-service-item {
    background: #F3F6F6;
    margin-bottom: 30px;
    overflow: hidden;
}

@media (max-width: 991px) {
    .wpo-service-area-s2 .wpo-service-wrap .wpo-service-item {
        padding: 0;
    }
}

.wpo-service-area-s2 .wpo-service-wrap .wpo-service-item .wpo-service-img {
    float: left;
    padding-right: 30px;
    max-width: 260px;
}

@media (max-width: 1399px) {
    .wpo-service-area-s2 .wpo-service-wrap .wpo-service-item .wpo-service-img {
        padding-right: 15px;
    }
}

@media (max-width: 1199px) {
    .wpo-service-area-s2 .wpo-service-wrap .wpo-service-item .wpo-service-img {
        max-width: 200px;
    }
}

@media (max-width: 991px) {
    .wpo-service-area-s2 .wpo-service-wrap .wpo-service-item .wpo-service-img {
        max-width: 250px;
    }
}

@media (max-width: 575px) {
    .wpo-service-area-s2 .wpo-service-wrap .wpo-service-item .wpo-service-img {
        float: none;
        padding-right: 0;
        max-width: 100%;
    }
}

@media (max-width: 1199px) {
    .wpo-service-area-s2 .wpo-service-wrap .wpo-service-item .wpo-service-img img {
        min-height: 260px;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

@media (max-width: 991px) {
    .wpo-service-area-s2 .wpo-service-wrap .wpo-service-item .wpo-service-img img {
        min-height: 100%;
    }
}

.wpo-service-area-s2 .wpo-service-wrap .wpo-service-item .wpo-service-content {
    overflow: hidden;
    padding: 30px;
    padding-left: 0;
    padding-top: 0;
}

@media (max-width: 1399px) {
    .wpo-service-area-s2 .wpo-service-wrap .wpo-service-item .wpo-service-content {
        padding: 15px;
        padding-left: 0;
        padding-top: 0;
    }
}

@media (max-width: 575px) {
    .wpo-service-area-s2 .wpo-service-wrap .wpo-service-item .wpo-service-content {
        padding: 20px;
        padding-top: 0;
    }
}

.wpo-service-area-s2 .wpo-service-wrap .wpo-service-item .wpo-service-content h2 {
    margin-top: 25px;
    margin-bottom: 15px;
}

@media (max-width: 991px) {
    .wpo-service-area-s2 .wpo-service-wrap .wpo-service-item .wpo-service-content h2 {
        margin-top: 30px;
    }
}

@media (max-width: 575px) {
    .wpo-service-area-s2 .wpo-service-wrap .wpo-service-item .wpo-service-content h2 {
        margin-top: 15px;
    }
}

@media (max-width: 1399px) {
    .wpo-service-area-s2 .wpo-service-wrap .wpo-service-item .wpo-service-content p {
        font-size: 14px;
    }
}

.wpo-service-area-s2 .wpo-service-wrap .wpo-service-item .wpo-service-content a {
    background: #E4E8E8;
}

/* 5.4 wpo-video-section-s2 */
.wpo-video-section-s2,
.wpo-video-section-s3 {
    padding: 0 0 100px;
}

.why-choose-wrap,
.why-choose-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    max-width: 1130px;
    background: #D9916A;
    margin: 0 auto;
    padding: 60px 80px 20px;
    padding-right: 60px;
    overflow: hidden;
    z-index: 1;
    margin-top: -210px;
}

@media (max-width: 1199px) {

    .why-choose-wrap,
    .why-choose-wrap {
        padding: 30px 30px 0px;
    }
}

@media (max-width: 991px) {

    .why-choose-wrap,
    .why-choose-wrap {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 30px 20px 0px;
    }
}

.why-choose-wrap .v-shape,
.why-choose-wrap .v-shape {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: -1;
}

.why-choose-wrap .v-shape img,
.why-choose-wrap .v-shape img {
    width: 100%;
}

.why-choose-wrap .why-choose-left,
.why-choose-wrap .why-choose-left {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    padding-right: 50px;
    position: relative;
}

@media (max-width: 991px) {

    .why-choose-wrap .why-choose-left,
    .why-choose-wrap .why-choose-left {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        padding-right: 0;
    }
}

.why-choose-wrap .why-choose-left h2,
.why-choose-wrap .why-choose-left h2 {
    font-weight: 700;
    font-size: 45px;
    line-height: 55px;
    color: #fff;
    margin-bottom: 10px;
    margin-top: 0;
}

@media (max-width: 1199px) {

    .why-choose-wrap .why-choose-left h2,
    .why-choose-wrap .why-choose-left h2 {
        font-size: 40px;
        line-height: 55px;
    }
}

@media (max-width: 991px) {

    .why-choose-wrap .why-choose-left h2,
    .why-choose-wrap .why-choose-left h2 {
        font-size: 30px;
        line-height: 45px;
    }
}

@media (max-width: 575px) {

    .why-choose-wrap .why-choose-left h2,
    .why-choose-wrap .why-choose-left h2 {
        font-size: 25px;
        line-height: 35px;
    }
}

.why-choose-wrap .why-choose-left p,
.why-choose-wrap .why-choose-left p {
    color: #fff;
}

.why-choose-wrap .why-choose-right,
.why-choose-wrap .why-choose-right {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
}

@media (max-width: 991px) {

    .why-choose-wrap .why-choose-right,
    .why-choose-wrap .why-choose-right {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        margin-top: 10px;
    }
}

.why-choose-wrap .wpo-choose-check-wrap,
.why-choose-wrap .wpo-choose-check-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media (max-width: 575px) {

    .why-choose-wrap .wpo-choose-check-wrap,
    .why-choose-wrap .wpo-choose-check-wrap {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.why-choose-wrap .wpo-choose-check-wrap .wpo-choose-check-item,
.why-choose-wrap .wpo-choose-check-wrap .wpo-choose-check-item {
    padding-left: 60px;
    position: relative;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    margin-bottom: 40px;
    padding-right: 20px;
}

@media (max-width: 575px) {

    .why-choose-wrap .wpo-choose-check-wrap .wpo-choose-check-item,
    .why-choose-wrap .wpo-choose-check-wrap .wpo-choose-check-item {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        margin-bottom: 20px;
        padding-right: 0;
        max-width: 350px;
    }
}

.why-choose-wrap .wpo-choose-check-wrap .wpo-choose-check-item:before,
.why-choose-wrap .wpo-choose-check-wrap .wpo-choose-check-item:before {
    position: absolute;
    left: 0;
    top: 5px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: rgba(255, 255, 255, 0.4);
    content: "\e64c";
    font-family: 'themify';
    text-align: center;
    color: #fff;
}

.why-choose-wrap .wpo-choose-check-wrap .wpo-choose-check-item p,
.why-choose-wrap .wpo-choose-check-wrap .wpo-choose-check-item p {
    font-weight: 500;
    font-size: 14px;
    line-height: 26px;
    color: #fff;
    margin-bottom: 0;
}

@media (max-width: 1199px) {

    .wpo-choose-check-wrap .wpo-choose-check-item p,
    .why-choose-wrap .wpo-choose-check-wrap .wpo-choose-check-item p {
        font-size: 13px;
    }
}

.wpo-video-section-s2 .wpo-video-item .wpo-video-icon,
.wpo-video-section-s3 .wpo-video-item .wpo-video-icon {
    height: unset;
    padding-top: 0;
    margin-top: 100px;
}

.wpo-video-section-s2 .wpo-video-item .wpo-video-icon .video-btn,
.wpo-video-section-s3 .wpo-video-item .wpo-video-icon .video-btn {
    background: #779A65;
}

.wpo-video-section-s2 .wpo-video-item .wpo-viedo-title,
.wpo-video-section-s3 .wpo-video-item .wpo-viedo-title {
    text-align: center;
    max-width: 595px;
    margin: 0 auto;
    margin-top: 50px;
}

.wpo-video-section-s2 .wpo-video-item .wpo-viedo-title h2,
.wpo-video-section-s3 .wpo-video-item .wpo-viedo-title h2 {
    font-weight: 700;
    font-size: 33px;
    line-height: 45px;
    color: #fff;
}

@media (max-width: 991px) {

    .wpo-video-section-s2 .wpo-video-item .wpo-viedo-title h2,
    .wpo-video-section-s3 .wpo-video-item .wpo-viedo-title h2 {
        font-size: 20px;
        line-height: 32px;
    }
}


/*5.5 arkitek-team-section */
.arkitek-team-section {
    padding-bottom: 0;
    position: relative;
}


@media (max-width: 767px) {
    .arkitek-team-section {
        position: unset;
        transform: none;
    }
}


@media (max-width: 991px) {
    .arkitek-team-section .wpo-section-title {
        text-align: center;
    }
}



.arkitek-team-section .team-slider {
    margin-top: 35px;
}

.arkitek-team-section .item {
    position: relative;
}

.arkitek-team-section .item .image img {
    width: 100%;
}

.arkitek-team-section .item .text {
    background: #fff;
    text-align: center;
    padding: 16px 0;
    padding-bottom: 18px;
    position: absolute;
    width: 280px;
    height: 100px;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.arkitek-team-section .item .text h2 {
    margin-bottom: 0;
    font-weight: 400;
    margin-top: 0;
    font-family: "titillium";
    font-weight: 400;
    font-size: 25px;
    line-height: 40px;
    text-align: center;
    color: #262626;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    display: block;
}


.arkitek-team-section .item .text h2:hover {
    color: #D9916A;
}

.arkitek-team-section .item .text span {
    font-weight: 400;
    font-size: 15px;
    line-height: 30px;
    text-align: center;
    text-transform: uppercase;
    display: inline-block;
    color: #779A65;
}

.arkitek-team-section .item .text .icon {
    list-style: none;
    transition: all 0.3s ease-in-out;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    padding-left: 0;
}

.arkitek-team-section .item .text .icon li {
    display: inline-block;
    border: 1px solid #AFBDA8;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-right: 15px;
    cursor: pointer;
}

.arkitek-team-section .item .text .icon li:last-child {
    margin-right: 0;
}

.arkitek-team-section .item .text .icon li a {
    color: #6F6F6F;
    transition: all 0.3s ease-in-out;
}

.arkitek-team-section .item .text .icon li a i::before {
    font-size: 18px;
    line-height: 38px;
}

.arkitek-team-section .item .text .icon li:hover {
    border: 1px solid #D9916A;
}

.arkitek-team-section .item .text .icon li:hover a {
    color: #D9916A;
}

.arkitek-team-section .item:hover .text {
    height: 160px;
}

.arkitek-team-section .item:hover .text .icon {
    top: 60%;
}

.arkitek-team-section .owl-nav.disabled {
    text-align: center;
    margin-top: 30px;
}

.arkitek-team-section .owl-dots {
    display: none;
}

@media (max-width: 767px) {
    .arkitek-team-section .owl-dots {
        display: block;
    }
}

.arkitek-team-section .owl-dots {
    text-align: center;
    margin-top: 40px;
}

.arkitek-team-section .owl-dot {
    width: 10px;
    height: 12px;
    background: #779A65;
    border-radius: 50%;
    margin: 0 5px;
    border: 0;
}

.arkitek-team-section .owl-dot.active {
    background: #D9916A;
}

.arkitek-team-section .owl-nav [class*=owl-] {
    background: transparent;
    width: 50px;
    height: 50px;
    line-height: 52px;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    color: #D9916A;
    transition: all 0.3s;
    border: 1px solid #D9916A;
    margin-right: 10px;
}

@media (max-width: 767px) {
    .arkitek-team-section .owl-nav [class*=owl-] {
        display: none;
    }
}

.arkitek-team-section .owl-nav [class*=owl-]:hover {
    background: #D9916A;
    border: 1px solid transparent;
    color: #fff;
}

.arkitek-team-section .owl-nav [class*=owl-] .fi::before {
    font-size: 20px;
}

/*=====================================================
7. wpo-service-single
======================================================*/
.wpo-service-single-area .wpo-service-single-wrap .wpo-service-single-title h3 {
    font-weight: 700;
    font-size: 36px;
    line-height: 55px;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .wpo-service-single-area .wpo-service-single-wrap .wpo-service-single-title h3 {
        font-size: 25px;
        line-height: 35px;
        margin-bottom: 15px;
    }
}

.wpo-service-single-area .wpo-service-single-wrap .wpo-service-single-item {
    margin-bottom: 40px;
}

.wpo-service-single-area .wpo-service-single-wrap .wpo-service-single-item .wpo-service-single-main-img {
    margin-bottom: 30px;
}

.wpo-service-single-item .why-choose-wrap {
    position: relative;
    max-width: 1130px;
    background: #779A65;
    margin: 0 auto;
    padding: 60px 80px 20px;
    padding-right: 60px;
    overflow: hidden;
    z-index: 1;
    display: block;
}

@media (max-width: 1199px) {
    .wpo-service-single-item .why-choose-wrap {
        padding: 30px 30px 0px;
    }
}

@media (max-width: 991px) {
    .wpo-service-single-item .why-choose-wrap {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 30px 20px 0px;
    }
}

.wpo-service-single-item .why-choose-wrap .v-shape {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: -1;
}

.wpo-service-single-item .why-choose-wrap .v-shape img {
    width: 100%;
}

.wpo-service-single-item .why-choose-wrap .why-choose-left {
    position: relative;
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .wpo-service-single-item .why-choose-wrap .why-choose-left {
        padding-right: 0;
    }
}

.wpo-service-single-item .why-choose-wrap .why-choose-left h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 60px;
    color: #fff;
    margin-bottom: 10px;
}

@media (max-width: 1199px) {
    .wpo-service-single-item .why-choose-wrap .why-choose-left h2 {
        font-size: 40px;
        line-height: 55px;
    }
}

@media (max-width: 991px) {
    .wpo-service-single-item .why-choose-wrap .why-choose-left h2 {
        font-size: 30px;
        line-height: 45px;
    }
}

@media (max-width: 575px) {
    .wpo-service-single-item .why-choose-wrap .why-choose-left h2 {
        font-size: 25px;
        line-height: 35px;
    }
}

.wpo-service-single-item .why-choose-wrap .why-choose-left p {
    color: #fff;
}

@media (max-width: 991px) {
    .wpo-service-single-item .why-choose-wrap .why-choose-right {
        margin-top: 10px;
    }
}

.wpo-service-single-item .why-choose-wrap .wpo-choose-check-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media (max-width: 575px) {
    .wpo-service-single-item .why-choose-wrap .wpo-choose-check-wrap {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.wpo-service-single-item .why-choose-wrap .wpo-choose-check-wrap .wpo-choose-check-item {
    padding-left: 60px;
    position: relative;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    margin-bottom: 40px;
    padding-right: 20px;
}

@media (max-width: 575px) {
    .wpo-service-single-item .why-choose-wrap .wpo-choose-check-wrap .wpo-choose-check-item {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        margin-bottom: 20px;
        padding-right: 0;
        max-width: 350px;
    }
}

.wpo-service-single-item .why-choose-wrap .wpo-choose-check-wrap .wpo-choose-check-item:before {
    position: absolute;
    left: 0;
    top: 5px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #D9916A;
    content: "\e64c";
    font-family: 'themify';
    text-align: center;
    color: #fff;
}

.wpo-service-single-item .why-choose-wrap .wpo-choose-check-wrap .wpo-choose-check-item p {
    font-weight: 500;
    font-size: 14px;
    line-height: 26px;
    color: #fff;
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .wpo-service-single-item .why-choose-wrap .wpo-choose-check-wrap .wpo-choose-check-item p {
        font-size: 13px;
    }
}

.wpo-service-single-area .wpo-service-single-wrap .wpo-service-single-item .service-video-wrap {
    margin-top: 40px;
    position: relative;
}

@media (max-width: 767px) {
    .wpo-service-single-area .wpo-service-single-wrap .wpo-service-single-item .service-video-wrap img {
        min-height: 200px;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

.service-video-wrap .video-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 63px;
    height: 63px;
    line-height: 63px;
    background: #D9916A;
    border-radius: 50%;
    z-index: 1;
    display: block;
    text-align: center;
    color: #fff;
}

.service-video-wrap .video-btn:after {
    position: absolute;
    left: -12px;
    top: -12px;
    width: 140%;
    height: 140%;
    background: rgba(255, 112, 99, 0.5);
    content: "";
    -webkit-animation: spineer 2s infinite;
    animation: spineer 2s infinite;
    border-radius: 50%;
    z-index: -1;
}

@-webkit-keyframes spineer {
    from {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 112, 99, 0.99);
        box-shadow: 0 0 0 0 rgba(255, 112, 99, 0.99);
    }

    to {
        -webkit-box-shadow: 0 0 0 45px rgba(255, 112, 99, 0.01);
        box-shadow: 0 0 0 45px rgba(255, 112, 99, 0.01);
    }
}

@keyframes spineer {
    from {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 112, 99, 0.99);
        box-shadow: 0 0 0 0 rgba(255, 112, 99, 0.99);
    }

    to {
        -webkit-box-shadow: 0 0 0 45px rgba(255, 112, 99, 0.01);
        box-shadow: 0 0 0 45px rgba(255, 112, 99, 0.01);
    }
}

/* 3.5 arkitek-project-section */
.arkitek-project-section .container-fluid,
.arkitek-project-section-s2 .container-fluid {
    padding: 0;
}

.arkitek-project-section .row,
.arkitek-project-section-s2 .row {
    margin: 0 110px;
}

@media (max-width: 1760px) {

    .arkitek-project-section .row,
    .arkitek-project-section-s2 .row {
        margin: 0 50px;
    }
}

@media (max-width: 1499px) {

    .arkitek-project-section .row,
    .arkitek-project-section-s2 .row {
        margin: 0 20px;
    }
}

@media (max-width: 1199px) {

    .arkitek-project-section .row,
    .arkitek-project-section-s2 .row {
        margin: 0;
    }
}

.arkitek-project-section .wpo-section-title,
.arkitek-project-section-s2 .wpo-section-title {
    text-align: left;
}

@media (max-width: 991px) {

    .arkitek-project-section .wpo-section-title,
    .arkitek-project-section-s2 .wpo-section-title {
        text-align: center;
    }
}

@media (max-width: 1399px) {

    .arkitek-project-section .wpo-section-title h2,
    .arkitek-project-section-s2 .wpo-section-title h2 {
        font-size: 48px;
        line-height: 70px;
    }
}

@media (max-width: 1199px) {

    .arkitek-project-section .wpo-section-title h2,
    .arkitek-project-section-s2 .wpo-section-title h2 {
        font-size: 40px;
        line-height: 55px;
    }
}

@media (max-width: 767px) {

    .arkitek-project-section .wpo-section-title h2,
    .arkitek-project-section-s2 .wpo-section-title h2 {
        font-size: 32px;
        line-height: 40px;
    }
}


.arkitek-project-section .project-btn,
.arkitek-project-section-s2 .project-btn {
    text-align: right;
}

@media (max-width: 991px) {

    .arkitek-project-section .project-btn,
    .arkitek-project-section-s2 .project-btn {
        text-align: center;
    }
}

.arkitek-project-section .project-wrap,
.arkitek-project-section-s2 .project-wrap {
    margin-top: 35px;
}

@media (max-width: 991px) {

    .arkitek-project-section .project-wrap,
    .arkitek-project-section-s2 .project-wrap {
        margin-top: 50px;
    }
}

.arkitek-project-section .project-item,
.arkitek-project-section-s2 .project-item {
    transition: all 0.3s;
    margin-top: 0px;
}

.arkitek-project-section .project-item .image img,
.arkitek-project-section-s2 .project-item .image img {
    width: 100%;
}

.arkitek-project-section .project-item .text,
.arkitek-project-section-s2 .project-item .text {
    margin-top: 30px;
}

@media (max-width: 1199px) {

    .arkitek-project-section .project-item .text,
    .arkitek-project-section-s2 .project-item .text {
        margin-top: 0;
    }
}

@media (max-width: 767px) {

    .arkitek-project-section .project-item .text,
    .arkitek-project-section-s2 .project-item .text {
        margin-top: 10px;
        text-align: center;
    }
}

.arkitek-project-section .project-item .text h2 a,
.arkitek-project-section-s2 .project-item .text h2 a {
    font-family: "titillium";
    font-weight: 400;
    font-size: 30px;
    color: #262626;
    display: inline-block;
    padding-left: 80px;
    transition: all 0.3s ease-in-out;
    position: relative;
}

@media (max-width: 1760px) {

    .arkitek-project-section .project-item .text h2 a,
    .arkitek-project-section-s2 .project-item .text h2 a {
        padding-left: 70px;
        font-size: 25px;
    }
}

@media (max-width: 1399px) {

    .arkitek-project-section .project-item .text h2 a,
    .arkitek-project-section-s2 .project-item .text h2 a {
        padding-left: 50px;
        font-size: 22px;
    }
}

@media (max-width: 1199px) {

    .arkitek-project-section .project-item .text h2 a,
    .arkitek-project-section-s2 .project-item .text h2 a {
        padding-left: 30px;
        font-size: 20px;
    }
}

@media (max-width: 991px) {

    .arkitek-project-section .project-item .text h2 a,
    .arkitek-project-section-s2 .project-item .text h2 a {
        padding-left: 0;
        font-size: 20px;
    }
}

.arkitek-project-section .project-item .text h2 a:hover,
.arkitek-project-section-s2 .project-item .text h2 a:hover {
    color: #D9916A;
}

.arkitek-project-section .project-item .text h2 a::before,
.arkitek-project-section-s2 .project-item .text h2 a::before {
    position: absolute;
    left: 10px;
    top: 50%;
    content: "";
    height: 1px;
    width: 50px;
    background: #779A65;
}

@media (max-width: 1399px) {

    .arkitek-project-section .project-item .text h2 a::before,
    .arkitek-project-section-s2 .project-item .text h2 a::before {
        width: 40px;
        left: 5px;
    }
}

@media (max-width: 1199px) {

    .arkitek-project-section .project-item .text h2 a::before,
    .arkitek-project-section-s2 .project-item .text h2 a::before {
        width: 20px;
        left: 5px;
    }
}

@media (max-width: 991px) {

    .arkitek-project-section .project-item .text h2 a::before,
    .arkitek-project-section-s2 .project-item .text h2 a::before {
        display: none;
    }
}

.arkitek-project-section .project-slider .owl-item.cloned,
.arkitek-project-section-s2 .project-slider .owl-item.cloned {
    transition: all 0.3s;
}

.arkitek-project-section .project-slider .owl-item.active.center,
.arkitek-project-section-s2 .project-slider .owl-item.active.center {
    margin-top: 100px;
}

@media (max-width: 1399px) {

    .arkitek-project-section .project-slider .owl-item.active.center,
    .arkitek-project-section-s2 .project-slider .owl-item.active.center {
        margin-top: 60px;
    }
}

@media (max-width: 1199px) {

    .arkitek-project-section .project-slider .owl-item.active.center,
    .arkitek-project-section-s2 .project-slider .owl-item.active.center {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {

    .arkitek-project-section .project-slider .owl-item.active.center,
    .arkitek-project-section-s2 .project-slider .owl-item.active.center {
        margin-top: 20px;
    }
}

@media (max-width: 574px) {

    .arkitek-project-section .project-slider .owl-item.active.center,
    .arkitek-project-section-s2 .project-slider .owl-item.active.center {
        margin-top: 0;
    }
}

.arkitek-project-section .project-slider .owl-nav.disabled,
.arkitek-project-section-s2 .project-slider .owl-nav.disabled {
    display: none;
}

.arkitek-project-section .project-slider .owl-dots,
.arkitek-project-section-s2 .project-slider .owl-dots {
    text-align: center;
    margin-top: 30px;
}

@media (min-width: 992px) {

    .arkitek-project-section .project-slider .owl-dots,
    .arkitek-project-section-s2 .project-slider .owl-dots {
        display: none;
    }
}

.arkitek-project-section .project-slider .owl-dot,
.arkitek-project-section-s2 .project-slider .owl-dot {
    width: 10px;
    height: 12px;
    background: #779A65;
    border-radius: 50%;
    margin: 0 5px;
    border: 0;
}

.arkitek-project-section .project-slider .owl-dot.active,
.arkitek-project-section-s2 .project-slider .owl-dot.active {
    background: #D9916A;
}

/*5.4 arkitek-project-section-s2 */
.arkitek-project-section-s2 .wpo-section-title {
    text-align: center;
}


.arkitek-project-section-s2 .project-wrap {
    margin-top: 35px;
}

.arkitek-project-section-s2 .project-slider .owl-item.active.center {
    margin-top: 0;
}

@media (max-width: 1399px) {
    .arkitek-project-section-s2 .project-slider .owl-item.active.center {
        margin-top: 0;
    }
}

@media (max-width: 1199px) {
    .arkitek-project-section-s2 .project-slider .owl-item.active.center {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .arkitek-project-section-s2 .project-slider .owl-item.active.center {
        margin-top: 0;
    }
}

@media (max-width: 574px) {
    .arkitek-project-section-s2 .project-slider .owl-item.active.center {
        margin-top: 0;
    }
}

/*=====================================================
8. wpo-project-single
======================================================*/
.wpo-project-single-area .wpo-project-single-wrap .wpo-project-single-title h3 {
    font-weight: 700;
    font-size: 36px;
    line-height: 55px;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .wpo-project-single-area .wpo-project-single-wrap .wpo-project-single-title h3 {
        font-size: 25px;
        line-height: 35px;
        margin-bottom: 15px;
    }
}

.wpo-project-single-area .wpo-project-single-wrap .wpo-project-single-item {
    margin-bottom: 40px;
}

.wpo-project-single-area .wpo-project-single-wrap .wpo-project-single-item .wpo-project-single-main-img {
    margin-bottom: 30px;
}

.wpo-project-single-area .wpo-project-single-wrap .wpo-project-single-item .sortable-gallery {
    margin-bottom: 40px;
}

.wpo-project-single-item .sortable-gallery .img-holder {
    position: relative;
}

.wpo-project-single-item .sortable-gallery .img-holder img {
    width: 100%;
}

.wpo-project-single-item .sortable-gallery .img-holder .hover-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 112, 99, 0.8);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all .3s;
    transition: all .3s;
}

.wpo-project-single-item .sortable-gallery .img-holder .hover-content i {
    color: #fff;
    font-size: 30px;
}

.wpo-project-single-item .sortable-gallery .img-holder:hover .hover-content {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.single-project .elementor-lightbox {
    display: none !important;
}

.body.admin-bar .dialog-lightbox-widget {
    display: none !important;
}

.wpo-project-single-area .wpo-project-single-wrap .wpo-project-single-item .project-video-wrap {
    margin-top: 40px;
    position: relative;
}

@media (max-width: 767px) {
    .wpo-project-single-area .wpo-project-single-wrap .wpo-project-single-item .project-video-wrap img {
        min-height: 200px;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

.wpo-project-single-area .wpo-project-single-wrap .wpo-project-single-item .project-video-wrap .video-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 63px;
    height: 63px;
    line-height: 63px;
    background: #D9916A;
    border-radius: 50%;
    z-index: 1;
    display: block;
    text-align: center;
    color: #fff;
}

.wpo-project-single-area .wpo-project-single-wrap .wpo-project-single-item .project-video-wrap .video-btn:after {
    position: absolute;
    left: -12px;
    top: -12px;
    width: 140%;
    height: 140%;
    background: rgba(255, 112, 99, 0.5);
    content: "";
    -webkit-animation: spineer 2s infinite;
    animation: spineer 2s infinite;
    border-radius: 50%;
    z-index: -1;
}

@-webkit-keyframes spineer {
    from {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 112, 99, 0.99);
        box-shadow: 0 0 0 0 rgba(255, 112, 99, 0.99);
    }

    to {
        -webkit-box-shadow: 0 0 0 45px rgba(255, 112, 99, 0.01);
        box-shadow: 0 0 0 45px rgba(255, 112, 99, 0.01);
    }
}

@keyframes spineer {
    from {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 112, 99, 0.99);
        box-shadow: 0 0 0 0 rgba(255, 112, 99, 0.99);
    }

    to {
        -webkit-box-shadow: 0 0 0 45px rgba(255, 112, 99, 0.01);
        box-shadow: 0 0 0 45px rgba(255, 112, 99, 0.01);
    }
}

.project-info-wrapper .project-info {
    background: #779A65;
    padding: 50px;
}

@media (max-width: 1199px) {
    .project-info-wrapper .project-info {
        padding: 25px 20px;
    }
}

.project-info-wrapper .project-info h3 {
    color: #fff;
    margin-bottom: 20px;
    margin-top: 0;
}

.project-info-wrapper .project-info ul {
    list-style: none;
    padding-left: 0;
}

.project-info-wrapper .project-info ul li {
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 37px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 10px;
    position: relative;
}

.project-info-wrapper .project-info ul li:before {
    position: absolute;
    left: 35%;
    top: 0;
    content: "::";
}

.project-info-wrapper .project-info ul li:last-child {
    padding-bottom: 0;
}

.project-info-wrapper .project-info ul li span {
    display: block;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    text-align: left;
    font-weight: 400;
    position: relative;
}

/*===========================
9. wpo-cart-page-style
===========================*/
.cart-area .cart-wrapper {
    -webkit-box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
    box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
}

@media (max-width: 991px) {
    .cart-area .cart-wrapper table {
        width: 1022px;
    }
}

@media (max-width: 991px) {
    .cart-area .cart-wrapper form {
        overflow: scroll;
        overflow-y: hidden;
    }
}

.cart-area .cart-wrap td,
.cart-area .cart-wrap th {
    width: 10%;
    border-bottom: 1px solid #f0f0f094;
    text-align: center;
    font-weight: 400;
    color: #414141;
}

.cart-area .cart-wrap td ul,
.cart-area .cart-wrap th ul {
    list-style: none;
}

.cart-area .cart-wrap th {
    border-bottom: 1px solid #f0f0f094;
    padding: 40px 0;
}

.cart-area .cart-wrap thead {
    background: #fff;
    color: #505050;
    padding: 40px;
}

.cart-area .cart-area form {
    margin: auto;
    text-align: center;
    background: #fff;
}

.cart-area .cart-wrap .product {
    width: 15%;
}

.cart-area .cart-wrap .product ul {
    text-align: left;
    padding-left: 30px;
    list-style: none;
}

.cart-area .cart-wrap .product ul li {
    padding-bottom: 5px;
}

.cart-area .cart-wrap .product a {
    font-size: 16px;
    color: #a5a4a4;
}

.cart-area .cart-wrap .product-2 {
    text-align: left;
    padding-left: 55px;
}

.cart-area .cart-wrap .product a:hover {
    color: #D9916A;
}

.cart-area .cart-wrap th {
    height: 80px;
    font-weight: 700;
}

.cart-area .cart-wrap td {
    padding: 40px 25px;
}

.cart-area .cart-wrap td.action ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    list-style: none;
}

.cart-area .cart-wrap td.action ul .w-btn-view a {
    line-height: 45px;
}

.cart-area .cart-wrap td span {
    display: block;
    width: 100px;
    height: 38px;
    line-height: 34px;
    color: #ee9902;
    font-size: 14px;
    border: 1.5px solid #ee9902;
    border-radius: 4px;
}

.cart-area .cart-wrap td.Del span {
    color: #4ABA4E;
    border: 1.5px solid #4ABA4E;
}

.cart-area .cart-wrap td.can span {
    color: #D85656;
    border: 1.5px solid #D85656;
}

.cart-area .cart-wrap td.pro span {
    color: #691A5F;
    border: 1.5px solid #691A5F;
}

.cart-area .cart-wrap .name {
    width: 15%;
}

.cart-area .cart-wrap .action a {
    display: block;
    width: 40px;
    height: 38px;
    line-height: 45px;
    background: #414141;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
}

.cart-area .cart-wrap .action a .fi::before {
    font-size: 20px;
}

.cart-area .cart-wrap .action a:hover {
    background: #D9916A;
}

.cart-area .cart-wrap .action li.c-btn {
    margin-right: 10px;
}

.cart-area .cart-wrap .action li.c-btn a {
    background-color: #D9916A;
}

.cart-area .order-wrap {
    padding: 0;
}

.cart-area .cart-wrap tr:nth-child(even) {
    background: #FCFCFC;
}

.cart-area .cart-wrap .quantity {
    position: relative;
    max-width: 110px;
    margin: 0 auto;
}

.cart-area .quantity input {
    width: 105px;
    padding: 0px 35px;
    text-align: center;
    height: 36px;
    position: relative;
    background: #f2f2f5;
    border: none;
    border-radius: 40px;
}

.cart-area .quantity .qtybutton {
    position: absolute;
    top: 0;
    left: 0px;
    height: 30px;
    width: 30px;
    text-align: center;
    line-height: 28px;
    font-size: 18px;
    cursor: pointer;
    color: #333;
    background: #fafaff;
    border-radius: 30px;
}

.cart-area .cart-wrap .quantity .qtybutton {
    top: 50%;
    left: 5px;
    transform: translateY(-51%);
    -webkit-transform: translateY(-51%);
    -moz-transform: translateY(-51%);
}

.cart-area .cart-wrap .quantity .qtybutton.dec {
    border-left: none;
}

.cart-area .cart-wrap .quantity .qtybutton.inc {
    right: 5px;
    left: auto;
    border-right: none;
}

.cart-area .submit-btn-area {
    padding: 40px;
}

.cart-area .submit-btn-area ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    list-style: none;
}

@media (max-width: 450px) {
    .cart-area .submit-btn-area ul {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.cart-area .submit-btn-area ul li:last-child {
    margin-left: 20px;
}

@media (max-width: 450px) {
    .cart-area .submit-btn-area ul li:last-child {
        margin-left: 3px;
        margin-top: 5px;
    }
}

.cart-area .submit-btn-area button {
    padding: 15px 40px;
    border: none;
    background: #333;
    color: #fff;
    -webkit-transition: all .3s;
    transition: all .3s;
    outline: none;
    border-radius: 40px;
}

.cart-area .submit-btn-area button:hover {
    background: #D9916A;
}

.cart-area .submit-btn-area .theme-btn,
.cart-area .submit-btn-area .view-cart-btn {
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 500;
    line-height: 27px;
}

.cart-area .cart-product-list ul {
    border-top: 1px solid #f0f0f094;
    padding-top: 20px;
    list-style: none;
}

.cart-area .cart-product-list ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0px 30px;
    font-weight: 300;
    font-size: 18px;
    line-height: 21px;
    color: #414141;
    padding-bottom: 30px;
}

.cart-area .cart-product-list ul li.cart-b {
    border-top: 1px solid #f0f0f094;
    border-bottom: 1px solid #f0f0f094;
    color: #D9916A;
    padding-top: 30px;
    font-weight: 600;
}

/*===============================
10. wpo-checkout-page-style
================================*/
.wpo-checkout-area .checkout-wrap {
    background: #fff;
}

.wpo-checkout-area .checkout-wrap ul {
    list-style: none;
}

.wpo-checkout-area #open2 {
    display: block;
}

.wpo-checkout-area #open3 {
    display: none;
}

.wpo-checkout-area #open4 {
    display: none;
}

.wpo-checkout-area .create-account p {
    margin-bottom: 15px;
}

.wpo-checkout-area .create-account {
    display: none;
    padding: 20px;
}

.wpo-checkout-area .create-account span {
    margin-bottom: 20px;
    display: block;
}

.wpo-checkout-area .input-wrap {
    position: relative;
}

.wpo-checkout-area .create-account input {
    width: 100%;
    height: 50px;
    border: 1px solid #ebebeb;
    margin-bottom: 25px;
    padding-left: 20px;
    border-radius: 40px;
}

.wpo-checkout-area .create-account input:focus {
    outline: none;
}

.wpo-checkout-area .create-account button {
    position: absolute;
    right: 0;
    top: 0;
    height: 50px;
    background: #333;
    color: #fff;
    width: 108px;
    border: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: pointer;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
}

.wpo-checkout-area .create-account button:hover {
    background: #D9916A;
}

.wpo-checkout-area .coupon {
    position: relative;
    cursor: pointer;
    cursor: pointer;
    background: #fff7f6;
}

.wpo-checkout-area .coupon:before {
    position: absolute;
    right: 30px;
    top: 21px;
    content: "\e64b";
    font-family: 'themify';
}

.wpo-checkout-area .coupon span {
    position: absolute;
    right: 30px;
    top: 30px;
}

.wpo-checkout-area .coupon label {
    margin-bottom: 0;
    font-weight: 500;
    font-size: 18px;
    color: #0F0F0F;
    cursor: pointer;
    padding: 20px 20px;
    border-left: 4px solid #D9916A;
    -webkit-transition: all .3s;
    transition: all .3s;
    width: 100%;
}

@media (max-width: 767px) {
    .wpo-checkout-area .coupon label {
        font-size: 15px;
    }
}

.wpo-checkout-area .caupon-wrap {
    background: #fff;
    margin-bottom: 20px;
    -webkit-transition: all .3s;
    transition: all .3s;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.1);
    box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.1);
}

.wpo-checkout-area .active-border {
    -webkit-transition: all .3s;
    transition: all .3s;
}

.wpo-checkout-area .s1.active-border .coupon-active label,
.wpo-checkout-area .s3.coupon-2 .coupon-3 label {
    border-left: none;
    border-top: 4px solid #D9916A;
    border-bottom: 1px solid #ffe5dc;
}

.wpo-checkout-area .s2 .coupon-3 {
    border-top: 4px solid #D9916A;
}

.wpo-checkout-area .s2.coupon-2 .coupon-3 {
    border-top: 0;
}

.wpo-checkout-area .s2 .coupon-3 label {
    border-left: 0;
    border-bottom: 1px solid #ffe5dc;
}

.wpo-checkout-area .s2.coupon-2 .coupon-3 label {
    border-left: 4px solid #D9916A;
    border-bottom: 0;
}

.wpo-checkout-area .billing-adress .form-style input,
.wpo-checkout-area .billing-adress .form-style select {
    width: 100%;
    margin-bottom: 15px;
    padding-left: 10px;
    height: 40px;
    background: #fff;
    border-radius: 2px;
    border: none;
    border: 1px solid #ebebeb;
    border-radius: 40px;
}

.wpo-checkout-area .billing-adress .form-style input:focus,
.wpo-checkout-area .billing-adress .form-style select:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.wpo-checkout-area .billing-adress .form-style select {
    -webkit-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    -moz-appearance: none;
    background: transparent url(../images/select-icon2.png) no-repeat calc(100% - 15px) center;
    position: relative;
}

.wpo-checkout-area .billing-adress {
    padding: 30px;
}

.wpo-checkout-area .note-area textarea {
    width: 100%;
    height: 150px;
    padding-top: 10px;
    margin-bottom: 0;
    padding-left: 10px;
    border: 1px solid #ebebeb;
    border-radius: 20px;
}

.wpo-checkout-area .note-area textarea:focus {
    outline: none;
}

.wpo-checkout-area .biling-item-2 {
    margin-top: 20px;
}

.wpo-checkout-area .biling-item-2 label.fontsize {
    margin-bottom: 20px;
}

.wpo-checkout-area .biling-item-2 .billing-adress {
    padding: 0;
}

.wpo-checkout-area .payment-name ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

@media (max-width: 575px) {
    .wpo-checkout-area .payment-name ul {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.wpo-checkout-area .payment-area form {
    overflow: unset !important;
}

.wpo-checkout-area .payment-name ul li {
    width: 100px;
    height: 60px;
    text-align: center;
    line-height: 60px;
}

.wpo-checkout-area .payment-name ul li input {
    margin-right: 0;
}

.wpo-checkout-area .payment-name ul li {
    margin-right: 15px;
}

@media (max-width: 575px) {
    .wpo-checkout-area .payment-name ul li {
        margin-bottom: 10px;
    }
}

.wpo-checkout-area .payment-area h2 {
    padding-bottom: 40px;
    margin-bottom: 0;
}

.wpo-checkout-area .payment-select {
    padding: 40px 0;
}

.wpo-checkout-area .payment-select ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 575px) {
    .wpo-checkout-area .payment-select ul {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.wpo-checkout-area .payment-select ul li {
    margin-right: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #5B5B5B;
}

.wpo-checkout-area .payment-select label {
    font-size: 18px;
    font-weight: 600;
}

@media (max-width: 575px) {
    .wpo-checkout-area .payment-select label {
        font-size: 14px;
    }
}

.wpo-checkout-area .payment-area h2 {
    font-size: 20px;
    color: #878787;
    font-weight: 700;
}

.wpo-checkout-area .payment-area h2 span {
    font-size: 30px;
    color: #ff493c;
}

.wpo-checkout-area .payment-area {
    width: 100%;
}

.wpo-checkout-area .payment-name ul li input {
    margin-right: 0;
    position: absolute;
    z-index: -1;
}

.wpo-checkout-area .payment-name ul li input:checked~label {
    border: 1px solid #ff493c;
}

.wpo-checkout-area .payment-name label {
    width: 100%;
    border: 1px solid transparent;
}

.wpo-checkout-area .payment-name .visa label {
    border: 1px solid #0057A0;
}

.wpo-checkout-area .payment-name .mas label {
    border: 1px solid #CC0000;
}

.wpo-checkout-area .payment-name .ski label {
    border: 1px solid #691A5F;
}

.wpo-checkout-area .payment-name .pay label {
    border: 1px solid #019CDE;
}

.wpo-checkout-area .payment-option {
    padding: 30px;
}

.wpo-checkout-area .payment-name {
    display: none;
}

.wpo-checkout-area .payment-name.active {
    display: block;
}

.wpo-checkout-area .payment-option.active .payment-name {
    display: none !important;
}

.wpo-checkout-area .payment-area .form-style input,
.wpo-checkout-area .payment-area .form-style select {
    width: 100%;
    margin-bottom: 15px;
    padding-left: 10px;
    height: 40px;
    background: #fff;
    border-radius: 2px;
    border: none;
    border: 1px solid #ebebeb;
    border-radius: 40px;
}

.wpo-checkout-area .payment-area .form-style input:focus,
.wpo-checkout-area .payment-area .form-style select:focus {
    outline: none;
}

.wpo-checkout-area .payment-area .contact-form {
    margin-top: 40px;
}

.wpo-checkout-area .cout-order-area {
    -webkit-box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.1);
    box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.1);
}

.wpo-checkout-area .cout-order-area .oreder-item ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px 30px;
    font-weight: 300;
    font-size: 18px;
    line-height: 21px;
    color: #414141;
}

.wpo-checkout-area .cout-order-area .oreder-item ul li.s-total {
    font-weight: 400;
}

.wpo-checkout-area .cout-order-area .oreder-item ul .o-header {
    color: #0F0F0F;
    font-size: 20px;
    font-weight: 600;
    border-bottom: 1px solid #ebebeb;
}

.wpo-checkout-area .cout-order-area .oreder-item ul .o-middle {
    border-bottom: 1px solid #ebebeb;
}

.wpo-checkout-area .cout-order-area .oreder-item ul .o-bottom {
    border-top: 1px solid #ebebeb;
    color: #D9916A;
    font-weight: 600;
}

.wpo-checkout-area .create-account.active {
    display: block;
}

.wpo-checkout-area .contact-form .form-control {
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
}

.wpo-checkout-area .contact-form input,
.wpo-checkout-area .contact-form select {
    margin-top: 10px;
}

.wpo-checkout-area .submit-btn-area {
    margin-top: 20px;
}

.wpo-checkout-area .submit-btn-area .theme-btn,
.wpo-checkout-area .submit-btn-area .view-cart-btn {
    text-transform: capitalize;
}

/*--------------------------------------------------------------
    #shop page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#11.1  shop-pg-section
--------------------------------------------------------------*/

.shop-pg-section .shop-grids {
    margin: 0 -15px;
}

.shop-pg-section .shop-grids .grid {
    width: calc(33.33% - 30px);
    float: left;
    margin: 0 15px 30px;
}

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

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

.shop-pg-section .grid:hover .cart-details li {
    opacity: 1;
    visibility: visible;
    bottom: 0;
}

.shop-pg-section .img-cart {
    position: relative;
    overflow: hidden;
}

.shop-pg-section .cart-details {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 20px;
    text-align: center;
}

.shop-pg-section .cart-details ul {
    overflow: hidden;
    display: inline-block;
    list-style-type: none;
    padding-left: 0;
}

.shop-pg-section .cart-details li {
    float: left;
    margin: 7px;
    position: relative;
    bottom: -50px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

.shop-pg-section .cart-details li:last-child {
    -webkit-transition: all 0.5s 0.1s;
    -o-transition: all 0.5s 0.1s;
    transition: all 0.5s 0.1s;
}

.shop-pg-section .details {
    text-align: center;
    padding: 30px 15px;
}

.shop-pg-section .details h4 {
    font-size: 23px;
    font-weight: 500;
    margin: 0 0 0.4em;
}

@media (max-width: 991px) {
    .shop-pg-section .details h4 {
        font-size: 20px;
        font-size: 1rem;
    }
}

.shop-pg-section .details h4 a {
    color: #262b3e;
}

.shop-pg-section .details h4 a:hover {
    color: #D9916A;
}

.shop-pg-section .details del {
    color: #aaa;
    font-weight: 500;
    display: inline-block;
    padding-right: 10px;
}

@media (max-width: 991px) {
    .shop-pg-section .details del {
        font-size: 14px;
        font-size: 0.875rem;
    }
}

.shop-pg-section .details .price {
    color: #262b3e;
    font-weight: 500;
}

@media (max-width: 991px) {
    .shop-pg-section .details .price {
        font-size: 14px;
        font-size: 0.875rem;
    }
}

.shop-pg-section .pagination-wrapper {
    text-align: center;
    clear: both;
}

.shop-pg-section .details ins {
    text-decoration: none;
    font-weight: 600;
}

.shop-pg-section .cart-details .theme-btn {
    background: #779A65;
    color: #fff;
}

.shop-pg-section .cart-details .theme-btn:hover {
    background: #D9916A;
}

/*--------------------------------------------------------------
12. wpo-shop-single-page
--------------------------------------------------------------*/
.wpo-shop-single-section {
    /*** product slider ***/
    /*** product info ***/
}

.wpo-shop-single-section .shop-single-slider .slider-for {
    text-align: center;
}

.wpo-shop-single-section .shop-single-slider .slider-for img {
    display: inline-block;
}

.wpo-shop-single-section .shop-single-slider .slider-nav {
    padding: 0 25px;
    margin-top: 35px;
}

.wpo-shop-single-section .shop-single-slider .slider-nav>i {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 100;
}

.wpo-shop-single-section .shop-single-slider .slider-nav>i:hover {
    cursor: pointer;
}

.wpo-shop-single-section .shop-single-slider .slider-nav .nav-btn-rt {
    left: auto;
    right: 0;
}

.wpo-shop-single-section .shop-single-slider .slider-nav .slick-slide {
    text-align: center;
    margin: 0 2px;
}

.wpo-shop-single-section .shop-single-slider .slider-nav .slick-slide img {
    display: inline-block;
}

.wpo-shop-single-section .product-details {
    padding: 15px 30px 80px;
    /*** product option ***/
}

@media (max-width: 1199px) {
    .wpo-shop-single-section .product-details {
        padding: 10px 30px 15px;
    }
}

@media (max-width: 991px) {
    .wpo-shop-single-section .product-details {
        margin-top: 45px;
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .wpo-shop-single-section .product-details {
        padding: 0;
    }
}

.wpo-shop-single-section .product-details h2 {
    font-size: 35px;
    font-size: 2.33333rem;
    line-height: 1.4em;
    margin: 0 0 0.33em;
    font-weight: 700;
}

@media (max-width: 767px) {
    .wpo-shop-single-section .product-details h2 {
        font-size: 22px;
        font-size: 1.46667rem;
    }
}

.wpo-shop-single-section .product-details .price {
    font-size: 25px;
    font-size: 1.66667rem;
    color: #D9916A;
    margin: 7px 0 20px;
    font-weight: 700;
}

@media (max-width: 991px) {
    .wpo-shop-single-section .product-details .price {
        font-size: 30px;
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .wpo-shop-single-section .product-details .price {
        font-size: 25px;
        font-size: 1.66667rem;
    }
}

.wpo-shop-single-section .product-details .price .old {
    font-size: 24px;
    font-size: 1.6rem;
    font-weight: normal;
    color: #a1a1a1;
    text-decoration: line-through;
    display: inline-block;
    margin-left: 5px;
    font-weight: 500;
}

@media (max-width: 991px) {
    .wpo-shop-single-section .product-details .price .old {
        font-size: 20px;
        font-size: 1.33333rem;
    }
}

@media (max-width: 767px) {
    .wpo-shop-single-section .product-details .price .old {
        font-size: 18px;
        font-size: 1.2rem;
    }
}

.wpo-shop-single-section .product-details .product-rt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}

.wpo-shop-single-section .product-details .product-rt .rating {
    margin-right: 10px;
}

.wpo-shop-single-section .product-details .product-rt .rating i {
    color: #f9d322;
}

.wpo-shop-single-section .product-details p {
    margin-bottom: 1.3em;
}

.wpo-shop-single-section .product-details ul {
    list-style: none;
}

.wpo-shop-single-section .product-details ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
}

.wpo-shop-single-section .product-details ul li:before {
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    background: #D9916A;
    content: "";
    border-radius: 50%;
}

.wpo-shop-single-section .product-details .product-option {
    margin-top: 30px;
}

.wpo-shop-single-section .product-details .tg-btm {
    margin-top: 25px;
}

.wpo-shop-single-section .product-details .tg-btm p {
    margin-bottom: 0px;
}

.wpo-shop-single-section .product-details .tg-btm p span {
    font-weight: 700;
    color: #1E3446;
    margin-right: 5px;
}

.wpo-shop-single-section .product-details .product-option .product-row button:after {
    display: none;
}

.wpo-shop-single-section .product-details .product-option .product-row>div {
    height: 35px;
    display: inline-block;
}

.wpo-shop-single-section .product-details .product-option .product-row>div+div {
    margin-left: 15px;
}

.wpo-shop-single-section .product-details .product-option .product-row>div+div .theme-btn,
.wpo-shop-single-section .product-details .product-option .product-row>div+div .view-cart-btn {
    border-radius: 0;
    border-width: 1px;
    height: 40px;
    padding: 0 18px;
}

.wpo-shop-single-section .product-details .product-option .product-row>div:first-child {
    width: 85px;
}

.wpo-shop-single-section .product-details .product-option .product-row>div:last-child .theme-btn:hover,
.wpo-shop-single-section .product-details .product-option .product-row>div:last-child .view-cart-btn:hover {
    background: #D9916A;
    border-color: #D9916A;
    color: #fff;
}

.wpo-shop-single-section .product-details .product-option .theme-btn,
.wpo-shop-single-section .product-details .product-option .view-cart-btn {
    background-color: transparent;
    color: #333;
    font-size: 14px;
    font-size: 0.93333rem;
    padding: 0 20px;
    height: 35px;
    line-height: 32px;
    outline: 0;
    border: 2px solid #e6e6e6;
    border-radius: 0;
}

.wpo-shop-single-section .product-details .product-option .theme-btn:hover,
.wpo-shop-single-section .product-details .product-option .view-cart-btn:hover {
    background-color: #D9916A;
    color: #fff;
    border-color: #D9916A;
}

@media (max-width: 767px) {

    .wpo-shop-single-section .product-details .product-option .theme-btn,
    .wpo-shop-single-section .product-details .product-option .view-cart-btn {
        font-size: 14px;
        font-size: 0.93333rem;
    }
}

.wpo-shop-single-section .product-details .product-option .theme-btn:before,
.wpo-shop-single-section .product-details .product-option .view-cart-btn:before {
    display: none;
}

.wpo-shop-single-section .product-details .product-option .heart-btn i {
    font-size: 15px;
    font-size: 1rem;
}

.wpo-shop-single-section .product-details .product-option .product-row>div:last-child .theme-btn,
.wpo-shop-single-section .product-details .product-option .product-row>div:last-child .view-cart-btn {
    background-color: #fff;
    font-size: 18px;
    font-size: 1.2rem;
    color: #6e6e6e;
    border: 1px solid #e6e6e6;
}

.wpo-shop-single-section .product-details #product-count {
    border-radius: 0;
    border: 1px solid #e6e6e6;
}

.wpo-shop-single-section .product-details #product-count:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
}

.wpo-shop-single-section .product-details .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up,
.wpo-shop-single-section .product-details .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
    border-radius: 0;
    border-color: #e6e6e6;
    display: block;
    padding: 1px 4px;
    font-size: 10px;
}

.wpo-shop-single-section .product-details .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up:hover,
.wpo-shop-single-section .product-details .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down:hover {
    background-color: #D9916A;
    color: #fff;
}

.wpo-shop-single-section .product-info {
    margin-top: 75px;
    /*** tabs ***/
    /*** client rv ***/
    /*** review form ***/
}

@media (max-width: 991px) {
    .wpo-shop-single-section .product-info {
        margin-top: 40px;
    }
}

.wpo-shop-single-section .product-info h4 {
    font-size: 18px;
    font-size: 1.2rem;
    margin: 0;
    line-height: 1.7em;
    font-weight: 700;
    margin-bottom: 10px;
}

.wpo-shop-single-section .product-info p {
    margin-bottom: 1.3em;
}

.wpo-shop-single-section .product-info .tab-pane p:last-child {
    margin-bottom: 0;
}

.wpo-shop-single-section .product-info .nav-tabs {
    font-family: "Inter", sans-serif;
    border: 0;
}

@media (max-width: 767px) {
    .wpo-shop-single-section .product-info .nav-tabs {
        margin-bottom: 20px;
    }
}

.wpo-shop-single-section .product-info .nav-tabs li {
    margin-right: 1px;
}

.wpo-shop-single-section .product-info .nav-tabs li a.active {
    border: 0;
    outline: 0;
}

.wpo-shop-single-section .product-info .nav-tabs a {
    font-size: 15px;
    font-size: 1rem;
    color: #6e6e6e;
    border: 0;
    border-radius: 0;
    margin: 0;
    display: block;
    padding: 12px 20px 11px;
    font-family: "Inter", sans-serif;
    position: relative;
}

@media (max-width: 767px) {
    .wpo-shop-single-section .product-info .nav-tabs a {
        font-size: 14px;
        font-size: 0.93333rem;
        font-weight: normal;
        padding: 10px 10px 8px;
        text-transform: none;
    }
}

.wpo-shop-single-section .product-info .nav-tabs a:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: #D9916A;
    border-radius: 4px;
    content: "";
    opacity: 0;
    visibility: hidden;
}

.wpo-shop-single-section .product-info .nav-tabs a:hover:before,
.wpo-shop-single-section .product-info .nav-tabs a.active:before {
    opacity: 1;
    visibility: visible;
}

.wpo-shop-single-section .product-info .nav-tabs .active,
.wpo-shop-single-section .product-info .nav-tabs li:hover {
    border-color: #D9916A;
}

.wpo-shop-single-section .product-info .tab-content {
    border-top: 1px solid rgba(255, 112, 99, 0.3);
    padding-top: 30px;
    margin-top: -1px;
}

@media (max-width: 767px) {
    .wpo-shop-single-section .product-info .tab-content {
        border: 0;
        padding: 0;
        margin: 0;
    }
}

.wpo-shop-single-section .product-info .client-rv {
    overflow: hidden;
    margin-bottom: 30px;
}

.wpo-shop-single-section .product-info .client-rv:last-child {
    margin-bottom: 0;
}

.wpo-shop-single-section .product-info .client-rv .client-pic {
    width: 100px;
    float: left;
}

.wpo-shop-single-section .product-info .client-rv .client-pic img {
    border-radius: 50%;
}

@media (max-width: 767px) {
    .wpo-shop-single-section .product-info .client-rv .client-pic {
        width: 100%;
        float: none;
        margin-bottom: 10px;
    }
}

.wpo-shop-single-section .product-info .client-rv .details {
    width: calc(100% - 130px);
    float: right;
}

@media (max-width: 767px) {
    .wpo-shop-single-section .product-info .client-rv .details {
        width: 100%;
        float: none;
    }
}

.wpo-shop-single-section .product-info .client-rv .name-rating .product-rt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 767px) {
    .wpo-shop-single-section .product-info .client-rv .name-rating-time {
        padding-bottom: 3px;
    }
}

.wpo-shop-single-section .product-info .client-rv .name-rating-time>div,
.wpo-shop-single-section .product-info .client-rv .name-rating>div {
    display: inline-block;
    font-size: 14px;
    font-size: 0.93333rem;
}

@media (max-width: 767px) {

    .wpo-shop-single-section .product-info .client-rv .name-rating-time>div,
    .wpo-shop-single-section .product-info .client-rv .name-rating>div {
        font-size: 12px;
        font-size: 0.8rem;
        display: block;
    }
}

.wpo-shop-single-section .product-info .client-rv .rating {
    font-size: 12px;
    padding-left: 12px;
}

.wpo-shop-single-section .product-info .client-rv .rating i {
    color: #D9916A;
}

@media (max-width: 767px) {
    .wpo-shop-single-section .product-info .client-rv .rating {
        padding-left: 0;
        margin: 4px 0 7px;
    }
}

.wpo-shop-single-section .product-info .client-rv .name-rating-time .time {
    float: right;
    color: #b3b3b3;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .wpo-shop-single-section .product-info .client-rv .name-rating-time .time {
        float: none;
    }
}

.wpo-shop-single-section .product-info .client-rv .review-body {
    padding-top: 12px;
}

.wpo-shop-single-section .product-info .review-form {
    margin-top: 45px;
}

.wpo-shop-single-section .product-info .review-form h4 {
    font-size: 30px;
    font-weight: 700;
}

.wpo-shop-single-section .product-info .review-form p {
    margin-bottom: 1.73em;
}

.wpo-shop-single-section .product-info .review-form .give-rat-sec {
    margin-bottom: 10px;
}

.wpo-shop-single-section .product-info .review-form .give-rat-sec p {
    margin-bottom: 0;
}

.wpo-shop-single-section .product-info .review-form .give-rating {
    display: inline-block;
    position: relative;
    height: 50px;
    line-height: 50px;
    font-size: 30px;
    margin-bottom: 10px;
}

.wpo-shop-single-section .product-info .review-form .give-rating label {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    cursor: pointer;
}

.wpo-shop-single-section .product-info .review-form .give-rating label:last-child {
    position: static;
}

.wpo-shop-single-section .product-info .review-form .give-rating label:nth-child(1) {
    z-index: 5;
}

.wpo-shop-single-section .product-info .review-form .give-rating label:nth-child(2) {
    z-index: 4;
}

.wpo-shop-single-section .product-info .review-form .give-rating label:nth-child(3) {
    z-index: 3;
}

.wpo-shop-single-section .product-info .review-form .give-rating label:nth-child(4) {
    z-index: 2;
}

.wpo-shop-single-section .product-info .review-form .give-rating label:nth-child(5) {
    z-index: 1;
}

.wpo-shop-single-section .product-info .review-form .give-rating label input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.wpo-shop-single-section .product-info .review-form .give-rating label .icon {
    float: left;
    color: transparent;
}

.wpo-shop-single-section .product-info .review-form .give-rating label:last-child .icon {
    color: #ddd;
}

.wpo-shop-single-section .product-info .review-form .give-rating:not(:hover) label input:checked~.icon,
.wpo-shop-single-section .product-info .review-form .give-rating:hover label:hover input~.icon {
    color: #FFD400;
}

.wpo-shop-single-section .product-info .review-form .give-rating label input:focus:not(:checked)~.icon:last-child {
    color: #ddd;
    text-shadow: 0 0 5px #FFD400;
}

.wpo-shop-single-section .product-info .review-form form input,
.wpo-shop-single-section .product-info .review-form form textarea {
    background: transparent;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 50px;
    border: 1px solid #efefef;
}

.wpo-shop-single-section .product-info .review-form form input:focus,
.wpo-shop-single-section .product-info .review-form form textarea:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
}

.wpo-shop-single-section .product-info .review-form form textarea {
    height: 130px;
}

.wpo-shop-single-section .product-info .review-form form>div {
    margin-bottom: 27px;
}

.wpo-shop-single-section .product-info .review-form form>div:last-child {
    margin-bottom: 0;
}

.wpo-shop-single-section .product-info .review-form form .theme-btn-s4 {
    background-color: transparent;
    color: #908f8f;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.wpo-shop-single-section .product-info .review-form form .theme-btn-s4:hover {
    background-color: #D9916A;
    color: #fff;
}

@media screen and (min-width: 767px) {
    .wpo-shop-single-section .product-info .review-form form .theme-btn-s4 {
        font-size: 15px;
        font-size: 1rem;
        padding: 0 20px;
    }
}

.wpo-shop-single-section .slider-nav .slick-slide:focus {
    outline: none;
}

/*--------------------------------------------------------------
10. 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: 40px;
    }
}

.wpo-blog-pg-section .entry-meta {
    list-style: none;
    overflow: hidden;
    margin-bottom: 35px;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

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

.wpo-blog-pg-section .entry-meta ul {
    list-style: none;
    padding-left: 0;
}

.wpo-blog-pg-section .entry-meta ul li {
    font-size: 14px;
    float: left;
    text-transform: uppercase;
    color: #636893;
}

.wpo-blog-pg-section .entry-meta ul li a {
    color: #636893;
    font-weight: 600;
}


.wpo-blog-pg-section .entry-meta ul li a:hover {
    color: #D9916A;
}

.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 {
    font-size: 14px;
}

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

.wpo-blog-pg-section .entry-meta ul li+li i {
    padding-right: 3px;
}

.wpo-blog-pg-section .entry-meta ul li+li+li i {
    top: 1px;
}

.wpo-blog-pg-section .entry-meta ul li+li:before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    /*content: "";*/
    background: #D9916A;
    border-radius: 50%;
}

@media (max-width: 440px) {
    .wpo-blog-pg-section .entry-meta ul li+li:before {
        display: none;
    }
}

@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;
    line-height: 1.2em;
    font-weight: 500;
    margin: -0.27em 0 0.7em;
    font-family: "Inter", sans-serif;
    /*font-weight: 600;*/
}

@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: #232f4b;
}

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

.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 {
    color: #232f4b;
    text-transform: uppercase;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #D9916A;
}

.wpo-blog-pg-section .post a.read-more:hover {
    color: #f5584a;
}

@media (max-width: 767px) {

    .wpo-blog-pg-section .format-standard,
    .wpo-blog-pg-section .format-quote {
        padding: 25px 20px 45px;
    }
}

.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: #D9916A;
    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: #D9916A;
    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_arkitek";
    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: #D9916A;
    background: linear-gradient(left, #1835c7, #D9916A);
    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: 70px;
    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: #D9916A;
}

@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);
    }
}

/*--------------------------------------------------------------
11. wpo-blog-single-section
--------------------------------------------------------------*/
.wpo-blog-single-section {
    /*** tag-share ***/
    /*** author-box ***/
    /*** more-posts ***/
    /*** comments area ***/
    /*** comment-respond ***/
}

.wpo-blog-single-section .entry-meta {
    list-style: none;
    overflow: hidden;
}

.wpo-blog-single-section .entry-meta ul {
    list-style: none;
    padding-left: 0;
}

.wpo-blog-single-section .entry-meta ul li {
    font-size: 14px;
    float: left;
    text-transform: uppercase;
    color: #636893;
}

.wpo-blog-single-section .entry-meta ul li a {
    color: #636893;
    font-weight: 600;
}

.wpo-blog-single-section .entry-meta ul li a:hover {
    color: #D9916A;
}

.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 {
    font-size: 14px;
}

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

.wpo-blog-single-section .entry-meta ul li+li i {
    padding-right: 4px;
}

.wpo-blog-single-section .entry-meta ul li+li+li i {
    position: relative;
    top: 0px;
}

.wpo-blog-single-section .entry-meta ul li+li:before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    /*content: "";*/
    background: #D9916A;
    border-radius: 50%;
}

@media (max-width: 440px) {
    .wpo-blog-single-section .entry-meta ul li+li:before {
        display: none;
    }
}

@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: "Inter", sans-serif;
    font-weight: 600;
}

@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: #f4f8fc;
    color: #233d62;
    font-size: 20px;
    line-height: 1.6em;
    padding: 65px;
    margin-top: 50px;
    margin-bottom: 40px;
    border: 0;
    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: "\f10b";
    font-size: 20px;
    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 #f4f8fc;
    background: #fff;
    color: #D9916A;
    border-radius: 50%;
    transform: rotate(180deg)
}

.wpo-blog-single-section .post .gallery {
    overflow: hidden;
    margin: 40px -7.5px 0;
}

.wpo-blog-single-section .post .gallery>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 {
    margin: 75px 0 0;
    color: #232f4b;
}

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

.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>li+li,
.wpo-blog-single-section .tag-share-s2 ul>li+li {
    margin-left: 10px;
}

@media (max-width: 767px) {

    .wpo-blog-single-section .tag-share ul>li+li,
    .wpo-blog-single-section .tag-share-s2 ul>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>span,
.wpo-blog-single-section .tag-share-s2 .tag>span {
    font-family: "Inter", sans-serif;
    color: #232f4b;
    font-weight: 600;
    display: inline-block;
    padding-right: 15px;
    text-transform: uppercase;
}

.wpo-blog-single-section .tag-share .tag ul,
.wpo-blog-single-section .tag-share-s2 .tag ul {
    list-style: none;
    position: relative;
    padding-left: 0;
}

.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: #1d2327;
    background: #f5f5f5;
    border-radius: 15px;
    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-s2 {
    margin: 0;
    border-bottom: 0;
}

.wpo-blog-single-section .tag-share-s2 .tag 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 .tag ul>li:first-child a {
    color: #3c5ba4;
}

.wpo-blog-single-section .tag-share-s2 .tag ul>li:nth-child(2) a {
    color: #47a0d9;
}

.wpo-blog-single-section .tag-share-s2 .tag ul>li:nth-child(3) a {
    color: #0073b1;
}

.wpo-blog-single-section .tag-share-s2 .tag ul>li:nth-child(4) a {
    color: #9c0343;
}


.wpo-blog-single-section .has-tag-share .tag 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 .has-tag-share .tag ul>li:first-child a {
    color: #3c5ba4;
}

.wpo-blog-single-section .has-tag-share .tag ul>li:nth-child(2) a {
    color: #47a0d9;
}

.wpo-blog-single-section .has-tag-share .tag ul>li:nth-child(3) a {
    color: #0073b1;
}

.wpo-blog-single-section .has-tag-share .tag ul>li:nth-child(4) a {
    color: #9c0343;
}

.wpo-blog-single-section .tag-share .tag ul li a:hover,
.wpo-blog-single-section .tag-share-s2 .tag ul li a:hover {
    color: #fff;
    background: #3454d1;
}

.wpo-blog-single-section .author-box {
    margin: 50px 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: "Inter", sans-serif;
    font-size: 24px;
    font-size: 1.6rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
    color: #232f4b;
}

.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: #232f4b;
}

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

.wpo-blog-single-section .more-posts {
    overflow: hidden;
    border: 1px solid #d8e0f1;
    padding: 0 25px;
}

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

@media (max-width: 767px) {
    .wpo-blog-single-section .more-posts>div {
        width: 100%;
        float: none;
    }
}

.wpo-blog-single-section .more-posts>div>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>a>span,
.wpo-blog-single-section .more-posts .next-post>a>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: "Inter", sans-serif;
    font-size: 18px;
    font-size: 1.2rem;
    color: #232f4b;
    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: #D9916A;
}

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

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

@media (max-width: 991px) {
    .wpo-blog-single-section .comments-area li>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>li:last-child div {
    border-bottom: 0;
}

.wpo-blog-single-section .comments-area .comments-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 1em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 991px) {
    .wpo-blog-single-section .comments-area .comments-title {
        font-size: 18px;
    }
}

.wpo-blog-single-section .comments-area li>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: "Inter", sans-serif;
    font-size: 18px;
    font-size: 1.2rem;
    color: #232f4b;
    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: "Nunito Sans", sans-serif;
}

@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-family: "Inter", sans-serif;
    font-size: 14px;
    font-size: 0.9333333333rem;
    font-weight: 600;
    color: #232f4b;
    text-align: center;
    border-radius: 50px;
    display: inline-block;
    font-family: "Nunito Sans", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wpo-blog-single-section .comments-area .comment-reply-link:hover {
    color: #D9916A;
}


.wpo-blog-single-section .comment-respond .comment-reply-title {
    font-size: 18px;
    margin: 0 0 1.1em;
    text-transform: uppercase;
    font-weight: 600;
}

@media (max-width: 991px) {
    .wpo-blog-single-section .comment-respond .comment-reply-title {
        font-size: 20px;
    }
}

.wpo-blog-single-section .comment-respond form input,
.wpo-blog-single-section .comment-respond form textarea {
    background-color: #f9f9f9;
    width: 100%;
    height: 55px;
    border: 1px solid #E3E3E3;
    padding: 6px 15px;
    margin-bottom: 15px;
    outline: 0;
    border-radius: 0px;
    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: #D9916A;
}

@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>input:nth-child(1) {
    width: 49%;
    float: left;
}

@media (max-width: 767px) {
    .wpo-blog-single-section .comment-respond .form-inputs>input:nth-child(1) {
        width: 100%;
        float: none;
    }
}

.wpo-blog-single-section .comment-respond .form-inputs>input:nth-child(2) {
    width: 49%;
    float: right;
}

@media (max-width: 767px) {
    .wpo-blog-single-section .comment-respond .form-inputs>input:nth-child(2) {
        width: 100%;
        float: none;
    }
}

.wpo-blog-single-section .comment-respond .form-submit input {
    font-family: "Inter", sans-serif;
    max-width: 185px;
    background-color: #D9916A;
    color: #fff;
    margin-bottom: 0;
    border: 0;
    outline: 0;
    font-size: 18px;
    border-radius: 0px;
    height: 55px;
    font-weight: 500;
}

.wpo-blog-single-section .comment-respond .form-submit input:hover {
    background-color: #23394A;
}

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


/*--------------------------------------------------------------
15. wpo-contact-pg-section
--------------------------------------------------------------*/
.wpo-contact-pg-section .row {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.wpo-contact-pg-section .wpo-contact-title {
    max-width: 440px;
    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-size: 2.33333rem;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 0;
}

@media (max-width: 575px) {
    .wpo-contact-pg-section .wpo-contact-title h2 {
        font-size: 25px;
        font-size: 1.66667rem;
    }
}

.wpo-contact-pg-section form input,
.wpo-contact-pg-section form select,
.wpo-contact-pg-section form textarea {
    background: #fff;
    width: 100%;
    height: 50px;
    border-radius: 0px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    padding-left: 25px;
    border: 0;
}

.wpo-contact-pg-section .wpcf7-form .form-area select {
    background: #fff url(../images/select-icon2.png) no-repeat calc(100% - 15px) center;
}

@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: #D9916A;
    background: #fff;
}

.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: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    -moz-appearance: none;
    background: #fff url(../images/select-icon2.png) no-repeat calc(100% - 15px) center;
    position: relative;
}

.wpo-contact-pg-section form select:focus {
    background: #fff url(../images/select-icon2.png) no-repeat calc(100% - 15px) center;
}

.wpo-contact-pg-section .wpcf7-form .form-area .submit-area {
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
    margin-left: 0;
    float: none;

}

@media (max-width: 767px) {
    .wpo-contact-pg-section form .submit-area {
        margin-bottom: 0;
    }
}

.wpo-contact-pg-section .wpcf7-form .form-area .submit-area .theme-btn {
    border-radius: 0px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    background: #779A65;
    color: #fff;
    width: auto;
    padding: 20px 45px;
    font-weight: 700;
    height: auto;
    line-height: 1;
}

.wpo-contact-pg-section .wpcf7-form .form-area .submit-area .theme-btn:hover {
    background: #598742;
}

.wpo-contact-pg-section .wpcf7-form .form-area .wpcf7-spinner {
    display: block;
}

.wpo-subscribe-wrap .wpcf7-spinner {
    position: absolute;
}

.wpo-contact-pg-section form .submit-area .view-cart-btn {
    border-radius: 0px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
}

.wpo-contact-pg-section form .submit-area .theme-btn:after,
.wpo-contact-pg-section form .submit-area .view-cart-btn:after {
    border-radius: 0px;
}

.wpo-contact-pg-section .wpcf7-form .form-area>div {
    width: calc(50% - 30px);
    float: left;
    margin: 0 15px 25px;
}

@media (max-width: 600px) {
    .wpo-contact-pg-section .wpcf7-form .form-area>div {
        width: calc(100% - 25px);
        float: none;
    }
}

.wpo-contact-pg-section .wpcf7-form .form-area .fullwidth {
    width: calc(100% - 25px);
    float: none;
    clear: both;
}

.office-info {
    padding-top: 50px;
    margin-left: 50px;
}

@media (max-width: 991px) {
    .office-info {
        margin-left: 0;
    }
}

.office-info .office-info-item {
    padding: 22px;
    border: 1px solid #EFEFEF;
    margin-bottom: 15px;
}

.office-info .office-info-item:last-child {
    margin-bottom: 0;
}

.office-info .office-info-item .office-info-icon {
    float: left;
    overflow: hidden;
    margin-right: 20px;
}

.office-info .office-info-item .office-info-icon .icon .fi:before {
    font-size: 30px;
    color: #D9916A;
}

.office-info .office-info-item .office-info-icon img {
    max-width: 30px;
}

.office-info .office-info-item .office-info-text {
    overflow: hidden;
}

.office-info .office-info-item .office-info-text h2 {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #779A65;
    margin-top: 0;
    margin-bottom: 8px;
    font-family: "Inter", sans-serif;
}


.office-info .office-info-item .office-info-text p {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    color: #A3A3A3;
}

.wpo-contact-pg-section .wpo-contact-form-area {
    padding: 50px;
    background: #F3F6F6;
    padding-bottom: 0;
    position: relative;
    z-index: 99;
    margin-top: -150px;
}

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

@media (max-width: 575px) {
    .wpo-contact-pg-section .wpo-contact-form-area {
        margin-top: 0;
        margin-top: 50px;
    }
}

.wpo-contact-map-section {
    padding: 100px 80px;
    padding-bottom: 0;
}

@media (max-width: 1600px) {
    .wpo-contact-map-section {
        padding: 100px 30px;
        padding-bottom: 0;
    }
}

@media (max-width: 1199px) {
    .wpo-contact-map-section {
        padding: 100px 0px;
        padding-bottom: 0;
    }
}

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

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

/*--------------------------------------------------------------
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;
    max-width: 669px;
    margin: auto;
    margin-bottom: 30px;
}

.error-404-section .theme-btn {
    text-transform: capitalize;
    font-size: 16px;
    padding: 14px 25px;
    font-weight: 500;
    background: #d9916a;
    color: #fff;
}

.error-404-section .theme-btn:hover {
    background: #779a65;
}