*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	font-size: 62.5%;
	scroll-behavior: smooth;
	background-color: rgb(0, 0, 0);
	color: white;
}
body {
	font-family: 'Space Mono', monospace;
	width: 100%;
}

.wrapper {
	margin: 0 auto;
	width: 100%;
	max-width: 1440px;
	overflow: hidden;
}
.section__heading {
	position: relative;
	margin: 2em auto;
	font-size: 2.6rem;
	font-weight: bold;
	text-shadow: 1px 1px 1px black;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: white;
}
.section__heading-green {
	color: white;
}
.section__heading-white {
	color: white;
}
.section-padding {
	padding: 6em 0em;
}
.white__section-center {
	position: relative;
	top: 0;
	width: 100vw;
	height: 150px;
	background-color: rgb(0, 0, 0);
	border-bottom: 1px solid #907e2e;
	border-top: 1px solid #907e2e;
}
.white_section_area {
	position: relative;
	height: 100px;
  z-index: 0;
}
.white__section-left-header {
	position: absolute;
	bottom: 0;
	left: -25%;
	width: 50%;
	height: 100%;
	background-color: rgb(0, 0, 0);
	border: 1px solid #907e2e;
	transform: skew(45deg);
  z-index: 2;
}
.white__section-right-header {
	position: absolute;
	bottom: 0;
	right: -25%;
	width: 50%;
	height: 100%;
	background-color: rgb(0, 0, 0);
	border: 1px solid #907e2e;
	transform: skew(-45deg);
  z-index: 2;
}
/* NAV */
.nav__all {
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: rgb(0, 0, 0);
	border-bottom: 2px solid #907e2e;
}
.nav__all img {
	display: flex;
	justify-content: center;
	width: 20%;
	height: 20%;
	padding-left: 1em;
	text-shadow: 1px 1px 10px black;
}
.nav__logo {
	transition: opacity 0.5s;
}
.nav__logo-nonactive {
	opacity: 0;
}
.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 6%;
	padding: 2 auto;
	transition: height 0.5s;
	z-index: 990;
}
.nav-active {
	display: block;
	background-color: white;
	width: 100vw;
	height: 100vh;
	z-index: 1010;
}

.hamburger {
	position: relative;
	display: block;
	padding: 1em 2em;
	user-select: none;
	appearance: none;
	border: none;
	outline: none;
	background: none;
	cursor: pointer;
	z-index: 1;
}
.hamburger span {
	position: relative;
	display: block;
	width: 33px;
	height: 4px;
	margin-bottom: 5px;
	background-color: white;
	border-radius: 6px;
	box-shadow: 5px 5px 10px black;
	z-index: 1;
	transform-origin: 0 0;
	transition: 0.4s;
}
.hamburger.is-active span:nth-child(2) {
	transform: translateX(300%);
}
.hamburger.is-active span:nth-child(1) {
	transform: translate(0px, -2px) rotate(45deg);
}
.hamburger.is-active span:nth-child(3) {
	transform: translate(-3px, 3px) rotate(-45deg);
}
.nav__items {
	display: none;
	font-family: 'Space Mono', monospace;
}
.nav__items-active {
	position: absolute;
	background-color: #c5a825;
	right: 0;
	top: 8vh;
	height: 92vh;
	width: 100vw;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
}

.nav__item-animation {
	animation: navItemsAnimation 1s both;
}
.nav__item-text {
	position: relative;
	color: white;
	padding: 1.5em 2em;
	text-decoration: none;
	font-size: 2rem;
	font-weight: thin;
	z-index: 1;
}
.nav__item-text::before {
	content: '';
	position: absolute;
	height: 3px;
	width: 0%;
	margin-bottom: 1em;
	background-color: #fff;
	bottom: 0;
	left: 0;
	transition: width 0.5s, opacity 0.5s;
	opacity: 0;
	z-index: -1;
}
.nav__item-text:hover::before {
	width: 100%;
	opacity: 1;
}
.nav__item-text::after {
	content: '';
	position: absolute;
	height: 3px;
	width: 0%;
	margin-top: 1em;
	background-color: #fff;
	top: 0;
	left: 0;
	transition: width 0.5s, opacity 0.5s;
	opacity: 0;
	z-index: -1;
}
.nav__item-text:hover::after {
	width: 100%;
	opacity: 1;
}
.nav__items-is-active {
	color: #907e2e;
}
@keyframes navItemsAnimation {
	from {
		transform: translateX(400%);
	}
	to {
		transform: translateX(0%);
	}
}
/* HEADER */

.video__header {
	height: 100vh;
	width: 100vw;
}
.header__mains {
	background-color: white;
	width: 100vw;
	overflow: hidden;
}
.video {
	height: 100vh;
	width: 100vw;
}
.arrow {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
  z-index: 1;
}
.arrow span {
	display: block;
	width: 8px;
	height: 8px;
	border-bottom: 4px solid rgb(144, 126, 46);
	border-right: 4px solid rgb(144, 126, 46);
	box-shadow: 1px 1px 0px white;
	transform: rotate(45deg);
	animation: scroll 2s infinite;
}
.arrow span:nth-child(2) {
	animation-delay: -0.2s;
}
.arrow span:nth-child(3) {
	animation-delay: -0.4s;
}
@keyframes scroll {
	0% {
		opacity: 1;
		transform: rotate(45deg) translate(-5px, -5px);
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		transform: rotate(45deg) translate(10px, 10px);
	}
}
.fa-house-chimney-window {
	font-size: 4rem;
	color: rgb(144, 126, 46);
	text-shadow: -0.08em 0.03em 0.12em rgba(0, 0, 0, 0.486);
}
.header__mains-title {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	color: rgb(144, 126, 46);
	font-size: 3rem;
	text-transform: uppercase;
	filter: opacity(0.7);
	transition: filter 2s;
}
.header__mains-title:hover {
	filter: opacity(1);
}

.header__mains-title span {
	text-shadow: -0.08em 0.03em 0.12em rgba(0, 0, 0, 0.7);
}
.header__mains-title span:not(:first-child) {
	margin-left: -0.18em;
}
.header__mains-text {
	text-align: center;
	color: rgb(144, 126, 46);
	font-size: 1rem;
}
.header__mains-btn {
	position: absolute;
	padding: 2em 4em;
	font-weight: bold;
	font-size: 1.3rem;
	height: 100%;
	width: 100%;
	border: none;
	color: rgb(144, 126, 46);
	text-shadow: 0em 0em 2em white;
	text-decoration: none;
	text-transform: uppercase;
	text-align: center;
	background: transparent;
	cursor: pointer;
	overflow: hidden;
	transition: 0.5s;
  z-index: 1;
}
.header__mains-btn:hover {
	background-color: rgb(4, 4, 4);
	color: rgb(144, 126, 46);
}
/* ABOUTUS */
.aboutus {
	background-color: #000;
	overflow: hidden;
}
.aboutus__all {
	position: relative;
	margin: 0em 3em;
	height: 100%;
}
.aboutus__image {
	position: absolute;
	height: 100%;
	width: 550px;
	background-image: url('./img/szadkowski.jpg');
	border-radius: 30px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	padding: 100px 0;
	overflow: hidden;
	opacity: 0;
}
.aboutus__text-section {
	width: 100%;
	height: 100%;
	right: 0;
	border-radius: 10px;
	background-color: #fff;
	color: #000;
	padding: 20px;
	box-shadow: 10px 10px 8px rgba(0, 0, 0, 0.5);
}
.aboutus__text-section h3 {
	font-size: 2rem;
	padding: 1em 0em;
	color: #000;
}
.aboutus__text p {
	height: 40%;
	font-size: 1rem;
	color: #000;
	text-align: justify;
}

.special__btn {
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin-top: 5em;
	font-size: 1.2rem;
	text-align: center;
	letter-spacing: 2px;
	border: none;
	border-radius: 2rem;
	padding: 8px;
	width: 200px;
	background-color: rgb(144, 126, 46);
	color: #fff;
	overflow: hidden;
	cursor: pointer;
	z-index: 0;
}
.special__btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	transform: scaleX(0);
	transform-origin: right;
	background-color: rgba(255, 204, 0, 0.531);
	transition: transform 0.5s;
	z-index: -1;
}
.special__btn:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}
.aboutus__text-btn {
	right: 20px;
	bottom: 10px;
}
/* PROJECTS */

.projects {
	position: relative;
	overflow: hidden;
}
.projects_one {
	background-image: url('../img/lampki.jpg');
	background-size: contain;
	background-attachment: fixed;
}
.projects_two {
	background-image: url('../img/lampki.jpg');
	background-size: contain;
	background-attachment: fixed;
}
.projects_three {
	background-image: url('../img/lampki.jpg');
	background-size: contain;
	background-attachment: fixed;
}
.projects__cards {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.projects__cards_right {
	justify-content: center;
}
.projects__cards_left {
	justify-content: center;
}
.project__card {
	width: 100%;
	height: 100%;
	margin: 2em;
	border-radius: 18px;
	background: #fff;
	color: #907e2e;
	box-shadow: 5px 5px 15px black;
	text-align: center;
	transition: transform 0.5s;
	z-index: 0;
}
.card-image {
	height: 210px;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	background-position: center;
	overflow: hidden;
}
.card-image-one {
	background-size: contain;
	background-image: url('../img/Layout1.jpg');
}
.card-image-two {
	background-size: contain;
	background-image: url('../img/Layout2.jpg');
}
.card-image-three {
	background-size: contain;
	background-image: url('../img/Layout3.jpg');
}
.card-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: left;
	padding: 1em;
}
.card-text span {
	color: #423914;
	font-size: 1rem;
}
.card-text h2 {
	margin: 0.5em auto;
	font-size: 2.6rem;
}
.card-text p {
	color: grey;
	font-size: 1.2rem;
	font-weight: 300;
}
.popup {
	width: 90vw;
	height: 70vh;
	background-color: white;
	border-radius: 20px;
	position: absolute;
	transform: scale(0.1);
	transition: transform 0.4s;
	box-shadow: 2px 2px 10px white;
	z-index: 1;
	visibility: hidden;
}

.open-popup {
	visibility: visible;
	transform: scale(1);
}
.open-page {
	display: block;
}

.popup button {
	position: absolute;
	bottom: 0;
	width: 100%;
	padding: 10px 0;
	background: white;
	color: rgb(144, 126, 46);
	border: 0;
	outline: none;
	font-size: 18px;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
	cursor: pointer;
	border-top: 2px solid white;
}
.popup_gallery {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: center;
	padding: 10px;
}
.popup_gallery .image {
	border: 5px solid #907e2e;
	overflow: hidden;
	cursor: pointer;
}
.popup_gallery .image img {
	object-fit: contain;
	height: 400px;
	width: 100%;
	transition: 0.2s linear;
}
.popup_gallery .image:hover img {
	transform: scale(1.1);
}
.popup_gallery_page {
	position: fixed;
	top: 0;
	left: 0;
	background-color: white;
	height: 100%;
	width: 100%;
	z-index: 100;
	display: none;
	border-radius: 10px;
}
.popup_gallery_page span {
	position: absolute;
	top: -10px;
	right: 10px;
	font-size: 60px;
	font-weight: bolder;
	color: black;
	cursor: pointer;
	z-index: 100;
}
.popup_gallery_page img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: 5px solid white;
	border-radius: 5px;
	width: 100%;
	height: 80%;
	object-fit: contain;
}
.card-stats {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	height: 80px;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
	background: #907e2e;
}
.stat {
	font-size: 1.2rem;
	color: #fff;
	width: 33%;
}
.type {
	font-size: 1rem;
	text-transform: uppercase;
	margin-top: 0.6em;
}
.value {
	font-size: 1.6rem;
	font-weight: bold;
}
.border {
	border-left: 1px solid rgb(255, 255, 255);
	border-right: 1px solid rgb(255, 255, 255);
}
.project__card:hover {
	transform: scale(1.02);
	box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.6);
}
/* OFFERT */
.offer__card {
	position: relative;
	text-align: center;
	margin: 2em 1em;
	height: 800px;
	perspective: 1000px;
	overflow: hidden;
}
.offer__card:hover .offer__card-img {
	transform: rotateY(-180deg);
	opacity: 0;
}

.offer__card:hover .offer__card-info {
	transform: rotateY(0deg);
	opacity: 1;
}

.offer__card-img {
	padding: 2em;
	height: 100%;
	border-radius: 8px;
	background-size: cover;
	background-position: center;
	transition: opacity 1s, -webkit-transform 2s;
	transition: transform 2s, opacity 1s;
	transition: transform 2s, opacity 1s, -webkit-transform 2s;
}

.offer__card-img--first {
	background-image: linear-gradient(10deg, rgba(90, 80, 37, 0.3), rgba(70, 63, 31, 0.2)), url('../img//sciana1_a.jpg');
}

.offer__card-img--second {
	background-image: linear-gradient(10deg, rgba(50, 43, 13, 0.3), rgba(36, 31, 9, 0.4)), url('../img//sciana2_a.jpg');
}

.offer__card-img--third {
	background-image: linear-gradient(10deg, rgb(144, 126, 46, 0.3), rgba(144, 126, 46, 0.2)), url('../img/sciana3_a.jpg');
}

.offer__card-img--title {
	color: #fff;
	font-size: 3.6rem;
}

.offer__card-img--info {
	position: absolute;
	bottom: 30px;
	right: 30px;
	font-size: 1.5rem;
	color: #fff;
}

.offer__card-img--info i {
	margin-right: 0.3em;
}

.offer__card-info {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-radius: 8px;
	margin: 1em;
	transform: rotateY(180deg);
	background-image: linear-gradient(45deg, #eac41d, #aa9229, #907e2e);
	opacity: 0;
	color: #fff;
	transition: transform 1s, opacity 2s;
}

.offer__card-info--title {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 0.6em;
	font-size: 3.2rem;
}

.offer__card-info--list {
	margin: 0 auto;
	width: 70%;
	font-size: 2.4rem;
	list-style: none;
}

.offer__card-info--list---item {
	padding: 0.5em;
	font-size: 1.4rem;
	border-bottom: 1px solid #eee;
}

.offer__card-info--list---item:last-child {
	border-bottom: none;
}

.offer__text-btn {
	position: absolute;
	left: 50%;
	bottom: 2em;
	transform: translateX(-50%);
	padding: 0.5em 1em;
	border-radius: 8px;
	width: 80%;
	height: 50px;
	font-weight: bold;
	border: 1px solid white;
	color: #fff;
	background-color: #c3b714e5;
	font-size: 2rem;
	cursor: pointer;
}

.offer__card---active .offer__card-img {
	transform: rotateY(-180deg);
	opacity: 0;
}

.offer__card---active .offer__card-info {
	transform: rotateY(0deg);
	opacity: 1;
}

/* REVIEW */
.review {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 70vh;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgb(0, 0, 0);
	overflow: hidden;
}
.swiper {
	width: 100%;
	padding-top: 50px;
	padding-bottom: 100px;
	z-index: 0;
}
.swiper-slide {
	background-position: center;
	background-size: cover;
	width: 280px;
	height: 350px;
	background: linear-gradient(to right, #eac41d, #aa9229, #907e2e);
	background-attachment: fixed;
	border-radius: 8px;
	filter: blur(4px);
}
.swiper-slide-active {
	filter: none;
}
.swiper-slide img {
	display: block;
	width: 100%;
}
.review__card {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 40px;
	padding-top: 90px;
	color: #fff;
}
.review__quote {
	position: absolute;
	top: -70px;
	right: -110px;
	opacity: 0.2;
	margin: 1em;
	transform: scale(0.2);
}
.review__details {
	display: flex;
	align-items: center;
	margin-top: 10px;
}
.review__img {
	position: relative;
	background-position: center;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 10px;
}
.review__img img {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.review__details h3 {
	position: relative;
	font-size: 1.6rem;
	font-weight: bold;
	letter-spacing: 1px;
	text-shadow: 2px 2px 10px black;
	line-height: 2em;
}
.review__details h3 span {
	font-weight: normal;
	font-size: 1em;
}
.review__text p {
	text-align: justify;
	font-size: 1.4rem;
}
/* CONTACT */
.contact__us {
	width: 100%;
}
.contact__us-title {
	text-align: center;
	font-size: 1.6rem;
}
.contact__us-title h3 {
	color: #907e2e;
	margin-bottom: 1em;
}
.contact__us-box {
	display: flex;
	justify-content: center;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
}
.contact__box {
	padding: 2em;
	margin: 1em 1em;
	box-shadow: 5px 5px 5px rgb(0, 0, 0);
}

.contact__us-box-left {
	height: 100%;
	width: 100%;
}
.contact__us-box-right {
	height: 100%;
	width: 100%;
}
.contact__us-form {
	padding-bottom: 1em;
}

.contact__us-info,
.contact__us-map {
	padding-bottom: 1em;
}

.contact__box h3 {
	color: white;
	font-size: 1.8rem;
	margin-bottom: 10px;
}
.contact__row50 {
	display: flex;
}
.contact__inputBox {
	display: flex;
	flex-direction: column;
	margin-right: 10px;
	margin-bottom: 10px;
	width: 50%;
}
.contact__row100 .contact__inputBox {
	width: 100%;
}
.contact__form-label {
	color: white;
	margin-top: 10px;
	margin-bottom: 5px;
	font-weight: bold;
	font-size: 1.4rem;
}
.contact__form-input {
	padding: 1em;
	font-size: 1.1rem;
	outline: none;
	border: 1px solid #000;
}
.contact__form-textarea {
	padding: 1em;
	font-size: 1.1rem;
	outline: none;
	border: 1px solid #000;
	resize: none;
	min-height: 180px;
	margin-bottom: 10px;
}
.contact_btn-position {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 2em;
}
.contact__us-info {
	background: linear-gradient(to left, #eac41d, #aa9229, #907e2e);
	color: white;
}
.contact__infoBox div {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}
.contact__infoBox div span {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #b9a135;
	min-width: 40px;
	height: 40px;
	font-size: 2em;
	border-radius: 50%;
	margin-right: 15px;
}
.contact__infoBox div p {
	color: #fff;
	font-size: 1.1em;
}
.contact__infoBox div a {
	color: #fff;
	text-decoration: none;
	font-size: 1.1em;
}
.contact__infoBox-social {
	display: flex;
	justify-content: space-evenly;
	margin-top: 30px;
}
.contact__infoBox-social li {
	list-style: none;
}
.contact__infoBox-social li a {
	color: rgb(255, 255, 255);
	font-size: 2em;
}
.contact__infoBox-social li a:hover {
	color: rgb(139, 139, 139);
}
.contact__us-map {
	padding: 0;
}
.contact__us-map iframe {
	width: 100%;
	height: 100%;
}
/* FOOTER */
.footer {
	color: #fff;
	background-color: rgb(0, 0, 0);
	padding: 2em;
	text-align: center;
}

.footer__box {
	font-size: 1.4rem;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.footer__box img {
	width: 10%;
	height: 10%;
}
.footer__box-desktop {
	display: none;
}

.footer__box-title {
	display: flex;
	flex-direction: column;
	margin-bottom: 0.5em;
	font-size: 3rem;
	text-transform: uppercase;
}
.footer__box-title .fa-solid {
	margin-bottom: 15px;
}
.footer__bottom-text {
	padding: 2em;
	font-size: 1.2em;
	text-align: center;
}
.footer__box hr {
	color: #fff;
	width: 90%;
	margin-bottom: 0.5em;
}

/* COOKIE */

.cookie {
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	top: 0;
	z-index: 100;
	padding: 2em;
	margin-top: 1em;
	font-size: 2rem;
	height: 300px;
	width: 100%;
	color: #fff;
	text-align: center;
	background-color: #907e2e;
	opacity: 0;
	transform: translateY(-100%);
	animation: show-cookies 0.5s 0.5s forwards;
}
.hide {
	display: none;
}
.cookie-btn {
	margin-top: 2em;
	padding: 1.4em;
	font-size: 1.6rem;
	border: 5px solid white;
	border-radius: 8px;
	color: #fff;
	background-color: #c3b714e5;
	transition: background-color 0.3s;
	cursor: pointer;
}
.cookie-btn:hover {
	background-color: #d2cc7ce5;
}
@keyframes show-cookies {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/* MEDIA */
@media (min-width: 480px) {
	.nav__all img {
		width: 100px;
		height: 80px;
	}
	.popup_gallery .image img {
		object-fit: contain;
		height: 500px;
		width: 100%;
		transition: 0.2s linear;
	}
}
@media (min-width: 768px) {
	.nav__all img {
		width: 130px;
		height: 100px;
	}
	.white-block-left {
		height: 45%;
		width: 45%;
	}
	.white-block-right {
		height: 45%;
		width: 45%;
	}
	.nav__items {
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
	}
	.nav__item-text {
		display: flex;
		justify-content: flex-end;
		font-size: 1.4rem;
	}
	.hamburger {
		display: none;
	}
	.header__mains-title {
		font-size: 9rem;
	}
	.fa-house-chimney-window {
		font-size: 5rem;
	}
	.header__mains-text {
		font-size: 1.2rem;
	}
	.aboutus__image {
		opacity: 1;
	}
	.aboutus__text-section {
		position: relative;
		left: 40%;
		width: 55%;
	}
	.projects__cards {
		padding-top: 8em;
		padding-bottom: 8em;
		height: 100vh;
	}
	.project__card {
		width: 28%;
		height: 600px;
	}
	.projects_one {
		background-image: url('../img/DOmProjekt_1a.jpg');
		background-size: cover;
		background-attachment: fixed;
	}
	.projects_two {
		background-image: url('../img/DOmProjekt_2a.jpg');
		background-size: cover;
		background-attachment: fixed;
	}
	.projects_three {
		background-image: url('../img/DOmProjekt_3a.jpg');
		background-size: cover;
		background-attachment: fixed;
	}

	.projects__cards_right {
		justify-content: right;
	}
	.projects__cards_left {
		justify-content: left;
	}
	.card-image-one {
		background-size: cover;
		background-image: url('../img/Layout1.jpg');
	}
	.card-image-two {
		background-size: cover;
		background-image: url('../img/Layout2.jpg');
	}
	.card-image-three {
		background-size: cover;
		background-image: url('../img/Layout3.jpg');
	}
	.popup_gallery .image {
		height: 100%;
		width: 100%;
	}
	.popup {
		left: 50%;
		transform: translateX(-50%);
	}
	.offers__cards {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	.offer__card {
		margin-right: 1.2em;
		width: 45%;
		height: 600px;
	}
	.offer__card-info--list {
		margin: 2em auto;
	}
	.card-image {
		height: 200px;
		width: 100%;
		background-repeat: no-repeat;
	}
	.card-stats {
		height: 125px;
	}
	.swiper-slide {
		width: 360px;
		height: 400px;
	}
	.reviews.sectionn-pading {
		padding: 6em 0em;
	}
	.contact__us-box-left {
		width: 60%;
		height: 100%;
	}
	.contact__us-box-right {
		width: 40%;
	}
	.contact__us-info {
		height: 310px;
	}
	.contact__infoBox-social {
		margin-top: 70px;
	}
}
@media (min-width: 1100px) {
	.offer__card {
		width: 31%;
		height: 700px;
	}
}
