@charset "UTF-8";

/*--------------------------------------------------------------
>>> 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-about-sections
	3.3 wpo-service-section
	3.4 wpo-testimonial-section

4. wpo-footer
       
5. wpo-service-section-s3

6. wpo-service-single-section

7. wpo-contact-pg-section

8. error-404-section

----------------------------------------------------------------*/
/*------------------------------------------------------------------
1. General
----------------------------------------------------------------*/
/*---------------------------
	Fonts
----------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700&amp;display=swap");
@font-face {
    font-family: "Futura PT Demi";
    src:
        url("../fonts/FuturaPT-Demi.woff2") format("woff2"),
        url("../fonts/FuturaPT-Demi.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Futura PT Demi";
    src:
        url("../fonts/FuturaPT-DemiObl.woff2") format("woff2"),
        url("../fonts/FuturaPT-DemiObl.woff") format("woff");
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: "Futura PT";
    src:
        url("../fonts/FuturaPT-HeavyObl.woff2") format("woff2"),
        url("../fonts/FuturaPT-HeavyObl.woff") format("woff");
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: "Futura PT";
    src:
        url("../fonts/FuturaPT-Heavy.woff2") format("woff2"),
        url("../fonts/FuturaPT-Heavy.woff") format("woff");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Futura PT";
    src:
        url("../fonts/FuturaPT-Light.woff2") format("woff2"),
        url("../fonts/FuturaPT-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Futura PT";
    src:
        url("../fonts/FuturaPT-LightObl.woff2") format("woff2"),
        url("../fonts/FuturaPT-LightObl.woff") format("woff");
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: "Futura PT";
    src:
        url("../fonts/FuturaPT-Medium.woff2") format("woff2"),
        url("../fonts/FuturaPT-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Futura PT";
    src:
        url("../fonts/FuturaPT-MediumObl.woff2") format("woff2"),
        url("../fonts/FuturaPT-MediumObl.woff") format("woff");
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}
/* 1.1	Theme Reset Style */
html {
    font-size: 15px;
}

:root {
    scroll-behavior: unset;
}

body {
    font-family: "Nunito Sans", sans-serif;
    color: #4f555a;
    background-color: #fff;
    font-size: 15px;
    font-size: 1rem;
    overflow-x: hidden;
}
@media (max-width: 767px) {
    body {
        font-size: 14px;
    }
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #232f4b;
    font-family: "Futura PT";
}

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

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

a:hover {
    text-decoration: none;
}

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

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

.wow {
    visibility: hidden;
}

.fi:before {
    margin: 0;
}

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

/*** contact form error handling ***/
.contact-validation-active .error-handling-messages {
    width: 100% !important;
    margin-top: 15px !important;
}
.contact-validation-active label.error {
    color: red;
    font-size: 0.9333333333rem;
    font-weight: normal;
    margin: 5px 0 0 0;
    text-align: left;
    display: block;
}
.contact-validation-active #loader {
    display: none;
    margin-top: 10px;
}
.contact-validation-active #loader i {
    font-size: 30px;
    font-size: 2rem;
    color: #2e636b;
    display: inline-block;
    -webkit-animation: rotating linear 2s infinite;
    animation: rotating linear 2s infinite;
}
.contact-validation-active #success,
.contact-validation-active #error {
    width: 100%;
    color: #fff;
    padding: 5px 10px;
    font-size: 16px;
    text-align: center;
    display: none;
}
@media (max-width: 767px) {
    .contact-validation-active #success,
    .contact-validation-active #error {
        font-size: 15px;
    }
}
.contact-validation-active #success {
    background-color: #009a00;
    border-left: 5px solid green;
    margin-bottom: 5px;
}
.contact-validation-active #error {
    background-color: #ff1a1a;
    border-left: 5px solid red;
}

@-webkit-keyframes rotating {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes rotating {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.rotating {
    -webkit-animation: rotating 5s alternate infinite;
    animation: rotating 5s alternate infinite;
}

/*** back to top **/
.back-to-top {
    background-color: rgba(55, 87, 247, 0.7);
    width: 45px;
    height: 45px;
    line-height: 45px;
    border: 2px solid #2e636b;
    border-radius: 45px;
    text-align: center;
    display: none;
    position: fixed;
    z-index: 999;
    right: 15px;
    bottom: 15px;
    transition: all 0.2s;
    background-color: #2e636b !important;
    border-color: #2e636b !important;
}
@media (max-width: 991px) {
    .back-to-top {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }
}
.back-to-top:hover {
    background-color: #255158 !important;
}

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

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

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

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

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

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

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

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

.wpo-section-title {
    text-align: center;
    margin-bottom: 60px;
}
@media (max-width: 767px) {
    .wpo-section-title {
        margin-bottom: 40px;
    }
}
.wpo-section-title span {
    text-transform: uppercase;
    font-size: 20px;
    color: #2e636b;
    font-family: "Futura PT";
}
.wpo-section-title h2 {
    font-size: 50px;
    line-height: 1em;
    margin: 0;
    margin-top: 15px;
    position: relative;
    text-transform: capitalize;
    font-family: "Futura PT Demi";
}
@media (max-width: 767px) {
    .wpo-section-title h2 {
        font-size: 32px;
    }
}
@media (max-width: 330px) {
    .wpo-section-title h2 {
        font-size: 30px;
    }
}

.theme-btn,
.theme-btn-s3,
.theme-btn-s4 {
    background: #2e636b;
    background: #2e636b;
    color: #fff;
    display: inline-block;
    font-weight: 500;
    padding: 15px 45px;
    border: 0;
    border-radius: 6px;
    text-transform: capitalize;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    z-index: 1;
    position: relative;
    font-family: "Futura PT";
    font-size: 20px;
    font-size: 1.3333333333rem;
}
.theme-btn:after,
.theme-btn-s3:after,
.theme-btn-s4:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-btn);
    background: var(--primary-color);
    transition: opacity 0.5s ease-out;
    opacity: 0;
    z-index: -1;
}
.theme-btn:hover,
.theme-btn-s3:hover,
.theme-btn-s4:hover,
.theme-btn:focus,
.theme-btn-s3:focus,
.theme-btn-s4:focus,
.theme-btn:active,
.theme-btn-s3:active,
.theme-btn-s4:active {
    color: #fff;
}
.theme-btn:hover:after,
.theme-btn-s3:hover:after,
.theme-btn-s4:hover:after {
    opacity: 1;
}
@media (max-width: 991px) {
    .theme-btn,
    .view-cart-btn,
    .theme-btn-s3,
    .theme-btn-s4 {
        font-size: 18px;
        font-size: 1.2rem;
    }
}
@media (max-width: 767px) {
    .theme-btn,
    .view-cart-btn,
    .theme-btn-s3,
    .theme-btn-s4 {
        padding: 12px 18px;
        font-size: 14px;
    }
}

.theme-btn-s2 {
    background: #fff;
    color: #6e6e6e;
    display: inline-block;
    padding: 12px 22px;
    border: 1px solid #2e636b;
    border-radius: 55px;
    text-transform: capitalize;
    box-shadow: 0 0 0 5px #c8eaf5;
    z-index: 1;
    position: relative;
}
.theme-btn-s2:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 55px;
    background: #2e636b;
    transition: opacity 0.5s ease-out;
    opacity: 0;
    z-index: -1;
}
@media (max-width: 991px) {
    .theme-btn-s2 {
        font-size: 14px;
        font-size: 0.9333333333rem;
    }
}
.theme-btn-s2:hover,
.theme-btn-s2:focus,
.theme-btn-s2:active {
    color: #fff;
}
.theme-btn-s2:hover:after {
    opacity: 1;
}
@media (max-width: 767px) {
    .theme-btn-s2 {
        padding: 12px 18px;
        font-size: 13px;
    }
}

.theme-btn-s3,
.theme-btn-s4 {
    background: #c968ff;
    box-shadow: 0 0 0 5px #f3e0fe;
    background: #2e636b;
    z-index: 1;
    position: relative;
}
.theme-btn-s3:after,
.theme-btn-s4:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 55px;
    background: #2e636b;
    transition: opacity 0.5s ease-out;
    opacity: 0;
    z-index: -1;
}
.theme-btn-s3:hover:after,
.theme-btn-s4:hover:after {
    opacity: 1;
}
.theme-btn-s3:hover,
.theme-btn-s4:hover,
.theme-btn-s3:focus,
.theme-btn-s4:focus,
.theme-btn-s3:active,
.theme-btn-s4:active {
    color: #fff;
}

.theme-btn-s4 {
    background: #f6d365;
    background: #2e636b;
    box-shadow: 0 0 0 5px #fcf5df;
    z-index: 1;
    position: relative;
}
.theme-btn-s4:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 55px;
    background: #2e636b;
    transition: opacity 0.5s ease-out;
    opacity: 0;
    z-index: -1;
}
.theme-btn-s4:hover:after {
    opacity: 1;
}
.theme-btn-s4:hover,
.theme-btn-s4:focus,
.theme-btn-s4:active {
    color: #fff;
}

.form input,
.form textarea,
.form select {
    border-color: #bfbfbf;
    border-radius: 0;
    outline: 0;
    box-shadow: none;
    color: #595959;
    font-style: normal;
}
.form input:focus,
.form textarea:focus,
.form select:focus {
    border-color: #2e636b;
    -o-box-shadow: 0 0 5px 0 #6880f9;
    -ms-box-shadow: 0 0 5px 0 #6880f9;
    box-shadow: 0 0 5px 0 #6880f9;
}
.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.html) no-repeat right center;
    display: inline-block;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}
.form select::-ms-expand {
    /* for IE 11 */
    display: none;
}
.form :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    font-style: normal;
}
.form ::-moz-placeholder {
    font-style: normal;
}
.form ::placeholder {
    font-style: normal;
}

.social-links {
    overflow: hidden;
}
.social-links li {
    float: left;
    width: 35px;
    height: 35px;
    margin-right: 1px;
}
.social-links li a {
    background-color: #6880f9;
    width: 35px;
    height: 35px;
    line-height: 35px;
    display: block;
    color: #fff;
    text-align: center;
}
.social-links li a:hover {
    background-color: #2e636b;
}

.wpo-breadcumb-area {
    background: url(../images/page-title.jpg) no-repeat center top/cover;
    min-height: 400px;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    z-index: 1;
}
@media (max-width: 767px) {
    .wpo-breadcumb-area {
        min-height: 250px;
    }
}
.wpo-breadcumb-area:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #232f4b;
    content: "";
    z-index: -1;
    opacity: 0.7;
}
.wpo-breadcumb-area .wpo-breadcumb-wrap {
    text-align: center;
}
.wpo-breadcumb-area .wpo-breadcumb-wrap h2 {
    font-size: 60px;
    color: #fff;
    line-height: 60px;
    margin-top: -10px;
    margin-bottom: 20px;
}
@media (max-width: 767px) {
    .wpo-breadcumb-area .wpo-breadcumb-wrap h2 {
        font-size: 30px;
        line-height: 35px;
        margin-bottom: 10px;
    }
}
.wpo-breadcumb-area .wpo-breadcumb-wrap ul li {
    display: inline-block;
    padding: 0px 5px;
    color: #fff;
    position: relative;
    font-size: 20px;
    font-family: "Futura PT";
}
@media (max-width: 767px) {
    .wpo-breadcumb-area .wpo-breadcumb-wrap ul li {
        font-size: 18px;
    }
}
.wpo-breadcumb-area .wpo-breadcumb-wrap ul li:after {
    content: "/";
    position: relative;
    left: 7px;
}
.wpo-breadcumb-area .wpo-breadcumb-wrap ul li:last-child span {
    color: #cbd4fd;
}
.wpo-breadcumb-area .wpo-breadcumb-wrap ul li:last-child:after {
    display: none;
}
.wpo-breadcumb-area .wpo-breadcumb-wrap ul li a {
    color: #fff;
    font-size: 20px;
    transition: all 0.3s;
}
.wpo-breadcumb-area .wpo-breadcumb-wrap ul li a:hover {
    color: #2e636b;
}

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

.preloader {
    background-color: #2e636b;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 1000;
    overflow: hidden;
}
.preloader .angular-shape {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transform: rotate(50deg) scale(1, 3.5);
}
.preloader .angular-shape > div:first-child {
    background: #2e636b;
    width: 20%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.preloader .angular-shape > div:nth-child(2) {
    background: #2e636b;
    width: 30%;
    height: 100%;
    position: absolute;
    left: 35%;
    top: 0;
}
.preloader .angular-shape > div:nth-child(3) {
    background: #2e636b;
    width: 20%;
    height: 100%;
    position: absolute;
    left: 80%;
    top: 0;
}
.preloader .spinner {
    width: 80px;
    height: 80px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.preloader .double-bounce1,
.preloader .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2s infinite ease-in-out;
    animation: sk-bounce 2s infinite ease-in-out;
}
.preloader .double-bounce2 {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}
@-webkit-keyframes sk-bounce {
    0%,
    100% {
        -webkit-transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
    }
}
@keyframes sk-bounce {
    0%,
    100% {
        transform: scale(0);
        -webkit-transform: scale(0);
    }
    50% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}

/**** pagination ****/
.pagination-wrapper {
    text-align: center;
    margin-top: 60px;
}
@media (max-width: 991px) {
    .pagination-wrapper {
        text-align: left;
        margin-top: 40px;
    }
}
.pagination-wrapper .pg-pagination {
    display: inline-block;
    overflow: hidden;
    list-style-type: none;
    text-align: center;
}
.pagination-wrapper .pg-pagination li {
    font-family: "Futura PT";
    float: left;
    margin-right: 10px;
}
@media (max-width: 767px) {
    .pagination-wrapper .pg-pagination li {
        margin-right: 5px;
    }
}
.pagination-wrapper .pg-pagination li:last-child {
    margin-right: 0;
}
.pagination-wrapper .pg-pagination li a {
    background-color: transparent;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    font-size: 1.0666666667rem;
    font-weight: 600;
    color: #232f4b;
    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: #2e636b;
    border-color: #2e636b;
    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: #283a5e;
    padding: 0 130px;
}

@media (max-width: 991px) {
    .topbar {
        text-align: center;
        padding: 0;
    }
}
@media (max-width: 767px) {
    .header-style-1 {
        text-align: center;
        padding: 20px 0;
    }
}
.topbar {
    font-size: 16px;
    color: #e5e3e3;
    margin: 0;
}

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

@media (max-width: 991px) {
    .topbar ul {
        float: none;
        display: inline-block;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
.topbar ul li {
    font-size: 16px;
    float: left;
    padding: 15px 10px;
    color: #e5e3e3;
    line-height: 1em;
}
@media (max-width: 991px) {
    .topbar ul li {
        padding: 15px 10px;
    }
}

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

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

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

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

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

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

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

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

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

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

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

    background-color: #fff;
}

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

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

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

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

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

@media (max-width: 991px) {
    .wpo-site-header .navigation {
        padding: 20px 0;
    }
}
.wpo-site-header #navbar {
    transition: all 0.5s;
}

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

@media screen and (min-width: 992px) {
    .wpo-site-header #navbar.collapse {
        display: flex !important;
        visibility: visible;
        opacity: 1;
        justify-content: center;
    }

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

    .wpo-site-header #navbar > ul > li > a {
        font-size: 16px;
        padding: 30px 15px;
        display: block;
        color: #232f4b;
        font-family: "Futura PT";
        font-weight: 500;
        position: relative;
    }

    @media (min-width: 1200px) {
        .wpo-site-header #navbar > ul > li > a {
            font-size: 18px;
            padding: 35px 20px;
        }
    }

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

    .wpo-site-header #navbar > ul > li .sub-menu a {
        font-size: 18px;
        font-size: 1.2rem;
        display: block;
        padding: 10px 20px;
        color: #232f4b;
        position: relative;
        overflow: hidden;
        font-weight: 500;
        font-family: "Futura PT";
    }
    .wpo-site-header #navbar > ul > li .sub-menu a:after {
        position: absolute;
        left: 20px;
        bottom: 4px;
        width: 0px;
        height: 2px;
        content: "";
        background: #2e636b;
        transition: all 0.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;
    }

    .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: "";
        font-size: 11px;
        font-size: 0.73333rem;
        position: absolute;
        right: 15px;
        top: 58%;
        transform: translateY(-50%);
    }

    .wpo-site-header #navbar > ul > li:hover > .sub-menu {
        top: 100%;
        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: 14px;
        font-size: 0.93333rem;
    }

    .wpo-site-header #navbar > ul > li .sub-menu li {
        border-bottom: 1px solid #e6e6e6;
    }

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

    .wpo-site-header #navbar > ul .menu-item-has-children > a:before {
        font-family: "themify";
        content: "";
        font-size: 11px;
        font-size: 0.73333rem;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
}
@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 .mobile-menu-header {
        display: none;
    }
}
@media (max-width: 1199px) {
    .wpo-site-header .navbar-header button .icon-bar {
        background-color: #fff;
        width: 20px;
        display: block;
        height: 2px;
        margin-bottom: 4px;
        transition: all 0.3s;
    }
    .wpo-site-header .navbar-header button .icon-bar:last-child {
        margin-bottom: 0;
    }
}
@media (max-width: 991px) {
    .wpo-site-header .container {
        width: 100%;
        max-width: 100%;
    }

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

    .wpo-site-header .navbar-header .navbar-brand {
        padding: 0;
        margin: 0;
        display: block;
    }

    .wpo-site-header .navbar-header .navbar-brand img {
        height: 40px !important;
        width: auto !important;
    }

    .wpo-site-header .navbar-header button {
        background-color: #2e636b;
        width: 35px;
        height: 30px;
        border: 0;
        padding: 0;
        outline: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        z-index: 20;
    }

    .wpo-site-header .navbar-header button .icon-bar {
        background-color: #fff;
        width: 20px;
        display: block;
        height: 2px;
        margin-bottom: 4px;
        transition: all 0.3s;
    }

    .wpo-site-header .navbar-header button .icon-bar:last-child {
        margin-bottom: 0;
    }

    .wpo-site-header #navbar {
        background: #fff;
        width: 280px;
        height: 100vh;
        margin: 0;
        padding: 0;
        border-left: 1px solid #f0f0f0;
        position: fixed;
        right: -300px;
        top: 0;
        z-index: 999999 !important;
        visibility: visible;
        opacity: 1;
        display: block !important;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .wpo-site-header .mobile-menu-header {
        padding: 20px;
        border-bottom: 1px solid #f0f0f0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #fff;
    }

    .wpo-site-header .mobile-logo img {
        height: 35px;
        width: auto;
    }

    .wpo-site-header .slideInn {
        right: 0 !important;
    }

    .wpo-site-header #navbar > ul {
        display: block !important;
        background-color: #fff;
        position: relative;
        z-index: 101;
    }

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

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

    .wpo-site-header #navbar .close-navbar {
        background-color: #f8f9fa;
        width: 32px;
        height: 32px;
        color: #2e636b;
        border: 0;
        outline: none;
        z-index: 20;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.3s;
    }

    .wpo-site-header #navbar .close-navbar:hover {
        background-color: #2e636b;
        color: #fff;
    }

    .wpo-site-header #navbar .close-navbar .ti-close {
        font-size: 12px;
    }

    .wpo-site-header #navbar .close-navbar .ti-close {
        position: static;
    }

    .wpo-site-header #navbar > ul > li {
        border-bottom: 1px solid #f2f2f2;
    }

    .wpo-site-header #navbar > ul > li > a {
        padding: 10px 25px;
        font-weight: 500;
    }

    .wpo-site-header .slideInn {
        right: 0 !important;
    }

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

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

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

    .wpo-site-header .x-close .last-angle {
        transform: rotate(44deg);
        -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-header .navbar-brand img {
        height: 45px !important;
        width: auto !important;
        margin-left: 0 !important;
    }

    .wpo-site-header #navbar .navbar-nav {
        margin: 0;
    }
}
@media (max-width: 991px) {
    .wpo-site-header .navbar-collapse.collapse {
        display: block;
    }

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

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

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

    .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: flex;
    justify-content: flex-end;
    z-index: 991;
    position: relative;
    align-items: center;
}

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

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

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

@media (max-width: 767px) {
    .wpo-site-header .header-right > div {
        margin-right: 10px;
    }
}
.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: 22px;
    font-size: 1.46667rem;
}

.wpo-site-header .header-right .search-toggle-btn {
    background-color: #dadffb;
    line-height: 0.66em;
    color: #232f4b;
    width: 55px;
    height: 50px;
    border: 0;
    border-radius: 5px;
}
@media (max-width: 1200px) {
    .wpo-site-header .header-right .search-toggle-btn {
        width: 50px;
        height: 45px;
    }
}
@media (max-width: 375px) {
    .wpo-site-header .header-right .search-toggle-btn {
        display: none;
    }
}
.wpo-site-header .header-right .search-toggle-btn .ti-close {
    display: block;
    line-height: 20px;
    position: relative;
    top: -2px;
}

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

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

    .body-overlay:before {
        content: "";
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        position: absolute;
        left: 0;
        top: 0;
        z-index: 10;
        transition: all 0.3s;
    }
}
.header-search-area {
    background: #fff;
    width: 100%;
    padding: 100px 0;
    text-align: center;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
}

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

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

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

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

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

#dl-menu {
    min-height: 45px;
    position: absolute;
    right: 0px;
    top: 22px;
    z-index: 11;
}
#dl-menu li a {
    color: #fff !important;
}
#dl-menu li a::after {
    color: #fff !important;
}
#dl-menu li a:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.dl-menuwrapper li > a:not(:only-child):after {
    font-family: "themify";
    content: "";
    font-size: 10px;
}

.dl-menuwrapper li.dl-back:after {
    font-family: "themify";
    content: "";
    font-size: 10px;
}

.dl-menuwrapper button {
    background-color: #2e636b;
}

.dl-back::after {
    color: #fff !important;
}

#dl-menu ul {
    top: 65px;
    margin: 0;
    left: 0;
}
@media (max-width: 767px) {
    #dl-menu ul {
        top: 64px;
    }
}
@media (max-width: 375px) {
    #dl-menu ul {
        top: 60px;
    }
}

@media screen and (min-width: 992px) {
    #dl-menu {
        display: none;
    }
}
#dl-menu .dl-trigger {
    position: absolute;
    right: 10px;
    border-radius: 5px;
}

.dl-menuwrapper button:hover,
.dl-menuwrapper button.dl-active,
.dl-menuwrapper ul {
    background: #1e2845;
}

/*--------------------------------------------------------------
3. content
--------------------------------------------------------------*/
/*3.1 wpo-hero-slider*/
.wpo-hero-section-1 {
    position: relative;
    height: 900px;
    background: #edf2f8;
    display: flex;
    justify-content: center;
    flex-direction: column;
    z-index: 1;
}
.wpo-hero-section-1:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    height: 100%;
    width: 67%;
    background: #edf2f8;
    -webkit-clip-path: polygon(0 0, 75% 0, 90% 100%, 0 100%);
    clip-path: polygon(0 0, 75% 0, 90% 100%, 0 100%);
}
.wpo-hero-section-1 .right-img {
    position: absolute;
    right: 0;
    top: 0;
    height: 900px;
    width: 50%;
    z-index: -11;
    background: url(../images/slider/slide-1.jpg) no-repeat right center;
}
@media (max-width: 1440px) {
    .wpo-hero-section-1 .right-img {
        top: -30px;
    }
}
@media (max-width: 1200px) {
    .wpo-hero-section-1 .right-img {
        top: 0px;
    }
}
.wpo-hero-section-1 .right-img2 {
    position: absolute;
    left: 60px;
    bottom: -1px;
    z-index: 1;
}
.wpo-hero-section-1 .right-img img {
    height: 100%;
    width: 100%;
}
.wpo-hero-section-1 .wpo-hero-title h2 {
    font-size: 70px;
    font-weight: 900;
    line-height: 90px;
    margin: 10px 0 25px;
}
.wpo-hero-section-1 .wpo-hero-title h2 span {
    color: #2e636b;
}
.wpo-hero-section-1 .wpo-hero-title-top span {
    font-size: 22px;
    color: #8188a9;
    font-family: "Futura PT";
}
.wpo-hero-section-1 .wpo-hero-subtitle p {
    font-size: 25px;
    color: #676767;
    font-family: "Futura PT";
    line-height: 35px;
    max-width: 595px;
    padding-left: 20px;
    border-left: 2px solid #676767;
    margin-bottom: 60px;
}

.wpo-hero-section-text {
    position: relative;
}
.wpo-hero-section-text .video-holder {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translate(-50%, -50%);
}
.wpo-hero-section-text .video-holder a {
    display: block;
    width: 84px;
    height: 84px;
    background: #fff;
    text-align: center;
    line-height: 90px;
    color: #2e636b;
    font-size: 30px;
    border-radius: 50%;
    position: relative;
}
.wpo-hero-section-text .video-holder a:before {
    content: " ";
    width: 130%;
    height: 130%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: absolute;
    left: -12px;
    top: -12px;
    -webkit-animation: pulse 1s infinite;
    animation: pulse 1s infinite;
    z-index: -1;
}
.wpo-hero-section-text .video-holder a .fi {
    font-size: 25px;
}

.wpo-hero-slider {
    width: 100%;
    height: 900px;
    display: flex;
    position: relative;
    z-index: 0;
}
@media (max-width: 991px) {
    .wpo-hero-slider {
        height: 600px;
    }
}
@media (max-width: 767px) {
    .wpo-hero-slider {
        height: 500px;
    }
}
.wpo-hero-slider .swiper-slide {
    overflow: hidden;
}
.wpo-hero-slider .swiper-container,
.wpo-hero-slider .hero-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.wpo-hero-slider .slide-inner,
.wpo-hero-slider .hero-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}
.wpo-hero-slider .slide-inner .slide-content,
.wpo-hero-slider .hero-inner .slide-content {
    padding-bottom: 70px;
}
@media (max-width: 991px) {
    .wpo-hero-slider .slide-inner .slide-content,
    .wpo-hero-slider .hero-inner .slide-content {
        padding-bottom: 0;
    }
}

@media (max-width: 1199px) {
    .wpo-hero-slider {
        height: 680px;
    }
}
@media (max-width: 991px) {
    .wpo-hero-slider {
        height: 600px;
    }
}
@media (max-width: 767px) {
    .wpo-hero-slider {
        height: 500px;
    }
}
.wpo-hero-slider .gradient-overlay {
    background: linear-gradient(left, #232f4b 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 {
    position: relative;
    z-index: 11;
}
.wpo-hero-slider .swiper-slide {
    position: relative;
    z-index: 11;
}
.wpo-hero-slider .wpo-hero-title-top span {
    font-size: 22px;
    color: #e4e4e4;
    font-family: "Futura PT";
}
@media (max-width: 767px) {
    .wpo-hero-slider .wpo-hero-title-top span {
        font-size: 15px;
    }
}
.wpo-hero-slider .slide-title {
    max-width: 655px;
}
@media (max-width: 1199px) {
    .wpo-hero-slider .slide-title {
        max-width: 555px;
    }
}
.wpo-hero-slider .slide-title h2 {
    font-size: 70px;
    font-weight: 900;
    line-height: 90px;
    margin: 10px 0 25px;
    color: #fff;
}
@media (max-width: 1199px) {
    .wpo-hero-slider .slide-title h2 {
        font-size: 50px;
        font-size: 3.3333333333rem;
    }
}
@media (max-width: 991px) {
    .wpo-hero-slider .slide-title h2 {
        font-size: 40px;
        font-size: 2.6666666667rem;
        line-height: 55px;
    }
}
@media (max-width: 767px) {
    .wpo-hero-slider .slide-title h2 {
        font-size: 30px;
        font-size: 2rem;
        line-height: 36px;
    }
}
.wpo-hero-slider .slide-text {
    max-width: 520px;
}
@media (max-width: 767px) {
    .wpo-hero-slider .slide-text {
        max-width: 500px;
    }
}
.wpo-hero-slider .slide-text p {
    font-size: 25px;
    color: #676767;
    font-family: "Futura PT";
    line-height: 35px;
    max-width: 595px;
    padding-left: 20px;
    border-left: 2px solid #e2e2e2;
    margin-bottom: 60px;
    color: #e2e2e2;
}
@media (max-width: 991px) {
    .wpo-hero-slider .slide-text p {
        font-size: 18px;
        font-size: 1.2rem;
    }
}
@media (max-width: 767px) {
    .wpo-hero-slider .slide-text p {
        font-size: 16px;
        font-size: 1.0666666667rem;
        line-height: 22px;
        margin-bottom: 30px;
    }
}
@media (max-width: 991px) {
    .wpo-hero-slider .slide-btns {
        max-width: 400px;
    }
}
.wpo-hero-slider .slide-btns .hero-video-btn {
    margin-left: 40px;
}
@media (max-width: 767px) {
    .wpo-hero-slider .slide-btns .hero-video-btn {
        margin-left: 20px;
    }
}

/*--------------------------------------------------------------
4. wpo-footer
--------------------------------------------------------------*/
.wpo-site-footer {
    background: #1e2845;
    position: relative;
    font-size: 15px;
    overflow: hidden;
}
.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: 90px 0;
}
@media (max-width: 991px) {
    .wpo-site-footer .wpo-upper-footer {
        padding: 60px 0 0;
    }
}
@media (max-width: 767px) {
    .wpo-site-footer .wpo-upper-footer {
        padding: 60px 0 0;
    }
}
@media (max-width: 991px) {
    .wpo-site-footer .wpo-upper-footer .col {
        min-height: 235px;
        margin-bottom: 70px;
    }
}
@media (max-width: 767px) {
    .wpo-site-footer .wpo-upper-footer .col {
        min-height: auto;
        margin-bottom: 60px;
    }
}
.wpo-site-footer .widget-title {
    margin-bottom: 30px;
}
@media (max-width: 767px) {
    .wpo-site-footer .widget-title {
        margin-bottom: 20px;
    }
}
.wpo-site-footer .widget-title h3 {
    font-size: 20px;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    position: relative;
    font-family: "Futura PT Demi";
}
@media (max-width: 991px) {
    .wpo-site-footer .widget-title h3 {
        font-size: 20px;
        font-size: 1.25rem;
    }
}
.wpo-site-footer .about-widget .logo {
    max-width: 180px;
}
.wpo-site-footer .about-widget p {
    margin-bottom: 0.8em;
    line-height: 1.9em;
}
.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: #fff;
    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: #232f4b;
    background: #fff;
}
.wpo-site-footer .about-widget ul li + li {
    margin-left: 25px;
}
.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: 75px;
    }
}
@media (max-width: 1199px) {
    .wpo-site-footer .link-widget {
        padding-left: 20px;
    }
}
@media (max-width: 991px) {
    .wpo-site-footer .link-widget {
        padding-left: 0;
    }
}
@media (max-width: 767px) {
    .wpo-site-footer .link-widget {
        max-width: 350px;
    }
}
.wpo-site-footer .link-widget ul li {
    position: relative;
}
.wpo-site-footer .link-widget ul li a {
    color: #fff;
    font-size: 17px;
}
.wpo-site-footer .link-widget ul li a:hover {
    text-decoration: underline;
}
.wpo-site-footer .link-widget ul li + li {
    padding-top: 15px;
}
.wpo-site-footer .contact-ft {
    margin-top: 20px;
}
.wpo-site-footer .contact-ft ul li {
    padding-bottom: 15px;
    position: relative;
    padding-left: 35px;
    color: #e5e3e3;
    font-size: 17px;
}
.wpo-site-footer .contact-ft ul li i {
    position: absolute;
    left: 0;
    top: 0;
}
.wpo-site-footer .contact-ft ul li .fi:before {
    font-size: 20px;
    margin-right: 15px;
}
.wpo-site-footer .wpo-lower-footer {
    text-align: center;
    position: relative;
    background: #141d37;
}
.wpo-site-footer .wpo-lower-footer .row {
    padding: 20px 0;
    position: relative;
}
.wpo-site-footer .wpo-lower-footer .copyright {
    display: inline-block;
    font-size: 15px;
    font-size: 0.9375rem;
    margin: 0;
}
.wpo-site-footer .wpo-lower-footer .copyright a {
    color: #fff;
    text-decoration: none;
}
@media (max-width: 991px) {
    .wpo-site-footer .wpo-lower-footer .copyright {
        float: none;
        display: block;
    }
}
.wpo-site-footer .instagram ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0px -3px;
}
.wpo-site-footer .instagram ul li {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    margin-bottom: 5px;
    padding: 0px 3px;
}
.wpo-site-footer .instagram ul li img {
    width: 100%;
}

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

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

/* 3.3	wpo-about-sections */
.wpo-about-section {
    padding: 60px 0 155px;
}
.wpo-about-section .wpo-about-wrap .wpo-about-img {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 505px;
    margin: 0 auto;
}
.wpo-about-section .wpo-about-wrap .wpo-about-img img {
    width: 100%;
}
.wpo-about-section .wpo-about-wrap .wpo-about-img .wpo-ab-shape-1 {
    position: absolute;
    left: -60px;
    top: -60px;
    z-index: -1;
}
.wpo-about-section .wpo-about-wrap .wpo-about-img .wpo-ab-shape-2 {
    position: absolute;
    right: -35px;
    bottom: -35px;
    z-index: 11;
}
.wpo-about-section .wpo-about-text {
    max-width: 595px;
}
.wpo-about-section .wpo-about-text .wpo-about-icon {
    width: 50px;
    height: 50px;
    background: #f3f6fe;
    line-height: 50px;
    text-align: center;
    border-radius: 6px;
}
.wpo-about-section .wpo-about-text .wpo-about-icon img {
    width: 30px;
    line-height: 30px;
    height: 30px;
}
.wpo-about-section .wpo-about-text h2 {
    font-size: 50px;
    font-family: "Futura PT Demi";
    margin: 30px 0;
}
.wpo-about-section .wpo-about-text h2 span {
    color: #2e636b;
}
.wpo-about-section .wpo-about-text .signeture {
    padding: 15px 0;
}
.wpo-about-section .wpo-about-text .signeture p {
    font-size: 17px;
    color: #232f4b;
    margin-top: 10px;
}

/* 3.4	wpo-service-section */
.wpo-service-section {
    background: #f4f8fc;
    padding-bottom: 90px;
}
.wpo-service-section .wpo-service-item {
    background: #fff;
    padding: 50px;
    margin-bottom: 30px;
}
.wpo-service-section .wpo-service-item .wpo-service-icon {
    width: 82px;
    height: 82px;
    background: #f3f6fe;
    line-height: 82px;
    text-align: center;
    border-radius: 6px;
}
.wpo-service-section .wpo-service-item .wpo-service-icon img {
    width: 50px;
    line-height: 50px;
    height: 50px;
}
.wpo-service-section .wpo-service-item .wpo-service-text h2 {
    font-size: 30px;
    font-weight: 500;
    margin: 20px 0;
}
.wpo-service-section .wpo-service-item .wpo-service-text h2 a {
    color: #232f4b;
}
.wpo-service-section .wpo-service-item .wpo-service-text h2 a:hover {
    color: #2e636b;
}
.wpo-service-section .wpo-service-item .wpo-service-text p {
    margin-bottom: 0;
}

/* 3.8	wpo-testimonial-section */
.wpo-testimonial-section {
    padding-top: 90px;
}
.wpo-testimonial-section.style-2 {
    padding-top: 200px;
}
@media (max-width: 1200px) {
    .wpo-testimonial-section.style-2 {
        padding-top: 160px;
    }
}
@media (max-width: 767px) {
    .wpo-testimonial-section.style-2 {
        padding-top: 100px;
        padding-bottom: 40px;
    }
}
.wpo-testimonial-section .wpo-testimonial-title {
    margin-bottom: 40px;
}
.wpo-testimonial-section .wpo-testimonial-title h2 {
    max-width: 500px;
    font-size: 50px;
    position: relative;
    padding-left: 112px;
    font-family: "Futura PT Demi";
}
.wpo-testimonial-section .wpo-testimonial-title h2 span {
    color: #2e636b;
}
.wpo-testimonial-section .wpo-testimonial-title h2 i {
    width: 112px;
    height: 112px;
    line-height: 128px;
    text-align: center;
    background: #2e636b;
    color: #fff;
    display: inline-block;
    font-size: 50px;
    position: absolute;
    left: 0;
    top: -60px;
}
.wpo-testimonial-section .wpo-testimonial-items {
    position: relative;
}
.wpo-testimonial-section .wpo-testimonial-items .wpo-testimonial-item {
    padding: 50px 40px;
    box-shadow: 0px 3px 12px 0px rgba(62, 65, 159, 0.08);
    position: relative;
    overflow: hidden;
}
@media (max-width: 767px) {
    .wpo-testimonial-section .wpo-testimonial-items .wpo-testimonial-item {
        padding: 40px 20px;
    }
}
.wpo-testimonial-section .wpo-testimonial-items .wpo-testimonial-item:before {
    font-family: "Flaticon";
    content: "";
    font-size: 60px;
    font-size: 3.75rem;
    color: #eaedfd;
    position: absolute;
    right: 40px;
    top: -28px;
}
.wpo-testimonial-section
    .wpo-testimonial-items
    .wpo-testimonial-item
    .wpo-testimonial-avatar {
    margin-bottom: 30px;
}
.wpo-testimonial-section
    .wpo-testimonial-items
    .wpo-testimonial-item
    .wpo-testimonial-avatar
    img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
.wpo-testimonial-section
    .wpo-testimonial-items
    .wpo-testimonial-item
    .wpo-testimonial-text-btm {
    margin-top: 20px;
}
.wpo-testimonial-section
    .wpo-testimonial-items
    .wpo-testimonial-item
    .wpo-testimonial-text-btm
    h3 {
    font-size: 20px;
    font-family: "Futura PT Demi";
    color: #2e636b;
}
.wpo-testimonial-section
    .wpo-testimonial-items
    .wpo-testimonial-item
    .wpo-testimonial-text-btm
    span {
    color: #848892;
}
.wpo-testimonial-section .wpo-testimonial-items .owl-nav [class*="owl-"] {
    background: #fff;
    width: 50px;
    height: 50px;
    line-height: 52px;
    border: 1px solid #b7b7b7;
    color: #6e6e6e;
    padding: 0;
    font-size: 20px;
    margin: 0;
    border-radius: 0;
    transition: all 0.3s;
    z-index: 1;
}
.wpo-testimonial-section
    .wpo-testimonial-items
    .owl-nav
    [class*="owl-"]:before {
    right: -3px;
    bottom: -3px;
    border-right: 3px solid #2e636b;
    border-bottom: 3px solid #2e636b;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.wpo-testimonial-section
    .wpo-testimonial-items
    .owl-nav
    [class*="owl-"]:hover:before {
    opacity: 1;
    visibility: visible;
}
@media (max-width: 767px) {
    .wpo-testimonial-section .wpo-testimonial-items .owl-nav [class*="owl-"] {
        display: none;
    }
}
.wpo-testimonial-section .wpo-testimonial-items .owl-dots {
    text-align: center;
}
.wpo-testimonial-section .wpo-testimonial-items .owl-dots button {
    width: 10px;
    height: 12px;
    border-radius: 50%;
    border: 0;
    margin: 5px;
    background-color: #d6d6d6;
}
.wpo-testimonial-section .wpo-testimonial-items .owl-dots button.active {
    background-color: #2e636b;
}
.wpo-testimonial-section .wpo-testimonial-items .owl-next {
    position: absolute;
    top: -120px;
    right: 0;
}
.wpo-testimonial-section .wpo-testimonial-items .owl-prev {
    position: absolute;
    top: -120px;
    right: 70px;
}
.wpo-testimonial-section .wpo-testimonial-items .owl-prev:before {
    left: -3px;
    bottom: -3px;
    border-right: 0 !important;
    border-left: 3px solid #2e636b;
    border-bottom: 3px solid #2e636b;
}
.wpo-testimonial-section .owl-item {
    padding: 10px;
}

/* 6.2	wpo-service-section-s3 */
.wpo-service-section.wpo-service-section-s3 .wpo-service-item {
    padding: 50px 40px;
    text-align: center;
    position: relative;
}
.wpo-service-section.wpo-service-section-s3
    .wpo-service-item
    .wpo-service-text
    h2 {
    font-size: 25px;
}
.wpo-service-section.wpo-service-section-s3 .wpo-service-item::before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 10px;
    content: "";
    background: #2e636b;
    transition: all 0.3s;
}
.wpo-service-section.wpo-service-section-s3 .wpo-service-item:hover::before {
    width: 100%;
}
.wpo-service-section.wpo-service-section-s3
    .wpo-service-item
    .wpo-service-icon {
    width: 90px;
    height: 90px;
    line-height: 108px;
    background: #f4f6fd;
    position: relative;
    display: inline-block;
    z-index: 1;
    border-radius: 50%;
}
.wpo-service-section.wpo-service-section-s3
    .wpo-service-item
    .wpo-service-icon
    .fi {
    font-size: 50px;
}
.wpo-service-section.wpo-service-section-s3
    .wpo-service-item
    .wpo-service-icon
    .fi:before {
    color: #2e636b;
}
.wpo-service-section.wpo-service-section-s3 .owl-nav {
    display: none;
}
.wpo-service-section.wpo-service-section-s3 .owl-dots {
    text-align: center;
}
.wpo-service-section.wpo-service-section-s3 .owl-dots button {
    width: 10px;
    height: 12px;
    border-radius: 50%;
    border: 0;
    margin: 5px;
    background-color: #d6d6d6;
}
.wpo-service-section.wpo-service-section-s3 .owl-dots button.active {
    background-color: #2e636b;
}

/*--------------------------------------------------------------
7. wpo-service-single-section
--------------------------------------------------------------*/
@media (max-width: 991px) {
    .wpo-service-single-section {
        padding-bottom: 60px;
    }
}
.wpo-service-single-section .wpo-service-single-wrap img {
    width: 100%;
}
.wpo-service-single-section
    .wpo-service-single-wrap
    .wpo-service-single-content
    .wpo-service-single-content-des {
    padding: 60px 0;
}
@media (max-width: 767px) {
    .wpo-service-single-section
        .wpo-service-single-wrap
        .wpo-service-single-content
        .wpo-service-single-content-des {
        padding: 35px 0;
    }
}
.wpo-service-single-section
    .wpo-service-single-wrap
    .wpo-service-single-content
    .wpo-service-single-content-des
    h2 {
    font-size: 33px;
    font-family: "Futura PT Demi";
    margin-bottom: 30px;
}
@media (max-width: 767px) {
    .wpo-service-single-section
        .wpo-service-single-wrap
        .wpo-service-single-content
        .wpo-service-single-content-des
        h2 {
        font-size: 25px;
        margin-bottom: 16px;
    }
}
.wpo-service-single-section
    .wpo-service-single-wrap
    .wpo-service-single-content
    .wpo-service-single-content-des
    p {
    margin-bottom: 30px;
}
.wpo-service-single-section
    .wpo-service-single-wrap
    .wpo-service-single-content
    .wpo-service-single-content-des
    .wpo-service-single-sub-img {
    margin-top: 50px;
}
.wpo-service-single-section
    .wpo-service-single-wrap
    .wpo-service-single-content
    .wpo-service-single-content-des
    .wpo-service-single-sub-img
    ul {
    display: flex;
    list-style: none;
}
.wpo-service-single-section
    .wpo-service-single-wrap
    .wpo-service-single-content
    .wpo-service-single-content-des
    .wpo-service-single-sub-img
    li {
    padding-left: 10px;
    padding-right: 10px;
}
.wpo-service-single-section
    .wpo-service-single-wrap
    .wpo-service-single-content
    .wpo-service-single-content-des
    .wpo-service-single-sub-img
    li:last-child {
    padding-left: 10px;
    padding-right: 0;
}
.wpo-service-single-section .wpo-service-single-wrap .wpo-solutions-section h2 {
    font-size: 33px;
    font-family: "Futura PT Demi";
    margin-bottom: 30px;
}
@media (max-width: 575px) {
    .wpo-service-single-section
        .wpo-service-single-wrap
        .wpo-solutions-section
        h2 {
        font-size: 25px;
    }
}
.wpo-service-single-section
    .wpo-service-single-wrap
    .wpo-solutions-section
    .wpo-solutions-item {
    background: #fff;
    padding: 30px 25px;
    margin-bottom: 30px;
    box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.1);
}
.wpo-service-single-section
    .wpo-service-single-wrap
    .wpo-solutions-section
    .wpo-solutions-item
    .wpo-solutions-icon
    img {
    width: 50px;
    line-height: 50px;
    height: 50px;
}
.wpo-service-single-section
    .wpo-service-single-wrap
    .wpo-solutions-section
    .wpo-solutions-item
    .wpo-solutions-text
    h2 {
    font-size: 22px;
    font-weight: 500;
    margin: 20px 0;
}
.wpo-service-single-section
    .wpo-service-single-wrap
    .wpo-solutions-section
    .wpo-solutions-item
    .wpo-solutions-text
    h2
    a {
    color: #232f4b;
}
.wpo-service-single-section
    .wpo-service-single-wrap
    .wpo-solutions-section
    .wpo-solutions-item
    .wpo-solutions-text
    h2
    a:hover {
    color: #2e636b;
}
.wpo-service-single-section
    .wpo-service-single-wrap
    .wpo-solutions-section
    .wpo-solutions-item
    .wpo-solutions-text
    p {
    margin-bottom: 0;
}
.wpo-service-single-section .wpo-service-single-wrap .wpo-benefits-section {
    padding-top: 30px;
}
.wpo-service-single-section .wpo-service-single-wrap .wpo-benefits-section h2 {
    font-size: 33px;
    font-family: "Futura PT Demi";
    margin-bottom: 30px;
}
.wpo-service-single-section
    .wpo-service-single-wrap
    .wpo-benefits-section
    .accordion {
    border-top: 1px solid #e1e1e1;
}
.wpo-service-single-section
    .wpo-service-single-wrap
    .wpo-benefits-section
    .accordion-item {
    border: 0;
    border-bottom: 1px solid #e1e1e1;
}
.wpo-service-single-section
    .wpo-service-single-wrap
    .wpo-benefits-section
    .accordion-item
    .accordion-body {
    padding-left: 0;
    padding-right: 0;
}
.wpo-service-single-section
    .wpo-service-single-wrap
    .wpo-benefits-section
    .accordion-item
    button {
    padding: 20px;
    border: 0;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 20px;
    color: #232f4b;
    text-align: left;
}
.wpo-service-single-section
    .wpo-service-single-wrap
    .wpo-benefits-section
    .accordion-item
    button::after {
    background: none;
    font-family: "themify";
    content: "";
    font-size: 15px;
    transform: rotate(0deg);
    font-weight: 700;
}
.wpo-service-single-section
    .wpo-service-single-wrap
    .wpo-benefits-section
    .accordion-item
    button.collapsed {
    color: #373b3e;
}
.wpo-service-single-section
    .wpo-service-single-wrap
    .wpo-benefits-section
    .accordion-item
    button.collapsed::after {
    content: "";
}
.wpo-service-single-section
    .wpo-service-single-wrap
    .wpo-benefits-section
    .accordion-item
    button:focus {
    box-shadow: none;
    outline: none;
    border-color: #e1e1e1;
}
.wpo-service-single-section
    .wpo-service-single-wrap
    .wpo-benefits-section
    .accordion-item
    .accordion-collapse {
    border: 0;
}
.wpo-service-single-section
    .wpo-service-single-wrap
    .wpo-benefits-section
    .accordion-button {
    background: transparent;
}

.wpo-single-sidebar {
    padding-left: 20px;
}
@media (max-width: 991px) {
    .wpo-single-sidebar {
        padding-left: 0;
        margin-top: 60px;
    }
}
.wpo-single-sidebar .widget {
    padding: 30px 40px;
    border: 1px solid #e1e1e1;
    margin-bottom: 40px;
}
@media (max-width: 1200px) {
    .wpo-single-sidebar .widget {
        padding: 20px;
    }
}
.wpo-single-sidebar .widget h2 {
    font-size: 25px;
    font-family: "Futura PT Demi";
    padding-bottom: 35px;
    position: relative;
    text-align: center;
    display: block;
    margin-bottom: 30px;
}
.wpo-single-sidebar .widget h2::before {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    background: url(../images/Single-title-shape.png) no-repeat right center;
    content: "";
    width: 52px;
    height: 20px;
}
.wpo-single-sidebar .widget ul {
    list-style: none;
}
.wpo-single-sidebar .wpo-service-widget ul li a {
    display: block;
    padding: 15px 0;
    font-size: 16px;
    color: #232f4b;
    font-weight: 600;
    border-bottom: 1px solid #e1e1e1;
    padding-left: 30px;
    position: relative;
}
.wpo-single-sidebar .wpo-service-widget ul li a:before {
    position: absolute;
    left: 0;
    top: 15px;
    font-family: "themify";
    content: "";
    font-size: 14px;
    color: #2e636b;
}
.wpo-single-sidebar .wpo-service-widget ul li a:hover {
    color: #2e636b;
}
.wpo-single-sidebar .wpo-service-widget ul li:last-child a {
    padding-bottom: 0;
    border-bottom: 0;
}
.wpo-single-sidebar .wpo-service-widget ul li:first-child a {
    padding-top: 0;
}
.wpo-single-sidebar .wpo-service-widget ul li:first-child a:before {
    top: 2px;
}
.wpo-single-sidebar .wpo-newsletter-widget p {
    font-size: 20px;
    font-family: "Futura PT Demi";
    color: #232f4b;
    text-align: center;
}
.wpo-single-sidebar .wpo-newsletter-widget span {
    font-size: 15px;
    color: #848892;
}
.wpo-single-sidebar .wpo-newsletter-widget span a {
    color: #232f4b;
    font-weight: 700;
}
.wpo-single-sidebar .wpo-newsletter-widget span a:hover {
    color: #2e636b;
}
.wpo-single-sidebar .wpo-newsletter-widget .form input {
    border: 0;
    display: block;
    width: 100%;
    height: 50px;
    border-radius: 50px;
    border: 1px solid #e1e1e1;
    padding: 15px;
    text-align: center;
}
.wpo-single-sidebar .wpo-newsletter-widget .form input:focus {
    box-shadow: none;
}
.wpo-single-sidebar .wpo-newsletter-widget .form button {
    background: #2e636b;
    width: 100%;
    height: 50px;
    border-radius: 50px;
    text-align: center;
    color: #fff;
    border: none;
    margin: 20px 0;
}
.wpo-single-sidebar .wpo-instagram-widget ul {
    display: flex;
    flex-wrap: wrap;
}
.wpo-single-sidebar .wpo-instagram-widget ul li {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    margin-bottom: 5px;
    padding: 0px 3px;
}
.wpo-single-sidebar .wpo-instagram-widget ul li img {
    width: 100%;
}
.wpo-single-sidebar .wpo-contact-widget {
    border: 0;
    background: #2e636b;
}
.wpo-single-sidebar .wpo-contact-widget h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: left;
    color: #fff;
    margin-bottom: 20px;
}
.wpo-single-sidebar .wpo-contact-widget h2::before {
    left: 28px;
    background: url(../images/Single-title-shape2.png) no-repeat right center;
}
.wpo-single-sidebar .wpo-contact-widget p {
    color: #fff;
    font-size: 18px;
}
.wpo-single-sidebar .wpo-contact-widget a {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #fff;
    font-size: 18px;
    color: #fff;
    padding-right: 90px;
    position: relative;
    margin-top: 10px;
}
.wpo-single-sidebar .wpo-contact-widget a::before {
    font-family: "themify";
    content: "";
    font-size: 18px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

/*--------------------------------------------------------------
/*--------------------------------------------------------------
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: 35px 0;
}
@media (max-width: 767px) {
    .wpo-blog-pg-section .entry-meta {
        margin: 25px 0;
    }
}
.wpo-blog-pg-section .entry-meta ul {
    list-style: none;
}
.wpo-blog-pg-section .entry-meta ul li {
    font-weight: 500;
    font-size: 14px;
    font-size: 0.9333333333rem;
    float: left;
    text-transform: uppercase;
}
.wpo-blog-pg-section .entry-meta ul li a {
    color: #636893;
    text-decoration: underline;
}
.wpo-blog-pg-section .entry-meta ul li a:hover {
    color: #2e636b;
}
.wpo-blog-pg-section .entry-meta ul li i {
    position: relative;
    top: 2px;
    margin-right: 3px;
}
.wpo-blog-pg-section .entry-meta ul li + li {
    margin-left: 20px;
    padding-left: 20px;
    position: relative;
}
.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: #2e636b;
    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;
    font-size: 2.2666666667rem;
    line-height: 1.2em;
    font-weight: 600;
    margin: -0.27em 0 0.7em;
    font-family: "Futura PT Demi";
}
@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: #2e636b;
}
.wpo-blog-pg-section .post p {
    margin-bottom: 1.5em;
}
@media (max-width: 991px) {
    .wpo-blog-pg-section .post p {
        font-size: 16px;
        font-size: 1.0666666667rem;
    }
}
.wpo-blog-pg-section .post a.read-more {
    text-decoration: underline;
    color: #6e6e6e;
    text-transform: uppercase;
    font-family: "Futura PT";
    font-size: 16px;
}
.wpo-blog-pg-section .post a.read-more:hover {
    color: #2e636b;
}
.wpo-blog-pg-section .entry-media img {
    width: 100%;
}
.wpo-blog-pg-section .format-standard,
.wpo-blog-pg-section .format-quote {
    background-color: #f4f8fc;
    padding: 25px 35px 45px;
}
@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-standard:before {
    position: absolute;
    right: 0;
    top: 0;
    content: "";
    font-family: "flaticon";
    font-size: 90px;
    line-height: 80px;
    color: #e5f0fb;
    transform: rotate(180deg);
}
.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: #2e636b;
    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: #2e636b;
    transition: all 0.3s;
    border: 0;
}
.wpo-blog-pg-section .format-gallery .owl-nav [class*="owl-"] .fi::before {
    font-size: 20px;
}
.wpo-blog-pg-section .format-gallery .owl-nav .owl-prev,
.wpo-blog-pg-section .format-gallery .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.wpo-blog-pg-section .format-gallery .owl-nav .owl-prev {
    left: 15px;
}
.wpo-blog-pg-section .format-gallery .owl-nav .owl-next {
    right: 15px;
}
.wpo-blog-pg-section .format-quote {
    text-align: center;
    padding: 80px 60px;
    position: relative;
}
@media (max-width: 767px) {
    .wpo-blog-pg-section .format-quote {
        padding: 40px 20px;
    }
}
.wpo-blog-pg-section .format-quote p {
    margin-bottom: 0;
}
.wpo-blog-pg-section .format-quote:before {
    font-family: "Flaticon";
    content: "";
    font-size: 250px;
    font-size: 16.6666666667rem;
    color: #ecf3fb;
    margin-left: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.wpo-blog-pg-section .format-quote h3,
.wpo-blog-pg-section .format-quote p {
    position: relative;
}
.wpo-blog-pg-section .format-video .video-holder {
    position: relative;
    text-align: center;
}
.wpo-blog-pg-section .format-video .video-holder:before {
    content: "";
    background-color: #2e636b;
    background: linear-gradient(left, #2e636b, #2e636b);
    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: #2e636b;
}

@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);
    }
}

/*--------------------------------------------------------------
12. wpo-contact-pg-section
--------------------------------------------------------------*/
.wpo-contact-pg-section {
    padding-bottom: 0px;
}
.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.3333333333rem;
    font-weight: 600;
    margin-bottom: 20px;
}
@media (max-width: 575px) {
    .wpo-contact-pg-section .wpo-contact-title h2 {
        font-size: 25px;
        font-size: 1.6666666667rem;
    }
}
.wpo-contact-pg-section form input,
.wpo-contact-pg-section form select,
.wpo-contact-pg-section form textarea {
    background: #f4f6fa;
    width: 100%;
    height: 45px;
    border: 1px solid transparent;
    border-radius: 30px;
    box-shadow: none !important;
    padding-left: 25px;
}
@media (max-width: 991px) {
    .wpo-contact-pg-section form input,
    .wpo-contact-pg-section form select,
    .wpo-contact-pg-section form textarea {
        height: 45px;
    }
}
.wpo-contact-pg-section form input:focus,
.wpo-contact-pg-section form select:focus,
.wpo-contact-pg-section form textarea:focus {
    border-color: #2e636b;
    background: #f4f6fa;
}
.wpo-contact-pg-section form textarea {
    height: 180px;
    padding-top: 15px;
}
.wpo-contact-pg-section form {
    margin: 0 -15px;
    overflow: hidden;
}
.wpo-contact-pg-section form ::-webkit-input-placeholder {
    font-style: 15px;
    font-style: normal;
    color: #9d9c9c;
}
.wpo-contact-pg-section form :-moz-placeholder {
    font-style: 15px;
    font-style: normal;
    color: #9d9c9c;
}
.wpo-contact-pg-section form ::-moz-placeholder {
    font-style: 15px;
    font-style: normal;
    color: #9d9c9c;
}
.wpo-contact-pg-section form :-ms-input-placeholder {
    font-style: 15px;
    font-style: normal;
    color: #9d9c9c;
}
.wpo-contact-pg-section form select {
    display: inline-block;
    color: #a9a9a9;
    cursor: pointer;
    opacity: 1;
    padding: 6px 25px;
    font-size: 15px;
    font-size: 1rem;
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
}
.wpo-contact-pg-section form .submit-area {
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
    margin-left: 0;
}
@media (max-width: 767px) {
    .wpo-contact-pg-section form .submit-area {
        margin-bottom: 0;
    }
}
.wpo-contact-pg-section form .submit-area .theme-btn,
.wpo-contact-pg-section form .submit-area .theme-btn-s3,
.wpo-contact-pg-section form .submit-area .theme-btn-s4 {
    border-radius: 30px;
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
}
.wpo-contact-pg-section form .submit-area .theme-btn:after,
.wpo-contact-pg-section form .submit-area .theme-btn-s3:after,
.wpo-contact-pg-section form .submit-area .theme-btn-s4:after {
    border-radius: 30px;
}
.wpo-contact-pg-section form > div:not(.row) {
    width: calc(50% - 30px);
    float: left;
    margin: 0 15px 25px;
}
.wpo-contact-pg-section form > .row {
    width: 100%;
    float: none;
    margin: 0;
}
@media (max-width: 600px) {
    .wpo-contact-pg-section form > div {
        width: calc(100% - 25px);
        float: none;
    }
}
.wpo-contact-pg-section form .fullwidth {
    width: calc(100% - 25px);
    float: none;
    clear: both;
}
.wpo-contact-pg-section .office-info {
    padding-bottom: 100px;
}
@media (max-width: 767px) {
    .wpo-contact-pg-section .office-info {
        padding-bottom: 60px;
    }
}
@media (max-width: 1200px) {
    .wpo-contact-pg-section .office-info .col .office-info-item {
        margin-bottom: 30px;
    }
}
@media (max-width: 1200px) {
    .wpo-contact-pg-section .office-info .col:last-child .office-info-item {
        margin-bottom: 0px;
    }
}
.wpo-contact-pg-section .office-info .office-info-item {
    text-align: center;
    box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.1);
    padding: 40px;
}
.wpo-contact-pg-section .office-info .office-info-item .office-info-icon {
    width: 85px;
    height: 85px;
    background: #f5f5f5;
    line-height: 85px;
    text-align: center;
    margin: 0 auto;
    border-radius: 50%;
}
.wpo-contact-pg-section .office-info .office-info-item .office-info-icon svg {
    width: 50px;
    line-height: 50px;
    height: 50px;
}
.wpo-contact-pg-section .office-info .office-info-item .office-info-icon img {
    width: 50px;
    line-height: 50px;
    height: 50px;
}
.wpo-contact-pg-section .office-info .office-info-item .office-info-text h2 {
    font-size: 30px;
    font-weight: 500;
    margin: 20px 0;
}
.wpo-contact-pg-section .office-info .office-info-item .office-info-text p {
    margin-bottom: 0;
}
.wpo-contact-pg-section .wpo-contact-form-area {
    padding: 50px;
    background: #fff;
    box-shadow: 0px 1px 15px 0px rgba(62, 65, 159, 0.1);
    padding-bottom: 0;
    margin-bottom: -125px;
    position: relative;
    z-index: 99;
}
@media (max-width: 767px) {
    .wpo-contact-pg-section .wpo-contact-form-area {
        padding: 30px;
        padding-top: 50px;
    }
}

.wpo-contact-map-section .wpo-contact-map {
    height: 550px;
}
.wpo-contact-map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    outline: 0;
}
.wpo-contact-map-section h2.hidden {
    display: none;
}

/*--------------------------------------------------------------
13 error-404-section
--------------------------------------------------------------*/
.error-404-section {
    text-align: center;
}
.error-404-section .error-message {
    margin-top: 70px;
    padding: 0 200px;
}
@media (max-width: 991px) {
    .error-404-section .error-message {
        margin-top: 50px;
        padding: 0 100px;
    }
}
@media (max-width: 767px) {
    .error-404-section .error-message {
        padding: 0;
    }
}
.error-404-section .error-message h3 {
    font-size: 30px;
    font-size: 2rem;
    margin: 0 0 0.8em;
}
.error-404-section .error-message p {
    margin-bottom: 1.8em;
} /*# sourceMappingURL=style.css.map */
:root {
    --primary-color: #2e636b;
    --primary-hover: #255158;
    --secondary-color: #151a30;
    --text-color: #151a30;
    --light-bg: #f8f9fa;
    --border-color: #ced4da;
    --radius-btn: 12px;
    --radius-input: 8px;
}

/* Global Branding */
.text-primary {
    color: var(--primary-color) !important;
}
.bg-primary {
    background-color: var(--primary-color) !important;
}
.border-primary {
    border-color: var(--primary-color) !important;
}

.navigation .navbar-nav > li > a.text-primary {
    color: var(--primary-color) !important;
}

/* Logo Sizing */
.navbar-brand img {
    height: 85px !important;
    width: auto !important;
    object-fit: contain;
}

.widget.about-widget .logo img,
.footer-logo {
    height: 75px !important;
    width: auto !important;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Ensure white color */
}

/* Unified Button Styling */
.btn-primary,
.theme-btn {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
    border-radius: var(--radius-btn) !important;
    padding: 15px 40px !important; /* Increased Height/Width */
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    display: inline-block;
    text-align: center;
    font-size: 16px !important;
}

.job-listing-btn {
    padding: 8px 20px !important;
    font-size: 13px !important;
    min-width: 120px !important;
}

.btn-primary:hover,
.theme-btn:hover {
    background-color: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important;
    color: #fff !important;
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    background-color: transparent !important;
    border-radius: var(--radius-btn) !important;
    padding: 10px 25px !important;
    font-size: 14px !important;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

/* Outline Theme Button variant */
.theme-btn.btn-outline-primary,
.theme-btn-outline {
    background-color: transparent !important;
    border: 1px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    padding: 15px 40px !important;
}

.theme-btn.btn-outline-primary:hover,
.theme-btn-outline:hover {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

/* Unified Input Styling */
.form-control,
.form-select,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="password"],
input[type="file"],
textarea,
select {
    background-color: var(--light-bg) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-input) !important;
    padding: 12px 16px !important;
    font-size: 15px !important;
    color: var(--text-color) !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
    height: auto !important;
    width: 100%;
}

.form-control:focus,
.form-select:focus,
input:focus,
textarea:focus,
select:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 0.25rem rgba(46, 99, 107, 0.25) !important;
    background-color: #ffffff !important;
    outline: none !important;
}

/* Fix for long dropdown options */
.form-select,
select {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

/* Sticky Sidebar for Jobs Page */
@media (min-width: 992px) {
    .jobs-sidebar-sticky {
        position: sticky;
        top: 100px;
        height: calc(100vh - 120px);
        overflow-y: auto;
    }
}

/* Job Listing Styles */
.wpo-job-item {
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.wpo-job-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Homepage specific */
.wpo-how-it-works-section,
.wpo-work-section {
    border: none !important;
}

/* Jobs Sidebar Sticky Fix */
@media (min-width: 992px) {
    .jobs-sidebar-sticky {
        position: -webkit-sticky;
        position: sticky;
        top: 100px;
        z-index: 10;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }
}
