
:root {
	--background-color-gray: #efefef;
}

section.block {
	padding-top:0;
   
}
section.block article{
	display:flex;
}
section.block article .video{
	width:55%;
	display:grid;
	align-content: center;
}
section.block article .video video{
	width:100%;
	max-height:100vh;
}
section.block article .text{
	display:grid;
	align-content: center;
	width: 55%;
    padding:0 20px;
}
section.block article .image{
	display:grid;
	align-content: center;
	width: 45%;
}
section.block article .image img{
	width: 100%;
}
section.hasbgcolor.gray{
    background-color:var(--background-color-gray);
}

.inline-images img{
    max-width:45%;
}


.video-player {
    overflow: hidden;
    width: 100%;
    height: 80vh;
}

section article.fullwidth{
    display:flex;
    width:100% !important;
    max-width:initial;
    padding:45px 0;
    
}
section.block article.fullwidth .text {
	display:grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:"a b";
	align-content: center;
	width: 45%;
}
section.block article.fullwidth .text p {
    grid-area: b;
    text-align: center;
    width:100%;
    padding:25px;
}
section.block article.fullwidth .image {
	display:grid;
	align-content: center;
	width: 55%;
    overflow:hidden;
}
section.block article.fullwidth .image img {
    width:100%;
}

.inline-images img{
    max-width:100%;
}

.inline-images-two{
    display:flex;
    gap:4%;
}
.inline-images-two img{
    display:grid;
    max-width:48%;
}

button.pnw_newres {
    background-color:#e36125;
    color:white;
    border-radius:5px;
    font-size:1.2em;
    padding:10px 12px;
    border:0;
    cursor:pointer;
}
button.pnw_newres:hover{
    background-color: #de383d;
}

.fs16{
    font-size:16px;
}

div.text.mobile {
    display:none !important;
}


/* -- search form -- */
.closerezform{

}
.pnw_sformwrapper {

}
.pnw_sformwrapper .sform {
	width: 80%;
	margin: 0 auto;
	background: #fff;
	text-align: left;
	display: flex;
	flex-wrap: wrap;
	padding: 10px;
	box-shadow: none;
	max-width:1200px;
}
.pnw_sformwrapper .sform .param{
	display: grid;
	flex: 0 0 100%;
	padding: 10px;
	text-align: center;
	white-space: nowrap;
}
.pnw_sformwrapper .sform .param .label{
	padding:3px;
	text-align: center;
	border-bottom:1px solid #ccc;
	margin-bottom: 3px;
	color:#666;
}
.pnw_sformwrapper .sform .datefrom{
    display: grid;	
}
    .pnw_sformwrapper .sform .param input, .sform .param select {
        border:2px solid white; 
        background-color: white;
        text-align: center;
        padding:5px;
        width:100%;
    }



    .pnw_sformwrapper .sform .param input:focus{
        outline:0;
    }

    .pnw_sformwrapper .sform .date{
        display: grid;
    }
    .pnw_sformwrapper .sform .search {
        display: grid;
        background-color: #e36125;
        align-content: center;
        transition: all 0.2s ease;
        color: white;
        cursor: pointer;
        border: 0;
    } 
    .pnw_sformwrapper .sform .search:hover{
        background-color: #de383d;
    }

    .pnw_sformwrapper p {
        width:100%;
    }

.accommodation{
	border: 2px solid white;
}







@media (max-width: 1200px) {
    section.block article.fullwidth .text {
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas:"a";
        width: 55%;
    }
    section.block article.fullwidth .text p {
        width: 100%;
    }
    section.block article.fullwidth .image {
        width: 45%;
    }
}

@media (max-width: 760px) {
    div.text.desktop {
        display:none !important;
    }
    div.text.mobile {
        display:block !important;
    }
    section.block article{
        display:block;
    }
    section.block article .video{
        display:block;
        align-content: center;
        width: 100%;
    }
    section.block article .text{
        display:block;/*none*/
        align-content: center;
        width: 100%;
    }
    section.block article .image{
        display:block;/*none*/
        align-content: center;
        width: 100%;
    }
    .inline-images img{
        max-width:100%;
    }

    section.block article.fullwidth .text {
        display:block;
        width: 100%;
    }
    section.block article.fullwidth .text p {
        display:block;
        width: 100%;
    }
    section.block article.fullwidth .image {
        display:block;
        width: 100%;
    }


}