/* Import Rules */
 @import url('https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,600,700,900&display=swap');

/* grid.css | Jun 13, 2023 @8:25:24 AM  */

.grid-item.colors div {
height: 8px; 
}
.grid-item.colors .purple {
background-color: #4B0082;
}
.grid-item.colors .blue {
background-color: #0000FF;
}
.grid-item.colors .green {
background-color: #00FF00;
}
.grid-item.colors .yellow {
background-color: #FFFF00;
}
.grid-item.colors .orange {
background-color: #FF7F00;
}
.grid-item.colors .red {
background-color: #FF0000;
}

.grid {
display: grid;
grid-template-columns: repeat(auto-fill, 500px);
grid-gap: 20px;
}

.grid.wallpaper {
grid-template-columns: repeat(auto-fill, 240px);
}

.grid.two {
grid-template-columns: repeat(auto-fill, 1020px);
}

.grid.colors {
grid-template-rows: auto;
}

.grid-item:not(.content) .copy {
display: grid;
grid-gap: 20px;
height: 100%;
}

.grid-item.content.full .copy {
grid-template-columns: 1fr;
grid-template-rows: auto;
}

.grid-item.full .copy {
grid-template-columns: 1fr;
/* grid-template-rows: 373px; */
grid-template-rows: 333px;
}

.grid-item.double {
grid-column: span 2;
}

.grid-item.singles .copy {
display: grid;
grid-template-columns: 1fr 1fr;
/* grid-template-rows: 176.5px 176.5px; */
grid-template-rows: 156.5px 156.5px;
overflow: hidden;
}
.grid-item.half-half .copy {
grid-template-columns: 1fr 1fr;
/* grid-template-rows: 373px; */
grid-template-rows: 333px;
}
.grid-item.singles-half .copy {
grid-template-columns: 1fr 1fr;
/* grid-template-rows: 176.5px 176.5px; */
grid-template-rows: 156.5px 156.5px;
}
.grid-item.singles-half .copy div:nth-child(1) {
grid-column: 1 / 2;
grid-row: 1 / 2;
}
.grid-item.singles-half .copy div:nth-child(2) {
grid-column: 1 / 2;
grid-row: 2 / 3;
}
.grid-item.singles-half .copy div:nth-child(3) {
grid-column: 2 / 3;
grid-row: 1 / 3;
}
.grid-item.half-singles .copy {
grid-template-columns: 1fr 1fr;
/* grid-template-rows: 176.5px 176.5px; */
grid-template-rows: 156.5px 156.5px;
}
.grid-item.half-singles .copy div:nth-child(1) {
grid-column: 1 / 2;
grid-row: 1 / 3;
}
.grid-item.half-singles .copy div:nth-child(2) {
grid-column: 2 / 3;
grid-row: 1 / 2;
}
.grid-item.half-singles .copy div:nth-child(3) {
grid-column: 2 / 3;
grid-row: 2 / 3;
}
.grid-item.colors {
background: none;
display: grid;
grid-template-columns: 1fr 1fr;
grid-gap: 20px;
padding-bottom: 50px;
}

.grid.footer .grid-item.colors {
padding-top: 50px;
}

.grid-item .photo, .grid-item .video {
overflow: hidden;
position: relative;
height: auto;
padding: 0;
}
.grid-item .photo img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: bottom;
}
.grid-item .photo:not(.permalink) span {
width: 100%;
position: absolute;
top: 55%;
left: 0;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
text-align: left;
padding: 25px;
font-size: 1.6rem;
z-index: 3;
color: #C4C4C4;
opacity: 0;
transition: 0.5s ease all;
}

.grid-item .photo:not(.permalink) span strong {
font-size: 2rem;
font-weight: 200;
color: #fff;
}

.grid-item .photo:not(.permalink) span a {
text-decoration: none;
color: #FFAD01;
}

.grid-item .photo:not(.permalink) span a:hover {
color: #fff;
}

.grid-item .photo:not(.permalink):after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(44,44,44, 0.95);
z-index: 2;
opacity: 0;
transition: 0.5s ease all;
}

.grid-item .photo:not(.permalink):hover span {
opacity: 1;
top: 50%;
}

.grid-item .photo:not(.permalink):hover:after {
opacity: 1;
}

.grid-item .photo.permalink {
text-align: center;
}
.grid-item .photo.permalink a {
display: inline-block;
width: 100%;
height: 100%;
}

.grid-item .photo.permalink a:hover span {
color: #FFAD01;
}

.grid-item .photo.permalink img {
filter: brightness(60%);
}

.grid-item .op-80 img {
filter: brightness(80%) !important;
}

.grid-item .op-90 img {
filter: brightness(90%) !important;
}

.grid-item .photo.permalink span {
width: 100%;
padding: 10px;
position: absolute;
top: 50%;
left: 0;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
font-size: 1.6rem;
font-weight: 500;
text-align: center;
color: #fff;
transition: 0.2s ease all;
}

.grid-item .video a {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
text-decoration: none;
}

.grid-item .video a strong {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%,-50%);
transform: translate(-50%,-50%);
text-align: center;
color: #fff;
font-size: 2rem;
font-weight: 300;
width: 90%;
}

.grid-item .video a strong i {
position: relative;
font-size: 3rem;
width: 120px;
height: 120px;
border-radius: 50%;
border: 2px solid #fff;
margin-bottom: 20px;
transition: 0.5s ease all;
}

.grid-item .video a:hover strong i {
width: 140px;
height: 140px;
}

.grid-item .video a strong i:before {
position: absolute;
top: 50%;
left: 52%;
-webkit-transform: translate(-50%,-50%);
transform: translate(-50%,-50%);
}

.grid-item .text,
.grid-item.content,
.blogs-module,
.grid-item .wallpaper .content,
.grid-item.content.mixed {
padding: 20px;
background-color: rgba(21, 21, 21, 0.9);
color: #fff;
max-height: 100%;
overflow-y: auto;
}

.grid-item .text,
.blogs-module {
overflow-y: hidden;
}

.grid-item .text .navigation-widget {
background-color: transparent;
}


.grid-item.half-half .text,
.grid-item.singles-half .text,
.grid-item.single .text {
display: flex;
-ms-display: flexbox;
flex-direction: column;
justify-content: center;
}

.grid-item.half-half .text h3 {
margin-bottom: 0px;
}

.grid-item.half-half .text-top  {
justify-content: start;
}

.grid-item .text p,
.grid-item.content .copy p {
margin: 20px 0 0;
}
.grid-item .text p:first-child,
.grid-item.content .copy p:first-of-type {
margin-top: 0;
}
.grid-item .text p:last-child,
.grid-item.content .copy p:last-of-type {
margin-bottom: 0;
}

/* Wallpaper */

.grid-item .wallpaper {
display: grid;
grid-template-rows: 333px;
}/* browserupdate-overrides.css | Jan 10, 2020 @2:03:13 PM  */

#template .buorg {

}

#template .buorg::before {
content: "";
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.8);
z-index: 9999998;
pointer-events: none;
cursor: default;
}

#template .buorg .buorg-pad {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
width: 50vw;
max-width: 90%;
z-index: 99999999;
background-color: #222;
color: #fff;
border: none;
border-radius: 40px;
padding: 40px;
text-align: center;
z-index: 99999999;
pointer-events: none;
}

#template .buorg .buorg-pad .buorg-buttons a {
padding: 10px 20px 10px 20px;
font-size: 2rem;
border: none;
pointer-events: auto;
}

#template .buorg .buorg-mainmsg {
font-size: 4rem;
letter-spacing: -1px;
}

#template .buorg .buorg-moremsg {
line-height: 1.5em;
font-size: 2.4rem;
display: block;
margin: 40px 0 40px 0;
}/* general.css | May 8, 2025 @3:44:13 PM  */

* {
box-sizing: border-box;
}

.blogs-module .entry .item-image.full { display: none; }

.blogs-module .entry .item-image-cover img { aspect-ratio: 40 / 18; }

body {
margin: 0;
padding: 0;
background-color:#1b1a21;
background-image: url("/storage/themes/6406/background.jpg");
background-size: cover;
background-attachment: fixed;
background-position: center center;
font-family: "Montserrat", sans-serif;
font-weight: 200;
line-height: 1.6em;
color: #fff;
overflow-x: hidden;
font-size: 1.4rem
}

.wrapper {
max-width: 1540px;
margin: auto;
}

a {
color: #FFAD01;
transition: 0.2s ease all;
text-decoration: none;
}

a:hover {
text-decoration: underline;
}

blockquote {
display: block;
}

img {
max-width: 100%;
}

.video {
width: 100%;
height: 0;
padding-bottom: 56.25%;
position: relative;
}

.video iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

.btn {
display: inline-block;
text-decoration: none;
cursor: pointer;
}

.btn.default,
form.formWizForm input[type="submit"],
.blogs-module .item-nav .btn {
display: inline-block;
border: none;
background-color: #FFAD01;
margin: 0;
padding: 12px 25px;
border-radius: 5px;
font-size: 1.4rem;
font-weight: 300;
font-family: "Montserrat", sans-serif;
color: #000;
-webkit-appearance: none;
cursor: pointer;
}

.btn.default:hover,
form.formWizForm input[type="submit"]:hover,
.blogs-module .item-nav .btn:hover {
text-decoration: none;
background-color: #fff;
color: #000;
}

.btn.small,
.blogs-module .item-nav .btn {
padding: 8px 15px;
}

.btn.secondary {
background-color: #CCC;
}

h1,
h2 {
font-size: 2.2rem;
margin: 0px 0 20px 0;
}

h1 {
font-weight: 600;
}
h2 {
font-weight: 500;
}

h1 em {
display:block;
font-size: 1.75rem;
font-weight: 600;
font-style: normal;
text-transform: uppercase;
margin: 20px 0 20px 0;
}

/* h1 strong,
h2 strong {
font-weight: 700;
} */

h3 {
font-size: 1.75rem;
font-weight: 600;
text-transform: uppercase;
/* margin: 20px 0 20px 0; */
margin: 20px 0 20px 0;
}

h4 {
font-size: 1.5rem;
font-weight: 600;
margin: 20px 0 10px 0;
}

.content-module ul {
list-style-type: none;
padding: 0;
}

.content-module ul li {
position: relative;
padding: 5px 0 5px 40px;
}

.content-module ul li:before {
content: "+";
position: absolute;
top: 5px;
left: 20px;
font-size: 2rem;
color: #FFAD01;
}

a.ui-selectmenu {
width: 100% !important;
max-width: 100% !important;
}

.ui-selectmenu-menu ul {
max-width: 100% !important;
}

.ui-selectmenu-menu ul li {
max-width: 100% !important;
white-space: normal;
}

header {
display: -ms-flexbox;
display: flex;
justify-content: space-between;
-ms-flex-align: center;
align-items: center;
padding-top: 60px;
padding-bottom: 60px;
position: relative;
z-index: 100000;
}

header .logo img {
max-width: 100%;
}

header .navigation-widget.standard {
display: none;
}

header nav ul {
margin: 0;
padding: 0;
}

header nav > ul > li {
display: inline-block;
margin-left: 40px;
padding: 0;
}

header .first > a {
position: relative;
display: inline-block;
padding: 10px;
font-size: 1.4rem;
font-weight: 200;
letter-spacing: 1px;
color: #fff;
text-decoration: none;
}

header > nav .first > a:after {
content: "";
position: absolute;
top: -4px;
left: 10px;
width: 0;
height: 6px;
transition: 0.2s ease all;
background-color: white;
}

header > nav .first:hover > a:after {
width: calc(100% - 20px);
}

header .menu {
position: relative;
}

header .menu > a {
padding-right: 20px;
text-transform: uppercase;
}

header .menu:hover > a:after {
width: calc(100% - 15px);
}

header .menu > a span {
transform: rotateZ(90deg) translateY(-50%);
font-size: 2.8rem;
font-weight: 300;
line-height: 0;
position: absolute;
right: 0;
top: 49%;
}

header .menu .submenu {
position: absolute;
top: 120%;
right: 0;
padding-top: 40px;
opacity: 0;
pointer-events: none;
transition: 0.5s ease all;
}

header .menu:hover .submenu {
top: 100%;
opacity: 1;
pointer-events: auto;
color: #000;
}

header .submenu a {
color: #000;
font-weight: 300;
font-size: 1.4rem;
text-decoration: none;
}

header .submenu a:hover {
color: #FF7F00;
}

header .menu .submenu > div {
width: 850px;
padding: 25px;
background-color: #fff;
gap: 0;
align-items: flex-start;
}

header .menu .flex {
flex-wrap: wrap;
}

header .menu .flex .section {
align-items: flex-start;
-ms-flex-align: flex-start;
font-size: 1.4rem;
gap: 0;
align-items: unset;
}

header .section.left {
width: calc(100% - 280px);
padding-right: 25px;
}

header .section.right {
width: 280px;
}

header .section .title,
header .section .subtitle {
width: 100%;
}

header .section .title {
font-weight: 300;
text-transform: uppercase;
padding-bottom: 10px;
margin-bottom: 5px;
border-bottom: 1px solid #000;
}

header .section .title:nth-of-type(2) {
margin-top: 5px;
padding-top: 10px;
}

header .section .subtitle {
color: #FFAD01;
font-weight: 300;
margin: 12px 0;
}

header .section ul {
margin: 0;
padding: 0;
list-style-type: none;
}

header .section ul li a {
display: inline-block;
padding: 3px 0 3px 0;
}

header .section ul ul li a:before {
position: relative;
content: "+";
font-size: 1.8rem;
margin-right: 5px;
}

header .location {
width: 60%;
}

header .location > ul:first-of-type {
margin-right: 10px;
}

header .category {
width: 40%;
}

header .menu .flex .section.bottom {
width: 100%;
margin-top: 25px;
align-items: center;
-ms-flex-align: center;
justify-content: space-between;
}

header .section.bottom .social a {
color: #FFAD01;
font-size: 2rem;
margin-left: 25px;
}

header .section.bottom .social a span {
font-size: 0;
}

.flex {
display: -ms-flexbox;
display: flex;
align-items: flex-start;
flex-wrap: wrap;
}

section.flex {
margin: -10px;
}

section.flex .grid {
margin: 10px;
}

/* Forms */

form:not(.formWizForm) {
display: -ms-flexbox;
display: flex;
flex-wrap: wrap;
}

form input:not([type="submit"]), form textarea, form.formWizForm textarea {
width: 100%;
border: none;
border-radius: 5px;
background-color: #fff;
padding: 12px 20px;
margin-bottom: 10px;
font-size: 1.5rem;
}

form input.half {
width: calc(50% - 5px);
margin-right: 5px;
}

form input.half + input.half {
margin-right: 0;
margin-left: 5px;
}

/* Form Module */

form.formWizForm {
background: none;
padding: 0;
margin: 0;
border: none;
color: #fff;
}

form.formWizForm label {
color: #fff;
}

form.formWizForm div.info {
color: #FFAD01;
}

form.formWizForm .field {
display: flex;
-ms-display: flexbox;
justify-content: space-between;
}

form.formWizForm .field .left.sp2 {
flex: 1;
margin: 0;
}

form.formWizForm .field .left.sp2:first-child {
margin-right: 5px;
}

form.formWizForm .field .left.sp2:last-child {
margin-left: 5px;
}

form.formWizForm input:not([type=submit]), 
form.formWizForm textarea {
width: 100%;
margin: 0;
padding: 
}

form.formWizForm div.emailIcon {
display: none;
}


/* Blog */

.blogs-module .entry .item-image .item-image-cover { border: none; }

.blogs-module.full-mode .item-list {
margin: 0;
}

.blogs-module .item-list-stack .item {
background: none;
border: none;
padding-top: 0;
padding-bottom: 0;
margin: 0 0 40px 0;
}

.item-list-stack .item.with-thumbnail {
padding-left: 290px;
}

.blogs-module .item-list-stack .item .item-image {
width: 290px;
height: auto;
padding: 0 20px 0 0;
}

.blogs-module .item-list-stack .item .item-image img {
display: block;
}

.blogs-module .item-list-stack .item time {
display: none;
}

.item-title {
margin: 0 0 20px 0;
}

.border-bottom {
border-bottom: 1px solid;
}

.blogs-module .item-title a, .item-title {
font-size: 2rem;
text-transform: uppercase;
font-weight: 600;
color: #fff;
}

.blogs-module .item-excerpt span {
display: block;
}

.blogs-module .item-excerpt .permalink {
display: inline-block;
margin-top: 20px;
border: none;
background-color: #FFAD01;
padding: 12px 25px;
border-radius: 5px;
font-size: 1.5rem;
font-weight: 300;
color: #000;
-webkit-appearance: none;
}

.blogs-module .item-excerpt .permalink:hover {
text-decoration: none;
background-color: #fff;
color: #000;
}

.blogs-module .item-excerpt .permalink i {
display: none;
}

.blogs-module .entry article {
max-width: none;
}

.blogs-module .item-list-article .item-header {
display: flex;
flex-direction: column;
}

.blogs-module .item-list-article .item-header-content {
order: 1;
}

.blogs-module .item-list-article .item-header-content time {
display: none;
}

.blogs-module .item-list-article .item-image.full {
height: auto;
padding: 0;
}

.blogs-module .item-list-article .item-image.full .item-image-cover {
display: none;
}

.blogs-module .item-list-article .item-image a img {
visibility: visible;
}

.blogs-module .item-list-article .item-header h3 {
margin: 20px 0 20px 0;
padding: 0 0 20px 0;
}

.blogs-module .blog-sidebar, .blogs-module .item-list-footer {
display: none;
}

.blogs-module .item-footer {
margin: 30px 0 0 0;
}

.blogs-module .item-nav {
display: flex;
-ms-display: flexbox;
justify-content: center;
margin: 0;
}

.blogs-module .item-nav a {
width: 250px;
text-align: center;
max-width: 100%;
}

.blogs-module .item-nav a.all-items {
margin: 0 10px 0 10px;
}

/* Wallpaper */

.grid-item .wallpaper .thumb {
margin: -20px -20px 45px;
padding-bottom: calc(66.667% + 20px);
background-size: cover;
}

.grid-item .wallpaper p strong {
display: block;
text-transform: uppercase;
font-size: 1.8rem;
font-weight: 400;
}

.grid-item .wallpaper .download {
margin: 0;
}

.grid-item .wallpaper .download:after {
content: "";
display: block;
clear: both;
}

.grid-item .wallpaper .download .btn {
float: left;
font-size: 1.2rem;
padding: 2px 6px 2px 6px;
background-color: #505050;
color: #fff;
margin: 0 4px 4px 0;
}

.grid-item .wallpaper .download .btn:hover {
color: #000;
background-color: #FFAD01;
}

/* Side Vertical Navigation */

.include-seeingnav .grid-item .text {
overflow: visible;
}

.grid-item .navigation-widget.standard.collapse {
margin: 20px 0 0 0;
}

.grid-item .navigation-widget.standard.collapse .l1 {
border-bottom: 1px solid #FFAD01;
}

.grid-item .navigation-widget.standard.collapse .l1 a {
padding: 10px 0 10px 0;
letter-spacing: 1px;
color: #fff;
}

.grid-item .navigation-widget.standard.collapse .l1:hover > a,
.grid-item .navigation-widget.standard.collapse .l1.active > a {
background: none;
padding-left: 5px;
}

.grid-item .navigation-widget.standard.collapse .l1 > a:before {
content: "";
position: absolute;
left: -23px;
top: 50%;
transform: translateY(-50%);
width: 0;
height: 15px;
background-color: #ddd;
transition: 0.2s ease all;
}

.grid-item .navigation-widget.standard.collapse .l1:hover > a:before,
.grid-item .navigation-widget.standard.collapse .l1.active > a:before {
width: 8px;
}

.grid-item .navigation-widget.standard.collapse .l1 > a:after {
content: "";
position: absolute;
left: -23px;
top: 50%;
transform: translateY(-50%);
width: 0;
height: 0;
border-top: 7.5px solid #ddd;
border-bottom: 7.5px solid #ddd;
border-right: 0 solid transparent;
transition: 0.2s ease all;
}

.grid-item .navigation-widget.standard.collapse .l1:hover > a:after,
.grid-item .navigation-widget.standard.collapse .l1.active > a:after {
left: -15px;
border-right-width: 5px;
}

.grid-item .navigation-widget.standard.collapse .l1.active > a:before {
background-color: #fff !important;
}

.grid-item .navigation-widget.standard.collapse .l1.active > a:after {
border-top-color: #fff !important;
border-bottom-color: #fff !important;
}

/* Footer */

footer {
display: -ms-flexbox;
display: flex;
justify-content: space-between;
width: 100%;
padding-bottom: 70px;
font-weight: 200;
}

footer .copyright,
footer .contact {
width: 320px;
}

footer .signature {
align-items: center;
-ms-flex-align: center;
}

footer .signature img {
width: 140px;
margin-left: 10px;
}

footer .contact {
text-align: right;
}

footer .contact a {
color: #FEAC01;
text-decoration: none;
}

footer .contact a:hover {
color: #fff;
}

#templatefooter {
display: none;
}

/* Footer Subscribe Toggle */

input.toggle {
display: none;
}

.subscribe-button {
position: fixed;
bottom: 0;
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
transition: 0.2s ease all;
z-index: 10000;
}

input.toggle:checked + .subscribe-button {
background: rgba(21, 21, 21, 0.8);
}

.subscribe-button p {
display: block;
height: auto;
max-height: 0;
margin: 0;
opacity: 0;
width: 300px;
transition: 0.2s ease all;
padding: 0 20px 0 20px;
text-align: center;
pointer-events: none;
}

.subscribe-button p .btn {
margin-top: 10px;
}

input.toggle:checked + .subscribe-button p {
max-height: 300px;
opacity: 1;
padding: 20px;
pointer-events: auto;
}

.subscribe-button label {
position: relative;
cursor: pointer;
display: block;
text-align: center;
padding: 15px 20px 15px 20px;
background-color: #FFAD01;
transition: 0.2s ease all;
color: #111;
font-weight: 600;
line-height: 1em;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}

.subscribe-button label:hover {
background-color: #fff;
}

.subscribe-button label .open, .subscribe-button label .close {
position: absolute;
width: 100%;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%,-50%);
transform: translate(-50%,-50%);
opacity: 1;
transition: 0.2s ease all;
}

.subscribe-button label .close {
top: 30%;
opacity: 0;
}

.subscribe-button label .close:before {
content: "\f04b";
font-family: "GatesevenGeneral";
}

input.toggle:checked + .subscribe-button label .open {
top: 60%;
opacity: 0;
}

input.toggle:checked + .subscribe-button label .close {
top: 50%;
opacity: 1;
}

.navigation-module {
padding: 0 !important;
}

.navigation-module .selectmenu {
width:200px;
}

.photo-50 {
position: absolute;
width: 50%;
height: 0;
padding-bottom: 33.3333%;
border-width: 0px;
}

.photo-50 img {
position: absolute;
}

.photo-container {
display: flex;
-ms-display: flexbox;
flex-wrap: wrap;
margin: 25px 0 25px 0;
}

.life-module.full-mode {
display:none;
}

.grid-item .wallpaper .content {
display: flex;
flex-direction: column;
justify-content: space-between;
}

.nobr {
white-space:nowrap;
}

.center-text {
display:block;
margin: 20px 0px 20px 0px;
text-align: center;
}

.center-text .btn {
margin: 10px;
}

.lead-img {
display:none;
}

.select2-container {
color: #333;
}

div.pager a.disabled {
opacity: 0;
pointer-events: none;
}

form.formWizForm h2 { display: none; }

body div.formWizFormMessage {
    margin: 0px;
    padding: 0;
    background: none;
    border:0;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    color: #FFF;
}/* responsive.css | Feb 25, 2022 @10:18:14 PM  */

body:before {
content: "";
display: block;
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: -10;
background: url("/storage/themes/6406/background.jpg") no-repeat center center;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}

.see-menu-select {
display: none;
}

.grid.one.same-height {
align-self: stretch;
}

.grid.one.same-height .grid-item.content.full .copy,
.grid.one.same-height .grid-item.content.mixed {
height: 100%;
}

@media only screen and (max-width: 1650px) {
body, .btn.default {
font-size: 1.5rem
}
.wrapper {
max-width: 1140px;
}
.grid {
grid-template-columns: repeat(auto-fill, 560px);
}
.grid.wallpaper {
grid-template-columns: repeat(auto-fill, 270px);
}
.grid.two {
grid-template-columns: repeat(auto-fill, 1140px);
}
.grid-item.full .copy,
.grid-item .wallpaper {
grid-template-rows: 373px;
}
.grid-item.singles .copy {
grid-template-rows: 176.5px 176.5px;
}
.grid-item.half-half .copy {
grid-template-rows: 373px;
}
.grid-item.singles-half .copy {
grid-template-rows: 176.5px 176.5px;
}
.grid-item.half-singles .copy {
grid-template-rows: 176.5px 176.5px;
}
.hide-medium {
display: none !important;
}
section.flex .one:nth-child(3),
section.flex .two + .one {
width: 100%;
}
.include-seeingnav, .book-nav {
grid-column: 1 / 3;
}
.photo-container-thumb {
display: none;
}
/* .grid.one.same-height {
grid-template-rows: 766px;
} */
}

@media only screen and (max-width: 1170px) {
/* Hamburger Menu */
.navigation-widget.collapse.hamburger > a.menu-toggle {
margin-left: 20px;
width: auto;
}
.navigation-widget.collapse.hamburger > a.menu-toggle label {
padding: 0;
width: 26px;
height: 26px;
}
.navigation-widget.collapse.hamburger > a.menu-toggle label span {
font-size: 0;
padding: 0;
width: 100%;
height: 4px;
position: absolute;
right: 0;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
background-color: #fff;
opacity: 1;
transition: 0.2s ease all;
}
.navigation-widget.collapse.hamburger > a.menu-toggle label:before {
content: "";
position: absolute;
top: 2px;
right: 0;
width: 100%;
height: 4px;
background-color: #fff;
transform: none;
transition: 0.2s ease all;
}
.navigation-widget.collapse.hamburger > a.menu-toggle label:after {
content: "";
position: absolute;
top: auto;
bottom: 2px;
right: 0;
width: 100%;
height: 4px;
background-color: #fff;
transform: none;
transition: 0.2s ease all;
}
.navigation-widget.collapse.hamburger input.menu-toggle-check:checked ~ .menu-toggle label span {
opacity: 0;
right: 20px;
}
.navigation-widget.collapse.hamburger input.menu-toggle-check:checked ~ .menu-toggle label:before {
transform: rotate(45deg);
top: 11px;
}
.navigation-widget.collapse.hamburger input.menu-toggle-check:checked ~ .menu-toggle label:after {
transform: rotate(-45deg);
bottom: 11px;
}
.navigation-widget.collapse.hamburger nav a.menu-toggle {
display: none;
}
.navigation-widget.collapse.hamburger nav {
position: absolute;
width: 300px;
padding: 0 20px 0 20px;
max-height: 0;
height: auto !important;
right: 0;
top: 35px;
left: auto;
bottom: auto;
background: rgba(255,255,255,1);
opacity: 1;
}
.navigation-widget.collapse.hamburger input.menu-toggle-check:checked ~ nav {
width: 300px;
max-height: 1000px;
left: auto;
top: 35px;
padding: 20px;
background: rgba(255,255,255,1);
}
.navigation-widget.collapse.hamburger nav a {
color: #000;
font-weight: 300;
}
.navigation-widget.collapse.hamburger .l1:hover > a, .navigation-widget.collapse.hamburger .l1.flyout.open > a {
background: none;
color: #FF7F00;
}
/*----*/
.grid.wallpaper {
grid-template-columns: repeat(2, 1fr);
}
.wrapper {
max-width: 580px;
padding: 0 10px;
}
.hide-small {
display: none !important;
}
section.flex .two {
width: 100%;
}
.grid-item.full .copy,
.grid-item.singles .copy,
.grid-item.singles-half .copy,
.grid-item.half-singles .copy,
.grid-item.half-half .copy {
grid-template-rows: auto;
}
.grid.two {
grid-template-columns: repeat(auto-fill, minmax(300px, 560px));
}
header .logo {
max-width: 100%;
}
header .navigation-widget.standard {
display: block;
}
header nav {
width: 100%;
text-align: center;
}
header nav > ul > li {
margin: 0 5px 0 5px;
}
header nav {
display: none;
}
.grid {
grid-gap: 10px;
}
.grid-item:not(.content) .copy {
grid-gap: 10px;
}
.subscribe-button p {
width: 560px;
}
.include-seeingnav, .book-nav {
grid-column: 1 / 2;
}
.lead-img {
display: block;
}
footer {
flex-wrap: wrap;
}
footer .copyright,
footer .contact {
width: auto;
}
footer .signature {
order: 3;
width: 100%;
justify-content: center;
margin-top: 30px;
}
.photo-container-thumb {
display: block;
}
.grid.one.same-height {
grid-template-rows: auto;
}

.blogs-module .item-list-stack .item .item-image { display:none; }

}

@media only screen and (max-width: 580px) {
.grid {
grid-template-columns: repeat(auto-fill, minmax(300px, 560px));
}
.subscribe-button p {
width: calc(100vw - 20px);
}


}

@media only screen and (max-width: 565px) {
.grid-item.half-half .copy,
.grid-item.half-singles .copy,
.grid-item.singles-half .copy {
grid-template-columns: 1fr;
}
.grid-item.singles-half .copy div:nth-child(1),
.grid-item.singles-half .copy div:nth-child(2),
.grid-item.singles-half .copy div:nth-child(3),
.grid-item.half-singles .copy div:nth-child(1),
.grid-item.half-singles .copy div:nth-child(2),
.grid-item.half-singles .copy div:nth-child(3) {
grid-column: 1;
grid-row: auto;
}
.grid-item .video a strong i {
width: 80px;
height: 80px;
}
.grid.wallpaper {
grid-template-columns: 1fr;
}
.grid-item.double {
grid-column: span 1;
}
.grid-item .wallpaper {
grid-template-rows: auto;
}
.grid-item .text {
min-height: 66.666vw;
}
.include-seeingnav .grid-item .text {
min-height: 0;
}
img.rating {
width: 100px;
object-fit: none;
object-position: -12px;
}
.blogs-module .item-nav {
flex-direction: column;
}
.blogs-module .item-nav a {
width: 100%;
}
.blogs-module .item-nav a.all-items {
margin: 10px 0 10px 0;
}

.blogs-module .item-list-stack .item .item-image { display:none; }
}

@media only screen and (max-width: 500px) {
.photo-50 {
width: 100%;
padding-bottom: 66.6666%;
}
}

@media only screen and (max-width:430px) {
.grid-item .photo:not(.permalink) span {
padding: 15px;
font-size: 1.2rem;
line-height: 1.4rem;
}
.grid-item .photo:not(.permalink) span strong {
display: block;
font-size: 1.4rem;
line-height: 1.4rem;
margin-bottom: -10px;
font-weight: bold;
}
}

@media only screen and (max-width: 400px) {
header {
justify-content: center;
}
form.formWizForm .field {
flex-direction: column;
}
form.formWizForm .field .left.sp2 {
margin: 0 !important;
}
form.formWizForm .field .left.sp2:first-child {
margin-bottom: 5px !important;
}
footer .copyright,
footer .contact {
font-size: 1.4rem;
}
}