$maxWidth: 960px;
$minTablet: 767px;

@mixin media($size) {
	@if $size == 'tabletUpwards' {@media screen and ( min-width : $minTablet ) { @content; }}
}

*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}
/* font-family: Verdana, Geneva, sans-serif; */
h1 { font-family: Arial; font-size: 26px; font-style: normal; font-variant: normal; font-weight: 500; line-height: 28px; } 
h2 { font-family: Arial;  font-size: 20px; font-style: normal; font-variant: normal; font-weight: 300; line-height: 28px; text-decoration: none;} 
h4 { font-family: Arial;  font-size: 20px; font-style: normal; font-variant: normal; font-weight: 300; line-height: 28px; text-decoration: none; color: #676767;} /*h2 grey*/
	h5 {font-family: Arial;  font-size: 14px; font-style: normal; font-variant: normal; font-weight: 100; line-height: 23px;  color: #676767;} /*p grey */
p { font-family: Arial;  font-size: 14px; font-style: normal; font-variant: normal; font-weight: 100; line-height: 23px; } 

a { font-family: Arial;  text-decoration: none; color: #000000;}


header
{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 50px;
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index:5;
  filter: invert(1);
  /*background-color: #ffffff;
  opacity: 0.5;*/
  background: -webkit-linear-gradient(top, rgba(255,255,255,1), rgba(255,255,255, 0.01));
  background: -moz-linear-gradient(top, rgba(255,255,255,1), rgba(255,255,255, 0.01));
}
header .logo
{

  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  filter: invert(1);
}

.linkunderline{
	text-decoration:underline;}

body{overflow-y: scroll;}

.toggle
{
  
  width: 60px;
  height: 60px;
  right: 60px;
  background: url(https://i.ibb.co/HrfVRcx/menu.png);
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: center;
  cursor: pointer;
   filter: invert(1);
      z-index:7;
}
.toggle.active
{
  background: url(https://i.ibb.co/rt3HybH/close.png);
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: center;
  cursor: pointer;
   filter: invert(1);
   z-index:7;
	
}
.showcase
{
  position: relative;
  right: 0;
  width: 100%;
  height: 100vh;
  padding: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: #111;
  transition: 0.5s;
  z-index: 2;
}

.project
{
  position: relative;
  right: 0;
  width: 100%;
  height: 100vh;
  padding: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
 /* background-image:url(building.jpg);*/
  background-repeat: no-repeat;
  background-size: cover;
  transition: 0.5s;
  z-index: 2;
}

.video
{
    display: block;
margin: 0 auto;
}
.showcase video
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
 /* opacity: 0.4;*/
}
.homeoverlay
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: overlay;
}
.text
{
  position: relative;
  z-index: 10;
  color: #ffffff;
}
/*
.text h2
{
  font-size: 2em;
  font-weight: 300;
  color: #fff;
  line-height: 1em;
  /*text-transform: uppercase;*
 
}
.text h3
{
  font-size: 5em;
  font-weight: 500;
  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: 10px 30px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  margin-top: 10px;
  color: #111;
  letter-spacing: 2px;
  transition: 0.2s;
}
.text a:hover
{
  letter-spacing: 6px;
}*/

.navbar {
	text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0rem 2rem;
}
.hamburger {
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #101010;
}
.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
list-style-type: none;
}

.nav-item {
    margin-left: 2rem;
	
}

.nav-link{
    
    font-size: 1.2em;
    color: #000000;
	text-decoration: none;
}

.nav-link:hover{
   /* color: #4C4A44;
	 text-decoration: underline;*/
	 border-bottom: 2px solid ;

}

.nav-logo {
    font-size: 2.1rem;
    font-weight: 500;
    color: #4C4A44;
}
@media only screen and (max-width: 900px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 5rem;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
       /* border-radius: 10px;*/
	   opacity: 0.8;
        text-align: center;
        transition: 0.3s;
        box-shadow:
            0 10px 27px rgba(0, 0, 0, 0.05);
			
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
		
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }
// Inside the Media Query.

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}



.social
{
 /* position: absolute;*/
  z-index: 10;
  bottom: 20px;
  display: flex;
  justify-content: right;
  align-items: right;
    color: #ffffff;
}
.social li
{
	  filter: invert(1);
	z-index: 100;
  list-style: none;
  color: white;

}
.social li a
{
  display: inline-block;
/*  margin-right: 20px;*/
  transform: scale(0.5);
  transition: 0.5s;
}
.social li a:hover
{
  transform: scale(0.5) translateY(-15px);
}
.menu
{
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu ul
{
  position: relative;
  list-style: none;
}

.menu ul li a
{
  text-decoration: none;
  font-size: 24px;
  color: #111;
}
.menu ul li a:hover
{
  color: #4C4A44; 
}

@media (max-width: 900px)
{
  .showcase,
  .showcase header
  {
    padding: 40px;
  }
  .text h2
  {
    font-size: 1.5em;
	
  }
  .text h3
  {
    font-size: 2em;
	text-align: left;
  }
}


/* Style the sidenav links and the dropdown button */
.menu a, .dropdown-btnSub {
	
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 24px;
  display: block;
  border: none;
  background: none;
  width:100%;
  text-align: left;
  cursor: pointer;
  outline: none;
  color: #111;
}

/* Style the sidenav links and the dropdown button */
.menu a, .dropdown-btn1 {
	
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 24px;
  display: block;
  border: none;
  background: none;
  width:100%;
  text-align: left;
  cursor: pointer;
  outline: none;
  color: #111;
}

/* Style the sidenav links and the dropdown button */
.menu a, .dropdown-btn2 {
	
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 24px;
  display: block;
  border: none;
  background: none;
  width:100%;
  text-align: left;
  cursor: pointer;
  outline: none;
  color: #111;
}

/* On mouse-over */
.menu a:hover, .dropdown-btnSub:hover {
  color: #4C4A44;
}
.menu a:hover, .dropdown-btn1:hover {
  color: #4C4A44;
}
.menu a:hover, .dropdown-btn2:hover {
  color: #4C4A44;
}

/* Add an active class to the active dropdown button 
.active {
  background-color: white;
  color: #4C4A44;
}*/

/* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
.dropdown-containerSub {
  display: none;
  background-color: #ffffff;
  padding-left: 20px;
}
.dropdown-container1 {
  display: none;
  background-color: #ffffff;
  padding-left: 20px;
}
.dropdown-container2 {
  display: none;
  background-color: #ffffff;
  padding-left: 20px;
}

.standardbox
{
  position: relative;
  right: 0;
  width: 100%;
  /*height: 100vh;*/
  padding:120px 40px 100px 40px;
  /*display: flex;*/
  justify-content: space-between;
  align-items: center;
  background: #ffffff; /*616760  d8d4c3 */
  transition: 0.5s;
  z-index: 2;
  color: #000000;
}
.standardProjectbox
{
  position: relative;
  right: 0;
  width: 100%;
  /*height: 100vh;*/
  padding: 80px 40px 0px 40px;
  /*display: flex;*/
  justify-content: space-between;
  align-items: center;
  background: #ffffff; /*616760  d8d4c3 */
  transition: 0.5s;
  z-index: 2;
  color: #000000;
}

.standardProject1box
{
  position: relative;
  right: 0;
  width: 100%;
  /*height: 100vh;*/
  padding: 80px 40px 0px 40px;
  /*display: flex;*/
  justify-content: space-between;
  align-items: center;
  background: #ffffff; /*616760  d8d4c3 */
  transition: 0.5s;
  z-index: 2;
  color: #000000;
}

/*keep footer at bottom */
html, body {
  height: 100vh;
}
body {
  display: flex;
  flex-direction: column;
}
.standardbox {
  flex: 1 0 auto;
}
.project {
  flex: 1 0 auto;
}
.standard2box {
  flex: 1 0 auto;
}
.page {
  flex: 1 0 auto;
}
.standardProjectbox {
  flex: 1 0 auto;
}
.standardProjectbox {
  flex: 1 0 auto;
}

.showcase {
  flex: 1 0 auto;
}
.featurebox {
  flex: 1 0 auto;
}
.borderlessbox {
  flex: 1 0 auto;
}
.footer {
  flex-shrink: 0;

}

.standard2box
{
  position: relative;
  right: 0;
  width: 100%;
  /*height: 100vh;*/
  padding: 0px 40px 0px 40px;
  /*display: flex;*/
  justify-content: space-between;
  align-items: center;
  background: #ffffff; /*616760  d8d4c3 */
  transition: 0.5s;
  z-index: 2;
  color: #000000;
}
.standard3box
{
  position: relative;
  right: 0;
  width: 100%;
  /*height: 100vh;*/
  padding: 0px 50px 0px 50px;
  /*display: flex;*/
  justify-content: space-between;
  align-items: center;
  background: #ffffff; /*616760  d8d4c3 */
  transition: 0.5s;
  z-index: 2;
  color: #000000;
}
.featurebox
{
  position: relative;
  right: 0;
  width: 100%;
  /*height: 100vh;*/
  padding: 80px 40px 40px 40px;
  /*display: flex;*/
  justify-content: space-between;
  align-items: center;
  background: #ffffff; /*616760  d8d4c3 */
  transition: 0.5s;
  z-index: 2;
  color: #000000;
}

.borderlessbox
{
  position: relative;
  right: 0;
  width: 100%;
  /*height: 100vh;*/
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  /*display: flex;*/
  justify-content: space-between;
  align-items: center;
  background: #ffffff; /*616760  d8d4c3 */
  transition: 0.5s;
  z-index: 2;
  color: #000000;
}

.featurebox.active
{
  right: 300px;
   color: #000000;
   
}

.footer
{
  position: relative;
  left: 0;
  bottom: 0;
  width: inherit;
 /* height: 100px;*/
  padding: 20px 40px 20px 40px;
  /*display: flex;*/
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;
  background: #111;
  transition: 0.5s;
  z-index: 2;
  color: #ffffff;
  font-family: inherit;
  margin-top: -50px;
}


.footer p
{
	text-align: center;
	color: #ffffff;
}


.container {
  position: relative;
  text-align: center;
  color: white;
  
}

/* Centered text */
.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

}

.centered2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
	  font-size: 2em;
	  font-weight: 600;
	  text-decoration:none;
	 font-family: Arial;

}

.centered a
{
	  color: #ffffff;
	  font-size: 2em;
	  font-weight: 600;
	  text-decoration:none
}

.centered a:hover
{
	  color: #676767;
	  font-size: 2em;
	   transition: 0.5s;
}

.centeredText
{
	position: absolute;
  top: 50%;
  right: 100px;
  left: 58%;
  /*transform: translateY(-50%);*/
}


 .backtotop {
   /* background-color: #000000;*/
    color: #000000;
    opacity: 0;
    transition: opacity .6s ease-in-out;
    z-index: 999;
    position: fixed;
    right: 50px;
    bottom: 50px;
    /*width: 50px;
    height: 50px;*/
    box-sizing: border-box;
    border-radius: 0%;
	cursor: pointer;
  }

  a.backtotop {
    font-weight: 1000;
    /*letter-spacing: 2px;*/
    font-size: 14px;
   /* text-transform: uppercase;*/
    text-align: center;
    /*line-height: 1.6;*/
    padding-left: 2px;
    padding-top: 14px;
  }

  .backtotop:hover, .backtotop:focus, .backtotop:visited {
    color: #000000;
  }

  .backtotop.show {
    opacity: 1;
  }


.sidepanel {
  height: 100vh; /* Specify a height */
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 1; /* Stay on top */
  top: 0;
  right: 0;
  background-color: #ffffff; /* Black*/
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 60px; /* Place content 60px from the top */
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidepanel */
}

 .closebutton {
    background-color: #000000;
    color: #FFFFFF;
    opacity: 1;
    /*transition: opacity .6s ease-in-out;*/
    z-index: 999;
    position: fixed;
    right: 10px;
    top: 74px;
    width: 50px;
    height: 50px;
    box-sizing: border-box;
    border-radius: 0%;
	cursor: default;
  }
  
  a.closebutton {
    font-weight: 1000;
    letter-spacing: 2px;
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.6;
    padding-left: 2px;
    padding-top: 14px;
  }

.slideout {
  background: #ffffff;
  color: #000000;
  position: fixed;
  width: 70vw;
  height: 100%;
  padding: 100px 20px;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  display: none;
  z-index:11;
  overflow: auto;
}
@media screen and (max-width: 600px) {
  .slideout {
    width: 100vw;
  }
  .project{
	  background-size: contain;
	  height: 40vh;
	  padding: 0px;
  }
  .standardProjectbox{
	  padding: 10px 50px 50px 50px;
  }
}
.slideout p {
  display: block;
/*  padding: 10px 0;*/
}

.slideout.on {
  top: 0;
  right: 0;
  display:block;
}


.slideout2 {
  background: #ffffff;
  color: #000000;
  position: fixed;
  width: 50vw; /* Adjust width as needed */
  height: 70vh; /* Adjust height as needed */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px; /* Adjust padding */
  transition: 0.5s ease-in-out;
  display: none;
  z-index: 11;
  overflow: auto;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px; /* Optional rounded corners */
}

.slideout2vid {

  position: fixed;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  transition: 0.5s ease-in-out;
  display: none;
  z-index: 11;
  overflow: auto;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);

}

@media screen and (max-width: 600px) {
  .slideout2 {
    width: 100vw;
  }

  .slideout2vid {
    width: 100vw;
  }
}
.slideout2 p {
  display: block;
/*  padding: 10px 0;*/
}

.slideout2.on {

  display:block;
}

.slideout2vid p {
  display: block;
/*  padding: 10px 0;*/
}

.slideout2vid.on {

  display:block;
}



 .popup { display: none; }
  .popup.open { display: block; }

 .popup2 { display: none; }
  .popup2.open { display: block; }
  
 .blocker {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: ' ';
	z-index: 10;
  background: rgba(0,0,0,.6);
  }
  
  
  
  
 .bottom-content {
  position: absolute;
  bottom: 40px;
  right: 50px;
}

.bottom-content-img {
  position: absolute;
  bottom: 4px;
  left: 150px
}
.bottom-content-img3 {
  position: absolute;
  bottom: 4px;
  left: 50px
}
.bottom-content-img2 {
  position: absolute;
  bottom: 4px;
  right: 200px;
}
.top-content-img2 {
  position: absolute;
  top: 25px;
  right: 200px;
}

.bottom-content-img4 {
  position: absolute;
  bottom: 54px;
  right: 50px;
}
.top-content-img4 {
  position: absolute;
  top: 15px;
  right: 50px;
}
.bottom-content-img5 {
  position: absolute;
  bottom: 4px;
  left: 50px;
}
.top-content-img5 {
  position: absolute;
  top: 15px;
  left: 50px;
}

.projectImage{
	padding-bottom:10px;
}


.rowInsights {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  margin: 0 -10px;
}

/* Create four equal columns that sits next to each other */
.columnInsights {
  -ms-flex: 25%; /* IE10 */
  flex: 25%;
  max-width: 25%;
  padding: 0 10px;
}

.columnInsights img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .columnInsights {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .columnInsights {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }
}




.grow {
  margin: 0px -10px;
}
.growPeople {
  margin: 0px -10px;
}

/* Add padding BETWEEN each column (if you want) */
.grow,
.grow > .gcolumn .gcolumnHighlight{
  padding: 0px;
}


/* Create three equal columns that floats next to each other */
.gcolumn {
  float: left;
  width: 33.33%;
  padding: 20px 10px;
  display: none; /* Hide columns by default */
}
.gcolumnHighlight {
  float: left;
  width: 33.33%;
  padding: 10px;
  display: none; /* Hide columns by default */
  background-color: silver;
}

.gcolumnPeople {
  float: left;
  width: 20%;
  display: all; /* Hide columns by default */
  padding: 10px;
}
.gcolumnPeoplePartner {
  float: left;
  width: 20%;
  display: all; /* Hide columns by default */
  padding: 10px;
}

/* Create three equal columns that floats next to each other */
.gcolumnAll {
  float: left;
  width: 33.33%;
  padding: 0 10px;
  display: all; /* Hide columns by default */
}
.gcolumnAll13 { /*1/3rds size */
  float: left;
  width: 33.33%;
  padding: 0 10px;
  display: all; /* Hide columns by default */
}
.gcolumnAll23 { /*2/3rds size */
  float: left;
  width: 66.66%;
  padding: 0 10px;
  display: all; /* Hide columns by default */
}
.gcolumnAll4 {
  float: left;
  width: 25%;
  display: all; /* Hide columns by default */
  padding: 0 10px;
}
.gcolumnAll2 {
  float: left;
  width: 50%;
  display: all; /* Hide columns by default */
  padding: 0 10px;
}
.gcolumnAll5 {
  float: left;
  width: 20%;
  display: all; /* Hide columns by default */
  padding: 0 10px;
}
/* Clear floats after rows */
.grow:after {
  content: "";
  display: table;
  clear: both;
}
.growPeople:after {
  content: "";
  display: table;
  clear: both;
}
.growPeoplePartner:after {
  content: "";
  display: table;
  clear: both;
}

/* Content */
.content {
  /*background-color: white;
  padding: 10px;*/
}
.peopleImage{}

.content:hover{
filter: grayscale(0);}


.coverFill {
  object-fit: cover;
  height: 500px;
}

.coverFill1 {
  object-fit: cover;
  height: 1000px;
}
.coverFill2 {
  object-fit: cover;
  height: 750px;
}

.overlayPeople {
  position: fixed;
  bottom: 4px;
    right: 0px;
  left: 0px;

  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.5); /* Black see-through */
  color: #f1f1f1;
 /* width: 100%;
  transition: .5s ease;*/
  opacity:0;
  color: white;
  font-size: 20px;
  padding: 20px;
  text-align: left;
}

/* When you mouse over the container, fade in the overlay title */
.content:hover .overlayPeople {
  opacity: 1;
}



/* The "show" class is added to the filtered elements */
.gshow {
  display: block;
}

/* Style the buttons */
.gbtn {
  border: none;
  outline: none;
  padding: 12px 16px;
  background-color: white;
  cursor: pointer;
  color: black;
}

/* Add a grey background color on mouse-over */
.gbtn:hover {
  background-color: #ddd;
}

/* Add a dark background color to the active button */
.gbtn.active {
  background-color: #676767;
   color: white;
}




/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 900px) {
	  .bottom-content-img3{
	position: inherit;
	width: inherit;
}
	.project{
	  background-size: contain;
	  height: 50vh;
	  padding: 0px;
  }

	 .standardProjectbox{
	  padding: 10px 40px 0px 40px;
  }
  .gcolumn {
    width: 50%;
    width: 50%;
  }
   .gcolumnPeople {
    width: 33%;
    width: 33%;
  }
     .gcolumnPeoplePartner {
    width: 33%;
    width: 33%;
  }
    .gcolumnAll {
    width: 50%;

  }
    .gcolumnAll2 {
    width: 50%;

  }

  
    .gcolumnAll4 {
    width: 25%;

  }
   .gcolumnHighlight {
    width: 50%;
  }
  
.coverFill {
  height: 300px;
}
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
		.project{
	  background-size: contain;
	  height: 40vh;
	  padding: 0px;
  }
  .bottom-content-img3{
	position: inherit;
	width: inherit;
}
	 .standardProjectbox{
	  padding: 0px 40px 0px 40px;
  }
  .gcolumn {
    width: 100%;
  }
   .gcolumnHighlight {
    width: 100%;
  }
   .gcolumnPeople {
    width: 100%;
  }
  .gcolumnPeoplePartner {
    width: 100%;
  }
    .gcolumnAll {
    width: 100%;

  }
      .gcolumnAll2 {
    width: 100%;
   
  }
  .gcolumnAll13 {
    width: 100%;

  }
   .gcolumnAll23 {
    width: 100%;

  }
    .gcolumnAll4 {
    width: 100%;
   
  }
  
.coverFill {

  height: 300px;
}
}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}
/* Slideshow container */
.slideshow-container-nogap {
  max-width: 800px;
  position: relative;

}
/* Slideshow container */
.slideshow-container-full {

  position: relative;

}

/* Hide the images by default */
.mySlides {
  display: none;
}
/* Hide the images by default */
.mySlides1 {
  display: none;
}
/* Hide the images by default */
.mySlides2 {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.captiontext {
  color: #000000;
  font-size: 15px;
 /* padding: 8px 12px;*/
  position: absolute;
  bottom: -20px;
  width: 100%;
  text-align: left;
  font-family: Arial;
}

/* Caption text */
.captiontext1 {
  color: #000000;
  font-size: 15px;
 padding: 8px 12px;
  position: absolute;
  bottom: -100px;
  width: 100%;
  text-align: center;
  font-family: Arial;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}


/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dot.active, .dot:hover {
  background-color: #717171;
}

.dot1 {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dot1.active, .dot1:hover {
  background-color: #717171;
}

.dot2 {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dot2.active, .dot2:hover {
  background-color: #717171;
}


/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}


.img-magnifier-container {
  position: relative;
}

.img-magnifier-glass {
  position: absolute;
  border: 3px solid #000;
  border-radius: 50%;
  cursor: none;
  /*Set the size of the magnifier glass:*/
  width: 100px;
  height: 100px;
}
.tGalleryrow {
    margin: 5px -5px;
}
.tGalleryrow > .tGallerycolumn {
  padding: 5px;
}
/* The grid: Three equal columns that floats next to each other */
.tGallerycolumn {
  float: left;
  width: 33.33%;
}

.tGalleryrow:after {
  content: "";
  display: table;
  clear: both;
}

/* Style the images inside the grid */
.tGallerycolumn img {
  opacity: 0.8; 
  cursor: pointer; 
}

.tGallerycolumn img:hover {
  opacity: 1;
}

/* Clear floats after the columns */
.tGalleryrow:after {
  content: "";
  display: table;
  clear: both;
}

/* The expanding image container */
.tGallerycontainer {
  position: relative;
  display: none;
}

/* Expanding image text */
#imgtext {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: white;
  font-size: 20px;
}

/* Closable button inside the expanded image */
.tGalleryclosebtn {
  position: absolute;
  top: 10px;
  right: 15px;
  color: white;
  font-size: 35px;
  cursor: pointer;
}

#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: red; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#myBtn:hover {
  background-color: #555; /* Add a dark-grey background on hover */
}

.titles{ 
    color: #00FFF3;
   
}
.demoWrapper {
  width: 680px;
  height: 400px;
  -webkit-font-smoothing: antialiased;
  margin: 50px auto;
  perspective: 1100px;
  transform-style: preserve-3d;
 /* padding: 1px;*/
    margin-bottom: 200px;
/*  background-color: #000; */
   
    
}

.box {
  position: absolute;
  width: 180px;
  height: 180px;
  background-color: #06f;
  display: inline-block;
  margin: 10px 20px 50px 235px; 

  overflow:hidden;
}

.creative-pro{ 
    border: 1px solid #00fff3;
    color: #000000
      ;
   background: #ffffff ;
    height: 60px;
}

.creative-pro:hover{
    cursor: pointer;
    box-shadow: 0 4px 8px 0 #00fff3, 0 6px 20px 0 #00fff3;
}

.spacing
{
	padding-bottom:40px;
}
.spacing2
{
	padding-bottom:80px;
}
.spacingFooter
{
	padding-bottom:90px; /*footer is 50px*/
}

/*          ***************     NEW             Grid               ***************      */

.gridMainImg { grid-area: mainImg;}
.gridTopImg { grid-area: topImg;}
.gridTop2Img { grid-area: toppImg;}
.gridMiddleImg { grid-area: middleImg;}
.gridText { grid-area: gText;}
.gridBottomImg { grid-area: bottomImg;}
.gridBottom2Img { grid-area: bottommImg;}
.gridBottomImgAnchor { grid-area: bottomImgA; align-self: end;}


.grid-container {
  display: grid;
  grid-template-areas:

    'mainImg mainImg topImg'
    'mainImg mainImg bottomImg';

gap: 20px;
}
.grid-container-reverse {
  display: grid;
  grid-template-areas:

    'topImg mainImg mainImg'
    'bottomImg mainImg mainImg';

gap: 20px;
}
.grid-container-half { /* as above but 50%*/
  display: grid;
  grid-template-areas:

    'mainImg topImg'
    'mainImg bottomImg';

gap: 20px;
}


.grid-container1 /*1/2 1/4 1/4*/
{
  display: grid;
  grid-template-areas:

    'mainImg mainImg topImg bottomImg';

gap: 20px;
}

.grid-container2 /*top left text, anchored left picture, main right*/
{
  display: grid;
  grid-template-areas:

    'topImg topImg topImg mainImg mainImg'
	'bottomImgA bottomImgA bottomImgA  mainImg mainImg';

gap: 20px;
}

.grid-container22 /*same as #2 but single row*/
{
  display: grid;
  grid-template-areas:

    'mainImg mainImg bottomImg bottomImg bottomImg';

gap: 20px;
}


.grid-container3 
{
  display: grid;
  grid-template-areas:

    'mainImg mainImg topImg'
    'mainImg mainImg middleImg'
    'mainImg mainImg bottomImg';

gap: 20px;
}

.grid-container4
{
  display: grid;
  grid-template-areas:

    'mainImg mainImg mainImg topImg topImg'
    'mainImg mainImg mainImg bottomImgA bottomImgA'
    'mainImg mainImg mainImg bottomImgA bottomImgA';

gap: 20px;
}

.grid-container5
{
  display: grid;
  grid-template-areas:

    'topImg topImg mainImg mainImg mainImg'
    'bottomImg bottomImg mainImg mainImg mainImg';


gap: 20px;
}
.grid-container6
{
  display: grid;
  grid-template-areas:
	'gText gText topImg'
    'mainImg middleImg topImg'
    'mainImg middleImg bottomImg';


gap: 20px;
}
.grid-container7
{
  display: grid;
  grid-template-areas:
	
    'topImg mainImg mainImg'
    'middleImg middleImg bottomImg';
gap: 20px;
}
.grid-container8
{
  display: grid;
  grid-template-areas:
	
    'topImg middleImg toppImg'
    'bottomImg middleImg bottommImg';
gap: 20px;
}

.coverFillGrid 
{
  object-fit: cover;
  height: 100%;
  max-height: 100%;
  
}

@media screen and (max-width: 980px) {
.grid-container
{grid-template-areas:
    'mainImg mainImg'
    'topImg bottomImg';
    gap:20px;}
	.grid-container-half
{grid-template-areas:
    'mainImg mainImg'
    'topImg bottomImg';
    gap:20px;}
	.grid-container-reverse
{grid-template-areas:
    'mainImg mainImg'
    'topImg bottomImg';
    gap:20px;}

.grid-container1
{grid-template-areas:
    'mainImg mainImg'
    'topImg bottomImg';
    gap:20px;}

.grid-container2
{grid-template-areas:
    'mainImg topImg'
    'bottomImg bottomImg';
    gap:20px;}

.grid-container6
{grid-template-areas:
	'gText bottomImg'
    'mainImg topImg';
    gap:20px;}

.grid-container7
{
  display: grid;
  grid-template-areas:
	
    'topImg mainImg'
    'middleImg bottomImg';
gap: 20px;
}
.grid-container8
{
  display: grid;
  grid-template-areas:
	
    'topImg bottomImg'
	'middleImg top2Img'
    'middleImg bottom2Img';
gap: 20px;
}
}
@media screen and (max-width: 600px) {
.grid-container
{grid-template-areas:
    'mainImg'
    'topImg'
    'bottomImg';
    row-gap:20px;
}
.grid-container-reverse
{grid-template-areas:
    'mainImg'
    'topImg'
    'bottomImg';
    row-gap:20px;
}
.grid-container-half
{grid-template-areas:
    'mainImg'
    'topImg'
    'bottomImg';
    row-gap:20px;
}
.grid-container1
{grid-template-areas:
    'mainImg'
    'topImg'
    'bottomImg';
    row-gap:20px;
}
.grid-container2
{grid-template-areas:
	'topImg'
    'mainImg'
    'bottomImgA';
    row-gap:20px;
}
.grid-container2
{grid-template-areas:
    'mainImg'
    'bottomImg';
    row-gap:20px;
}
.grid-container4
{grid-template-areas:
    'mainImg'
    'topImg'
    'bottomImgA';
    row-gap:20px;
}
.grid-container5
{grid-template-areas:
    'mainImg'
    'topImg'
    'bottomImg';
    row-gap:20px;
}
.grid-container6
{grid-template-areas:
	'gText'
	'bottomImg'
    'mainImg'
	'topImg';
    gap:20px;}

.grid-container7
{
  display: grid;
  grid-template-areas:
	
    'topImg'
	'mainImg'
    'middleImg'
	'bottomImg';
gap: 20px;
}
.grid-container8
{
  display: grid;
  grid-template-areas:
	
    'topImg'
	'bottomImg'
	'middleImg'
	'top2Img'
    'bottom2Img';
gap: 20px;
}
}
/*          ***************     Grid               ***************      */


	.row {
		border-bottom: solid 1px transparent;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;

	}

	.row > * {
		float: left;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}

	.row:after, .row:before {
		content: '';
		display: block;
		clear: both;
		height: 0;
	}

	.row.uniform > * > :first-child {
		margin-top: 0;
	}

	.row.uniform > * > :last-child {
		margin-bottom: 0;
	}

	.row.\30 \25 > * {
		padding: 0 0 0 0rem;
	}

	.row.\30 \25 {
		margin: 0 0 -1px 0rem;
	}

	.row.uniform.\30 \25 > * {
		padding: 0rem 0 0 0rem;
	}

	.row.uniform.\30 \25 {
		margin: 0rem 0 -1px 0rem;
	}

	.row > * {
		padding: 0 0 0 2rem;
	}

	.row {
		margin: 0 0 -1px -2rem;
	}

	.row.uniform > * {
		padding: 2rem 0 0 2rem;
	}

	.row.uniform {
		margin: -2rem 0 -1px -2rem;
	}

	.row.\32 00\25 > * {
		padding: 0.1px 0 0 4rem;
	} /**************************************************************/

	.row.\32 00\25 {
		margin: 0 0 -1px -4rem;
	}

	.row.uniform.\32 00\25 > * {
		padding: 4rem 0 0 4rem;
	}

	.row.uniform.\32 00\25 {
		margin: -4rem 0 -1px -4rem;
	}

	.row.\31 50\25 > * {
		padding: 0 0 0 3rem;
	}

	.row.\31 50\25 {
		margin: 0 0 -1px -3rem;
	}

	.row.uniform.\31 50\25 > * {
		padding: 3rem 0 0 3rem;
	}

	.row.uniform.\31 50\25 {
		margin: -3rem 0 -1px -3rem;
	}

	.row.\35 0\25 > * {
		padding: 0 0 0 1rem;
	}

	.row.\35 0\25 {
		margin: 0 0 -1px -1rem;
	}

	.row.uniform.\35 0\25 > * {
		padding: 1rem 0 0 1rem;
	}

	.row.uniform.\35 0\25 {
		margin: -1rem 0 -1px -1rem;
	}

	.row.\32 5\25 > * {
		padding: 0 0 0 0.5rem;
	}

	.row.\32 5\25 {
		margin: 0 0 -1px -0.5rem;
	}

	.row.uniform.\32 5\25 > * {
		padding: 0.5rem 0 0 0.5rem;
	}

	.row.uniform.\32 5\25 {
		margin: -0.5rem 0 -1px -0.5rem;
	}

	.\31 2u, .\31 2u\24 {
		width: 100%;
		clear: none;
		margin-left: 0;
	}

	.\31 1u, .\31 1u\24 {
		width: 91.6666666667%;
		clear: none;
		margin-left: 0;
	}

	.\31 0u, .\31 0u\24 {
		width: 83.3333333333%;
		clear: none;
		margin-left: 0;
	}

	.\39 u, .\39 u\24 {
		width: 75%;
		clear: none;
		margin-left: 0;
	}

	.\38 u, .\38 u\24 {
		width: 66.6666666667%;
		clear: none;
		margin-left: 0;
	}

	.\37 u, .\37 u\24 {
		width: 58.3333333333%;
		clear: none;
		margin-left: 0;
	}

	.\36 u, .\36 u\24 {
		width: 50%;
		clear: none;
		margin-left: 0;
	}

	.\35 u, .\35 u\24 {
		width: 41.6666666667%;
		clear: none;
		margin-left: 0;
	}

	.\34 u, .\34 u\24 {
		width: 33.3333333333%;
		clear: none;
		margin-left: 0;
	}

	.\33 u, .\33 u\24 {
		width: 25%;
		clear: none;
		margin-left: 0;
	}

	.\32 u, .\32 u\24 {
		width: 16.6666666667%;
		clear: none;
		margin-left: 0;
	}

	.\31 u, .\31 u\24 {
		width: 8.3333333333%;
		clear: none;
		margin-left: 0;
	}

	.\31 2u\24 + *,
	.\31 1u\24 + *,
	.\31 0u\24 + *,
	.\39 u\24 + *,
	.\38 u\24 + *,
	.\37 u\24 + *,
	.\36 u\24 + *,
	.\35 u\24 + *,
	.\34 u\24 + *,
	.\33 u\24 + *,
	.\32 u\24 + *,
	.\31 u\24 + * {
		clear: left;
	}

	.\-11u {
		margin-left: 91.66667%;
	}

	.\-10u {
		margin-left: 83.33333%;
	}

	.\-9u {
		margin-left: 75%;
	}

	.\-8u {
		margin-left: 66.66667%;
	}

	.\-7u {
		margin-left: 58.33333%;
	}

	.\-6u {
		margin-left: 50%;
	}

	.\-5u {
		margin-left: 41.66667%;
	}

	.\-4u {
		margin-left: 33.33333%;
	}

	.\-3u {
		margin-left: 25%;
	}

	.\-2u {
		margin-left: 16.66667%;
	}

	.\-1u {
		margin-left: 8.33333%;
	}

	@media screen and (max-width: 1680px) {

		.row > * {
			padding: 0 0 0 2rem;
		}

		.row {
			margin: 0 0 -1px -2rem;
		}

		.row.uniform > * {
			padding: 2rem 0 0 2rem;
		}

		.row.uniform {
			margin: -2rem 0 -1px -2rem;
		}

		.row.\32 00\25 > * {
			padding: 0.1px 0 0 4rem;  /****************************************/
		}

		.row.\32 00\25 {
			margin: 0 0 -1px -4rem;
		}

		.row.uniform.\32 00\25 > * {
			padding: 4rem 0 0 4rem;
		}

		.row.uniform.\32 00\25 {
			margin: -4rem 0 -1px -4rem;
		}

		.row.\31 50\25 > * {
			padding: 0 0 0 3rem;
		}

		.row.\31 50\25 {
			margin: 0 0 -1px -3rem;
		}

		.row.uniform.\31 50\25 > * {
			padding: 3rem 0 0 3rem;
		}

		.row.uniform.\31 50\25 {
			margin: -3rem 0 -1px -3rem;
		}

		.row.\35 0\25 > * {
			padding: 0 0 0 1rem;
		}

		.row.\35 0\25 {
			margin: 0 0 -1px -1rem;
		}

		.row.uniform.\35 0\25 > * {
			padding: 1rem 0 0 1rem;
		}

		.row.uniform.\35 0\25 {
			margin: -1rem 0 -1px -1rem;
		}

		.row.\32 5\25 > * {
			padding: 0 0 0 0.5rem;
		}

		.row.\32 5\25 {
			margin: 0 0 -1px -0.5rem;
		}

		.row.uniform.\32 5\25 > * {
			padding: 0.5rem 0 0 0.5rem;
		}

		.row.uniform.\32 5\25 {
			margin: -0.5rem 0 -1px -0.5rem;
		}

		.\31 2u\28xlarge\29, .\31 2u\24\28xlarge\29 {
			width: 100%;
			clear: none;
			margin-left: 0;
		}

		.\31 1u\28xlarge\29, .\31 1u\24\28xlarge\29 {
			width: 91.6666666667%;
			clear: none;
			margin-left: 0;
		}

		.\31 0u\28xlarge\29, .\31 0u\24\28xlarge\29 {
			width: 83.3333333333%;
			clear: none;
			margin-left: 0;
		}

		.\39 u\28xlarge\29, .\39 u\24\28xlarge\29 {
			width: 75%;
			clear: none;
			margin-left: 0;
		}

		.\38 u\28xlarge\29, .\38 u\24\28xlarge\29 {
			width: 66.6666666667%;
			clear: none;
			margin-left: 0;
		}

		.\37 u\28xlarge\29, .\37 u\24\28xlarge\29 {
			width: 58.3333333333%;
			clear: none;
			margin-left: 0;
		}

		.\36 u\28xlarge\29, .\36 u\24\28xlarge\29 {
			width: 50%;
			clear: none;
			margin-left: 0;
		}

		.\35 u\28xlarge\29, .\35 u\24\28xlarge\29 {
			width: 41.6666666667%;
			clear: none;
			margin-left: 0;
		}

		.\34 u\28xlarge\29, .\34 u\24\28xlarge\29 {
			width: 33.3333333333%;
			clear: none;
			margin-left: 0;
		}

		.\33 u\28xlarge\29, .\33 u\24\28xlarge\29 {
			width: 25%;
			clear: none;
			margin-left: 0;
		}

		.\32 u\28xlarge\29, .\32 u\24\28xlarge\29 {
			width: 16.6666666667%;
			clear: none;
			margin-left: 0;
		}

		.\31 u\28xlarge\29, .\31 u\24\28xlarge\29 {
			width: 8.3333333333%;
			clear: none;
			margin-left: 0;
		}

		.\31 2u\24\28xlarge\29 + *,
		.\31 1u\24\28xlarge\29 + *,
		.\31 0u\24\28xlarge\29 + *,
		.\39 u\24\28xlarge\29 + *,
		.\38 u\24\28xlarge\29 + *,
		.\37 u\24\28xlarge\29 + *,
		.\36 u\24\28xlarge\29 + *,
		.\35 u\24\28xlarge\29 + *,
		.\34 u\24\28xlarge\29 + *,
		.\33 u\24\28xlarge\29 + *,
		.\32 u\24\28xlarge\29 + *,
		.\31 u\24\28xlarge\29 + * {
			clear: left;
		}

		.\-11u\28xlarge\29 {
			margin-left: 91.66667%;
		}

		.\-10u\28xlarge\29 {
			margin-left: 83.33333%;
		}

		.\-9u\28xlarge\29 {
			margin-left: 75%;
		}

		.\-8u\28xlarge\29 {
			margin-left: 66.66667%;
		}

		.\-7u\28xlarge\29 {
			margin-left: 58.33333%;
		}

		.\-6u\28xlarge\29 {
			margin-left: 50%;
		}

		.\-5u\28xlarge\29 {
			margin-left: 41.66667%;
		}

		.\-4u\28xlarge\29 {
			margin-left: 33.33333%;
		}

		.\-3u\28xlarge\29 {
			margin-left: 25%;
		}

		.\-2u\28xlarge\29 {
			margin-left: 16.66667%;
		}

		.\-1u\28xlarge\29 {
			margin-left: 8.33333%;
		}

	}

	@media screen and (max-width: 1280px) {

		.row > * {
			padding: 0 0 0 1.5rem;
		}

		.row {
			margin: 0 0 -1px -1.5rem;
		}

		.row.uniform > * {
			padding: 1.5rem 0 0 1.5rem;
		}

		.row.uniform {
			margin: -1.5rem 0 -1px -1.5rem;
		}

		.row.\32 00\25 > * {
			padding: 0.1px 0 0 3rem; /***********************************/
		}

		.row.\32 00\25 {
			margin: 0 0 -1px -3rem;
		}

		.row.uniform.\32 00\25 > * {
			padding: 3rem 0 0 3rem;
		}

		.row.uniform.\32 00\25 {
			margin: -3rem 0 -1px -3rem;
		}

		.row.\31 50\25 > * {
			padding: 0 0 0 2.25rem;
		}

		.row.\31 50\25 {
			margin: 0 0 -1px -2.25rem;
		}

		.row.uniform.\31 50\25 > * {
			padding: 2.25rem 0 0 2.25rem;
		}

		.row.uniform.\31 50\25 {
			margin: -2.25rem 0 -1px -2.25rem;
		}

		.row.\35 0\25 > * {
			padding: 0 0 0 0.75rem;
		}

		.row.\35 0\25 {
			margin: 0 0 -1px -0.75rem;
		}

		.row.uniform.\35 0\25 > * {
			padding: 0.75rem 0 0 0.75rem;
		}

		.row.uniform.\35 0\25 {
			margin: -0.75rem 0 -1px -0.75rem;
		}

		.row.\32 5\25 > * {
			padding: 0 0 0 0.375rem;
		}

		.row.\32 5\25 {
			margin: 0 0 -1px -0.375rem;
		}

		.row.uniform.\32 5\25 > * {
			padding: 0.375rem 0 0 0.375rem;
		}

		.row.uniform.\32 5\25 {
			margin: -0.375rem 0 -1px -0.375rem;
		}

		.\31 2u\28large\29, .\31 2u\24\28large\29 {
			width: 100%;
			clear: none;
			margin-left: 0;
		}

		.\31 1u\28large\29, .\31 1u\24\28large\29 {
			width: 91.6666666667%;
			clear: none;
			margin-left: 0;
		}

		.\31 0u\28large\29, .\31 0u\24\28large\29 {
			width: 83.3333333333%;
			clear: none;
			margin-left: 0;
		}

		.\39 u\28large\29, .\39 u\24\28large\29 {
			width: 75%;
			clear: none;
			margin-left: 0;
		}

		.\38 u\28large\29, .\38 u\24\28large\29 {
			width: 66.6666666667%;
			clear: none;
			margin-left: 0;
		}

		.\37 u\28large\29, .\37 u\24\28large\29 {
			width: 58.3333333333%;
			clear: none;
			margin-left: 0;
		}

		.\36 u\28large\29, .\36 u\24\28large\29 {
			width: 50%;
			clear: none;
			margin-left: 0;
		}

		.\35 u\28large\29, .\35 u\24\28large\29 {
			width: 41.6666666667%;
			clear: none;
			margin-left: 0;
		}

		.\34 u\28large\29, .\34 u\24\28large\29 {
			width: 33.3333333333%;
			clear: none;
			margin-left: 0;
		}

		.\33 u\28large\29, .\33 u\24\28large\29 {
			width: 25%;
			clear: none;
			margin-left: 0;
		}

		.\32 u\28large\29, .\32 u\24\28large\29 {
			width: 16.6666666667%;
			clear: none;
			margin-left: 0;
		}

		.\31 u\28large\29, .\31 u\24\28large\29 {
			width: 8.3333333333%;
			clear: none;
			margin-left: 0;
		}

		.\31 2u\24\28large\29 + *,
		.\31 1u\24\28large\29 + *,
		.\31 0u\24\28large\29 + *,
		.\39 u\24\28large\29 + *,
		.\38 u\24\28large\29 + *,
		.\37 u\24\28large\29 + *,
		.\36 u\24\28large\29 + *,
		.\35 u\24\28large\29 + *,
		.\34 u\24\28large\29 + *,
		.\33 u\24\28large\29 + *,
		.\32 u\24\28large\29 + *,
		.\31 u\24\28large\29 + * {
			clear: left;
		}

		.\-11u\28large\29 {
			margin-left: 91.66667%;
		}

		.\-10u\28large\29 {
			margin-left: 83.33333%;
		}

		.\-9u\28large\29 {
			margin-left: 75%;
		}

		.\-8u\28large\29 {
			margin-left: 66.66667%;
		}

		.\-7u\28large\29 {
			margin-left: 58.33333%;
		}

		.\-6u\28large\29 {
			margin-left: 50%;
		}

		.\-5u\28large\29 {
			margin-left: 41.66667%;
		}

		.\-4u\28large\29 {
			margin-left: 33.33333%;
		}

		.\-3u\28large\29 {
			margin-left: 25%;
		}

		.\-2u\28large\29 {
			margin-left: 16.66667%;
		}

		.\-1u\28large\29 {
			margin-left: 8.33333%;
		}

	}

	@media screen and (max-width: 980px) {

.bottom-content{
	position: inherit;
	
}
	  .bottom-content-img3{
	position: inherit;
	width: inherit;
}
.centeredText{
	position: inherit;
	padding: 0 0 0 15px;
}
.bottom-content-img{
	position: inherit;
	width: inherit;
}

.bottom-content-img2{
	position: inherit;
	width: inherit;
}
.top-content-img2{
	position: inherit;
	width: inherit;
}
.bottom-content-img4{
	position: inherit;
	width: inherit;
}
.top-content-img4{
	position: inherit;
	width: inherit;
}
.bottom-content-img5{
	position: inherit;
	width: inherit;
}
.top-content-img5{
	position: inherit;
	width: inherit;
}

		.row > * {
			padding: 0 0 0 1.5rem;
		}

		.row {
			margin: 0 0 -1px -1.5rem;
		}

		.row.uniform > * {
			padding: 1.5rem 0 0 1.5rem;
		}

		.row.uniform {
			margin: -1.5rem 0 -1px -1.5rem;
		}

		.row.\32 00\25 > * {
			padding: 1em 0 0 3rem;
		}

		.row.\32 00\25 {
			margin: 0 0 -1px -3rem;
		}

		.row.uniform.\32 00\25 > * {
			padding: 3rem 0 0 3rem;
		}

		.row.uniform.\32 00\25 {
			margin: -3rem 0 -1px -3rem;
		}

		.row.\31 50\25 > * {
			padding: 0 0 0 2.25rem;
		}

		.row.\31 50\25 {
			margin: 0 0 -1px -2.25rem;
		}

		.row.uniform.\31 50\25 > * {
			padding: 2.25rem 0 0 2.25rem;
		}

		.row.uniform.\31 50\25 {
			margin: -2.25rem 0 -1px -2.25rem;
		}

		.row.\35 0\25 > * {
			padding: 0 0 0 0.75rem;
		}

		.row.\35 0\25 {
			margin: 0 0 -1px -0.75rem;
		}

		.row.uniform.\35 0\25 > * {
			padding: 0.75rem 0 0 0.75rem;
		}

		.row.uniform.\35 0\25 {
			margin: -0.75rem 0 -1px -0.75rem;
		}

		.row.\32 5\25 > * {
			padding: 0 0 0 0.375rem;
		}

		.row.\32 5\25 {
			margin: 0 0 -1px -0.375rem;
		}

		.row.uniform.\32 5\25 > * {
			padding: 0.375rem 0 0 0.375rem;
		}

		.row.uniform.\32 5\25 {
			margin: -0.375rem 0 -1px -0.375rem;
		}

		.\31 2u\28medium\29, .\31 2u\24\28medium\29 {
			width: 100%;
			clear: none;
			margin-left: 0;
		}

		.\31 1u\28medium\29, .\31 1u\24\28medium\29 {
			width: 91.6666666667%;
			clear: none;
			margin-left: 0;
		}

		.\31 0u\28medium\29, .\31 0u\24\28medium\29 {
			width: 83.3333333333%;
			clear: none;
			margin-left: 0;
		}

		.\39 u\28medium\29, .\39 u\24\28medium\29 {
			width: 75%;
			clear: none;
			margin-left: 0;
		}

		.\38 u\28medium\29, .\38 u\24\28medium\29 {
			width: 66.6666666667%;
			clear: none;
			margin-left: 0;
		}

		.\37 u\28medium\29, .\37 u\24\28medium\29 {
			width: 58.3333333333%;
			clear: none;
			margin-left: 0;
		}

		.\36 u\28medium\29, .\36 u\24\28medium\29 {
			width: 50%;
			clear: none;
			margin-left: 0;
		}

		.\35 u\28medium\29, .\35 u\24\28medium\29 {
			width: 41.6666666667%;
			clear: none;
			margin-left: 0;
		}

		.\34 u\28medium\29, .\34 u\24\28medium\29 {
			width: 33.3333333333%;
			clear: none;
			margin-left: 0;
		}

		.\33 u\28medium\29, .\33 u\24\28medium\29 {
			width: 25%;
			clear: none;
			margin-left: 0;
		}

		.\32 u\28medium\29, .\32 u\24\28medium\29 {
			width: 16.6666666667%;
			clear: none;
			margin-left: 0;
		}

		.\31 u\28medium\29, .\31 u\24\28medium\29 {
			width: 8.3333333333%;
			clear: none;
			margin-left: 0;
		}

		.\31 2u\24\28medium\29 + *,
		.\31 1u\24\28medium\29 + *,
		.\31 0u\24\28medium\29 + *,
		.\39 u\24\28medium\29 + *,
		.\38 u\24\28medium\29 + *,
		.\37 u\24\28medium\29 + *,
		.\36 u\24\28medium\29 + *,
		.\35 u\24\28medium\29 + *,
		.\34 u\24\28medium\29 + *,
		.\33 u\24\28medium\29 + *,
		.\32 u\24\28medium\29 + *,
		.\31 u\24\28medium\29 + * {
			clear: left;
		}

		.\-11u\28medium\29 {
			margin-left: 91.66667%;
		}

		.\-10u\28medium\29 {
			margin-left: 83.33333%;
		}

		.\-9u\28medium\29 {
			margin-left: 75%;
		}

		.\-8u\28medium\29 {
			margin-left: 66.66667%;
		}

		.\-7u\28medium\29 {
			margin-left: 58.33333%;
		}

		.\-6u\28medium\29 {
			margin-left: 50%;
		}

		.\-5u\28medium\29 {
			margin-left: 41.66667%;
		}

		.\-4u\28medium\29 {
			margin-left: 33.33333%;
		}

		.\-3u\28medium\29 {
			margin-left: 25%;
		}

		.\-2u\28medium\29 {
			margin-left: 16.66667%;
		}

		.\-1u\28medium\29 {
			margin-left: 8.33333%;
		}

	}

	@media screen and (max-width: 736px) {

.bottom-content{
	position: inherit;
}
.bottom-content-img{
	position: inherit;
	width: inherit;
}
	  .bottom-content-img3{
	position: inherit;
	width: inherit;
}

.bottom-content-img2{
	position: inherit;
	width: inherit;
}
.top-content-img2{
	position: inherit;
	width: inherit;
}
.bottom-content-img4{
	position: inherit;
	width: inherit;
}
.top-content-img4{
	position: inherit;
	width: inherit;
}
.bottom-content-img5{
	position: inherit;
	width: inherit;
}
.top-content-img5{
	position: inherit;
	width: inherit;
}
.centeredText{
	position: inherit;
}
		.row > * {
			padding: 0 0 0 1.25rem;
		}

		.row {
			margin: 0 0 -1px -1.25rem;
		}

		.row.uniform > * {
			padding: 1.25rem 0 0 1.25rem;
		}

		.row.uniform {
			margin: -1.25rem 0 -1px -1.25rem;
		}

		.row.\32 00\25 > * {
			padding: 1em 0 0 2.5rem;
		}

		.row.\32 00\25 {
			margin: 0 0 -1px -2.5rem;
		}

		.row.uniform.\32 00\25 > * {
			padding: 2.5rem 0 0 2.5rem;
		}

		.row.uniform.\32 00\25 {
			margin: -2.5rem 0 -1px -2.5rem;
		}

		.row.\31 50\25 > * {
			padding: 0 0 0 1.875rem;
		}

		.row.\31 50\25 {
			margin: 0 0 -1px -1.875rem;
		}

		.row.uniform.\31 50\25 > * {
			padding: 1.875rem 0 0 1.875rem;
		}

		.row.uniform.\31 50\25 {
			margin: -1.875rem 0 -1px -1.875rem;
		}

		.row.\35 0\25 > * {
			padding: 0 0 0 0.625rem;
		}

		.row.\35 0\25 {
			margin: 0 0 -1px -0.625rem;
		}

		.row.uniform.\35 0\25 > * {
			padding: 0.625rem 0 0 0.625rem;
		}

		.row.uniform.\35 0\25 {
			margin: -0.625rem 0 -1px -0.625rem;
		}

		.row.\32 5\25 > * {
			padding: 0 0 0 0.3125rem;
		}

		.row.\32 5\25 {
			margin: 0 0 -1px -0.3125rem;
		}

		.row.uniform.\32 5\25 > * {
			padding: 0.3125rem 0 0 0.3125rem;
		}

		.row.uniform.\32 5\25 {
			margin: -0.3125rem 0 -1px -0.3125rem;
		}

		.\31 2u\28small\29, .\31 2u\24\28small\29 {
			width: 100%;
			clear: none;
			margin-left: 0;
		}

		.\31 1u\28small\29, .\31 1u\24\28small\29 {
			width: 91.6666666667%;
			clear: none;
			margin-left: 0;
		}

		.\31 0u\28small\29, .\31 0u\24\28small\29 {
			width: 83.3333333333%;
			clear: none;
			margin-left: 0;
		}

		.\39 u\28small\29, .\39 u\24\28small\29 {
			width: 75%;
			clear: none;
			margin-left: 0;
		}

		.\38 u\28small\29, .\38 u\24\28small\29 {
			width: 66.6666666667%;
			clear: none;
			margin-left: 0;
		}

		.\37 u\28small\29, .\37 u\24\28small\29 {
			width: 58.3333333333%;
			clear: none;
			margin-left: 0;
		}

		.\36 u\28small\29, .\36 u\24\28small\29 {
			width: 50%;
			clear: none;
			margin-left: 0;
		}

		.\35 u\28small\29, .\35 u\24\28small\29 {
			width: 41.6666666667%;
			clear: none;
			margin-left: 0;
		}

		.\34 u\28small\29, .\34 u\24\28small\29 {
			width: 33.3333333333%;
			clear: none;
			margin-left: 0;
		}

		.\33 u\28small\29, .\33 u\24\28small\29 {
			width: 25%;
			clear: none;
			margin-left: 0;
		}

		.\32 u\28small\29, .\32 u\24\28small\29 {
			width: 16.6666666667%;
			clear: none;
			margin-left: 0;
		}

		.\31 u\28small\29, .\31 u\24\28small\29 {
			width: 8.3333333333%;
			clear: none;
			margin-left: 0;
		}

		.\31 2u\24\28small\29 + *,
		.\31 1u\24\28small\29 + *,
		.\31 0u\24\28small\29 + *,
		.\39 u\24\28small\29 + *,
		.\38 u\24\28small\29 + *,
		.\37 u\24\28small\29 + *,
		.\36 u\24\28small\29 + *,
		.\35 u\24\28small\29 + *,
		.\34 u\24\28small\29 + *,
		.\33 u\24\28small\29 + *,
		.\32 u\24\28small\29 + *,
		.\31 u\24\28small\29 + * {
			clear: left;
		}

		.\-11u\28small\29 {
			margin-left: 91.66667%;
		}

		.\-10u\28small\29 {
			margin-left: 83.33333%;
		}

		.\-9u\28small\29 {
			margin-left: 75%;
		}

		.\-8u\28small\29 {
			margin-left: 66.66667%;
		}

		.\-7u\28small\29 {
			margin-left: 58.33333%;
		}

		.\-6u\28small\29 {
			margin-left: 50%;
		}

		.\-5u\28small\29 {
			margin-left: 41.66667%;
		}

		.\-4u\28small\29 {
			margin-left: 33.33333%;
		}

		.\-3u\28small\29 {
			margin-left: 25%;
		}

		.\-2u\28small\29 {
			margin-left: 16.66667%;
		}

		.\-1u\28small\29 {
			margin-left: 8.33333%;
		}

	}

	@media screen and (max-width: 480px) {
.bottom-content{
	position: inherit;
}
.centeredText{
	position: inherit;
}
		.row > * {
			padding: 0 0 0 1.25rem;
		}

		.row {
			margin: 0 0 -1px -1.25rem;
		}

		.row.uniform > * {
			padding: 1.25rem 0 0 1.25rem;
		}

		.row.uniform {
			margin: -1.25rem 0 -1px -1.25rem;
		}

		.row.\32 00\25 > * {
			padding: 1em 0 0 2.5rem;
		}

		.row.\32 00\25 {
			margin: 0 0 -1px -2.5rem;
		}

		.row.uniform.\32 00\25 > * {
			padding: 2.5rem 0 0 2.5rem;
		}

		.row.uniform.\32 00\25 {
			margin: -2.5rem 0 -1px -2.5rem;
		}

		.row.\31 50\25 > * {
			padding: 0 0 0 1.875rem;
		}

		.row.\31 50\25 {
			margin: 0 0 -1px -1.875rem;
		}

		.row.uniform.\31 50\25 > * {
			padding: 1.875rem 0 0 1.875rem;
		}

		.row.uniform.\31 50\25 {
			margin: -1.875rem 0 -1px -1.875rem;
		}

		.row.\35 0\25 > * {
			padding: 0 0 0 0.625rem;
		}

		.row.\35 0\25 {
			margin: 0 0 -1px -0.625rem;
		}

		.row.uniform.\35 0\25 > * {
			padding: 0.625rem 0 0 0.625rem;
		}

		.row.uniform.\35 0\25 {
			margin: -0.625rem 0 -1px -0.625rem;
		}

		.row.\32 5\25 > * {
			padding: 0 0 0 0.3125rem;
		}

		.row.\32 5\25 {
			margin: 0 0 -1px -0.3125rem;
		}

		.row.uniform.\32 5\25 > * {
			padding: 0.3125rem 0 0 0.3125rem;
		}

		.row.uniform.\32 5\25 {
			margin: -0.3125rem 0 -1px -0.3125rem;
		}

		.\31 2u\28xsmall\29, .\31 2u\24\28xsmall\29 {
			width: 100%;
			clear: none;
			margin-left: 0;
		}

		.\31 1u\28xsmall\29, .\31 1u\24\28xsmall\29 {
			width: 91.6666666667%;
			clear: none;
			margin-left: 0;
		}

		.\31 0u\28xsmall\29, .\31 0u\24\28xsmall\29 {
			width: 83.3333333333%;
			clear: none;
			margin-left: 0;
		}

		.\39 u\28xsmall\29, .\39 u\24\28xsmall\29 {
			width: 75%;
			clear: none;
			margin-left: 0;
		}

		.\38 u\28xsmall\29, .\38 u\24\28xsmall\29 {
			width: 66.6666666667%;
			clear: none;
			margin-left: 0;
		}

		.\37 u\28xsmall\29, .\37 u\24\28xsmall\29 {
			width: 58.3333333333%;
			clear: none;
			margin-left: 0;
		}

		.\36 u\28xsmall\29, .\36 u\24\28xsmall\29 {
			width: 50%;
			clear: none;
			margin-left: 0;
		}

		.\35 u\28xsmall\29, .\35 u\24\28xsmall\29 {
			width: 41.6666666667%;
			clear: none;
			margin-left: 0;
		}

		.\34 u\28xsmall\29, .\34 u\24\28xsmall\29 {
			width: 33.3333333333%;
			clear: none;
			margin-left: 0;
		}

		.\33 u\28xsmall\29, .\33 u\24\28xsmall\29 {
			width: 25%;
			clear: none;
			margin-left: 0;
		}

		.\32 u\28xsmall\29, .\32 u\24\28xsmall\29 {
			width: 16.6666666667%;
			clear: none;
			margin-left: 0;
		}

		.\31 u\28xsmall\29, .\31 u\24\28xsmall\29 {
			width: 8.3333333333%;
			clear: none;
			margin-left: 0;
		}

		.\31 2u\24\28xsmall\29 + *,
		.\31 1u\24\28xsmall\29 + *,
		.\31 0u\24\28xsmall\29 + *,
		.\39 u\24\28xsmall\29 + *,
		.\38 u\24\28xsmall\29 + *,
		.\37 u\24\28xsmall\29 + *,
		.\36 u\24\28xsmall\29 + *,
		.\35 u\24\28xsmall\29 + *,
		.\34 u\24\28xsmall\29 + *,
		.\33 u\24\28xsmall\29 + *,
		.\32 u\24\28xsmall\29 + *,
		.\31 u\24\28xsmall\29 + * {
			clear: left;
		}

		.\-11u\28xsmall\29 {
			margin-left: 91.66667%;
		}

		.\-10u\28xsmall\29 {
			margin-left: 83.33333%;
		}

		.\-9u\28xsmall\29 {
			margin-left: 75%;
		}

		.\-8u\28xsmall\29 {
			margin-left: 66.66667%;
		}

		.\-7u\28xsmall\29 {
			margin-left: 58.33333%;
		}

		.\-6u\28xsmall\29 {
			margin-left: 50%;
		}

		.\-5u\28xsmall\29 {
			margin-left: 41.66667%;
		}

		.\-4u\28xsmall\29 {
			margin-left: 33.33333%;
		}

		.\-3u\28xsmall\29 {
			margin-left: 25%;
		}

		.\-2u\28xsmall\29 {
			margin-left: 16.66667%;
		}

		.\-1u\28xsmall\29 {
			margin-left: 8.33333%;
		}

	}
	



	
$maxWidth: 960px;
$minTablet: 767px;

@mixin media($size) {
	@if $size == 'tabletUpwards' {@media screen and ( min-width : $minTablet ) { @content; }}
}



.comparison-slider-wrapper {
	position: relative;
	width: 100%;
	/*margin: 20px 0;*/
	background-color: white;

	.comparison-slider {
		position: relative;
		width: 100%;
		margin: 0;
		/*border: 5px white solid;*/
		box-sizing: border-box;
		> img {
			width: 100%;
			height: auto;
			display: block;
		}

		.overlay {
			display: none;
			position: absolute;
			width: 250px;
			bottom: 20px;
			right: 20px;
			background-color: rgba(0, 0, 0, 0.4);
			padding: 10px;
			box-sizing: border-box;
			color: #DDD;
			text-align: right;
			@include media('tabletUpwards') {
				display: block;
			}
		}

		.resize {
			position: absolute;
			top: 0;
			left: 0;
			height: 100%;
			width: 50%;
			overflow: hidden;
			> img {
				display: block;
			}
			.overlay {
				right: auto;
				left: 20px;
				text-align: left;
			}
		}
		
			.caption {
		position: relative;
		width: 100%;
		/*padding: 10px;*/
		box-sizing: border-box;
		text-align: left;
	}

		.divider {
			position: absolute;
			width: 2px;
			height: 100%;
			background-color: rgba(256, 256, 256, 0.2);
			left: 50%;
			top: 0;
			bottom: 0;
			margin-left: -1px;
			cursor: ew-resize;
			&:before {
				content: "";
				position: absolute;
				width: 20px;
				height: 20px;
				left: -9px;
				top: 50%;
				margin-top: -10px;
				background-color: white;
				transform: rotate(45deg);
				transition: all 0.1s ease-in-out;
			}
			&:after {
				content: "";
				position: absolute;
				width: 12px;
				height: 12px;
				left: -5px;
				top: 50%;
				margin-top: -6px;
				background-color: white;
				transform: rotate(45deg);
				transition: all 0.1s ease-in-out;
			}
			&.draggable{
				&:before {
					width: 30px;
					height: 30px;
					left: -14px;
					margin-top: -15px;
				}
				&:after {
					width: 20px;
					height: 20px;
					left: -9px;
					margin-top: -10px;
					background-color: #555;
				}
			}
		}
	}




