@media only screen and (max-width: 1000px) {.d {display: none; visibility: hidden;}}
@media only screen and (min-width: 1000px) {.m {display: none; visibility: hidden;}}

::-webkit-scrollbar {width: 0px;}

:root {
    --header: rgba(255, 255, 255, 0.8);
    --bannerbox: rgba(255, 255, 255, 0.8);
    --lightBlur: rgba(255, 255, 255, 0.8);
}

html {scroll-behavior: smooth;}
html > div[style] {
    display: none !important;
  }


body {
    padding: 0px;
    margin: 0px;
    font-family: Regular;
    overflow-x: hidden;
}

a{
    color: rgb(0, 140, 255);
    text-decoration: none;
    text-shadow: 0px 0px 10px rgba(0, 140, 255, 0.3);
}
a:hover {
    text-decoration: underline;
}

button {
    border-radius: 100px;
    border-style: none;
    background-color: rgb(12, 146, 255);
    color: white;
    padding: 8px 12px 8px 12px;
    font-size: 15px;
    font-weight: none;
    text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition-duration: 0.4s;
}
button:hover {
    text-shadow: 0px 0px 10px rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 50px 0px rgba(94, 158, 255, 0.3);
}

tr {align-items: center; padding: 0px;}
td {padding: 0px; margin: 0px; transform: perspective(1px);}
table {padding: 0px; margin: 0px; border-collapse: collapse;}
tbody {padding: 0px; margin: 0px;}
hr {width: 50%; opacity: 0.2; margin-top: -10px;}







/*IDS*/
#header {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 70px;
    z-index: 1000;
    box-shadow: none;
    transition-duration: 0.4s;
    transform: perspective(1px);
    border-radius: 0px 0px 5px 5px;
}
#header-mobile {
    position: fixed;
    top: 0px;
    left: 0px;
    height: 80px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(1.8);
    z-index: 1000;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
}
#headerBg {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: var(--header);
    backdrop-filter: blur(20px) saturate(1.8);
    z-index: 1;
    opacity: 0;
    transition-duration: 0.4s;
    border-radius: 0px 0px 5px 5px;
}
#title {
    position: fixed;
    width: 200px;
    text-align: center;
    left: 50px;
    top: 50px;
    font-size: 30px;
    padding: 0px;
    margin: 0px;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
    z-index: 10;
    transition-duration: 0.4s;
    /*filter: invert(1);*/
    transform: scale(1.5);
    
}
#title-mobile {
    position: fixed;
    left: 10px;
    top: -10px;
    padding: 0px;
    font-size: 30px;
    text-transform: uppercase;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}
#logo {
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    background-size: contain;
    background-image: url("../media/logo.png");
    height: 80px;
    width: 250px;
    filter: invert(1) drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.6));
    z-index: 10;
    transition-duration: 0.4s;
    position: fixed;
    left: 5px;
    top: -5px;
    display: none;
}
#menu {
    position: fixed;
    right: 40px;
    top: 35px;
    height: 100%;
    border-style: none;
    padding-top: 20px;
    z-index: 10;
    transition-duration: 0.4s;
    /*filter: invert(1);*/
    transform: scale(1.12);
}
#menu-mobile {
    position: fixed;
    right: 15px;
    top: 15px;
    width: 48px;
    height: 48px;
    background-image: url("../media/menu.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px;
    transition-duration: 0.2s;
}
#mobile-menu-overlay {
    position: fixed;
    visibility: hidden;
    top: -100%;
    left: 0px;
    width: 100%;
    height: calc(100% - 100px);
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(1.8);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.6);
    transition-duration: 0.4s;
    padding-top: 100px;
}

#banner {
    background-repeat: no-repeat;
    background-size: 103%;
    background-position: center;
    background-image: url("../media/banner/banner4.jpg");
    height: calc(100% - 50px);
    box-shadow: inset 0px -5px 20px rgba(0, 0, 0, 0.3);
    /*filter: brightness(0.6) saturate(1.3);*/
    transform: perspective(0px);
    background-attachment: fixed;
    transition-duration: 0.6s;
}
#banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: saturate(1.3);
    box-shadow: inset 0px 0px 20px 0px rgba(0, 0, 0, 0.6);
}
#fade {
    position: fixed;
    z-index: 1;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 200px;
    background-image: linear-gradient( 180deg,  rgba(255, 255, 255, 0.9) 1%, rgba(187,187,187,0) 99.4% );
}
#banner-mobile {
    background-repeat: no-repeat;
    background-size: cover; 
    background-position: center;
    background-image: url("../media/banner/banner-mobile1.jpg");
    height: calc(100% - 50px);
    box-shadow: inset 0px -5px 20px rgba(0, 0, 0, 0.3);
    /*filter: brightness(0.6) saturate(1.3);*/
    transform: perspective(0px);
    background-attachment: fixed;
    transition-duration: 0.6s;
}
#banner-mobile video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.3);
}
#bannerbox {
    width: 700px;
    height: 100px;
    background-color: var(--bannerbox);
    position: fixed;
    bottom: -50px;
    left: calc(50% - 350px);
    z-index: 100px;
    backdrop-filter: blur(20px) saturate(1.8);
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}


#loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 9999999;
    transition-duration: 0.6s;
}
#welcometxt {
    position: fixed;
    width: 500px;
    left: calc(50% - 250px);
    top: 45%;
    text-align: center;
    font-size: 40px;
    text-transform: uppercase;
    text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.6);
    transition-duration: 0.6s;
    transform: scale(0);
}

#overlay {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 150%;
    z-index: 9999999;
    background-color: rgba(0, 0, 0, 0.6);
    visibility: hidden;
    opacity: 0;
    transition-duration: 0.2s;
}

#infobox {
    position: fixed;
    width: 600px;
    min-height: 100px;
    max-width: calc(100% - 20px);
    height: max-content;
    background-color: #fff;
    left: 50%;
    top:50%;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
    transition-duration: 0.4s;
    transform: perspective(1px) translateY(-50%) translateX(-50%);
}
#infoboxTitle {
    position: fixed;
    left: 20px;
    top: 15px;
    font-size: 24px;
    padding: 0px;
    margin: 0px;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
}
#infoboxText {
    width: calc(100% - 50px);
    height: 100%;
    margin-top: 60px;
    padding: 25px;
    font-size: 18px;
    text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.6);
}

#bttt {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 4;
    height: 60px;
    width: 60px;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(1.8);
    border-radius: 100px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    background-image: url("../media/up.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
    opacity: 0.8;
}

#details {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
    min-height: 600px;
    min-width: 600px;
    width: 80%;
}

#gallery {
    width: calc(100% - 100px);
    position: fixed;
    min-width: 600px;
    height: calc(100% - 60px);
    min-height: 450px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

#imageView {
    margin-left: 20px;
    margin-top: 20px;
    width: calc(100% - 120px);
    height: calc(100% - 40px);
    box-shadow: inset 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: perspective(1px);
    transition-duration: 0.4s;
}

#imgList {
    position: fixed;
    right: 10px;
    top: 50px;
    width: 80px;
    height: calc(100% - 90px);
    box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    overflow-y: scroll;
}





/*CLASSES*/
.strip {
    width: 100%;
    min-height: 60px;
    align-items: center;
    margin: 20px 0px 20px 0px;
    background-repeat: no-repeat;
}

.stripImage {
    height: 100%;
    width: 50%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    box-shadow: inset 0px 0px 50px rgba(0, 0, 0, 0.3);
}

.subtitle {
    width: 100%;
    text-align: center;
    font-size: 30px;
    text-transform: uppercase;
    text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0px;
    margin-top: 20px;
    color: #000;
}

.text {
    width: 500px;
    border-style: none;
    text-align: center;
    margin-left: calc(50% - 250px);
    font-size: 20px;
    font-weight: normal;
    position: absolute;
    top: 0px;
    margin-top: 80px;
    margin-bottom: 40px;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
.textM {
    width: calc(100% - 40px);
    padding: 5px 20px 5px 20px;
    text-align: center;
    font-size: 18px;
}

.fixed {
    background-attachment: fixed;
}

.box {
    width: 600px;
    background-color: var(--lightBlur);
    backdrop-filter: blur(20px) saturate(1.8);
    border-radius: 10px;
    min-height: 100px;
    position: absolute;
    left: calc(50% - 300px);
    margin-top: 100px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
}

.menubtn {
    background-color: transparent;
    color: #000;
    text-transform: uppercase;
    font-size: 14px;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    font-weight: bold;
}
.menubtn:hover {
    box-shadow: none;
    text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.8);
    text-decoration: underline;
}
.mobile-menuBtn {
    width: 100%;
    text-align: center;
    font-size: 25px;
    text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}


/*PLAN*/
.plan { /* BG SIZE: 1920x1964 */
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    width: 300px;
    height: 400px;
    transition-duration: 0.2s;
    margin-top: 40px;
    background-image: url("../media/empty-plan.jpg");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    transform: perspective(1px);
}
.planM{
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    width: 250px;
    height: 350px;
    transition-duration: 0.2s;
    margin-top: 40px;
    background-image: url("../media/empty-plan.jpg");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    margin-left: calc(50% - 125px);
    transform: perspective(1px);
}
.plan:hover {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}
.planBtn {
    position: absolute;
    bottom: 20px;
    left: calc(50% - 120px);
    width: 200px;
}
.disabled {
    background-color: black;
    cursor:auto;
    opacity: 0.2;
    text-shadow: none;

}
.disabled:hover {box-shadow: none;}

.progressContainer {
    width: 100%;
    position: fixed;
    bottom: 75px;
    transform: perspective(1px);
}
.progressStep {
    width: 10px;
    height: 20px;
    background-color: rgb(216, 216, 216);
    border-radius: 10px;
    margin-bottom: -12px;
    z-index: 10;
    position:relative;
}
.progressbar {
    width: 100%;
    height: 5px;
    background-color: rgb(216, 216, 216);
    z-index: 1;
}
.green {
    background-color: rgb(83, 206, 83);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}
.ggold {background-image: linear-gradient( 90.1deg,  rgba(83,206,83,1) 50.4%, rgba(235,189,37,1) 100.2% );}
.ggrey {background-image: linear-gradient( 90.1deg,  rgba(235,189,37,1) 50.4%, rgba(216, 216, 216,1) 100.2% );}
.gold {
    background-color: rgb(235, 189, 37);
}

.progressStep .tooltip {
    visibility: hidden;
    min-width: 100px;
    width:max-content;
    transform: translateX(-40%);
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px) saturate(1.8);
    color: #fff;
    text-align: center;
    border-radius: 10px;
    padding: 5px 10px;
    position: absolute;
    z-index: 101;
    margin-top: -40px;
    opacity: 0;
    transition-duration: 0.2s;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
}
.progressStep:hover .tooltip {
    visibility:  visible;
    opacity: 1;
}

.closebtn {
    position: fixed;
    right: 20px;
    top: 20px;
    height: 20px;
    width: 20px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("../media/close.png");
    cursor: pointer;
}
.mobileLine {
    width: 1px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.1);
    min-height: 100px;
    margin-left: 50%;
    margin-bottom: 45px;
}


.pjvSideBtn {
    width: calc(100% - 20px);
    margin-left: 10px;
    height: 50px;
    border-radius: 10px;
    margin-top: 10px;
    
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    color: #000;
    font-family: Regular;
    font-weight: bold;
    font-size: 20px;
}

.tiktokInv {
    background-color: #000000;
    width: 118px;
    text-align: right;
    background-repeat: no-repeat;
    background-position: 7px;
    background-size: 23px;
    background-image: url("../media/tiktok.webp");
    margin-left: 50%;
    transform: translateX(-50%);
    color: #fff;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.6);
}
.tiktokInv:hover {
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6);
    filter: brightness(1.1);
    background-color: #fff;
    color: #000;
}

.footerText {
    width: 100%;
    text-align: center;
    opacity: 0.5;
    font-size: 16px;
}

.mobileProgress {
    height: 5px;
    width: calc(100% - 60px);
    margin-left: 30px;
    position: fixed;
    bottom: 65px;
    box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    background-image: linear-gradient( 90.1deg,  rgba(83,206,83,1) 10%, rgba(156, 151, 135, 0) 0% );
    border-radius: 10px;
}

.imgViewNav {
    position: fixed;
    top: 0px;
    height: 100%;
    min-width: 100px;
    width: 20%;
    border-radius: 5px 0px 0px 5px;
    background-color: transparent;
    font-size: 20px;
    text-shadow: 0px 0px 10px #000;
}
.imgViewNav:hover {box-shadow: none; backdrop-filter: blur(2px) brightness(0.8); text-shadow: 0px 0px 10px #747474;}
.imgThumb {
    height: 70px;
    width: 70px;
    border-radius: 5px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-left: 5px;
    margin-top: 12px;
    transition-duration: 0.6s;
    filter: brightness(0.9);
    cursor: pointer;
}
.imgThumb:hover {
    transform: scale(1.05);
    box-shadow: 0px 2px 30px 0px rgba(0, 0, 0, 0.2);
    filter: brightness(1.1);
}

/*.ingatlan*/
.ingatlan {
    position: absolute;
    right: 25px;
    bottom: 20px;
    width: 33px;
    background-image: url("https://ingatlan.com/images/icon.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 25px;
    padding: 0px;
    height:33px;
    border-radius: 0px;
    background-color: transparent;
}.ingatlan:hover {box-shadow: none;}
.ingatlan .tooltip {
    visibility: hidden;
    min-width: 100px;
    width:max-content;
    transform: translateX(-40%);
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px) saturate(1.8);
    color: #fff;
    text-align: center;
    border-radius: 10px;
    padding: 5px 10px;
    position: absolute;
    z-index: 101;
    margin-top: -40px;
    opacity: 0;
    transition-duration: 0.2s;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
}
.ingatlan:hover .tooltip {
    visibility:  visible;
    opacity: 1;
}
.mIngatlan {
    background-color: white;
    border-radius: 0px 0px 5px 5px;
    position: fixed;
    right: 20px;
    top: 0px;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-image: url("https://ingatlan.com/images/icon.png");
    background-position: center;
    background-size: 25px;
}

.driveBtn {
    background-image: url("../media/googleDrive.png");
    background-repeat: no-repeat;
    background-position: 10px;
    background-size: 20px;
    padding-left: 20px;
    width: 250px;
    background-color: #ffffff;
    color: #000;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
}
.driveBtn:hover {
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.3);
}

.hide {display: none;}