@media screen and (min-aspect-ratio: 13/9) {
  .popupLandscape {
    display: block !important;
    float: left;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
  }
  .popupLandscape .popup {
    background: rgba(0, 0, 0, 0.95);
  }
}
@media screen and (min-width: 0px) and (max-width: 1000px) {
  .popupLandscape {
    display: none;
  }
  .noPhone {
    display: none !important;
    visibility: hidden !important;
  }
  .hamburger {
    width: calc(36vw / var(--setSize--mobile));
    height: calc(24vw / var(--setSize--mobile));
    margin: 0px 0px 0px calc(30vw / var(--setSize--mobile));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 14;
  }
  .hamburger span {
    display: block;
    width: calc(36vw / var(--setSize--mobile));
    height: calc(2vw / var(--setSize--mobile));
    background-color: var(--default--color--1);
    border-radius: calc(2vw / var(--setSize--mobile));
    transition: all 0.3s ease-in-out;
  }
  .hamburger.active span:nth-child(1) {
    transform: translateY(calc(11vw / var(--setSize--mobile))) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(calc(-20vw / var(--setSize--mobile)));
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(calc(-11vw / var(--setSize--mobile))) rotate(-45deg);
  }
  .wrapperMargin {
    float: left;
    width: 0;
    height: auto;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
  }
  .wrapper {
    float: left;
    width: 100%;
    height: auto;
    position: relative;
    top: calc(0vw / var(--setSize--mobile));
    left: calc(0vw / var(--setSize--mobile));
    margin: 0px 0px 0px 0px;
    padding: calc(20vw / var(--setSize--mobile)) calc(20vw / var(--setSize--mobile));
    background: rgba(0, 0, 0, 0);
    z-index: 30;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
  }
  .wrapper__logo {
    float: left;
    width: calc(260vw / var(--setSize--mobile));
    position: relative;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
  }
  .wrapper__logo--img {
    float: left;
    width: 100%;
    position: relative;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
  }
  .wrapper__menu {
    display: none;
    float: left;
    width: 100%;
    position: relative;
    margin: calc(20vw / var(--setSize--mobile)) calc(0vw / var(--setSize--mobile)) 0px 0px;
    padding: 0px 0px 0px 0px;
    list-style: none;
  }
  .wrapper__menu.wrapper--active {
    display: block;
  }
  .wrapper__menu--name {
    float: left;
    width: 100%;
    position: relative;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
  }
  .wrapper__menu--name.wrapper__menu--active .wrapper__menu--href {
    color: #fff;
  }
  .wrapper__menu--name.wrapper__menu--active .wrapper__menu--href:before {
    height: 100%;
  }
  .wrapper__menu--name:hover .wrapper__menu--href {
    color: #fff;
  }
  .wrapper__menu--name:hover .wrapper__menu--href:before {
    height: 100%;
  }
  .wrapper__menu--name:last-child .wrapper__menu--hr {
    display: none;
    visibility: hidden;
  }
  .wrapper__menu--href {
    float: left;
    width: 100%;
    position: relative;
    margin: 0px 0px 0px 0px;
    padding: calc(15vw / var(--setSize--mobile)) calc(18vw / var(--setSize--mobile)) calc(15vw / var(--setSize--mobile)) calc(18vw / var(--setSize--mobile));
    color: var(--default--color--1);
    font-size: calc(22vw / var(--setSize--mobile));
    font-weight: 500;
    line-height: calc(32vw / var(--setSize--mobile));
    text-transform: uppercase;
    text-decoration: none;
  }
  .wrapper__menu--href:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0%;
    width: 100%;
    height: calc(0vw / var(--setSize--mobile));
    background-color: var(--default--color--1);
    transition: all 0.2s ease-in-out;
    z-index: 2;
  }
  .wrapper__menu--href span {
    z-index: 6;
  }
  .wrapper__menu--hr {
    float: left;
    position: relative;
    margin: 0px 0px 0px 0px;
    padding: 0px calc(20vw / var(--setSize--mobile)) 0px calc(20vw / var(--setSize--mobile));
  }
  .wrapper__menu .subMenu {
    float: left;
    width: calc(250vw / var(--setSize--mobile));
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    position: absolute;
    top: auto;
    left: calc(0vw / var(--setSize--mobile));
    background: rgba(255, 255, 255, 0.8);
    z-index: 5;
    display: none;
    opacity: 0;
    border-bottom-left-radius: calc(0vw / var(--setSize--mobile));
    border-bottom-right-radius: calc(0vw / var(--setSize--mobile));
  }
  .wrapper__menu .subMenu__href:nth-child(1):before {
    content: " ";
    float: left;
    width: calc(11vw / var(--setSize--mobile));
    height: calc(11vw / var(--setSize--mobile));
    position: absolute;
    top: calc(-11vw / var(--setSize--mobile));
    left: 0;
    background: rgba(255, 255, 255, 0.8);
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
  }
  .wrapper__menu .wrapper__menu--name:hover .subMenu {
    display: block;
    opacity: 1;
  }
  .wrapper__menu .wrapper__menu--name:hover .wrapper__menu--href:after, .wrapper__menu .wrapper__menu--name.wrapper__menu--active .wrapper__menu--href:after {
    opacity: 1;
  }
  .wrapper__menu .subMenu__href {
    float: left;
    width: 100%;
    position: relative;
    margin: 0px 0px 0px 0px;
    padding: calc(15vw / var(--setSize--mobile)) calc(15vw / var(--setSize--mobile)) calc(15vw / var(--setSize--mobile)) calc(30vw / var(--setSize--mobile));
    color: #393939;
    font-size: calc(16vw / var(--setSize--mobile));
    font-weight: 400;
    line-height: calc(16vw / var(--setSize--mobile));
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .wrapper__menu .subMenu__href:last-child {
    border-bottom: 0;
  }
  .wrapper__menu .subMenu__href--span {
    width: calc(100% - 1.4vw);
  }
  .wrapper__menu .subMenu__href:hover:before, .wrapper__menu .subMenu__href.subMenu__active:before {
    background-color: var(--default--color--2);
  }
  .wrapper__menu .subMenu__href:hover, .wrapper__menu .subMenu__href.subMenu__active {
    color: #fff;
    background: var(--default--color--2);
  }
  .wrapper__other {
    float: left;
    height: calc(80vw / var(--setSize--mobile));
    position: fixed;
    right: 0;
    bottom: 0;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
  }
  .wrapper__phone {
    width: calc(80vw / var(--setSize--mobile));
    height: calc(80vw / var(--setSize--mobile));
    background: var(--default--color--1);
  }
  .wrapper__phone:hover {
    background: var(--default--color--2);
  }
  .wrapper__phone--img {
    width: calc(38vw / var(--setSize--mobile));
  }
  .wrapper.smallWrapper {
    height: auto;
  }
  .slide {
    float: left;
    width: 100%;
    height: 100%;
    position: relative;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
  }
  .slide__carousel {
    float: left;
    width: 100%;
    height: 100%;
    position: relative;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
  }
  .slide__slides {
    float: left;
    width: 100%;
    height: 100%;
    position: relative;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
  }
  .slide__slides:before {
    content: "";
    float: left;
    width: 100%;
    height: 40%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
    background-image: linear-gradient(0deg, rgba(89, 131, 252, 0) 0%, rgba(0, 0, 0, 0) 100%);
  }
  .slide__slides--inside {
    float: left;
    width: 100%;
    position: relative;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    z-index: 6;
  }
  .slide__slides--text {
    float: left;
    width: 100%;
    position: relative;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    color: #fff;
    font-size: calc(40vw / var(--setSize--mobile));
    font-weight: 400;
    line-height: calc(50vw / var(--setSize--mobile));
  }
  .slide__slides--text:has(p) h1, .slide__slides--text:has(p) h2, .slide__slides--text:has(p) strong {
    margin: 0px 0px calc(0vw / var(--setSize--mobile)) 0px;
  }
  .slide__slides--text h1, .slide__slides--text h2, .slide__slides--text strong {
    float: left;
    width: 100%;
    position: relative;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    font-size: calc(60vw / var(--setSize--mobile));
    font-weight: 700;
    line-height: calc(60vw / var(--setSize--mobile));
  }
  .slide__slides--text a {
    float: left;
    position: relative;
    margin: calc(40vw / var(--setSize--mobile)) 0px 0px 0px;
    padding: 0px calc(40vw / var(--setSize--mobile)) 0px calc(40vw / var(--setSize--mobile));
    color: #fff;
    font-size: calc(30vw / var(--setSize--mobile));
    line-height: calc(60vw / var(--setSize--mobile));
    font-weight: 400;
    text-decoration: none;
    border: 1px solid #fff;
  }
  .slide__slides--text a:hover {
    color: #000;
    border: 1px solid #000;
  }
  .slide__slides--img {
    float: left;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: 2;
  }
  .owl-carousel-nav--1 .owl-nav {
    float: left;
    width: 100%;
    height: calc(60vw / var(--setSize--mobile));
    margin: calc(0vw / var(--setSize--mobile)) 0px 0px 0px;
    left: 0;
    bottom: 0;
    position: absolute;
    z-index: 5;
    font-size: 0;
  }
  .owl-carousel-nav--1 .owl-nav .owl-next {
    float: left;
    width: calc(60vw / var(--setSize--mobile));
    height: calc(60vw / var(--setSize--mobile));
    position: absolute;
    top: 0;
    right: calc(0vw / var(--setSize--mobile));
    font-size: 0;
    background: var(--default--color--1) url(images/owlNav_arrowRight.svg) center no-repeat !important;
    background-size: calc(26vw / var(--setSize--mobile)) !important;
  }
  .owl-carousel-nav--1 .owl-nav .owl-prev {
    float: left;
    width: calc(60vw / var(--setSize--mobile));
    height: calc(60vw / var(--setSize--mobile));
    position: absolute;
    top: 0;
    left: calc(0vw / var(--setSize--mobile));
    font-size: 0;
    background: var(--default--color--1) url(images/owlNav_arrowLeft.svg) center no-repeat !important;
    background-size: calc(26vw / var(--setSize--mobile)) !important;
  }
  .owl-carousel-nav--1 .owl-nav .owl-next:focus, .owl-carousel-nav--1 .owl-nav .owl-prev:focus {
    outline: none;
  }
  .owl-carousel-nav--white .owl-nav .owl-next {
    background: var(--default--color--1) url(images/owlNav_arrowRightWhite.svg) center no-repeat !important;
    background-size: calc(26vw / var(--setSize--mobile)) !important;
  }
  .owl-carousel-nav--white .owl-nav .owl-prev {
    background: var(--default--color--1) url(images/owlNav_arrowLeftWhite.svg) center no-repeat !important;
    background-size: calc(26vw / var(--setSize--mobile)) !important;
  }
  .owl-carousel-dots--1 .owl-dots {
    float: left;
    width: 94%;
    left: 3%;
    bottom: calc(20vw / var(--setSize--mobile));
    position: absolute;
    z-index: 5;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    counter-reset: section;
  }
  .owl-carousel-dots--1 .owl-dots .owl-dot {
    float: left;
    width: calc(10vw / var(--setSize--mobile));
    height: calc(10vw / var(--setSize--mobile));
    position: relative;
    margin: 0px calc(5vw / var(--setSize--mobile)) 0px calc(5vw / var(--setSize--mobile));
    padding: 0px 0px 0px 0px;
    color: #3b3a3a;
    font-size: calc(10vw / var(--setSize--mobile));
    font-weight: 400;
    line-height: calc(10vw / var(--setSize--mobile));
    border: 1px solid #3b3a3a;
    border-radius: 40em;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
  }
  .owl-carousel-dots--1 .owl-dots .owl-dot::before {
    counter-increment: section;
    content: counter(section);
  }
  .owl-carousel-dots--1 .owl-dots .owl-dot:focus {
    outline: none;
  }
  .owl-carousel-dots--1 .owl-dots .active {
    float: left;
    position: relative;
    color: #000;
    border: 1px solid #fff;
    border-radius: 40em;
    background: #fff;
  }
  .video {
    float: left;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    min-width: 100%;
    height: 100%;
    min-height: 100%;
    z-index: 1;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .slide__scroll {
    float: left;
    width: calc(40vw / var(--setSize--mobile));
    height: calc(40vw / var(--setSize--mobile));
    position: absolute;
    left: 50%;
    bottom: calc(20vw / var(--setSize--mobile));
    z-index: 10;
    transform: translate(-50%);
  }
  .slide__scroll .slide__scroll--arrow {
    width: calc(15vw / var(--setSize--mobile));
  }
  .header {
    float: left;
    width: 100%;
    position: relative;
    margin: 0px 0px calc(20vw / var(--setSize--mobile)) 0px;
    padding: 0px 0px 0px 0px;
    color: var(--header--color--1);
    font-size: calc(40vw / var(--setSize--mobile));
    font-weight: 200;
    line-height: calc(50vw / var(--setSize--mobile));
    text-wrap: balance;
  }
  .header:has(+ .header--25) {
    margin: 0px 0px calc(10vw / var(--setSize--mobile)) 0px;
  }
  .header span {
    color: var(--default--color--2);
  }
  .header.header--25 {
    margin: 0px 0px calc(20vw / var(--setSize--mobile)) 0px;
    font-size: calc(20vw / var(--setSize--mobile));
    line-height: calc(25vw / var(--setSize--mobile));
  }
  .home {
    overflow: hidden;
  }
  .homeOne {
    background: #EEE8E9;
  }
  .homeOne__left {
    height: calc(300vw / var(--setSize--mobile));
  }
  .homeOne__right {
    padding: calc(80vw / var(--setSize--mobile)) calc(20vw / var(--setSize--mobile));
  }
  .homeTwo {
    background: #fff;
  }
  .homeTwo .homeOne__right {
    padding: calc(80vw / var(--setSize--mobile)) calc(20vw / var(--setSize--mobile));
  }
  .homeFour {
    padding: calc(20vw / var(--setSize--mobile)) calc(20vw / var(--setSize--mobile)) calc(80vw / var(--setSize--mobile)) calc(20vw / var(--setSize--mobile));
    background: #F6F2F4;
  }
  .homeFourListOwl {
    width: 100% !important;
  }
  .homeFourListOwl .owl-nav {
    width: 100% !important;
    height: calc(70vw / var(--setSize--mobile)) !important;
    bottom: calc(-70vw / var(--setSize--mobile));
    left: calc(0vw / var(--setSize--mobile));
  }
  .homeFourListOwl .owl-nav .owl-next {
    width: calc(100vw / var(--setSize--mobile));
    top: auto !important;
    bottom: 0;
    right: 0;
    background: #F6F2F4 url(images/owlNav_arrowRight.svg) center no-repeat !important;
    background-size: calc(40vw / var(--setSize--mobile)) !important;
  }
  .homeFourListOwl .owl-nav .owl-prev {
    width: calc(100vw / var(--setSize--mobile));
    top: auto !important;
    bottom: 0;
    right: 0;
    background: #F6F2F4 url(images/owlNav_arrowLeft.svg) center no-repeat !important;
    background-size: calc(40vw / var(--setSize--mobile)) !important;
  }
  .homeFive {
    padding: calc(80vw / var(--setSize--mobile)) calc(20vw / var(--setSize--mobile));
  }
  .homeFive__inside {
    padding: calc(80vw / var(--setSize--mobile)) calc(20vw / var(--setSize--mobile));
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  .homeFive__inside .header {
    font-size: calc(35vw / var(--setSize--mobile)) !important;
    line-height: calc(40vw / var(--setSize--mobile)) !important;
  }
  .homeFiveTableIcon .text__19 table {
    float: left;
    width: 100% !important;
    height: auto !important;
  }
  .homeFiveTableIcon .text__19 table tr, .homeFiveTableIcon .text__19 table td {
    width: auto !important;
    height: auto !important;
  }
  .homeFiveTableIcon .text__19 table:nth-child(1) img {
    width: calc(147vw / var(--setSize--mobile));
  }
  .homeFiveTableIcon .text__19 table:nth-child(2) img {
    width: calc(121vw / var(--setSize--mobile));
  }
  .homeFiveTableIcon .text__19 table:nth-child(3) img {
    width: calc(136vw / var(--setSize--mobile));
  }
  .homeFiveTableIcon .text__19 table:nth-child(4) img {
    width: calc(131vw / var(--setSize--mobile));
  }
  .homeFiveTableIcon .text__19 table tr:nth-child(1) td {
    height: calc(200vw / var(--setSize--mobile)) !important;
    padding: 0px 0px calc(0vw / var(--setSize--mobile)) 0px;
  }
  .homeFiveTableIcon .text__19 table tr:nth-child(2) td {
    vertical-align: top;
  }
  .homeSix {
    padding: calc(80vw / var(--setSize--mobile)) calc(20vw / var(--setSize--mobile));
  }
  .homeSix__inside {
    padding: calc(80vw / var(--setSize--mobile)) calc(20vw / var(--setSize--mobile));
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  .homeSix__inside .header {
    font-size: calc(25vw / var(--setSize--mobile)) !important;
    line-height: calc(30vw / var(--setSize--mobile)) !important;
    text-align: left !important;
  }
  .homeSeven {
    padding: calc(80vw / var(--setSize--mobile)) calc(20vw / var(--setSize--mobile));
  }
  .homeSeven__inside {
    padding: calc(80vw / var(--setSize--mobile)) calc(20vw / var(--setSize--mobile));
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  .homeSeven__inside .header {
    color: #fff !important;
  }
  .homeSeven__inside .header.header--25 {
    text-wrap: wrap !important;
  }
  .homeSevenTableIcon .text__19 table {
    float: left;
    width: 100% !important;
    height: auto !important;
  }
  .homeSevenTableIcon .text__19 table tr, .homeSevenTableIcon .text__19 table td {
    width: auto !important;
    height: auto !important;
  }
  .homeSevenTableIcon .text__19 table:nth-child(1) img {
    width: calc(129vw / var(--setSize--mobile));
  }
  .homeSevenTableIcon .text__19 table:nth-child(2) img {
    width: calc(121vw / var(--setSize--mobile));
  }
  .homeSevenTableIcon .text__19 table:nth-child(3) img {
    width: calc(118vw / var(--setSize--mobile));
  }
  .homeSevenTableIcon .text__19 table:nth-child(4) img {
    width: calc(87vw / var(--setSize--mobile));
  }
  .homeSevenTableIcon .text__19 table tr:nth-child(1) td {
    height: calc(200vw / var(--setSize--mobile)) !important;
    padding: 0px 0px calc(0vw / var(--setSize--mobile)) 0px;
  }
  .homeSevenTableIcon .text__19 table tr:nth-child(2) td {
    vertical-align: top;
  }
  .about {
    overflow: hidden;
  }
  .sell {
    overflow: hidden;
  }
  .estimate {
    overflow: hidden;
  }
  .estimateOne {
    padding: calc(80vw / var(--setSize--mobile)) calc(20vw / var(--setSize--mobile));
  }
  .estimateOne__inside iframe {
    float: left;
    width: 100%;
    height: 650px;
    position: relative;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    border: none;
  }
  .offers {
    overflow: hidden;
  }
  .offersOne {
    padding: calc(60vw / var(--setSize--mobile)) calc(20vw / var(--setSize--mobile)) calc(60vw / var(--setSize--mobile)) calc(20vw / var(--setSize--mobile));
    background: #EEE8E9;
  }
  .offersOne .header {
    width: 100%;
  }
  .offersOne .text__19 {
    width: 100%;
  }
  .offersTwo {
    padding: calc(20vw / var(--setSize--mobile)) calc(20vw / var(--setSize--mobile)) calc(80vw / var(--setSize--mobile)) calc(20vw / var(--setSize--mobile));
  }
  .offersTwoMenu__href {
    width: auto;
    height: calc(80vw / var(--setSize--mobile));
    margin: 0px calc(30vw / var(--setSize--mobile)) 0px 0px !important;
    color: #969696;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
  }
  .offersTwoMenu__href:hover, .offersTwoMenu__href.active {
    color: var(--default--color--1);
    border-bottom: 1px solid var(--default--color--1);
  }
  .offersTwoList {
    margin: calc(60vw / var(--setSize--mobile)) 0px 0px 0px;
  }
  .offerBox {
    height: calc(510vw / var(--setSize--mobile));
    background: #fff;
  }
  .offerBox:hover .offerBox__inside {
    border: 1px solid var(--default--color--1);
    border-top: 0;
  }
  .offerBox__foto {
    height: calc(285vw / var(--setSize--mobile));
  }
  .offerBox__inside {
    height: calc(100% - calc(285vw / var(--setSize--mobile)));
    padding: 0px calc(40vw / var(--setSize--mobile));
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-top: 0;
  }
  .offerBox__category {
    margin: 0px 0px calc(20vw / var(--setSize--mobile)) 0px;
    color: var(--default--color--1);
    font-size: calc(14vw / var(--setSize--mobile));
    font-weight: 500;
    line-height: calc(16vw / var(--setSize--mobile));
    text-transform: uppercase;
  }
  .offerBox__name {
    margin: 0px 0px calc(20vw / var(--setSize--mobile)) 0px !important;
  }
  .offerBox__data {
    margin: 0px calc(30vw / var(--setSize--mobile)) 0px 0px;
    padding: 0px calc(30vw / var(--setSize--mobile)) 0px 0px;
    color: var(--default--color--1);
    font-size: calc(16vw / var(--setSize--mobile));
    font-weight: 300;
    line-height: calc(16vw / var(--setSize--mobile));
    text-transform: lowercase;
    border-right: 1px solid #707070;
  }
  .offerBox__data:last-child {
    margin: 0px calc(0vw / var(--setSize--mobile)) 0px 0px;
    padding: 0px calc(0vw / var(--setSize--mobile)) 0px 0px;
    border-right: 0;
  }
  .offer {
    padding: calc(60vw / var(--setSize--mobile)) calc(20vw / var(--setSize--mobile)) calc(60vw / var(--setSize--mobile)) calc(20vw / var(--setSize--mobile));
    overflow: hidden;
    background: #EEE8E9;
  }
  .offerOne__category {
    width: calc(170vw / var(--setSize--mobile));
    height: calc(70vw / var(--setSize--mobile));
    margin: calc(20vw / var(--setSize--mobile)) 0px calc(0vw / var(--setSize--mobile)) 0px;
    color: #fff;
    font-size: calc(14vw / var(--setSize--mobile));
    font-weight: 500;
    line-height: calc(16vw / var(--setSize--mobile));
    text-transform: uppercase;
    background: var(--default--color--1);
  }
  .offerOne__gallery--hidden {
    display: none !important;
    overflow: hidden;
    opacity: 0;
  }
  .offerOne__gallery--left {
    height: calc(350vw / var(--setSize--mobile));
  }
  .offerOne__gallery--right {
    padding: calc(10vw / var(--setSize--mobile)) 0px 0px calc(0vw / var(--setSize--mobile));
  }
  .offerOne__gallery--right .galleryFoto {
    grid-template-columns: repeat(2, 1fr) !important;
    z-index: 4;
  }
  .offerOne__gallery--right .galleryFoto .box {
    height: calc(160vw / var(--setSize--mobile)) !important;
  }
  .offerOne__qtu {
    height: calc(40vw / var(--setSize--mobile));
    margin: calc(0vw / var(--setSize--mobile)) 0px calc(0vw / var(--setSize--mobile)) 0px;
    padding: 0px calc(20vw / var(--setSize--mobile));
    position: absolute;
    right: calc(50% - calc(40vw / var(--setSize--mobile)));
    bottom: calc(50% - calc(20vw / var(--setSize--mobile)));
    color: #fff;
    font-size: calc(14vw / var(--setSize--mobile));
    font-weight: 500;
    line-height: calc(16vw / var(--setSize--mobile));
    text-transform: uppercase;
    background: var(--default--color--1);
    z-index: 6;
  }
  .offerOne__qtu--img {
    float: left;
    width: calc(17vw / var(--setSize--mobile));
    position: relative;
    margin: 0px calc(10vw / var(--setSize--mobile)) 0px 0px;
  }
  .offerOne__datas {
    padding: calc(20vw / var(--setSize--mobile));
    background: #652342;
  }
  .offerOne__data {
    margin: 0px calc(0vw / var(--setSize--mobile));
    padding: calc(10vw / var(--setSize--mobile));
    color: #fff;
    font-size: calc(25vw / var(--setSize--mobile));
    font-weight: 200;
    line-height: calc(30vw / var(--setSize--mobile));
  }
  .offerOne__data strong {
    margin: 0px calc(5vw / var(--setSize--mobile)) 0px 0px;
    font-weight: 600;
  }
  .offerOne__data--img {
    margin: 0px calc(15vw / var(--setSize--mobile)) 0px 0px;
  }
  .offerOne__data--img--1 {
    width: calc(30vw / var(--setSize--mobile));
  }
  .offerOne__data--img--2 {
    width: calc(18vw / var(--setSize--mobile));
  }
  .offerOne__data--img--3 {
    width: calc(30vw / var(--setSize--mobile));
  }
  .offerOne__data--img--4 {
    width: calc(23vw / var(--setSize--mobile));
  }
  .offerTwo {
    padding: calc(60vw / var(--setSize--mobile)) calc(20vw / var(--setSize--mobile)) calc(120vw / var(--setSize--mobile)) calc(20vw / var(--setSize--mobile));
    background: #fff;
  }
  .offerTwo__up {
    margin: 0px 0px calc(40vw / var(--setSize--mobile)) 0px;
    padding: 0px calc(0vw / var(--setSize--mobile)) calc(40vw / var(--setSize--mobile)) calc(0vw / var(--setSize--mobile));
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .offerTwo__price {
    width: 100%;
    margin: 0px 0px calc(20vw / var(--setSize--mobile)) 0px;
    font-size: calc(50vw / var(--setSize--mobile));
    font-weight: 300;
    line-height: calc(50vw / var(--setSize--mobile));
  }
  .offerTwo__contact {
    width: 100%;
  }
  .offerTwo__contact--box {
    margin: calc(10vw / var(--setSize--mobile)) 0px;
    color: var(--text--color--1);
    font-size: calc(30vw / var(--setSize--mobile));
    font-weight: 300;
    line-height: calc(40vw / var(--setSize--mobile));
  }
  .offerTwo__contact--box a {
    float: left;
    width: 100%;
    color: var(--text--color--2);
    text-decoration: none;
  }
  .offerTwo__contact--box a:hover {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: calc(5vw / var(--setSize--mobile));
  }
  .offerTwo__text {
    margin: 0px 0px calc(0vw / var(--setSize--mobile)) 0px;
    padding: calc(40vw / var(--setSize--mobile)) 0px;
  }
  .offerTwo__options {
    padding: 0px calc(0vw / var(--setSize--mobile)) 0px calc(0vw / var(--setSize--mobile));
  }
  .offerTwo__optionsList {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-left: 1px solid rgba(0, 0, 0, 0.1);
  }
  .offerTwo__optionsList--item {
    height: calc(80vw / var(--setSize--mobile));
    padding: 0px calc(20vw / var(--setSize--mobile));
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    color: var(--text--color--1);
    font-size: calc(18vw / var(--setSize--mobile));
    font-weight: 300;
    line-height: calc(26vw / var(--setSize--mobile));
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .offerThree {
    padding: calc(80vw / var(--setSize--mobile)) calc(0vw / var(--setSize--mobile)) calc(0vw / var(--setSize--mobile)) calc(0vw / var(--setSize--mobile));
  }
  .offerThree .homeFourListOwl {
    width: 100% !important;
    margin: calc(40vw / var(--setSize--mobile)) 0px 0px 0px !important;
  }
  .loans {
    overflow: hidden;
  }
  .loansOne {
    padding: calc(80vw / var(--setSize--mobile)) calc(20vw / var(--setSize--mobile));
  }
  .loansOne__inside {
    padding: 0px calc(40vw / var(--setSize--mobile));
  }
  .loansOne__inside .text__19.grid-4 {
    margin: calc(40vw / var(--setSize--mobile)) 0px 0px 0px !important;
  }
  .loansTwo {
    padding: calc(80vw / var(--setSize--mobile)) calc(20vw / var(--setSize--mobile));
  }
  .loansTwo__inside iframe {
    float: left;
    width: 100%;
    height: 600px;
    position: relative;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    border: none;
  }
  .arrangement {
    overflow: hidden;
  }
  .arrangementOne {
    height: calc(350vw / var(--setSize--mobile));
  }
  .arrangementOne .owl-nav {
    bottom: calc(50% - calc(40vw / var(--setSize--mobile))) !important;
  }
  .arrangementOne:hover .arrangementOne__inside {
    opacity: 0;
  }
  .arrangementOne__inside {
    width: 100%;
    height: calc(80vw / var(--setSize--mobile));
    position: relative;
    top: 0;
    left: 0;
    z-index: 8;
    background: var(--default--color--1);
  }
  .arrangementOne__inside .header {
    margin: 0;
  }
  .contact {
    overflow: hidden;
  }
  .contact .text__19 a {
    color: var(--text--color--1);
    font-size: calc(30vw / var(--setSize--mobile));
    text-decoration: none;
  }
  .contact .text__19 a:hover {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: calc(5vw / var(--setSize--mobile));
  }
  .contact .text__19 table {
    float: left;
    width: 100% !important;
    height: auto !important;
  }
  .contact .text__19 table:nth-of-type(1) {
    background: url(images/contactIcon_1.svg) center left no-repeat;
    background-size: calc(56vw / var(--setSize--mobile));
  }
  .contact .text__19 table:nth-of-type(1) tr td {
    height: calc(90vw / var(--setSize--mobile));
    padding: 0px 0px 0px calc(80vw / var(--setSize--mobile));
  }
  .contact .text__19 table:nth-of-type(2) {
    background: url(images/contactIcon_2.svg) center left no-repeat;
    background-size: calc(52vw / var(--setSize--mobile));
  }
  .contact .text__19 table:nth-of-type(2) tr td {
    height: calc(90vw / var(--setSize--mobile));
    padding: 0px 0px 0px calc(80vw / var(--setSize--mobile));
  }
  .bottom {
    float: left;
    width: 100%;
    position: relative;
    margin: 0px 0px 0px 0px;
    padding: calc(40vw / var(--setSize--mobile)) 0px calc(20vw / var(--setSize--mobile)) 0px;
  }
  .bottom__up {
    padding: 0px 0px calc(40vw / var(--setSize--mobile)) 0px;
  }
  .bottom__logo {
    width: calc(280vw / var(--setSize--mobile));
    margin: 0px 0px calc(60vw / var(--setSize--mobile)) 0px;
  }
  .bottom__text {
    width: 100%;
    color: var(--default--color--2);
    font-size: calc(25vw / var(--setSize--mobile));
    font-weight: 200;
    line-height: calc(30vw / var(--setSize--mobile));
    text-transform: uppercase;
  }
  .bottom__text strong {
    font-weight: 800;
  }
  .bottom__text a {
    color: #fff;
    text-decoration: none;
  }
  .bottom__text a:hover {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: calc(5vw / var(--setSize--mobile));
  }
  .bottom__text table {
    float: left;
    width: 100% !important;
    height: auto !important;
  }
  .bottom__text table:nth-child(1) {
    background: url(images/footerIcon_1.svg) center left no-repeat;
    background-size: calc(46vw / var(--setSize--mobile));
  }
  .bottom__text table:nth-child(1) tr td {
    height: calc(60vw / var(--setSize--mobile));
    padding: 0px 0px 0px calc(60vw / var(--setSize--mobile));
  }
  .bottom__text table:nth-child(2) {
    background: url(images/footerIcon_2.svg) center left no-repeat;
    background-size: calc(42vw / var(--setSize--mobile));
  }
  .bottom__text table:nth-child(2) tr td {
    height: calc(60vw / var(--setSize--mobile));
    padding: 0px 0px 0px calc(60vw / var(--setSize--mobile));
  }
  .bottom__down {
    padding: calc(0vw / var(--setSize--mobile)) 0px calc(40vw / var(--setSize--mobile)) 0px;
  }
  .footer {
    float: left;
    width: 100%;
    position: relative;
    margin: 0px 0px 0px 0px;
    padding: calc(30vw / var(--setSize--mobile)) calc(20vw / var(--setSize--mobile)) calc(30vw / var(--setSize--mobile)) calc(20vw / var(--setSize--mobile));
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .footer__arrow {
    float: left;
    position: relative;
  }
  .footer__arrow--img {
    float: left;
    width: calc(12vw / var(--setSize--mobile));
    position: relative;
  }
  .footer__menu {
    float: left;
    width: 100%;
    position: relative;
    margin: calc(40vw / var(--setSize--mobile)) 0px calc(40vw / var(--setSize--mobile)) 0px;
    padding: 0px 0px 0px 0px;
    list-style: none;
  }
  .footer__menu--name {
    float: left;
    width: 100%;
    position: relative;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
  }
  .footer__menu--name:last-child .footer__menu--hr {
    display: none;
    visibility: hidden;
  }
  .footer__menu--href {
    float: left;
    height: 100%;
    position: relative;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    color: #616161;
    font-size: calc(20vw / var(--setSize--mobile));
    font-weight: 400;
    line-height: calc(36vw / var(--setSize--mobile));
    text-transform: uppercase;
    text-decoration: none;
  }
  .footer__menu--href:hover {
    color: #fff;
  }
  .footer__menu--name.footer__menu--active .footer__menu--href {
    color: #fff;
  }
  .footer__menu--hr {
    float: left;
    position: relative;
    margin: 0px 0px 0px 0px;
    padding: 0px calc(20vw / var(--setSize--mobile)) 0px calc(20vw / var(--setSize--mobile));
  }
  .dir {
    float: left;
    width: 100%;
    position: relative;
    padding: calc(20vw / var(--setSize--mobile)) calc(0vw / var(--setSize--mobile)) calc(20vw / var(--setSize--mobile)) calc(0vw / var(--setSize--mobile));
    background: #EEE8E9;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
    z-index: 1;
  }
  .dir__li {
    float: left;
    position: relative;
  }
  .dir__li:first-child {
    margin: 0px 0px 0px calc(20vw / var(--setSize--mobile));
  }
  .dir__href {
    float: left;
    position: relative;
    color: var(--default--color--1);
    font-size: calc(18vw / var(--setSize--mobile));
    font-weight: 400;
    line-height: calc(18vw / var(--setSize--mobile));
    text-decoration: none;
  }
  .dir__href:hover {
    color: var(--default--color--2);
  }
  .dir__arrow {
    float: left;
    width: calc(4vw / var(--setSize--mobile));
    position: relative;
    margin: calc(0vw / var(--setSize--mobile)) calc(20vw / var(--setSize--mobile)) 0px calc(20vw / var(--setSize--mobile));
  }
  .default {
    float: left;
    width: 100%;
    position: relative;
    margin: 0px 0px 0px 0px;
    padding: calc(60vw / var(--setSize--mobile)) calc(20vw / var(--setSize--mobile)) calc(60vw / var(--setSize--mobile)) calc(20vw / var(--setSize--mobile));
  }
  .default__left {
    float: left;
    width: 100%;
    position: relative;
    margin: 0px 0px calc(40vw / var(--setSize--mobile)) 0px;
    overflow: hidden;
  }
  .default__right {
    float: left;
    width: 100%;
    position: relative;
    margin: 0px 0px 0px 0px;
    padding: calc(0vw / var(--setSize--mobile)) 0px 0px calc(0vw / var(--setSize--mobile));
  }
  .default .galleryFoto {
    margin: calc(40vw / var(--setSize--mobile)) 0px 0px 0px;
  }
  .default .filesBox {
    margin: calc(40vw / var(--setSize--mobile)) 0px 0px 0px;
  }
  /* Default */
  .mainFoto {
    float: left;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
  }
  .mainFotoBackground {
    float: left;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .mainFoto .img,
  .mainFotoBackground .img {
    float: left;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .galleryFoto {
    float: left;
    width: 100%;
    position: relative;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
  }
  .galleryFoto.columns--5 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: calc(10vw / var(--setSize--mobile));
    grid-row-gap: calc(10vw / var(--setSize--mobile));
  }
  .galleryFoto.columns--4 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: calc(10vw / var(--setSize--mobile));
    grid-row-gap: calc(10vw / var(--setSize--mobile));
  }
  .galleryFoto.columns--3 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: calc(10vw / var(--setSize--mobile));
    grid-row-gap: calc(10vw / var(--setSize--mobile));
  }
  .galleryFoto.columns--2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: calc(10vw / var(--setSize--mobile));
    grid-row-gap: calc(10vw / var(--setSize--mobile));
  }
  .galleryFoto.columns--1 {
    height: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: calc(0vw / var(--setSize--mobile));
    grid-row-gap: calc(10vw / var(--setSize--mobile));
  }
  .galleryFoto .box {
    float: left;
    width: 100%;
    height: calc(250vw / var(--setSize--mobile));
    position: relative;
    overflow: hidden;
  }
  .galleryFoto.columns--1 .box {
    height: 100%;
  }
  .galleryFoto .box .img {
    float: left;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transition: transform 1s;
  }
  .galleryFoto .box:hover .img {
    transform: scale(1.1);
  }
  .galleryFotoOwl {
    float: left;
    width: 100%;
    height: 100%;
    position: relative;
  }
  .galleryFotoOwl .box {
    float: left;
    width: 100%;
    height: 100%;
    position: relative;
  }
  .galleryFotoOwl .box .img {
    float: left;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .filesBox {
    float: left;
    width: 100%;
    position: relative;
    margin: calc(20vw / var(--setSize--mobile)) 0px calc(20vw / var(--setSize--mobile)) 0px;
    padding: 0px 0px 0px 0px;
  }
  .filesBoxFile {
    float: left;
    width: 100%;
    position: relative;
    margin: 0px 0px 0px 0px;
    padding: calc(10vw / var(--setSize--mobile)) calc(10vw / var(--setSize--mobile)) 0px;
    color: #000;
    font-size: calc(16vw / var(--setSize--mobile));
    font-weight: 400;
    line-height: calc(18vw / var(--setSize--mobile));
    text-decoration: none;
  }
  .filesBoxFileImg {
    float: left;
    width: calc(40vw / var(--setSize--mobile));
    position: relative;
    margin: 0px calc(20vw / var(--setSize--mobile)) 0px 0px;
  }
  .filesBoxFileTitle {
    float: left;
    width: calc(100% - calc(60vw / var(--setSize--mobile)));
    position: relative;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
  }
  .filesBoxFile:hover {
    color: #e12e38;
  }
  .googleMap {
    float: left;
    width: 100%;
    height: 100%;
    position: relative;
  }
  .googleMap .mapaBox {
    float: left;
    width: 100%;
    height: 100%;
    position: relative;
  }
  .contentMap {
    float: left;
    position: relative;
    padding: calc(20vw / var(--setSize--mobile));
  }
  .contentMap__name {
    float: left;
    width: 100%;
    position: relative;
    margin: 0px 0px calc(10vw / var(--setSize--mobile)) 0px;
    color: #383436;
    font-size: calc(20vw / var(--setSize--mobile));
    font-weight: 400;
    line-height: calc(22vw / var(--setSize--mobile));
    text-align: left;
  }
  .contentMap__text {
    float: left;
    width: 100%;
    position: relative;
    color: #383436;
    font-size: calc(18vw / var(--setSize--mobile));
    font-weight: 400;
    line-height: calc(22vw / var(--setSize--mobile));
    text-align: left;
  }
  .gm-ui-hover-effect {
    top: 3px !important;
    right: 3px !important;
  }
}/*# sourceMappingURL=style_rwd.css.map */