@font-face {
    font-family: 'Akzidenz-Grotesk';
    src: url('../font/AkzidenzGroteskBE-Ex.woff2') format('woff2'),
    url('../font/AkzidenzGroteskBE-Ex.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}




* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    color: inherit;
    cursor: pointer;
    transition: all 0.25s;
}

button, input, textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    text-transform: inherit;
}

select {
    -webkit-appearance: inherit;
    -moz-appearance: inherit;
    appearance: inherit;
    list-style: none;
    font-size: inherit;
    letter-spacing: initial;
    outline: none;
    font-family: inherit;
}

select::-ms-expand {
    display: none;
}

select.input-room:active {
    font-size: 16px;
}

body {
    font-family: 'Akzidenz-Grotesk','sans-serif';
    margin: 0;
    padding: 0;
    color: #FFF;
    /*overflow-x: hidden!important;*/
    /*overflow-y: scroll!important;*/
    background: #050505;
}

.button_container {
    position: absolute;
    top: 50px;
    right: 60px;
    height: 25px;
    width: 50px;
    cursor: pointer;
    z-index: 3;
    transition: opacity .25s ease;
    margin: auto;
    /*transform-origin: 50% 50%;*/
    /*transform: translate(-50%);*/
}
.button_container:hover {
    opacity: 1;
}
.button_container:hover span{
    transform: scaleY(3);
}
.button_container.active .top {
    -webkit-transform: translateY(12px) translateX(0) rotate(45deg);
    transform: translateY(12px) translateX(0) rotate(45deg);
    background: #fff!important;
}
.button_container.active .middle {
    opacity: 0;
    background: #fff;
}
.button_container.active .bottom {
    -webkit-transform: translateY(-12px) translateX(0) rotate(-45deg);
    transform: translateY(-12px) translateX(0) rotate(-45deg);
    background: #fff!important;
}
.button_container span {
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    width: 50px;
    height: 1px;
    background-color: #fff;
    transition: all .3s ease;
}
.button_container span:nth-of-type(2) {
    top: 12px;
}
.button_container span:nth-of-type(3) {
    top: 24px;
}


.overlay_menu {
    position: fixed;
    background-color: var(--second);
    /*background-image: url('../images/icon/waves-bg3.png');*/
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    overflow: hidden;
    display: grid;
    z-index: 2;
}
.overlay_menu.open {
    opacity: 1;
    visibility: visible;
    width: 100%;
    height: 100%;
    grid-template-columns: 1.3fr 2fr;
}
.overlay_menu.open li {
    -webkit-animation: fadeInUp .5s ease forwards;
    animation: fadeInUp .5s ease forwards;
    -webkit-animation-delay: .35s;
    animation-delay: .35s;
}
.overlay_menu.open li:nth-of-type(2) {
    -webkit-animation-delay: .40s;
    animation-delay: .40s;
}
.overlay_menu.open li:nth-of-type(3) {
    -webkit-animation-delay: .45s;
    animation-delay: .45s;
}
.overlay_menu.open li:nth-of-type(4) {
    -webkit-animation-delay: .50s;
    animation-delay: .50s;
}
.overlay_menu.open li:nth-of-type(5) {
    -webkit-animation-delay: .55s;
    animation-delay: .55s;
}
.overlay_menu.open li:nth-of-type(6) {
    -webkit-animation-delay: .60s;
    animation-delay: .60s;
}
.overlay_menu.open li:nth-of-type(7) {
    -webkit-animation-delay: .65s;
    animation-delay: .65s;
}
.overlay_menu.open li:nth-of-type(8) {
    -webkit-animation-delay: .70s;
    animation-delay: .70s;
}


.overlay_menu nav {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
}
/*.overlay_menu ul {*/
/*    list-style: none;*/
/*    padding: 0;*/
/*    margin: 0 auto;*/
/*    display: inline-block;*/
/*    position: relative;*/
/*    height: 100%;*/
/*}*/
.overlay_menu ul li {
    display: block;
    position: relative;
    padding: 20px 0;
    opacity: 0;
    width: 100%;
    color: #fff;
    text-decoration: none;
    font-size: 2rem;
    font-size: clamp(1rem, .8rem + 1vw, 2rem);
    text-transform: uppercase;
    transition: all .3s ease;
}
.overlay_menu ul li a {
    display: block;
    position: relative;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    line-height: inherit;
    transition: all 0.5s;
    width: fit-content;
}
.overlay_menu ul li a:before{
    content: '';
    width: 100%;
    height: 1px;
    background: #ffffff;
    opacity: 0;
    transition: all 0.5s;
    position: absolute;
    bottom: 0;
}
.overlay_menu ul li a:hover:before{
    opacity: 1;
}
.overlay_menu ul li a:hover {
    color: #f0ece3;
}
.overlay_menu ul li a:hover:after, .overlay_menu ul li a:focus:after, .overlay_menu ul li a:active:after {
    width: 100%;
}
.overlay_menu .active:after{
    content: none;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 20%;
    }
    100% {
        opacity: 1;
        left: 0;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 20%;
    }
    100% {
        opacity: 1;
        left: 0;
    }
}
.overlay_menu .left{
    flex: 1;
    background: #000000c0;
    -webkit-backdrop-filter: saturate(0);
    backdrop-filter: saturate(0);
    transition: all .3s ease;
}
.overlay_menu .right{
    flex: 1;
    padding-left: 100px;
    background: #050505;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 100px;
    padding-bottom: 50px;
    overflow: hidden;
    overflow-y: auto;
}
.bottom_a {
    position: fixed;
    bottom: 60px;
    line-height: 0;
    right: 50px;
    transform-origin: 50% 50%;
    transform: translate(-50%);
    pointer-events: all;
    z-index: 3;
    transition: all 0.5s;
}
.bottom_a .glyph {
    transform: rotate(120deg);
    display: flex;
    gap: 10px;
    flex-direction: column;
    transition: all .3s ease
}
.bottom_a .glyph .line {
    width: 30px;
    height: 2px;
    background-color: #fff;
    transition: all .3s ease
}

.bottom_a .glyph .line:first-child {
    transform: translate(-7px)
}
.bottom_a .glyph.dark-v .line {
    background-color: #050505
}
.bottom_a:hover .glyph .line {
    border-radius: 30px;
    width: 20px
}
.bottom_a:hover .glyph .line:first-child {
    transform: translate(-5px) translateY(3px) rotate(120deg)
}
.bottom_a:hover .glyph .line:last-child {
    transform: translate(0) translateY(-1px) rotate(0)
}
header{
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 99;
    transition: all .3s ease;
}
.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 180px;
    z-index: 300;
    display: block;
    border-left: 1px solid #aaa;
    padding: 0;
    pointer-events: none;
    transition: all .3s ease;
}
.whatsapp-floating {
    position: fixed;
    bottom: 50px;
    right: 220px;
    z-index: 1000;
    /*transition: opacity 1s ease-in-out;*/
    transition: all 0.5s;
}
.whatsapp-floating img{
    width: 60px;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
}
.section_01 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.brand_logo{
    position: fixed;
    top: 50px;
    left: 50px;
    height: 34px;
}
.brand_logo img{
    height: 100%;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}
.scroll-down-wrapper {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translate(-50%)
}

.animated-arrow {
    font-size: 2rem;
    animation: bounce 2s infinite
}

@keyframes bounce {
    0%,to {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}
::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #222
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #bcbcbc
}
.text_fixed{
    position: fixed;
    top: 50%;
    right: 70px;
    writing-mode: vertical-rl;
    transform-origin: 50% 50%;
    transform: translate(-50%, -50%) scale(-1);
    pointer-events: none;
    opacity: 0;
    /*transition: all 0.5s;*/
}
.fp-completely .text_fixed{
    opacity: 1;
}
.section_02 img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
}
.text_slide1 {
    position: absolute !important;
    width: 100%;
    bottom: 0;
    background: #fff;
    height: 50px !important;
    color: #000000;
    left: 0;
    right: 0;
    /*display: flex;*/
    /*align-items: center;*/
    padding: 0 100px;
}
.text_slide1 p:nth-child(1){
    text-align: left;
    float: left;
}
.text_slide1 p:nth-last-child(1){
   text-align: right;
    float: right;
}
.fp-slidesNav{
    display: none;
}
.slide{
    position: relative;
}
.slick-arrow img{
    width: 30px !important;
    height: auto !important;
}
body:not(.no-js) .image-wrap {
    transition: 1s ease-out;
    transition-delay: 0.2s;
    position: relative;
    width: auto;
    /*height: 80vh;*/
    overflow: hidden;
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    visibility: hidden;
}

body:not(.no-js) .image-wrap img {
    transform: scale(1.3);
    transition: 2s ease-out;
}

body:not(.no-js) .section.active .image-wrap {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    visibility: visible;
    transform: skewY(0);
}

body:not(.no-js) .section.active img {
    transform: scale(1);
    transition: 2s ease-out;
}

body:not(.no-js) .fadeup {
    opacity: 0;
    transition: 0.4s ease-out;
    transform: translateY(40px);
}

body:not(.no-js) .fading-up {
    opacity: 1;
    transition: 1s ease-out;
    transform: translateY(0px);
    transition-delay: 0.7s;
}
.images_havewhat{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
}
.images_havewhat img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
}
.details_havewhat h2{
    color: #ffffff;
    text-transform: uppercase;
    font-size: clamp(1.3rem, 1.26rem + .2vw, 1.5rem);
}
.details_havewhat p>label{
    display: inline-block;
    width: 100%;
}
.details_havewhat{
   padding: 150px;
}
.row_havewhat{
    width: calc(100% - 180px);

}
.slide_homepage{
    width: 100%!important;
    height: 100vh;
}
.text_details{
    width: calc(100% - 180px);
}
.section_04{
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.section_04 h2{
    text-transform: uppercase;
    font-size: clamp(1.3rem, 1.26rem + .2vw, 1.5rem);
    color: #000000;
    width: calc(100% - 180px);
    margin: 0;
}
.row_living{
    width: calc(100% - 180px);
    padding: 50px 150px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.images_living{
    height: 30vh;
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.images_living img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: all .3s ease!important;

}
.row_living .col-xs-6{
    width: 100%;
}
.section_04 .animated{
    animation-name: zoomOut;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
}
body.fp-viewing-3 .section_04 .animated {
    animation-name: zoomIn;
}
.images_living:before{
    content: "";
    background: #050505;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: .2;
    z-index: 1;
    transition: all .8s ease;
}
.row_living .col-xs-6:hover .images_living img{
    transform: scale(1.1);
}
.row_living .col-xs-6:hover .images_living:before{
    opacity: .7;
}
.details_living{
    position: absolute;
    opacity: 1;
    visibility: visible;
    transition: all .3s ease;
    z-index: 3;
    color: #fff;
    padding: 30px;
}
.details_living h3{
    margin: 0;
    color: #fff;
    font-size: 1.5rem;
    text-transform: uppercase;
    transition: all .3s ease;
}
.details_living p{
    height: auto;
    width: 100%;
    max-height: 0;
    margin-top: 10px;
    overflow: hidden;
    transition: max-height .4s ease;
}
.row_living .col-xs-6:hover .details_living p{
    max-height: 130px;
}
.section_04 .text_fixed{
    color: #000000;
}
body.fp-viewing-3 .button_container span{
    background-color: #000000;
}
body.fp-viewing-3 .whatsapp-floating img{
    filter:none;
}
body.fp-viewing-3 .bottom_a .glyph .line{
    background-color: #000000;
}
.copyright{
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 50px;
    color: #fff;
    font-size: .9rem;

}
.line_footer{
    width: 1px;
    background: #707070;
    height: 300px;
    display: block;
}
.btn_contactus{
    background: #0000;
    border-radius: 12px;
    padding: 12px 40px;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    min-width: 210px;
    transition: all .3s ease;
    border: 2px solid #fff;
    color: #fff;
    margin-top: 30px;
}
.btn_contactus:hover {
    background: #fff !important;
    color: #050505 !important;
}
.details_footer{
    text-align: left;
    padding: 50px;
}
.images_footer{
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.social_media .images_icon {
    object-fit: cover;
    display: inline-block;
    width: 25px;
    height: 25px;
    -webkit-mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    background: #ffffff;
    /*margin-bottom: 10px;*/
    transition: all 0.25s;
}
.social_media .images_icon:hover{
    opacity: .7;
}
.text_bottom ul{
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}
.text_bottom li{
    float: left;
    list-style: none;
    padding-right: 10px;
}
.social_media ul:nth-child(1){
    width: 100%;
    margin-bottom: 30px;
    display: inline-block;
}
.slick-slide{
    position: relative;
}
.fp-viewing-1 .whatsapp-floating{
    bottom: 80px;
}
.fp-viewing-1 .bottom_a{
    bottom: 90px;
}
ul.navbar_fix{
    padding: 0;
    margin: 0;
}
.overlay_menu.open .text_fixed{
    opacity: 1;
}
.contact_menu .images_icon {
    object-fit: cover;
    display: inline-block;
    width: 25px;
    height: 25px;
    -webkit-mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    background: #ffffff;
    /*margin-bottom: 10px;*/
    transition: all 0.25s;
}
.contact_menu .images_icon:hover{
    opacity: .7;
}
.contact_menu li{
    float: left;
    padding: 0 10px 0 0 !important;
    width: auto!important;
    text-transform: none!important;
    font-size: 16px!important;
}
.contact_menu ul{
    display: flow-root;
    width: 100%;
    padding: 0;
    margin: 0;
}
.contact_menu ul:nth-child(1){
    margin-bottom: 15px;
}
.aboutpage .section_02 .row_havewhat .col-xs-6:nth-child(1){
    float: right;
}
.aboutpage .section_02 .row_havewhat{
    width: 100%;
}
.aboutpage .section_02 .details_havewhat{
    text-align: left;
}
.aboutpage .section_03 .details_havewhat{
    text-align: left;
}
.aboutpage .section_04{
    padding: 0;
    background: #000000!important;
}
.aboutpage .section_04 .images_havewhat{
    height: 600px;
    flex: 1!important;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.aboutpage .section_04 .details_havewhat{
    padding: 0 50px;
}
.aboutpage .section_04 .details_havewhat p{
    text-align: left;
}
.aboutpage .section_04 .images_havewhat img{
    height: 100%;
}
.aboutpage .section_04 .row_havewhat .col-xs-5{
    float: right;
}
.who-container{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    height: 100%;
    gap: 10px;
    padding: 0;
}
.who-container .col.middle {
    border: 1px solid #707070;
    height: 70%;
}
.aboutpage .section_04 h2 {
    color: #ffffff;
    width: 100%;
}
.aboutpage .section_04 .reveal, .aboutpage .section_04 .image-wrap{
    height: 100%;
}
.aboutpage .section_04 .text_fixed{
    color: #ffffff;
}
.slide_team .slides{
    padding: 0 10px;
}
.slide_team .slick-list{
    margin: 0 -10px;
}
.slide_team .images_team{
    width: 100%;
    height: 45vh;
    overflow: hidden;
}
.slide_team .images_team img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: center center;
    filter: grayscale(1);
    transition: all .3s ease!important;
}
.slide_team .slides:hover .images_team img{
    filter: grayscale(0);
    transform: scale(1.1);
}
.row_team h2{
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    padding-bottom: 50px;
}
.contact_email{
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    transition: opacity .5s ease, visibility .5s ease;
    font-size: 14px;
    position: absolute;
    width: 100%;
    padding: 10px;
    background: #0006;
    bottom: 0;
    visibility: hidden;
    text-align: center;
}
.slide_team .slides:hover .contact_email{
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.contact_email a{
    position: relative;
}
.contact_email a:before{
    content: '';
    width: 100%;
    height: 1px;
    background: #ffffff;
    position: absolute;
    bottom: 0;
    opacity: 0;
    transition: all 0.5s;
}
.contact_email:hover a:before{
    opacity: 1;
}
.details_team h3{
    text-transform: uppercase;
    margin: 0;
    font-size: clamp(1.1rem, 1.08rem + .1vw, 1.2rem);
}
.details_team h3>label{
    display: inline-block;
    width: 100%;
}
.designation{
    border-top: 1px solid #fff;
    padding: 25px 0 50px;
    margin-top: 25px;
    font-size: clamp(1rem, .98rem + .1vw, 1.1rem);
}
.section_06 img{
    width: 100%;
    height: auto;
    display: block;
}
.aboutpage .section_01 .animated{
    animation-name: zoomIn;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
}
.aboutpage .section_05 .animated{
    animation-name: zoomOut;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
}
body.fp-viewing-4 .section_05 .animated {
    animation-name: zoomIn;
}
.aboutpage .section.active .animated{
    animation-name: zoomIn;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
}
body.aboutpage .button_container span{
    background: #ffffff!important;
}
body.aboutpage .bottom_a .glyph .line{
    background: #ffffff!important;
}
body.aboutpage .whatsapp-floating img{
    filter: brightness(0) invert(1);
}
body.aboutpage .whatsapp-floating {
    bottom: 50px!important;
}
body.aboutpage .bottom_a{
    bottom: 60px!important;
}
.slide_team .slick-dots li.slick-active button{
    background: #ffffff;
}
.slide_team .slick-dots button{
    background: #ffffff;
}
.text_properties{
    background-color: #050505 !important;
    color: #ffffff;
    height: 65px;
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 0 100px;
}
.text_properties img{
    height: 30px!important;
    width: auto!important;
    filter: brightness(0) invert(1);
    display: block;
    float: left;
}
.text_properties label{
    float: right;
}
.properties .section_02{
    background: #ffffff!important;
}
.row_properties .images_havewhat{
    height: 500px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: start;
}
.row_properties{
    padding: 0 150px;
}
.row_properties .images_havewhat img{
    height: 100%;
}
.row_properties .reveal, .row_properties .image-wrap{
    height: 100%;
}
.row_properties .details_properties{
    padding-right: 0;
    font-size: 15px;
    justify-content: center;
}
.details_properties{
    padding: 0 0 0 50px;
    text-align: left;
    color: #000000!important;
}
.details_properties ul{
    margin: 0;
    padding: 0;
}
.details_properties li{
    border-bottom: 1px solid #000000;
    padding: 10px 0;
    list-style: none;
    display: flow-root;
    width: 100%;
}
.details_properties li:nth-child(1){
    padding-top: 0;
}
.details_properties li>label{
    float: right;
    text-align: right;
    line-height: 26px;
}
.details_properties li>h1{
    margin: 0;
    font-size: 40px;
}
.details_properties li>span{
    text-transform: uppercase;
}
.section_gallery{
    display: flow-root;
    width: 100%;
    text-align: center;
    padding: 100px 0 50px;
}
.row_blog .col-xs-6:nth-child(1){
    float: right;
}
.row_blog .images_havewhat{
    height: 400px;
}
.row_blog .reveal, .row_blog .image-wrap, .images_blog img{
    height: 100%;
}
.section_blog, .section_footer{
    background: #000000!important;
}
.section_gallery ul{
    margin: auto;
    display: inline-block;
}
.section_gallery li{
    float: left;
    list-style: none;
    padding: 0 15px;
}
.section_gallery li button.active{
    color: #050505;
    opacity: 1;
}
.section_gallery button{
    background: none;
    border: none;
    padding: 0;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: -1px;
    position: relative;
    opacity: .6;
    transition: all .3s ease;
}
.section_gallery button:before{
    content: "";
    width: 100%;
    height: 2px;
    background: #0000;
    position: absolute;
    left: 0;
    bottom: -10px;
    transition: all .3s ease;
}
.section_gallery button.active:before{
    background: #050505;
    bottom: 0;
}
.section_categories{
    background: #ffffff!important;
    padding: 100px 0;
}
.box_categories img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    max-height: 350px;
    transition: all .3s ease;
    display: block;
}
.gallery_categories{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: center;
    gap: 60px 30px;
    max-width: 900px;
    margin: 0 auto;
    height: auto;
}
.gallery_categories .col-xs-6{
    width: 100%;
}
.name_categories{
    text-align: center;
    border-top: 1px solid #050505;
    margin-top: 30px;
    padding-top: 20px;
    color: #000;
    text-transform: uppercase;
    font-size: clamp(1.1rem, 1.08rem + .1vw, 1.2rem);
}
.properties .section_02 .text_fixed{
    color: #000000;
}
.properties.fp-viewing-1 .button_container span{
    background: #000000!important;
}
.properties.fp-viewing-1 .bottom_a .glyph .line{
    background: #000000!important;
}
.properties.fp-viewing-1 .whatsapp-floating img{
    filter:none!important;
}
.properties.fp-viewing-1 .whatsapp-floating{
    bottom: 50px;
}
.properties.fp-viewing-1 .bottom_a {
    bottom: 60px;
}
.properties.fp-viewing-0 .whatsapp-floating{
    bottom: 80px;
}
.properties.fp-viewing-0 .bottom_a {
    bottom: 90px;
}
.properties.fp-viewing-0 .scroll-down-wrapper {
    bottom: 80px;
}
.section_04.section_blog h2{
    width: 100%;
    color: #ffffff;
}
.section_blog .details_havewhat{
    text-align: left;
    padding: 0 100px 0 0;
}
.slide_blog .slick-arrow{
    bottom: -80px;
}
.section_blog .images_havewhat img{
    height: 100%;
}
.section_blog .text_fixed{
    color: #ffffff;
}
.properties.fp-viewing-3 .button_container span{
    background: #ffffff!important;
}

.properties.fp-viewing-3 .bottom_a .glyph .line{
    background: #ffffff!important;
}
.properties.fp-viewing-3 .whatsapp-floating img{
    filter: brightness(0) invert(1)!important;
}
.slide_blog .slick-dots button, .slide_blog .slick-dots li.slick-active button{
    background: #ffffff;
}
.logo_prop{
    position: absolute;
    top: 0;
    left: 0;
    padding: 30px;
}
.logo_prop img{
    width: auto!important;
    height: 30px!important;
    filter: brightness(0) invert(1);
}
.invest .section_01 .row_havewhat .col-xs-6:nth-child(1){
    float: right;
}
.invest .section_01 .row_havewhat{
    width: 100%;
}
.invest .section_01 .row_havewhat .details_havewhat{
    text-align: left;
}
.invest .section_02{
    background-image: url("../images/icon/bg.jpg");
    background-size: cover;
    text-align: center;
}
.invest .section_02 .row_havewhat{
    padding: 0 150px;
}
.invest .section_03{
    background: #ffffff!important;
    color: #000;
}
body.invest .button_container span{
    background-color: #ffffff;
}
body.invest .whatsapp-floating img{
    filter: brightness(0) invert(1);
}
body.invest .bottom_a .glyph .line{
    background-color: #ffffff;
}
.invest .section_03 .row_havewhat{
    width: 100%;
}
.invest .section_03 .details_havewhat{
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 45px;
    width: 100%;
    overflow: hidden;
}
.invest .section_03 .details_havewhat h2{
    color: #000000;
    margin: 0;
}
.invest .section_03 .details_havewhat p{
    text-transform: uppercase;
    margin: 0;
}
.images_invest_info{
    height: 350px;
    width: 100%;
    overflow: hidden;
}
.images_invest_info img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.button_invest_info .left-line {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    gap: 20px;
}
.button_invest_info .left-line .glyph2 {
    transform: rotate(120deg);
    display: flex;
    gap: 10px;
    flex-direction: column;
}
.button_invest_info .left-line .vline {
    background-color: #707070;
    height: 1px;
    display: block;
    flex: 1;
}
.button_invest_info .left-line .glyph2 .line {
    background-color: #050505;
    width: 30px;
    height: 2px;
}
.button_invest_info .left-line .glyph2 .line:nth-child(1){
    transform: translate(-7px);
}
.button_invest_info .btn_submit{
    background: #0000;
    border: 2px solid #050505;
    border-radius: 12px;
    padding: 12px 10px;
    text-decoration: none;
    color: #050505;
    cursor: pointer;
    text-align: center;
    min-width: 210px;
    transition: all .3s ease;
}
.button_invest_info{
    justify-content: space-between;
    width: 100%;
    flex-wrap: nowrap;
    display: flex;
    gap: 30px;
    align-items: center;
}
.box_detailsinvest{
    /*display: flex;*/
    width: 100%;
    /*justify-content: center;*/
    color: #fff;
    background: #0006;
    border-radius: 15px;
    padding: 15px;
    text-align: left;
    font-size: 14px;
}
.box_detailsinvest .col-xs-4{
    padding: 0 15px;
}
.invest .section_03 .text_fixed{
    color: #ffffff;
}
.box_detailsinvest h3{
    margin-bottom: 17px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 15px;
    font-weight: 600;
}
.box_detailsinvest label{
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ccc;
    margin: 10px 0;
}
.invest .section_02 h2{
    text-transform: uppercase;
    font-size: 36px;
}
.invest.fp-viewing-1 .whatsapp-floating{
    bottom: 50px;
}
.invest.fp-viewing-1 .bottom_a {
    bottom: 60px;
}
.slide_detailsinvest .slides{
    padding: 0 15px;
}
.slide_detailsinvest .slick-dots button, .slide_detailsinvest .slick-dots li.slick-active button{
    background: #ffffff;
}
.contactus .section_01 .animated{
    animation-name: zoomIn;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
}
.contactus .section_05 .animated{
    animation-name: zoomOut;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
}
.input_data{
    padding: 10px 0;
    border-radius: 0;
    width: 100%;
    outline: none;
    color: #050505;
    background-color: #fff;
    font-size: 1rem;
    text-align: right;
    transition: all .3s ease;
    border: none;
    border-bottom: 1px solid;
    font-family: inherit;
}
.contactus .section_02{
    background: #ffffff!important;
}
.row_input{
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.label_text{
    pointer-events: none;
    z-index: 2;
    transition: all .3s ease;
    color: #000000;
}
.row_input .col-xs-12{
    position: relative;
}
#phoneNumber {
    display: none;
}
#btn-country{
    padding: 10px 0!important;
    border-radius: 0!important;
    width: 100%!important;
    outline: none!important;
    color: #050505!important;
    background-color: #fff!important;
    font-size: 1rem!important;
    text-align: left!important;
    transition: all .3s ease;
    border: none!important;
    border-bottom: 1px solid!important;
    font-family: inherit;
    line-height: normal;
}
.google_recaptcha {
    display: inline-block;
    margin: auto;
    padding-left: 40px;
}
.btn_submit{
    border-color: #000000;
    color: #000000;
    margin: 0;
    text-transform: uppercase;
}
.btn_submit:hover{
    background: #000000!important;
    color: #ffffff!important;
}
.form i{
    position: absolute;
    bottom: 10px;
    right: 0;
    color: #000;
}
.form select{
    padding-right: 15px;
}
.form input[type=radio]{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: auto;
    min-width: 130px;
    height: auto;
    min-height: 40px;
    border: 2px solid #050505;
    background: transparent;
    cursor: pointer;
    border-radius: 10px;
    margin-right: 0;
    margin-top: 0;
}
.form input[type=radio]:checked{
    background-color: #050505;
}
.form label>span{
    color: #000000;
}
.form input[type=radio]:checked+span{
    color: #ffffff;
    outline: none;
}
.form p{
    text-align: right;
}
.form p>label{
    position: relative;
    display: inline-block;
    margin-right: -90px;
    width: auto;
}
.form span.error{
    font-size: 11px;
    font-weight: 600 !important;
    margin-top: 5px !important;
    display: block !important;
    color: #dc3232;
    text-align: right;
}
.images_address{
    width: 100%;
    height: 350px;
}
.images_address img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.contactus .contact_address{
    padding: 150px;
}
.details_address{
    padding: 0 0 0 50px;
}
.details_address h3{
    text-transform: uppercase;
    margin-top: 0;
}
.details_address ul{
    margin-top: 30px;
    padding: 0;
}
.details_address li{
    list-style: none;
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid #000000;
    display: flex;
}
.contactus .section_03{
    background: #ffffff!important;
    color: #000000;
}
.details_address li label:nth-child(1){
    width: 150px;
}
.details_address li label:nth-child(2){
        width: calc(100% - 150px);
}
.details_address li:nth-child(1){
    padding-top: 0;
}
.details_address a:hover{
    text-decoration: underline;
}
.contactus.fp-viewing-1 .button_container span{
    background: #000000!important;
}
.contactus.fp-viewing-1 .bottom_a .glyph .line{
    background: #000000!important;
}
.contactus.fp-viewing-1 .whatsapp-floating img{
    filter: none!important;
}
.contactus.fp-viewing-1 .whatsapp-floating{
    bottom: 50px;
}
.contactus.fp-viewing-1 .bottom_a{
    bottom: 60px;
}
.contactus .section_02 .text_fixed, .contactus .section_03 .text_fixed{
    color: #000000;
}
.contactus.fp-viewing-2 .button_container span{
    background: #000000!important;
}
.contactus.fp-viewing-2 .bottom_a .glyph .line{
    background: #000000!important;
}
.contactus.fp-viewing-2 .whatsapp-floating img{
    filter: none!important;
}
.contact_address iframe{
    width: 100%;
    height: 500px;
    display: block;
    padding-top: 50px;
}
.details_policy{
    height: 100%;
    max-height: 70vh;
    overflow: hidden;
    overflow-y: auto;
}
.row_policy{
    padding: 0 150px;
}
.row_policy h2{
    font-size: clamp(1.5rem, 1.44rem + .3vw, 1.8rem);
    text-transform: uppercase;
}
body.blog .section_01{
    background: #ffffff!important;
    text-align: center;
    color: #000000;
}
.details_blog{
    overflow: hidden;
    overflow-y: auto;
    height: 85%;
    margin-top: 50px;
}
.text_blog{
    padding: 30px 0 0;
    text-align: left;
    font-size: 16px;
    line-height: 1.8;
}
.text_blog h3{
    font-size: clamp(1.1rem, 1.08rem + .1vw, 1.2rem);
    text-transform: uppercase;
    margin: 0;
}
.text_blog label{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #707070;
}
.row_blog_info{
    padding: 0 150px;
    overflow: hidden;
    overflow-y: auto;
    height: 85%;
}
.row_details_blog .images_blog_info{
    width: 100%;
    height: 350px;
    overflow: hidden;
}
.images_blog_info img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: all .3s ease!important;
}
.row_details_blog:hover .images_blog_info img{
    transform: scale(1.1)!important;
}
.scroll_blog{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem 2rem;
}
.row_blog_info h2{
    text-transform: uppercase;
}
.blog.fp-viewing-0 .button_container span{
    background: #000000!important;
}
.blog.fp-viewing-0 .bottom_a .glyph .line{
    background: #000000!important;
}
.blog.fp-viewing-0 .whatsapp-floating img{
    filter: none!important;
}
.row_details_blog.content{
    display: none;
}
.btn_loadmore{
    display: flow-root;
    width: fit-content;
    margin: 30px auto 0;
}
.details_faq h4>i{
    float: right;
}
.details_faq .panel-default > .panel-heading{
    display: block;
    padding: 30px;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    cursor: pointer;
    transition: all .3s ease;
    background: none;
    border-top: 1px solid #fff;
    border-radius: 0;
    width: 100%;
    height: auto;
    font-size: 16px;
    line-height: 1.8;
}
.details_faq .panel-body{
    border-top: none!important;
    padding: 0 30px 30px;
    line-height: 1.4;
}
.details_faq .panel-title{
    width: calc(100% - 20px);
    position: relative;
}
.details_faq .panel-title>i{
    width: 20px;
    text-align: right;
    right: -20px;
    position: absolute;
    top: 0;
}
.aboutpage .section_07{
    color: #ffffff;
    background: #000000;
}

.row_timeline{
    padding: 0 150px;
}
.row_timeline li{
    float: none;
    margin: 0;
}
.row_timeline .tabs-left{
    gap: 40px;
    display: grid;
    grid-template-columns: 1fr 2fr;
}
.row_timeline .tab-content{
    position: relative;
    display: inherit!important;
}
.aboutpage .section.section_07 .tab-pane{
    display: flex;
    flex-direction: column;
    gap: 50px;
    position: absolute;
    top: 0;
    left: 30%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    width: 100%;
    transition: all .6s ease;
}
.aboutpage .section.section_07 .tab-pane.active{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    left: 0;
}
.row_timeline h2{
    text-align: center;
}
.row_timeline .tabs-left{
    margin-top: 50px;
}
.timeline-items .dates-container .date-item {
    color: #707070;
    display: flex;
    cursor: pointer;
    height: 10vh;
    min-height: 60px;
    transition: all .3s ease;
}
.timeline-items .dates-container .date-item .date {
    margin: 0;
    flex: 1;
    flex: 0 0 auto;
}
.timeline-items .dates-container .date-item .title {
    flex: 50%;
    padding-left: 30px;
    margin: 0 0 0 30px;
    position: relative;
    font-size: 1rem;
}
.timeline-items .dates-container .date-item .title:before {
    content: "";
    display: block;
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50px;
    background: #050505;
    border: 1px solid #707070;
    left: -7px;
    top: 0;
    z-index: 1;
    transition: all .3s ease;
}
.timeline-items .dates-container .date-item .title:after {
    content: "";
    height: 100%;
    display: block;
    position: absolute;
    width: 1px;
    background: #707070;
    left: 0;
    top: 0;
}
.row_timeline .nav-tabs{
    border: none;
}
.row_timeline li:hover .date-item, .row_timeline li.active .date-item{
    color: #ffffff;
}
.row_timeline li.active .date-item .title:before {
    background: #ffffff;
}
.row_timeline li:hover .date-item .title:before{
    border-color: #ffffff;
}
.nav-tabs > li > a:hover{
    border: none;
}
.nav-tabs > li > a{
    margin: 0;
    padding: 0;
    line-height: normal;
    border: none;
}
.details_timeline{
    color: #fff;
    display: flex;
    gap: 50px;
}
.details_timeline h2{
    margin: 0;
    text-transform: uppercase;
    font-size: clamp(1.3rem, 1.26rem + .2vw, 1.5rem);
    line-height: 1.8;
    text-align: left;
}
.details_timeline p{
    margin-top: 0;
    line-height: 1.4;
}
.images_timeline{
    height: 45vh;
    width: 100%;
    overflow: hidden;
}
.images_timeline img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
body.contactus.fix_body .button_container span, body.fix_body .button_container span, body.properties.fix_body .button_container span, body.blog.fix_body .button_container span{
    background: #ffffff!important;
}
body.contactus.fix_body .bottom_a .glyph .line, body.fix_body .bottom_a .glyph .line, body.properties.fix_body .bottom_a .glyph .line, body.blog.fix_body .bottom_a .glyph .line{
    background: #ffffff!important;
}
body.contactus.fix_body .whatsapp-floating img, body.fix_body .whatsapp-floating img, body.properties.fix_body .whatsapp-floating img, body.blog.fix_body .whatsapp-floating img{
    filter: brightness(0) invert(1)!important;
}
.blog_info .details_policy h2{
    margin: 0;
}
.images_blog_details img{
    margin: 25px 0;
    width: 100%!important;
    height: auto!important;
}
.blog_info .section_02{
    background: #ffffff!important;
    text-align: center;
    color: #000000;
}
.blog_info .section_02 h2{
    color: #000000;
}
body.blog_info.fp-viewing-1 .bottom_a .glyph .line, body.blog_info.fp-viewing-1 .button_container span{
    background: #000000;
}
body.blog_info.fp-viewing-1 .whatsapp-floating img{
    filter: none;
}
.tab_properties ul{
    margin: auto auto 50px;
    display: inline-block;
    padding: 0;
}
.tab_properties li{
    float: left;
    padding: 0 0 10px;
    margin: 0 25px;
    position: relative;
    list-style: none;
    text-transform: uppercase;
}
.tab_properties{
    color: #848484;
    text-align: center;
}
.tab_properties li.active{
    color: #000000;
}
.tab_properties li:before{
    content: '';
    background: #000000;
    width: 0;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.5s;
}
.tab_properties li.active:before{
    width: 100%;
}
.tab_properties li:hover{
    color: #000000;
}
.tab_properties li:hover:before{
    width: 100%;
}
.details_properties img{
    height: 30px!important;
    display: block;
    width: auto;
}
.details_properties li:nth-child(1){
    border: none;
    padding-bottom: 25px;
}
.details_properties li:nth-last-child(1){
    border-bottom: none;
    padding-bottom: 0;
}
.details_properties .btn_contactus{
    border: 2px solid #000000;
    color: #000000;
}
.details_properties .btn_contactus:hover{
    background: #000000!important;
    color: #ffffff!important;
}
.propertiespage .section_01 .animated{
    animation-name: zoomIn;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
}
.propertiespage .section.active .animated{
    animation-name: zoomIn;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
}
.propertiespage .section_03{
    background: #ffffff!important;
    color: #1b1b1b;
}
.propertiespage .details_properties{
    padding: 150px;
}
.propertiespage .section_04{
    background: #ffffff!important;
    color: #1b1b1b;
}
.propertiespage .section_06{
    background: #ffffff!important;
    color: #1b1b1b;
}
.row_masterplan{
    text-align: center;
    /*width: calc(100% - 180px);*/
    /*padding: 0 150px;*/
    /*height: 100vh;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.row_masterplan img{
    width: 100%;
    margin: auto;
    display: block;
}
.text_masterplan{
    text-align: center;
    margin-top: 30px;
}
.text_masterplan label{
    width: 15px;
    height: 15px;
    background: #000000;
    margin-right: 5px;
    vertical-align: middle;
}
.images_masterplan{
    position: relative;
}
.images_masterplan img{
    width: 100%;
    height: auto;
    display: block;
}
.name_villa_plan{
    background: #000000;
    padding: 10px 16px;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 12px;
    text-align: center;
    display: inline-block;
    width: min-content;
    position: absolute;
    cursor: pointer;
}
.name_villa_plan label{
    font-size: 30px;
    width: 100%;
    display: block;
    line-height: 26px;
    margin-top: 5px;
}
.name_villa_plan.villa_soldout{
    background: #c71111;
}
.villaplan_1{
    left: 27%;
    top: 30%;
}
.villaplan_2{
    left: 30%;
    top: 62%;
}
.villaplan_3{
    left: 50%;
    top: 43%;
}
.villaplan_4{
    left: 73%;
    top: 30%;
}
.villaplan_5{
    left: 70%;
    top: 65%;
}
.details_photogallery{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 50px;
}
.row_photogallery .col-xs-8{
    float: right;
}
.section_04 .text_fixed{
    color: #000000;
}
body.propertiespage.fp-viewing-2 .button_container span{
    background-color: #000000;
}
body.propertiespage.fp-viewing-2 .whatsapp-floating img{
    filter:none;
}
body.propertiespage.fp-viewing-2 .bottom_a .glyph .line{
    background-color: #000000;
}
body.propertiespage.fp-viewing-5 .button_container span{
    background-color: #000000;
}
body.propertiespage.fp-viewing-5 .whatsapp-floating img{
    filter:none;
}
body.propertiespage.fp-viewing-5 .bottom_a .glyph .line{
    background-color: #000000;
}
.btn_gallery{
    position: absolute;
    bottom: 50px;
    left: 50px;
    display: flex;
    align-items: center;
}
.btn_gallery button{
    background: none;
    border: none;
    margin: 0;
    padding: 0;
}
.btn_gallery img{
    height: 40px!important;
    width: auto!important;
    display: block;
    filter: brightness(0) invert(1);
}
.row_photogallery .pagingInfo{
    font-size: 18px;
}
.pagingInfo{
    margin: 0 15px;
}
.row_constrruction{
    text-align: center;
    width: calc(100% - 180px);
    padding: 150px;
    display: flow-root;
}
#select-box{
    border: none;
    color: #4d4d4d;
    padding: 0;
    line-height: 40px;
}
.box_select{
    padding: 0;
    border: none;
    border-bottom: 1px solid #000;
    display: inline-flex;
    margin: 0 10px;
    text-align: left;

}
.box_select i{
    margin-left: 10px;
    line-height: 38px;
}
.tab-navigation{
    margin-bottom: 50px;
}
.box_imagesgallery{
    height: 250px;
    width: 100%;
    overflow: hidden;
}
.box_imagesgallery img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.0);
    transition: all 1s;
}
.box_gallery .col-xs-4{
    padding: 5px;
}
.box_gallery .col-xs-4:hover .box_imagesgallery img{
    transform: scale(1.0);
}
.tab_gallerymobile{
    display: none;
}
.gallery_categories .col-xs-4{
    padding: 15px;
}

.gallery_categories img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    /*transform: scale(1.05);*/
    transition: all 1s;
}
.images_location{
    height: 65vh;
    background: #000000;
}
.images_location img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.slide_location .slides:hover .images_location img{
    transform: scale(1.1);
}
.row_location {
    width: calc(100% - 180px);
}
.homepage .section_location{
    background: #ffffff!important;
    color: #000000;
}
body:not(.no-js) .section_location .image-wrap{
    height: 100%!important;
}
body:not(.no-js) .section_location .reveal{
    height: 100%!important;
}
.section_location .slides{
    padding: 0 5px;
}
.title_location{
    margin-bottom: 30px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}
.title_location .line{
    height: 2px;
    background-color: #707070;
    flex: 1;
}
.title_location_flip{
    flex-direction: row-reverse;
}
.details_location{
    text-align: center;
    padding: 25px 0 0;
    font-size: 20px;
}
body.homepage.fp-viewing-4 .button_container span{
    background-color: #000000;
}
body.homepage.fp-viewing-4 .whatsapp-floating img{
    filter:none;
}
body.homepage.fp-viewing-4 .bottom_a .glyph .line{
    background-color: #000000;
}
body.homepage.fp-viewing-4 .button_container span{
    background-color: #000000;
}
body.homepage.fp-viewing-4 .whatsapp-floating img{
    filter:none;
}
body.homepage.fp-viewing-4 .bottom_a .glyph .line{
    background-color: #000000;
}
.slide_location .slick-dots button{
    background: #000000;
}
.slide_location .slick-list{
    margin: 0 -5px;
}
.contactus .section_location{
    color: #000000!important;
}
.update_timeline .timeline-items .dates-container .date-item{
    height: 7vh;
}
.update_timeline .timeline-items .dates-container li:nth-last-child(1) .date-item .title:after{
    content: none;
}
.update_timeline{
    margin-top: 30px;
}
.row_timeline_new .col_right{
    padding-left: 50px;
}
#index-video-2{
    display: none;
}
.contactus .contact_address{
    padding: 50px 150px;
}
.text_address ul{
    margin-bottom: 50px;
    padding: 0;
}
.text_address li{
    list-style: none;
    padding: 0 0 10px 0;
}
.text_address li:nth-child(1){
    padding-top: 0;
}
.text_address li:nth-last-child(1){
    padding-bottom: 0;
}
.text_address li>p{
    margin: 0;
}
.text_address ul:nth-last-child(1){
    margin-bottom: 0;
}
.contactus .details_footer .social_media ul{
    margin: 0;
}
.slide_location{
    display: flow-root;
    width: 100%;
}
.slide_location .col-xs-6{
    padding: 0 5px;
}
.row_slidelocation{
    margin: 0 -5px;
}
select option.select_option{
    padding: 0 10px;
    color: black!important;
    -webkit-appearance: inherit;
    -moz-appearance: inherit;
    appearance: inherit;
    list-style: none;
    font-size: inherit;
    letter-spacing: initial;
    outline: none;
    font-family: inherit;
}