@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Shippori+Antique&display=swap');
@import "compass/css3";
*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Bookman Old Style";
}
header
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 100px;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo
{
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
}
.toggle
{
  position: relative;
  width: 60px;
  height: 60px;
  background: url(img/icons/menu.png);
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: center;
  cursor: pointer;
}
.toggle.active
{
  background: url(img/icons/close.png);
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: center;
  cursor: pointer;
}
.showcase
{
  position: absolute;
  right: 0;
  width: 100%;
  min-height: 100vh;
  padding: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  transition: 0.5s;
  z-index: 2;
}
.showcase.active
{
  right: 300px;
}

.showcase video
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}
.overlay
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: #03a9f4; */
  background: #eee9a52d;
  mix-blend-mode: overlay;
}

.blur_video 
{
  -webkit-filter: blur(10px);
  -moz-filter: blur(10px);
  -o-filter: blur(10px);
  -ms-filter: blur(10px);
  filter: blur(10px);
}



.about_text 
{
  width: 60%;
  border-radius: 2%;
  background-color: rgba(153, 153, 153, 0.4);
  color: #fff;
  line-height: 1.7em;
  text-align: center;
  padding: 50px;
  margin-top: 5%;
  position: absolute;
  top: 5%;
  left: 20%;
  z-index: 10;
}

.text
{
  position: relative;
  z-index: 10;
}

.text h2
{
  font-size: 5em;
  font-weight: 800;
  color: #fff;
  line-height: 1em;
  text-transform: uppercase;
}
.text h3
{
  font-size: 4em;
  font-weight: 700;
  color: #fff;
  line-height: 1em;
  text-transform: uppercase;
}
.text p
{
  font-size: 1.1em;
  color: #fff;
  margin: 20px 0;
  font-weight: 400;
  max-width: 700px;
}
.text a
{
  display: inline-block;
  font-size: 1em;
  background: #fff;
  padding: 15px 35px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  margin-top: 10px;
  color: #111;
  letter-spacing: 2px;
  transition: 0.2s;
}
.text a:hover
{
  background: rgb(170, 170, 170);
}

.text_alt a
{
  display: inline-block;
  font-size: 1em;
  background: #e7de58;
  padding: 15px 35px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  margin-top: 10px;
  color: #111;
  letter-spacing: 2px;
  transition: 0.2s;
}
.text_alt a:hover
{
  background: #eee9a5;
}

.text_medium {
  font-size: x-large;
  color: #333;
}

.text_pr {
  font-size: large;
}


.social
{
  position: absolute;
  z-index: 10;
  bottom: 15px;
  left: 90%;
  display: flex;
  justify-content: center;
  align-items:center;
}
.social li
{
  list-style: none;
}
.social li a
{
  display: inline-block;
  margin-right: 20px;
  filter: invert(1);
  transform: scale(0.5);
  transition: 0.5s;
}
.social li a:hover
{
  transform: scale(0.5) translateY(-15px);
}
.menu
{
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu ul
{
  position: relative;
}
.menu ul li
{
  list-style: none;
  margin-top: 45%;
}
.menu ul li a
{
  text-decoration: none;
  font-size: 25px;
  color: #111;
}
.menu ul li a:hover
{
  color: #eee9a5; 
}

@media (max-width: 991px)
{
  .showcase,
  .showcase header
  {
    padding: 40px;
  }
  .text h2
  {
    font-size: 3em;
  }
  .text h3
  {
    font-size: 2em;
  }
}



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

.navmenu ul li 
{
  display: inline;
  text-decoration: none;
  padding: 15px;
}

.navmenu ul li a 
{
  text-decoration: none;
  color: #FFF;
  font-size: 2em;
}

.navmenu ul li a:hover 
{
  text-decoration: none;
  color: #7b9774;
  font-size: 2em;
}

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

.navmenu_alt ul li 
{
  display: inline;
  text-decoration: none;
  padding: 15px;
}

.navmenu_alt ul li a 
{
  text-decoration: none;
  color: #444;
  font-size: 2em;
}

.navmenu_alt ul li a:hover 
{
  text-decoration: none;
  color: #eee9a5;
  font-size: 2em;
}

.menuitem 
{
  display: inline;
  text-decoration: none;
}

.menutext 
{
  text-decoration: none;
  color: #FFF;
  font-size: 2em;
}




#gallery-h1 
{
  color: #444;
  font-weight: normal;
  font-size: 35px;
  position: relative;
  margin: 40px 0;
}

#gallery-h1::before
{
  content:'';
  position: absolute;
  width: 100px;
  height: 3px;
  background-color: #eee9a5;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%);
}

.container 
{
  width: 100%;
  text-align: center;
  z-index: 10;
}

.top-content 
{
  background-color: rgb(236, 235, 235);
  width: 90%;
  margin: 0 auto 20px auto;
  height: 60px;
  display: flex;
  align-items: center;
  border-radius: 5px;
  /* box-shadow: 3px 3px 5px lightgray; */
  z-index: 10;
}

#gallery-h3 
{
  height: 100%;
  background-color: rgb(233, 233, 233);
  line-height: 60px;
  padding: 0 50px;
}

label 
{
  display: inline-block;
  height: 100%;
  margin: 0 20px;
  line-height: 60px;
  color: gray;
  cursor: pointer;
  transition: .5s;
}

label:hover
{
  color: black;
}

.photo-gallery
{
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pic 
{
  position: relative;
  height: 230px;
  /* box-shadow: 3px 3px 5px lightgrey; */
  cursor: pointer;
}

.pic img
{ 
  width: 100%;
  height: 100%;
}

#check1:checked ~ .container .photo-gallery .pic 
{
  opacity: 1;
  transform: scale(1);
  position: relative;
}

#check2:checked ~ .container .photo-gallery .exterior
{
  opacity: 1;
  transform: scale(1);
  position: relative;
}

#check2:checked ~ .container .photo-gallery .interior,
#check2:checked ~ .container .photo-gallery .spring,
#check2:checked ~ .container .photo-gallery .summer,
#check2:checked ~ .container .photo-gallery .autumn,
#check2:checked ~ .container .photo-gallery .winter
{
  opacity: 0;
  transform: scale(0);
  position: absolute;
}

#check3:checked ~ .container .photo-gallery .interior
{
  opacity: 1;
  transform: scale(1);
  position: relative;
}

#check3:checked ~ .container .photo-gallery .exterior,
#check3:checked ~ .container .photo-gallery .spring,
#check3:checked ~ .container .photo-gallery .summer,
#check3:checked ~ .container .photo-gallery .autumn,
#check3:checked ~ .container .photo-gallery .winter
{
  opacity: 0;
  transform: scale(0);
  position: absolute;
}

#check4:checked ~ .container .photo-gallery .spring
{
  opacity: 1;
  transform: scale(1);
  position: relative;
}

#check4:checked ~ .container .photo-gallery .exterior,
#check4:checked ~ .container .photo-gallery .interior,
#check4:checked ~ .container .photo-gallery .summer,
#check4:checked ~ .container .photo-gallery .autumn,
#check4:checked ~ .container .photo-gallery .winter
{
  opacity: 0;
  transform: scale(0);
  position: absolute;
}

#check5:checked ~ .container .photo-gallery .summer
{
  opacity: 1;
  transform: scale(1);
  position: relative;
}

#check5:checked ~ .container .photo-gallery .exterior,
#check5:checked ~ .container .photo-gallery .interior,
#check5:checked ~ .container .photo-gallery .spring,
#check5:checked ~ .container .photo-gallery .autumn,
#check5:checked ~ .container .photo-gallery .winter
{
  opacity: 0;
  transform: scale(0);
  position: absolute;
}

#check6:checked ~ .container .photo-gallery .autumn
{
  opacity: 1;
  transform: scale(1);
  position: relative;
}

#check6:checked ~ .container .photo-gallery .exterior,
#check6:checked ~ .container .photo-gallery .interior,
#check6:checked ~ .container .photo-gallery .spring,
#check6:checked ~ .container .photo-gallery .summer,
#check6:checked ~ .container .photo-gallery .winter
{
  opacity: 0;
  transform: scale(0);
  position: absolute;
}

#check7:checked ~ .container .photo-gallery .winter
{
  opacity: 1;
  transform: scale(1);
  position: relative;
}

#check7:checked ~ .container .photo-gallery .exterior,
#check7:checked ~ .container .photo-gallery .interior,
#check7:checked ~ .container .photo-gallery .spring,
#check7:checked ~ .container .photo-gallery .summer,
#check7:checked ~ .container .photo-gallery .autumn
{
  opacity: 0;
  transform: scale(0);
  position: absolute;
}







.ImgThumbnail:hover {
  opacity: 0.8;
  transition: all ease-in-out 100ms;
}


.img-window {
  width: 100vw;
  height: 100vh;
  background-color: #202020ec;
  position: fixed;
  top: 0;
  left: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.img-window img{
  height: 100vh;
  max-height: 100vh;
  max-width: 90vw;
}

/* Next Image */
.img-btn-next {
  display: block;
  padding: 6px 10px;
  border-radius: 4px;
  background-color: #444;
  position: fixed;
  top: 48vh;
  z-index: 1001;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
}

.img-btn-next:hover {
  opacity: 0.8;
}

/* Prev Image */
.img-btn-prev {
  display: block;
  padding: 6px 10px;
  border-radius: 4px;
  background-color: #444;
  position: fixed;
  top: 48vh;
  z-index: 1001;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
}

.img-btn-prev:hover {
  opacity: 0.8;
}








.wrapper {
	padding: 5px;
	max-width: 1200px;
	width: 95%;
	margin: 10px auto;
}
header {
	padding: 0 15px;
}

.columns {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	margin: 5px 0;
}

.column {
  flex: 1;
  margin: 2px;
  padding: 10px;
}
.column:first-child {
  margin-left: 0;
}
.column:last-child {
  margin-right: 0;
}


@media screen and (max-width: 980px) {
  .columns .column {
    margin-bottom: 5px;
    flex-basis: 40%;
 }
  .columns .column:nth-last-child(2) {
    margin-right: 0;
 }
  .columns .column:last-child {
    flex-basis: 100%;
    margin: 0;
 }
}

@media screen and (max-width: 680px) {
	.columns .column {
		flex-basis: 100%;
		margin: 0 0 5px 0;
	}
}


.gallery_link 
{
  text-decoration: underline;
  cursor: pointer;
  color: #7b9774;
  position: relative;
}


/* .gallery_link:hover {
  color: #a3ebbd;
} */

.gallery_link::before,
.gallery_link::after {
  --scale: 0;
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(-20%) scale(var(--scale));
  transition:  50ms transform;
}

.gallery_link::before {
  content: attr(data-tooltip);
  color: white;
  padding: .5rem;
  text-align: center;
  width: max-content;
 
  background: #333;
}

.gallery_link:hover::before {
  --scale: 1;
}







/* Responsive Image Gallery */


.res_gallery_container{
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 1%;
}

.res_gallery_container .heading{
  width: 50%;
  padding-bottom: 50px;
}
.res_gallery_container .heading h3{
  font-size: 3em;
  font-weight: bolder;
  padding-bottom: 10px;
}

.res_gallery_container .heading h3 span{
  font-weight: 100;
}
.res_gallery_container .box{
 display: flex;
 flex-direction: row;
 justify-content: space-between;
}

.res_gallery_container .box .dream{
  display: flex;
  flex-direction: column;
  width: 32.5%;
}

.res_gallery_container .box .dream img{
  width: 100%;
  padding-bottom: 15px;
 
}


@media only screen and (max-width: 769px){
    .res_gallery_container .box{
   flex-direction: column;
  }

.res_gallery_container .box .dream{
  width: 100%;
}

}

@media only screen and (max-width: 643px){
.res_gallery_container .heading{
  width: 100%;
}
.res_gallery_container .heading h3{
  font-size: 1em;

}

}






/* Default State */
/* Toggled State */
#english:checked ~ .wrapper .english{
  display: block;
}

#english ~ .wrapper .english{
  display: none;
}

#english:checked ~ .wrapper .french .italian{
 display: none;
}

#french ~ .wrapper .french{
 display: none;
}

#french:checked ~ .wrapper .english .italian{
 display: none;
}

#french:checked ~ .wrapper .french{
 display: block;
}

#italian ~ .wrapper .italian{
  display: none;
 }

#italian:checked ~ .wrapper .english .french{
  display: none;
 }
 
 #italian:checked ~ .wrapper .italian{
  display: block;
 }





 #english:checked ~ .lang_wrapper .english{
  display: block;
}

#english ~ .lang_wrapper .english{
  display: none;
}

#english:checked ~ .lang_wrapper .french .italian{
 display: none;
}

#french ~ .lang_wrapper .french{
 display: none;
}

#french:checked ~ .lang_wrapper .english .italian{
 display: none;
}

#french:checked ~ .lang_wrapper .french{
 display: block;
}

#italian ~ .lang_wrapper .italian{
  display: none;
 }

#italian:checked ~ .lang_wrapper .english .french{
  display: none;
 }
 
 #italian:checked ~ .lang_wrapper .italian{
  display: block;
 }




.lang-menu {
 
  justify-content: space-between;
  padding: 5px;
}

.lang-menu:hover ul{
  display: block;
}

.lang-menu ul {
  margin: 0;
  padding: 0;
  background-color: #FFF;
  display: none;
  position: absolute;
}

.lang-menu ul li {
  list-style: none;
  margin-left: 2%;
  display: flex;
  justify-content: space-between;
}

.lang-menu ul li a {
  width: 125px;
  display: block;
  padding: 5px 10px;
  border: 1px solid rgb(211, 208, 208);
  text-decoration: none;
}

.lang-menu ul li a:hover {
  background-color: #f2f2f2;
}

.lang-menu ul li a::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-right: 5px;
  vertical-align: middle;
  
}
 
.selected-lang {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  line-height: 2;
  width: 100px;
}

.selected-lang::before {
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  background-image: url(img/icons/uk_flag.png);
}

.en:before {
  background-image: url(img/icons/uk_flag.png);
}

.fr:before {
  background-image: url(img/icons/fr_flag.png);
}









.lang_wrapper {
  margin: 0px auto;
  background: #fff;
  text-align: justify;
  display: block;
}



/* Checkbox Hack */

input[type=radio] {
   opacity: 0;
}

label { 
  display: inline-block;
  cursor: pointer;
}

/* Default State */
/* Toggled State */
#english:checked ~ .lang_wrapper .english{
   display: block;
	-webkit-animation-duration: .5s;
	     -o-animation-duration: .5s;
	   -moz-animation-duration: .5s;
	        animation-duration: .5s;
}

#english ~ .lang_wrapper .english{
   display: none;
}

#english:checked ~ .lang_wrapper .french{
  display: none;
}

#french ~ .lang_wrapper .french{
  display: none;
}

#french:checked ~ .lang_wrapper .english{
  display: none;
}

#french:checked ~ .lang_wrapper .french{
  display: block;
	-webkit-animation-duration: 1s;
	     -o-animation-duration: 1s;
	   -moz-animation-duration: 1s;
	        animation-duration: 1s;
}
































































.section-box {
  padding-top: 190px;
  padding-bottom: 200px;
  background-image: url('../images/circle.png');
  background-repeat: no-repeat;
  background-position: left -233px;
}

.what-we-do .content-box {
  padding: 42px 50px 28px 33px;
  float: left;
  width: 54.1%;
}

.about_container {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}


#content14 {
  display: table;
  width: 100%;
}
#content14 .col-left {
  width: 46%;
  position: relative;
  display: table-cell;
  vertical-align: middle;
}
#content14 .col-left .image {
  height: 100%;
  overflow: hidden;
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
}
#content14 .col-left .image img {
  width: auto;
  height: 100%;
  max-width: inherit;
}
#content14 .col-right {
  width: 54%;
  display: table-cell;
  vertical-align: middle;
}
#content14 .col-right .content {
  padding: 53px 155px 69px 87px;
  
}
#content14 .col-right .content h3 {
 
  line-height: 1.61;
  margin: 0 0 28px 0;
  color: #202020;
 
}
#content14 .col-right .content p {

  margin: 0 0 20px 0;
  line-height: 2.4;
  color: #515151;
}
#content14 .col-right .content p:last-child {
  margin: 0;
}
#content14 .col-right .content .btn-brd {
  min-width: 151px;
  margin-top: 30px;
}
#content14 .col-right .content .btn-brd span {
  
}
#content14 .col-right .content .btn-brd:hover span {
  background-color: transparent;
  color: #ffffff;
}

.what-we-do-img {
  position: relative;
  z-index: 1;
}
.what-we-do-img:before {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#25c5de', endColorstr='#25ea6a', GradientType=1);
  height: 100%;
  width: 100%;
  display: block;
  position: absolute;
  left: -10px;
  bottom: -10px;
  content: "";
}
 .what-we-do-img img {
  width: 100%;
  z-index: 999;
  position: relative;
}









.contact_container {
	max-width:800px;
	width:100%;
	margin:0 auto;
	position:relative;
}

#contact input[type="text"], #contact input[type="email"], #contact input[type="tel"], #contact input[type="url"], #contact textarea, #contact button[type="submit"] { font:400 12px/16px "Open Sans", Helvetica, Arial, sans-serif; }

#contact {
	background:#F9F9F9;
	padding:25px;
	margin:50px 0;
}

#contact h3 {
	color: #444;
	display: block;
	font-size: 30px;
	font-weight: 400;
}

#contact h4 {
	margin:5px 0 15px;
	display:block;
	font-size:13px;
}

fieldset {
	border: medium none !important;
	margin: 0 0 10px;
	min-width: 100%;
	padding: 0;
	width: 100%;
}

#contact input[type="text"], #contact input[type="email"], #contact input[type="tel"], #contact input[type="url"], #contact textarea {
	width:100%;
	border:1px solid #CCC;
	background:#FFF;
	margin:0 0 5px;
	padding:10px;
}

#contact input[type="text"]:hover, #contact input[type="email"]:hover, #contact input[type="tel"]:hover, #contact input[type="url"]:hover, #contact textarea:hover {
	-webkit-transition:border-color 0.3s ease-in-out;
	-moz-transition:border-color 0.3s ease-in-out;
	transition:border-color 0.3s ease-in-out;
	border:1px solid #AAA;
}

#contact textarea {
	height:100px;
	max-width:100%;
  resize:none;
}

#contact button[type="submit"] {
	cursor:pointer;
	width:100%;
	border:none;
	background:#e7de58;
	color:#FFF;
	margin:0 0 5px;
	padding:10px;
	font-size:15px;
}

#contact button[type="submit"]:hover {
	background:#eee9a5;
	-webkit-transition:background 0.3s ease-in-out;
	-moz-transition:background 0.3s ease-in-out;
	transition:background-color 0.3s ease-in-out;
}

#contact button[type="submit"]:active { box-shadow:inset 0 1px 3px rgba(0, 0, 0, 0.5); }

#contact input:focus, #contact textarea:focus {
	outline:0;
	border:1px solid #999;
}
::-webkit-input-placeholder {
 color:#888;
}
:-moz-placeholder {
 color:#888;
}
::-moz-placeholder {
 color:#888;
}
:-ms-input-placeholder {
 color:#888;
}












.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 100;
}
.modalImage {
  margin: auto;
  display: block;
  max-height: 800px;
}
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}
.close {
  position: fixed;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  z-index: 999;
}
.close:hover,
.close:focus {
  color: rgb(187, 7, 7);
  cursor: pointer;
}
@media only screen and (max-width: 700px) {
  .modalImage {
     width: 100%;
  }
}

