body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f8f9fa;
}

.main-container {
    height: 100vh;
    display: flex;
}

.sidebar {
    width: 50%;
    background: white;
    overflow-y: auto;
    border-right: 1px solid #dee2e6;
}

.map-container {
    width: 50%;
    position: relative;
}

#map {
    height: 100%;
    width: 100%;
}

.search-header {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    background: white;
}

.results-count {
    color: #666;
    font-size: 14px;
}

.sort-dropdown {
    font-size: 14px;
}

.property-card {
    border: none;
    border-bottom: 1px solid #eee;
    border-radius: 0;
    transition: all 0.2s;
    cursor: pointer;
}

.property-card .card-body {
    display: flex;
    gap: 15px;
}

.property-image-container {
    flex-shrink: 0;
    width: 200px;
    position: relative;
}

.property-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.property-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transform: translateY(-1px);
}

.property-image {
    height: 150px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.spotlight-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #1e3a8a;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.countdown-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(220, 38, 127, 0.9);
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.price-note {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
}

.property-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.property-type {
    background: #f1f5f9;
    color: #475569;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    display: inline-block;
    margin-right: 8px;
}

.property-details {
    color: #666;
    font-size: 14px;
    margin: 8px 0;
}

.property-features {
    color: #666;
    font-size: 13px;
    line-height: 1.4;
}

.agent-info {
    display: flex;
    align-items: center;
    margin-top: 10px;
    font-size: 12px;
    color: #666;
}

.agent-logo {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.favorite-btnn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.map-controls {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1000;
    display: flex;
    gap: 10px;
}

.control-btnn {
    background: white;
    border: 1px solid #ccc;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.property-marker {
    background: #1e40af;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.carousel-indicators {
    bottom: 10px;
}

.carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin: 0 2px;
}


























@charset "UTF-8";

@font-face {
    font-family: TTNorms;
    src: url(../fonts/TTNorms-Bold.ttf) format("truetype");
    font-weight: 700
}

@font-face {
    font-family: TTNorms;
    src: url(../fonts/TTNorms-Light.ttf) format("truetype");
    font-weight: 300
}

@font-face {
    font-family: TTNorms;
    src: url(../fonts/TTNorms-Medium.ttf) format("truetype");
    font-weight: 500
}

@font-face {
    font-family: TTNorms;
    src: url(../fonts/TTNorms-Regular.ttf) format("truetype");
    font-weight: 400
}

@-webkit-keyframes opas {
    0% {
        opacity: .4
    }

    60% {
        opacity: 1
    }

    100% {
        opacity: .4
    }
}

@keyframes opas {
    0% {
        opacity: .4
    }

    60% {
        opacity: 1
    }

    100% {
        opacity: .4
    }
}

@-webkit-keyframes fadeOpas {
    0% {
        transform: translateY(110%);
        opacity: 0
    }

    100% {
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes fadeOpas {
    0% {
        transform: translateY(110%);
        opacity: 0
    }

    100% {
        transform: translateY(0);
        opacity: 1
    }
}

@-webkit-keyframes tooltipShow {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes tooltipShow {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0)
    }

    100% {
        transform: translate(-50%, -50%) rotate(-360deg)
    }
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0)
    }

    100% {
        transform: translate(-50%, -50%) rotate(-360deg)
    }
}

@-webkit-keyframes rotate22 {
    0% {
        transform: translate(0, 0) rotate(0)
    }

    50% {
        transform: translate(-3vw, 0) rotate(-30deg)
    }

    100% {
        transform: translate(0, 0) rotate(0)
    }
}

@keyframes rotate22 {
    0% {
        transform: translate(0, 0) rotate(0)
    }

    50% {
        transform: translate(-3vw, 0) rotate(-30deg)
    }

    100% {
        transform: translate(0, 0) rotate(0)
    }
}

@-webkit-keyframes rotate23 {
    0% {
        transform: translate(0, 0) rotate(0)
    }

    50% {
        transform: translate(4.5vw, 0) rotate(40deg)
    }

    100% {
        transform: translate(0, 0) rotate(0)
    }
}

@keyframes rotate23 {
    0% {
        transform: translate(0, 0) rotate(0)
    }

    50% {
        transform: translate(4.5vw, 0) rotate(40deg)
    }

    100% {
        transform: translate(0, 0) rotate(0)
    }
}

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

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

@keyframes rotate2 {
    0% {
        transform: rotate(0)
    }

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

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

    60% {
        transform: rotate(-45deg)
    }

    100% {
        transform: rotate(0)
    }
}

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

    60% {
        transform: rotate(-45deg)
    }

    100% {
        transform: rotate(0)
    }
}

@-webkit-keyframes jamp {
    0% {
        margin-top: 0
    }

    15% {
        margin-top: -1rem
    }

    25% {
        margin-top: 0
    }

    35% {
        margin-top: -.5rem
    }

    45% {
        margin-top: 0
    }

    100% {
        margin-top: 0
    }
}

@keyframes jamp {
    0% {
        margin-top: 0
    }

    15% {
        margin-top: -1rem
    }

    25% {
        margin-top: 0
    }

    35% {
        margin-top: -.5rem
    }

    45% {
        margin-top: 0
    }

    100% {
        margin-top: 0
    }
}

@-webkit-keyframes jampTrf {
    0% {
        transform: translateY(0)
    }

    15% {
        transform: translateY(-7%)
    }

    25% {
        transform: translateY(0)
    }

    35% {
        transform: translateY(-3%)
    }

    45% {
        transform: translateY(0)
    }

    100% {
        transform: translateY(0)
    }
}

@keyframes jampTrf {
    0% {
        transform: translateY(0)
    }

    15% {
        transform: translateY(-7%)
    }

    25% {
        transform: translateY(0)
    }

    35% {
        transform: translateY(-3%)
    }

    45% {
        transform: translateY(0)
    }

    100% {
        transform: translateY(0)
    }
}

@-webkit-keyframes slideme {
    0% {
        left: -30px;
        margin-left: 0
    }

    30% {
        left: 110%;
        margin-left: 80px
    }

    100% {
        left: 110%;
        margin-left: 80px
    }
}

@keyframes slideme {
    0% {
        left: -30px;
        margin-left: 0
    }

    30% {
        left: 110%;
        margin-left: 80px
    }

    100% {
        left: 110%;
        margin-left: 80px
    }
}

@-webkit-keyframes pulseicon-a {
    0% {
        transform: translate(0, 0) scale(.85)
    }

    50% {
        transform: translate(0, 0) scale(1)
    }

    100% {
        transform: translate(0, 0) scale(.85)
    }
}

@keyframes pulseicon-a {
    0% {
        transform: translate(0, 0) scale(.85)
    }

    50% {
        transform: translate(0, 0) scale(1)
    }

    100% {
        transform: translate(0, 0) scale(.85)
    }
}

@-webkit-keyframes pulseicon {
    0% {
        transform: translate(-50%, -50%) scale(.8)
    }

    50% {
        transform: translate(-50%, -50%) scale(1)
    }

    100% {
        transform: translate(-50%, -50%) scale(.8)
    }
}

@keyframes pulseicon {
    0% {
        transform: translate(-50%, -50%) scale(.8)
    }

    50% {
        transform: translate(-50%, -50%) scale(1)
    }

    100% {
        transform: translate(-50%, -50%) scale(.8)
    }
}

@-webkit-keyframes phone {
    0% {
        transform: translate(-50%, -50%) rotate(15deg) scale(.9)
    }

    50% {
        transform: translate(-50%, -50%) rotate(0) scale(1.01)
    }

    100% {
        transform: translate(-50%, -50%) rotate(15deg) scale(.9)
    }
}

@keyframes phone {
    0% {
        transform: translate(-50%, -50%) rotate(15deg) scale(.9)
    }

    50% {
        transform: translate(-50%, -50%) rotate(0) scale(1.01)
    }

    100% {
        transform: translate(-50%, -50%) rotate(15deg) scale(.9)
    }
}

@-webkit-keyframes pulseiconLine {
    0% {
        transform: translateX(-55%) scale(.7)
    }

    50% {
        transform: translateX(-65%) scale(1)
    }

    100% {
        transform: translateX(-55%) scale(.7)
    }
}

@keyframes pulseiconLine {
    0% {
        transform: translateX(-55%) scale(.7)
    }

    50% {
        transform: translateX(-65%) scale(1)
    }

    100% {
        transform: translateX(-55%) scale(.7)
    }
}

@-webkit-keyframes scale-before {
    0% {
        transform: translate(-50%, -50%) scale(.8);
        opacity: 0
    }

    50% {
        transform: translate(-50%, -50%) scale(1);
        opacity: .7
    }

    100% {
        transform: translate(-50%, -50%) scale(.8);
        opacity: 0
    }
}

@keyframes scale-before {
    0% {
        transform: translate(-50%, -50%) scale(.8);
        opacity: 0
    }

    50% {
        transform: translate(-50%, -50%) scale(1);
        opacity: .7
    }

    100% {
        transform: translate(-50%, -50%) scale(.8);
        opacity: 0
    }
}

@-webkit-keyframes transform-shiver {
    0% {
        transform: translate(0, 0) rotate(0)
    }

    25% {
        transform: translate(-5px, 0) rotate(0)
    }

    75% {
        transform: translate(5px, 0) rotate(0)
    }

    100% {
        transform: translate(0, 0) rotate(0)
    }
}

@keyframes transform-shiver {
    0% {
        transform: translate(0, 0) rotate(0)
    }

    25% {
        transform: translate(-5px, 0) rotate(0)
    }

    75% {
        transform: translate(5px, 0) rotate(0)
    }

    100% {
        transform: translate(0, 0) rotate(0)
    }
}

@-webkit-keyframes transform-shiver2 {
    0% {
        transform: translate(0, 0) rotate(0)
    }

    25% {
        transform: translate(0, -5px) rotate(0)
    }

    75% {
        transform: translate(0, 5px) rotate(0)
    }

    100% {
        transform: translate(0, 0) rotate(0)
    }
}

@keyframes transform-shiver2 {
    0% {
        transform: translate(0, 0) rotate(0)
    }

    25% {
        transform: translate(0, -5px) rotate(0)
    }

    75% {
        transform: translate(0, 5px) rotate(0)
    }

    100% {
        transform: translate(0, 0) rotate(0)
    }
}

@-webkit-keyframes car1 {
    0% {
        transform: translate(0, 0) scale(1)
    }

    100% {
        transform: translate(-200px, 10px) scale(0)
    }
}

@keyframes car1 {
    0% {
        transform: translate(0, 0) scale(1)
    }

    100% {
        transform: translate(-200px, 10px) scale(0)
    }
}

@-webkit-keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 223, 20, .5)
    }

    70% {
        box-shadow: 0 0 0 25px rgba(249, 223, 20, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(249, 223, 20, 0)
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 223, 20, .5)
    }

    70% {
        box-shadow: 0 0 0 25px rgba(249, 223, 20, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(249, 223, 20, 0)
    }
}

@-webkit-keyframes sbs-anim {
    0% {
        opacity: 1;
        transform: translateX(0) translateY(0) rotate(0) scale(1, 1);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear
    }

    50% {
        opacity: 1;
        transform: translateX(-2px) translateY(-8px) rotate(-5deg) scale(1, 1);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear
    }

    100% {
        opacity: 1;
        transform: translateX(0) translateY(0) rotate(0) scale(1, 1)
    }
}

@keyframes sbs-anim {
    0% {
        opacity: 1;
        transform: translateX(0) translateY(0) rotate(0) scale(1, 1);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear
    }

    50% {
        opacity: 1;
        transform: translateX(-2px) translateY(-8px) rotate(-5deg) scale(1, 1);
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear
    }

    100% {
        opacity: 1;
        transform: translateX(0) translateY(0) rotate(0) scale(1, 1)
    }
}

@-webkit-keyframes pop {
    0% {
        transform: perspective(1px) rotateX(0) scale3d(1, 1, 1)
    }

    100% {
        transform: perspective(1px) rotateX(0) scale3d(1.2, 1.2, 1.2)
    }
}

@keyframes pop {
    0% {
        transform: perspective(1px) rotateX(0) scale3d(1, 1, 1)
    }

    100% {
        transform: perspective(1px) rotateX(0) scale3d(1.2, 1.2, 1.2)
    }
}

@-webkit-keyframes puff-out {
    0% {
        transform: translate(-50%, -50%) rotate(0) scale(1, 1);
        transform-origin: 50% 50%;
        transform-origin-opacity: 1
    }

    100% {
        transform: translate(-50%, -50%) rotate(0) scale(2, 2);
        transform-origin: 50% 50%;
        opacity: 0
    }
}

@keyframes puff-out {
    0% {
        transform: translate(-50%, -50%) rotate(0) scale(1, 1);
        transform-origin: 50% 50%;
        transform-origin-opacity: 1
    }

    100% {
        transform: translate(-50%, -50%) rotate(0) scale(2, 2);
        transform-origin: 50% 50%;
        opacity: 0
    }
}

@-webkit-keyframes slide-up-in {
    0% {
        transform: translate(0, 100%) rotate(1deg);
        opacity: 0;
        transform-origin: 0 0
    }

    100% {
        opacity: 1;
        transform: translate(0, 0) rotate(0);
        transform-origin: 0 0
    }
}

@keyframes slide-up-in {
    0% {
        transform: translate(0, 100%) rotate(1deg);
        opacity: 0;
        transform-origin: 0 0
    }

    100% {
        opacity: 1;
        transform: translate(0, 0) rotate(0);
        transform-origin: 0 0
    }
}

.fade_in {
    opacity: 1;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: slide-up-in;
    animation-name: slide-up-in
}

.title-first {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: slide-up-in;
    animation-name: slide-up-in
}

.subtitle-first {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: slide-up-in;
    animation-name: slide-up-in
}

@-webkit-keyframes d3 {
    0% {
        transform: perspective(900) rotateY(-42deg) translateX(59%)
    }

    80% {
        transform: perspective(0) rotateY(0) translateX(59%)
    }

    100% {
        transform: perspective(0) rotateY(0) translateX(0)
    }
}

@keyframes d3 {
    0% {
        transform: perspective(900) rotateY(-42deg) translateX(59%)
    }

    80% {
        transform: perspective(0) rotateY(0) translateX(59%)
    }

    100% {
        transform: perspective(0) rotateY(0) translateX(0)
    }
}

@-webkit-keyframes d3-end {
    0% {
        transform: perspective(0) rotateY(0) translateX(0)
    }

    80% {
        transform: perspective(0) rotateY(0) translateX(59%)
    }

    100% {
        transform: perspective(900) rotateY(-42deg) translateX(59%)
    }
}

@keyframes d3-end {
    0% {
        transform: perspective(0) rotateY(0) translateX(0)
    }

    80% {
        transform: perspective(0) rotateY(0) translateX(59%)
    }

    100% {
        transform: perspective(900) rotateY(-42deg) translateX(59%)
    }
}

* {
    box-sizing: border-box
}

html {
    font-size: 10px;
    scroll-behavior: smooth
}

body {
    font-family: TTNorms, sans-serif;
    line-height: 1.2;
    letter-spacing: .03em;
    font-weight: 400;
    overflow-x: hidden;
    color: #1c1c1c;
    position: relative;
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    background-color: #fff
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0
}

a,
button,
input,
select,
textarea {
    outline: 0
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0
}

a {
    text-decoration: none;
    color: #282828
}

p {
    margin: 0
}

img {
    max-width: 100%;
    max-height: 100%;
    align-self: center
}

.rr {
    font-family: RoadRadio, sans-serif
}

.slick-slide,
.slick-slide * {
    outline: 0 !important
}

.black {
    color: #5a5a59
}

.poe {
    pointer-events: none
}

.mrm {
    margin-right: .5vw
}

.mr {
    margin-right: 1vw
}

.mrs {
    margin-right: 1.5vw
}

.mrx {
    margin-right: .781vw
}

.lt {
    color: #fff
}

.ggc {
    color: #69bdad
}

.gray {
    color: grey
}

.asfs {
    align-self: flex-start
}

.title-lg {
    font-size: 3.125vw;
    font-weight: 400;
    line-height: 1
}

.title-num {
    font-size: 5.208vw
}

.title72 {
    font-size: 3.75vw
}

.tac {
    text-align: center
}

.fw1 {
    font-weight: 100
}

.fw3 {
    font-weight: 300
}

.fw5 {
    font-weight: 500
}

.fw4 {
    font-weight: 400
}

.fw6 {
    font-weight: 600
}

.fw7 {
    font-weight: 700
}

.fw8 {
    font-weight: 800
}

.fwb {
    font-weight: 700
}

.fw9 {
    font-weight: 900
}

.fsi {
    font-style: italic
}

.tar {
    text-align: right
}

.tdt {
    text-decoration: line-through
}

.tdu {
    text-decoration: underline
}

.center {
    text-align: center
}

.ttu {
    text-transform: uppercase
}

.ttn {
    font-family: TTNorms
}

.title {
    font-size: 2.76vw
}

.t-min {
    font-size: 1.875vw
}

.t-ss {
    font-size: 1.5vw
}

.t-min2 {
    font-size: 1.5625vw
}

.text {
    font-size: .885vw
}

.text-md {
    font-size: 1.042vw
}

.tg {
    color: #f78449
}

.tg2 {
    color: #afe4d6
}

a.text-min {
    color: #181818;
    transition: all .4s
}

a.text-min:hover {
    color: #ff7200
}

.small-text {
    font-size: .92vw
}

.tsm8 {
    font-size: .55vw
}

.tsm10 {
    font-size: .61vw
}

.tsm11 {
    font-size: .7vw
}

.tsm12 {
    font-size: .677vw
}

.tsm13 {
    font-size: .88125vw
}

.text24 {
    font-size: 1.25vw
}

.text23 {
    font-size: 1.3vw
}

.text21 {
    font-size: 1.2vw
}

.container {
    max-width: 81.771vw;
    margin: 0 auto
}

.container-big {
    max-width: 85.9375vw;
    margin: 0 auto
}

.container-min {
    max-width: 81.771vw;
    margin: 0 auto
}

.container-mid {
    max-width: 84.896vw;
    margin: 0 auto
}

.container--left {
    width: 100%;
    padding-left: 8.7625vw
}

.container--right {
    width: 100%;
    padding-right: 7.5vw
}

.mlg {
    margin-bottom: 4.167vw
}

.msm {
    margin-bottom: 3.333vw
}

.mb {
    margin-bottom: 2.083vw
}

.mbm {
    margin-bottom: .7vw
}

.mbs {
    margin-bottom: .41vw
}

.stop {
    overflow: hidden
}

.section {
    padding: 6vw 0;
    position: relative
}

.max {
    width: 100%
}

.btnn-text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    white-space: nowrap
}

.gr {
    color: #8d8d8d
}

.btnn {
    padding: 2.448vw 3.646vw;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    z-index: 6;
    cursor: pointer;
    background: #6cb644;
    box-shadow: inset 0 0 35px rgba(255, 255, 255, .25);
    border-radius: 500px;
    color: #fff;
    border: none;
    position: relative;
    letter-spacing: .03em;
    font-weight: 700
}

.btnn img {
    position: relative;
    z-index: 1
}

.btnn .btnn-text {
    z-index: 1;
    position: relative
}

.btnn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(180deg, #ff4a4a 0, #9b1200 100%);
    box-shadow: inset -16px -16px 32px rgba(255, 255, 255, .1), inset 0 16px 32px rgba(255, 255, 255, .26);
    transition: .3s;
    opacity: 0
}

.btnn .btnn-blick {
    position: absolute
}

.btnn:not(:disabled) .btnn-blick {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    overflow: hidden
}

.btnn:not(:disabled) .btnn-blick:after {
    margin-left: -30px;
    content: " ";
    width: 30px;
    height: 300px;
    background: #fff;
    -webkit-animation-delay: 50ms;
    animation-delay: 50ms;
    position: absolute;
    left: -40px;
    top: -100px;
    top-animation-timing-function: ease-in-out;
    transition: all .1s;
    -webkit-animation-name: slideme;
    animation-name: slideme;
    -webkit-animation-duration: 3.5s;
    animation-duration: 3.5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    transform: rotate(45deg)
}

.btnn:hover {
    background: #5ea33a
}

.btnn.btnn--gray {
    background-color: #f0f0f0;
    box-shadow: none;
    color: #282728
}

.btnn.btnn--gray:hover {
    background-color: #e3e3e3
}

.btnn.btnn--outline {
    border: 2px solid #39cb59;
    background: 0 0;
    box-shadow: none;
    color: #3dbf5a
}

.btnn.btnn--outline:hover {
    background: #39cb59;
    color: #fff
}

.btnn.btnn--blue {
    background-color: #0d4ea1;
    height: 3.28125vw;
    padding: 0 4.21875vw 0 3.229vw
}

.btnn.btnn--blue::after {
    content: '';
    border: solid #fff;
    border-width: 0 .1vw .1vw 0;
    display: inline-block;
    padding: .12vw;
    position: absolute;
    top: 50%;
    right: 3.3vw;
    transform: translateY(-50%) rotate(-45deg)
}

.btnn.btnn--blue:hover {
    background-color: #0b4389
}

.btnn.light {
    color: #191919;
    background-image: linear-gradient(to top, #ffe97e 0, #fdf7ad 100%);
    box-shadow: 0 8px 13px rgba(214, 186, 92, .49), inset 0 -4px 1px #d6ba5c
}

.btnn.light:hover {
    box-shadow: 0 8px 13px rgba(214, 186, 92, .49), inset 0 4px 1px #d6ba5c
}

.btnn.bord {
    border-radius: 5px;
    border: 1px solid #ddd;
    background: #fff;
    box-shadow: 0 0 2px #a7a7a7;
    color: #ddd
}

.btnn.bord:hover {
    box-shadow: 0 0 20px #a7a7a7
}

.btnn.bord.bdr {
    border: 1px solid #1491d0;
    background: #fff;
    box-shadow: 0 0 2px #1491d0;
    color: #1491d0
}

.btnn.bord.bdr:hover {
    box-shadow: 0 0 20px #1491d0
}

.btnn.big {
    padding: 1.5vw 1vw
}

.btnn.min {
    padding-top: .6vw;
    padding-bottom: .6vw
}

.bubbly-button:not(:disabled) .blick {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    overflow: hidden;
    pointer-events: none
}

.bubbly-button:not(:disabled) .blick:after {
    margin-left: -30px;
    content: " ";
    width: 30px;
    height: 300px;
    background: #fff;
    -webkit-animation-delay: 50ms;
    animation-delay: 50ms;
    position: absolute;
    left: -40px;
    top: -150px;
    top-animation-timing-function: ease-in-out;
    transition: all .1s;
    -webkit-animation-name: slideme;
    animation-name: slideme;
    -webkit-animation-duration: 3.5s;
    animation-duration: 3.5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    transform: rotate(45deg)
}

.bubbly-button:hover .btnn-img {
    transform: translateY(5px)
}

.btnn-cent {
    display: flex !important;
    align-items: center;
    justify-content: center
}

.btnn-img {
    width: 1.5vw;
    height: 1.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .4s ease
}

.burger {
    width: 3.7rem;
    height: 4rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
    margin-top: .3rem
}

.burger span {
    display: block;
    width: 65%;
    height: 1px;
    border-radius: 4px;
    position: relative;
    background-color: #f7844a
}

.burger span:after,
.burger span:before {
    content: '';
    position: absolute;
    display: block;
    width: 150%;
    height: 1px;
    right: 0;
    background-color: #f7844a;
    border-radius: 4px
}

.burger span:before {
    top: -1rem
}

.burger span:after {
    bottom: -1rem
}

.burger__wrap {
    text-transform: uppercase;
    color: #d7d7d7;
    display: flex;
    align-items: center;
    font-weight: 500;
    cursor: pointer;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    transition: all .4s;
    display: none;
    width: 0
}

.burger__wrap:hover {
    color: #f7844a
}

.link {
    transition: all .4s;
    position: relative;
    display: inline-flex;
    align-items: center;
    letter-spacing: .7px
}

.link--arrow:hover svg {
    transform: translateX(10%)
}

.link--arrow:hover svg path {
    fill: #e5cd9c
}

.link--arrow svg {
    width: 2.292vw;
    margin-left: .833vw;
    transition: .3s
}

.link--arrow svg path {
    transition: .3s
}

.link--underline {
    padding-bottom: .3125vw
}

.link--underline::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    border-bottom: 1px dotted #39cb59;
    transition: all .4s
}

.link--underline:hover {
    color: #39cb59
}

.link:not(.link--underline):hover {
    color: #9dec72
}

.link.link--colored {
    color: #6cb644
}

.link.link--colored::before {
    border-color: #6cb644
}

input:-ms-input-placeholder {
    color: #282728
}

input::-moz-placeholder {
    color: #282728
}

input::placeholder {
    color: #282728
}

textarea:-ms-input-placeholder {
    color: #282728
}

textarea::-moz-placeholder {
    color: #282728
}

textarea::placeholder {
    color: #282728
}

.inp-min {
    width: 30.5%
}

.inp-md {
    width: 45%
}

.inp-big {
    width: 100%
}

.area {
    padding: 1vw 1vw
}

.arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 4vw;
    height: 4vw;
    z-index: 18;
    transition: all .4s;
    cursor: pointer;
    border: none;
    background: 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .7vw
}

.arrows.t2 {
    width: 5vw;
    height: 5vw
}

.arrows.t4 {
    width: 3.5vw;
    height: 3.5vw
}

.arrows.t6 {
    box-shadow: 0 5px 54px rgba(0, 0, 0, .5);
    background-color: #fff;
    border-radius: 100%;
    filter: grayscale(1)
}

.arrows:hover {
    opacity: .7;
    transform: translateY(-50%) scale(1.1)
}

.arrows:hover.t6 {
    filter: grayscale(0);
    opacity: 1
}

.slidePrev {
    left: 3.5rem
}

.slidePrev.t2 {
    left: -2.5vw
}

.slidePrev.t4 {
    left: -1.1vw
}

.slidePrev.t3 {
    left: 50%;
    top: 0;
    transform: translateX(-50%)
}

.slidePrev.t3:hover {
    opacity: .7;
    transform: translateX(-50%) scale(1.1)
}

.slideNext {
    right: 3.5rem
}

.slideNext.t2 {
    right: -2.5vw
}

.slideNext.t4 {
    right: -1.1vw
}

.slideNext.t3 {
    left: 50%;
    bottom: -1vw;
    top: auto;
    right: auto;
    transform: translateX(-50%)
}

.slideNext.t3:hover {
    opacity: .7;
    transform: translateX(-50%) scale(1.1)
}

.check-box {
    cursor: pointer;
    display: block
}

.check-line {
    display: flex;
    align-items: center
}

.check-label {
    width: 1.1vw;
    height: 1.1vw;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .2vw;
    position: relative;
    flex-shrink: 0;
    margin-right: .5vw;
    box-shadow: inset 0 0 10px rgba(140, 140, 140, .04);
    border-radius: 2px;
    border: 1px solid #d1d1d1;
    background-color: #fff
}

.check-label.v2 {
    border-radius: 100%;
    box-shadow: 0 5px 10px rgba(43, 43, 51, .1);
    border: 1px solid #e8e8e8;
    background-color: #fff;
    width: 1.5vw;
    height: 1.5vw;
    padding: .2vw
}

.check-label.v2 .check-label-act {
    width: 1vw;
    height: 1vw;
    border-radius: 100%;
    padding: .2vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4ca352
}

.check-label-act {
    transition: all .4s;
    transform: scale(0)
}

.check-label.min {
    width: 1vw;
    height: 1vw;
    border-radius: 2px
}

.block-imp-bf {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    border: 1px solid #ddd;
    transition: all .4s
}

.block-imp {
    padding: 1.3vw 1.5vw;
    position: relative;
    margin-right: .7vw
}

.rhide {
    display: none
}

.rhide:checked~span .check-label-act {
    transform: scale(1)
}

.rhide:checked~span .check-label.min {
    background-color: #5bd273
}

.rhide:checked~.block-imp-bf {
    background-color: #4ca352;
    border: 1px solid #4ca352
}

.rhide:checked~.tsm13 {
    color: #fff;
    position: relative
}

.rhide:checked~.times-block div.fancy-select div.trigger {
    color: #fff !important
}

.wac {
    color: #3fbf3f !important
}

.vic {
    color: #8173c7 !important
}

.tgc {
    color: #5fcff2 !important
}

.emc {
    color: #fbc855 !important
}

.vf {
    background-color: #fff;
    padding: 2.6vw 2vw;
    box-shadow: 0 0 40px rgba(133, 138, 160, .1);
    transform: skewY(-2deg);
    z-index: 4;
    position: relative
}

.vf:before {
    position: absolute;
    content: '';
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #d1d5e4;
    width: calc(100% - 14px);
    height: calc(100% - 14px);
    z-index: 1
}

.vf-wrap {
    transform: skewY(2deg);
    position: relative;
    z-index: 5
}

.line-tg {
    border-bottom: 1px solid #dcbf8b;
    width: 40%
}

.line-tg.min {
    margin-left: auto;
    margin-right: auto;
    width: 7vw;
    border-bottom: 1px solid #cccdd4
}

.pre {
    position: relative;
    z-index: 4
}

.blc {
    color: #303030 !important
}

.lcb {
    color: #303030;
    transition: all .4s
}

.lcb:hover {
    color: #e30613
}

.aic {
    align-items: center
}

.text-rotate {
    position: absolute;
    left: 0;
    top: 0;
    width: 8vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 71
}

.text-rotate.right {
    left: auto;
    right: 0
}

.text-rotate-item {
    position: relative;
    transform: rotate(-90deg);
    white-space: nowrap;
    display: inline-block;
    color: rgba(140, 140, 140, .5)
}

.text-rotate-item:before {
    content: '';
    position: absolute;
    left: -3.4vw;
    top: 50%;
    transform: translateY(-50%);
    border-top: 1px solid #d1d1d1;
    width: 3vw;
    height: 1px
}

.text-rotate-item:after {
    content: '';
    position: absolute;
    right: -3.4vw;
    top: 50%;
    transform: translateY(-50%);
    border-top: 1px solid #d1d1d1;
    width: 3vw;
    height: 1px
}

.text-rotate-item.wh {
    color: #ffff
}

.line {
    width: 3vw;
    height: 2px;
    background-color: #1a1a1a;
    background-image: linear-gradient(to right, #f7844a 0, #ffad2f 100%)
}

.line.cen {
    margin-left: auto;
    margin-right: auto
}

.line.gr {
    background-color: #333
}

.line.gr2 {
    background-color: #9d9d9d
}

.line-big {
    width: 8vw
}

.line.big2 {
    width: 17vw
}

.tal {
    text-align: left
}

.tb {
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff
}

.tgr {
    background-image: linear-gradient(to right, #f7844a 0, #ffad2f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.poin {
    pointer-events: none;
    position: relative;
    z-index: 43
}

.tlt-mod {
    position: relative
}

.tlt-mod:before {
    content: '';
    position: absolute;
    left: -4.3vw;
    width: 3.5vw;
    height: 2px;
    top: 1.3vw;
    z-index: 12;
    background-color: #1a1a1a;
    background-image: linear-gradient(to right, #f7844a 0, #ffad2f 100%)
}

.tlt-mod:after {
    content: '';
    position: absolute;
    left: -17.3vw;
    width: 13.5vw;
    height: 1px;
    top: 1.3vw;
    z-index: 9;
    background-color: rgba(255, 255, 255, .1)
}

.tlt-mod.lth:after {
    background-color: #dedede
}

.text-mod {
    position: relative
}

.text-mod:before {
    content: '';
    position: absolute;
    left: -2vw;
    width: 1.5vw;
    height: 2px;
    top: .5vw;
    background-color: #1a1a1a;
    background-image: linear-gradient(to right, #f7844a 0, #ffad2f 100%);
    width: 0
}

.text-mod:after {
    content: '';
    position: absolute;
    left: -2vw;
    width: 1.5vw;
    height: 2px;
    top: .5vw;
    background-color: rgba(255, 255, 255, .2)
}

.jcsb {
    justify-content: space-between
}

.posa {
    position: absolute
}

.fdc {
    flex-direction: column
}

.mobs {
    display: none
}

@media (max-width:767px) {
    html {
        overflow-x: hidden
    }

    .title-lg {
        font-size: 3.2rem
    }

    .title-mslg {
        font-size: 5.5rem;
        letter-spacing: .2rem
    }

    .title-elg {
        font-size: 6.6rem;
        letter-spacing: .2rem
    }

    .title {
        font-size: 2.6rem
    }

    .tgg {
        padding: .1rem .4rem;
        margin: .2rem 0
    }

    .t-min {
        font-size: 1.95rem
    }

    .t-ss {
        font-size: 1.7rem
    }

    .t-min2 {
        font-size: 1.9rem
    }

    .text-tg {
        margin-left: 1.5rem
    }

    .text-md {
        font-size: 1.4rem
    }

    .text {
        font-size: 1.2rem
    }

    .small-text {
        font-size: 1.1rem
    }

    .tsm8 {
        font-size: .8rem
    }

    .tsm {
        font-size: .9rem
    }

    .tsm10 {
        font-size: 1rem
    }

    .tsm11 {
        font-size: 1rem
    }

    .tsm12 {
        font-size: 1rem
    }

    .tsm13 {
        font-size: 1.1rem
    }

    .mr1 {
        margin-right: 1rem
    }

    .tnum {
        font-size: 2.9rem
    }

    .text24 {
        font-size: 1.4rem
    }

    .text23 {
        font-size: 1.3rem
    }

    .text21 {
        font-size: 1.3rem
    }

    .container {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 15px
    }

    .container-min {
        max-width: 90vw;
        margin: 0 auto
    }

    .container-md {
        max-width: 90vw;
        margin: 0 auto
    }

    .container-mm {
        max-width: 90vw;
        margin: 0 auto
    }

    .mlg {
        margin-bottom: 4.5rem
    }

    .msm {
        margin-bottom: 2.4rem
    }

    .mb {
        margin-bottom: 1.5rem
    }

    .mbm {
        margin-bottom: .7rem
    }

    .mbs {
        margin-bottom: .41rem
    }

    .section {
        padding: 6rem 0
    }

    .mrm {
        margin-right: .5rem
    }

    .mr {
        margin-right: 1rem
    }

    .mrs {
        margin-right: 1.5rem
    }
}

/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

h1 {
    font-size: 2em;
    margin: 0
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

pre {
    font-family: monospace, monospace;
    font-size: 1em
}

a {
    background-color: transparent
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

b,
strong {
    font-weight: bolder
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

img {
    border-style: none
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button,
input {
    overflow: visible
}

button,
select {
    text-transform: none
}

[type=button],
[type=reset],
[type=submit],
button {
    -webkit-appearance: button
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
    border-style: none;
    padding: 0
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
    outline: 1px dotted ButtonText
}

fieldset {
    padding: .35em .75em .625em
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal
}

progress {
    vertical-align: baseline
}

textarea {
    overflow: auto
}

[type=checkbox],
[type=radio] {
    box-sizing: border-box;
    padding: 0
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

details {
    display: block
}

summary {
    display: list-item
}

template {
    display: none
}

[hidden] {
    display: none
}

div.fancy-select {
    position: relative;
    font-size: .9375vw;
    color: #fff;
    cursor: pointer;
    width: 100%;
    z-index: 99
}

div.fancy-select.disabled {
    opacity: .5
}

div.fancy-select div.trigger {
    text-align: left;
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 100px;
    padding-left: 1.823vw;
    background-color: #f4f4f4;
    border: none;
    color: #282728;
    font-size: .9375vw;
    height: 3.646vw;
    width: 100%;
    transition: all 240ms ease-out
}

div.fancy-select div.trigger:after {
    content: '';
    border: solid #3974f4;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: .15vw;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    right: 1.5vw;
    transition: .3s;
    margin-top: -3px;
    z-index: 9
}

div.fancy-select div.trigger.open {
    box-shadow: none
}

div.fancy-select div.trigger.open:after {
    transform: rotate(0)
}

div.fancy-select ul.options {
    padding-left: 0;
    list-style: none;
    margin: 0;
    margin-top: -2px;
    position: absolute;
    left: 0;
    visibility: hidden;
    opacity: 0;
    z-index: 50;
    overflow: auto;
    background-color: #f4f4f4;
    width: 100%;
    max-height: 30vw;
    overflow-y: auto;
    overflow-x: hidden;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    transition: opacity .3s ease-out, top .3s ease-out, visibility .3s ease-out;
    -webkit-transition: opacity .3s ease-out, top .3s ease-out, visibility .3s ease-out;
    -moz-transition: opacity .3s ease-out, top .3s ease-out, visibility .3s ease-out;
    -ms-transition: opacity .3s ease-out, top .3s ease-out, visibility .3s ease-out;
    -o-transition: opacity .3s ease-out, top .3s ease-out, visibility .3s ease-out
}

div.fancy-select ul.options.open {
    visibility: visible;
    opacity: 1;
    border: 1px solid rgba(0, 0, 0, .07);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding-top: 1.5vw;
    z-index: -1;
    top: 60%;
    transition: opacity .3s ease-out, top .3s ease-out;
    -webkit-transition: opacity .3s ease-out, top .3s ease-out;
    -moz-transition: opacity .3s ease-out, top .3s ease-out;
    -ms-transition: opacity .3s ease-out, top .3s ease-out;
    -o-transition: opacity .3s ease-out, top .3s ease-out
}

div.fancy-select ul.options.overflowing {
    top: 100%;
    transition: opacity .3s ease-out, bottom .3s ease-out, visibility .3s ease-out;
    -webkit-transition: opacity .3s ease-out, bottom .3s ease-out, visibility .3s ease-out;
    -moz-transition: opacity .3s ease-out, bottom .3s ease-out, visibility .3s ease-out;
    -ms-transition: opacity .3s ease-out, bottom .3s ease-out, visibility .3s ease-out;
    -o-transition: opacity .3s ease-out, bottom .3s ease-out, visibility .3s ease-out
}

div.fancy-select ul.options.overflowing.open {
    top: 100%;
    transition: opacity .3s ease-out, bottom .3s ease-out;
    -webkit-transition: opacity .3s ease-out, bottom .3s ease-out;
    -moz-transition: opacity .3s ease-out, bottom .3s ease-out;
    -ms-transition: opacity .3s ease-out, bottom .3s ease-out;
    -o-transition: opacity .3s ease-out, bottom .3s ease-out
}

div.fancy-select ul.options li {
    text-align: left;
    padding: 1.1vw;
    color: #9699a9;
    cursor: pointer;
    white-space: nowrap;
    margin: 0;
    transition: all 150ms ease-out;
    -webkit-transition: all 150ms ease-out;
    -moz-transition: all 150ms ease-out;
    -ms-transition: all 150ms ease-out;
    -o-transition: all 150ms ease-out
}

div.fancy-select ul.options li:before {
    display: none
}

div.fancy-select ul.options li.selected {
    color: #e03d1c
}

div.fancy-select ul.options li.hover {
    color: #e03d1c;
    cursor: pointer
}

.to_top {
    position: fixed;
    right: 2.5vw;
    bottom: 1.5vw;
    box-shadow: 0 0 84px rgba(0, 108, 163, .41);
    background-color: #dcbf8b;
    width: 3.5vw;
    height: 3.5vw;
    border-radius: 100%;
    padding: .7vw;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 189;
    opacity: 0;
    transform: scale(0);
    transition: all .4s
}

.to_top:before {
    content: '';
    position: relative;
    border: .8vw solid transparent;
    border-bottom: 1vw solid #fff;
    transform: translateY(-25%);
    transition: all .4s
}

.to_top.act {
    opacity: 1;
    transform: scale(1)
}

.to_top:hover:before {
    transform: translateY(-37%)
}

.btnn.btnn--light {
    background: rgba(217, 217, 217, .25);
    border: 1px solid rgba(255, 255, 255, .25)
}

.btnn.btnn--light:hover {
    background: #6cb644;
    border-color: #6cb644
}

.btnn.btnn--doc {
    position: relative;
    padding: 1.458vw 1.458vw 1.458vw 4.0625vw
}

.btnn.btnn--doc img {
    position: absolute;
    bottom: 0;
    left: -.9375vw;
    max-height: unset;
    width: 5.625vw
}

.btnn.btnn--arrow svg {
    width: 1.146vw;
    margin-left: .729vw
}

.lh114 {
    line-height: 114%
}

.lh120 {
    line-height: 120%
}

.lh130 {
    line-height: 130%
}

.lh140 {
    line-height: 140%
}

.lh142 {
    line-height: 142%
}

.lh150 {
    line-height: 150%
}

.lh155 {
    line-height: 155%
}

.lh265 {
    line-height: 265%
}

.lh300 {
    line-height: 300%
}

.ls02 {
    letter-spacing: .2em
}

.ls015 {
    letter-spacing: .15em
}

.online {
    position: relative;
    padding-left: .625vw
}

.online::before {
    content: '';
    border-radius: 50%;
    width: .365vw;
    height: .365vw;
    background-color: #52b060;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    -webkit-animation: online 2s infinite;
    animation: online 2s infinite
}

.socials {
    display: flex;
    gap: .3125vw
}

.socials-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.604vw;
    height: 2.604vw;
    border-radius: 50%;
    transition: .3s
}

.socials-item:hover {
    transform: scale(1.05)
}

.socials-item.is-viber {
    background-color: #7460f3
}

.socials-item.is-viber img {
    width: 1.042vw
}

.socials-item.is-whatsapp {
    background-color: #25d266
}

.socials-item.is-whatsapp img {
    width: 1.042vw
}

.socials-item.is-telegram {
    background-color: #00a2f2
}

.socials-item.is-telegram img {
    width: .99vw
}

.phone {
    display: flex;
    align-items: center
}

.phone img {
    width: .885vw;
    margin-right: .521vw;
    margin-bottom: .2vw
}

.colored {
    color: #ad8a06
}

.mbl {
    margin-bottom: 2.708vw
}

.area,
.input {
    height: 5.208vw;
    padding-left: 2.396vw;
    background: #fff;
    border-radius: 500px;
    width: 100%;
    position: relative;
    border: 0
}

.fz8 {
    font-size: .417vw
}

.fz10 {
    font-size: .521vw
}

.fz11 {
    font-size: .573vw
}

.fz12 {
    font-size: .625vw
}

.fz13 {
    font-size: .677vw
}

.fz14 {
    font-size: .729vw
}

.fz15 {
    font-size: .78125vw
}

.fz16 {
    font-size: .833vw
}

.fz17 {
    font-size: .885vw
}

.fz18 {
    font-size: .9375vw
}

.fz20 {
    font-size: 1.042vw
}

.fz22 {
    font-size: 1.146vw
}

.fz24 {
    font-size: 1.25vw
}

.fz25 {
    font-size: 1.302vw
}

.fz27 {
    font-size: 1.40625vw
}

.fz30 {
    font-size: 1.5625vw
}

.fz32 {
    font-size: 1.667vw
}

.fz36 {
    font-size: 1.875vw
}

.fz40 {
    font-size: 2.083vw
}

.fz46 {
    font-size: 2.396vw
}

.fz48 {
    font-size: 2.5vw
}

.fz50 {
    font-size: 2.604vw
}

.fz55 {
    font-size: 2.865vw
}

.fz60 {
    font-size: 3.125vw
}

.fz64 {
    font-size: 3.333vw
}

.slick-disabled {
    opacity: 0;
}

.fz70 {
    font-size: 3.646vw
}

.fz75 {
    font-size: 3.90625vw
}

.fz100 {
    font-size: 5.208vw
}

.fz115 {
    font-size: 5.99vw
}

@-webkit-keyframes online {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes online {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes opacity {
    0% {
        opacity: 0
    }

    50% {
        opacity: .5
    }

    100% {
        opacity: 1
    }
}

@keyframes opacity {
    0% {
        opacity: 0
    }

    50% {
        opacity: .5
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes animPulse {
    0% {
        opacity: 0;
        transform: scale(1)
    }

    50% {
        opacity: .5
    }

    100% {
        opacity: 0;
        transform: scale(1.8)
    }
}

@keyframes animPulse {
    0% {
        opacity: 0;
        transform: scale(1)
    }

    50% {
        opacity: .5
    }

    100% {
        opacity: 0;
        transform: scale(1.8)
    }
}

@-webkit-keyframes scroll {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-25%)
    }

    100% {
        transform: translateY(0)
    }
}

@keyframes scroll {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-25%)
    }

    100% {
        transform: translateY(0)
    }
}

@-webkit-keyframes loadingBg {
    0% {
        background-position: 2%
    }

    100% {
        background-position: 100%
    }
}

@keyframes loadingBg {
    0% {
        background-position: 2%
    }

    100% {
        background-position: 100%
    }
}

.input.fz14 {
    font-size: .833vw
}

@media (max-width:767px) {
    .input.fz14 {
        font-size: 1.1rem
    }

    .container-big {
        max-width: 90vw;
        margin: 0 auto
    }

    .fz10 {
        font-size: 1rem
    }

    .fz11 {
        font-size: 1.1rem
    }

    .fz12 {
        font-size: 1.2rem
    }

    .fz13 {
        font-size: 1.2rem
    }

    .fz14 {
        font-size: 1.2rem
    }

    .fz15 {
        font-size: 1.2rem
    }

    .fz16 {
        font-size: 1.2rem
    }

    .fz17 {
        font-size: 1.3rem
    }

    .fz18 {
        font-size: 1.8rem
    }

    .fz20 {
        font-size: 1.6rem
    }

    .fz22 {
        font-size: 1.8rem
    }

    .fz24 {
        font-size: 1.8rem
    }

    .fz25 {
        font-size: 2rem
    }

    .fz27 {
        font-size: 1.40625rem
    }

    .fz30 {
        font-size: 1.6rem
    }

    .fz36 {
        font-size: 2rem
    }

    .fz40 {
        font-size: 2.083rem
    }

    .fz46 {
        font-size: 2.396rem
    }

    .fz48 {
        font-size: 2.5rem
    }

    .fz55 {
        font-size: 2.565rem
    }

    .fz60 {
        font-size: 2rem
    }

    .fz60 br {
        display: none
    }

    .fz70 {
        font-size: 3.2rem
    }

    .fz75 {
        font-size: 3.5rem
    }

    .fz100 {
        font-size: 3.5rem
    }

    .fz8 {
        font-size: 1rem
    }

    .online {
        padding-left: 1.198rem
    }

    .online::before {
        width: .417rem;
        height: .417rem;
        top: .3rem
    }

    .socials {
        gap: .625rem
    }

    .socials-item {
        width: 3rem;
        height: 3rem
    }

    .socials-item.is-whatsapp img {
        width: 1.2rem
    }

    .socials-item.is-telegram img {
        width: 1.2rem
    }

    .phone img {
        width: .677rem;
        margin-right: .521rem;
        margin-bottom: .3rem
    }

    .mbl {
        margin-bottom: 2.708rem
    }

    .area,
    .input {
        padding: 1.5625rem 2.604rem;
        line-height: 1.042rem
    }

    .btnn {
        padding: 2.135rem 2.396rem
    }

    .btnn--arrows {
        gap: 1rem
    }

    .btnn.btnn--pdf .btnn-logo {
        margin-right: .833rem
    }

    .btnn.btnn--doc {
        padding: 2.9rem 5.4rem 2.9rem 6.7rem
    }

    .btnn.btnn--doc img {
        left: 1.8rem;
        bottom: unset;
        top: 50%;
        transform: translateY(-50%);
        width: 4.9rem
    }
}

.header {
    color: #fff
}

.header__inner {
    padding: 1.198vw 0;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo {
    display: flex;
    align-items: center
}

.logo__img {
    display: flex;
    width: 12.5vw;
    margin-right: 2.708vw
}

.header-item.header-item--socials {
    display: flex;
    flex-direction: row;
    align-items: center
}

.header-item.header-item--socials .header-item__img {
    display: flex;
    width: 3.385vw;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1.25vw
}

.header-item.header-item--socials .fz16 {
    margin-right: .78125vw
}

.social {
    position: relative;
    z-index: 1
}

.social:hover {
    z-index: 9
}

.social:hover .social__content {
    width: 5.99vw;
    opacity: 1
}

.social__img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.604vw;
    height: 2.604vw;
    border-radius: 50%;
    position: relative
}

.social__img img {
    width: 1.146vw;
    position: relative;
    z-index: 2
}

.social__content {
    display: flex;
    align-items: center;
    padding-left: 2.1875vw;
    width: 0;
    transition: .3s;
    border-radius: 100px;
    color: #fff;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    height: 100%;
    opacity: 0;
    pointer-events: none
}

.social--telegram .social__img {
    background: #05a0eb
}

.social--telegram .social__content {
    background: #05a0eb
}

.social--whatsapp .social__img {
    background: #12c868
}

.social--whatsapp .social__content {
    background: #12c868
}

.header-item {
    display: flex;
    flex-direction: column;
    align-items: center
}

.mob {
    display: none
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: .521vw
}

.nav__inner a {
    color: #fff;
    transition: .3s
}

.nav__inner a:hover {
    color: #9dec72
}

@media (max-width:767px) {
    .header__inner {
        padding: 1.198rem 0
    }

    .desk {
        display: none !important
    }

    .logo__img {
        width: 7.5rem;
        margin-right: 0
    }

    .logo p {
        display: none
    }

    .header-item.header-item--socials .header-item__img {
        width: 3.385rem;
        margin-right: 1.25rem
    }

    .header-item.header-item--socials .fz16 {
        margin-right: .78125rem
    }

    .social__img {
        width: 2.1rem;
        height: 2.1rem
    }

    .social__img img {
        width: .9rem
    }

    .social__content {
        padding-left: 2.1875rem
    }

    .header-item .socials {
        margin-bottom: .5rem
    }

    .header-item .fz24 {
        font-size: 1.1rem;
        font-weight: 700
    }

    .header-item .link--underline {
        font-size: .8rem
    }

    .nav__inner {
        padding-top: .521rem
    }

    .mob {
        display: flex
    }

    .nav {
        z-index: 998;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        display: flex;
        padding-top: 2.2rem;
        align-items: center;
        flex-direction: column;
        background: #090909;
        transform: translateX(-100%);
        transition: all .4s ease-in
    }

    .nav.active {
        transform: translateX(0)
    }

    .nav-top {
        width: 100%;
        padding: 0 2.2rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 4rem
    }

    .nav-top .logo__img {
        width: 5.6rem
    }

    .nav-top .header-item.header-item--socials .header-item__img {
        width: 2.4rem;
        margin-right: .6rem
    }

    .nav-top .header-item.header-item--socials .fz16 {
        font-size: .8rem;
        margin-right: .8rem
    }

    .social__content {
        display: none
    }

    .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 4rem
    }

    .nav-item .online {
        font-size: 1.2rem;
        margin-bottom: 1rem
    }

    .nav-item .online::before {
        width: .6rem;
        height: .6rem;
        top: .7rem
    }

    .nav-item .fz24 {
        font-size: 1.6rem
    }

    .nav__inner {
        flex-direction: column;
        align-items: center;
        margin-bottom: 4rem
    }

    .nav__item {
        margin-bottom: 2.4rem
    }

    .nav__item:last-child {
        margin-bottom: 0
    }
}


























/* Filter Styles */
.portfolio-filters {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
}

.filters-container {
    max-width: 1200px;
    margin: 0 auto;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    align-items: end;
}

.filter-row:last-child {
    margin-bottom: 0;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group-wide {
    min-width: 250px;
}

.filter-group-actions {
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: flex-end;
}

.filter-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.filter-select-wrapper {
    position: relative;
}

.filter-select {
    width: 100%;
    height: 50px;
    padding: 0 20px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    background: #fff;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px 12px;
}

.filter-select:hover {
    border-color: #6DB746;
}

.filter-select:focus {
    outline: none;
    border-color: #6DB746;
    box-shadow: 0 0 0 3px rgba(109, 183, 70, 0.1);
}

.filter-select:disabled {
    background-color: #f8f9fa;
    color: #6c757d;
    cursor: not-allowed;
    border-color: #e8e8e8;
}

/* Price and Area Filters */
.price-filter,
.area-filter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-input,
.area-input {
    flex: 1;
    height: 50px;
    max-width: 134px;
    padding: 0 15px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
}

.price-input:focus,
.area-input:focus {
    outline: none;
    border-color: #6DB746;
    box-shadow: 0 0 0 3px rgba(109, 183, 70, 0.1);
}

.currency-select {
    width: 80px;
    height: 50px;
    padding: 0 10px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 14px;
    color: #333;
    background: #fff;
    cursor: pointer;
    appearance: none;
}

.price-separator,
.area-separator {
    color: #666;
    font-weight: 500;
}

/* Filter Buttons */
.filter-btn {
    height: 50px;
    padding: 0 25px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
}

.filter-btn--apply {
    background: #6DB746;
    color: #fff;
}

.filter-btn--apply:hover {
    background: #5ca83a;
    transform: translateY(-2px);
}

.filter-btn--reset {
    background: #f8f9fa;
    color: #666;
    border: 2px solid #e8e8e8;
}

.filter-btn--reset:hover {
    background: #e9ecef;
    border-color: #dee2e6;
}

/* Results Section */
.projects-results {
    margin-bottom: 30px;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.results-count {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.results-count span {
    color: #6DB746;
}

/* Loading */
.projects-loading {
    text-align: center;
    padding: 60px 0;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #6DB746;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

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