/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}
h1, h2, h3, h4, h5, h6 {
	text-wrap: balance;
}
p {
    overflow-wrap: break-word;
  text-wrap: pretty;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
    text-rendering: optimizeSpeed;
    line-height: 1.5;
	font-family: 'Montserrat', sans-serif;
	font-weight:400;

}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
   scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
background:url(../img/bg.jpg);
background-attachment: fixed;
}

.flow > * + * {
    margin-top: var(--flow-space, 1.0em);
}

#wrapper {
margin: 0 auto ;
width:100%;
max-width:1350px;
background-color:#fff;
padding: 0;
}


.menu,
.submenu {   
    list-style-type: none;
}
.logo {
}
nav ul {
padding:1rem 2rem ;
margin:0;
font-size: 1.2rem;
text-transform:uppercase;
}
    
nav a {
color:#6e6e6e;
text-decoration:none;
}
nav a:hover {
color:#22262b;
text-decoration:underline;

}
.item {
   
}
.logo img {
        padding: 0;
        max-width: 120px;
        height: auto;
}
.item.button {
   
}
.item:not(.button) a:hover,
.item a:hover::after {
    color: #000;
}

/* Mobile menu */
.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.menu li a {
    display: block;
    padding:0;
}

.toggle {
    order: 1;
    font-size: 1.8rem;
}

.item {
    order: 3;
    width: 100%;
    text-align: center;
    display: none;
	padding: 1rem 0;
}
.active .item {
    display: block;
}



/* Tablet menu */
@media all and (min-width: 600px) {
nav ul {
padding:0 0 1rem 0 ;
margin-top:0;
}
    .menu {
        justify-content: center;
    }
    .logo {
        flex: 1;
    }
.logo img {
        padding: 0;
        max-width: 160px;
        height: auto;
}
    .toggle {
        flex: 1;
        text-align: right;
        order: 2;
    }

}

/* Desktop menu */
@media all and (min-width: 1200px) {

nav ul {

    gap: 2rem;
	}

    .menu {
        align-items: center;     
        flex-wrap: nowrap;
        background: none;
    }
    .logo {
        order: 0;
    }
    .item {
        order: 1;
        position: relative;
        display: block; 
        width: auto;
    }

    .toggle {
        display: none;
    }

}


.limit {
    max-width: 90ch;
}

main {
margin:0 auto;
padding:2rem ;

}
.center {
text-align:center;justify-content:center;
}



main img {
margin:0 auto;
max-width: 135px;
}
main h1 {
text-transform:uppercase;
padding: 0; color:#22262b;
display:flex;
justify-content: space-between;
}
main h2 {
padding: 2rem 0; color:#22262b;
}
main p {
padding: 0 0 1rem 0; color:#22262b;

}

.maincontent {text-align:left;}
.image-stack img {
  width: 100%;
  display: block;
  max-width: 100%;
}
.image-stack {
  display: grid;
  position: relative; 
  grid-template-columns: repeat(12, 1fr);
  padding-bottom:4rem;
}

.image-stack__item--bottom {
  grid-column: 4 / -1;
  grid-row: 1;
}

.image-stack__item--top {
  grid-row: 1;
  grid-column: 1 / span 8;
  padding-top: 20%; 
  z-index: 1; 
}

.image-stack__item--top1 {
    grid-row: 1;
    grid-column: 5 / -1;
    padding-top: 30%;
    z-index: 1;
}
.image-stack__item--bottom1 {
    grid-column: 1 / span 7;
    grid-row: 1;
}

.about {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
	padding-top:2rem;
    margin-bottom: 4rem;
}

.trio {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
	margin-bottom:4rem;
}
.trio article {height: fit-content; text-align:center; padding:0 ;}
.trio h2 { text-transform:uppercase;font-size:1rem; padding:1rem;}
.trio img {aspect-ratio: 16/9; object-fit:cover; width:100%; height:100%;}
.trio a {
 color:#22262b;
text-decoration:none;
font-weight:300;
}
.trio a:hover {
color:#000;
}




/*.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  justify-items: center;
  grid-gap: 1rem;
  padding:0 0 4rem 0;
}

.gallery .item {
  width: 100%;
  overflow: hidden;
  background: #000;
}	
*/
.gallery img {
/*  opacity: 0.6;
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;*/
  transform: scale(1.15);
  transition: transform 0.5s, opacity 0.5s;
}
.gallery img:hover {
  opacity: 1;
  transform: scale(1.03);
}

.gallery{
    min-height: 100vh;
    padding-bottom: 100px;
	display:block;
	margin: 0;
	padding-top:2rem;
}

.gallery .controls{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    gap: 0.5rem 2rem;
    padding: 0;
}
	
.gallery .controls .buttons{

    color:#666;
    font-size: 20px;
    line-height: 40px;
    cursor: pointer;
    text-align: center;
}

.gallery .controls .buttons.active{
 <?php /*?>   background:coral;
    color:#fff;<?php */?>
	text-decoration:underline;
}

.gallery .image-container{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  justify-items: center;
  grid-gap: 1rem;
  padding:0 0 4rem 0;
}

.gallery .image-container .image{
/* height:250px;
    width: 350px;*/
	aspect-ratio:16/9;
    overflow: hidden;
    border:1px solid #ddd;
    box-shadow: 0 3px 5px rgba(0,0,0,.1);

}

.gallery .image-container .image img{
    height: 100%;
    width:100%;
    object-fit: cover;
}

.gallery .image-container .image:hover img{
    transform: scale(1.4);
}

.container {

  padding:0;  
}

.container select {
width:100%;
padding:0.5rem;
}
.container div {
width:100%;
text-align:left;
padding:1rem 0;
}

@media all and (min-width: 1200px) {

.container { padding:0 4rem 4rem 4rem;  }
}

.row:after {
  content: "";
  display: table;
  clear : both;
}

.col-70{

  width: 100%;
}

input[type=text], [type=email] { 
width: 100%;
    padding: 1.5rem;
    border: hidden;
    border-bottom: 1px solid #ccc;
    outline: none;
    resize: vertical;
}

input:focus {
  font-style: italic;
  border-bottom: 1px solid #22262b;
}

textarea{
 width: 100%;
  padding: 1.5rem;
  border: hidden;
  border-bottom: 1px solid #ccc;
  outline: none;
  height: 8rem;
  resize: none;
}

textarea:focus  {
  font-style: italic;
  border-bottom: 1px solid #22262b;
}

input[type=submit] {
  border: 1px solid #ccc;
  padding: 1rem 2rem;
  color:#22262b;
  text-transform: uppercase;
  transition: all 0.35s ease-in-out;
}

input[type=submit]:hover {
  color:#22262b;
  padding: 1rem 2rem;
  ouline: none;
  border: 1px solid #22262b;
  letter-spacing: 0;
  
}

@media screen and (max-width: 600px) {
    .row, .col-70, input[type=submit] {
        width: 100%;
        margin-top: 0;
    }
.trio article { padding:0 2rem;}
}




.promo.image {
  position: relative;
  background: #354174;
  overflow: hidden;
}
.promo.image#waypoint {
  margin-top: 60px;
}
.promo.image img {
  display: block;
  position: relative;
  min-height: 100%;
  max-width: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 0.95;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale3d(1.05, 1.05, 1);
  transform: scale3d(1.05, 1.05, 1);
}
.promo.image .caption {
position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.promo.image .caption:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  pointer-events: none;
  content: "";
  -webkit-transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  -webkit-transform: scale3d(2.2, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
  transform: scale3d(2.2, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
}
.promo.image .caption h3 {
    color: #fff;
    opacity: 0;
    padding-top: 2rem;
    font-size: 22px;
}
.promo.image .caption p {
  margin-top: 20px;
  color: #fff;
  text-transform: uppercase;
  opacity: 0;
}
.promo.image .caption hr {
  width: 0;
  border-width: 0;
  color:#fff;
}
.promo.image.visible p,
.promo.image.visible h3, .promo.image:hover p,
.promo.image:hover h3 {
  animation: fadein ease-in 1s;
  animation-fill-mode: forwards;
  animation-delay: 0.7s;
}
.promo.image.visible hr, .promo.image:hover hr {
  width: 100%;
  border-width: 1px;
  transition: border-width, width 0.5s ease-in-out;
  transition-delay: 0.5s;
}
.promo.image.visible img, .promo.image:hover img {
  opacity: 0.4;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.promo.image.visible .caption:before, .promo.image:hover .caption:before {
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
}

#waypoint {
  pointer-events: none;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}








footer {
border-top:1px solid #ccc;
padding:2rem 0;
display:flex;
flex-direction:column;
justify-content: space-between;
margin: 0 2rem;
gap:1rem;
}
footer p {
color:#a19999;
font-size:0.8rem;
text-transform:uppercase;
font-weight:300;
}
.social {
display:flex;
flex-direction:row;
gap:1rem;
}
.social a {
color:#a19999;
font-size:0.8rem;
text-transform:uppercase;
text-decoration:none;
font-weight:300;
}
.social a:hover {
color:#000;
}


.slider {
aspect-ratio: 16/9; object-fit:cover; width:100%; height:100%;
margin-bottom:2rem;
}


.slide {
  position: relative;
}
.slide .slide__img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide .slide__img img {
  max-width: 100%;
  height: 100%;
  width:100%;
  object-fit:cover;
  opacity: 0.7 !important;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  transition: all 1s ease;
}
.slide .slide__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width:100%;
}
.slide .slide__content--headings {
  text-align: center;
  color: #FFF;
}
.slide .slide__content--headings h2 {
  font-size: 2rem;
}
.slide .slide__content--headings p {
  font-size: 1rem;
}
.slide .slide__content--headings .animated {
  transition: all 0.5s ease;
}
.slider [data-animation-in] {
  opacity: 0;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  transition: opacity 0.5s ease 0.3s;
}
.slick-dotted .slick-slider {
  margin-bottom: 30px;
}
.slick-dots {
  position: absolute;
  bottom: 25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  display: block;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}
.simple-dots .slick-dots li {
  width: 20px;
  height: 20px;
}
.simple-dots .slick-dots li button {
  border-radius: 50%;
  background-color: white;
  opacity: 0.25;
  width: 20px;
  height: 20px;
}
.simple-dots .slick-dots li button:hover,
.simple-dots .slick-dots li button:focus {
  opacity: 1;
}
.simple-dots .slick-dots li.slick-active button {
  color: white;
  opacity: 0.75;
}
.stick-dots .slick-dots li {
  height: 3px;
  width: 50px;
}
.stick-dots .slick-dots li button {
  position: relative;
  background-color: white;
  opacity: 0.25;
  width: 50px;
  height: 3px;
  padding: 0;
}
.stick-dots .slick-dots li button:hover,
.stick-dots .slick-dots li button:focus {
  opacity: 1;
}
.stick-dots .slick-dots li.slick-active button {
  color: white;
  opacity: 0.75;
}
.stick-dots .slick-dots li.slick-active button:hover,
.stick-dots .slick-dots li.slick-active button:focus {
  opacity: 1;
}
/* /////////// IMAGE ZOOM /////////// */
@-webkit-keyframes zoomInImage {
  from {
    transform: scale3d(1, 1, 1);
  }
  to {
    transform: scale3d(1.1, 1.1, 1.1);
  }
}
@keyframes zoomInImage {
  from {
    transform: scale3d(1, 1, 1);
  }
  to {
    transform: scale3d(1.1, 1.1, 1.1);
  }
}
.zoomInImage {
  -webkit-animation-name: zoomInImage;
          animation-name: zoomInImage;
}
@-webkit-keyframes zoomOutImage {
  from {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes zoomOutImage {
  from {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.zoomOutImage {
  -webkit-animation-name: zoomOutImage;
          animation-name: zoomOutImage;
}

@media (min-width: 800px) {
.slider {
margin-bottom:3rem;
}
  .slider,
  .slide {
    aspect-ratio:11/5;
  }
    .slide .slide__img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  .slide .slide__content--headings h2 {
  font-size: 2.8rem;
  text-transform:uppercase;
  margin: 10px 0;
}
.slide .slide__content--headings p {
  font-size: 1.2rem;
}
}


@media (min-width: 1200px) {
  .slide .slide__content--headings h2 {
  font-size: 3.2rem;

}
.slide .slide__content--headings p {
  font-size: 1.8rem;
}
.slider {
margin-bottom:4rem;
}
}

@media screen and (min-width: 600px) {
#wrapper {
padding-top: min(4%, 76.8px);
padding-right: min(6%, 115.2px);
padding-bottom: min(4%, 76.8px);
padding-left: min(6%, 115.2px);
}

footer {
margin: 0; 

}
}
@media screen and (min-width: 800px) {

footer {
flex-direction:row;
gap:0;
}
}
@media screen and (min-width: 1281px) {
#wrapper {
margin: 0 auto ;
margin-top: min(3%, 32.4px);
margin-bottom: min(3%, 32.4px);
}

}
#checkbox1,
#checkbox2,
#checkbox3 {
  display: none;
}


.pricing {
display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
	gap:1rem;
	padding: 0 0 2rem 0;
}



.contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(450px, 100%), 1fr));
	}
	


.content {
padding-top: 2rem;
}

.review {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ebe9e9;
    line-height: 21px;
    color: #000;
	text-align:left;
}
.clearfix:before, .clearfix:after {
    content: " ";
    display: table;
}
.review-title {
    font-size: 25px;
    line-height: 31px;
    color: #000;
    margin: 0 0 20px 0;
}
.review-full-attributes {

}

@media screen and (min-width: 800px) {
.review-full-attributes {
    float: right;
	padding: 0 0 2rem 2rem;
}
}

.review-single-attribute {
    margin: 6px 0 12px 10px;
}

.review-attribute-name {
    width: 155px;
    font-size: 16px;
}
.review-attribute-field {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}
.review-attribute-field {
    display: inline-block;
    vertical-align: middle;
}
.review-title {
    font-size: 25px;
    line-height: 31px;
    color: #000;
    margin: 0 0 20px 0;
}

.review-recommended {
    
    font-size: 18px;
}
.review-text {
    line-height: 25px;
}
.review-text {
    max-width: 100%;
    word-break: break-word;
}

@media screen and (min-width: 800px) {

.review-text {
    max-width: 600px;
    
}
}

.review-attribute-overlay {
    width: 85px;
    height: 16px;
    position: relative;
    width: 93px;
}
.star.filled-10 {
    background-image: url(/images/red-on-grey-star.svg);
}
.star.p2 {
    left: 0;
}
.star.p2 {
    left: 20%;
}
.star.p3 {
    left: 40%;
}
.star.p4 {
    left: 60%;
}
.star.p5 {
    left: 80%;
}
.star {
    height: 100%;
    width: 20%;
    margin: 0 1px 0 0;
    position: absolute;
    top: 0;
    background-size: 100%;
    background-repeat: no-repeat;
}
.review-recommended {
    line-height: 30px;
    padding-left: 35px;
    background: url(/images/icon-profile-reccomended.svg) no-repeat 0% 50%;
    background-size: contain;
    position: relative;
    margin: 10px 0 15px 0;
}
.review-details {
    margin: 15px 0;
    clear: both;
}