@charset "utf-8";
/* CSS Document */

body {
	font-family: 'Lato', sans-serif;
}

.bg-wrapper {
	overflow:hidden;
}
.bg-image {
	background-image: url("../img/bg-1.jpg");
	background-position: center center;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	animation: bg-1 50s ease-out both;
	fill-mode: backwards;
}
@keyframes bg-1 {
	0% {transform: scale(1);}
	100% {transform: scale(1.1);}
}
.pasek-text {
	font-size: 18px;
}

.parent img {
    height: 80px;
	opacity: 1;
}
.parent div {
	text-align: center;
	padding: 10px;
}
.parent div p {
	font-size: 20px;
	line-height: 21px;
	margin-top: 10px;
	color: #000;
}

@media all and (min-width:678px) {
.parent {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(7, 1fr);
grid-column-gap: 0px;
grid-row-gap: 0px;
}

.div1 { grid-area: 1 / 1 / 2 / 2; }
.div2 { grid-area: 1 / 2 / 2 / 3; }
.div3 { grid-area: 2 / 1 / 3 / 2; }
.div4 { grid-area: 2 / 2 / 3 / 3; }
.div5 { grid-area: 3 / 1 / 4 / 2; }
.div6 { grid-area: 3 / 2 / 4 / 3; }
.div7 { grid-area: 4 / 1 / 5 / 2; }
.div8 { grid-area: 4 / 2 / 5 / 3; }
.div9 { grid-area: 5 / 1 / 6 / 2; }
.div10 { grid-area: 5 / 2 / 6 / 3; }
.div11 { grid-area: 6 / 1 / 7 / 2; }
.div12 { grid-area: 6 / 2 / 7 / 3; }
.div13 { grid-area: 7 / 1 / 8 / 2; }
}

@media all and (min-width:992px){
.parent {
display: grid;
grid-template-columns: repeat(5, 1fr);
grid-template-rows: repeat(3, 1fr);
grid-column-gap: 0px;
grid-row-gap: 0px;
}

.div1 { grid-area: 1 / 1 / 2 / 2; }
.div2 { grid-area: 1 / 2 / 2 / 3; }
.div3 { grid-area: 1 / 3 / 2 / 4; }
.div4 { grid-area: 1 / 4 / 2 / 5; }
.div5 { grid-area: 1 / 5 / 2 / 6; }
.div6 { grid-area: 2 / 1 / 3 / 2; }
.div7 { grid-area: 2 / 2 / 3 / 3; }
.div8 { grid-area: 2 / 3 / 3 / 4; }
.div9 { grid-area: 2 / 4 / 3 / 5; }
.div10 { grid-area: 2 / 5 / 3 / 6; }
.div11 { grid-area: 3 / 2 / 4 / 3; }
.div12 { grid-area: 3 / 3 / 4 / 4; }
.div13 { grid-area: 3 / 4 / 4 / 5; }
}

.pokazsie {
	animation: pokazsie 3s ease-out both;
	animation-delay: 1.5s;
	fill-mode: backwards;
}
.pokazsie2 {
	animation: pokazsie 3s ease-out both;
	animation-delay: 4.5s;
	fill-mode: backwards;
}
@keyframes pokazsie {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
.navbar-con {
	background: rgb(0,0,0);
	background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 50%);
	height: 400px;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
}
.navbar-con.scrolled {
	height: auto;
	background: rgba(0,0,0,0.9);
}

:root {
  --font-size: 1;
  --color1: #f0ffff;
  --borderRadius: 1em;
}
.burger {
	font-size: var(--font-size);
	cursor: pointer;
	padding: 3em 1.5em;
	transform: scale(.7);
}
.burger.showHitArea {
  border: 1px solid olive;
}
.burger > div {
  width: 4em;
  height: 0.5em;
  border-radius: var(--borderRadius);
  background: var(--color1);
}
.burger > div::before, .burger > div::after {
  transition: font-size 0s;
  content: "";
  display: block;
  position: absolute;
  width: 4em;
  height: 0.5em;
  background: var(--color1);
  border-radius: var(--borderRadius);
}
.burger > div::before {
  margin-top: -1.5em;
}
.burger > div::after {
  margin-top: 1.5em;
}

.burger2 > div {
  transition: background 0.4s, font-size 0s;
}
.burger2 > div::before, .burger2 > div::after {
  transition: font-size 0s;
  transform-origin: center center;
}
.burger2.toggled > div::before {
  -webkit-animation: burg2top 0.4s linear forwards;
          animation: burg2top 0.4s linear forwards;
}
.burger2.toggled > div {
  background: transparent;
}
.burger2.toggled > div::after {
  -webkit-animation: burg2bottom 0.4s linear forwards;
          animation: burg2bottom 0.4s linear forwards;
}
.burger2.unToggled > div::before {
  -webkit-animation: burg2topReset 0.4s linear forwards;
          animation: burg2topReset 0.4s linear forwards;
}
.burger2.unToggled > div {
  background: var(--color1);
}
.burger2.unToggled > div::after {
  -webkit-animation: burg2bottomReset 0.4s linear forwards;
          animation: burg2bottomReset 0.4s linear forwards;
}
@-webkit-keyframes burg2top {
  20% {
    margin-top: 0em;
    transform: rotate(0deg);
  }
  60% {
    margin-top: 0em;
    transform: rotate(55deg);
  }
  100% {
    margin-top: 0em;
    transform: rotate(45deg);
  }
}
@keyframes burg2top {
  20% {
    margin-top: 0em;
    transform: rotate(0deg);
  }
  60% {
    margin-top: 0em;
    transform: rotate(55deg);
  }
  100% {
    margin-top: 0em;
    transform: rotate(45deg);
  }
}
@-webkit-keyframes burg2bottom {
  20% {
    margin-top: 0em;
    transform: rotate(0deg);
  }
  60% {
    margin-top: 0em;
    transform: rotate(-55deg);
  }
  100% {
    margin-top: 0em;
    transform: rotate(-45deg);
  }
}
@keyframes burg2bottom {
  20% {
    margin-top: 0em;
    transform: rotate(0deg);
  }
  60% {
    margin-top: 0em;
    transform: rotate(-55deg);
  }
  100% {
    margin-top: 0em;
    transform: rotate(-45deg);
  }
}
@-webkit-keyframes burg2topReset {
  0% {
    margin-top: 0em;
    transform: rotate(45deg);
  }
  20% {
    transform: rotate(0deg);
  }
  60% {
    margin-top: 1.7em;
    transform: rotate(0deg);
  }
  100% {
    margin-top: 1.5em;
    transform: rotate(0deg);
  }
}
@keyframes burg2topReset {
  0% {
    margin-top: 0em;
    transform: rotate(45deg);
  }
  20% {
    transform: rotate(0deg);
  }
  60% {
    margin-top: 1.7em;
    transform: rotate(0deg);
  }
  100% {
    margin-top: 1.5em;
    transform: rotate(0deg);
  }
}
@-webkit-keyframes burg2bottomReset {
  0% {
    margin-top: 0em;
    transform: rotate(-45deg);
  }
  20% {
    transform: rotate(0deg);
  }
  60% {
    margin-top: -1.7em;
    transform: rotate(0deg);
  }
  100% {
    margin-top: -1.5em;
    transform: rotate(0deg);
  }
}
@keyframes burg2bottomReset {
  0% {
    margin-top: 0em;
    transform: rotate(-45deg);
  }
  20% {
    transform: rotate(0deg);
  }
  60% {
    margin-top: -1.7em;
    transform: rotate(0deg);
  }
  100% {
    margin-top: -1.5em;
    transform: rotate(0deg);
  }
}

.mobilemenu {
    color: #fff;
}
.menu-tool {
    z-index: 999;
}
.navbar-mobilemenu {
    height: 300px;
    background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 50%);
}
.navbar-mobilemenu.open {
    height: 100vh;
    background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 50%), url("../img/bg-1-m.jpg");
    background-size: cover;
    background-position: center;
}

.mobilemenucon {
    display: none;
}

.navbar-mobilemenu.open .mobilemenucon {
    display: flex;
}
.mobilemenu a {
    font-size: 1.5em;
    line-height: 2.5em;
}
.mobile-tel {
    color: #fff;
    font-size: 2em;
    text-decoration: none;
    background-color: #caaf7d;
    width: 80vw;
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-align: center;
}
.mobile-tel:hover {
    text-decoration: none;
    color:#fff;
}
.mobile-fb {
    width:20vw;
    background-color: #212121;
}

.ngl-head {
	font-family: 'Lato', sans-serif;
	font-size: 2.5em;
	font-weight: 800;
	line-height: 1.1em;
	color: #fff;
	letter-spacing: 2px;
	text-shadow: 5px 5px 30px #000;
}
.ngl-des {
	font-family: 'Oswald', sans-serif;
	font-size: 1em;
	line-height: 2em;
	color: #fff;
	text-shadow: 5px 5px 30px #000;
	text-transform: uppercase;
}
@media all and (min-width:992px) {
	.ngl-head {
		font-size: 4em;
		line-height: 1.1em;
	}
.ngl-des {
		font-size: 1.5em;
		line-height: 2em;
	}
}
.ngl-2 {
	font-family: 'Lato', sans-serif;
	font-weight: 800;
	font-size: 5em;
	line-height: 0.5em;
	display: block;
}
.ngl-des-2 {
	font-family: 'Lato', sans-serif;
	font-size: 2em;
	font-weight: 800;
	margin-top: 15px;
	display: block;
}
.ngl-des-2b {
	font-family: 'Lato', sans-serif;
    font-size: 2em;
	font-weight: 800;
    line-height: 1em;
    margin-top: 5px;
    display: block;
}
.smalltxt {
	font-size: 0.5em;
}
.block-1 {
	background-color: #f1f1f1;
	color: #caaf7d;
}
.block-2 {
	background-color: #797877;
	color: #fff;
	height: 220px;
}
.dis-1 {
	font-size: 28px;
	font-weight: 800;
	text-transform: uppercase;
}
.bg-01 {
	background-image: url('../img/bg-01.jpg');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 80vh;
}
.bg-footer {
	background: url('../img/bg-footer.jpg') #454545;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
h1 {
	font-family: 'Lato', sans-serif;
	font-size: 2em;
	color:#cfa851;
	margin-bottom: 1em;
	}
p {
	font-family: 'Lato', sans-serif;
	font-size: 1.1em;
}

.grid-con {  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "iko1 iko2"
    "iko3 iko4"
    "iko5 iko6"
    "iko7 iko8"
    "iko9 ."
    ". .";
}
@media all and (min-width:992px){
	.grid-con {  display: grid;
	  grid-template-columns: 1fr 1fr 1fr;
	  grid-template-rows: 1fr 1fr 1fr;
	  gap: 0px 0px;
	  grid-auto-flow: row;
	  grid-template-areas:
		"iko1 iko2 iko3"
		"iko4 iko5 iko6"
		"iko7 iko8 iko9";
	}
}


.iko1 { grid-area: iko1; }

.iko2 { grid-area: iko2; }

.iko3 { grid-area: iko3; }

.iko4 { grid-area: iko4; }

.iko5 { grid-area: iko5; }

.iko6 { grid-area: iko6; }

.iko7 { grid-area: iko7; }

.iko8 { grid-area: iko8; }

.iko9 { grid-area: iko9; }

.grid-con img {
	width: 80px;
}
.grid-con p {
	padding: 0 20px;
    font-size: 14px;
    font-family: 'Oswald', sans-serif;
}
.grid-con > div {
	height: 170px;
}
.bg-wzw {
    background-color: #caaf7d;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.ngl-3 {
    font-family: 'Lato', sans-serif;
    font-size: min(6vw, 45px);
}
.ngl-4 {
    font-family: 'Lato', sans-serif;
    font-size: min(6vw, 25px);
}
.ngl-bg {
	background-image: url("../img/ngl-bg.png");
	background-repeat: no-repeat;
	background-size: 70%;
	background-position: center;
}
.form-con input, .form-con textarea {
    background-color: transparent;
    border: solid 8px #ded1b2;
    transition: border 0.5s;
    padding: 1rem;
    width: 100%;
    margin: 0.6rem 0rem;
    color: #fff;
    display: block;
    font-size: 20px;
}
::placeholder {
    opacity: .5;
    color: white;
    transition: opacity 0.5s;
}

:focus::placeholder {
    opacity: 1;
    transition: opacity 0.5s;
}
.color-5 {
	color: #cfa851;
}
#formularz5 input, #formularz5 textarea {
    width: 100%;
    background: transparent;
    outline: none;
    border: 0;
    padding: 5px;
    border-bottom: 2px solid #000;
    color: #000;
    font-size: 20px;
    font-weight: 300;
    margin: 1em 0;
}
#formularz5 input::-webkit-input-placeholder, #formularz5 textarea::-webkit-input-placeholder {
 color: #000;
 opacity: 0.8;
}

#formularz5 .check-con label {
    color: #000;
}

#formsubmit {
    font-family: 'Lato', sans-serif;
    font-size: min(6vw, 20px);
    background-color: #000;
    border: none;
    padding: 0.5em 1.3em;
}
.css-checkbox {
    overflow: hidden; 
    clip: rect(0 0 0 0); 
    height: 1px; 
    width: 1px; 
    margin: -1px; 
    padding: 0; 
    border: 0;
}
#inputPreview {
    display: flex; 
    gap: 20px; 
    justify-content: center;
}
.css-checkbox + label {
    position: relative;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    height: 27px;
    color: rgb(0, 0, 0);
}
.css-checkbox + label::before {
    content: " ";
    display: inline-block;
    vertical-align: middle;
    margin-right: 3px;
    width: 35px;
    height: 35px;
    background-color: rgb(237, 231, 216);
    border-width: 1px;
    border-style: solid;
    border-color: rgb(222, 209, 178);
    border-radius: 2px;
    box-shadow: none;
}
.css-checkbox:checked + label::after {
    content: " "; background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBmaWxsPSIjMzMzMjMwIiBkPSJNMTczLjg5OCA0MzkuNDA0bC0xNjYuNC0xNjYuNGMtOS45OTctOS45OTctOS45OTctMjYuMjA2IDAtMzYuMjA0bDM2LjIwMy0zNi4yMDRjOS45OTctOS45OTggMjYuMjA3LTkuOTk4IDM2LjIwNCAwTDE5MiAzMTIuNjkgNDMyLjA5NSA3Mi41OTZjOS45OTctOS45OTcgMjYuMjA3LTkuOTk3IDM2LjIwNCAwbDM2LjIwMyAzNi4yMDRjOS45OTcgOS45OTcgOS45OTcgMjYuMjA2IDAgMzYuMjA0bC0yOTQuNCAyOTQuNDAxYy05Ljk5OCA5Ljk5Ny0yNi4yMDcgOS45OTctMzYuMjA0LS4wMDF6Ii8+PC9zdmc+");
    background-repeat: no-repeat;
    background-size: 15px 15px;
    background-position: center center;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0px;
    left: 0px;
    top: 0px;
    text-align: center;
    background-color: transparent;
    font-size: 10px;
    height: 30px;
    width: 36px;
}
.check-con input {
    margin: 0;
    height: 0;
    outline: 0;
    line-height: 0;
    display: none;
}
.check-con {
    line-height: 15px;
    margin: 0;
    height: fit-content;
}
.check-con label {
    font-family: 'Lato', sans-serif;
    font-size: 0.8em;
    line-height: 1.2em;
    color: #fff;
}
#form-message {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
	padding: 1rem 0;
}
.footer a {
    color: #fff;
    text-decoration: none;
}
.form-data {
    line-height: 20px
}
.bg-wzw-2 {
    background-color: #dbdbdb;
}
.footermenu a {
    color: #000;
    font-size: 11px;
    text-decoration: none
}
.wykonawca a {
    color: #000;
    font-size: 10px;
    text-decoration: none;
    opacity: 0.7;
}
.wykonawca a:hover {
    opacity: 1;
}
.footer-logo {
    width: 230px;
    height: 74px;
}
.rozwin, .czytaj {
    background-color: transparent;
    color: #fff;
    font-size: 12px;
    margin-left: 10px;
    border: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
.rozwin:hover {
    cursor: pointer;
}
.daneosobowe {
    font-size: 10px;
    color: #fff;
    padding: 1rem;
    text-align: justify;
}
.height-0 {
    height: 0;
    overflow: hidden;
    opacity: 0;
    display: none;
}
.fbicon {
    opacity: 1;
    filter: saturate(0);
    transition: all 0.5s;
}
.fbicon:hover {
    opacity: 1;
    filter: saturate(1);
    transition: all 0.5s;
}
.fbicon-white img {
    opacity: 1;
    filter: saturate(0);
    transition: all 0.5s;
    mix-blend-mode: plus-lighter;
}
.pasek {
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
}	
.bg-p-1 {
    background-color: #ededed;
}
#pasek-dom {
	font-size: 20px;
}
.mob-dane {
	font-size: 12px;
}
.mob-dane .mob-block:nth-child(-n+3){
    border-right: solid 1px #ededed;
}
.pasek-1, .pasek-2, .pasek-3 {
    padding: 0.6rem;
}
.pasek-2, .pasek-2:hover {
    background-color: #000;
    color:#fff;
    text-decoration: none;
    text-align: center;
}
.pasek-3, .pasek-3:hover {
    background-color: #cfa851;
    color:#fff;
    text-decoration: none;
    text-align: center;
}
.pasek-2, .pasek-3 {
    width: 90px;
}
.pasek-status.wolny {
    color:#68CD2B;
}
.pasek-status.zarezerwowany {
    color:#cf6b00;
}
.pasek-status.sprzedany {
    color:#c5001c;
}
@media all and (max-width:991px){
    #pasek-con {
        display: block;
    }
    .dymek {
        display: none;
    }
}
@media all and (min-width:992px){
    #pasek-con {
        display: none;
    }
    .dymek {
        display: block;
    }
}


.lista-head div {
    font-size: 18px;
    font-family: 'Roboto Condensed', sans-serif;
    background-color: #ededed;
    padding: 15px 0;
}
.lista-body div {
    font-size: 15px;
    font-family: 'Roboto Condensed', sans-serif;
    padding: 12px 0;
    
}
.but-2, .but-2:hover {
	background-color: #A78C5A;
	color: #000;
	text-decoration: none;
	padding: 5px 10px;
	color: #fff;
	cursor: pointer;
}
.col-con {
	display: flex;
	align-items: center;
	justify-content: center;
}

.lista-karta, .lista-karta:hover {
    color: #000;
    text-decoration: none;
    background-color: #000;
    color: #fff;
    padding: 5px 15px;
}

.lista-status.wolny {
    color:#68CD2B;
}
.lista-status.zarezerwowany {
    color:#cf6b00;
}
.lista-status.sprzedany {
    color:#c5001c;
}
.nrc {
	font-size: 11px;
}	
	

.succes {
    background-color: #008d5085;
    padding: 1rem;
    color: #fff;
}
.error {
    background-color: #8d001685;
    padding: 1rem;
    color: #fff;
}
.bg-d-01, .bg-d-02, .bg-d-03 {
	min-height: 600px;
}
.bg-d-01 {
    background-image: url(../img/warszawska-z-widokiem-kredyt.jpg);
    background-size: cover;
    background-position: right center;
}
.bg-d-02 {
    background-image: url(../img/warszawska-z-widokiem-wykonczenie-m.jpg);
    background-size: cover;
    background-position: left center;
}
@media all and (min-width: 992px) {
	.bg-d-02 {
		background-image: url(../img/warszawska-z-widokiem-wykonczenie.jpg);
	}
}
.bg-d-03 {
    background-image: url(../img/warszawska-z-widokiem-sprzedaz-m.jpg);
    background-size: cover;
    background-position: right center;
}
@media all and (min-width:992px) {
	.bg-d-03 {
		background-image: url(../img/warszawska-z-widokiem-sprzedaz.jpg);
	}
}
.p-20 {
	font-family: 'Lato';
    font-size: 20px;
}

.button-1{
	background-color: #fff;
	border: solid 4px #f6efe1; 
	padding: 0.7em 2em 0.7em ;
	display: inline-block;
	height: 60px;
	text-decoration: none;
	font-size: 18px;
	font-weight: 800;
	color: #cfa851;
	transition: all 0.5s;
}
.button-1:hover{
	background-color: #f6efe1;
	transition: all 0.5s;
	color: #cfa851;
	cursor: pointer;
}
.button-2 {
    color: #000; font-family: 'Lato', sans-serif; font-weight: 800; text-decoration: none; border: solid 3px #000; padding: 5px 7px; display: inline-block;  transition: all 0.5s;
}
.button-2:hover {
    color: #fff; background-color: #000; transition: all 0.5s; cursor: pointer;
}
.button-3 {
    background-color: #ECDAB2; text-transform: uppercase;  color: #000; font-family: 'Lato', sans-serif; font-weight: 800; text-decoration: none; padding: 15px 10px; margin: 0 5px;  display: inline-block; transition: all 0.5s;
}
.button-3:hover {
    color: #000; background-color: #DCC186; transition: all 0.5s;
}
#pasek {
    font-family: 'Lato', sans-serif;
    color: #b5b5b5;
}
#pasek span {
    font-weight: 800;
    color: #000;
}
#lokal {
    font-size: 28px;
    font-weight: 800;
    margin-right: 10px;
    color: #000;
}
#nieruchomosc {
    margin-top: -5px;
}
.con-kontakt {
    position: fixed;
    right: 0;
    top: 45%;
    z-index: 9999;
}
.kon-b, .kon-b-mob {
    background-color: #caaf7d;
    padding: 10px;
}

.kon-b-2 {
    background-color: #4F4F4F;
    padding: 10px;
}
.kon-but {
    cursor: pointer;
}
.stopka-kontakt {
	background: #fff;
	background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.kontakt {
    position:fixed;
    height: 100%;
    width: 100%;
    background: url("../img/bg-kontakt.jpg") #dcc186;
    z-index: 99999;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.mobile-href, .mobile-href:hover {
    text-decoration: none;
    color: inherit;
}
@media all and (min-width:992px){
    .mobile-href, .mobile-href:hover {
        cursor: text;
        pointer-events: none;
    }
}
input, textarea {
    width: 100%;
    background: transparent;
    outline: none;
    border: 0;
    padding: 5px;
    border-bottom: 2px solid #fff;
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    margin: 1em 0;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
 color: #fff;
 opacity: 0.8;
}
.close-form {
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.5s;
}
.close-form:hover {
    opacity: 1;
    transition: all 0.5s;
}
.button-4 {
    padding: 10px 20px;
    border: 0;

}		
.nav-text, .nav-2 {
    font-size: 18px;
    font-weight: 900;
    line-height: 12px;	
}
.nav-b {
    padding: 15px 5px 10px;
    background-color: #FBFBFB;
    border: solid 4px #dcc186;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.5s;				
}
.nav-b.nav-b-a {
    background-color: #dcc186;
    border: solid 4px #dcc186;
    cursor: pointer;
    opacity: 1;
    transition: 0.5s;				
}
.nav-n {
    font-size: 12px;
}
@media all and (min-width:638px){
.nav-text, .nav-2 {
    font-size: 30px;
    font-weight: 900;
    line-height: 25px;	
    }
.nav-n {
    font-size: 16px;
}
.nav-b {
    padding: 15px 15px 10px;
    background-color: #FBFBFB;
    border: solid 4px #dcc186;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.5s;				
}
.nav-b.nav-b-a {
    padding: 15px 15px 10px;
    background-color: #dcc186;
    border: solid 4px #dcc186;
    cursor: pointer;
    opacity: 1;
    transition: 0.5s;				
}
}

.nav-2 {
    cursor: pointer;
    opacity: 0.6;
}
.nav-2.nav-2-a {
    cursor: pointer;
    opacity: 1;
}
#panolens {
    display: block;
    height: 640px;
    position: relative;
    border-left: 0;
    border-bottom: 0;
}
.text-1, .text-1:hover {
    font-size: 18px;
    color: #000;
    text-decoration: none;
    margin-top: 10px;
    display: block;
}
video {
  display: block;
  height: auto;
  margin: auto;
  position: relative;
  width: 100%;
}
.video-wrap {
  margin: 0 auto;
  position: relative;
  width: 100%;
}
.video-wrap:after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}