/* ----------------------------------------------------------------------------
                                General
---------------------------------------------------------------------------- */

/* tipography */
.rokkitt-bold {
    font-family: "Rokkitt", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
}

:root {
    --orange: #fb6a19;
    --dark-blue: #0b2c3d;
    --white: #ffffff;
    --gray-85: rgba(255, 255, 255, 0.85);
    --dark-gray: #234150;
    --light-gray: #f5f5f5;
    --light-gray2: #f7f8f9;
    --gray-1: #ebecf9;
    --gray-50: #5c727d;
    --gray-94: #949494;
    --dark: #101010;
    --bg-loader: rgba(0, 0, 0, 1);
}

.lightest-text {
    font-weight: 200;
}

.highlightest-text {
    font-weight: 700;
}

.highlighted-text {
    font-weight: 500;
}

.mini-text {
    font-size: 0.7em;
}

.bigger-text {
    font-size: 1.5em;
}

@media (max-width: 1199px) {
    .bigger-text {
        font-size: 1em;
    }
}

/*bg classes*/
.bg-dark-blue {
    background-color: var(--dark-blue) !important;
}
.bg-orange {
    background-color: var(--orange) !important;
}
.bg-white {
    background-color: var(--white) !important;
}
.bg-light-gray {
    background-color: var(--light-gray) !important;
}
.bg-dark-gray {
    background-color: var(--dark-gray) !important;
}
.bg-dark {
    background-color: var(--dark) !important;
}
.bg-light-gray2 {
    background-color: var(--light-gray2) !important;
}
.bg-gray-94 {
    background-color: var(--gray-94) !important;
}
.btn-default {
    background-color: var(--white) !important;
    color: var(--dark-blue) !important;
}
.btn-default:hover {
    background-color: var(--orange) !important;
    color: var(--white) !important;
}
.bg-gray1 {
    background-color: var(--gray-1) !important;
}

/*text color classes*/
.text-white {
    color: var(--white);
}
.text-dark-blue {
    color: var(--dark-blue);
}
.text-gray-50 {
    color: var(--gray-50);
}
.text-orange {
    color: var(--orange);
}
#legal-links li {    
    padding-left: 1em !important;
    padding-right: 1em !important;
}
#legal-links a {
    color: var(--gray-50) !important;
}
#legal-links a:hover {
    color: var(--orange) !important;
}

.vs1-schedule {
    min-width: 30%;
}

.prop-desc {
    overflow: hidden;
    text-overflow: ellipsis;
    height: 85px;
}
.opus-single-property-summary .prop-desc {
    height: 25px;
}

/*forms*/
.submit,
.btn-submit {
    background-color: var(--dark-blue);
    color: var(--white);
    border-color: var(--dark-blue);
    -webkit-transition: all 0.25s ease-in;
        -moz-transition: all 0.25s ease-in;
        -ms-transition: all 0.25s ease-in;
        -o-transition: all 0.25s ease-in;
        transition: all 0.25s ease-in;
    font-weight: 500;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 4px;
    padding-bottom: 4px;
}
.submit:hover,
.btn-submit:hover {
    background-color: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}
label {
    color: var(--dark-blue);
    font-family: "Rokkitt", serif;
    font-weight: 700 !important;
    font-size: 14px !important;
}
input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    background: #f1f7fb !important;
    line-height: 1;
    padding: 10px 20px;
    height: 60px;
    border: 1px solid #f1f7fb !important;
    outline: none;
    font-size: 16px;
    font-weight: 400;
}
input[type="text"].clave-login {
    background: #fff !important;
    padding: 0.375rem 0.75rem;
    height: calc(1.5em + 0.75rem + 2px);
}
textarea {
    height: 170px;
    resize: none;
    padding: 20px;
}

/* filtros de busqueda */
.bootstrap-select [type="button"],
.bootstrap-select .btn,
.block-searcher [type="button"],
.block-searcher .btn,
.inline-filters .custom-select {
    height: 60px;
    line-height: calc(60px - (2 * 0.375rem));
}

.input-group-prepend .form-control.dropdown-toggle {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.block-searcher > * {
    box-shadow: 0 0.5em 0.5em rgba(0, 0, 0, 0.16);
}

@media (max-width: 767px) {
    .block-searcher .input-group {
        display: block;
        box-shadow: none;
    }

    .block-searcher .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn),
    .block-searcher .form-control {
        width: 100%;
    }
}

.inline-filters .nav-item .dropdown.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
    width: 100%;
}

.inline-filters.four-filters .nav-item {
    width: 25%;
}

.inline-filters.five-filters .nav-item {
    width: 20%;
}

.inline-filters.six-filters .nav-item {
    width: 16.66%;
}

@media (max-width: 575px) {
    .inline-filters.four-filters .nav-item,
    .inline-filters.five-filters .nav-item,
    .inline-filters.six-filters .nav-item {
        width: 100%;
    }
}

/*breadcrumbs*/
.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
}
.op-footer.style-3 .widget ul.breadcrumb-list {
    display: block;
}
.breadcrumb-list li {
    margin-right: 0.15em;    
}
.breadcrumb-list li a {    
    color: var(--orange);
}
.breadcrumb-list li:first-child::before {
    content: "";
}
.breadcrumb-list li::before {
    content: ">";    
    color: var(--orange);
}
.op-footer.style-3 .widget ul.breadcrumb-list li::before {
    font-size: 15px;
}
.op-footer.style-3 .widget ul.breadcrumb-list li a {
    padding-left: 0;
}
.op-footer.style-3 .widget ul.breadcrumb-list li a::before {
    content: "";
}

.bid-icon {
    width: 50px;
    height: 50px;
}

.bid-heading {
    margin-left: 1em !important;
}

.rounded-circle {
    border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    -ms-border-radius: 50% !important;
    -o-border-radius: 50% !important;
}

.bid-alert h3 {
    padding: 0.1em !important;
    background-color: var(--orange);
    color: var(--white);
    font-size: 22px !important;
    border-radius: 0.5em;
    -webkit-border-radius: 0.5em;
    -moz-border-radius: 0.5em;
    -ms-border-radius: 0.5em;
    -o-border-radius: 0.5em;
}

.sv1-btn {
    font-size: 14px !important;
    padding-top: 1em !important;
    padding-bottom: 1em !important;
    transition: all 0.25s ease-in;
    -webkit-transition: all 0.25s ease-in;
    -moz-transition: all 0.25s ease-in;
    -ms-transition: all 0.25s ease-in;
    -o-transition: all 0.25s ease-in;
}
.submit:focus,
.submit:active,
.sv1-btn:hover,
.sv1-btn:focus,
.sv1-btn:active {
    background-color: var(--orange) !important;
    border-color: var(--orange) !important;
    color: var(--white) !important;
}
.attribute-line {
    margin-bottom: 0;
    list-style-type: none;
    font-size: 0.8em !important;
    padding: 0.5em 1em;    
}
.d-flex .attribute-line,
.d-inline-flex .attribute-line,
.d-sm-flex .attribute-line,
.d-sm-inline-flex .attribute-line,
.d-md-flex .attribute-line,
.d-md-inline-flex .attribute-line,
.d-lg-flex .attribute-line,
.d-lg-inline-flex .attribute-line,
.d-xl-flex .attribute-line,
.d-xl-inline-flex .attribute-line {
    padding: 1em 0;
}

.d-flex .attribute-line:first-child,
.d-inline-flex .attribute-line:first-child,
.d-sm-flex .attribute-line:first-child,
.d-sm-inline-flex .attribute-line:first-child,
.d-md-flex .attribute-line:first-child,
.d-md-inline-flex .attribute-line:first-child,
.d-lg-flex .attribute-line:first-child,
.d-lg-inline-flex .attribute-line:first-child,
.d-xl-flex .attribute-line:first-child,
.d-xl-inline-flex .attribute-line:first-child {
    padding-right: 0;
}

.d-flex .attribute-line:last-child,
.d-inline-flex .attribute-line:last-child,
.d-sm-flex .attribute-line:last-child,
.d-sm-inline-flex .attribute-line:last-child,
.d-md-flex .attribute-line:last-child,
.d-md-inline-flex .attribute-line:last-child,
.d-lg-flex .attribute-line:last-child,
.d-lg-inline-flex .attribute-line:last-child,
.d-xl-flex .attribute-line:last-child,
.d-xl-inline-flex .attribute-line:last-child {
    padding-left: 0;
}

.attribute-line,
.d-flex .attribute-line:last-child,
.d-inline-flex .attribute-line:last-child,
.d-sm-flex .attribute-line:last-child,
.d-sm-inline-flex .attribute-line:last-child,
.d-md-flex .attribute-line:last-child,
.d-md-inline-flex .attribute-line:last-child,
.d-lg-flex .attribute-line:last-child,
.d-lg-inline-flex .attribute-line:last-child,
.d-xl-flex .attribute-line:last-child,
.d-xl-inline-flex .attribute-line:last-child {
    border-bottom: 1px solid #202832;
}

.attribute-line i>svg {
    width: 25px;
    height: auto;
}

.attribute-line:last-child {
    border-bottom: none;
}

.attribute-line li {
    margin-left: 10%;
}

.attribute-line.flags li,
.attribute-line li:first-child {
    margin-left: 0;
}

.attribute-line.flags,
.attribute-line li:first-child {
    list-style: none;
}

.attribute-line i.svg-icon {
    width: 2em;
    height: 2em;
}

.attribute-line .disabled i.svg-icon path {
    fill: rgba(0, 0, 0, 0.2);
}

.attribute-line.flags {
    text-align: center;
}
.alert-success {
    background-color: #00da18 !important;
}
.text-center .vertical-text {
    transform: translateX(-50%) translateY(-50%) rotate(180deg);
    top: 50%;
    left: 50%;
    position: absolute;
}
.vertical-text {
    writing-mode: vertical-lr;
    height: 100%;    
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: vertical-lr;
}

@media (max-width: 576px) {
    #legal-links {    
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
    }
    #legal-links a {
        font-size: 13px !important;
    }
}

/*text size classes*/
.text-50 {
    font-size: 50px !important;
}
.text-18 {
    font-size: 18px !important;
}
.text-24 {
    font-size: 24px !important;
}
.text-18 {
    font-size: 18px !important;
}
.text-16 {
    font-size: 16px !important;
}
.text-13 {
    font-size: 13px !important;
}
.text-14 {
    font-size: 14px !important;
}
.text-12 {
    font-size: 12px !important;
}

#cookie-policy {
    background-color: #2d394b;
    position: fixed;
    bottom: 0;
    z-index: 8999;
}

#cookie-policy h1,
#cookie-policy h2,
#cookie-policy h3,
#cookie-policy h4,
#cookie-policy h5,
#cookie-policy h6 {
    color: var(--white);
}

#cookie-config-modal.modal {
    z-index: 9999;
}

/*countdown styles*/
.countdown-container {
    margin-left: auto;
    margin-right: auto;
    padding: 0.5rem 0;
    font-family: "Rokkitt", serif;
    color: var(--dark-blue);
    display: flex;
    justify-content: space-around;
    align-items: center;
    line-height: 1em;
}

.countdown-container .countdown-label {
    text-align: center;
}

.countdown-container .countdown-items {
    display: flex;
    justify-content: center;
    align-items: center;
}

.countdown-container .countdown-item {
    text-align: center;
    margin-left: .5rem;
    margin-right: .5rem;
}

.countdown-container .countdown-item-number {
    font-size: .8em;
    font-weight: 700;
}

.countdown-container .countdown-item-label {
    font-size: .6em;
}

.disabled small {
    opacity: 0.5 !important;
}

.col-1.compact,
.col-2.compact,
.col-3.compact,
.col-4.compact,
.col-5.compact,
.col-6.compact,
.col-7.compact,
.col-8.compact,
.col-9.compact,
.col-10.compact,
.col-11.compact,
.col-12.compact,
.col.compact,
.col-auto.compact,
.col-sm-1.compact,
.col-sm-2.compact,
.col-sm-3.compact,
.col-sm-4.compact,
.col-sm-5.compact,
.col-sm-6.compact,
.col-sm-7.compact,
.col-sm-8.compact,
.col-sm-9.compact,
.col-sm-10.compact,
.col-sm-11.compact,
.col-sm-12.compact,
.col-sm.compact,
.col-sm-auto.compact,
.col-md-1.compact,
.col-md-2.compact,
.col-md-3.compact,
.col-md-4.compact,
.col-md-5.compact,
.col-md-6.compact,
.col-md-7.compact,
.col-md-8.compact,
.col-md-9.compact,
.col-md-10.compact,
.col-md-11.compact,
.col-md-12.compact,
.col-md.compact,
.col-md-auto.compact,
.col-lg-1.compact,
.col-lg-2.compact,
.col-lg-3.compact,
.col-lg-4.compact,
.col-lg-5.compact,
.col-lg-6.compact,
.col-lg-7.compact,
.col-lg-8.compact,
.col-lg-9.compact,
.col-lg-10.compact,
.col-lg-11.compact,
.col-lg-12.compact,
.col-lg.compact,
.col-lg-auto.compact,
.col-xl-1.compact,
.col-xl-2.compact,
.col-xl-3.compact,
.col-xl-4.compact,
.col-xl-5.compact,
.col-xl-6.compact,
.col-xl-7.compact,
.col-xl-8.compact,
.col-xl-9.compact,
.col-xl-10.compact,
.col-xl-11.compact,
.col-xl-12.compact,
.col-xl.compact,
.col-xl-auto.compact,
.alert.compact,
.btn.compact {
    line-height: 1.5em;
    padding-left: 0;
    padding-right: 0;
}

.modal-full {
    max-width: 95%;
    width: 95%;
}

.status-modal {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 200;
}

.status-modal .close {
    float: none;
    font-size: 3rem;
    line-height: 2rem;
    top: 0.5rem;
    right: 0.5rem;
    position: absolute;
}

.status-modal a {
    text-decoration: underline;
}

.status-modal a.btn,
.status-modal a.badge {
    text-decoration: none;
}

.status-modal .modal-body {
    padding: 2rem;
}

.status-modal .note {
    font-size: 1rem;
}

.status-modal .auction-logo {
    width: 12rem;
}

.status-modal .contact-info {
    font-size: 2rem;
}

.historico-modal-opener:hover {
    background-color: rgba(0, 86, 179, 0.075);
}

td .historico-fields {
    min-width: 28em;
}

td .historico-fields .historico-item {
    width: 38%;
}

td .historico-fields .historico-item.historico-bid {
    width: 20%;
}

td .historico-fields .historico-item.historico-expand {
    width: 4%;
}

.historico-expand i {
    font-size: 2em;
}

a.historico-expand {
    color: #8E9298;
}

.historico-modal .historico-fields .historico-item {
    width: 33%;
}

@media (max-width: 575px) {
    .historico-modal .historico-fields .historico-item {
        width: 100%;
    }

    .historico-modal .historico-fields {
        border-bottom: 1px solid #dee2e6;
    }
}

.historico-modal .historico-fields {
    text-align: center;
}

.historico-modal .historico-fields .historico-item:first-child {
    text-align: left;
}

.historico-modal .historico-fields .historico-item:last-child {
    text-align: right;
}

@media (min-width: 576px) and (max-width: 991px) {
    .historico-modal .modal-dialog {
        max-width: 650px;
    }
}

body table.dataTable.table th, body table.dataTable.table td {
    border: none;
}

.styled-list {
    margin-bottom: 1rem;
}

.op-footer ul.contact-info,
.op-footer ol.contact-info,
.op-footer ul.social-icons,
.op-footer ol.social-icons,
.op-header ul.contact-info,
.op-header ol.contact-info,
ul.social-icons-header,
ol.social-icons-header,
ul.navigation,
ol.navigation,
ul.amenities-info,
ol.amenities-info,
ul.breadcrumb-list,
ol.breadcrumb-list,
ul.property-information,
ol.property-information {
    padding: 0;
    margin: 0;
    list-style: none;
}

/* WordPress Core
-------------------------------------------------------------- */
.alignnone {
    margin: 5px 20px 20px 0;
}

p .alignnone {
    margin: 5px 20px 0 0;
}

.footer-logo {
    margin-top: -8px;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float: right;
    margin: 5px 0 10px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 10px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 10px 20px;
}

a img.alignnone {
    margin: 5px 20px 10px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 10px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

table {
    width: 100%;
    margin-bottom: 20px;
}

td,
th {
    border: 1px solid #dcdcdc;
    padding: 10px;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    margin: 0;
    padding: 0 4px 5px;
}

figcaption {
    margin-top: 10px;
    text-align: center;
}

/* Text meant only for screen readers. */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    white-space: nowrap;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */
}

.bypostauthor {
    background: #fff;
}

.gallery-caption {
    font-size: 13px;
}

.post-password-form {
    padding: 25px;
    border: 2px solid #000000;
}

.post-password-form label {
    width: 100%;
}

.post-password-form label input[type=password] {
    padding: 15px;
    border-radius: 30px;
    border: 1px solid #000000;
    width: 100%;
}

.post-password-form input[type=submit] {
    padding: 9px 25px;
    border-radius: 30px;
    height: 40px !important;
}

.post-comments-container {
    clear: both;
}

.sticky {
    position: relative;
}

/* Text meant only for screen readers. */
.widget ul,
.widget ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.elementor-widget-image img {
    width: 100%;
}

a {
    color: #101010;
    line-height: 1.5;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.4s;
    text-decoration: none;
}

a:hover {
    color: #fb6a19;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Rokkitt", serif;
    overflow-x: hidden;
    font-size: 16px;
    color: #5C727D;
    line-height: 1.714;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Rokkitt", serif;
    color: #0B2C3D;
}

h1 {
    font-size: 50px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 26px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

img.header-logo {
    max-height: 84px;    
    width: auto;
}

figure img,
.widget img {
    width: 100%;
    height: auto;
}

.wp-block-cover__video-background {
    width: 100%;
}

.rsswidget img {
    width: auto;
}

p img {
    width: 100%;
    height: auto;
    margin: auto !important;
}

select {
    display: block;
    width: 100%;
    height: 65px;
    border: 1px solid #dddddd;
    font-size: 18px;
    color: #5C727D;
    outline: none;
    padding: 10px 80px 10px 30px;
    transition: all 500ms ease;
}

.post-password-form input[type=submit] {
    border: 0;
}

iframe {
    width: 100%;
}

.widget {
    margin-bottom: 40px;
}

.widget .rsswidget {
    columns: #ffffff;
}

.widget table th,
.widget table td {
    color: #5C727D;
}

.widget .calendar_wrap .wp-calendar-nav-prev a {
    color: #5C727D;
}

figure {
    margin: 0 !important;
}

figure .wp-block-embed__wrapper {
    word-break: break-all;
}

body.relative-header .page-content {
    margin: 100px 0;
}

body.relative-header .tags-container {
    margin-top: 50px;
}

body.relative-header .op-header.style-3.sticky-header .sticky-header-wrapper .navigation-menu-container ul>li a {
    font-size: 13px;
    padding: 17px 5px;
}

body.relative-header .op-header.style-3 .navigation-menu-container ul li a {
    font-size: 13px;
    padding: 17px 10px;
}

.counter-image>.elementor-widget-wrap {
    height: 380px;
}

.process-image {
    height: 100%;
}

.process-image .elementor-widget-container {
    height: 100%;
}

.process-image .elementor-widget-container img {
    height: 100%;
}

@media (max-width: 1024.98px) {
    .about-image>.elementor-widget-wrap {
        height: 450px;
    }

    .about-section>.elementor-container {
        justify-content: center;
    }
}

/* Gutenberg
-------------------------------------------------------------- */
.wp-block-gallery {
    padding-top: 15px;
}

.wp-block-gallery .blocks-gallery-image,
.wp-block-gallery .blocks-gallery-item {
    border: none;
    padding: 0;
}

.wp-block-gallery .blocks-gallery-image::before,
.wp-block-gallery .blocks-gallery-item::before {
    display: none;
}

.wp-block-quote .cite {
    display: block;
}

audio,
canvas,
progress,
video {
    display: block;
    width: 100%;
}

.wp-block-audio {
    margin-bottom: 30px;
}

.wp-block-quote,
.wp-block-quote.is-large {
    margin-bottom: 30px;
}

pre {
    margin-top: 20px;
    margin-bottom: 20px;
}

.wp-block-pullquote {
    margin-right: 0;
}

.wp-block-separator {
    border-bottom: 2px solid #eee;
    max-width: 100%;
}

.wp-block-cover .wp-block-cover-text,
.wp-block-cover .wp-block-cover-text strong {
    color: #ffffff !important;
}

.alignleft {
    float: left;
    margin-right: 10px;
    margin-bottom: 15px;
    clear: left;
}

.alignright {
    float: right;
    margin-left: 10px;
    margin-bottom: 15px;
    clear: right;
}

.wp-block-group.has-background {
    padding: 20px 30px;
    margin-bottom: 28px;
}

.wp-block-group.has-background .wp-block-button {
    margin: 10px 0 20px;
}

.wp-block-button {
    margin-bottom: 1rem !important;
}

.wp-block-search__button {
    color: #ffffff;
    border: none;
    outline: none;
    padding: 10px 20px;
}

.wp-block-categories-dropdown select {
    padding: 10px;
}

.blocks-gallery-grid .blocks-gallery-item {
    position: relative;
    margin-bottom: 16px;
    padding-left: 0 !important;
}

.blocks-gallery-grid .blocks-gallery-item:before {
    display: none !important;
}

div[class*=wp-block-columns] {
    margin-top: 3rem;
    margin-bottom: 2rem !important;
}

div[class*=wp-block-spacer],
div[class*=wp-block-embed__wrapper],
div[class^=wp-block-column],
div[class*=wp-block-rss__item-title],
div[class*=wp-block-group__inner-container] {
    margin-bottom: 0;
}

.wp-block-table {
    margin: 0;
    margin-bottom: 20px;
}

.wp-block-columns.alignfull,
.alignfull:not(.has-background) .wp-block-columns {
    padding-left: 1rem;
    padding-right: 1rem;
}

.wp-block-gallery {
    margin-bottom: 3rem;
    padding-top: 0;
}

@media (min-width: 700px) {
    .gallery-columns-4 .gallery-item {
        max-width: 25%;
    }
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    margin: auto;
}

.gallery-item {
    margin: 0;
    padding: 5px;
    width: 100%;
    max-width: 33.33%;
}

.wp-block-image.alignfull img,
.wp-block-image.alignwide img {
    width: 100% !important;
}

.wp-block-image~ul {
    padding-left: 20px;
}

.gallery-item .wp-caption-text {
    text-align: left;
    width: 70%;
}

@media (min-width: 700px) {
    .gallery-columns-2 .gallery-item {
        max-width: 50%;
    }

    .gallery-columns-3 .gallery-item {
        max-width: 33.33%;
    }

    .gallery-columns-4 .gallery-item {
        max-width: 25%;
    }

    .gallery-columns-5 .gallery-item {
        max-width: 20%;
    }

    .gallery-columns-6 .gallery-item {
        max-width: 16.66%;
    }

    .gallery-columns-7 .gallery-item {
        max-width: 14.28%;
    }

    .gallery-columns-8 .gallery-item {
        max-width: 12.5%;
    }

    .gallery-columns-9 .gallery-item {
        max-width: 11.11%;
    }
}

.wp-block-embed__wrapper iframe {
    min-height: 450px;
}

.wp-block-search__input {
    color: #5C727D;
    outline: none;
    height: 42px;
    background: #ffffff;
    font-size: 13px;
    box-shadow: none;
    line-height: 18px;
    padding: 10px 20px;
    border-radius: 4px;
    display: inline-block;
    vertical-align: middle;
    border: 1px solid #000000;
    text-transform: capitalize;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

pre {
    border: 0.1rem solid #000000;
    line-height: 1.5;
    margin: 2rem 0;
    overflow: auto;
    padding: 3rem 2rem;
    text-align: left;
}

div[class*=wp-block].alignleft,
figure[class*=wp-block].alignleft {
    margin-right: 30px;
}

iframe {
    width: 100%;
}

@media (max-width: 767px) {
    .wp-block-columns.has-2-columns {
        grid-template-columns: 100%;
    }

    .container .alignwide {
        padding: 0;
    }
}

@media (min-width: 768px) {
    .wp-block-columns.has-2-columns {
        grid-template-columns: 50% 50%;
    }
}

.admin-bar .op-header.style-3 {
    top: 0;
}

.op-header.style-3 {
    position: relative;
}

.op-header.style-3 .sticky-header-wrapper {
    display: none;
}

.op-header.style-3.sticky-header .logo-container-sticky img {
    width: 90px;
}

.op-header.style-3.sticky-header .top-header,
.op-header.style-3.sticky-header .pre-header {
    display: none;
}

.op-header.style-3.sticky-header .sticky-header-wrapper {
    display: block;
    background-color: #ffffff;
    box-shadow: 0px 13px 25px -12px rgba(0, 0, 0, 0.25);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999999999999;
    animation-name: slideInDown;
    animation-duration: 1s;
    animation-fill-mode: both;
}

.op-header.style-3.sticky-header .sticky-header-wrapper .logo-container {
    padding: 20px 0;
}

.op-header.style-3.sticky-header .sticky-header-wrapper .logo-container img {
    max-width: 230px;
}

.op-header.style-3.sticky-header .sticky-header-wrapper .navigation-menu-container ul>li {
    padding: 8px 0;
}

.op-header.style-3.sticky-header .sticky-header-wrapper .navigation-menu-container ul>li::before {
    display: none;
}

.op-header.style-3.sticky-header .sticky-header-wrapper .navigation-menu-container ul>li a {
    position: relative;
    display: inline-block;
    letter-spacing: 0px;
    opacity: 1;
    font-weight: 600;
    padding: 17px 23px;
    color: #101010;
    font-size: 16px;
    border-bottom: 0;
}

.op-header.style-3.sticky-header .sticky-header-wrapper .navigation-menu-container ul>li a:hover {
    color: #fb6a19;
}

.op-header.style-3.sticky-header .sticky-header-wrapper .navigation-menu-container ul>li:last-child a {
    padding-right: 0;
}

.op-header.style-3.sticky-header .sticky-header-wrapper .navigation-menu-container ul>li.current-menu-item>a,
.op-header.style-3.sticky-header .sticky-header-wrapper .navigation-menu-container ul>li.current_page_item>a {
    color: #fb6a19;
}

.op-header.style-3.sticky-header .sticky-header-wrapper .navigation-menu-container ul>li.current-menu-ancestor>a,
.op-header.style-3.sticky-header .sticky-header-wrapper .navigation-menu-container ul>li .current-menu-parent>a {
    color: #fb6a19;
}

.op-header.style-3.sticky-header .sticky-header-wrapper .navigation-menu-container ul>li.current-menu-ancestor ul li.current-menu-item a,
.op-header.style-3.sticky-header .sticky-header-wrapper .navigation-menu-container ul>li.current-menu-ancestor ul li.current_page_item a,
.op-header.style-3.sticky-header .sticky-header-wrapper .navigation-menu-container ul>li .current-menu-parent ul li.current-menu-item a,
.op-header.style-3.sticky-header .sticky-header-wrapper .navigation-menu-container ul>li .current-menu-parent ul li.current_page_item a {
    color: #ffffff;
    background-color: #fb6a19;
}

.op-header.style-3.sticky-header .sticky-header-wrapper .navigation-menu-container ul>li.current_page_parent a {
    color: #ffffff !important;
}

.op-header.style-3.sticky-header .sticky-header-wrapper .navigation-menu-container ul>li ul li a {
    padding: 10px 15px;
    font-size: 15px;
    font-weight: 500;
}

.op-header.style-3.sticky-header .sticky-header-wrapper .navigation-menu-container ul>li .sub-menu li::before {
    display: none;
}

.op-header.style-3.sticky-header .sticky-header-wrapper .navigation-menu-container ul>li .sub-menu li a:hover {
    color: #ffffff;
}

.op-header.style-3.sticky-header .sticky-header-wrapper .navigation-menu-container ul>li ul li {
    padding: 0;
}

@keyframes slideInDown {
    from {
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.op-header.style-3 .pre-header {
    background-color: #0B2C3D;
    position: relative;
    z-index: 99999999;
}

.op-header.style-3 .pre-header .header-text {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.5;
    padding: 20px 0;
}

.pre-header .row > div {
    height: 64px;
}

@media (max-width: 1024.98px) {
    .op-header.style-3 .pre-header .header-text {
        padding: 15px 0 10px;
    }
}

@media (max-width: 767.98px) {
    .op-header.style-3 .pre-header .header-text {
        padding: 10px 0 10px;
    }
}

.op-header.style-3 .pre-header .header-social-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: -20px;
    z-index: 10;
}

@media (max-width: 576px) {
    .op-header.style-3 .pre-header .header-social-wrapper {
        align-items: center !important;
        width: 100vw !important;
    }
    .op-header.style-3 .pre-header .header-social-wrapper .top-header-info {
        height: 40px !important;
    }
}

@media (max-width: 1024.98px) {
    .op-header.style-3 .pre-header .header-social-wrapper {
        position: relative;
        bottom: 0;
    }

    .op-header.style-3 .pre-header .header-social-wrapper::before,
    .op-header.style-3 .pre-header .header-social-wrapper::after {
        display: none;
    }
}

.op-header.style-3 .pre-header .header-social-wrapper::before {
    position: absolute;
    content: "";
    left: 0px;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fb6a19;
    transform: skewX(-25deg);
}

.op-header.style-3 .pre-header .header-social-wrapper::after {
    position: absolute;
    content: "";
    left: 50%;
    top: 0px;
    width: 100vw;
    height: 100%;
    background-color: #fb6a19;
}

.op-header.style-3 .pre-header .header-social-wrapper .top-header-info {
    padding: 20px 0;
    padding-left: 40px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024.98px) {
    .op-header.style-3 .pre-header .header-social-wrapper .top-header-info {
        padding: 10px 0 15px 0;
    }
}

@media (max-width: 767.98px) {
    .op-header.style-3 .pre-header .header-social-wrapper .top-header-info {
        padding: 0;
        padding-bottom: 10px;
    }
}

.op-header.style-3 .pre-header .header-social-wrapper .top-header-info span,
.op-header.style-3 .pre-header .header-social-wrapper .top-header-info a {
    font-size: 16px;
    font-weight: 500;
    color: #0B2C3D;
    line-height: 1.5;
}

@media (max-width: 1024.98px) {

    .op-header.style-3 .pre-header .header-social-wrapper .top-header-info span,
    .op-header.style-3 .pre-header .header-social-wrapper .top-header-info a {
        color: #ffffff !important;
    }
}

@media (max-width: 767.98px) {

    .op-header.style-3 .pre-header .header-social-wrapper .top-header-info span,
    .op-header.style-3 .pre-header .header-social-wrapper .top-header-info a {
        font-weight: 400;
    }
}

.op-header.style-3 .pre-header .header-social-wrapper .top-header-info ul li {
    padding-left: 15px;
}

.op-header.style-3 .pre-header .header-social-wrapper .top-header-info ul li a {
    font-size: 18px;
    color: #ffffff;
    transition: all 0.4s;
    transition: all 0.4s;
}

.op-header.style-3 .pre-header .header-social-wrapper .top-header-info ul li a svg,
.op-header.style-3 .pre-header .header-social-wrapper .top-header-info ul li a svg path {
    fill: #ffffff;
}

.op-header.style-3 .pre-header .header-social-wrapper .top-header-info ul li a:hover {
    color: #0B2C3D;
}

.op-header.style-3 .pre-header .header-social-wrapper .top-header-info ul li a:hover svg,
.op-header.style-3 .pre-header .header-social-wrapper .top-header-info ul li a:hover svg path {
    fill: #0B2C3D;
}

@media (max-width: 1024.98px) {
    .op-header.style-3 .pre-header .header-social-wrapper .top-header-info ul li a:hover {
        color: #fb6a19;
    }
}

.op-header.style-3 .top-header {
    background-color: #ffffff;
    position: relative;
    padding: 60px 0;
}

.op-header.style-3 .top-header a {
    display: inline-block;
}

.op-header.style-3 .top-header a .main-logo {
    width: 120px;
}

@media (max-width: 1024.98px) {
    .op-header.style-3 .top-header {
        padding: 30px 0 60px 0;
    }
}

@media (max-width: 767.98px) {
    .op-header.style-3 .top-header .contact-info,
    .op-footer.style-3 .op-main-footer .contact-info.op-header-style-3 {
        flex-wrap: wrap;
    }
}

.op-header.style-3 .top-header .contact-info li,
.op-footer.style-3 .op-main-footer .contact-info.op-header-style-3 li {
    display: flex;
    align-items: center;
}

.op-header.style-3 .top-header .contact-info li:not(:last-child),
.op-footer.style-3 .op-main-footer .contact-info.op-header-style-3 li:not(:last-child) {
    margin-right: 26px;
}

@media (max-width: 767.98px) {
    .op-header.style-3 .top-header .contact-info li,
    .op-footer.style-3 .op-main-footer .contact-info.op-header-style-3 li {
        flex-basis: 100%;
        margin-bottom: 20px;
    }
}

.op-header.style-3 .top-header .contact-info li strong {
    color: #101010;
    display: block;
}

.op-header.style-3 .top-header .contact-info li span {
    font-size: 15px;
    font-weight: 400;
    color: #5C727D;
    line-height: 1.4;
}

.op-header.style-3 .top-header .contact-info li span a {
    font-size: 15px;
    font-weight: 400;
    color: #5C727D;
    line-height: 1.4;
    display: block;
}

.op-header.style-3 .top-header .contact-info li span a:hover {
    color: #fb6a19;
}

.op-header.style-3 .top-header .contact-info li i,
.op-footer.style-3 .op-main-footer .contact-info.op-header-style-3 li i {
    width: 48px;
    height: 48px;
    min-width: 48px;
    font-size: 24px;
    text-align: center;
    border: 1px dashed;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.op-header.style-3 .top-header .contact-info li i {
    color: #101010;
    border-color: #101010;
}

.op-header.style-3 .bottom-header-wrapper {
    position: absolute;
    width: 100%;
    right: 0;
    left: 0;
    bottom: -34px;
    z-index: 10;
}

@media (max-width: 1024.98px) {
    .op-header.style-3 .bottom-header-wrapper {
        bottom: -37px;
    }
}

.op-header.style-3 .bottom-header-wrapper .bottom-header .btn-container.style-20 {
    display: flex;
    flex-basis: 100%;
}

.op-header.style-3 .bottom-header-wrapper .bottom-header .btn-container.style-20 .op-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 35px;
}

.op-header.style-3 .bottom-header-wrapper .bottom-header .btn-container.style-20 .op-button:hover {
    background-color: #101010;
}

.op-header.style-3 .bottom-header-wrapper .bottom-header .menu-container {
    background-color: #0B2C3D;
    width: calc(100% + 30px);
}

@media (max-width: 767.98px) {
    .op-header.style-3 .bottom-header-wrapper .bottom-header .menu-container {
        width: 100%;
    }
}

.op-header.style-3 .bottom-header-wrapper .bottom-header .header-search-wrapper {
    position: relative;
}

.op-header.style-3 .bottom-header-wrapper .bottom-header .header-search-wrapper.active form {
    display: block;
}

.op-header.style-3 .bottom-header-wrapper .bottom-header .header-search-wrapper.active .header-search::before {
    display: none;
}

.op-header.style-3 .bottom-header-wrapper .bottom-header .header-search-wrapper.active .header-search:after {
    display: flex;
}

.op-header.style-3 .bottom-header-wrapper .bottom-header .header-search-wrapper form {
    position: absolute;
    padding: 25px 20px;
    background-color: #ffffff;
    top: 100%;
    right: 0;
    border: 3px solid #fb6a19;
    width: 280px;
    border-radius: 0px;
    z-index: 99999;
    display: none;
}

.op-header.style-3 .bottom-header-wrapper .bottom-header .header-search-wrapper form::before {
    position: absolute;
    content: "\f002";
    top: 50%;
    right: 30px;
    margin: auto;
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
    font-size: 18px;
    font-weight: 900;
    color: #101010;
}

.op-header.style-3 .bottom-header-wrapper .bottom-header .header-search-wrapper form input[type=submit] {
    position: absolute;
    top: 50%;
    right: 30px;
    width: 18px;
    height: 30px;
    background-color: transparent;
    border: 0;
    font-size: 0;
    transform: translateY(-50%);
    padding: 0;
}

.op-header.style-3 .bottom-header-wrapper .bottom-header .header-search-wrapper input[type=text] {
    display: block;
    width: 100%;
    color: #5C727D;
    line-height: 1.5;
    padding: 7px 40px 7px 15px;
    height: 40px;
    text-align: left;
    background-color: #ffffff;
    outline: none;
    border: 1px solid #e0e0e0;
}

.op-header.style-3 .bottom-header-wrapper .bottom-header .header-search-wrapper input[type=text]:focus {
    border-color: #fb6a19;
    background-color: #ffffff !important;
}

.op-header.style-3 .bottom-header-wrapper .bottom-header .header-search {
    position: relative;
    display: inline-block;
    text-align: center;
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.op-header.style-3 .bottom-header-wrapper .bottom-header .header-search::before {
    position: absolute;
    content: "\f002";
    top: 50%;
    right: 0;
    left: 0;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px dashed #fb6a19;
    border-radius: 50px;
    margin: auto;
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
    font-size: 16px;
    font-weight: 900;
    color: #ffffff;
}

.op-header.style-3 .bottom-header-wrapper .bottom-header .header-search::after {
    position: absolute;
    content: "\f00d";
    top: 50%;
    right: 0;
    left: 0;
    width: 40px;
    height: 40px;
    display: none;
    justify-content: center;
    align-items: center;
    border: 2px dashed #fb6a19;
    border-radius: 50px;
    margin: auto;
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
    font-size: 16px;
    font-weight: 900;
    color: #ffffff;
}

.op-header.style-3 .navigation-menu-container ul {
    display: flex;
    list-style: none;
}

.op-header.style-3 .navigation-menu-container ul>li {
    position: relative;
}

.op-header.style-3 .navigation-menu-container ul>li:not(:last-child)::before {
    position: absolute;
    content: "";
    right: 0px;
    top: 50%;
    width: 2px;
    height: 20px;
    margin-top: -10px;
    background-color: rgba(68, 68, 68, 0.3);
}

.op-header.style-3 .navigation-menu-container ul>li:hover::before {
    display: none;
}

.op-header.style-3 .navigation-menu-container ul>li>a {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
    color: #ffffff;
    white-space: nowrap;
    padding: 17px 30px;
    display: inline-block;
    border-bottom: 3px solid transparent;
}

@media (max-width: 1199.98px) {
    .op-header.style-3 .navigation-menu-container ul>li>a {
        padding: 17px 25px;
    }
}

@media (max-width: 1024.98px) {
    .op-header.style-3 .navigation-menu-container ul>li>a {
        padding: 17px 30px;
    }
}

.op-header.style-3 .navigation-menu-container ul>li>a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fb6a19;
}

.op-header.style-3 .navigation-menu-container ul>li .sub-menu,
.op-header.style-3 .navigation-menu-container ul>li .children {
    position: absolute;
    left: 0px;
    top: 100%;
    width: 240px;
    padding: 0px;
    display: block;
    z-index: 100;
    visibility: hidden;
    opacity: 0;
    background: #ffffff;
    transition: all 0.4s;
    border-top: 3px solid #fb6a19;
}

.op-header.style-3 .navigation-menu-container ul>li .sub-menu li,
.op-header.style-3 .navigation-menu-container ul>li .children li {
    position: relative;
    width: 100%;
    display: block;
}

.op-header.style-3 .navigation-menu-container ul>li .sub-menu li::before,
.op-header.style-3 .navigation-menu-container ul>li .children li::before {
    display: none;
}

.op-header.style-3 .navigation-menu-container ul>li .sub-menu li:not(:last-child),
.op-header.style-3 .navigation-menu-container ul>li .children li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.op-header.style-3 .navigation-menu-container ul>li .sub-menu li a,
.op-header.style-3 .navigation-menu-container ul>li .children li a {
    display: block;
    width: 100%;
    padding: 10px 15px;
    line-height: 1.5;
    font-weight: 400;
    font-size: 15px;
    color: #101010;
}

.op-header.style-3 .navigation-menu-container ul>li .sub-menu li a:hover,
.op-header.style-3 .navigation-menu-container ul>li .children li a:hover {
    background-color: #fb6a19;
    color: #ffffff;
}

.op-header.style-3 .navigation-menu-container ul>li .sub-menu li .sub-menu,
.op-header.style-3 .navigation-menu-container ul>li .sub-menu li .children,
.op-header.style-3 .navigation-menu-container ul>li .children li .sub-menu,
.op-header.style-3 .navigation-menu-container ul>li .children li .children {
    left: 100%;
    position: absolute;
    top: 20px;
    width: 240px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    background: #ffffff;
    border-top: 3px solid #fb6a19;
}

.op-header.style-3 .navigation-menu-container ul>li .sub-menu li:hover>a,
.op-header.style-3 .navigation-menu-container ul>li .children li:hover>a {
    opacity: 1;
    color: #ffffff;
    background-color: #fb6a19;
}

.op-header.style-3 .navigation-menu-container ul>li .sub-menu li:hover .sub-menu,
.op-header.style-3 .navigation-menu-container ul>li .sub-menu li:hover .children,
.op-header.style-3 .navigation-menu-container ul>li .children li:hover .sub-menu,
.op-header.style-3 .navigation-menu-container ul>li .children li:hover .children {
    opacity: 1;
    visibility: visible;
}

.op-header.style-3 .navigation-menu-container ul>li:hover .sub-menu,
.op-header.style-3 .navigation-menu-container ul>li:hover .children {
    visibility: visible;
    opacity: 1;
}

.op-header.style-3 .navigation-menu-container ul>li.current-menu-item>a,
.op-header.style-3 .navigation-menu-container ul>li.current_page_item>a {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fb6a19;
}

.op-header.style-3 .navigation-menu-container ul li .sub-menu li.current-menu-item>a,
.op-header.style-3 .navigation-menu-container ul li .sub-menu li.current_page_item>a,
.op-header.style-3 .navigation-menu-container ul li .children li.current-menu-item>a,
.op-header.style-3 .navigation-menu-container ul li .children li.current_page_item>a {
    color: #ffffff;
    background-color: #fb6a19;
}

.op-header.style-3 .navigation-menu-container ul li .sub-menu li.current-menu-ancestor>a,
.op-header.style-3 .navigation-menu-container ul li .sub-menu li.current_page_parent>a,
.op-header.style-3 .navigation-menu-container ul li .children li.current-menu-ancestor>a,
.op-header.style-3 .navigation-menu-container ul li .children li.current_page_parent>a {
    color: #ffffff;
    background-color: #fb6a19;
}

.op-header.style-3 .navigation-menu-container ul li.current-menu-ancestor>a,
.op-header.style-3 .navigation-menu-container ul li.current_page_ancestor>a {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fb6a19;
}

.op-header.style-3 .dropdown-menu {
    float: none;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    background: #ffffff;
    transition: all 0.4s;
    color: #101010;
    border-left: none;
    border-top: 3px solid #fb6a19;
    border-right: none;
    border-bottom: none;
    border-radius: 0;
}

.op-header.style-3 .user-menu .dropdown-menu {
    margin-left: 15px;
    margin-right: 15px;
}

.dropdown-item.dropdown-item-login {
    text-align: center;
}

.clave-show {
    min-width: 50px;
}

.op-header.style-3 .dropdown-item {
    padding: 0;
    border: none;
    line-height: 1.5;
    font-size: 15px;
    color: #101010;
}

.op-header.style-3 .dropdown-item > a,
.op-header.style-3 .dropdown-item .login-form {
    padding: 10px 15px;
    display: inline-block;
    width: 100%;
}

body .op-header.style-3 .dropdown-item.active,
body .op-header.style-3 .dropdown-item:active {
    background-color: transparent;
}

.op-header.style-3 .dropdown-item:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.op-header.style-3 .user-menu i.svg-icon {
    width: 1.5em;
    height: 1.5em;
}

.op-header.style-3 .user-menu i {
    margin-right: 0.25rem;
}

body .dropdown-item.active,
body .dropdown-item:active,
.inline-filters .custom-select option:checked {
    background-color: var(--orange);
    color: #fff;
}

.inline-filters .custom-select option:hover {
    color: #16181b;
    text-decoration: none;
    background-color: #e9ecef;
}

@media (max-width: 1024.98px) {
    .logo-container {
        margin-bottom: 20px;
    }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    background: #0B2C3D;
    height: 100%;
    width: 100%;
    opacity: 0.3;
    z-index: 9999;
}

.overlay.hide {
    opacity: 0;
    z-index: -1;
}

.mobile-menu-container {
    background: #0B2C3D;
    position: fixed;
    min-width: 350px;
    height: 100%;
    right: 0;
    top: 0;
    z-index: 9999999999;
    padding: 20px 30px;
}

.mobile-menu-container .close-btn {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 25px;
    height: 35px;
}

.mobile-menu-container .close-btn a {
    display: inline-block;
    width: 25px;
    height: 35px;
}

.mobile-menu-container .logo-container .footer-logo-wrapper {
    display: inline-block;
}

.mobile-menu-container .logo-container .footer-logo-wrapper img {
    width: 120px;
}

.mobile-menu-container .parent-menu-items {
    max-height: calc(100vh - 100px);
    overflow: auto;
    margin-top: 40px;
}

.mobile-menu-container.hide {
    transform: translateX(100%);
    opacity: 0;
}

.menu-logo {
    max-width: 90px;
}

.close-btn a i:before,
.close-btn a i:after {
    content: "";
    height: 3px;
    width: 24px;
    background: #ffffff;
    display: block;
    position: absolute;
    right: 0px;
}

.close-btn a i:before {
    transform: rotate(45deg);
}

.close-btn a i:after {
    transform: rotate(-45deg);
}

.mobile-menu-container .parent-menu-items ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
}

.mobile-menu-container .parent-menu-items ul li {
    margin-bottom: 0;
}

.mobile-menu-container .parent-menu-items ul li.current-menu-item a,
.mobile-menu-container .parent-menu-items ul li a:hover,
.mobile-menu-container .parent-menu-items ul li.current-menu-ancestor>a,
.mobile-menu-container .parent-menu-items ul li.current-menu-parent>a {
    color: #fb6a19;
}

.mobile-menu-container .parent-menu-items ul li a {
    color: #ffffff;
    border-bottom: 1px solid #37434b;
}

.mobile-menu-container .parent-menu-items ul li.menu-item-has-children a,
.mobile-menu-container .parent-menu-items ul li.page_item_has_children a {
    position: relative;
    display: block;
}

.mobile-menu-container .parent-menu-items ul li.menu-item-has-children>a:before,
.mobile-menu-container .parent-menu-items ul li.page_item_has_children>a:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    position: absolute;
    right: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background-color: #fb6a19;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    content: "\f078";
    font-size: 12px;
    transition: all 0.4s;
}

.mobile-menu-container .parent-menu-items ul li a {
    text-decoration: none;
    font-size: 16px;
    color: #ffffff;
    padding-top: 15px;
    padding-bottom: 15px;
    display: block;
    position: relative;
}

.mobile-menu-container .parent-menu-items ul li a+.sub-menu,
.mobile-menu-container .parent-menu-items ul li a+.children {
    display: none;
    padding-top: 0;
}

.mobile-menu-container .parent-menu-items ul li.active a+.sub-menu,
.mobile-menu-container .parent-menu-items ul li.active a+.children {
    display: block;
}

.mobile-menu-container .parent-menu-items ul li.active a+.sub-menu li a+.sub-menu,
.mobile-menu-container .parent-menu-items ul li.active a+.children li a+.children {
    display: none;
}

.mobile-menu-container .parent-menu-items ul li.active a+.sub-menu li.active a+.sub-menu,
.mobile-menu-container .parent-menu-items ul li.active a+.children li.active a+.children {
    display: block;
}

.mobile-menu-container .parent-menu-items ul.navigation>li.active a::before,
.mobile-menu-container .parent-menu-items ul li.active a+.sub-menu li.active a::before,
.mobile-menu-container .parent-menu-items ul li.active a+.children li.active a::before {
    transform: rotate(0);
}

.mobile-menu-container .parent-menu-items ul li a+.sub-menu li a,
.mobile-menu-container .parent-menu-items ul li a+.children li a {
    font-size: 15px;
    padding-left: 20px;
}

.mobile-menu-container .parent-menu-items ul li a+.sub-menu li a+.sub-menu li a,
.mobile-menu-container .parent-menu-items ul li a+.children li a+.children li a {
    padding-left: 40px;
}

.sticky-header .navigation-mobile-btn {
    margin: 17px 0;
}

.navigation-mobile-btn {
    width: 55px;
    height: 45px;
    background-color: #fb6a19;
    border: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px;
}

.navigation-mobile-btn:focus {
    outline: none;
}

.navigation-mobile-btn span {
    width: 40px;
    height: 4px;
    border-radius: 5px;
    display: block;
    background-color: #ffffff;
}

.navigation-mobile-btn span:not(:last-child) {
    margin-bottom: 5px;
}

@media (max-width: 767.98px) {
    .mobile-menu-container {
        width: 100%;
    }
}

.op-page-header-wrapper {
    background-image: url("../img/page-header.jpg");
}

.op-page-header-wrapper.style-3 {
    position: relative;
    padding: 180px 0px 118px 0px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.op-page-header-wrapper.style-3::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: #000000;
    opacity: 0.6;
    top: 0;
    left: 0;
}

.op-page-header-wrapper.style-3 .container {
    position: relative;
}

.op-page-header-wrapper.style-3 .container h1 {
    line-height: 1;
    color: #ffffff;
    font-weight: 700;
}

.op-page-header-wrapper.style-3 .breadcrumbs {
    position: relative;
    margin-top: 10px;
}

.op-page-header-wrapper.style-3 .breadcrumbs>span {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
    padding-left: 20px;
    text-transform: uppercase;
}

.op-page-header-wrapper.style-3 .breadcrumbs>span:not(:last-child) {
    margin-right: 20px;
}

.op-page-header-wrapper.style-3 .breadcrumbs>span span.current-item {
    color: #fb6a19;
}

.op-page-header-wrapper.style-3 .breadcrumbs>span a {
    font-size: 18px;
    color: #ffffff;
}

.op-page-header-wrapper.style-3 .breadcrumbs>span a:hover {
    color: #fb6a19;
}

.op-page-header-wrapper.style-3 .breadcrumbs>span::before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    left: 0px;
    top: 10px;
    background-color: #fb6a19;
}

.op-section-blog {
    margin: 100px 0;
}

@media (max-width: 1024.98px) {
    .op-section-blog {
        margin-bottom: 60px;
    }
}

.op-section-blog .op-blog-style-3 .op-sub-blogs .blog-image {
    position: relative;
    overflow: hidden;
}

.op-section-blog .op-blog-style-3 .op-sub-blogs .blog-image::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
}

.op-section-blog .op-blog-style-3 .op-sub-blogs .blog-image img {
    transform: scale(1);
    transition: all 0.4s;
    width: 100%;
}

.op-section-blog .op-blog-style-3 .op-sub-blogs .blog-image a {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0, 0);
    display: inline-block;
    font-size: 18px;
    line-height: 1.4;
    color: #ffffff;
    border: 1px dashed #fb6a19;
    font-weight: 600;
    padding: 10px 15px 10px 38px;
    z-index: 3;
}

.op-section-blog .op-blog-style-3 .op-sub-blogs .blog-image a:hover {
    color: #fb6a19;
}

.op-section-blog .op-blog-style-3 .op-sub-blogs .blog-image a::before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background-color: #fb6a19;
}

.op-section-blog .op-blog-style-3 .op-sub-blogs .blog-image:hover a {
    transform: translate(-50%, -50%) scale(1, 1);
}

.op-section-blog .op-blog-style-3 .op-sub-blogs .blog-image:hover img {
    transform: scale(1.1);
}

.op-section-blog .op-blog-style-3 .op-sub-blogs .blog-image:hover::before {
    opacity: 0.5;
    visibility: visible;
}

.op-section-blog .op-blog-style-3 .op-sub-blogs .blog-content {
    margin-top: 35px;
    margin-bottom: 60px;
    border-bottom: 1px solid #909090;
}

.op-section-blog .op-blog-style-3 .op-sub-blogs .blog-content .post-meta-cat a {
    display: none;
}

.op-section-blog .op-blog-style-3 .op-sub-blogs .blog-content .post-meta-cat a:first-child {
    margin-right: 20px;
    display: inline-block;
    padding: 7px 14px;
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    background-color: #fb6a19;
}

.op-section-blog .op-blog-style-3 .op-sub-blogs .blog-content .post-meta-cat a:first-child:hover {
    background-color: #0B2C3D;
}

@media (max-width: 575.98px) {
    .op-section-blog .op-blog-style-3 .op-sub-blogs .blog-content .post-meta-cat a:first-child {
        margin-bottom: 5px;
    }
}

.op-section-blog .op-blog-style-3 .op-sub-blogs .blog-content ul li {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #5C727D;
    padding: 10px 0;
}

@media (max-width: 575.98px) {
    .op-section-blog .op-blog-style-3 .op-sub-blogs .blog-content ul li {
        padding: 5px 0 0;
    }
}

.op-section-blog .op-blog-style-3 .op-sub-blogs .blog-content ul li:not(:last-child) {
    margin-right: 20px;
}

.op-section-blog .op-blog-style-3 .op-sub-blogs .blog-content ul li i {
    margin-right: 8px;
    font-size: 16px;
}

.op-section-blog .op-blog-style-3 .op-sub-blogs .blog-content ul li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #5C727D;
}

.op-section-blog .op-blog-style-3 .op-sub-blogs .blog-content ul li a:hover {
    color: #fb6a19;
}

.op-section-blog .op-blog-style-3 .op-sub-blogs .blog-content .blog-heading {
    margin: 26px 0 12px;
}

.op-section-blog .op-blog-style-3 .op-sub-blogs .blog-content .blog-heading a {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    color: #101010;
    letter-spacing: -0.9px;
    word-break: break-word;
}

@media (max-width: 575.98px) {
    .op-section-blog .op-blog-style-3 .op-sub-blogs .blog-content .blog-heading a {
        font-size: 26px;
    }
}

.op-section-blog .op-blog-style-3 .op-sub-blogs .blog-content .blog-heading a:hover {
    color: #fb6a19;
}

.op-section-blog .op-blog-style-3 .op-sub-blogs .blog-content p {
    font-size: 16px;
    font-weight: 400;
    color: #5C727D;
    margin-bottom: 25px;
}

.op-section-blog .op-blog-style-3 .op-sub-blogs .blog-content .blog-reading {
    margin-bottom: 35px;
}

.op-section-blog .op-blog-style-3 .op-sub-blogs .main-blog-content .blog-text h2 {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
    color: #101010;
    word-break: break-word;
}

@media (max-width: 575.98px) {
    .op-section-blog .op-blog-style-3 .op-sub-blogs .main-blog-content .blog-text h2 {
        font-size: 26px;
    }
}

.op-section-blog .op-blog-style-3 .op-sub-blogs .main-blog-content .blog-text h4 {
    line-height: 1.3;
    font-weight: 700;
    color: #101010;
}

.op-section-blog .op-blog-style-3 .op-sub-blogs .main-blog-content .blog-paragraph .wp-block-button.is-style-outline a {
    background-color: transparent;
    border: 3px solid #fb6a19;
    padding: 13px 93px 13px 31px;
}

.op-section-blog .op-blog-style-3 .op-sub-blogs .main-blog-content .blog-paragraph .wp-block-button a {
    position: relative;
    background-color: #fb6a19;
    color: #101010;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    display: inline-block;
    overflow: hidden;
    padding: 10px 90px 10px 28px;
}

.op-section-blog .op-blog-style-3 .op-sub-blogs .main-blog-content .blog-paragraph .wp-block-button a::before {
    position: absolute;
    content: "";
    right: -15px;
    top: 0px;
    width: 75px;
    height: 100%;
    color: #fb6a19;
    transform: skewX(-20deg);
    background-color: #0B2C3D;
}

.op-section-blog .op-blog-style-3 .op-sub-blogs .main-blog-content .blog-paragraph .wp-block-button a:after {
    position: absolute;
    content: "\f061";
    font-weight: 900;
    font-size: 16px;
    font-family: "Font Awesome 5 Free";
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #fb6a19;
}

.op-section-blog .op-blog-style-3 .op-sub-blogs .main-blog-content .blog-paragraph .wp-block-button a:hover {
    color: #ffffff;
    background-color: #0B2C3D;
}

.op-section-blog .op-blog-style-3 .op-sub-blogs .main-blog-content .blog-paragraph blockquote p {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 500;
    color: #101010;
    position: relative;
    padding-left: 100px;
}

@media (max-width: 575.98px) {
    .op-section-blog .op-blog-style-3 .op-sub-blogs .main-blog-content .blog-paragraph blockquote p {
        font-size: 17px;
        padding-left: 45px;
    }
}

.op-section-blog .op-blog-style-3 .op-sub-blogs .main-blog-content .blog-paragraph blockquote p::before {
    position: absolute;
    content: "";
    background: #0B2C3D;
    width: 3px;
    height: 100%;
    left: 70px;
    top: 0;
}

@media (max-width: 575.98px) {
    .op-section-blog .op-blog-style-3 .op-sub-blogs .main-blog-content .blog-paragraph blockquote p::before {
        display: none;
    }
}

.op-section-blog .op-blog-style-3 .op-sub-blogs .main-blog-content .blog-paragraph blockquote p::after {
    position: absolute;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 42px;
    color: #fb6a19;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

@media (max-width: 575.98px) {
    .op-section-blog .op-blog-style-3 .op-sub-blogs .main-blog-content .blog-paragraph blockquote p::after {
        top: 0;
        transform: translateY(0);
        font-size: 30px;
    }
}

.op-section-blog .op-blog-style-3 .op-sub-blogs .main-blog-content .blog-paragraph ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.op-section-blog .op-blog-style-3 .op-sub-blogs .main-blog-content .blog-paragraph ul:nth-child(1)>li {
    position: relative;
}

.op-section-blog .op-blog-style-3 .op-sub-blogs .main-blog-content .blog-paragraph ul:nth-child(1)>li::before {
    position: absolute;
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 14px;
    top: 15px;
    left: 0;
}

.op-section-blog .op-blog-style-3 .op-sub-blogs .main-blog-content .blog-paragraph ul>li {
    font-size: 17px;
    line-height: 1.5;
    font-weight: 500;
    color: #5C727D;
    padding-left: 20px;
    margin-bottom: 12px;
}

@media (max-width: 575.98px) {
    .op-section-blog .op-blog-style-3 .op-sub-blogs .main-blog-content .blog-paragraph ul>li {
        font-size: 16px;
    }
}

.op-section-blog .op-blog-style-3 .op-sub-blogs .main-blog-content .tags-container {
    display: flex !important;
    margin-bottom: 65px;
}

@media (max-width: 575.98px) {
    .op-section-blog .op-blog-style-3 .op-sub-blogs .main-blog-content .tags-container {
        flex-direction: column;
    }
}

.op-section-blog .op-blog-style-3 .op-sub-blogs .main-blog-content .tags-container .tag-headline {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    color: #101010;
    position: relative;
    padding-left: 20px;
    margin-right: 20px;
    margin-top: 10px;
}

@media (max-width: 575.98px) {
    .op-section-blog .op-blog-style-3 .op-sub-blogs .main-blog-content .tags-container .tag-headline {
        margin-bottom: 15px;
    }
}

.op-section-blog .op-blog-style-3 .op-sub-blogs .main-blog-content .tags-container .tag-headline::before {
    position: absolute;
    content: "\f02c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 14px;
    color: #fb6a19;
    top: 4px;
    left: 0;
}

.op-section-blog .op-blog-style-3 .op-sub-blogs .main-blog-content .tags-container ul {
    display: flex;
    flex-wrap: wrap;
}

.op-section-blog .op-blog-style-3 .op-sub-blogs .main-blog-content .tags-container ul li {
    margin-right: 5px;
    margin-bottom: 8px;
}

.op-section-blog .op-blog-style-3 .op-sub-blogs .main-blog-content .tags-container ul li a {
    display: inline-block;
    font-size: 16px !important;
    color: #101010;
    font-weight: 600;
    background: #f1f7fb;
    padding: 10px 20px;
    border-radius: 6px;
}

.op-section-blog .op-blog-style-3 .op-sub-blogs .main-blog-content .tags-container ul li a:hover {
    background-color: #fb6a19;
    color: #ffffff;
}

.op-section-blog .op-blog-style-3 .op-sub-blogs .main-blog-content .tags-container ul li:last-child {
    margin: 0;
}

.navigation.pagination,
.op-section-blog .navigation {
    justify-content: center;
    flex-wrap: wrap;
}

.navigation.pagination .nav-links,
.op-section-blog .navigation .nav-links,
.op-section-blog .navigation .post-nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.navigation.pagination .nav-links .page-numbers,
.navigation.pagination .nav-links .post-page-numbers,
.op-section-blog .navigation .nav-links .page-numbers,
.op-section-blog .navigation .nav-links .post-page-numbers,
.op-section-blog .navigation .post-nav-links .page-numbers,
.op-section-blog .navigation .post-nav-links .post-page-numbers {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    height: 47px;
    width: 47px;
    line-height: 1.5;
    margin-right: 10px;
    background: transparent;
    color: #101010;
    border-radius: 50%;
    z-index: 1;
    border: 1px dashed #101010;
    transition: all 0.4s;
}

.navigation.pagination .nav-links .page-numbers.dots,
.op-section-blog .navigation .nav-links .page-numbers.dots,
.op-section-blog .navigation .nav-links .post-page-numbers.dots,
.op-section-blog .navigation .post-nav-links .page-numbers.dots,
.op-section-blog .navigation .post-nav-links .post-page-numbers.dots {
    color: #fb6a19;
    border-color: #fb6a19;
}

.navigation.pagination .nav-links .page-numbers.next,
.op-section-blog .navigation .nav-links .page-numbers.next,
.op-section-blog .navigation .nav-links .post-page-numbers.next,
.op-section-blog .navigation .post-nav-links .page-numbers.next,
.op-section-blog .navigation .post-nav-links .post-page-numbers.next {
    position: relative;
    font-size: 0;
}

.navigation.pagination .nav-links .page-numbers.next:hover::before,
.op-section-blog .navigation .nav-links .page-numbers.next:hover::before,
.op-section-blog .navigation .nav-links .post-page-numbers.next:hover::before,
.op-section-blog .navigation .post-nav-links .page-numbers.next:hover::before,
.op-section-blog .navigation .post-nav-links .post-page-numbers.next:hover::before {
    color: #fb6a19;
}

.navigation.pagination .nav-links .page-numbers.next::before,
.op-section-blog .navigation .nav-links .page-numbers.next::before,
.op-section-blog .navigation .nav-links .post-page-numbers.next::before,
.op-section-blog .navigation .post-nav-links .page-numbers.next::before,
.op-section-blog .navigation .post-nav-links .post-page-numbers.next::before {
    position: absolute;
    content: "\f105";
    top: 50%;
    left: 50%;
    margin: auto;
    transform: translate(-50%, -50%);
    font-family: "Font Awesome 5 Free";
    font-size: 20px;
    font-weight: 600;
    color: #101010;
    transition: all 0.4s;
}

.navigation.pagination .nav-links .page-numbers.prev,
.op-section-blog .navigation .nav-links .page-numbers.prev,
.op-section-blog .navigation .nav-links .post-page-numbers.prev,
.op-section-blog .navigation .post-nav-links .page-numbers.prev,
.op-section-blog .navigation .post-nav-links .post-page-numbers.prev {
    position: relative;
    font-size: 0;
}

.navigation.pagination .nav-links .page-numbers.prev:hover::before,
.op-section-blog .navigation .nav-links .page-numbers.prev:hover::before,
.op-section-blog .navigation .nav-links .post-page-numbers.prev:hover::before,
.op-section-blog .navigation .post-nav-links .page-numbers.prev:hover::before,
.op-section-blog .navigation .post-nav-links .post-page-numbers.prev:hover::before {
    color: #fb6a19;
}

.navigation.pagination .nav-links .page-numbers.prev::before,
.op-section-blog .navigation .nav-links .page-numbers.prev::before,
.op-section-blog .navigation .nav-links .post-page-numbers.prev::before,
.op-section-blog .navigation .post-nav-links .page-numbers.prev::before,
.op-section-blog .navigation .post-nav-links .post-page-numbers.prev::before {
    position: absolute;
    content: "\f104";
    top: 50%;
    top: 50%;
    left: 50%;
    margin: auto;
    transform: translate(-50%, -50%);
    font-family: "Font Awesome 5 Free";
    font-size: 20px;
    font-weight: 600;
    color: #101010;
    transition: all 0.4s;
}

.navigation.pagination .nav-links .page-numbers.current,
.op-section-blog .navigation .nav-links .page-numbers.current,
.op-section-blog .navigation .nav-links .post-page-numbers.current,
.op-section-blog .navigation .post-nav-links .page-numbers.current,
.op-section-blog .navigation .post-nav-links .post-page-numbers.current {
    color: #fb6a19;
    border-color: #fb6a19;
}

.navigation.pagination .nav-links .page-numbers:hover,
.op-section-blog .navigation .nav-links .page-numbers:hover,
.op-section-blog .navigation .nav-links .post-page-numbers:hover,
.op-section-blog .navigation .post-nav-links .page-numbers:hover,
.op-section-blog .navigation .post-nav-links .post-page-numbers:hover {
    color: #fb6a19;
    border-color: #fb6a19;
}

@media (max-width: 1024.98px) {
    .op-section-blog .list-style {
        margin-top: 60px;
    }
}

.op-section-blog .list-style aside:not(:last-child) {
    margin-bottom: 55px;
}

.op-section-blog .widget {
    background: #f1f7fb;
    padding: 38px 30px;
}

@media (max-width: 575.98px) {
    .op-section-blog .widget {
        padding: 35px 20px;
    }
}

.op-section-blog .widget h4,
.op-section-blog .widget h2 {
    font-size: 24px;
    line-height: 1.3;
    color: #101010;
    font-weight: 600;
    margin-bottom: 22px;
    position: relative;
    padding-left: 20px;
}

.op-section-blog .widget h4::before,
.op-section-blog .widget h2::before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fb6a19;
}

.op-section-blog .widget .searchform,
.op-section-blog .widget .wp-block-search {
    position: relative;
}

.op-section-blog .widget .searchform::before,
.op-section-blog .widget .wp-block-search::before {
    position: absolute;
    content: "";
    background: #ddd;
    width: 1px;
    height: 35px;
    right: 70px;
    top: 15px;
    z-index: 2;
}

.op-section-blog .widget .searchform::after,
.op-section-blog .widget .wp-block-search::after {
    position: absolute;
    content: "\f002";
    top: 50%;
    right: 30px;
    margin: auto;
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
    font-size: 18px;
    font-weight: 900;
    color: #101010;
}

.op-section-blog .widget .searchform label,
.op-section-blog .widget .searchform .wp-block-search__label,
.op-section-blog .widget .wp-block-search label,
.op-section-blog .widget .wp-block-search .wp-block-search__label {
    display: none;
}

.op-section-blog .widget .searchform input[type=text],
.op-section-blog .widget .searchform .wp-block-search__input,
.op-section-blog .widget .wp-block-search input[type=text],
.op-section-blog .widget .wp-block-search .wp-block-search__input {
    position: relative;
    display: block;
    width: 100%;
    height: 65px;
    border: 1px solid #dddddd;
    font-size: 18px;
    color: #5C727D;
    outline: none;
    padding: 10px 75px 10px 30px;
}

.op-section-blog .widget .searchform input[type=submit],
.op-section-blog .widget .searchform .wp-block-search__button,
.op-section-blog .widget .wp-block-search input[type=submit],
.op-section-blog .widget .wp-block-search .wp-block-search__button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
    font-size: 0;
    border: 0;
    width: 18px;
    height: 30px;
    background: transparent;
    cursor: pointer;
    z-index: 4;
}

.op-section-blog .widget.widget_recent_entries ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.op-section-blog .widget.widget_recent_entries ul li {
    padding: 28px 0;
}

.op-section-blog .widget.widget_recent_entries ul li:first-child {
    padding-top: 0;
}

.op-section-blog .widget.widget_recent_entries ul li:not(:last-child) {
    border-bottom: 1px solid #dddddd;
}

.op-section-blog .widget.widget_recent_entries ul li:last-child {
    padding-bottom: 0;
}

.op-section-blog .widget.widget_recent_entries ul li span {
    display: block;
    font-size: 14px;
    line-height: 1.4;
    color: #5C727D;
    font-weight: 400;
    padding-left: 20px;
    position: relative;
    margin-top: 5px;
}

.op-section-blog .widget.widget_recent_entries ul li span::before {
    position: absolute;
    content: "\f073";
    top: 50%;
    left: 0;
    margin: auto;
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
    font-size: 14px;
    font-weight: 900;
    color: #fb6a19;
}

.op-section-blog .widget.widget_recent_entries ul li a {
    display: block;
    font-size: 17px;
    line-height: 1.2;
    color: #101010;
    font-weight: 500;
}

.op-section-blog .widget.widget_recent_entries ul li a:hover {
    color: #fb6a19;
}

.op-section-blog .widget.widget_tag_cloud a {
    display: inline-block;
    font-size: 16px !important;
    color: #101010;
    font-weight: 600;
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    margin-right: 5px;
    margin-bottom: 8px;
}

.op-section-blog .widget.widget_tag_cloud a:last-child {
    margin-bottom: 0;
    margin-right: 0;
}

.op-section-blog .widget.widget_tag_cloud a:hover {
    background-color: #fb6a19;
    color: #ffffff;
}

.op-section-blog .widget.widget_categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.op-section-blog .widget.widget_categories ul li a {
    display: block;
    font-size: 17px;
    line-height: 1.5;
    color: #5C727D;
    font-weight: 400;
    padding: 12px 30px;
    border: 1px dashed #5C727D;
}

.op-section-blog .widget.widget_categories ul li a:hover {
    border-color: #fb6a19;
    color: #fb6a19;
}

.op-section-blog .widget.widget_categories ul li:not(:last-child) {
    margin-bottom: 10px;
}

.op-section-blog .op-blog-list.single-post-page .op-blog-style-3 .op-sub-blogs .blog-content {
    margin-top: 30px;
    margin-bottom: 45px;
}

.op-section-blog .op-blog-list.single-post-page .op-blog-style-3 .op-sub-blogs .blog-content ul li {
    padding: 0;
}

.op-section-blog .op-blog-list.single-post-page .op-blog-style-3 .op-sub-blogs .blog-content .blog-text h2 {
    margin-bottom: 0;
}

.op-section-blog .op-blog-list.single-post-page .op-blog-style-3 .op-sub-blogs .blog-content .blog-paragraph h4 {
    color: #101010;
    font-weight: 600;
}

.op-section-blog .op-blog-list.single-post-page .op-blog-style-3 .op-sub-blogs .blog-content .blog-paragraph ul {
    margin-bottom: 30px;
}

.op-section-blog .op-blog-list.single-post-page .op-blog-style-3 .op-sub-blogs .blog-content .blog-paragraph ul li {
    padding-left: 20px;
    position: relative;
}

.op-section-blog .op-blog-list.single-post-page .op-blog-style-3 .op-sub-blogs .blog-content .blog-paragraph ul li:before {
    position: absolute;
    content: "";
    left: 0;
    top: 9px;
    background-color: #fb6a19;
    width: 8px;
    height: 8px;
}

.op-section-blog .single-blog-content .post-comments-container .comments-title {
    margin-top: 40px;
    line-height: 1.1;
    color: #101010;
    font-weight: 600;
    margin-bottom: 22px;
    position: relative;
    padding-left: 20px;
    letter-spacing: -0.9px;
}

.op-section-blog .single-blog-content .post-comments-container .comments-title::before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    left: 0;
    top: 15px;
    background-color: #fb6a19;
}

.op-section-blog .single-blog-content .post-comments-container .comment-list li .comment-body {
    padding-left: 105px;
    padding-bottom: 30px;
    margin-bottom: 40px;
    border-bottom: 1px solid #dddddd;
}

.op-section-blog .single-blog-content .post-comments-container .comment-list li ul {
    padding-left: 40px;
}

@media (max-width: 575.98px) {
    .op-section-blog .single-blog-content .post-comments-container .comment-list li ul {
        padding-left: 20px;
    }
}

.op-section-blog .single-blog-content .post-comments-container .comment-list .comment-body {
    position: relative;
}

.op-section-blog .single-blog-content .post-comments-container .comment-list .comment-body .comment-author img {
    position: absolute;
    left: 0;
    top: 0;
}

.op-section-blog .single-blog-content .post-comments-container .comment-list .comment-body .comment-author a {
    font-size: 18px;
    line-height: 1.2;
    color: #101010;
    font-weight: 600;
}

.op-section-blog .single-blog-content .post-comments-container .comment-list .comment-body .comment-author span.says {
    display: none;
}

.op-section-blog .single-blog-content .post-comments-container .comment-list .comment-body time {
    font-size: 14px;
    line-height: 1.6;
    color: #5C727D;
    font-weight: 400;
}

.op-section-blog .single-blog-content .post-comments-container .comment-list .comment-body .edit-link {
    display: none;
}

.op-section-blog .single-blog-content .post-comments-container .comment-list .comment-body .reply {
    position: absolute;
    top: 4px;
    right: 10px;
}

@media (max-width: 557.98px) {
    .op-section-blog .single-blog-content .post-comments-container .comment-list .comment-body .reply {
        position: relative;
    }
}

.op-section-blog .single-blog-content .post-comments-container .comment-list .comment-body .reply a {
    position: absolute;
    top: 4px;
    right: 10px;
    font-size: 14px;
    line-height: 1.7;
    color: #101010;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 16px;
    padding-left: 30px;
    text-align: center;
    z-index: 1;
    border: 1px dashed #fb6a19;
}

@media (max-width: 557.98px) {
    .op-section-blog .single-blog-content .post-comments-container .comment-list .comment-body .reply a {
        position: relative;
        top: 0;
        right: auto;
        left: 10px;
    }
}

.op-section-blog .single-blog-content .post-comments-container .comment-list .comment-body .reply a::before {
    position: absolute;
    content: "\f060";
    top: 50%;
    left: 10px;
    margin: auto;
    transform: translatey(-50%);
    font-family: "Font Awesome 5 Free";
    font-size: 14px;
    font-weight: 600;
    color: #fb6a19;
    transition: all 0.4s;
}

.op-section-blog .single-blog-content .post-comments-container .comment-list .comment-body .reply a:hover {
    color: #fb6a19;
}

.op-section-blog .single-blog-content .post-comments-container .comment-list .comment-body .comment-content {
    margin-top: 15px;
}

.op-section-blog .single-blog-content .post-comments-container .comment-list .comment-body .comment-content p {
    font-size: 16px;
    font-weight: 400;
}

.op-section-blog .single-blog-content .post-comments-container .comment-respond {
    margin-top: 55px;
}

.op-section-blog .single-blog-content .post-comments-container .comment-respond h3 {
    font-size: 24px;
    line-height: 1.3;
    color: #101010;
    font-weight: 600;
    margin-bottom: 22px;
    position: relative;
    padding-left: 20px;
}

.op-section-blog .single-blog-content .post-comments-container .comment-respond h3::before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    left: 0px;
    top: 12px;
    background-color: #fb6a19;
}

.op-section-blog .single-blog-content .post-comments-container .comment-respond .comment-reply-title {
    display: flex;
    justify-content: space-between;
}

.op-section-blog .single-blog-content .post-comments-container .comment-respond .comment-reply-title small a {
    position: absolute;
    top: 4px;
    right: 10px;
    font-size: 14px;
    line-height: 1.7;
    color: #5C727D;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 16px;
    text-align: center;
    z-index: 1;
    border: 1px dashed #fb6a19;
}

.op-section-blog .single-blog-content .post-comments-container .comment-respond .comment-reply-title small a:hover {
    color: #fb6a19;
}

.op-section-blog .single-blog-content .post-comments-container .comment-respond .logged-in-as a {
    font-size: 17px;
    line-height: 1;
    font-weight: 400;
    color: #5C727D;
    transition: all 0.3s;
}

.op-section-blog .single-blog-content .post-comments-container .comment-respond .logged-in-as a:hover {
    color: #fb6a19;
}

.op-section-blog .single-blog-content .post-comments-container .comment-respond .comment-form {
    background: #f1f7fb;
    padding: 45px 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

@media (max-width: 575.98px) {
    .op-section-blog .single-blog-content .post-comments-container .comment-respond .comment-form {
        padding: 35px 20px;
    }
}

.op-section-blog .single-blog-content .post-comments-container .comment-respond .comment-form label {
    display: none;
}

.op-section-blog .single-blog-content .post-comments-container .comment-respond .comment-form .comment-notes {
    flex-basis: 100%;
    max-width: 100%;
}

.op-section-blog .single-blog-content .post-comments-container .comment-respond .comment-form .comment-notes span {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4667;
    color: #5C727D;
}

.op-section-blog .single-blog-content .post-comments-container .comment-respond .comment-form .comment-form-cookies-consent {
    display: flex;
}

.op-section-blog .single-blog-content .post-comments-container .comment-respond .comment-form .comment-form-cookies-consent label {
    display: block;
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4667;
    color: #5C727D;
}

.op-section-blog .single-blog-content .post-comments-container .comment-respond .comment-form .comment-form-cookies-consent input {
    flex-basis: 15px !important;
    margin-bottom: 0 !important;
    margin-right: 15px;
    height: auto !important;
    margin-top: 5px;
}

@media (max-width: 575.98px) {
    .op-section-blog .single-blog-content .post-comments-container .comment-respond .comment-form .comment-form-cookies-consent input {
        flex-basis: 30px !important;
        margin-right: 10px;
    }
}

.op-section-blog .single-blog-content .post-comments-container .comment-respond .comment-form .comment-form-url {
    display: none;
}

.op-section-blog .single-blog-content .post-comments-container .comment-respond .comment-form p:not(:last-of-type) input {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    background: #ffffff;
    border: 1px solid #ffffff;
    font-size: 16px;
    color: #5C727D;
    outline: none;
    padding: 10px 50px 10px 20px;
}

.op-section-blog .single-blog-content .post-comments-container .comment-respond .comment-form p:not(:last-of-type) input::placeholder {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    color: #5C727D;
}

.op-section-blog .single-blog-content .post-comments-container .comment-respond .comment-form p:not(:last-of-type) input:focus {
    border: 1px solid #fb6a19;
}

.op-section-blog .single-blog-content .post-comments-container .comment-respond .comment-form .comment-form-comment {
    flex-basis: 100%;
    max-width: 100%;
    position: relative;
}

.op-section-blog .single-blog-content .post-comments-container .comment-respond .comment-form .comment-form-comment::before {
    position: absolute;
    content: "\f044";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 14px;
    color: #5C727D;
    top: 25px;
    right: 30px;
    z-index: 1;
    transform: translateY(-50%);
}

.op-section-blog .single-blog-content .post-comments-container .comment-respond .comment-form .comment-form-comment textarea {
    position: relative;
    display: block;
    width: 100%;
    height: 170px;
    resize: none;
    background: #ffffff;
    border: 1px solid #ffffff;
    font-size: 16px;
    outline: none;
    color: #5C727D;
    padding: 10px 50px 10px 20px;
}

.op-section-blog .single-blog-content .post-comments-container .comment-respond .comment-form .comment-form-comment textarea:focus {
    border: 1px solid #fb6a19;
}

.op-section-blog .single-blog-content .post-comments-container .comment-respond .comment-form .form-submit {
    margin-top: 15px;
}

.op-section-blog .single-blog-content .post-comments-container .comment-respond .comment-form .comment-form-author {
    flex-basis: 48%;
    max-width: 100%;
    position: relative;
}

@media (max-width: 767.98px) {
    .op-section-blog .single-blog-content .post-comments-container .comment-respond .comment-form .comment-form-author {
        flex-basis: 100%;
    }
}

.op-section-blog .single-blog-content .post-comments-container .comment-respond .comment-form .comment-form-author::before {
    position: absolute;
    content: "\f007";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 14px;
    color: #5C727D;
    top: 50%;
    right: 30px;
    z-index: 1;
    transform: translateY(-50%);
}

.op-section-blog .single-blog-content .post-comments-container .comment-respond .comment-form .comment-form-email {
    flex-basis: 48%;
    max-width: 100%;
    position: relative;
}

@media (max-width: 767.98px) {
    .op-section-blog .single-blog-content .post-comments-container .comment-respond .comment-form .comment-form-email {
        flex-basis: 100%;
    }
}

.op-section-blog .single-blog-content .post-comments-container .comment-respond .comment-form .comment-form-email::before {
    position: absolute;
    content: "\f0e0";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 14px;
    color: #5C727D;
    top: 50%;
    right: 30px;
    z-index: 1;
    transform: translateY(-50%);
}

.op-section-blog .nav-links .nav-previous a {
    font-size: 18px;
    font-weight: 500;
    color: #101010;
    padding-left: 30px;
    position: relative;
}

.op-section-blog .nav-links .nav-previous a::before {
    position: absolute;
    content: "\f060";
    top: 50%;
    left: 0;
    margin: auto;
    transform: translatey(-50%);
    font-family: "Font Awesome 5 Free";
    font-size: 18px;
    font-weight: 600;
    color: #101010;
    transition: all 0.4s;
}

.op-section-blog .nav-links .nav-previous a:hover {
    color: #fb6a19;
}

.op-section-blog .nav-links .nav-previous a:hover::before {
    color: #fb6a19;
}

.op-section-blog .nav-links .nav-next a {
    font-size: 18px;
    font-weight: 500;
    color: #101010;
    padding-right: 30px;
    position: relative;
}

.op-section-blog .nav-links .nav-next a::before {
    position: absolute;
    content: "\f061";
    top: 50%;
    right: 0;
    margin: auto;
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
    font-size: 18px;
    font-weight: 600;
    color: #101010;
    transition: all 0.4s;
}

.op-section-blog .nav-links .nav-next a:hover {
    color: #fb6a19;
}

.op-section-blog .nav-links .nav-next a:hover::before {
    color: #fb6a19;
}

.op-section-blog .post-nav-links {
    margin: 40px 0;
    font-size: 16px;
    line-height: 2.125;
    font-weight: 700;
    color: #101010;
    text-transform: uppercase;
    justify-content: start;
}

.op-section-blog .wp-block-latest-comments {
    position: relative;
}

.op-section-blog .wp-block-latest-comments article {
    padding-left: 105px;
    padding-bottom: 30px;
    margin-bottom: 40px;
    border-bottom: 1px solid #dddddd;
}

.op-section-blog .wp-block-latest-comments article .wp-block-latest-comments__comment-author {
    font-size: 18px;
    line-height: 1.2;
    color: #101010;
    font-weight: 600;
}

.op-section-blog .wp-block-latest-comments article time {
    font-size: 14px;
    line-height: 1.6;
    color: #5C727D;
    font-weight: 400;
}

.op-section-blog .wp-block-latest-comments img {
    position: absolute;
    left: 0;
    top: 0;
    width: 90px;
    height: 90px;
}

.op-section-blog .searchform,
.op-section-blog .wp-block-search {
    position: relative;
}

.op-section-blog .searchform::before,
.op-section-blog .wp-block-search::before {
    position: absolute;
    content: "";
    background: #ddd;
    width: 1px;
    height: 35px;
    right: 70px;
    top: 15px;
    z-index: 2;
}

.op-section-blog .searchform::after,
.op-section-blog .wp-block-search::after {
    position: absolute;
    content: "\f002";
    top: 50%;
    right: 30px;
    margin: auto;
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
    font-size: 18px;
    font-weight: 900;
    color: #101010;
}

.op-section-blog .searchform label,
.op-section-blog .searchform .wp-block-search__label,
.op-section-blog .wp-block-search label,
.op-section-blog .wp-block-search .wp-block-search__label {
    display: none;
}

.op-section-blog .searchform input[type=text],
.op-section-blog .searchform .wp-block-search__input,
.op-section-blog .wp-block-search input[type=text],
.op-section-blog .wp-block-search .wp-block-search__input {
    position: relative;
    display: block;
    width: 100%;
    height: 65px;
    border: 1px solid #dddddd;
    font-size: 18px;
    color: #5C727D;
    outline: none;
    padding: 10px 75px 10px 30px;
}

.op-section-blog .searchform input[type=submit],
.op-section-blog .searchform .wp-block-search__button,
.op-section-blog .wp-block-search input[type=submit],
.op-section-blog .wp-block-search .wp-block-search__button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
    font-size: 0;
    border: 0;
    width: 18px;
    height: 27px;
    background: transparent;
    cursor: pointer;
    padding-left: 20px;
}

.op-section-blog .nav-links,
.op-section-blog .post-nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.pagination .nav-links .page-numbers,
.op-section-blog .nav-links .page-numbers,
.op-section-blog .nav-links .post-page-numbers,
.op-section-blog .post-nav-links .page-numbers,
.op-section-blog .post-nav-links .post-page-numbers {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    height: 47px;
    width: 47px;
    line-height: 1.5;
    margin-right: 10px;
    background: transparent;
    color: #101010;
    border-radius: 50%;
    z-index: 1;
    border: 1px dashed #101010;
    transition: all 0.4s;
}

.pagination .nav-links .page-numbers.dots,
.op-section-blog .nav-links .page-numbers.dots,
.op-section-blog .nav-links .post-page-numbers.dots,
.op-section-blog .post-nav-links .page-numbers.dots,
.op-section-blog .post-nav-links .post-page-numbers.dots {
    color: #fb6a19;
    border-color: #fb6a19;
}

.pagination .nav-links .page-numbers.next,
.op-section-blog .nav-links .page-numbers.next,
.op-section-blog .nav-links .post-page-numbers.next,
.op-section-blog .post-nav-links .page-numbers.next,
.op-section-blog .post-nav-links .post-page-numbers.next {
    position: relative;
    font-size: 0;
}

.pagination .nav-links .page-numbers.next:hover::before,
.op-section-blog .nav-links .page-numbers.next:hover::before,
.op-section-blog .nav-links .post-page-numbers.next:hover::before,
.op-section-blog .post-nav-links .page-numbers.next:hover::before,
.op-section-blog .post-nav-links .post-page-numbers.next:hover::before {
    color: #fb6a19;
}

.pagination .nav-links .page-numbers.next::before,
.op-section-blog .nav-links .page-numbers.next::before,
.op-section-blog .nav-links .post-page-numbers.next::before,
.op-section-blog .post-nav-links .page-numbers.next::before,
.op-section-blog .post-nav-links .post-page-numbers.next::before {
    position: absolute;
    content: "\f105";
    top: 50%;
    left: 50%;
    margin: auto;
    transform: translate(-50%, -50%);
    font-family: "Font Awesome 5 Free";
    font-size: 20px;
    font-weight: 600;
    color: #101010;
    transition: all 0.4s;
}

.pagination .nav-links .page-numbers.prev,
.op-section-blog .nav-links .page-numbers.prev,
.op-section-blog .nav-links .post-page-numbers.prev,
.op-section-blog .post-nav-links .page-numbers.prev,
.op-section-blog .post-nav-links .post-page-numbers.prev {
    position: relative;
    font-size: 0;
}

.pagination .nav-links .page-numbers.prev:hover::before,
.op-section-blog .nav-links .page-numbers.prev:hover::before,
.op-section-blog .nav-links .post-page-numbers.prev:hover::before,
.op-section-blog .post-nav-links .page-numbers.prev:hover::before,
.op-section-blog .post-nav-links .post-page-numbers.prev:hover::before {
    color: #fb6a19;
}

.pagination .nav-links .page-numbers.prev::before,
.op-section-blog .nav-links .page-numbers.prev::before,
.op-section-blog .nav-links .post-page-numbers.prev::before,
.op-section-blog .post-nav-links .page-numbers.prev::before,
.op-section-blog .post-nav-links .post-page-numbers.prev::before {
    position: absolute;
    content: "\f104";
    top: 50%;
    top: 50%;
    left: 50%;
    margin: auto;
    transform: translate(-50%, -50%);
    font-family: "Font Awesome 5 Free";
    font-size: 20px;
    font-weight: 600;
    color: #101010;
    transition: all 0.4s;
}

.pagination .nav-links .page-numbers.current,
.op-section-blog .nav-links .page-numbers.current,
.op-section-blog .nav-links .post-page-numbers.current,
.op-section-blog .post-nav-links .page-numbers.current,
.op-section-blog .post-nav-links .post-page-numbers.current {
    color: #fb6a19;
    border-color: #fb6a19;
}

.pagination .nav-links .page-numbers:hover,
.op-section-blog .nav-links .page-numbers:hover,
.op-section-blog .nav-links .post-page-numbers:hover,
.op-section-blog .post-nav-links .page-numbers:hover,
.op-section-blog .post-nav-links .post-page-numbers:hover {
    color: #fb6a19;
    border-color: #fb6a19;
}

.content-section .post-comments-container .comments-title {
    margin-top: 40px;
    line-height: 1.3;
    color: #101010;
    font-weight: 600;
    margin-bottom: 22px;
    position: relative;
    padding-left: 20px;
    letter-spacing: -0.9px;
}

.content-section .post-comments-container .comments-title::before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    left: 0;
    top: 15px;
    background-color: #fb6a19;
}

.content-section .post-comments-container .comment-list li .comment-body {
    padding-left: 105px;
    padding-bottom: 30px;
    margin-bottom: 40px;
    border-bottom: 1px solid #dddddd;
}

.content-section .post-comments-container .comment-list li ul {
    padding-left: 40px;
}

@media (max-width: 575.98px) {
    .content-section .post-comments-container .comment-list li ul {
        padding-left: 20px;
    }
}

.content-section .post-comments-container .comment-list .comment-body {
    position: relative;
}

.content-section .post-comments-container .comment-list .comment-body .comment-author img {
    position: absolute;
    left: 0;
    top: 0;
}

.content-section .post-comments-container .comment-list .comment-body .comment-author a {
    font-size: 18px;
    line-height: 1.2;
    color: #101010;
    font-weight: 600;
}

.content-section .post-comments-container .comment-list .comment-body .comment-author span.says {
    display: none;
}

.content-section .post-comments-container .comment-list .comment-body time {
    font-size: 14px;
    line-height: 1.6;
    color: #5C727D;
    font-weight: 400;
}

.content-section .post-comments-container .comment-list .comment-body .edit-link {
    display: none;
}

.content-section .post-comments-container .comment-list .comment-body .reply {
    position: absolute;
    top: 4px;
    right: 10px;
}

@media (max-width: 557.98px) {
    .content-section .post-comments-container .comment-list .comment-body .reply {
        position: relative;
    }
}

.content-section .post-comments-container .comment-list .comment-body .reply a {
    position: absolute;
    top: 4px;
    right: 10px;
    font-size: 14px;
    line-height: 1.7;
    color: #101010;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 16px;
    padding-left: 30px;
    text-align: center;
    z-index: 1;
    transition: all 0.4s;
    border: 1px dashed #fb6a19;
}

@media (max-width: 557.98px) {
    .content-section .post-comments-container .comment-list .comment-body .reply a {
        position: relative;
        top: 0;
        right: 0;
    }
}

.content-section .post-comments-container .comment-list .comment-body .reply a::before {
    position: absolute;
    content: "\f060";
    top: 50%;
    left: 10px;
    margin: auto;
    transform: translatey(-50%);
    font-family: "Font Awesome 5 Free";
    font-size: 14px;
    font-weight: 600;
    color: #fb6a19;
    transition: all 0.4s;
}

.content-section .post-comments-container .comment-list .comment-body .reply a:hover {
    color: #fb6a19;
}

.content-section .post-comments-container .comment-list .comment-body .comment-content {
    margin-top: 15px;
}

.content-section .post-comments-container .comment-list .comment-body .comment-content p {
    font-size: 16px;
    font-weight: 400;
}

.content-section .post-comments-container .comment-respond {
    margin-top: 55px;
}

.content-section .post-comments-container .comment-respond h3 {
    font-size: 24px;
    line-height: 1.3;
    color: #101010;
    font-weight: 600;
    margin-bottom: 22px;
    position: relative;
    padding-left: 20px;
}

.content-section .post-comments-container .comment-respond h3::before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    left: 0;
    top: 12px;
    background-color: #fb6a19;
}

.content-section .post-comments-container .comment-respond .comment-reply-title {
    display: flex;
    justify-content: space-between;
}

.content-section .post-comments-container .comment-respond .comment-reply-title small a {
    position: absolute;
    top: 4px;
    right: 10px;
    font-size: 14px;
    line-height: 1.7;
    color: #5C727D;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 16px;
    text-align: center;
    z-index: 1;
    transition: all 0.4s;
    border: 1px dashed #fb6a19;
}

.content-section .post-comments-container .comment-respond .comment-reply-title small a:hover {
    color: #fb6a19;
}

.content-section .post-comments-container .comment-respond .logged-in-as a {
    font-size: 17px;
    line-height: 1;
    font-weight: 400;
    color: #5C727D;
    transition: all 0.4s;
}

.content-section .post-comments-container .comment-respond .logged-in-as a:hover {
    color: #fb6a19;
}

.content-section .post-comments-container .comment-respond .comment-form {
    background: #f1f7fb;
    padding: 45px 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

@media (max-width: 575.98px) {
    .content-section .post-comments-container .comment-respond .comment-form {
        padding: 35px 20px;
    }
}

.content-section .post-comments-container .comment-respond .comment-form label {
    display: none;
}

.content-section .post-comments-container .comment-respond .comment-form .comment-notes {
    flex-basis: 100%;
    max-width: 100%;
}

.content-section .post-comments-container .comment-respond .comment-form .comment-notes span {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4667;
    color: #5C727D;
}

.content-section .post-comments-container .comment-respond .comment-form .comment-form-cookies-consent {
    display: flex;
}

.content-section .post-comments-container .comment-respond .comment-form .comment-form-cookies-consent label {
    display: block;
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4667;
    color: #5C727D;
}

.content-section .post-comments-container .comment-respond .comment-form .comment-form-cookies-consent input {
    flex-basis: 15px !important;
    margin-bottom: 0 !important;
    margin-right: 15px;
    margin-top: 5px !important;
    height: auto !important;
}

@media (max-width: 575.98px) {
    .content-section .post-comments-container .comment-respond .comment-form .comment-form-cookies-consent input {
        margin-right: 10px;
        flex-basis: 30px !important;
    }
}

.content-section .post-comments-container .comment-respond .comment-form .comment-form-url {
    display: none;
}

.content-section .post-comments-container .comment-respond .comment-form p:not(:last-child) input {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    background: #ffffff;
    border: 1px solid #ffffff;
    font-size: 16px;
    color: #5C727D;
    outline: none;
    padding: 10px 50px 10px 20px;
}

.content-section .post-comments-container .comment-respond .comment-form p:not(:last-child) input::placeholder {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    color: #5C727D;
}

.content-section .post-comments-container .comment-respond .comment-form p:not(:last-child) input:focus {
    border: 1px solid #fb6a19;
}

.content-section .post-comments-container .comment-respond .comment-form .comment-form-comment {
    flex-basis: 100%;
    max-width: 100%;
    position: relative;
}

.content-section .post-comments-container .comment-respond .comment-form .comment-form-comment::before {
    position: absolute;
    content: "\f044";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 14px;
    color: #5C727D;
    top: 25px;
    right: 30px;
    z-index: 1;
    transform: translateY(-50%);
}

.content-section .post-comments-container .comment-respond .comment-form .comment-form-comment textarea {
    position: relative;
    display: block;
    width: 100%;
    height: 170px;
    resize: none;
    background: #ffffff;
    border: 1px solid #ffffff;
    font-size: 16px;
    outline: none;
    color: #5C727D;
    padding: 10px 50px 10px 20px;
}

.content-section .post-comments-container .comment-respond .comment-form .comment-form-comment textarea:focus {
    border: 1px solid #fb6a19;
}

.content-section .post-comments-container .comment-respond .comment-form .comment-form-author {
    flex-basis: 48%;
    max-width: 100%;
    position: relative;
}

@media (max-width: 767.98px) {
    .content-section .post-comments-container .comment-respond .comment-form .comment-form-author {
        flex-basis: 100%;
    }
}

.content-section .post-comments-container .comment-respond .comment-form .comment-form-author::before {
    position: absolute;
    content: "\f007";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 14px;
    color: #5C727D;
    top: 50%;
    right: 30px;
    z-index: 1;
    transform: translateY(-50%);
}

.content-section .post-comments-container .comment-respond .comment-form .comment-form-email {
    flex-basis: 48%;
    max-width: 100%;
    position: relative;
}

@media (max-width: 767.98px) {
    .content-section .post-comments-container .comment-respond .comment-form .comment-form-email {
        flex-basis: 100%;
    }
}

.content-section .post-comments-container .comment-respond .comment-form .comment-form-email::before {
    position: absolute;
    content: "\f0e0";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 14px;
    color: #5C727D;
    top: 50%;
    right: 30px;
    z-index: 1;
    transform: translateY(-50%);
}

.op-footer.style-3 {
    position: relative;
}

.op-footer.style-3 .logo-wrapper .footer-logo-wrapper {
    display: inline-block;
}

.op-footer.style-3 .logo-wrapper .footer-logo-wrapper img {
    width: 90px;
}

.op-footer.style-3 h4 {
    font-weight: 500;
    line-height: 1;
    color: #ffffff;
    padding-bottom: 15px;
    margin-bottom: 40px;
    position: relative;
}

.op-footer.style-3 h4::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0px;
    display: inline-block;
    width: 50px;
    height: 4px;
    background-color: #fb6a19;
}

.op-footer.style-3 .footer-contact-information {
    padding: 40px 0;
    border-top: 1px solid #eee;
    background-color: #ffffff;
}

@media (max-width: 1024.98px) {
    .op-footer.style-3 .footer-contact-information {
        padding-bottom: 20px;
    }
}

@media (max-width: 991.98px) {
    .op-footer.style-3 .footer-contact-information {
        flex-basis: 100%;
    }
}

.op-footer.style-3 .footer-contact-information .contact-section {
    display: flex;
}

@media (max-width: 1024.98px) {
    .op-footer.style-3 .footer-contact-information .contact-section {
        margin-bottom: 20px;
    }
}

.op-footer.style-3 .footer-contact-information .contact-section i {
    font-size: 35px;
    color: #fb6a19;
    margin-right: 20px;
}

@media (max-width: 1199.98px) {
    .op-footer.style-3 .footer-contact-information .contact-section i {
        margin-right: 12px;
        font-size: 32px;
    }
}

@media (max-width: 1024.98px) {
    .op-footer.style-3 .footer-contact-information .contact-section i {
        margin-right: 20px;
        font-size: 35px;
    }
}

.op-footer.style-3 .footer-contact-information .contact-section span {
    font-size: 21px;
    line-height: 1;
    font-weight: 600;
    color: #0B2C3D;
}

.op-footer.style-3 .footer-contact-information .contact-section a {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    color: #5C727D;
}

.op-footer.style-3 .footer-contact-information .contact-section a:hover {
    color: #fb6a19;
}

.op-footer.style-3 .footer-contact-information .contact-section .address {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    color: #5C727D;
}

.op-footer.style-3 .op-main-footer {
    background: transparent;
    padding: 100px 0 60px;
    position: relative;
}

.op-footer.style-3 .op-main-footer .footer-widget-container .widget .btn-container.style-20 .op-button {
    padding-left: 25px;
    padding-right: 80px;
}

.footer-widget-container .widget .footer-provi-container {
    display: flex;
    flex-direction: column;
}

@media (max-width: 1024.98px) {
    .op-footer.style-3 .op-main-footer {
        padding-bottom: 30px;
    }
}

.op-footer.style-3 .op-main-footer::before {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    content: "";
    background-color: #101010;
    border-radius: 0 50px 0 0;
    width: calc(100% - 20px);
}

@media (max-width: 767.98px) {
    .op-footer.style-3 .op-main-footer::before {
        width: 100%;
        border-radius: 0;
    }
}

@media (max-width: 767.98px) {
    .op-footer.style-3 .op-main-footer .contact-info {
        margin-bottom: 40px;
    }
}

.op-footer.style-3 .op-main-footer .contact-info li {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
    color: #5C727D;
}

.op-footer.style-3 .op-main-footer .contact-info li span {
    margin-bottom: 25px;
    display: inline-block;
}

.op-footer.style-3 .op-main-footer .contact-info.op-header-style-3 li span {
    display: block;
}

.op-footer.style-3 .op-main-footer .contact-info li a {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
    color: #fb6a19;
}

@media (max-width: 1199.98px) {
    .op-footer.style-3 .op-main-footer .contact-info li a {
        font-size: 22px;
    }
}

.op-footer.style-3 .widget .searchform {
    position: relative;
}

.op-footer.style-3 .widget .searchform::before {
    position: absolute;
    content: "";
    background: #ddd;
    width: 1px;
    height: 35px;
    right: 70px;
    top: 15px;
    z-index: 2;
}

.op-footer.style-3 .widget .searchform::after {
    position: absolute;
    content: "\f002";
    top: 50%;
    right: 30px;
    margin: auto;
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
    font-size: 18px;
    font-weight: 900;
    color: #5C727D;
}

.op-footer.style-3 .widget .searchform input[type=text] {
    position: relative;
    display: block;
    width: 100%;
    height: 65px;
    border: 1px solid #dddddd;
    font-size: 18px;
    color: #5C727D;
    outline: none;
    padding: 10px 80px 10px 30px;
    transition: all 500ms ease;
}

.op-footer.style-3 .widget .searchform input[type=submit] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
    font-size: 0;
    border: 0;
    width: 18px;
    height: 27px;
    background: transparent;
    cursor: pointer;
    padding-left: 20px;
    transition: all 500ms ease;
}

.op-footer.style-3 .widget .tagcloud a {
    display: inline-block;
    color: #101010;
    font-weight: 600;
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 2px;
    margin-right: 5px;
    margin-bottom: 8px;
}

.op-footer.style-3 .widget .tagcloud a:hover {
    color: #ffffff;
    background-color: #fb6a19;
}

.op-footer.style-3 .widget ul ul {
    padding-left: 20px !important;
}

.op-footer.style-3 .widget ul li.recentcomments a {
    padding-left: 0;
}

.op-footer.style-3 .widget ul li.recentcomments a::before {
    display: none;
}

.op-footer.style-3 .widget p {
    color: #5C727D;
}

.op-footer.style-3 .widget .mc4wp-form {
    background-color: #fb6a19;
    border-radius: 0px 50px 0px 0px;
    padding: 50px 30px;
    margin-top: -180px;
}

@media (max-width: 1199.98px) {
    .op-footer.style-3 .widget .mc4wp-form {
        padding: 50px 22px;
    }
}

@media (max-width: 1024.98px) {
    .op-footer.style-3 .widget .mc4wp-form {
        padding: 50px 35px;
    }
}

@media (max-width: 767.98px) {
    .op-footer.style-3 .widget .mc4wp-form {
        margin-top: 0;
        border-radius: 0;
    }
}

.op-footer.style-3 .widget .mc4wp-form i {
    font-size: 80px;
    color: #ffffff;
    margin-bottom: 30px;
}

@media (max-width: 1199.98px) {
    .op-footer.style-3 .widget .mc4wp-form i {
        font-size: 60px;
    }
}

@media (max-width: 1024.98px) {
    .op-footer.style-3 .widget .mc4wp-form i {
        margin-bottom: 20px;
    }
}

.op-footer.style-3 .widget .mc4wp-form h3 {
    font-weight: 400;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 25px;
}

@media (max-width: 1024.98px) {
    .op-footer.style-3 .widget .mc4wp-form h3 {
        margin-bottom: 15px;
    }
}

.op-footer.style-3 .widget .mc4wp-form h4 {
    display: none;
}

.op-footer.style-3 .widget .mc4wp-form label {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    color: #ffffff;
}

.op-footer.style-3 .widget .mc4wp-form input[type=email] {
    display: block;
    width: 100%;
    height: 50px;
    font-size: 13px;
    color: #5C727D;
    font-weight: 400;
    padding: 0px 22px;
    background: #eff2f7;
    border: 1px solid #d3d3d3;
    border-radius: 0px;
    border: 0;
    outline: none;
    transition: all 0.4s;
}

.op-footer.style-3 .widget .mc4wp-form input[type=submit] {
    margin-top: 20px;
    padding: 15px 22px;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    border: 0;
    color: #ffffff;
    background-color: #0B2C3D;
    border-radius: 6px;
    transition: all 0.4s;
}

@media (max-width: 575.98px) {
    .op-footer.style-3 .widget .mc4wp-form input[type=submit] {
        padding: 15px 20px;
    }
}

.op-footer.style-3 .widget .mc4wp-form input[type=submit]:hover {
    background-color: #101010;
}

.op-footer.style-3 .widget h4 {
    font-weight: 500;
    line-height: 1;
    color: #ffffff;
    padding-bottom: 15px;
    margin-bottom: 40px;
    position: relative;
}

.op-footer.style-3 .widget h4::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    display: inline-block;
    width: 50px;
    height: 4px;
    background-color: #fb6a19;
}

.op-footer.style-3 .widget ul li,
.op-footer.style-3 .widget a {
    color: #5C727D;
}

.op-footer.style-3 .widget ul li:not(:last-child) {
    padding-bottom: 10px;
}

.op-footer.style-3 .widget ul li a {
    color: #5C727D;
    position: relative;
    padding-left: 20px;
    font-size: 17px;
    font-weight: 400;
}

.op-footer.style-3 .widget ul li a::before {
    position: absolute;
    content: "\f054";
    color: #5C727D;
    top: 2px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 15px;
    left: 0;
    transition: all 0.4s;
}

.op-footer.style-3 .widget ul li a:hover {
    color: #fb6a19;
}

.op-footer.style-3 .widget ul li a:hover::before {
    color: #fb6a19;
}

.op-footer.style-3 .op-bottom-footer {
    position: relative;
    color: #ffffff;
}

.op-footer.style-3 .op-bottom-footer .container {
    position: relative;
    z-index: 1;
}

.op-footer.style-3 .op-bottom-footer::before {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    content: "";
    background-color: #101010;
    width: calc(100% - 20px);
}

@media (max-width: 767.98px) {
    .op-footer.style-3 .op-bottom-footer::before {
        background-color: #000000;
        width: 100%;
    }
}

.op-footer.style-3 .op-bottom-footer:after {
    position: absolute;
    height: 100%;
    top: 0;
    right: 20px;
    content: "";
    background-color: #000000;
    width: 500px;
}

@media (max-width: 575.98px) {
    .op-footer.style-3 .op-bottom-footer:after {
        display: none;
    }
}

.op-footer.style-3 .op-bottom-footer .copyrights-text {
    color: #5C727D;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
}

@media (max-width: 1024.98px) {
    .op-footer.style-3 .op-bottom-footer .social-icons {
        justify-content: center !important;
        margin-top: 25px;
    }
}

@media (max-width: 767.98px) {
    .op-footer.style-3 .op-bottom-footer .social-icons {
        justify-content: start !important;
    }
}

@media (max-width: 575.98px) {
    .op-footer.style-3 .op-bottom-footer .social-icons {
        flex-wrap: wrap;
        justify-content: flex-start !important;
    }
}

.op-footer.style-3 .op-bottom-footer .social-icons li:not(:last-child) {
    margin-right: 10px;
}

@media (max-width: 575.98px) {
    .op-footer.style-3 .op-bottom-footer .social-icons li:not(:last-child) {
        margin-bottom: 10px;
    }
}

.op-footer.style-3 .op-bottom-footer .social-icons li a {
    color: #ffffff;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
}

.op-footer.style-3 .op-bottom-footer .social-icons li a svg,
.op-footer.style-3 .op-bottom-footer .social-icons li a svg path {
    fill: #ffffff;
}

.op-footer.style-3 .op-bottom-footer .social-icons li a:hover {
    background-color: #fb6a19;
    color: #ffffff;
    border-color: #fb6a19;
}

.op-footer.style-3 .op-bottom-footer .social-icons li a:hover svg,
.op-footer.style-3 .op-bottom-footer .social-icons li a:hover svg path {
    fill: #ffffff;
}

.op-footer.style-3 .op-bottom-footer .bottom-footer-wrapper {
    position: relative;
    padding: 45px 0;
    padding-left: 20px;
    overflow: hidden;
}

@media (max-width: 1024.98px) {
    .op-footer.style-3 .op-bottom-footer .bottom-footer-wrapper {
        padding: 35px 0 35px 20px;
    }
}

@media (max-width: 767.98px) {
    .op-footer.style-3 .op-bottom-footer .bottom-footer-wrapper {
        padding-left: 0;
    }
}

.op-footer.style-3 .op-bottom-footer .bottom-footer-wrapper::before {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    content: "";
    border-radius: 50px 0 0 0;
    background-color: #000000;
    width: calc(100vw - 20px);
}

@media (max-width: 767.98px) {
    .op-footer.style-3 .op-bottom-footer .bottom-footer-wrapper::before {
        border-radius: 0;
        width: 100%;
    }
}

.scroll-to-top {
    position: fixed;
    bottom: 15px;
    right: 20px;
    width: 60px;
    height: 60px;
    color: #ffffff;
    font-size: 20px;
    text-align: center;
    z-index: 100;
    cursor: pointer;
    background: #0B2C3D;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
}

.scroll-to-top:hover {
    background-color: #fb6a19;
}

.scroll-to-top i {
    color: #ffffff;
    font-size: 18px;
}

.op-blog-list .blog-heading a {
    word-break: break-word;
}

.blog-content p.wp-block-cover-text,
.blog-content p.wp-block-cover-text a,
.blog-content .comments-area .comment p.wp-block-cover-text,
.blog-content .comments-area .comment p.wp-block-cover-text a {
    color: #fff !important;
}

.gallery-item {
    display: inline-block;
    padding: 1.79104477%;
    text-align: center;
    vertical-align: top;
}

.gallery-columns-2 .gallery-item {
    max-width: 100%;
    width: 50%;
}

.blog-content .wp-block-search .wp-block-search__input {
    margin-bottom: 10px;
}

.sidebar .wp-block-group__inner-container {
    padding: 0;
    margin-bottom: 0;
}

.wp-block-group__inner-container {
    padding: 20px;
    margin-bottom: 15px;
}

pre {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.42857143;
    color: #5C727D;
    white-space: pre-wrap;
    word-wrap: break-word;
    background-color: #fff;
    border-radius: 4px;
    overflow: auto;
    margin-top: 10px;
    border: 1px solid #0B2C3D;
}

figure {
    max-width: 100%;
}

.post-password-form {
    padding: 25px;
    border: 2px solid #0B2C3D;
    border-radius: 4px;
    position: relative;
}

.post-password-form label {
    width: 100%;
}

.post-password-form label input[type=password] {
    display: block;
    width: 100%;
    height: 65px;
    border: 1px solid #dddddd;
    font-size: 18px;
    color: #5C727D;
    outline: none;
    padding: 10px 80px 10px 30px;
    transition: all 500ms ease;
    border-radius: 0;
}

.post-password-form input[type=submit] {
    position: relative;
    background-color: #fb6a19;
    color: #5C727D;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    display: inline-block;
    overflow: hidden;
    padding: 10px 28px 10px 28px;
    transition: all 0.4s;
    display: flex;
    align-items: center;
    border-radius: 0;
}

.post-password-form input[type=submit]:hover {
    color: #ffffff;
    background: #0B2C3D;
}

.gallery-columns-3 .gallery-item {
    max-width: 33.33%;
    width: 33.33%;
}

.gallery-columns-1 .gallery-item {
    max-width: 100%;
    width: 100%;
}

.gallery-columns-4 .gallery-item {
    max-width: 25%;
    width: 25%;
}

.gallery-columns-5 .gallery-item {
    max-width: 20%;
    width: 20%;
}

.gallery-columns-6 .gallery-item {
    max-width: 14.28%;
    width: 14.28%;
}

.gallery-columns-7 .gallery-item {
    max-width: 100%;
    width: 12.5%;
}

.gallery-columns-8 .gallery-item {
    max-width: 12.5%;
    width: 12.5%;
}

.gallery-columns-9 .gallery-item {
    max-width: 11.11%;
    width: 11.11%;
}

@media (max-width: 767px) {

    .gallery-columns-5 .gallery-item,
    .gallery-columns-6 .gallery-item,
    .gallery-columns-7 .gallery-item,
    .gallery-columns-8 .gallery-item,
    .gallery-columns-9 .gallery-item {
        max-width: 33%;
        width: 33%;
    }
}

.widget ul li,
.widget ol li {
    padding-right: 0 !important;
}

.widget ul ul,
.widget ul ol,
.widget ol ul,
.widget ol ol {
    padding-left: 20px;
}

.btn-container.style-20 {
    line-height: 0;
}

.btn-container.style-20 .op-button {
    position: relative;
    background-color: #fb6a19;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    overflow: hidden;
    padding: 17px 90px 17px 30px;
    transition: all 0.4s;
    flex-basis: 100% !important;
    display: inline-block;
}

.btn-container.style-20 .op-button:hover {
    background-color: #0B2C3D;
}

.btn-container.style-20 .op-button::before {
    position: absolute;
    content: "";
    right: -12px;
    top: 0;
    width: 75px;
    height: 100%;
    color: #fb6a19;
    transform: skewX(-20deg);
    background-color: #0B2C3D;
}

@media (max-width: 1024.98px) {
    .btn-container.style-20 .op-button::before {
        right: -16px;
    }
}

.btn-container.style-20 .op-button::after {
    position: absolute;
    content: "\f061";
    font-weight: 900;
    font-size: 16px;
    font-family: "Font Awesome 5 Free";
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #fb6a19;
}

.btn-container.style-20 .op-button.dropdown-toggle::after {
    content: "";
    font-size: 1.5em;
}

.op-header.style-3 .btn-container.style-20.user-menu .op-button i {
    font-size: 1.5em;
}

form .form-submit {
    position: relative;
    display: inline-block;
    background-color: #fb6a19;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    transition: all 0.4s;
    overflow: hidden;
    margin-bottom: 0;
}

form .form-submit::before {
    position: absolute;
    content: "";
    right: -12px;
    top: 0;
    width: 75px;
    height: 100%;
    color: #fb6a19;
    cursor: pointer;
    transform: skewX(-20deg);
    background-color: #0B2C3D;
}

form .form-submit::after {
    position: absolute;
    content: "\f061";
    font-weight: 900;
    font-size: 16px;
    font-family: "Font Awesome 5 Free";
    right: 20px;
    top: 50%;
    cursor: pointer;
    transform: translateY(-50%);
    color: #fb6a19;
}

form .form-submit .submit {
    background-color: transparent;
    border: 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    transition: all 0.4s;
    padding: 17px 90px 17px 30px !important;
}

form .form-submit:hover {
    background-color: #0B2C3D;
}

form .form-submit span {
    position: absolute;
}

.op-contact-info.style-4 .single-contact-item .contact-item {
    background-color: #f1f7fb;
    padding: 40px;
    border: 1px solid transparent;
    transition: all 0.3s ease-in-out;
    margin-bottom: 40px;
    height: 85%;
}

.op-contact-info.style-4 .single-contact-item .contact-item:hover {
    transform: translateY(-10px);
    border-color: #fb6a19;
}

.op-contact-info.style-4 .single-contact-item .contact-item:hover .icon-heading-wrapper .contact-icon {
    background-color: #0B2C3D;
    color: #ffffff;
}

.op-contact-info.style-4 .single-contact-item .contact-item .icon-heading-wrapper {
    margin-bottom: 20px;
}

.op-contact-info.style-4 .single-contact-item .contact-item .icon-heading-wrapper .contact-icon {
    width: 70px;
    height: 70px;
    font-size: 20px;
    line-height: 3.5;
    border-radius: 50%;
    background-color: #ffffff;
    text-align: center;
    color: #0B2C3D;
    margin-right: 25px;
    transition: all 0.3s ease-in-out;
}

.op-contact-info.style-4 .single-contact-item .contact-item .icon-heading-wrapper .contact-icon i {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.op-contact-info.style-4 .single-contact-item .contact-item .icon-heading-wrapper .contact-heading h4 {
    line-height: 1.2;
    font-weight: 600;
    color: #fb6a19;
    text-transform: capitalize;
    margin-bottom: 3px;
}

.op-contact-info.style-4 .single-contact-item .contact-item .icon-heading-wrapper .contact-heading span {
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: #5C727D;
}

.op-contact-info.style-4 .single-contact-item .contact-item .info-icon-wrapper .contact-info span {
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.88;
    color: #5C727D;
}

.op-contact-info.style-4 .single-contact-item .contact-item .info-icon-wrapper .contact-info span a {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.88;
    color: #5C727D;
}

@media (max-width: 575.98px) {
    .op-contact-info.style-4 .single-contact-item .contact-item {
        padding: 40px 15px;
    }
}

.page-content-container .contact-form-5 form .single-info {
    margin-bottom: 25px;
}

.page-content-container .contact-form-5 form .single-info label {
    color: #0B2C3D;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px;
}

.page-content-container .contact-form-5 form .single-info input:not([type=submit]),
.page-content-container .contact-form-5 form .single-info textarea {
    width: 100%;
    background: #f1f7fb;
    line-height: 1;
    padding: 10px 20px;
    height: 60px;
    border: 1px solid #f1f7fb;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    color: #5C727D;
}

.page-content-container .contact-form-5 form .single-info input:not([type=submit])::placeholder,
.page-content-container .contact-form-5 form .single-info textarea::placeholder {
    font-size: 16px;
    font-weight: 400;
    color: #5C727D;
}

.page-content-container .contact-form-5 form .single-info input:not([type=submit]):focus,
.page-content-container .contact-form-5 form .single-info textarea:focus {
    border-color: #fb6a19;
}

.page-content-container .contact-form-5 form .single-info textarea {
    height: 170px;
    resize: none;
    padding: 20px;
}

.page-content-container .contact-form-5 form .form-submit span {
    position: absolute;
}

.op-headline.style-25 .headline-border {
    display: inline-block;
    position: relative;
}

.op-headline.style-25 .headline-border:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    background-color: #fb6a19;
    width: 70%;
    height: 2px;
}

.op-headline.style-25 .headline-border h2 {
    font-weight: 600;
    line-height: 1;
    color: #0B2C3D;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
    margin-bottom: 0;
    text-align: center;
    letter-spacing: -0.9px;
}

.op-headline.style-25 .headline-border h2:before {
    position: absolute;
    content: "";
    top: -18px;
    left: 50%;
    height: 4px;
    width: 10px;
    margin-left: -10px;
    background-color: #fb6a19;
    transform: skew(0deg, 150deg);
}

.op-headline.style-25 .headline-border h2:after {
    position: absolute;
    content: "";
    top: -18px;
    left: 50%;
    height: 4px;
    width: 10px;
    background-color: #fb6a19;
    transform: skew(0deg, -150deg);
}

.op-headline.style-26.text-right h2:before {
    left: auto;
    right: 0;
}

.op-headline.style-26.text-center h2:before {
    left: 0;
    right: 0;
}

.op-headline.style-26 h2 {
    line-height: 1;
    position: relative;
    font-weight: 700;
    margin-bottom: 0;
    color: #0B2C3D;
    padding-top: 53px;
    display: inline-block;
    letter-spacing: -0.9px;
}

.op-headline.style-26 h2:before {
    position: absolute;
    content: "\f015";
    top: 0;
    left: 0;
    margin: auto;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #fb6a19;
    font-size: 40px;
}

.op-headline.style-26 span {
    font-size: 18px;
    color: #5C727D;
    display: inline-block;
    line-height: 1.3;
    font-weight: 500;
    position: relative;
    padding: 0 65px;
    margin-top: 5px;
}

.op-headline.style-26 span:before,
.op-headline.style-26 span:after {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-color: #fb6a19;
    width: 50px;
    height: 2px;
}

.op-headline.style-26 span:after {
    left: auto;
    right: 0;
}

@media (max-width: 575.98px) {
    .op-headline.style-26 span {
        font-size: 16px;
    }
}

.faq-image-style img {
    width: 100%;
    height: auto;
}

.testimonial-content {
    background-color: #fb6a19;
    color: #ffffff;
    margin-right: 25px;
    margin-top: -100px;
    padding: 30px;
    position: relative;
}

@media (max-width: 575.98px) {
    .testimonial-content {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.testimonial-content p {
    margin-bottom: 0;
    line-height: 1.714;
    font-size: 16px;
    color: #ffffff;
    position: relative;
    padding-top: 52px;
}

.testimonial-content p:before {
    position: absolute;
    content: "\f10d";
    top: 0;
    left: 0;
    color: #ffffff;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 40px;
    width: 40px;
    height: 40px;
    line-height: 1;
    display: inline-block;
}

.op-accordion.style-1 .card {
    position: relative;
    display: block;
    border: none;
}

.op-accordion.style-1 .card:not(:last-child) {
    margin-bottom: 12px;
}

.op-accordion.style-1 .card .card-header {
    border-radius: 0;
    background: none;
    border: none;
    position: relative;
    display: block;
    cursor: pointer;
    background-color: transparent;
    padding: 0;
}

.op-accordion.style-1 .card .card-header h5 {
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
    color: #0B2C3D;
}

.op-accordion.style-1 .card .card-header h5 a {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    color: #0B2C3D;
    border: 0;
    border-radius: 0;
    text-decoration: none;
    padding: 23px 30px 23px 70px;
    display: block;
    text-align: left;
    position: relative;
    background-color: #ffffff;
    border: 1px solid #e6e9ef;
    border-bottom: 0;
}

.op-accordion.style-1 .card .card-header h5 a:before {
    content: "\f068";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 14px;
    color: #ffffff;
    position: absolute;
    top: 25px;
    left: 30px;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fb6a19;
}

.op-accordion.style-1 .card .card-header h5 a.collapsed {
    background-color: #f1f7fb;
    border-color: transparent;
}

.op-accordion.style-1 .card .card-header h5 a.collapsed:before {
    content: "\f067";
    color: #ffffff;
}

.op-accordion.style-1 .card .card-content {
    position: relative;
}

.op-accordion.style-1 .card .card-content .card-body {
    font-size: 16px;
    font-weight: 400;
    color: #5C727D;
    line-height: 2.125;
    padding: 0px 40px 28px;
    border: 1px solid #e6e9ef;
    border-top: 0;
}

@media (max-width: 575.98px) {
    .op-accordion.style-1 .card .card-content .card-body {
        padding-left: 20px;
        padding-right: 20px;
    }

    .op-accordion.style-1 .card .card-header h5 a {
        padding-left: 60px;
    }

    .op-accordion.style-1 .card .card-header h5 a:before {
        left: 20px;
    }

    .testimonial-content {
        margin-top: -60px;
    }
}

.faq-form form input:not([type=submit]),
.faq-form form textarea {
    width: 100%;
    background: transparent;
    line-height: 1;
    padding: 11px 18px;
    border: 2px solid #5C727D;
    outline: none;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 30px;
    border-radius: 22px;
}

.faq-form form input:not([type=submit])::placeholder,
.faq-form form textarea::placeholder {
    font-size: 14px;
    font-weight: 400;
    color: #5C727D;
}

.faq-form form input:not([type=submit]):focus,
.faq-form form textarea:focus {
    border-color: #fb6a19;
}

.faq-form form textarea {
    height: 120px;
    resize: none;
    padding: 17px 18px;
}

.faq-image {
    position: relative;
}

@media (max-width: 1024.98px) {
    .faq-image {
        height: 450px;
    }
}

.faq-image:before {
    position: absolute;
    content: "";
    left: 22px;
    top: 22px;
    right: 22px;
    bottom: 22px;
    margin: auto;
    border: 20px solid #fb6a19;
    z-index: 99;
}

@media (max-width: 575.98px) {
    .faq-image:before {
        border-width: 15px;
    }
}

.op-cta.style-5 .cta-section {
    max-width: 850px;
    margin: 0 auto;
}

.op-cta.style-5 .cta-section .call-us-wrapper {
    background-color: #0B2C3D;
    margin-right: 10px;
    padding: 40px;
    border-radius: 5px;
    width: 100%;
}

@media (max-width: 575.98px) {
    .op-cta.style-5 .cta-section .call-us-wrapper {
        padding: 25px 20px;
    }
}

.op-cta.style-5 .cta-section .call-us-wrapper .contact-icon {
    font-size: 36px;
    color: #ffffff;
    margin-right: 17px;
}

.op-cta.style-5 .cta-section .call-us-wrapper .contact-content-wrapper h5 {
    color: #ffffff;
    font-weight: 500;
    line-height: 1.333;
    margin-bottom: 0;
}

.op-cta.style-5 .cta-section .call-us-wrapper .contact-content-wrapper a {
    color: #ffffff;
    font-size: 30px;
    font-weight: 600;
}

.op-cta.style-5 .cta-section .call-us-wrapper .contact-content-wrapper a:hover {
    color: #ffffff;
}

.op-cta.style-5 .cta-section .mailchimp-wrapper {
    background-color: #0B2C3D;
    margin-left: 10px;
    padding: 40px;
    padding-left: 60px;
    border-radius: 5px;
    position: relative;
    width: 100%;
}

@media (max-width: 575.98px) {
    .op-cta.style-5 .cta-section .mailchimp-wrapper {
        padding: 30px 20px 25px;
    }
}

.op-cta.style-5 .cta-section .mailchimp-wrapper form.mc4wp-form {
    position: relative;
}

.op-cta.style-5 .cta-section .mailchimp-wrapper form.mc4wp-form:before {
    position: absolute;
    content: "\f30b";
    right: 0;
    top: calc(100% - 50px);
    width: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #0B2C3D;
    font-size: 32px;
    height: 50px;
}

.op-cta.style-5 .cta-section .mailchimp-wrapper form.mc4wp-form i,
.op-cta.style-5 .cta-section .mailchimp-wrapper form.mc4wp-form h3 {
    display: none;
}

.op-cta.style-5 .cta-section .mailchimp-wrapper form.mc4wp-form h4 {
    font-weight: 600;
    line-height: 1.333;
    margin-bottom: 20px;
    color: #ffffff;
}

.op-cta.style-5 .cta-section .mailchimp-wrapper form.mc4wp-form label {
    display: none;
}

.op-cta.style-5 .cta-section .mailchimp-wrapper form.mc4wp-form input[type=email] {
    width: 100%;
    border-radius: 5px;
    border: 0;
    outline: none;
    padding: 14px 20px;
    font-weight: 400;
    font-size: 14px;
    color: #5C727D;
    padding-right: 50px;
}

.op-cta.style-5 .cta-section .mailchimp-wrapper form.mc4wp-form input[type=submit] {
    height: 50px;
    font-size: 0;
    position: absolute;
    right: 0;
    top: calc(100% - 50px);
    width: 55px;
    border: 0;
    outline: none;
    background-color: transparent;
}

.op-cta.style-5 .cta-section .mailchimp-wrapper .seperator-wrapper {
    position: absolute;
    top: 50%;
    left: -10%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 1px 1px #0B2C3D inset;
    border: 5px solid #ffffff;
}

.op-cta.style-5 .cta-section .mailchimp-wrapper .seperator-wrapper span {
    color: #0B2C3D;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    font-size: 16px;
    font-weight: 700;
}

@media (max-width: 1024.98px) {
    .op-cta.style-5 .cta-section .call-us-wrapper .contact-content-wrapper a {
        font-size: 24px;
    }
}

@media (max-width: 767.98px) {
    .op-cta.style-5 .cta-section .call-us-wrapper {
        margin-right: 0;
    }

    .op-cta.style-5 .cta-section .mailchimp-wrapper {
        margin-left: 0;
        margin-top: 20px;
    }

    .op-cta.style-5 .cta-section .mailchimp-wrapper .seperator-wrapper {
        top: -40px;
        left: 50%;
        transform: translateX(-50%);
    }

    .op-cta.style-5 .cta-section .mailchimp-wrapper {
        padding-left: 40px;
    }
}

@media (max-width: 575.98px) {
    .op-cta.style-5 .cta-section .call-us-wrapper .contact-content-wrapper a {
        font-size: 20px;
    }

    .op-cta.style-5 .cta-section .mailchimp-wrapper {
        padding-left: 20px;
    }

    .op-cta.style-5 .cta-section .call-us-wrapper .contact-icon {
        margin-right: 0;
    }
}

.op-team-member.style-3 .team-member-wrapper {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.09);
}

.op-team-member.style-3 .team-member-wrapper .member-image {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.op-team-member.style-3 .team-member-wrapper .member-image::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    display: block;
    top: 0;
    left: 0;
    opacity: 0;
    background: linear-gradient(to bottom, transparent 50%, #fb6a19);
    transition: opacity 0.4s;
}

.op-team-member.style-3 .team-member-wrapper .member-image>a {
    display: block;
}

.op-team-member.style-3 .team-member-wrapper .member-image>a img {
    width: 100%;
}

.op-team-member.style-3 .team-member-wrapper .member-image .view-profile-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0, 0);
    transition: all 0.4s;
    width: 100%;
}

.op-team-member.style-3 .team-member-wrapper .member-image .view-profile-btn a {
    font-size: 18px;
    line-height: 1.4;
    color: #ffffff;
    background-color: #fb6a19;
    font-weight: 600;
    padding: 8px 15px;
    z-index: 3;
    display: inline-block;
    border-radius: 6px;
}

.op-team-member.style-3 .team-member-wrapper .member-content-wrapper {
    padding: 30px;
    position: relative;
}

.op-team-member.style-3 .team-member-wrapper .member-content-wrapper .member-content {
    text-align: center;
}

.op-team-member.style-3 .team-member-wrapper .member-content-wrapper .member-content h4 {
    color: #0B2C3D;
    margin-bottom: 0;
    font-weight: 600;
    line-height: 1.25;
}

.op-team-member.style-3 .team-member-wrapper .member-content-wrapper .member-content h4 a {
    color: #0B2C3D;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.25;
}

.op-team-member.style-3 .team-member-wrapper .member-content-wrapper .member-content h4 a:hover {
    color: #fb6a19;
}

.op-team-member.style-3 .team-member-wrapper .member-content-wrapper .member-content span {
    font-size: 17px;
    line-height: 1.2;
    display: block;
    color: #5C727D;
}

.op-team-member.style-3 .team-member-wrapper:hover .member-image::before {
    opacity: 1;
}

.op-team-member.style-3 .team-member-wrapper:hover .member-image .view-profile-btn {
    transform: translate(-50%, -50%) scale(1, 1);
}

.become-agent {
    max-width: 700px;
    margin: 0 auto;
}

.become-agent .btn-container {
    text-align: right;
}

@media (max-width: 767.98px) {
    .become-agent .btn-container {
        text-align: left;
    }
}

.become-agent>.elementor-container {
    justify-content: space-between;
}

.op-agencies-wrapper.style-1 .single-agency-wrapper {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    border-radius: 6px;
    padding: 40px;
}

@media (max-width: 575.98px) {
    .op-agencies-wrapper.style-1 .single-agency-wrapper {
        padding: 30px 20px;
    }
}

.op-agencies-wrapper.style-1 .single-agency-wrapper .agency-image img {
    border-radius: 6px;
    width: 100%;
}

.op-agencies-wrapper.style-1 .single-agency-wrapper .agency-content-container {
    padding: 0 40px 0 10px;
}

@media (max-width: 1024.98px) {
    .op-agencies-wrapper.style-1 .single-agency-wrapper .agency-content-container {
        padding: 0;
    }
}

.op-agencies-wrapper.style-1 .single-agency-wrapper .agency-content-container .agency-title h4 {
    font-weight: 600;
    color: #0B2C3D;
    margin-bottom: 0;
}

.op-agencies-wrapper.style-1 .single-agency-wrapper .agency-content-container .agency-location {
    margin-bottom: 25px;
}

.op-agencies-wrapper.style-1 .single-agency-wrapper .agency-content-container .agency-location span:first-child {
    color: #fb6a19;
    display: inline-block;
    font-size: 17px;
    margin-right: 7px;
}

.op-agencies-wrapper.style-1 .single-agency-wrapper .agency-content-container .agency-location span:last-child {
    color: #5C727D;
    font-size: 17px;
}

.op-agencies-wrapper.style-1 .single-agency-wrapper .agency-content-container .agency-contact-info {
    margin-top: 20px;
    padding: 18px 32px;
    background-color: #f1f7fb;
}

@media (max-width: 575.98px) {
    .op-agencies-wrapper.style-1 .single-agency-wrapper .agency-content-container .agency-contact-info {
        padding: 18px 15px;
    }
}

.op-agencies-wrapper.style-1 .single-agency-wrapper .agency-content-container .agency-contact-info ul li span {
    font-size: 17px;
    color: #0B2C3D;
    margin-right: 10px;
    display: inline-block;
}

.op-agencies-wrapper.style-1 .single-agency-wrapper .agency-content-container .agency-contact-info ul li a {
    color: #5C727D;
    font-size: 17px;
    font-weight: 400;
}

.op-agencies-wrapper.style-1 .single-agency-wrapper .agency-content-container .agency-contact-info ul li a:hover {
    color: #fb6a19;
}

.op-agencies-wrapper.style-1 .single-agency-wrapper .agency-content-container .social-icons-wrapper {
    margin-top: 23px;
}

.op-agencies-wrapper.style-1 .single-agency-wrapper .agency-content-container .social-icons-wrapper ul li a {
    width: 45px;
    height: 45px;
    background-color: #fb6a19;
    color: #ffffff;
    font-size: 20px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.op-agencies-wrapper.style-1 .single-agency-wrapper .agency-content-container .social-icons-wrapper ul li a:hover {
    background-color: #0B2C3D;
}

.op-agencies-wrapper.style-1 .single-agency-wrapper .agency-content-container .social-icons-wrapper ul li:not(:last-child) {
    margin-right: 10px;
}

.team-member-single {
    position: relative;
}

.team-member-single .member-image-wrapper>.elementor-widget-wrap .elementor-element {
    height: 100%;
}

.team-member-single .member-image-wrapper>.elementor-widget-wrap .elementor-element .elementor-widget-container {
    height: 100%;
}

.team-member-single .member-image-wrapper>.elementor-widget-wrap .elementor-element .elementor-widget-container img {
    height: 100%;
}

.team-member-single:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 265px;
    height: 100%;
    background-color: #0B2C3D;
}

.team-member-single img {
    width: 100%;
}

.team-member-single .member-details {
    max-width: 300px;
    margin-left: -105px;
}

.team-member-single .member-details>.elementor-container {
    align-items: center;
}

.experience-list ul li {
    align-items: flex-start !important;
}

.experience-list ul li span i {
    margin-top: 8px;
}

@media (max-width: 1024.98px) {
    .team-member-single::before {
        display: none;
    }

    .team-member-single .member-details {
        margin-left: 0;
    }
}

.op-logos.style-7 a {
    width: 100%;
    text-align: center;
    padding: 20px;
}

.op-logos.style-7 a img {
    min-height: 107px;
    transform: scale(1);
    transition: all 0.4s;
}

.op-logos.style-7 a:hover img {
    transform: scale(1.1);
    filter: grayscale(100%);
}

.op-icon-box.style-2 {
    text-align: left;
    background-color: #ffffff;
    border: 1px solid #dbe8fb;
    padding: 50px 40px;
    border-radius: 0 70px;
    position: relative;
    transition: all 0.4s;
}

@media (max-width: 575.98px) {
    .op-icon-box.style-2 {
        padding: 30px 25px;
    }
}

.op-icon-box.style-2:hover {
    transform: translateY(-12px);
}

.op-icon-box.style-2 .counter-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    border-left: 1px solid #dbe8fb;
    border-bottom: 1px solid #dbe8fb;
    border-radius: 0 70px;
    color: #fb6a19;
    font-weight: 600;
}

.op-icon-box.style-2 .icon-container {
    margin-bottom: 15px;
}

.op-icon-box.style-2 .icon-container i {
    font-size: 50px;
    color: #fb6a19;
}

.op-icon-box.style-2 .icon-text-container h4 {
    margin-bottom: 10px;
    font-weight: 600;
    color: #0B2C3D;
}

.op-icon-box.style-2 .icon-text-container p {
    margin-bottom: 0;
}

.op-counter.style-1 {
    display: flex;
}

@media (max-width: 1024.98px) {
    .op-counter.style-1 {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .op-counter.style-1 {
        justify-content: flex-start;
    }
}

.op-counter.style-1 .icon-container {
    flex-basis: 80px;
    flex-shrink: 0;
    flex-grow: 0;
    padding-right: 20px;
}

.op-counter.style-1 .icon-container i {
    font-size: 60px;
    transform: translateY(12px);
}

@media (max-width: 575.98px) {
    .op-counter.style-1 .icon-container i {
        font-size: 55px;
    }
}

.op-counter.style-1 .odometer-content {
    display: flex;
    align-items: center;
}

.op-counter.style-1 .sub-headline {
    transform: translateY(-5px);
    font-size: 18px;
}

.op-counter.style-1 span {
    font-size: 55px;
    font-weight: 700;
}

@media (max-width: 575.98px) {
    .op-counter.style-1 span {
        font-size: 45px;
    }
}

.op-counter.style-1 .odometer {
    font-size: 55px;
}

@media (max-width: 575.98px) {
    .op-counter.style-1 .odometer {
        font-size: 45px;
    }
}

.op-pricing-package-container.style-2 {
    border-radius: 6px;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

.op-pricing-package-container.style-2.non-active-package .pricing-top-container {
    background: linear-gradient(to bottom, #fafafa 0%, #f6f6f6);
}

.op-pricing-package-container.style-2.non-active-package .pricing-top-container .package-title h3 {
    color: #0B2C3D;
}

.op-pricing-package-container.style-2.non-active-package .pricing-top-container .price {
    color: #fb6a19;
}

.op-pricing-package-container.style-2.non-active-package .pricing-top-container .package-desc {
    color: #5C727D;
}

.op-pricing-package-container.style-2 .pricing-top-container {
    position: relative;
    padding: 45px 30px;
    text-align: center;
    background: #fb6a19;
}

@media (max-width: 575.98px) {
    .op-pricing-package-container.style-2 .pricing-top-container {
        padding: 45px 20px;
    }
}

.op-pricing-package-container.style-2 .pricing-top-container .featured-wrapper {
    position: absolute;
    top: 0;
    z-index: 999;
    left: 0;
    width: 100%;
    overflow: hidden;
    height: 100px;
}

.op-pricing-package-container.style-2 .pricing-top-container .featured-wrapper span {
    transform: rotate(-45deg);
    left: -67px;
    top: 17px;
    position: relative;
    text-align: center;
    width: 200px;
    font-size: 14px;
    font-weight: 500;
    background-color: #ffffff;
    color: #fb6a19;
    padding: 1px 0;
    display: block;
}

.op-pricing-package-container.style-2 .pricing-top-container .package-title h3 {
    font-weight: 600;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 10px;
}

.op-pricing-package-container.style-2 .pricing-top-container .price {
    color: #ffffff;
    font-size: 36px;
    line-height: 1;
    font-weight: 500;
}

.op-pricing-package-container.style-2 .pricing-top-container .package-desc {
    margin-top: 15px;
    padding: 0 10%;
    font-size: 15px;
    color: #ffffff;
}

@media (max-width: 575.98px) {
    .op-pricing-package-container.style-2 .pricing-top-container .package-desc {
        padding: 0;
    }
}

.op-pricing-package-container.style-2 .pricing-bottom-container {
    padding: 35px 30px 50px;
    background-color: #ffffff;
}

@media (max-width: 575.98px) {
    .op-pricing-package-container.style-2 .pricing-bottom-container {
        padding: 35px 20px 50px;
    }
}

.op-pricing-package-container.style-2 .pricing-bottom-container .package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.op-pricing-package-container.style-2 .pricing-bottom-container .package-features ul li {
    color: #5C727D;
    font-size: 15px;
    font-weight: 400;
}

.op-pricing-package-container.style-2 .pricing-bottom-container .package-features ul li:not(:last-child) {
    margin-bottom: 8px;
}

.op-pricing-package-container.style-2 .pricing-bottom-container .package-features ul li.disable-feature {
    text-decoration: line-through;
}

.op-pricing-package-container.style-2 .pricing-bottom-container .pricing-btn {
    text-align: center;
    margin-top: 30px;
}

.op-section-property-amenities .property-amenities {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.op-section-property-amenities .property-amenities li {
    flex-basis: 46%;
    max-width: 100%;
    margin-bottom: 23px;
    position: relative;
    display: flex;
    justify-content: space-between;
    line-height: 1.29;
}

@media (max-width: 767.98px) {
    .op-section-property-amenities .property-amenities li {
        flex-basis: 100%;
    }
}

.op-section-property-amenities .property-amenities li::before {
    content: "";
    background-color: rgba(255, 255, 255, 0.5);
    order: 2;
    flex: 1 1 auto;
    align-self: flex-end;
    height: 1px;
    margin: 0 0 5px 8px;
}

.op-section-property-amenities .property-amenities li span {
    color: #ffffff;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
}

.op-section-property-amenities .property-amenities li span:last-child {
    font-weight: 600;
    order: 3;
    padding-left: 8px;
}

.op-blog-1 {
    margin-bottom: 40px;
}

.op-blog-1 .opus-single-blog {
    box-shadow: 0 4px 18px 0 rgba(194, 200, 213, 0.3);
    padding: 25px;
}

.op-blog-1 .opus-single-blog .image-wrapper {
    position: relative;
    overflow: hidden;
}

.op-blog-1 .opus-single-blog .image-wrapper a {
    display: block;
    position: relative;
}

.op-blog-1 .opus-single-blog .image-wrapper a img {        
    transform: scale(1);
    transition: all 500ms ease;
}

.op-blog-1 .opus-single-blog .image-wrapper a:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0;
    transition: all 500ms ease;
    z-index: 2;
}

.op-blog-1 .opus-single-blog:hover .image-wrapper a::before {
    opacity: 0.35;
}

.op-blog-1 .opus-single-blog:hover .image-wrapper a img {
    transform: scale(1.1);
}

.op-blog-1 .opus-single-blog .blog-content-wrapper {
    position: relative;
    z-index: 5;
}

.op-blog-1 .opus-single-blog .blog-content-wrapper .date-wrapper {
    position: absolute;
    top: -33px;
    left: 0;
    background-color: #fb6a19;
    padding: 10px 16px;
    border-radius: 0 4px 4px 4px;
    text-align: center;
}

.op-blog-1 .opus-single-blog .blog-content-wrapper .date-wrapper span {
    display: block;
    font-size: 17px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1;
}

.op-blog-1 .opus-single-blog .blog-content-wrapper .date-wrapper span:first-child {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}

.op-blog-1 .opus-single-blog .blog-content-wrapper .content-wrapper {
    padding-top: 48px;
}

.op-blog-1 .opus-single-blog .blog-content-wrapper .content-wrapper .admin-comment {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}

.op-blog-1 .opus-single-blog .blog-content-wrapper .content-wrapper .admin-comment span {
    font-size: 13px;
    color: #5C727D;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
}

.op-blog-1 .opus-single-blog .blog-content-wrapper .content-wrapper .admin-comment span i {
    padding-right: 5px;
}

.op-blog-1 .opus-single-blog .blog-content-wrapper .content-wrapper .admin-comment span a {
    font-size: 13px;
    color: #5C727D;
    font-weight: 600;
}

.op-blog-1 .opus-single-blog .blog-content-wrapper .content-wrapper .admin-comment span a:hover {
    color: #fb6a19;
}

.op-blog-1 .opus-single-blog .blog-content-wrapper .content-wrapper .admin-comment span.admin {
    margin-right: 18px;
}

.op-blog-1 .opus-single-blog .blog-content-wrapper .content-wrapper .blog-heading {
    font-weight: 700;
    line-height: 1.07;
    margin-bottom: 11px;
    color: #0B2C3D;
}

.op-blog-1 .opus-single-blog .blog-content-wrapper .content-wrapper .blog-heading a {
    color: #0B2C3D;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.07;
    word-break: break-word;
}

.op-blog-1 .opus-single-blog .blog-content-wrapper .content-wrapper .blog-heading a:hover {
    color: #fb6a19;
}

.op-blog-1 .opus-single-blog .blog-content-wrapper .content-wrapper .btn-container {
    margin-top: 12px;
    margin-bottom: 10px;
}

.op-image-content.style-4 {
    position: relative;
}

.op-image-content.style-4 .image-content {
    background-color: #fb6a19;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.op-image-content.style-4 .image-content::before {
    background-color: #fb6a19;
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    left: 50%;
    bottom: -15px;
    transform: rotate(45deg) translateX(-50%);
}

.op-image-content.style-4 .image-content h3 {
    color: #ffffff;
    line-height: 1;
    padding: 15px 45px;
    margin: 0;
}

@media (max-width: 575.98px) {
    .op-image-content.style-4 .image-content h3 {
        padding: 20px;
        font-size: 24px;
    }
}

.image-content {
    position: relative;
    overflow: hidden;
}

@media (max-width: 1024.98px) {
    .image-content {
        height: 450px;
    }
}

.image-content:before {
    position: absolute;
    content: "";
    top: 0;
    left: -70px;
    height: 100%;
    width: 70%;
    background-color: #fb6a19;
    transform: skewX(15deg);
}

.op-testimonials-slider-container-11.style-11 .op-testimonial-slider-inner-container .op-testimonials-slider {
    position: relative;
}

.op-testimonials-slider-container-11.style-11 .op-testimonial-slider-inner-container .op-testimonials-slider .slick-arrow {
    font-size: 0;
    border: 0;
    background-color: #ffffff;
    color: #fb6a19;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.4s;
    padding: 0;
    position: absolute;
    right: 100px;
    bottom: 8px;
    z-index: 2;
}

@media (max-width: 1024.98px) {
    .op-testimonials-slider-container-11.style-11 .op-testimonial-slider-inner-container .op-testimonials-slider .slick-arrow {
        right: 0;
    }
}

@media (max-width: 767.98px) {
    .op-testimonials-slider-container-11.style-11 .op-testimonial-slider-inner-container .op-testimonials-slider .slick-arrow {
        bottom: auto;
        top: 100%;
        right: auto;
        left: 75px;
    }
}

.op-testimonials-slider-container-11.style-11 .op-testimonial-slider-inner-container .op-testimonials-slider .slick-arrow:focus {
    outline: none;
}

.op-testimonials-slider-container-11.style-11 .op-testimonial-slider-inner-container .op-testimonials-slider .slick-arrow:before {
    position: absolute;
    content: "\f054";
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    font-size: 20px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: flex;
    justify-content: center;
    align-items: center;
}

.op-testimonials-slider-container-11.style-11 .op-testimonial-slider-inner-container .op-testimonials-slider .slick-arrow.slick-prev {
    right: 175px;
}

@media (max-width: 1024.98px) {
    .op-testimonials-slider-container-11.style-11 .op-testimonial-slider-inner-container .op-testimonials-slider .slick-arrow.slick-prev {
        right: 75px;
    }
}

@media (max-width: 767.98px) {
    .op-testimonials-slider-container-11.style-11 .op-testimonial-slider-inner-container .op-testimonials-slider .slick-arrow.slick-prev {
        right: auto;
        left: 0;
    }
}

.op-testimonials-slider-container-11.style-11 .op-testimonial-slider-inner-container .op-testimonials-slider .slick-arrow.slick-prev::before {
    transform: rotate(180deg);
}

.op-testimonials-slider-container-11.style-11 .op-testimonial-slider-inner-container .op-testimonials-slider .slick-arrow:hover {
    color: #ffffff;
    background-color: #fb6a19;
}

.op-testimonials-slider-container-11.style-11 .op-testimonial-slider-inner-container .op-testimonials-slider .testimonial-item .quotation-wrapper {
    color: #5C727D;
    display: inline-block;
    margin-bottom: 15px;
}

.op-testimonials-slider-container-11.style-11 .op-testimonial-slider-inner-container .op-testimonials-slider .testimonial-item .quotation-wrapper i {
    font-size: 60px;
}

.op-testimonials-slider-container-11.style-11 .op-testimonial-slider-inner-container .op-testimonials-slider .testimonial-item p {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 25px;
}

.op-testimonials-slider-container-11.style-11 .op-testimonial-slider-inner-container .op-testimonials-slider .testimonial-item .ratings {
    margin-bottom: 8px;
}

.op-testimonials-slider-container-11.style-11 .op-testimonial-slider-inner-container .op-testimonials-slider .testimonial-item .ratings i {
    color: #ffab00;
    font-size: 14px;
}

.op-testimonials-slider-container-11.style-11 .op-testimonial-slider-inner-container .op-testimonials-slider .testimonial-item .ratings i:not(:last-child) {
    margin-right: 2px;
}

.op-testimonials-slider-container-11.style-11 .op-testimonial-slider-inner-container .op-testimonials-slider .testimonial-item .testimonial-description h3 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1;
}

.op-testimonials-slider-container-11.style-11 .op-testimonial-slider-inner-container .op-testimonials-slider .testimonial-item .testimonial-description span {
    color: #ffffff;
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.op-testimonials-slider-container-11.style-11 .op-testimonial-slider-inner-container .op-testimonials-slider .testimonial-item .testimonial-description span:before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #ffffff;
}

@media (max-width: 767.98px) {
    .op-testimonials-slider-container-11.style-11 .op-testimonial-slider-inner-container .op-testimonials-slider .testimonial-item .testimonial-description {
        margin-bottom: 20px;
    }
}

.op-property-1 .opus-single-property {
    background-color: #ffffff;
    box-shadow: 0 4px 18px 0 rgba(194, 200, 213, 0.3);
    margin-bottom: 40px;
}

.op-property-1 .opus-single-property .image-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    padding: 20px 20px 0;
    height: 14em;
}

.op-property-1 .opus-single-property .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin-left: auto;
    margin-right: auto;
}

.op-property-1 .opus-single-property .image-wrapper:before {
    position: absolute;
    content: "";
    top: 20px;
    left: 20px;
    background-color: rgba(16, 16, 16, 0.55);
    width: calc(100% - 40px);
    height: calc(100% - 20px);
}

.op-property-1 .opus-single-property .image-wrapper .feature-wrapper {
    display: inline-block;
    position: absolute;
    left: 20px;
    top: 35px;
    z-index: 2;
    color: #ffffff;
    background-color: #fb6a19;
    font-weight: 500;
    text-transform: capitalize;
    padding: 0 17px;
    font-size: 12px;
    border-radius: 0 10px 10px 0;
    line-height: 1.6;
}

.op-property-1 .opus-single-property .image-wrapper .date-admin-wrapper {
    position: absolute;
    bottom: 15px;
    left: 35px;
    right: 35px;
    color: #ffffff;
}

.op-property-1 .opus-single-property .image-wrapper .date-admin-wrapper span {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.8;
}

.op-property-1 .opus-single-property .image-wrapper .date-admin-wrapper span a {
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
}

.op-property-1 .opus-single-property .image-wrapper .date-admin-wrapper span i {
    font-size: 14px;
    margin-right: 7px;
    color: #fb6a19;
}

.op-property-1 .opus-single-property .image-wrapper .contact-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0, 0);
    transition: all 0.4s;
    width: 100%;
    text-align: center;
}

.op-property-1 .opus-single-property .image-wrapper .contact-btn a {
    font-size: 18px;
    line-height: 1.4;
    color: #ffffff;
    background-color: #fb6a19;
    font-weight: 600;
    padding: 8px 15px;
    z-index: 3;
    display: inline-block;
    border-radius: 6px;
}

.op-property-1 .opus-single-property .property-content-wrapper {
    padding: 17px 20px 0;
    height: 20em;
}

.op-property-1 .opus-single-property.opus-single-property-summary .property-content-wrapper {
    height: 13em;
}

.op-property-1 .opus-single-property .property-content-wrapper .categories-wrapper {
    font-size: 13px;
    font-weight: 500;
    color: #fb6a19;
    margin-bottom: 2px;
}

.op-property-1 .opus-single-property .property-content-wrapper .property-heading h4 {
    font-weight: 600;
    color: #0B2C3D;
    margin-bottom: 5px;
    word-break: break-word;
}

.op-property-1 .opus-single-property .property-content-wrapper .property-location p {
    font-size: 13px;
    color: #5C727D;
    font-weight: 400;
    margin-bottom: .5em;
}

.op-property-1 .opus-single-property .property-content-wrapper ul.property-information {
    margin-bottom: .5em;
    margin-top: auto;
}

.op-property-1 .opus-single-property .property-content-wrapper ul.property-information li {
    flex-basis: 50%;
    max-width: 100%;
    font-size: 13px;
    font-weight: 400;
    color: #5C727D;
    margin-bottom: 3px;
}

.op-property-1 .opus-single-property .property-content-wrapper ul.property-information li i {
    margin-right: 10px;
    color: #fb6a19;
    font-size: 16px;
}

.op-property-1 .opus-single-property .property-content-wrapper ul.property-information li i.disabled {
    color: rgba(0, 0, 0, 0.2);
}

.op-property-1 .opus-single-property .status-price-wrapper {
    height: 3em;
}

.op-property-1 .opus-single-property .status-price-wrapper .status-wrapper {
    flex-basis: 40%;
    max-width: 100%;
    background-color: #fb6a19;
    color: #ffffff;
    padding-left: 20px;
    position: relative;
}

.op-property-1 .opus-single-property .status-price-wrapper .status-wrapper::before {
    position: absolute;
    content: "";
    left: 100%;
    top: 0;
    display: block;
    border-top: 40px solid #fb6a19;
    border-right: 20px solid transparent;
    width: 0;
    height: 0;
}

.op-property-1 .opus-single-property .status-price-wrapper .status-wrapper span {
    text-transform: uppercase;
    color: #ffffff;
    font-size: 13px;
    min-height: 40px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.op-property-1 .opus-single-property .status-price-wrapper .price-wrapper {
    flex-basis: 60%;
    max-width: 100%;
    background-color: #0B2C3D;
    color: #ffffff;
    padding-right: 20px;
    text-align: right;
}

.op-property-1 .opus-single-property .status-price-wrapper .price-wrapper span {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    min-height: 40px;
}

.op-property-1:hover .opus-single-property .image-wrapper .contact-btn {
    transform: translate(-50%, -50%) scale(1, 1);
}

.op-property-filter.style-1 .property-tabs-wrapper .property-tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.op-property-filter.style-1 .property-tabs-wrapper .property-tabs li {
    font-size: 16px;
    line-height: 1.4;
    color: #0B2C3D;
    border: 1px solid #0B2C3D;
    font-weight: 600;
    padding: 8px 15px;
    margin-bottom: 15px;
    display: inline-block;
    cursor: pointer;
    transition: all 0.4s;
}

.op-property-filter.style-1 .property-tabs-wrapper .property-tabs li:hover {
    color: #fb6a19;
    border-color: #fb6a19;
}

.op-property-filter.style-1 .property-tabs-wrapper .property-tabs li.active {
    border-color: #fb6a19;
    color: #fb6a19;
}

.op-property-filter.style-1 .property-tabs-wrapper .property-tabs li:not(:last-child) {
    margin-right: 15px;
}

.op-property-filter.style-1 .filter-properties-wrapper {
    margin-top: 30px;
}

.op-property-filter.style-1 .filter-properties-wrapper .mix {
    flex-basis: calc(33.333% - 30px);
    max-width: 100%;
    display: none;
    box-shadow: 0 4px 18px 0 rgba(194, 200, 213, 0.3);
    margin: 0 15px;
    margin-bottom: 40px;
}

@media (max-width: 1024.98px) {
    .op-property-filter.style-1 .filter-properties-wrapper .mix {
        flex-basis: calc(50% - 30px);
    }
}

@media (max-width: 767.98px) {
    .op-property-filter.style-1 .filter-properties-wrapper .mix {
        flex-basis: calc(100% - 30px);
    }
}

.op-property-filter.style-1 .filter-properties-wrapper .mix .image-wrapper {
    position: relative;
    overflow: hidden;
}

.op-property-filter.style-1 .filter-properties-wrapper .mix .image-wrapper::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(16, 16, 16, 0.4);
}

.op-property-filter.style-1 .filter-properties-wrapper .mix .image-wrapper img {
    width: 100%;
}

.op-property-filter.style-1 .filter-properties-wrapper .mix .image-wrapper .property-status {
    position: absolute;
    top: 35px;
    left: 30px;
    background-color: #fb6a19;
    text-transform: uppercase;
    color: #ffffff;
    z-index: 3;
    padding: 4px 10px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    min-width: 85px;
}

.op-property-filter.style-1 .filter-properties-wrapper .mix .image-wrapper .property-status:before,
.op-property-filter.style-1 .filter-properties-wrapper .mix .image-wrapper .property-status:after {
    position: absolute;
    content: "";
    bottom: 100%;
    left: 33px;
    background-color: #fb6a19;
    height: 55px;
    width: 2px;
    z-index: 2;
    transform: rotate(35deg);
    margin-bottom: -5px;
}

.op-property-filter.style-1 .filter-properties-wrapper .mix .image-wrapper .property-status:after {
    right: 33px;
    left: auto;
    transform: rotate(-35deg);
}

.op-property-filter.style-1 .filter-properties-wrapper .mix .image-wrapper .property-price {
    position: absolute;
    color: #ffffff;
    font-weight: 600;
    left: 30px;
    bottom: 20px;
    font-size: 20px;
    z-index: 2;
}

.op-property-filter.style-1 .filter-properties-wrapper .mix .property-content-wrapper {
    padding: 25px 30px;
}

@media (max-width: 767.98px) {
    .op-property-filter.style-1 .filter-properties-wrapper .mix .property-content-wrapper {
        padding: 25px 20px;
    }
}

@media (max-width: 575.98px) {
    .op-property-filter.style-1 .filter-properties-wrapper .mix .property-content-wrapper {
        padding: 25px 20px 15px;
    }
}

.op-property-filter.style-1 .filter-properties-wrapper .mix .property-content-wrapper .property-heading h4 {
    font-weight: 600;
    color: #0B2C3D;
    word-break: break-word;
    margin-bottom: 10px;
}

.op-property-filter.style-1 .filter-properties-wrapper .mix .property-content-wrapper .property-location {
    display: flex;
}

.op-property-filter.style-1 .filter-properties-wrapper .mix .property-content-wrapper .property-location i {
    color: #5C727D;
    margin-right: 8px;
    font-size: 16px;
    margin-top: 3px;
}

.op-property-filter.style-1 .filter-properties-wrapper .mix .property-content-wrapper .property-location p {
    line-height: 1.42;
    font-size: 15px;
    color: #5C727D;
}

.op-property-filter.style-1 .filter-properties-wrapper .mix .property-content-wrapper .property-information li {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 10px;
}

.op-property-filter.style-1 .filter-properties-wrapper .mix .property-content-wrapper .property-information li:not(:last-child) {
    margin-right: 20px;
}

.op-property-filter.style-1 .filter-properties-wrapper .mix .property-content-wrapper .property-information li i {
    color: #fb6a19;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #edf9f6;
    display: inline-block;
    text-align: center;
    margin-right: 6px;
}

.op-property-filter.style-1 .filter-properties-wrapper .mix .property-content-wrapper .property-information li i:before {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.op-property-filter.style-1 .filter-properties-wrapper .mix .property-content-wrapper .btn-container {
    margin-top: 12px;
    margin-bottom: 10px;
}

.op-section-slider.style-4 .arrows-container {
    position: absolute;
    right: 30px;
    bottom: 0;
    z-index: 2;
    display: flex;
}

@media (max-width: 575.98px) {
    .op-section-slider.style-4 .arrows-container {
        right: 15px;
    }
}

.op-section-slider.style-4 .arrows-container .slick-arrow {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 0;
    width: 55px;
    height: 55px;
    position: relative;
    top: 25px;
    left: 0;
}

.op-section-slider.style-4 .arrows-container .slick-arrow:focus {
    outline: none;
}

.op-section-slider.style-4 .arrows-container .slick-arrow:hover::before {
    background-color: #fb6a19;
}

.op-section-slider.style-4 .arrows-container .slick-arrow::before {
    content: "";
    background-image: url(../img/chevron-left.svg);
    background-repeat: no-repeat;
    position: absolute;
    width: 55px;
    height: 55px;
    border-radius: 4px 0 0 0;
    background-size: 25px !important;
    background-position: center;
    background-color: #0B2C3D;
    top: 0;
    left: 0;
}

.op-section-slider.style-4 .arrows-container .slick-arrow.slick-next::before {
    border-radius: 0 4px 0 0;
    background-image: url(../img/chevron-right.svg);
}

.op-section-slider.style-4 .op-slider-item {
    position: relative;
    overflow: hidden;
}

.op-section-slider.style-4 .op-slider-item.slick-active .banner-caption {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.op-section-slider.style-4 .op-slider-item .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.op-section-slider.style-4 .op-slider-item .banner-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.op-section-slider.style-4 .op-slider-item .banner-caption {
    padding-top: 250px;
    padding-bottom: 100px;
    width: 100%;
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translate3d(150px, 0, 0);
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s, opacity 300ms ease;
}

@media (max-width: 575.98px) {
    .op-section-slider.style-4 .op-slider-item .banner-caption {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.op-section-slider.style-4 .op-slider-item .banner-caption .banner-content-wrapper {
    background-color: rgba(255, 255, 255, 0.85);
    text-align: center;
    padding: 40px;
    padding-bottom: 25px;
    width: 100%;
}

@media (max-width: 767.98px) {
    .op-section-slider.style-4 .op-slider-item .banner-caption .banner-content-wrapper {
        padding: 30px 20px;
        padding-bottom: 15px;
    }
}

.op-section-slider.style-4 .op-slider-item .banner-caption .banner-content-wrapper h2 {
    color: #fb6a19;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 13px;
    word-break: break-word;
}

.op-section-slider.style-4 .op-slider-item .banner-caption .banner-content-wrapper p {
    font-size: 20px;
    line-height: 1.35;
    color: #0B2C3D;
    margin-bottom: 35px;
}

@media (max-width: 575.98px) {
    .op-section-slider.style-4 .op-slider-item .banner-caption .banner-content-wrapper p {
        font-size: 18px;
    }
}

.op-section-slider.style-4 .op-slider-item .banner-caption .banner-content-wrapper .banner-amenities-info ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

@media (max-width: 575.98px) {
    .op-section-slider.style-4 .op-slider-item .banner-caption .banner-content-wrapper .banner-amenities-info ul {
        justify-content: center;
    }
}

.op-section-slider.style-4 .op-slider-item .banner-caption .banner-content-wrapper .banner-amenities-info ul li {
    padding: 0 10px;
    margin-bottom: 15px;
}

@media (max-width: 575.98px) {
    .op-section-slider.style-4 .op-slider-item .banner-caption .banner-content-wrapper .banner-amenities-info ul li {
        padding: 0 20px;
    }
}

.op-section-slider.style-4 .op-slider-item .banner-caption .banner-content-wrapper .banner-amenities-info ul li span {
    display: block;
}

.op-section-slider.style-4 .op-slider-item .banner-caption .banner-content-wrapper .banner-amenities-info ul li span i {
    color: #fb6a19;
    font-size: 40px;
    margin-bottom: 12px;
    transition: all 0.4s;
}

@media (max-width: 575.98px) {
    .op-section-slider.style-4 .op-slider-item .banner-caption .banner-content-wrapper .banner-amenities-info ul li span i {
        font-size: 30px;
    }
}

.op-section-slider.style-4 .op-slider-item .banner-caption .banner-content-wrapper .banner-amenities-info ul li span i:hover {
    color: #0B2C3D;
}

.op-section-slider.style-4 .op-slider-item .banner-caption .banner-content-wrapper .banner-amenities-info ul li span.amenity {
    font-size: 15px;
    color: #0B2C3D;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 3px;
}

.op-section-slider.style-4 .op-slider-item .banner-caption .banner-content-wrapper .banner-amenities-info ul li h4 {
    font-weight: 700;
    color: #0B2C3D;
    margin-bottom: 0;
    line-height: 1;
}

.op-section-slider.style-4 .op-slider-item .banner-caption .banner-price-wrapper {
    color: #ffffff;
    text-align: center;
    padding: 40px 20px;
    margin: -5px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.op-section-slider.style-4 .op-slider-item .banner-caption .banner-price-wrapper:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fb6a19;
    opacity: 0.85;
    z-index: -1;
}

@media (max-width: 1024.98px) {
    .op-section-slider.style-4 .op-slider-item .banner-caption .banner-price-wrapper {
        margin: 0;
    }
}

@media (max-width: 767.98px) {
    .op-section-slider.style-4 .op-slider-item .banner-caption .banner-price-wrapper {
        padding: 30px 20px;
    }
}

.op-section-slider.style-4 .op-slider-item .banner-caption .banner-price-wrapper .price-heading {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.op-section-slider.style-4 .op-slider-item .banner-caption .banner-price-wrapper .price-heading span {
    color: #ffffff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 400;
}

.op-section-slider.style-4 .op-slider-item .banner-caption .banner-price-wrapper .price {
    padding-top: 16px;
}

.op-section-slider.style-4 .op-slider-item .banner-caption .banner-price-wrapper .price h2 {
    color: #ffffff;
    font-weight: 500;
}

.op-section-slider.style-4 .op-slider-item .banner-caption .banner-price-wrapper .banner-btn a {
    background-color: #0B2C3D;
}

.op-section-slider.style-4 .op-slider-item .banner-caption .banner-price-wrapper .banner-btn a::before {
    background-color: #101010;
}

.section-404.style-2 {
    padding: 120px 15px;
}

.section-404.style-2 .content-404 {
    text-align: left;
    padding: 0;
}

.section-404.style-2 .content-404 h1 {
    color: #0B2C3D;
}

/* agregar ... a texto overflow */
.email {
    text-overflow: ellipsis !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    max-width: 220px !important;
}

.btn-orange {
    padding: 7px 14px;
    background: var(--orange);
    border-color: var(--orange);
    color: white;
}

.btn-orange:hover {
    background: var(--dark-blue);
    border-color: var(--dark-blue);
    color: white;
}

i.svg-icon {
    width: 1em;
    height: 1em;
    display: inline-block;
}

i.svg-icon svg {
    max-width: 100%;
    max-height: 100%;
}

.social-icons-header i.svg-icon svg,
.social-icons i.svg-icon svg {
    width: 16px;
    height: 16px;
}

.subasta-thumb .miniatura {
    max-height: 100%;
    max-width: 5em;
}

/* ----------------------------------------------------------------------------
                                Flexslider
---------------------------------------------------------------------------- */
body .flexslider {
    margin-bottom: 0.5em;
    border: 0;
}

body .flexslider .slides img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

body .flex-direction-nav a {
    height: 55px;
}

body .flex-direction-nav a:before {
    background-color: rgba(256,256,256,0.8);
}

#slider .slides li > img {
    cursor: pointer;
}

#slider.flexslider .slides > li {
    height: 15em;
}

#slider-nav.flexslider .slides > li {
    height: 5em;
}

#modal-slider.flexslider .slides > li {
    height: 15em;
}

#modal-slider-nav.flexslider .slides > li {
    height: 5em;
}

@media (min-width: 576px) {
    #slider.flexslider .slides > li {
        height: 22em;
    }

    #slider-nav.flexslider .slides > li {
        height: 5em;
    }

    #modal-slider.flexslider .slides > li {
        height: 22em;
    }

    #modal-slider-nav.flexslider .slides > li {
        height: 5em;
    }
}

@media (min-width: 768px) {
    #slider.flexslider .slides > li {
        height: 30em;
    }

    #slider-nav.flexslider .slides > li {
        height: 5em;
    }

    #modal-slider.flexslider .slides > li {
        height: 30em;
    }

    #modal-slider-nav.flexslider .slides > li {
        height: 5em;
    }
}

@media (min-width: 992px) {
    #slider.flexslider .slides > li {
        height: 35em;
    }

    #slider-nav.flexslider .slides > li {
        height: 5em;
    }

    #modal-slider.flexslider .slides > li {
        height: 35em;
    }

    #modal-slider-nav.flexslider .slides > li {
        height: 4em;
    }
}

@media (min-width: 1200px) {
    #slider.flexslider .slides > li {
        height: 35em;
    }

    #slider-nav.flexslider .slides > li {
        height: 5em;
    }

    #modal-slider.flexslider .slides > li {
        height: 35em;
    }

    #modal-slider-nav.flexslider .slides > li {
        height: 4em;
    }
}

#slider-nav .flex-viewport {
    padding-left: 1.5em;
    padding-right: 1.5em;
}

/* ----------------------------------------------------------------------------
                                Subastas Ver
---------------------------------------------------------------------------- */
@media (max-width: 767px) {
    .auction-logo-contact {
        margin-top: 0.5rem;
    }

    .auction-logo-contact > * {
        margin-bottom: 0.5rem;
    }
}

.pujas-wrapper,
.pujas-wrapper .btn {
    font-size: 1.5em;
}

@media (max-width: 575px) {
    .pujas-wrapper {
        padding-left: 0;
        padding-right: 0;
    }
}

.pujas-container {
    height: 12em;
    overflow-y: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.pujas-container .pujas-item:first-child {
    background-color: #BFBFBF;
}

@media (min-width: 992px) {
    .pujas-container .pujas-item {
        line-height: 2em;
    }
}

#auction-bid {
    margin-top: 0.5em;
}

#auction-bid .row .form-control,
#auction-bid .row .btn {
    font-size: 1.2em;
}

#auction-bid .row .form-control {
    padding: 1.5em 0.8em;
}

#auction-bid .row .btn {
    padding: 1em 1.5em;
    width: 100%;
    line-height: 1;
}
/*# sourceMappingURL=default.css.map */