@import 'https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300';

a:link, 
a:visited, 
a:hover, 
a:active {
  color: inherit;
}

hr{
	padding: 0px !important;
}
.bg-1 {
	background-color: #2e2252;
	color: #fff !important;
}

.bg-1-inverted {
	border-color: #2e2252;
	color: #2e2252 !important;
}

.btn.bg-1-inverted:hover {
	border-color: #2e2252;
	background-color: #2e2252;
	color: #fff !important;
}

.bg-2 {
	background-color: cyan;
}

.navbar-toggler {
	color: #fff !important;
	border: solid 1px #fff;
}

.navbar-toggler.dark {
	color: #000 !important;
	border-color: #000 !important;
}

.form_overlay {
	position: absolute;
	top: 0px;
	left:0px;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255, 0.8);
	z-index:100;
}
#form_success,
#form_failure {
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 9999;
	background: rgba(255,255,255,0.8);
}

.sticky-buttons-holder-bottom {
	position: fixed;
	bottom: 100px;
	right: 0px;
	z-index: 10;
}
.sticky-buttons-holder-top {
	position: fixed;
	top: -8px;
	right: -5px;
	z-index: 10;
}
.sticky-button {
  background-color: #2e2252;
  border: none;
  color: #fff;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
	border: solid 1px #fff;
}
#back_to_top_btn {
  display: none; /* Hidden by default */
	width: 64px;
	height: 64px;
	border-radius: 50%;
	opacity: 0.5;
	background: rgba(254, 179, 205, 0.5);
}

.icon::before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.hero {
	/* Sizing */
	height: 100vh;

	/* Flexbox stuff */
	display: flex;
	justify-content: center;
	align-items: center;

	/* Text styles */
	text-align: center;
	color: white;

	/* Background styles */
	background-image: linear-gradient(rgba(0, 0, 0, 0.5),rgba(0, 0, 0, 0.5)), url('../img/background.jpg');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;

	position: relative;
	min-height: 900px;
}

.site-navbar {
	margin-bottom: 0;
	z-index: 1999;
	position: absolute;
	width: 100%;
}

.navbar-top {
	border-bottom: 1px solid rgba(255,255,255,.1);
}

.slanted:after {
	content: "";
	background: #fff;
	height: 200px;
	-webkit-transform: skewY(-5deg);
	-ms-transform: skewY(-5deg);
	transform: skewY(-5deg);
	position: absolute;
	left: 0;
	right: 0;
	bottom: -100px;
	z-index: 1;
}

.footer-slanted:before {
	content: "";
	height: 200px;
	-webkit-transform: skewY(-5deg);
	-ms-transform: skewY(-5deg);
	transform: skewY(-5deg);
	position: absolute;
	left: 0;
	right: 0;
	top: -100px;
	z-index: -1;
	background:	inherit;
}

.site-footer {
	position: relative;
	padding: 50px;
	z-index: 2;
	min-height: 300px;
	margin-top: 150px;
}

.site-section {
	position: relative;
	padding-top: 7rem;
	padding-bottom: 7rem;
	z-index: 2;
}

.carousel-control-prev-icon {
 background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E") !important;
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E") !important;
}

.carousel-indicators {
	bottom: -50px;
}

.carousel-inner {
	overflow: visible;
}

.testimonial-content:before {
	content: "\f10d";
	left: -36px;
	top: -36px;
	font-weight: 900;
}
.testimonial-content:after {
	content: "\f10e";
	right: -36px;
	bottom: -36px;
	font-weight: 900;
}

.testimonial-content:before,
.testimonial-content:after
{
	font-family: "Font Awesome 5 Free";
	color: #cdcdcd;
	font-size: 36px;
	font-style: normal;
	line-height: 36px;
	position: absolute;
	width: 36px;
}

.testimonial-inner {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}

.testimonial-content {
	position: relative;
	display: block;
	width: 100%;
/*	height: 100%;*/
}



/* [SLIDER] */
#slider,  #slider .slide{
  width: 500px;
  height: 250px;
}
#slider {
  overflow: hidden;
  margin: 0 auto;
  font-size: 1.2em;
  background: #ffd7d1;
}
#slider .container {
  position: relative;
  bottom: 0;
  right: 0;
  animation: slide-animation 30s infinite;
}
#slider .slide {
  position: relative;
  box-sizing: border-box;
  padding: 10px 20px;
}

/* [ANIMATION] */
@keyframes slide-animation {
  0% { 
    opacity: 0;
    bottom: 0;
  }
  11% {
    opacity: 1;
    bottom: 0; 
  }
  22% { bottom: 100%; }
  33% { bottom: 100%; }
  44% { bottom: 200%; }
  55% { bottom: 200%; }
  66% { bottom: 300%; }
  77% { bottom: 300%; }
  88% {
    opacity: 1;
    bottom: 400%; 
  }
  100% {
    opacity: 0;
    bottom: 400%;
  }
}


.hovereffect {
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: default;
	border-radius: .25rem;
}

.hovereffect .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  -webkit-transition: all 0.4s  cubic-bezier(0.88,-0.99, 0, 1.81);
  transition: all 0.4s  cubic-bezier(0.88,-0.99, 0, 1.81);
}

.hovereffect:hover .overlay {
  background-color: rgba(48, 152, 157, 0.4);
}

.hovereffect img {
  display: block;
  position: relative;
}

.hovereffect h2 {
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  position: relative;
  font-size: 17px;
  padding: 10px;
  -webkit-transform: translateY(45px);
  -ms-transform: translateY(45px);
  transform: translateY(45px);
  -webkit-transition: all 0.4s  cubic-bezier(0.88,-0.99, 0, 1.81);
  transition: all 0.4s  cubic-bezier(0.88,-0.99, 0, 1.81);
}

.hovereffect:hover h2 {
  -webkit-transform: translateY(5px);
  -ms-transform: translateY(5px);
  transform: translateY(5px);
}

.hovereffect a.info {
  display: inline-block;
  text-decoration: none;
  padding: 7px 14px;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid #fff;
  background-color: transparent;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.4s  cubic-bezier(0.88,-0.99, 0, 1.81);
  transition: all 0.4s  cubic-bezier(0.88,-0.99, 0, 1.81);
  font-weight: normal;
  margin: -52px auto 0 auto;
/*  padding: 62px 100px;*/
}

.hovereffect:hover a.info {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.hovereffect a.info:hover {
  box-shadow: 0 0 5px #fff;
}
.overlay::before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-left: -1ch;
}
.info{
  display: inline-block;
  vertical-align: middle;
}



/* Style the list */
ul.breadcrumb {
  padding: 10px 16px;
  list-style: none;
}

/* Display list items side by side */
ul.breadcrumb li {
  display: inline;
  font-size: 18px;
}

/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li+li:before {
  padding: 8px;
  color: black;
  content: "/\00a0";
}

/* Add a color to all links inside the list */
ul.breadcrumb li a {
  color: #0275d8;
  text-decoration: none;
}

/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
  color: #01447e;
  text-decoration: underline;
}



/* The Modal (background) */
.modal {
  z-index: 2000;
  background-color: rgba(0,0,0, 0.7);
}

/* Modal Content  */
.modal-content {
  position: relative;
  margin: auto;
  padding: 0;
  width: 50%;
  max-width: 1200px;
}

/* The Close Button  */
.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

/* Hide the slides by default  */
.mySlides {
  display: none;
}

.mySlides>img {
	width: 100%;
}

/* Next & previous buttons  */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-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);
}

/* Number text (1/3 etc)  */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Caption text  */
.caption-container {
  text-align: center;
	background: #000;
  padding: 2px 16px;
  color: white;
	vertical-align: middle;
}


img.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1 !important;
}

img.hover-shadow {
  transition: 0.3s;
	cursor: pointer;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}



/* Style the form */
#costEstimatorForm {
  background-color: #ffffff;
  margin: 100px auto;
  padding: 40px;
  width: 100%;
  min-width: 300px;
}

#costEstimatorForm .div-btn,
.div-btn {
  position: relative;
  color: #2e2252;
  width: 256px;
  height: 64px;
  line-height: 64px;
  transition: all 0.3s;
  font-family: 'Open Sans Condensed', sans-serif;
	text-align: center;
	cursor: pointer;
  transform-style: preserve-3d;
	margin: 5px;
	display: inline-block;
	max-width: 100%;
  background: transparent;
  border-width: 0px;
}


#costEstimatorForm .div-btn span,
.div-btn span {
		margin: auto;
    transition: all 0.3s;
    transform: scale(1, 1);
  }

#costEstimatorForm .div-btn.hover,
#costEstimatorForm .div-btn.checked,

.div-btn.hover,
.div-btn.checked {
	color: #fff;
}

.div-btn::before, .div-btn::after {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transform: translateZ(-1px);
}

.btn-one::before {
	left: 0px;
	z-index: 1;
  opacity: 0;
  background: rgba(254, 179, 205, 1);
  transform: scale(0.1, 1);
}

.btn-one.hover::before,
#costEstimatorForm .btn-one.checked::before,

.btn-one.checked::before {
	left: 0px;
  opacity: 1;
  transform: scale(1, 1);
  background: rgba(254, 179, 205, 1);
  transform: translateZ(-1px);
}

.btn-one::after {
  transition: all 0.3s;
  border: 1px solid rgba(254, 179, 205, 1);
}

.btn-one.hover::after,
#costEstimatorForm .btn-one.checked::after,

.btn-one.checked::after  {
  transform: scale(1, .1);
  opacity: 0;
}

/* BTN TWO */
.btn-two::before, .btn-two::after {
  content: '';
  position: absolute;
  width: 100%;
	height: 100%;
  bottom: 0;
	left: 0;
	z-index: 1;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-two:hover::after {
  animation-name: rotatecw;
  animation-duration: 2s;
}
.btn-two:hover::before {
  animation-name: rotateccw; 
  animation-duration: 3s;
}
.btn-two:hover::after, .btn-two:hover::before {
  left: 96px;
  width: 64px;
  
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes rotatecw {
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}

@keyframes rotateccw {
    from {transform: rotate(0deg);}
    to {transform: rotate(-360deg);}
}

/* BTN THREE */
.btn-three::before {
  opacity: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1, 0.1);
}

.btn-three:hover::before {
  opacity: 1;
  transform: scale(1, 1);
}

.btn-three::after {
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-three:hover::after {
  transform: scale(1, .1);
  opacity: 0;
}

/* BTN FOUR */

.btn-four:hover span {
  transform: scale(1.2, 1.2);
}

.btn-four::before {
  opacity: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: scale(0.1, 0.1);
}

.btn-four:hover::before {
  opacity: 1;
  transform: scale(1, 1);
}

.btn-four::after {
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-four:hover::after {
  transform: scale(0, 0);
  opacity: 0;
}

/* BTN FIVE */
.btn-five::before {
  transition: transform 0.15s, 0.15s border-radius 0.15s;
  opacity: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: scale(0.1, 0.1);
  border-radius: 50%;
}

.btn-five:hover::before {
  opacity: 1;
  transform: scale(1, 1);
  border-radius: 0;
}

.btn-five::after {
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-five:hover::after {
  opacity: 0;
}

/* BTN SIX */
.btn-six::before {
  opacity: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.3, 1.3);
}

.btn-six:hover::before {
  opacity: 1;
  transform: scale(1, 1);
}

.btn-six::after {
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-six:hover::after {
  transform: scale(0, 0);
  opacity: 0;
}




/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider-switch {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider-switch:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider-switch {
  background-color: #2196F3;
}

input:focus + .slider-switch {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider-switch:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider-switch.round {
  border-radius: 34px;
}

.slider-switch.round:before {
  border-radius: 50%;
}



.toggle.btn-ourinterior, .toggle-on.btn-ourinterior, .toggle-off.btn-ourinterior  { 
	background-color: #2e2252; 
	border-color: #2e2252;
	color: #fff;
}

.toggle.btn.ourinterior {
	position: absolute;
	right: 15px;
	border-radius: 0px;
}

.toggle.btn-ourinterior .toggle-handle { 
	border-radius: 0px; 
}

input.checkbox-text {
	height: 1.5em;
	min-height: 2.15rem;
}





.slidecontainer {
  width: 100%; /* Width of the outside container */
}

/* The slider-select itself */
.slider-select {
  -webkit-appearance: none;  /* Override default CSS styles */
  appearance: none;
  width: 100%; /* Full-width */
  height: 25px; /* Specified height */
  background: #d3d3d3; /* Grey background */
  outline: none; /* Remove outline */
  opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
  -webkit-transition: .2s; /* 0.2 seconds transition on hover */
  transition: opacity .2s;
}

/* Mouse-over effects */
.slider-select:hover {
  opacity: 1; /* Fully shown on mouse-over */
}

/* The slider-select handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.slider-select::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: #4CAF50; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

.slider-select::-moz-range-thumb {
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: #4CAF50; /* Green background */
  cursor: pointer; /* Cursor on hover */
}




input[type=range] {
    -webkit-appearance: none;
    margin: 20px 0;
    width: 100%;
		border: 0px !important;
		padding: 0px !important;
}
input[type=range]:focus {
    outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    animate: 0.2s;
    background: #2e2252;
    border-radius: 25px;
}
input[type=range]::-webkit-slider-thumb {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 4px 0 rgba(0,0,0, 1);
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -8px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
    background: #2e2252;
}
.range-slider{
    width: 100%;
    position: relative;
		margin-top: 25px;
}
.range-slider__value{
    position: absolute;
    top: -50%;
}
.range-slider__value{
    width: 30px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    background: #2e2252;
    color: #fff;
    font-size: 12px;
    display: block;
    position: absolute;
    left: calc(0% + 10px);
    transform: translate(-50%, 0);
    border-radius: 6px;
}
.range-slider__value:before{
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-top: 10px solid #2e2252;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    margin-top: -1px;
}






/* Style the input fields */
#costEstimatorForm input {
  padding: 10px;
  width: 100%;
  font-size: 17px;
  font-family: Raleway;
  border: 1px solid #2e2252;
}



/* Mark input boxes that gets an error on validation: */
#costEstimatorForm input.invalid {
  background-color: #ffdddd;
}

/* Hide all steps by default: */
#costEstimatorForm .tab {
  display: none;
}

/* Make circles that indicate the steps of the form: */
#costEstimatorForm .step {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #2e2252;
  border: none;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
}

/* Mark the active step: */
#costEstimatorForm .step.active {
  opacity: 1;
}

/* Mark the steps that are finished and valid: */
#costEstimatorForm .step.finish {
  background-color: #4CAF50;
}


.nav-tabs {
   overflow-x: auto;
   overflow-y:hidden;
   flex-wrap: nowrap;
}
.nav-tabs .nav-link {
  white-space: nowrap;
}
/*
.nav-tabs {
	position: relative;
	background-color: #fff;
	&:after {
		content: ' ';
		display: table;
		clear: both;
	}
	margin: 0;
	padding: 0;
	list-style: none;

	&__tab {
		float: left;
		width: 33.333%;
		text-align: center;
		&:first-child.active ~ .Tabs__presentation-slider {
			transform: translateX(0) scaleX(0.333);
		}
		&:nth-child(2).active ~ .Tabs__presentation-slider {
			transform: translateX(33.333%) scaleX(0.333);
		}
		&:nth-child(3).active ~ .Tabs__presentation-slider {
			transform: translateX(calc(33.333% * 2)) scaleX(0.333);
		}
	}
	&__presentation-slider {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 2px;
		background-color: #4A66F4;
		transform-origin: 0 0;
		transition: transform .25s;
	}
}

.nav-tabs .nav-item {
	font-family: 'Roboto Slab';
	> a {
		display: block;
		padding: 10px 12px;
		text-decoration: none;
		color: #666;
		transition: color .15s;
	}
	&.active {
		> a {
			color: #222;
		}
	}
	&:hover {
		> a {
			color: #222;
		}
	}
}
*/

.scrtabs-tab-container {
	border-bottom: 1px solid #2e2252;
}
.scrtabs-tab-scroll-arrow {
	border: 0px !important;
	color: #2e2252 !important;
}
.scrtabs-tab-scroll-arrow.scrtabs-disable, .scrtabs-tab-scroll-arrow.scrtabs-disable .scrtabs-click-target {
	visibility: hidden;
}

.nav-tabs>.active>a, .nav-tabs>.active>a:hover, .nav-tabs>.active>a:focus {
    border-color: #2e2252;
    border-bottom-color: transparent;
}
.nav-tabs {
   border-bottom: 1px solid #2e2252;
}




.card.card-cascade.wider .card-body.card-body-cascade {
	margin-left: 4%;
	margin-right: 4%;
	background: #fff;
	border-radius: 0 0 .25rem .25rem !important;
	-webkit-box-shadow:	0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
	box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
}

.card-body {
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
}

.card.card-cascade.wider {
	background-color: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
}

/*.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,0.125);
    border-radius: .25rem;
}*/

.card {
    font-weight: 400;
    border: 0;
}

.card.card-cascade .view.view-cascade {
    border-radius: .25rem;
    -webkit-box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18), 0 4px 15px 0 rgba(0,0,0,0.15);
    box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18), 0 4px 15px 0 rgba(0,0,0,0.15);
		z-index: 2;
}

.card-img, .card-img-top {
    border-radius: calc(0.25rem - 1px);
}

.card .view {
	padding-top: 66.67%;
  background-position: center center;

	background-size: contain;
  background-repeat: no-repeat;
}
.card .view img {
	display: none;
}

.project-thumbnail {
	width: 100%;
	padding-top: 66.67%;

	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}
.project-thumbnail img {
	display: none;
}