:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*,
::after,
::before {
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
    display: block;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, segoe ui, Roboto, helvetica neue, Arial, noto sans, liberation sans, sans-serif, apple color emoji, segoe ui emoji, segoe ui symbol, noto color emoji;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
}

[tabindex="-1"]:focus:not(:focus-visible) {
    outline: 0 !important;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

abbr[data-original-title],
abbr[title] {
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    cursor: help;
    border-bottom: 0;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 1rem;
}

ol ol,
ol ul,
ul ol,
ul ul {
    margin-bottom: 0;
}

a {
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
}

img {
    vertical-align: middle;
    border-style: none;
}

label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

button {
    border-radius: 0;
}

button:focus:not(:focus-visible) {
    outline: 0;
}

button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

[role="button"] {
    cursor: pointer;
}

select {
    word-wrap: normal;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
    -webkit-appearance: button;
}

[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
    cursor: pointer;
}

[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

[type="search"] {
    outline-offset: -2px;
    -webkit-appearance: none;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

.h1,
h1 {
    font-size: 2.5rem;
}

.h2,
h2 {
    font-size: 2rem;
}

.h3,
h3 {
    font-size: 1.75rem;
}

.h4,
h4 {
    font-size: 1.5rem;
}

.h5,
h5 {
    font-size: 1.25rem;
}

hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container,
    .container-sm {
        max-width: 540px;
    }
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control::-webkit-input-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 1;
}

select.form-control[multiple],
select.form-control[size] {
    height: auto;
}

.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #0062cc;
    border-color: #005cbf;
}

.fade {
    transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
    .fade {
        transition: none;
    }
}

.fade:not(.show) {
    opacity: 0;
}

.collapse:not(.show) {
    display: none;
}

.btn-group,
.btn-group-vertical {
    position: relative;
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: middle;
}

.btn-group-vertical>.btn,
.btn-group>.btn {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.btn-group-vertical>.btn:hover,
.btn-group>.btn:hover {
    z-index: 1;
}

.btn-group-vertical>.btn.active,
.btn-group-vertical>.btn:active,
.btn-group-vertical>.btn:focus,
.btn-group>.btn.active,
.btn-group>.btn:active,
.btn-group>.btn:focus {
    z-index: 1;
}

.btn-group>.btn-group:not(:first-child),
.btn-group>.btn:not(:first-child) {
    margin-left: -1px;
}

.btn-group>.btn-group:not(:last-child)>.btn,
.btn-group>.btn:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.btn-group>.btn-group:not(:first-child)>.btn,
.btn-group>.btn:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.btn-group-toggle>.btn,
.btn-group-toggle>.btn-group>.btn {
    margin-bottom: 0;
}

.btn-group-toggle>.btn input[type="checkbox"],
.btn-group-toggle>.btn input[type="radio"],
.btn-group-toggle>.btn-group>.btn input[type="checkbox"],
.btn-group-toggle>.btn-group>.btn input[type="radio"] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

.input-group {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}

.input-group>.custom-file,
.input-group>.custom-select,
.input-group>.form-control,
.input-group>.form-control-plaintext {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    margin-bottom: 0;
}

.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label,
.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label::after,
.input-group:not(.has-validation)>.custom-select:not(:last-child),
.input-group:not(.has-validation)>.form-control:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group-append,
.input-group-prepend {
    display: -ms-flexbox;
    display: flex;
}

.input-group-prepend {
    margin-right: -1px;
}

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
}

.nav-link:focus,
.nav-link:hover {
    text-decoration: none;
}

.navbar {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0.5rem 1rem;
}

.navbar-brand {
    display: inline-block;
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap;
}

.navbar-brand:focus,
.navbar-brand:hover {
    text-decoration: none;
}

.navbar-nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;
}

.navbar-nav .dropdown-menu {
    position: static;
    float: none;
}

.navbar-text {
    display: inline-block;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.navbar-collapse {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-align: center;
    align-items: center;
}

.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.navbar-toggler:focus,
.navbar-toggler:hover {
    text-decoration: none;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    content: "";
    background: 50%/100% 100% no-repeat;
}

.navbar-nav-scroll {
    max-height: 75vh;
    overflow-y: auto;
}

@media (max-width: 575.98px) {
    .navbar-expand-sm>.container,
    .navbar-expand-sm>.container-fluid,
    .navbar-expand-sm>.container-lg,
    .navbar-expand-sm>.container-md,
    .navbar-expand-sm>.container-sm,
    .navbar-expand-sm>.container-xl {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width: 576px) {
    .navbar-expand-sm {
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .navbar-expand-sm .navbar-nav {
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .navbar-expand-sm .navbar-nav .dropdown-menu {
        position: absolute;
    }
    .navbar-expand-sm .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }
    .navbar-expand-sm>.container,
    .navbar-expand-sm>.container-fluid,
    .navbar-expand-sm>.container-lg,
    .navbar-expand-sm>.container-md,
    .navbar-expand-sm>.container-sm,
    .navbar-expand-sm>.container-xl {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
    .navbar-expand-sm .navbar-nav-scroll {
        overflow: visible;
    }
    .navbar-expand-sm .navbar-collapse {
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }
    .navbar-expand-sm .navbar-toggler {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .navbar-expand-md>.container,
    .navbar-expand-md>.container-fluid,
    .navbar-expand-md>.container-lg,
    .navbar-expand-md>.container-md,
    .navbar-expand-md>.container-sm,
    .navbar-expand-md>.container-xl {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width: 768px) {
    .navbar-expand-md {
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .navbar-expand-md .navbar-nav {
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .navbar-expand-md .navbar-nav .dropdown-menu {
        position: absolute;
    }
    .navbar-expand-md .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }
    .navbar-expand-md>.container,
    .navbar-expand-md>.container-fluid,
    .navbar-expand-md>.container-lg,
    .navbar-expand-md>.container-md,
    .navbar-expand-md>.container-sm,
    .navbar-expand-md>.container-xl {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
    .navbar-expand-md .navbar-nav-scroll {
        overflow: visible;
    }
    .navbar-expand-md .navbar-collapse {
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }
    .navbar-expand-md .navbar-toggler {
        display: none;
    }
}

.navbar-light .navbar-brand {
    color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler-icon {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPSczMCcgaGVpZ2h0PSczMCcgdmlld0JveD0nMCAwIDMwIDMwJz48cGF0aCBzdHJva2U9J3JnYmEoMCwgMCwgMCwgMC41KScgc3Ryb2tlLWxpbmVjYXA9J3JvdW5kJyBzdHJva2UtbWl0ZXJsaW1pdD0nMTAnIHN0cm9rZS13aWR0aD0nMicgZD0nTTQgN2gyMk00IDE1aDIyTTQgMjNoMjInLz48L3N2Zz4=);
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}

.carousel {
    position: relative;
}

.carousel.pointer-event {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-inner::after {
    display: block;
    clear: both;
    content: "";
}

.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: -webkit-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .carousel-item {
        transition: none;
    }
}

.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
    display: block;
}

.active.carousel-item-right,
.carousel-item-next:not(.carousel-item-left) {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.active.carousel-item-left,
.carousel-item-prev:not(.carousel-item-right) {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    -webkit-transform: none;
    transform: none;
}

.bg-white {
    background-color: #fff !important;
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: -ms-flexbox !important;
    display: flex !important;
}

.flex-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
}

.align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important;
}

.align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
}

.align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
}

@media (min-width: 576px) {
    .flex-sm-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }
    .flex-sm-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }
    .flex-sm-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }
    .flex-sm-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }
    .flex-sm-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }
    .flex-sm-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }
    .flex-sm-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }
    .flex-sm-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }
    .flex-sm-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }
    .flex-sm-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }
    .flex-sm-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }
    .flex-sm-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }
    .justify-content-sm-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
    .justify-content-sm-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }
    .justify-content-sm-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
    .justify-content-sm-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }
    .justify-content-sm-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }
    .align-items-sm-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }
    .align-items-sm-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }
    .align-items-sm-center {
        -ms-flex-align: center !important;
        align-items: center !important;
    }
    .align-items-sm-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }
    .align-items-sm-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }
    .align-content-sm-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }
    .align-content-sm-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }
    .align-content-sm-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }
    .align-content-sm-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }
    .align-content-sm-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }
    .align-content-sm-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }
    .align-self-sm-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }
    .align-self-sm-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }
    .align-self-sm-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }
    .align-self-sm-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }
    .align-self-sm-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }
    .align-self-sm-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

.float-left {
    float: left !important;
}

.float-right {
    float: right !important;
}

.float-none {
    float: none !important;
}

@media (min-width: 576px) {
    .float-sm-left {
        float: left !important;
    }
    .float-sm-right {
        float: right !important;
    }
    .float-sm-none {
        float: none !important;
    }
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.w-100 {
    width: 100% !important;
}

.mr-0,
.mx-0 {
    margin-right: 0 !important;
}

.mb-0,
.my-0 {
    margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
    margin-left: 0 !important;
}

.mt-2,
.my-2 {
    margin-top: 0.5rem !important;
}

.mb-2,
.my-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3,
.my-3 {
    margin-bottom: 1rem !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-0,
.py-0 {
    padding-top: 0 !important;
}

.pr-0,
.px-0 {
    padding-right: 0 !important;
}

.pl-1,
.px-1 {
    padding-left: 0.25rem !important;
}

.mr-auto,
.mx-auto {
    margin-right: auto !important;
}

@media (min-width: 576px) {
    .m-sm-0 {
        margin: 0 !important;
    }
    .mt-sm-0,
    .my-sm-0 {
        margin-top: 0 !important;
    }
    .mr-sm-0,
    .mx-sm-0 {
        margin-right: 0 !important;
    }
    .mb-sm-0,
    .my-sm-0 {
        margin-bottom: 0 !important;
    }
    .ml-sm-0,
    .mx-sm-0 {
        margin-left: 0 !important;
    }
    .m-sm-1 {
        margin: 0.25rem !important;
    }
    .mt-sm-1,
    .my-sm-1 {
        margin-top: 0.25rem !important;
    }
    .mr-sm-1,
    .mx-sm-1 {
        margin-right: 0.25rem !important;
    }
    .mb-sm-1,
    .my-sm-1 {
        margin-bottom: 0.25rem !important;
    }
    .ml-sm-1,
    .mx-sm-1 {
        margin-left: 0.25rem !important;
    }
    .m-sm-2 {
        margin: 0.5rem !important;
    }
    .mt-sm-2,
    .my-sm-2 {
        margin-top: 0.5rem !important;
    }
    .mr-sm-2,
    .mx-sm-2 {
        margin-right: 0.5rem !important;
    }
    .mb-sm-2,
    .my-sm-2 {
        margin-bottom: 0.5rem !important;
    }
    .ml-sm-2,
    .mx-sm-2 {
        margin-left: 0.5rem !important;
    }
    .m-sm-3 {
        margin: 1rem !important;
    }
    .mt-sm-3,
    .my-sm-3 {
        margin-top: 1rem !important;
    }
    .mr-sm-3,
    .mx-sm-3 {
        margin-right: 1rem !important;
    }
    .mb-sm-3,
    .my-sm-3 {
        margin-bottom: 1rem !important;
    }
    .ml-sm-3,
    .mx-sm-3 {
        margin-left: 1rem !important;
    }
    .m-sm-4 {
        margin: 1.5rem !important;
    }
    .mt-sm-4,
    .my-sm-4 {
        margin-top: 1.5rem !important;
    }
    .mr-sm-4,
    .mx-sm-4 {
        margin-right: 1.5rem !important;
    }
    .mb-sm-4,
    .my-sm-4 {
        margin-bottom: 1.5rem !important;
    }
    .ml-sm-4,
    .mx-sm-4 {
        margin-left: 1.5rem !important;
    }
    .m-sm-5 {
        margin: 3rem !important;
    }
    .mt-sm-5,
    .my-sm-5 {
        margin-top: 3rem !important;
    }
    .mr-sm-5,
    .mx-sm-5 {
        margin-right: 3rem !important;
    }
    .mb-sm-5,
    .my-sm-5 {
        margin-bottom: 3rem !important;
    }
    .ml-sm-5,
    .mx-sm-5 {
        margin-left: 3rem !important;
    }
    .p-sm-0 {
        padding: 0 !important;
    }
    .pt-sm-0,
    .py-sm-0 {
        padding-top: 0 !important;
    }
    .pr-sm-0,
    .px-sm-0 {
        padding-right: 0 !important;
    }
    .pb-sm-0,
    .py-sm-0 {
        padding-bottom: 0 !important;
    }
    .pl-sm-0,
    .px-sm-0 {
        padding-left: 0 !important;
    }
    .p-sm-1 {
        padding: 0.25rem !important;
    }
    .pt-sm-1,
    .py-sm-1 {
        padding-top: 0.25rem !important;
    }
    .pr-sm-1,
    .px-sm-1 {
        padding-right: 0.25rem !important;
    }
    .pb-sm-1,
    .py-sm-1 {
        padding-bottom: 0.25rem !important;
    }
    .pl-sm-1,
    .px-sm-1 {
        padding-left: 0.25rem !important;
    }
    .p-sm-2 {
        padding: 0.5rem !important;
    }
    .pt-sm-2,
    .py-sm-2 {
        padding-top: 0.5rem !important;
    }
    .pr-sm-2,
    .px-sm-2 {
        padding-right: 0.5rem !important;
    }
    .pb-sm-2,
    .py-sm-2 {
        padding-bottom: 0.5rem !important;
    }
    .pl-sm-2,
    .px-sm-2 {
        padding-left: 0.5rem !important;
    }
    .p-sm-3 {
        padding: 1rem !important;
    }
    .pt-sm-3,
    .py-sm-3 {
        padding-top: 1rem !important;
    }
    .pr-sm-3,
    .px-sm-3 {
        padding-right: 1rem !important;
    }
    .pb-sm-3,
    .py-sm-3 {
        padding-bottom: 1rem !important;
    }
    .pl-sm-3,
    .px-sm-3 {
        padding-left: 1rem !important;
    }
    .p-sm-4 {
        padding: 1.5rem !important;
    }
    .pt-sm-4,
    .py-sm-4 {
        padding-top: 1.5rem !important;
    }
    .pr-sm-4,
    .px-sm-4 {
        padding-right: 1.5rem !important;
    }
    .pb-sm-4,
    .py-sm-4 {
        padding-bottom: 1.5rem !important;
    }
    .pl-sm-4,
    .px-sm-4 {
        padding-left: 1.5rem !important;
    }
    .p-sm-5 {
        padding: 3rem !important;
    }
    .pt-sm-5,
    .py-sm-5 {
        padding-top: 3rem !important;
    }
    .pr-sm-5,
    .px-sm-5 {
        padding-right: 3rem !important;
    }
    .pb-sm-5,
    .py-sm-5 {
        padding-bottom: 3rem !important;
    }
    .pl-sm-5,
    .px-sm-5 {
        padding-left: 3rem !important;
    }
    .m-sm-n1 {
        margin: -0.25rem !important;
    }
    .mt-sm-n1,
    .my-sm-n1 {
        margin-top: -0.25rem !important;
    }
    .mr-sm-n1,
    .mx-sm-n1 {
        margin-right: -0.25rem !important;
    }
    .mb-sm-n1,
    .my-sm-n1 {
        margin-bottom: -0.25rem !important;
    }
    .ml-sm-n1,
    .mx-sm-n1 {
        margin-left: -0.25rem !important;
    }
    .m-sm-n2 {
        margin: -0.5rem !important;
    }
    .mt-sm-n2,
    .my-sm-n2 {
        margin-top: -0.5rem !important;
    }
    .mr-sm-n2,
    .mx-sm-n2 {
        margin-right: -0.5rem !important;
    }
    .mb-sm-n2,
    .my-sm-n2 {
        margin-bottom: -0.5rem !important;
    }
    .ml-sm-n2,
    .mx-sm-n2 {
        margin-left: -0.5rem !important;
    }
    .m-sm-n3 {
        margin: -1rem !important;
    }
    .mt-sm-n3,
    .my-sm-n3 {
        margin-top: -1rem !important;
    }
    .mr-sm-n3,
    .mx-sm-n3 {
        margin-right: -1rem !important;
    }
    .mb-sm-n3,
    .my-sm-n3 {
        margin-bottom: -1rem !important;
    }
    .ml-sm-n3,
    .mx-sm-n3 {
        margin-left: -1rem !important;
    }
    .m-sm-n4 {
        margin: -1.5rem !important;
    }
    .mt-sm-n4,
    .my-sm-n4 {
        margin-top: -1.5rem !important;
    }
    .mr-sm-n4,
    .mx-sm-n4 {
        margin-right: -1.5rem !important;
    }
    .mb-sm-n4,
    .my-sm-n4 {
        margin-bottom: -1.5rem !important;
    }
    .ml-sm-n4,
    .mx-sm-n4 {
        margin-left: -1.5rem !important;
    }
    .m-sm-n5 {
        margin: -3rem !important;
    }
    .mt-sm-n5,
    .my-sm-n5 {
        margin-top: -3rem !important;
    }
    .mr-sm-n5,
    .mx-sm-n5 {
        margin-right: -3rem !important;
    }
    .mb-sm-n5,
    .my-sm-n5 {
        margin-bottom: -3rem !important;
    }
    .ml-sm-n5,
    .mx-sm-n5 {
        margin-left: -3rem !important;
    }
    .m-sm-auto {
        margin: auto !important;
    }
    .mt-sm-auto,
    .my-sm-auto {
        margin-top: auto !important;
    }
    .mr-sm-auto,
    .mx-sm-auto {
        margin-right: auto !important;
    }
    .mb-sm-auto,
    .my-sm-auto {
        margin-bottom: auto !important;
    }
    .ml-sm-auto,
    .mx-sm-auto {
        margin-left: auto !important;
    }
}

.text-center {
    text-align: center !important;
}

@media (min-width: 576px) {
    .text-sm-left {
        text-align: left !important;
    }
    .text-sm-right {
        text-align: right !important;
    }
    .text-sm-center {
        text-align: center !important;
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

.carousel {
    position: relative;
    box-sizing: border-box;
}

.carousel *,
.carousel *:before,
.carousel *:after {
    box-sizing: inherit;
}

.carousel.is-draggable {
    cursor: move;
    cursor: grab;
}

.carousel.is-dragging {
    cursor: move;
    cursor: grabbing;
}

.carousel__viewport {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    max-height: 100%;
}

.carousel__track {
    display: flex;
}

.carousel__slide {
    flex: 0 0 auto;
    width: var(--carousel-slide-width, 60%);
    max-width: 100%;
    padding: 1rem;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.has-dots {
    margin-bottom: calc(0.5rem + 22px);
}

.carousel__dots {
    margin: 0 auto;
    padding: 0;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    list-style: none;
    user-select: none;
}

.carousel__dots .carousel__dot {
    margin: 0;
    padding: 0;
    display: block;
    position: relative;
    width: 22px;
    height: 22px;
    cursor: pointer;
}

.carousel__dots .carousel__dot:after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: currentColor;
    opacity: 0.25;
    transition: opacity 0.15s ease-in-out;
}

.carousel__dots .carousel__dot.is-selected:after {
    opacity: 1;
}

.carousel__button {
    width: var(--carousel-button-width, 48px);
    height: var(--carousel-button-height, 48px);
    padding: 0;
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: all;
    cursor: pointer;
    color: var(--carousel-button-color, currentColor);
    background: var(--carousel-button-bg, transparent);
    border-radius: var(--carousel-button-border-radius, 50%);
    box-shadow: var(--carousel-button-shadow, none);
    transition: opacity 0.15s ease;
}

.carousel__button.is-prev,
.carousel__button.is-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.carousel__button.is-prev {
    left: 10px;
}

.carousel__button.is-next {
    right: 10px;
}

.carousel__button[disabled] {
    cursor: default;
    opacity: 0.3;
}

.carousel__button svg {
    width: var(--carousel-button-svg-width, 50%);
    height: var(--carousel-button-svg-height, 50%);
    fill: none;
    stroke: currentColor;
    stroke-width: var(--carousel-button-svg-stroke-width, 1.5);
    stroke-linejoin: bevel;
    stroke-linecap: round;
    filter: var(--carousel-button-svg-filter, none);
    pointer-events: none;
}

body {
    font-family: montserrat, sans-serif;
    font-size: 15px;
    color: #000;
}

h1 {
    font-size: 50px;
}

h2 {
    font-size: 42px;
}

h3 {
    font-size: 36px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {}

button:focus {
    text-decoration: none;
    outline: none;
    border: none;
    box-shadow: none;
}

a,
button,
a:hover,
button:hover {
    transition: all 0.45s ease-in-out;
}

textarea:focus,
input:focus,
button:focus {
    outline: none;
}

*:focus {
    outline: none;
}

.primary-color {
    color: #ef6726;
}

.primary-bg {
    background: #ef6726 !important;
}

.secondary-bg {
    background: #a6a6a6;
}

.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 1;
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}

.no-js .owl-carousel {
    display: block;
}

.img-bg {
    background-size: cover !important;
    background-position: center !important;
}

.menu-overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1031;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    overflow-x: hidden;
    transition: 0.5s;
}

.sidebar-content {
    position: relative;
    width: 350px;
    float: right;
    background: rgba(0, 0, 0, 0.8);
    height: 100vh;
}

.menu-overlay .closebtn {
    position: absolute;
    top: 7px;
    z-index: 1111;
    color: #fff;
    right: 15px;
    font-size: 25px;
}

.navbar-design .navbar-left .nav-link {
    color: #000 !important;
    font-size: 16px;
    margin: 20px 0;
    font-weight: 700;
    transition: all 0.5s ease-out;
}

.btn-design {
    font-size: 16px;
    font-weight: 700;
    background: #ef6726;
    border-radius: 5px;
    color: #fff !important;
    border: none;
    outline: none;
    padding: 10px;
}

.btn-gray {
    background: #c7d0d8;
    color: #000 !important;
}

.btn-gray:hover {
    background: #ef6726 !important;
    color: #fff !important;
}

.navbar-brand img {
    width: 80%;
    transition: all 0.5s ease-out;
}

.navbar-light .navbar-right .nav-link.fav-icon,
.navbar-light .navbar-right .nav-link.change-lang,
.navbar-light .navbar-right .nav-link.menu-btn {
    font-size: 28px;
    color: #ef6726;
    display: block;
    padding-top: 0;
}

.navbar-light .navbar-right .nav-link.fav-icon {
    margin-right: 50px;
    margin-left: 10px;
}

.navbar-light .navbar-right .nav-link.change-lang {
    color: #000;
}

.sidebar-content {
    padding-top: 50px;
}

.sidebar-content ul {
    margin: 0;
    list-style: none;
    color: #fff;
    padding: 20px;
}

.sidebar-content h4 {
    margin: 10px 0;
    margin-bottom: 0;
}

.sidebar-content a:hover {
    text-decoration: none;
    color: #ef6726;
}

.sidebar-content h4 a {
    color: #ef6726;
    font-weight: 600;
    margin: 0;
}

.sidebar-content ul ul {
    padding: 5px 20px;
}

.sidebar-content ul ul li a {
    color: #fff;
    font-size: 16px;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    zoom: 0.8;
}

.home-banner .carousel-item:after {
    content: "";
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    display: block;
}

.banner-content h1 {
    font-weight: 700;
    color: #fff;
}

.banner-content span {
    font-size: 18px;
    display: block;
    font-weight: 700;
    margin-bottom: 40px;
    font-style: italic;
}

.banner-content .btn-group {
    background: #c7d0d8;
    padding: 5px;
    border-radius: 5px;
}

.banner-content .btn-primary {
    padding: 5px 40px;
    font-size: 24px;
    background: 0 0;
    border: none;
    color: #000 !important;
    font-weight: 600;
    border-radius: 5px !important;
    box-shadow: none;
}

.banner-content .btn-primary.active {
    background: #a6a6a6 !important;
}

.banner-content .btn-primary:not(:disabled):not(.disabled).active:focus,
.banner-content .btn-primary:not(:disabled):not(.disabled):active:focus,
.show>.banner-content .btn-primary.dropdown-toggle:focus,
.banner-content .btn-primary:not(:disabled):not(.disabled).active,
.banner-content .btn-primary:not(:disabled):not(.disabled):active,
.show>.banner-content .btn-primary.dropdown-toggle {
    background: 0 0;
    border: none;
}

.banner-content .form-inline {
    margin-top: 10px;
}

.banner-content .form-inline .form-control {
    width: 85%;
    border: none;
    box-shadow: none;
    color: #000;
    height: 60px;
    font-weight: 700;
    font-size: 20px;
}

.banner-content .form-inline button {
    margin-left: 1%;
    font-size: 20px;
    padding: 15px 10px;
    width: 14%;
    color: #fff !important;
}

::-webkit-input-placeholder {
    color: #000;
    opacity: 1;
}

::-moz-placeholder {
    color: #000;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #000;
    opacity: 1;
}

:-moz-placeholder {
    color: #000;
    opacity: 1;
}

.latest-news {
    margin-top: -63px;
    padding: 0;
    background: #f3f3f3;
}

.latest-news span.primary-bg {
    background: #ef6726;
    color: #fff;
    padding: 20px;
    width: 200px;
    text-align: center;
    font-weight: 700;
    display: inline-block;
    vertical-align: middle;
}

.news-scroll {
    width: calc(100% - 240px);
    display: inline-block;
    vertical-align: middle;
}

.news-scroll p {
    margin: 0;
}

.color-orange {
    color: #ef6726;
}

.color-red {
    color: red;
}

.img-bg-overlay {
    min-height: 250px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.img-bg-overlay:after {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 1029;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.3);
    content: "";
}

.bundle-content li:has(.fa) {
    text-align: center;
}

.all-projects .img-bg-overlay:after {
    z-index: 0;
}

.all-projects .img-bg-overlay span {
    z-index: 1;
}

.img-bg-overlay span {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    position: relative;
    z-index: 1030;
}

.boxes-link a:hover {
    text-decoration: none;
}

.boxes-link a:hover .img-bg-overlay span {
    color: #ef6726;
    text-decoration: none;
}

.mt-30 {
    margin-top: 40px;
}

.primary-heading h3 {
    font-weight: 700;
    margin: 25px 0;
    margin-top: 0;
}

.latest-listing {
    margin: 80px 0;
    padding: 70px 0;
    background: #f7f7f7;
}

.property-box {
    margin: 15px;
    background: #fff;
    overflow: hidden;
    padding-bottom: 15px;
    box-shadow: 0 0 9px rgb(0 0 0/10%);
}

.property-img {
    position: relative;
    min-height: 320px;
}

.property-box a {
    display: block;
}

.property-box a:hover {
    text-decoration: none;
}

.property-img span {
    position: absolute;
}

.featured-label {
    background: #b20003;
    left: 10px;
    top: 15px;
    padding: 5px;
    font-size: 12px;
    color: #fff;
}

.sale-label {
    background: #000;
    right: 10px;
    top: 15px;
    padding: 5px;
    font-size: 12px;
    color: #fff;
}

.price-label {
    background: #000;
    bottom: 0;
    padding: 5px;
    font-size: 12px;
    color: #fff;
}

.property-user {
    width: 40px;
    height: 40px;
    display: inline-block;
    overflow: hidden;
    border-radius: 50%;
}

.property-title {
    padding: 15px;
}

.property-user img {
    object-fit: cover;
    width: 100%;
    display: block;
    height: 100%;
    object-position: center;
}

.property-name {
    display: inline-block;
    width: calc(100% - 70px);
    vertical-align: top;
    padding-left: 10px;
}

.property-name h5 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    overflow: hidden;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.property-box a:hover h5 {
    color: #ef6726;
}

.property-location {
    font-size: 12px;
    color: #696969;
}

.property-featured {
    padding: 15px;
    margin: 0 auto;
    list-style: none;
    display: block;
}

.property-featured li {
    display: inline-block;
    vertical-align: middle;
}

.property-featured li {
    margin-right: 10px;
    color: #000;
}

.btn-orange {
    float: right;
    margin-right: 15px;
    background-color: #0c5460;
    border-radius: 5px;
    color: #fff;
    font-weight: 500;
    font-size: 12px;
    padding: 5px 12px;
}

.owl-nav,
.owl-dots {
    display: none;
}

.owl-carousel.owl-new .owl-nav {
    display: block;
}

.owl-carousel.owl-new button {
    border: 0;
    position: absolute;
    height: 100%;
    top: 0;
    background: 0 0;
    font-size: 5rem;
}

.owl-carousel.owl-new .owl-prev {
    left: 0;
}

.owl-carousel.owl-new .owl-next {
    right: 0;
}

.for-sale .img-bg-overlay {
    align-items: end;
    border-radius: 30px;
    overflow: hidden;
    min-height: 660px;
}

.for-sale .img-bg-overlay span {
    padding-bottom: 30px;
}

a:hover {
    text-decoration: none;
}

.for-sale a:hover .img-bg-overlay span {
    color: #ef6726;
    text-decoration: none;
}

.mt-100 {
    margin-top: 100px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.find-cata {
    padding: 100px 0;
    background: #f7f7f7;
}

.find-cata .img-bg-overlay {
    min-height: 450px;
}

.find-cata .img-bg-overlay {
    align-items: end;
}

.find-cata .img-bg-overlay span {
    padding-bottom: 30px;
}

.find-cata a:hover .img-bg-overlay span {
    color: #ef6726;
}

.find-location .primary-heading h3 {
    margin-top: 0;
    margin-bottom: 30px;
}

.find-location .col-md-6 .img-bg-overlay {}

.find-location .col-md-6 .img-bg-overlay,
.find-location .col-md-12 .img-bg-overlay {
    min-height: 173px;
}

.find-location .col-md-12 .img-bg-overlay {
    margin-top: 30px;
}

.our-services-section {
    height: 100%;
    text-align: center;
    padding-top: 80px;
    margin-bottom: 70px;
}

.our-services-section a {
    color: #000;
    display: block;
}

.our-services-section h4 {
    font-weight: 700;
    width: 80%;
    margin: 0 auto;
    padding-top: 10px;
}

.our-services-section .img-bg {
    width: 80%;
    min-height: 400px;
    border: solid 3px #fff;
    margin: 0 auto;
    margin-top: 50px;
}

.our-services-section .img-bg.img-brokerage {
    margin-top: 0;
}

.our-services-section .col-lg-4 {
    margin-top: 40px;
}

.our-steps img {
    display: block;
    margin: 0 auto;
    max-width: 85%;
}

.our-steps h3 {
    font-weight: 700;
    font-size: 37px;
}

.our-steps h3 span {
    font-size: 66px;
    display: block;
}

.our-steps h3 label {
    font-size: 52px;
    margin: 0;
    display: block;
}

.inner-banner {
    margin-top: 100px;
}

.inner-banner .img-bg {
    position: relative;
    min-height: 400px;
    padding-top: 100px;
    text-align: center;
    color: #fff;
}

.inner-banner .img-bg:after {
    position: absolute;
    content: "";
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    display: block;
    top: 0;
}

.inner-banner-content {
    position: relative;
    z-index: 10;
}

.inner-banner-content h2 {
    font-weight: 700;
}

.footer-wrapper {
    margin-top: 70px;
    float: left;
    width: 100%;
    background-color: #000;
    background-image: ;
    padding: 50px 0 30px;
    padding-top: 0;
}

.footer-tags {
    background: #f3f3f3;
    padding: 30px 0;
    margin-bottom: 50px;
}

.footer-tags .footer-links h3,
.footer-tags .footer-links ul li a {
    color: #333;
}

.footer-tags .footer-links ul li a:hover {
    color: #ef6726;
}

.footer-content {
    color: #fff;
}

.footer-content a {
    color: #ef6726;
}

.footer-content p {
    margin-bottom: 0;
    margin-top: 0;
}

#multipleLocationHome,
#homeSearchButton,
#multipleLocation,
#multipleLocation option {
    display: none;
}

.footer-links h3 {
    font-size: 18px;
    margin: 0;
    color: #fff;
    font-weight: 600;
}

.home-carousel {
    min-height: 100vh;
}

.footer-links ul {
    padding: 0;
    margin: 0;
    margin-top: 5px;
}

.footer-links ul li {
    list-style: none;
    display: block;
    float: left;
    width: 100%;
}

.footer-links ul li a {
    color: #fff;
    font-size: 15px;
}

.items-rotate-slider {
    min-height: 300px;
    margin-left: -45px;
    margin-right: 0;
    overflow: hidden;
}

.latest-hed {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
}

.latest-post {
    padding: 0;
    margin: 0;
}

.single-post {
    list-style: none;
    position: relative;
    margin-bottom: 5px;
}

.img-holder {
    width: 70px;
    display: table-cell;
    vertical-align: middle;
}

.img-holder img {
    width: 70px !important;
}

.text-holder {
    padding-left: 20px;
    position: relative;
    display: table-cell;
    vertical-align: middle;
}

.post-title {
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    font-family: poppins, sans-serif;
    transition: all 500ms ease;
}

.rights {
    color: #fff;
    margin-bottom: 0;
    font-size: 12px;
    margin-top: 10px;
    text-align: center;
}

.footer-social-links {
    width: 100%;
    float: left;
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 10px;
}

.footer-social-links li a i {
    border-radius: 50%;
    display: block;
    font-size: 28px;
    text-align: center;
    color: #ef6726;
    transition: all 500ms ease;
}

.footer-social-links li {
    display: inline-block;
    margin-right: 5px;
}

.img-marketing {
    margin-top: 0;
    width: 80%;
}

.wrapper-slider {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 450px;
}

.slider-middle {
    position: absolute;
    width: 40%;
    height: 80%;
    left: 30%;
    bottom: 10%;
    z-index: 100;
    transition-duration: 1s;
    background: #333;
    padding: 30px;
    border-radius: 30px;
    color: #ddd;
}

.slider-left-1 {
    position: absolute;
    width: 30%;
    height: 300px;
    left: 12%;
    bottom: 15%;
    z-index: 99;
    transition-duration: 1s;
    background: #444;
    border-radius: 30px;
    padding: 30px;
    opacity: 0.9;
}

.slider-left-2 {
    position: absolute;
    width: 24%;
    height: 250px;
    left: 0;
    bottom: 18%;
    z-index: 98;
    transition-duration: 1s;
    background: #444;
    border-radius: 30px;
    padding: 30px;
    opacity: 0.8;
}

.slider-right-1 {
    position: absolute;
    width: 30%;
    height: 300px;
    left: 60%;
    bottom: 15%;
    z-index: 99;
    transition-duration: 1s;
    background: #444;
    border-radius: 30px;
    padding: 30px;
    opacity: 0.9;
}

.slider-right-2 {
    position: absolute;
    width: 24%;
    height: 250px;
    left: 80%;
    bottom: 18%;
    z-index: 98;
    transition-duration: 1s;
    background: #555;
    border-radius: 30px;
    padding: 30px;
    opacity: 0.8;
}

.slider-right-2 p {
    max-height: 90px !important;
    overflow-y: hidden;
}

.slider-hide {
    width: 0;
    height: 0;
    opacity: 0;
    transition-duration: 1s;
}

@media only screen and (max-width: 991px) {
    .slider-middle {
        width: 100%;
        left: 0;
        z-index: 10;
    }
    .slider-left-1 {
        display: none;
    }
    .slider-left-2 {
        display: none;
    }
    .slider-right-1 {
        display: none;
    }
    .slider-right-2 {
        display: none;
    }
    .items-rotate-slider {
        margin-left: 0;
    }
    .items-rotate-slider {
        min-height: unset;
    }
    .slider-hide {
        display: none;
    }
}

#slider-btn {
    display: none;
}

#slider-btn .prev-btn {
    position: absolute;
    top: 50%;
    left: 32.5%;
    z-index: 200;
    color: #fff;
    cursor: pointer;
}

#slider-btn {
    display: none;
}

#slider-btn .prev-btn {
    position: absolute;
    top: 50%;
    left: 32.5%;
    z-index: 200;
    color: #fff;
    cursor: pointer;
}

#slider-btn .next-btn {
    position: absolute;
    top: 50%;
    left: 66%;
    z-index: 200;
    color: #fff;
    cursor: pointer;
}

@media screen and (max-width: 991px) {
    .dateWrap {
        text-align: center !important;
        margin-top: 15px;
    }
    .selectWrap {
        text-align: center !important;
    }
    #slider-btn .next-btn {
        left: 90%;
    }
    #slider-btn .prev-btn {
        left: 5%;
    }
}

[class^="arr-"] {
    border: solid currentColor;
    border-width: 0 0.15em 0.15em 0;
    display: inline-block;
    padding: 0.5em;
}

.arr-right {
    transform: rotate(-45deg);
}

.arr-left {
    transform: rotate(135deg);
}

#rotate-slider {
    display: none;
}

#rotate-slider a h4 {
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

#rotate-slider a p {
    color: #eee;
    margin: 0 auto;
    font-size: 17px;
    padding: 10px;
}

.navbar-design {
    z-index: 150;
    padding-bottom: 2px;
}

.mobile-contact {
    position: fixed;
    bottom: 10px;
    width: 95%;
    background: #333;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    border-radius: 5px;
    left: 0;
    right: 0;
    display: none;
    color: #fff;
    text-align: center;
    z-index: 10;
}

.mobile-contact li {
    display: inline-block;
    width: 32%;
    padding: 10px;
}

.mobile-contact li i {
    font-size: 22px;
    margin: 5px 0;
}

.mobile-contact li span {
    display: none;
}

.mobile-contact li i {
    display: block;
    vertical-align: middle;
}

.mobile-contact li i,
.mobile-contact li a {
    color: #fff;
    text-transform: uppercase;
}

.mobile-contact li a {
    display: block;
    margin-left: 10px;
    font-weight: 700;
    font-size: 22px;
}

.property-detail-header.hide {
    display: none;
}

.property-detail-header.show {
    display: block;
}

.form-selector {
    top: 50%;
    left: 0;
    right: 0;
    max-width: 750px;
    margin: 0 auto;
    position: absolute;
    margin-top: 85px;
}

.form-selector .select2-search__field {
    border: none;
    box-shadow: none;
    color: #000;
    height: 31px;
    font-weight: 700;
    font-size: 20px;
    padding-left: 10px !important;
}

.modal-backdrop.show {
    display: none;
}

.modal-open .modal {
    background: rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 991px) {
    .our-services-section .img-bg {
        min-height: 200px;
    }
    .banner-heading {
        font-size: 15.5px;
        width: 12rem;
    }
    .navbar-light .navbar-right .nav-link.fav-icon {
        margin-right: 0;
        margin-left: 0;
    }
    .navbar-right li {
        display: none;
    }
    .navbar-right li:nth-child(2),
    .navbar-right li:nth-child(1) {
        display: list-item;
    }
    .navbar-right {
        position: absolute;
        top: 18px;
        right: 85px;
        display: flex;
        flex-direction: row;
        gap: 1rem;
    }
    .navbar-design {
        display: block;
    }
    .navbar-light .navbar-toggler {
        float: right;
        margin-top: 10px;
        margin-right: 0;
        border: none !important;
    }
    .property-detail-header {
        display: none;
    }
    .marketing-goals2-txt {
        left: 15px;
        top: 50px;
        position: static;
        text-align: center;
        width: 100%;
    }
    .marketing-goals2-txt h1 {
        font-size: 58px;
        margin-top: 50px;
    }
    .marketing-goals2 .marketing-goals1-txt {
        width: 70%;
        left: 10px;
        right: inherit;
        position: static;
        margin-top: 20px;
        width: 100%;
        padding: 0;
        text-align: center;
    }
    .stress-free .img-bg {
        min-height: 100%;
    }
    .stress-free-border {
        right: 2.2rem;
    }
    .stress-free .primary-heading {
        min-height: 130px;
    }
    .marketing-goals3 {
        margin-top: 0;
        width: 70%;
        margin: 0 auto;
        margin-top: 0;
        margin-top: 60px;
    }
    .banner-marketing {
        margin-top: 0;
    }
    .img-40 {
        margin-top: 0;
    }
    .navbar-design .navbar-left .nav-link {
        margin: 0;
        text-align: center;
    }
    .btn-gray {
        text-align: center;
    }
    .banner-content {
        width: 100%;
        padding: 15px;
    }
    .banner-content .btn-group {
        margin-bottom: 15px;
    }
    .welcome-text .primary-heading,
    .about-intro .primary-heading h3,
    .marketing-goals .primary-heading,
    .container,
    .container-md,
    .container-sm {
        max-width: 100%;
    }
    .opportunities-section .primary-heading,
    .marketing-goals .primary-heading h3,
    .welcome-text .primary-heading h1,
    .team-info {
        width: 100%;
    }
    .blog-post img,
    .ml-100 {
        margin: 0 !important;
    }
    .secure-property .img-bg {
        height: 800px;
    }
    .managment-banner {
        width: 90%;
    }
    .blog-sidebar {
        margin-right: 0;
        min-height: inherit;
    }
    .footer-links h3 {
        margin-top: 40px;
    }
    .right-img-absolut {
        position: static;
        padding: 30px 0 15px 30px;
    }
    .brokerage-sec-02 h3 {
        width: 100%;
        padding: 30px;
        margin: 0;
    }
    .brokerage-sec-01 {
        padding-top: 50px;
    }
    .brokerage-sec-01 img {
        margin-bottom: 30px;
    }
    .brokerage-sec-02 .container .col-lg-12:after {
        top: 0;
        width: 100%;
        min-height: 420px;
    }
    .img-marketing {
        margin-top: 0;
        transform: translateX(0);
    }
    .value-sec5 {
        width: 100%;
        border-width: 5px;
        font-size: 16px;
    }
    .marketing-banner .primary-heading {
        width: 80%;
    }
    .top-detail-gallery img {
        width: 100%;
    }
    .left-bottom-detail-position {
        position: relative;
    }
    .left-bottom-detail::after {
        display: none;
    }
    .property-update ul li {
        margin-bottom: 20px;
    }
    .owl-item.active.center .item {
        zoom: 1.2;
        margin-top: -11px;
        transition: zoom 0.5s ease;
    }
    .owl-carousel-step .item,
    .boxes-link .item {
        padding: 15px 4px !important;
    }
}

.slider-mobile {
    display: none;
}

@media only screen and (max-width: 767px) {
    .blog-sidebar p {
        font-size: 13px;
        padding: 10px;
    }
    .blog-guideline .left-header {
        top: -42px;
        width: 50%;
    }
    .owl-carousel.owl-new .owl-nav {
        display: none;
    }
    .about-section-4-header {
        font-size: 18px;
        position: absolute;
    }
    .opportunities-section {
        background: unset !important;
        padding: 0;
    }
    .management-section-1-text {
        font-size: 18px;
    }
    .carrer-banner-text {
        font-size: 20px;
    }
    .opportunities-intro,
    .opportunities-intro-1 {
        margin-top: 0;
    }
    .slider-mobile {
        display: block;
    }
    .slider-web {
        display: none;
    }
    .for-sale .img-bg-overlay {
        min-height: 200px;
        margin-bottom: 15px;
    }
    .for-sale .img-bg-overlay>span {
        font-size: 20px;
    }
    .img-bg-overlay,
    .find-cata .img-bg-overlay {
        min-height: 160px;
        margin-bottom: 15px;
    }
    .img-holder img {
        width: auto !important;
    }
    .single-post .img-holder img {
        width: 70px !important;
    }
    .group-btn ul li {
        margin: 0;
    }
    body {
        font-size: 13px;
    }
    h1 {
        font-size: 36px;
    }
    h2 {
        font-size: 28px;
    }
    h3 {
        font-size: 26px;
    }
    h4 {
        font-size: 22px;
    }
    h5 {
        font-size: 18px;
    }
    h6 {
        font-size: 16px;
    }
    .banner-content .btn-group {
        width: 100%;
    }
    .banner-content .btn-primary {
        padding: 5px 0;
        font-size: 15px;
    }
    .banner-content .form-inline .form-control {
        width: 70%;
        height: 50px;
        font-size: 15px;
    }
    .banner-content .form-inline button {
        font-size: 15px;
        padding: 14px 10px;
        width: 29%;
    }
    .latest-news span.primary-bg {
        padding: 10px;
        width: 150px;
    }
    .news-scroll {
        width: calc(100% - 160px);
    }
    .latest-news {
        margin-top: -40px;
    }
    .img-bg-overlay,
    .find-cata .img-bg-overlay {
        min-height: 160px;
        margin-bottom: 15px;
    }
    .mt-30 {
        margin: 0;
    }
    .img-bg-overlay span {
        font-size: 20px;
    }
    .mt-100 {
        margin-top: 15px !important;
    }
    .mb-100 {
        margin-bottom: 15px !important;
    }
    .find-location .col-md-12 .img-bg-overlay {
        margin-top: 0;
    }
    .our-services-section .primary-heading h3 {
        margin-bottom: 0;
    }
    .our-services-section .img-bg {
        margin-top: 0;
        width: 100%;
    }
    .our-services-section {
        height: auto;
        padding-bottom: 50px;
        margin: 0;
    }
    .our-steps {
        margin-top: 30px;
        text-align: center;
    }
    .for-sale .d-flex,
    .find-cata .d-flex,
    .our-steps .d-flex,
    .welcome-text .d-flex,
    .we-promise .d-flex,
    .career-banner .d-flex,
    .career-steps .d-flex,
    .marketing-goals .d-flex,
    .our-performance .d-flex,
    .secure-property .d-flex,
    .meet-the-team .d-flex,
    .value-shape .d-flex {
        display: block !important;
    }
    .secure-data-sec,
    .secure-icon,
    .stress-free h4,
    .border-div,
    .managment-banner h1 {
        width: 100%;
    }
    .stress-free-border {
        display: none;
    }
    .value-content {
        margin: 0;
        width: 100%;
    }
    .value-shape-img {
        min-height: 200px;
    }
    .bundle-content {
        margin-bottom: 20px;
    }
    .managment-banner h1 {
        margin: 20px auto;
    }
    .managment-banner a {
        width: 90%;
    }
    .managment-banner {
        padding: 15px;
    }
    .welcome-text {
        margin-top: 50px;
    }
    .meet-the-team {
        text-align: center;
    }
    .meet-the-team h3 {
        margin-top: 30px;
    }
    .about-intro {
        padding: 20px 0;
        text-align: center;
    }
    .about-intro .bg-white {
        font-size: 14px;
    }
    .our-backbone {
        text-align: center;
    }
    .we-promise {
        text-align: center;
    }
    .submit-resume {
        margin-left: 0;
        margin-top: 0;
        width: 50%;
    }
    .map-content {
        width: 90%;
        left: 0;
        margin: 0 auto;
        display: block;
        right: 0;
    }
    .marketing-banner .primary-heading {
        width: 100%;
        left: 15px;
    }
    .our-performance .col-lg-3 {
        margin-top: 50px;
    }
    .stress-free .img-bg {
        padding-bottom: 30px;
        min-height: inherit;
    }
    .secure-property .img-bg {
        padding: 20px;
        height: auto;
    }
    .secure-property .primary-heading {
        max-width: 100%;
    }
    .secure-data {
        width: 100%;
        padding-left: 0;
        float: left;
        margin-top: 20px;
        text-align: center;
    }
    .career-text .primary-heading {
        margin-left: 0;
        text-align: center;
        margin-top: 20px;
    }
    .right-side {
        padding-left: 15px;
    }
    .value-shape2 {
        margin-top: 50px;
    }
    .footer-social-links {
        text-align: center;
    }
    .marketing-goals2-txt h1 {
        font-size: 38px;
    }
    .stress-free .img-bg {
        min-height: 200px;
        margin-top: 30px;
    }
    .img-marketing {
        width: 100%;
    }
    .marketing-banner:after {
        display: none;
    }
    .marketing-banner .primary-heading {
        top: 50%;
        text-align: center;
        left: 0;
    }
    .marketing-banner img {
        display: none;
    }
    .form-selector {
        margin-top: 125px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .select2-container {
        width: 100% !important;
    }
    .form-selector .btn-design {
        float: none;
        font-size: 13px;
        font-weight: 600;
        margin: 0 auto;
        display: block !important;
    }
    .mobile-contact {
        display: block;
    }
    .whatsapp-float,
    .email-float-property,
    .phone-float,
    .email-float,
    .email-float-property {
        display: none !important;
    }
    .img-bg-overlay span {
        font-size: 14px;
    }
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 200px;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.whatsapp-float-btn {
    width: 60px;
    height: auto;
}

.phone-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 120px;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 0 10px rgb(0 0 0/30%);
    background-color: #fff;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 1ms ease-in;
}

.phone-float p {
    width: 260px;
    overflow: hidden;
    color: #000;
    transition: all 1ms ease-in;
}

.phone-float.shrinked p {
    width: 0;
    overflow: hidden;
    transition: all 1ms ease-in;
}

.phone-float img {
    width: 40px;
}

.phone-float-btn {
    width: 60px;
    height: auto;
}

.email-float,
.email-float-property {
    position: fixed;
    width: 60px;
    height: 60px;
    cursor: pointer;
    bottom: 40px;
    right: 40px;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 0 10px rgb(0 0 0/30%);
    background-color: #fff;
    z-index: 100;
}

.email-float-btn {
    width: 40px;
    height: auto;
    margin-top: 10px;
}

.wrapper {
    float: left;
    width: 100%;
    position: relative;
    z-index: 10;
}

@media only screen and (max-width: 585px) {
    .footer-content a {
        line-height: 48px;
    }
    .footer-social-links li a i {
        font-size: 48px;
        margin: 5px;
    }
    .sortby .form-inline .form-control {
        min-width: 60px;
        width: 110px;
        display: inline-block;
        min-width: 50%;
        font-size: 12px;
    }
    .sortby .form-inline label {
        margin-right: 20px;
        display: inline-block;
    }
    .sortby .form-inline {
        justify-content: start;
        width: 100%;
        margin-left: -15px;
        display: block !important;
        margin-bottom: 10px;
    }
    .morebtn {
        display: block;
        color: #ef6726;
        position: absolute;
        bottom: 20px;
        left: 20px;
    }
    .filter-design form div:nth-child(5),
    .filter-design form div:nth-child(6),
    .filter-design form div:nth-child(10),
    .filter-design form div:nth-child(11),
    .filter-design form div:nth-child(4),
    .filter-design form div:nth-child(8),
    .filter-design form div:nth-child(9) {
        display: none;
    }
    .filter-design.filterdesign form div:nth-child(5),
    .filter-design.filterdesign form div:nth-child(6),
    .filter-design.filterdesign form div:nth-child(10),
    .filter-design.filterdesign form div:nth-child(11),
    .filter-design.filterdesign form div:nth-child(4),
    .filter-design.filterdesign form div:nth-child(8),
    .filter-design.filterdesign form div:nth-child(9) {
        display: block;
    }
    .filter-design.filterdesign .morebtn {
        display: none;
    }
    .primary-heading h3 {
        margin: 0;
        margin-top: 20px;
    }
    .owl-new {
        margin-top: 20px;
    }
    .find-cata {
        padding: 20px 0;
    }
    .latest-listing {
        margin: 0;
        padding: 10px 0;
    }
    .form-selector {
        position: static;
        margin: 0;
    }
    #frmhomesearch {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
    }
    .banner-content {
        width: 100%;
        padding: 15px;
        position: static;
        padding-bottom: 0;
        transform: initial;
    }
    .footer-tags {
        margin-bottom: 30px;
        padding: 10px 0;
    }
    .footer-wrapper .col-md-3 {
        border-bottom: solid 1px #777;
        padding-bottom: 15px;
    }
    .latest-hed {
        margin-bottom: 0;
        margin-top: 10px;
        text-align: center;
        font-size: 14px;
    }
    .footer-content p {
        margin-top: 0;
    }
    .footer-social {
        margin-top: 0;
    }
    .footer-wrapper .col-md-3:last-child {
        display: none;
    }
    .footer-links ul li a {
        font-size: 13px;
        line-height: 48px;
    }
    .footer-links h3 {
        margin-top: 6px;
        font-size: 14px;
        line-height: 50px;
    }
    .footer-links ul li {
        width: 50%;
    }
    .our-services-section h4 {
        font-size: 12px;
    }
}

@media screen and (max-width: 340px) {
    .chartTab ul {
        margin-left: 0 !important;
    }
    .chartTab ul li {
        margin-left: 0 !important;
    }
}

@media screen and (max-width: 500px) {
    .marketInsight .nav {
        width: 96% !important;
        margin: 0 auto !important;
    }
    .marketInsight .nav li {
        width: 100% !important;
        margin-left: 0 !important;
    }
}

.footer-content-logo img {
    max-width: 100%;
}

.footer-logo {
    color: #ef6726;
    width: 50px;
    display: inline-block;
    vertical-align: top;
}

.footer-address {
    vertical-align: top;
    display: inline-block;
    width: calc(100% - 60px);
}

.newsletter-design {
    margin-top: 10px;
}

.newsletter-design button {
    border: none;
    outline: none;
    background: #0c5460;
    font-size: 14px;
    color: #fff;
    padding: 7px 12px;
}

.newsletter-design input {
    font-size: 14px;
}

.footer-social span {
    color: #fff;
    font-weight: 700;
}

.footer-social {
    float: left;
    width: 100%;
    margin-top: 0;
}

.owl-carousel-step .item,
.boxes-link .item {
    padding: 15px;
}

.slider-mobile .d-flex {
    display: block !important;
    text-align: center;
}

.submenu-area {
    display: none;
}

.submenu-area.active {
    display: block;
}

.owl-new .item a {
    padding: 10px;
}

.newsletter-design .form-control {
    box-shadow: none !important;
    borde: none !important;
}

.home-banner .carousel-item {
    opacity: 0;
    transition-duration: 0.6s;
    transition-property: opacity;
}

.home-banner .carousel-item.active,
.home-banner .carousel-item-next.carousel-item-left,
.home-banner .carousel-item-prev.carousel-item-right {
    opacity: 1;
}

.home-banner .active.carousel-item-left,
.home-banner .active.carousel-item-right {
    opacity: 0;
}

.home-banner .carousel-item-next,
.home-banner .carousel-item-prev,
.home-banner .carousel-item.active,
.home-banner .active.carousel-item-left,
.home-banner .active.carousel-item-prev {
    transform: translateX(0);
    transform: translate3d(0, 0, 0);
}

.property-share {
    position: relative;
}

.submit-button:disabled {
    cursor: not-allowed;
    background: #ababab;
    color: #fff;
}

.share-icons {
    position: absolute;
    top: -45px;
    right: 0;
    background-color: #f5f5f5 !important;
    border-radius: 5%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 100ms ease-in-out, transform 100ms ease-in-out;
    visibility: hidden;
    display: flex;
}

.togg .share-icons .fa-facebook {
    color: #365899;
}

.fa-whatsapp {
    color: #25d366;
}

.fa-phone {
    color: #ef6726;
}

.fa-envelope {
    color: #333;
}

.share-icons .fa-twitter {
    color: #1da1f2;
}

.share-icons a {
    background-color: #f5f5f5 !important;
}

.share-icons.top-bar a {
    background-color: transparent !important;
}

.share-icons.property {
    top: -45px;
    left: -10px;
    display: flex;
}

.share-icons.top-bar {
    transform: translateY(0);
    transform: translateX(-10px);
    top: 0;
    left: 40px;
    display: flex;
    background-color: transparent !important;
}

.newsletter-form {
    position: relative;
}

.newsletter-recaptcha {
    position: absolute;
    top: -85px;
    right: -130px;
    opacity: 0;
    visibility: hidden;
}

.newsletter-recaptcha.show {
    opacity: 1;
    visibility: visible;
}

.share-show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) !important;
    transform: translateX(0) !important;
}

.fa-linkedin {
    color: #0073b1;
}

.row {
    overflow: hidden;
}

.footer-privacy-link {
    color: #ef6726;
}

.add-property-btn {
    padding-right: 5px !important;
    padding-left: 5px !important;
}

.three-steps-text {
    font-family: Breathing;
}

.three-steps-size {
    font-size: 2rem;
}

@media screen and (max-width: 768px) {
    .slider-loading {
        width: 390px;
        height: 262px;
        display: block;
    }
    .three-steps-size {
        font-size: 22px;
    }
}

@media screen and (max-width: 576px) {
    .mobile-add-property {
        width: 40px;
        border-radius: 50%;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
    }
}

@media screen and (max-width: 1080px) {
    .marketting-top-text-div {
        left: 25vw;
    }
    .helping-heading {
        font-size: 29.5px;
    }
    .marketting-bottom-text {
        margin-top: 0;
    }
    .form-selector {
        top: 55%;
    }
}

@media screen and (max-width: 991px) {
    .property-detail-header {
        padding-top: 0;
    }
    .share-icons.top-bar {
        top: 23px;
        left: -65px;
    }
    .home-search-box {
        padding-right: 15px !important;
        margin-bottom: 0.7rem;
    }
    .home-search-button {
        padding-left: 15px !important;
    }
    .banner-content span {
        margin-bottom: 0;
    }
    .mobile-left-nav {
        display: none;
    }
    .modal-dialog {
        margin-bottom: 80px;
    }
    .job-listing li {
        width: 100%;
        margin: 0.5rem 0;
    }
    .newsletter-recaptcha {
        right: 0;
    }
    .iframe-size {
        height: 20rem;
    }
    .helping-heading {
        font-size: 18px;
    }
    .marketing-goals1-txt img {
        width: 20%;
    }
    .marketing-goals1 .left-box {
        margin-left: 0;
    }
    .marketting-top-text {
        font-size: 35px;
    }
    .marketting-top-text.top-text {
        margin-bottom: -20px !important;
    }
    .marketting-top-text-div {
        left: 35%;
    }
    .marketting-middle-image {
        margin-top: 140px;
    }
    .marketting-bottom-text {
        font-size: 20px;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .marketting-bottom-image img {
        width: 50%;
    }
    .marketting-right-image img {
        visibility: hidden;
    }
    .marketting-right-image {
        background: url(/themes/steps/images/marketting-01.png) no-repeat;
        background-size: cover;
    }
}

.select2-container {
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle;
}

.select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 28px;
    user-select: none;
    -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    display: block;
    padding-left: 8px;
    padding-right: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
    position: relative;
}

.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
    padding-right: 8px;
    padding-left: 20px;
}

.select2-container .select2-selection--multiple {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    min-height: 32px;
    user-select: none;
    -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
    display: inline-block;
    overflow: hidden;
    padding-left: 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.select2-container .select2-search--inline {
    float: left;
}

.select2-container .select2-search--inline .select2-search__field {
    box-sizing: border-box;
    border: none;
    font-size: 100%;
    margin-top: 5px;
    padding: 0;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

.select2-dropdown {
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    z-index: 1051;
}

.select2-results {
    display: block;
}

.select2-results__options {
    list-style: none;
    margin: 0;
    padding: 0;
}

.select2-results__option {
    padding: 6px;
    user-select: none;
    -webkit-user-select: none;
}

.select2-results__option[aria-selected] {
    cursor: pointer;
}

.select2-container--open .select2-dropdown {
    left: 0;
}

.select2-container--open .select2-dropdown--above {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.select2-search--dropdown {
    display: block;
    padding: 4px;
}

.select2-search--dropdown .select2-search__field {
    padding: 4px;
    width: 100%;
    box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
    display: none;
}

.select2-close-mask {
    border: 0;
    margin: 0;
    padding: 0;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 99;
    background-color: #fff;
    filter: alpha(opacity=0);
}

.select2-hidden-accessible {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: 700;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #888 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0;
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
    float: left;
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
    left: 1px;
    right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #eee;
    cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
    display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #888 transparent;
    border-width: 0 4px 5px;
}

.select2-container--default .select2-selection--multiple {
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0 5px;
    width: 100%;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    list-style: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: 700;
    margin-top: 5px;
    margin-right: 10px;
    padding: 1px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #999;
    cursor: pointer;
    display: inline-block;
    font-weight: 700;
    margin-right: 2px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #333;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
    float: right;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
    margin-left: 5px;
    margin-right: auto;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
    margin-left: 2px;
    margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: solid #000 1px;
    outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
    background-color: #eee;
    cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
    display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
    background: 0 0;
    border: none;
    outline: 0;
    box-shadow: none;
    -webkit-appearance: textfield;
}

.select2-results__options {
    list-style: none;
    margin: 0;
    padding: 0;
}

.select2-results__option {
    padding: 6px;
    user-select: none;
    -webkit-user-select: none;
}

.select2-results__option[aria-selected] {
    cursor: pointer;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #5897fb;
    color: #fff;
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
    background-color: #3875d7;
    color: #fff;
}
