@import url('https://fonts.googleapis.com/css2?family=Bitter&family=Great+Vibes&family=Lora:ital,wght@0,600;1,400&family=Ubuntu:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
	outline: none;
	font-display: auto;
}

ul {
	margin: 0;
	padding: 0;
}

body {
	background-color: #fff;
    color: #3a3a39;
	font-family: 'Ubuntu', sans-serif;
	font-size: 14px;
	line-height: 28px;
	position: reative;
}

a,a:hover { 
	font-family: 'Ubuntu', sans-serif;
	font-size: 14px;
	color: #3a3a39;
}

a:active, a:focus {
	outline: 0 !important;
	border: none !important;
	-moz-outline-style: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
	line-height: normal;
}

a,
a:hover,
a:focus,
a:active {
	outline: none;
	text-decoration: none;
}

button,
button:focus,
button:active,
button:hover {
	outline: none;
}

p, ul {
	font-family: 'Bitter', serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 24px;
	margin: 0;
}

ul { list-style: none; }

h2 {
	font-size: 80px;
	font-family: 'Great Vibes', cursive;
	line-height: 1.2;
	color: #dacb9b;
}

.bold {
	font-weight: 600 !important;
}

.btn {
	font-size: 14px;
	font-family: 'Ubuntu', sans-serif;
	color: #fff;
	font-weight: bold;
	text-transform: uppercase;
	text-align: center;
	padding: 15px 20px;
	transition: 0.3s;
}

.btn-1 {
	background: transparent;
	border: 2px solid #fff;
	border-radius: 25px;
	color: #fff;
}
.btn-1:hover {
	background: #dacb9b;
	border: 2px solid #dacb9b;
}

.btn-2 {
	background: #f4e6b7;
	border: 2px solid #f4e6b7;
	border-radius: 25px;
	color: #fff;
	transition: 0.3s;
	position: relative;
	overflow: hidden;
}

.btn-2:before {
	content: "";
	background: #fff;
	height: 100%;
	width: 0;
	position: absolute;
	left: 0;
	top: 0;
	transition: 0.3s;
	opacity: 0.4;
}

.btn-2:hover {
	color: rgb(34, 35, 39);
	background: transparent;
}

.btn-2:hover:before {
	width: 100%;
}

.sub-title {
	font-family: 'Lora', serif;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	color: rgb(70, 70, 70);
	text-align: center;
}

.center {
	margin: 0 auto;
	text-align: center;
}

.container {
	padding-left: 8%;
	padding-right: 8%;
	max-width: 1920px;
	margin: 0 auto;
}


/* HEADER */

header {
	background: transparent;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	color: #fff;
	z-index: 10;
}

.header-wrapper {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
}

header .fast-contact {
	position: absolute;
	right: 50px;
	top: 50%;
	transform: translateY(-50%);
}

header .fast-contact ul {
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-end;
	align-items: center;
}

.menu {
	width: 100%;
}

.menu ul {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
}

.menu ul li {
	margin-right: 25px;
	padding: 35px 0;
}
.menu ul li:last-child {
	margin-right: 0px;
}

.menu ul li a {
	font-family: 'Ubuntu', sans-serif;
	font-weight: bold;
	font-size: 12px;
	color: #fff;
	text-transform: uppercase;
	line-height: 1.2;
	display: block;
	transition: 0.3s;
}

.menu ul li a:hover,
.menu ul li a.active {
	color: #dacb9b;
}


/* *MOBILE MENU */
.burger {
	display: none;
}
.burger {
	display: none;
	position: fixed;
	top: 20px;
	left: 25px;
	width: 45px;
	height: 40px;
	padding: 10px 5px;
	border: 2px solid #BF9158;
	border-radius: 5px;
	z-index: 100002;
	transition: 0.3s;
}
.burger:hover {
	background-color: #BF9158;
	border: 2px solid #BF9158;
	color: #fff;
}
.burger span {
	display: block;
	height: 2px;
	width: 100%;
	background-color: #BF9158;
	margin-bottom: 5px;
	transition: 0.3s;
}
.burger.active {
	border: 2px solid #BF9158;
}

.burger.active span,
.burger:hover span	{
	background-color: #BF9158;
}

.burger:hover span	{
	background-color: #fff;
}
.mobile-menu {
	display: none;
	background: #fff;
	overflow: hidden;
}
.mobile-menu ul {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	color: #333;
	display: flex;
	flex-flow: column wrap;
	justify-content: center;
	align-items: center;
	transform: translateX(-100%);
	transition: 0.4s;
}
.mobile-menu.active ul {
	transition: 0.4s;
	transform: translateX(0%);
}
.mobile-menu ul li {
	width: 75%;
	padding: 20px;
	text-align: center;
	border-bottom: 1px solid #BF9158;;
}
.mobile-menu ul li a {
	font-size: 24px;
	color: #BF9158;
	text-transform: uppercase;
}
.mobile-menu ul li:last-child {
	border: none;
}

.mobile-menu ul li:hover {
	background-color: #BF9158;;
}
.mobile-menu ul li:hover a {
	color: #fff;
}

/* SECTION MAIN-PAGE // SLIDER BACKGROUND*/

.owl-carousel.slider-one .item {
	height: 100vh;
	width: 100%;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.owl-carousel.slider-one .item img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

/* LOGO */
.main-page-logo {
	height: 300px;
	width: 300px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
}

.main-page-logo img {
	height: 100%;
	width: 100%;
	objext-fit: contain;
}

/* O-NAS */
.o-nas {
	background-image: url("/assets/img/main-bg-02.webp");
	background-repeat: no-repeat;
	background-size: 60%;
	background-position: left center;
	position: relative;
	overflow: hidden;
}
.o-nas-wrapper {
	padding: 150px 0;
	text-align: center;
}

.o-nas p {
	font-family: 'Bitter', serif;
	max-width: 52%;
}

.o-nas-wrapper .image-wrapper {
	position: absolute;
	right: 2%;
	top: 50%;
	transform: translateY(-50%);
	width: 30%;
	height: auto;
	z-index: -1;
}

.o-nas .corner-left-bottom {
	left: 15%;
}

.corner-left-bottom {
	height: 80px;
	width: 80px;
	position: absolute;
	left: 0px;
	bottom: 0;
	z-index: 2;
}
.corner-left-bottom span {
	position: absolute;
	left: 10px;
	bottom: 0px;
	background-color: #f4e6b7;
	height: 80px;
	width: 2px;
}
.corner-left-bottom span:nth-of-type(odd){
	transform: rotate(90deg);
	bottom: -20px;
	left: 25px;
}

.corner-right-bottom {
	height: 80px;
	width: 80px;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 2;
}
.corner-right-bottom span {
	position: absolute;
	right: -15px;
	bottom: -35px;
	background-color: #f4e6b7;
	height: 80px;
	width: 2px;
}
.corner-right-bottom span:nth-of-type(even){
	transform: rotate(90deg);
	bottom: -55px;
	right: 0;
}

.o-nas-wrapper .image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit:cover;
}

.o-nas .corner-right-top {
	height: 80px;
	width: 80px;
	position: absolute;
	right: 5%;
	top: -30px;
	z-index: 2;
}

.o-nas .corner-right-top span {
	position: absolute;
	right: 35px;
	top: 20px;
	background-color: #f4e6b7;
	height: 80px;
	width: 2px;
}

.o-nas .corner-right-top span:nth-of-type(odd){
	transform: rotate(90deg);
	top: 0px;
	right: 55px;
}

/* BANNER */
.banner{	
	background-image: url("/assets/img/main-bg-03.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	position: relative;
	padding: 200px;
}

.banner-wrapper {
	border: 1px solid rgba(255,255,255,.4);
	padding: 30px 50px;
	margin: 0 auto;
	text-align: center;
	position: relative;
}

.banner-wrapper p {
	font-family: 'Bitter', serif;
	font-size: 16px;
	color: rgba(255,255,255,.6);
	width: 50%;
	margin: 0 auto 30px;
}

.banner-wrapper .btn {
	position: relative;
	top: 55px;
}

/* KINDS_OF SECTION */
.kinds-of {
	padding: 70px 0 50px;
}

.slider-two .item h4 {
	font-family: 'Bitter', serif;
	font-size: 18px;
	color: rgb(34, 35, 39);
	text-transform: uppercase;
	line-height: 1.333;
	text-align: center;
}

.slider-two .item .item-body {
	margin-top: 15px;
}

.owl-carousel.slider-two .owl-stage-outer {
	padding: 50px 0 45px;
}

.slider-two .owl-item,
.slider-two .owl-item.active {
	transform: scale(1);
	transition: 0.3s;
	z-index: -1;
}

.slider-two .owl-item:hover {
	transform: scale(1.2);
	-webkit-box-shadow: 0px 0px 30px -14px rgba(66, 68, 90, 1);
	-moz-box-shadow: 0px 0px 30px -14px rgba(66, 68, 90, 1);
	box-shadow: 0px 0px 30px -14px rgba(66, 68, 90, 1);
	z-index: 100;
}

.slider-two .item .item-image {
	border: 1px solid #f2f2f2;
}

.owl-theme .owl-nav.disabled+.owl-dots {
	margin-top: 30px;
}

.owl-carousel button.owl-dot {
	border-width: 1px solid #fff;
	border-radius: 3px;
	background: #c9c9c9;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	transition: 0.3s;
	margin-right: 10px;
}

.owl-carousel button.owl-dot:hover,
.owl-carousel button.owl-dot.active {
	background: #f4e6b7;
}

.owl-carousel button.owl-dot.active {
	width: 40px;
	border-radius: 10px;
	
}

.slider-two .item {
	position: relative;
	background: #fff;
}

.slider-two .item-image {
	position: relative;
}

.slider-two .item-image .item-overview {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(33,33,33, .7);
	transform: translateY(-150%);
	transition: 0.3s;
	transition-delay: .15s;
	z-index: 10;
}

.slider-two .item-image:hover .item-overview {
	transform: translateY(0);
}

.slider-two .item-image .item-overview .btn {
	color: #fff;
	transform: translateY(-150%);
	transition: 0.3s;
}

.slider-two .item-image:hover .btn {
	transform: translateY(0);
	transition-delay: .35s;
}

.kinds-of-wrapper {
	position: relative;
}

.kinds-of-wrapper .modal {
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: flex-start;
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-radius: 10px;
	background-color: #fff;
	color: #333;
	border: 4px solid #dacb9b;
	width: 70%;
	height: auto;
	padding: 30px;
	min-height: 300px;
	opacity: .8;
	visibility: hidden;
	z-index: 101;
}

.kinds-of-wrapper .modal-info-wrapper {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: flex-start;
}

.kinds-of-wrapper .modal-info-wrapper .box {
	width: 100%;
}

.kinds-of-wrapper .modal h2 {
	width: 100%;
	text-align: center;
	margin-bottom: 40px;
	color: #dacb9b;
}

.kinds-of-wrapper .modal p {
	margin-bottom: 20px;
	text-align: center;
}

.kinds-of-wrapper .modal p.opis {
	color: #676047;
	margin-bottom: 10px;
}

.kinds-of-wrapper .modal p.opis span{
	text-decoration: underline;
}

.kinds-of-wrapper .modal .box h6 {
	text-decoration: underline;
	margin-bottom: 20px;
}

.kinds-of-wrapper .modal ul li {
	color: rgba(33,33,33, .7);
}

.kinds-of-wrapper .modal p:last-child,
.kinds-of-wrapper .modal h2:last-child {
	margin-bottom: 0;
}

.kinds-of-wrapper .modal.visible {
	opacity: 1;
	visibility: auto;
}

.kinds-of-wrapper .modal .btn-close {
	position: absolute;
	right: 10px;
	top: 10px;
	font-size: 20px;
	color: #fff;
	cursor: pointer;
}

/* DETAILS SECTION */

.details {
	background-image: url("/assets/img/main-bg-04.webp");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: left top;
	padding: 50px 0 75px;	
}

#details-gallery a {
	display: inline-flex;
}

.details-wrapper,
.details-gallery {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
}

.details .details-wrapper .column {
	width: 48%;
	position: relative
}
.details .details-wrapper .column:first-child {
	padding-bottom: 70px;
}

/*
.details .details-wrapper .column .btn-box {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 5px;
	text-align: cetner;
}
*/

.order-1 {
	order: 1;
}
.order-2 {
	order: 2;
}

.details .img-box {
	width: 48%;
	height: 225px;
	position: relative;
	margin-right: 15px;
	margin-bottom: 15px;
	overflow: hidden;
}

.details .img-box:nth-child(2) {
	margin-right: 0px;
	margin-bottom: 0px;
}

.details .img-box-wide {
	width: 100%;
	height: 225px;
	position: relative;
	overflow: hidden;
}

.details .img-box img,
.details .img-box-wide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	transition: 0.3s;
}

.details .img-box img:hover,
.details .img-box-wide img:hover {
	transform: scale(1.2);
}

.details .btn-2 {
	padding-left: 50px;
	padding-right: 50px;
}

.details .corner-left-top {
	height: 80px;
	width: 80px;
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 2;
}

.details .corner-left-top span {
	position: absolute;
	left: -15px;
	top: -25px;
	background-color: #f4e6b7;
	height: 80px;
	width: 2px;
}

.details .corner-left-top span:nth-of-type(even){
	transform: rotate(90deg);
	top: -50px;
	left: 10px;
}

.details .corner-right-top {
	height: 80px;
	width: 80px;
	position: absolute;
	right: -25px;
	top: -30px;
	z-index: 2;
}

.details .corner-right-top span {
	position: absolute;
	right: 35px;
	top: 20px;
	background-color: #f4e6b7;
	height: 80px;
	width: 2px;
}

.details .corner-right-top span:nth-of-type(odd){
	transform: rotate(90deg);
	top: 0px;
	right: 55px;
}

/* CONTACTS SECTION */
.contacts {
	background-image: url("/assets/img/main-bg-05_.webp");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: 105% center;
	text-align: center;
}

.contacts h3 {
	font-family: 'Lora', serif;
	font-size: 18px;
	line-height: 1.3;
	font-weight: 600;
	color: rgb(70, 70, 70);
	text-transform: uppercase;
	margin-bottom: 15px;
}

.contacts ul li, 
.contacts p,
.contacts span {
	font-family: 'Bitter', serif;
	font-size: 14px;
	font-weight: 400;
	color: #464646;
	color: #464646;
	line-height: 2;
}

.contacts p span {
	font-weight: 600;
	display: block;
}

.contacts ul li > a {
	font-family: 'Bitter', serif;
	color: #464646;
}

.contacts .contacts-wrapper {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: flex-start;
	padding: 0 0 60px;
}

.contacts .contacts-wrapper .column {
	width: 49%;
	padding-right: 25px;
}

.contacts .contacts-wrapper .column:last-child {
	padding-right: 0px;
}

/* GOOGLE MAP */
.map  {
	background-color: #181a1c;
}

.map iframe {
	width: 100%;
}

/* FOOTER */
footer {
	font-family: 'Bitter', serif;
	background-color: #181a1c;	
}

footer h4 {
	font-family: "Ubuntu";
	font-size: 16px;
	line-height: 1.5;
	color: #fff;
	text-transform: uppercase;
}

.footer-wrapper {
	display: flex;
	flex-flow: column wrap;
	justify-content: space-between;
	align-items: flex-start;
	padding: 30px 0;
	color: #898989;
}

.footer-wrapper a {
	font-family: 'Bitter', serif;
	color: #898989;
}

.footer-head {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: flex-start;
	padding: 30px 0;
}

.footer-head .contact-info ul {
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: flex-start;
}

.footer-head  ul li {
	font-family: 'Bitter', serif;
	font-size: 14px;
	line-height: 24px;
}

.footer-head .contact-info ul li span {
	font-family: 'Bitter', serif;
	font-size: 14px;
	line-height: 32px;
}

.footer-head .contact-info ul i {
	color: #fff;
	margin-right: 10px;
}

.fast-contact {
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-start;
	align-items: center;
}

.fast-contact li {
	margin-right: 15px;
}
.fast-contact li:last-child {
	margin-right: 0;
}

.fast-contact a {
	font-family: 'Bitter', serif;
	font-size: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #303133;
	color: #fff;
	padding: 8px 10px;
	border-radius: 50%;
	transition: 0.3s;
}

.fast-contact a i {
	position: relative;
	top: 2.5px;
}

.fast-contact a:hover i {
	color: #303133;
}
.fast-contact a:hover {
	background-color: #fff;
}

.footer-body {
	margin: 0 auto;
	text-align: center;
}

.footer-body a {
	color: #f4e6b7;
}

footer .column {
	width: 24%;
}

footer .footer-logo {
	width: 100%;
}
footer .footer-logo img {
	width: 65%;
	height: auto;
}

.m0 { margin: 0px !important; }
.mt0 { margin-top: 0px !important; }
.mb0 { margin-bottom: 0px !important; }
.mt10 { margin-top: 10px; }
.mt20 { margin-top: 20px !important; }
.mt30 { margin-top: 30px !important; }
.mt40 { margin-top: 40px; }
.mt50 { margin-top: 50px; }
.mt60 { margin-top: 60px; }
.mt70 { margin-top: 70px; }
.mt80 { margin-top: 80px; }
.mt100 { margin-top: 100px; }
.mt130 { margin-top: 130px; }
.mt-50 { margin-top: -50px; }
.mt-60 { margin-top: -60px; }
.mt-100 { margin-top: -100px; }
.mb0 { margin-bottom: 0px; }
.mb5 { margin-bottom: 5px !important; }
.mb10 { margin-bottom: 10px !important; }
.mb20 { margin-bottom: 20px; }
.mb30 { margin-bottom: 30px; }
.mb40 { margin-bottom: 40px; }
.mb50 { margin-bottom: 50px; }
.mb70 { margin-bottom: 70px; }
.mb80 { margin-bottom: 80px; }
.mb100 { margin-bottom: 100px; }
.mb150 { margin-bottom: 150px; }
.mb200 { margin-bottom: 200px; }
.ml0 { margin-left: 0 !important; }
.ml10 { margin-left: 10px !important; }
.ml20 { margin-left: 20px !important; }
.mr0 { margin-right: 0 !important; }
.pt0 { padding-top: 0 !important; }
.pt20 { padding-top: 20px; }
.pt30 { padding-top: 30px; }
.pt50 { padding-top: 50px; }
.pt75 { padding-top: 75px; }
.pt80 { padding-top: 80px; }
.pt100 { padding-top: 100px; }
.pt130 { padding-top: 130px; }
.pt150 { padding-top: 150px; }
.pb0 { padding-bottom: 0px; }
.pb20 { padding-bottom: 20px; }
.pb30 { padding-bottom: 30px; }
.pb50 { padding-bottom: 50px; }
.pb75 { padding-bottom: 75px; }
.pb80 { padding-bottom: 80px; }
.pb100 { padding-bottom: 100px; }
.pb130 { padding-bottom: 130px; }
.pb150 { padding-bottom: 150px; }
.pr5 { padding-right: 5px; }
.pr10 { padding-right: 10px; }
.pr15 { padding-right: 15px; }
.pr20 { padding-right: 20px; }
.pl5 { padding-left: 5px; }
.pl10 { padding-left: 10px; }
.p30 { padding: 30px; }
.p20 { padding: 20px; }
.p10 { padding: 10px; }


/* MEDIA / MAX WIDTH 1288px */
@media (max-width: 1288px) {
	.container {
		padding-left: 40px;
		padding-right: 40px;
	}
	
	/* MAIN SLIDER  */
	.owl-carousel.slider-one .item {
		height: 70vh;
	}
	.main-page-logo {
		height: 200px;
		width: 200px;
	}
	
	.o-nas-wrapper {
		padding: 75px 0;
	}
	
	.banner {
		padding: 100px 0;
	}
	.kinds-of {
		padding: 50px 0 30px;
	}

	.details {
		padding: 25px 0 20px;
		margin-bottom: 20px;
	}
	
	.details .img-box {
		width: 100%;
		height: 175px;
	}
	
	.contacts {
		background-position: 140% center;
	}
	
}

/* MEDIA / MAX WIDTH 992px */
@media (max-width: 992px) {
	
	.container {
		padding-left: 20px;
		padding-right: 20px;
	}
	
	.m-mt20 { margin-top: 20px !important; }
	.m-mt30 { margin-top: 30px !important; }
	.m-mt50 { margin-top: 50px !important; }
	
	h2 {
		font-size: 70px;
	}
	
	.owl-carousel.slider-one .item {
		height: 50vh;
	}
	.main-page-logo {
		height: 250px;
		width: 250px;
	}
	
	/* O-NAS SECTION */
	.o-nas-wrapper {
		padding: 50px 0;
	}
	.o-nas p {
		max-width: 45%;
	}
	
	.o-nas-wrapper .image-wrapper {
		width: 250px;
		height: 250px;
	}
	.o-nas-wrapper .image-wrapper img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	
	/* BANER SECTION */
	.banner {
		padding: 50px 0 75px;
	}
	.banner-wrapper p {
		width: 75%;
	}
	
	/* ROZDAJE SECTION */
	.kinds-of {
		padding: 25px 0;
	}
	
	/* DETAILS */
	
	.details .container {
		overflow: hidden;
	}
	.details .details-wrapper .column {
		width: 100%;
	}
	
	.details .details-wrapper .column.order-1 {
		order: 2;
	}
	.details .details-wrapper .column.order-2 {
		order: 1;
	}
	.details .img-box {
		width: 48%;
	}
	#details-gallery {
		margin-top: 30px;
	}
	
	.contacts {
		background-position: 160% center;
	}
	.contacts .contacts-wrapper .column {
		width: 49%;
		padding-right: 15px;
	}
	.contacts .contacts-wrapper .column:last-child {
		padding-right: 0;
	}
	
	.title-wrapper.center {
		text-align: center;
	}
	
	/* FOOTER */
	.footer-head {
		padding: 0 0 20px;
		flex-wrap: wrap;
	}
	footer .column {
		width: 50%;
		padding-bottom: 25px; 
	}
	footer .column:last-child {
		padding-bottom: 0; 
	}
	footer .footer-logo {
		height: 200px;
		width: 200px;
	}
	footer .footer-logo img{
		width: 100%;
		height: 100%;
		object-fit: contain;
	}
}


/* MEDIA / MAX WIDTH 767px */
@media (max-width: 767px) {
	
	.container {
		padding: 0 15px;
	}
	.mobile-menu {
		display: block;
	}
	.menu {
		display: none;
	}
	.burger {
		display: block;
	}
	
	.header-wrapper {
		padding: 25px 0;
	}
	
	h2 {
		font-size: 50px;
	}
	
	/* O-NAS SECTION */
	.o-nas-wrapper {
		padding: 15px;
	}
	.o-nas-wrapper .image-wrapper {
		width: 100%;
		height: 200px;
		position: relative;
		right: auto;
		top: 85px;
	}
	
	.o-nas-wrapper .image-wrapper {
		z-index: 1;
	}
	.o-nas-wrapper .image-wrapper img {
		object-fit: contain;
	}
	
	.o-nas p {
		max-width: 75%;
	}
	
	.order-1 {
		order: 2 !important;
	}
	.order-2 {
		order: 1 !important;
	}
	
	/* BANER SECTION */
	.baner {
		padding: 25px;
	}
	.banner-wrapper {
		padding: 15px;
	}
	.banner-wrapper .btn {
		top: 45px;
	}
	.banner-wrapper p {
		width: 100%;
	}
	
	.slider-two .owl-item:hover, 
	.slider-two .owl-item.active:hover {
		box-shadow: none;
		transform: scale(1);
	}
	
	/* GALLERY */
	#details-gallery {
		margin: 10px 0 30px;
	}
	
	.contacts {
		background-size: auto;
	}
	.contacts .contacts-wrapper {
		flex-wrap: wrap;
	}
	.contacts .contacts-wrapper .column {
		width: 100%;
		padding: 15px;
	}
	.contacts .contacts-wrapper .column:last-child {
		padding-right: 15px;
	}
	
	.owl-carousel.slider-two .owl-stage-outer {
		padding: 0;
	}
	
	.details .details-wrapper .column:first-child {
		padding: 0;
	}
	
	.contacts .contacts-wrapper {
		padding-bottom: 0;
	}
	
	.kinds-of-wrapper .modal {
		width: 85%;
	}
	
	.kinds-of-wrapper .modal {
		padding: 15px;
	}
	.kinds-of-wrapper .modal h2 {
		margin-bottom: 20px;
	}
	
	/* FOOTER */	
	footer .footer-logo {
		height: 125px;
		width: 125px;
		margin: 0 auto;
		text-align: center;
	}
	footer .column {
		width: 100%;
		margin: 0 auto;
		text-align: center;
	}

	.fast-contact  {
		display: flex;
		flex-direction: row;
		justify-content: center;
	}
	.footer-head .contact-info ul {
		align-items: center;
	}
}

/* MEDIA / MAX WIDTH 640px */
@media (max-width: 640px) {
	h2 {
		font-size: 35px;
		margin-top: 20px;
	}
	.sub-title {
		font-size: 14px;
	}
	
	.mobile-menu ul li a {
		font-size: 17px;
	}
	.header-wrapper {
		padding: 40px 0;
	}
	.main-page-logo {
		height: 125px;
		width: 125px;
	}
	.banner {
		padding: 30px 0 50px;
	}
	.banner-wrapper p {
		font-size: 14px;
	}
	.banner-wrapper p:last-child{
		margin-bottom: 0;
	}
	#details-gallery {
		margin: 0;
	}
	.kinds-of, 
	.details, 
	.o-nas-wrapper {
		padding: 0;	
	}
	.details .img-box {
		width: 100%;
	}
	.column {
		margin-bottom: 0;
	}
	.o-nas p {
		max-width: 90%;
	}
	
	.contacts .contacts-wrapper {
		flex-flow: wrap;
	}
	.contacts .contacts-wrapper .column {
		width: 100%;
		margin-bottom: 30px;
	}
}