@charset "UTF-8";

* {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	/*outline: 1px solid blue;*/
}

:root {
	--col-brownd: #5A5154;
	--col-brownd2: #8A8184;
	--col-brownl: #CAC1C4;
	--col-rose: #D4C4C4;
	--col-brownl2: #e5dce0;
	--col-egg: #f1eeef;
	--col-gold: #e5b56f;
	--col-grey: #dddddd;
	--col-sand: #C9B7A9;
	  /*rose2 #FFFAFA;*/
}
.bgb {
	background-color: var(--col-brownl2);
}
.bgb2 {
	background-color: var(--col-brownl);
}

::-moz-selection {
	color: #333;
    background-color: var(--col-brownl2);
}

::selection {
	color: #333;
    background-color: var(--col-brownl2);
}

.fix:after {
    content: " ";
    display: block;
    height: 0;
    clear: both;
}

body {
	font-family: 'Open Sans', sans-serif;
	font-size: 18px;
	line-height: 1.6;
	background-color: var(--col-egg);
	color: #333;
}
.bg1 {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	background-color: #fff;
	box-shadow: 25px 0px 20px -20px rgba(0,0,0,0.1), -25px 0px 20px -20px rgba(0,0,0,0.1);
}

h1 { font-size: 2.1rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.17rem; }

a {
	text-decoration: none;
}

a:link,
a:visited {
    color: #333;
    -webkit-transition: background-color .5s ease, color .5s ease;
    -moz-transition: background-color .5s ease, color .5s ease;
    -ms-transition: background-color .5s ease, color .5s ease;
    -o-transition: background-color .5s ease, color .5s ease;
    transition: background-color .5s ease, color .5s ease;
}

a:hover,
a:active {
    text-decoration: underline;
    color: #333;
}

.light a {
	color: var(--col-brownl2);
}
.light a:hover,
.light a:active {
    color: var(--col-brownl2);
}

.dark a {
	color: var(--col-brownd);
}
.dark a:hover,
.dark a:active {
    color: var(--col-brownd);
}

ul {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
}

section.wrapper1 {
	width: 100%;
	background-color: var(--col-brownd);
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-image: url('../img/logoback.png');
	background-repeat: no-repeat;
	height: 70px;
	background-position: left 45px bottom 51%;
}

.logo1 {
	margin-left: 30px;
}
.logo1 img {
	vertical-align: middle;
	display: inline-block;
	max-width: 210px;
	opacity: 0.9;
}

.navmain ul {
	display: flex;
}

.navmain ul li a {
	padding: 10px;
	margin-right: 15px;
	display: block;
    background-color: var(--col-brownl);
}
.navmain ul li a:hover {
	background-color: var(--col-brownl2);
	text-decoration: none;
}

/*dropdown
li.drop {
	position: relative;
}
li.drop ul {
	position: absolute;
	z-index: 100;
	width: 171px;
	display: none;
	-webkit-box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.2);
	box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.2);
}
li.drop ul li {
	display: block;
}
li.drop ul li a {
	margin-right: 0;
	border-top: 1px solid var(--col-brownl2);
}

li.drop:hover ul {
	display: inline-block;
}
*/

.mobile_button {
	display: none;
}

.mobile_menu {
	display: none;
}

section.wrapper2 {
	width: 100%;
}

.hero {
	background-image: url('../img/hero.jpg');
	background-size: cover;
	background-position: center;
	height: 480px;
	display: flex;
	align-items: center;
	padding-left: 10%;
}
.herotxt {
	opacity: 0.8;
	zoom: 1.15;
	background-color: #fff;
}
.herotxt h1 {
	padding: 10px 10px 0 10px;
}
.herotxt h1 a:hover, .herotxt h1 a:active {
	text-decoration: none;
}

.herotxt p {
	padding-left: 10px;
	padding-bottom: 10px;
}
.herotxt p a {
	text-decoration: underline;
}

section.wrapper3 {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 45px 15px 45px 15px;
}

.wrapper3 h2 {
	font-size: 1.7rem;
	text-align: center;
	padding: 5px;
	font-weight: normal;
	color: var(--col-brownd);
	max-width: 900px;
}
section.w3sec {
	padding: 45px 15px 45px 15px;
}

section.wrapper4 {
	width: 100%;
	padding: 0 30px;
}

article.art4 {
	display: inline-block;
	vertical-align: top;
	padding: 15px;
	width: 50%;
}
article.art4 img {
	display: block;
	width: 100%;
}
article.art4 a {
	display: block;
	background-color: var(--col-brownl);
	position: relative;
	overflow: hidden;
}
article.art4 a:hover img.zoom{
	transform: scale(1.05);
}

.about4 {
	position: absolute;
	z-index: 10;
	bottom: 0;
    width: 100%;
    background-color: var(--col-brownd);
    color: var(--col-brownl);
}
.about4 h2 {
	padding: 15px;
}
.about4b {
	position: absolute;
	z-index: 11;
	bottom: 15px;
	right: 15px;
}
.pointstyle {
	padding: 15px;
	color: var(--col-brownl);
	font-size: 22px;
}


.zoom {
	-webkit-transition: transform 0.5s ease;
    -moz-transition: transform 0.5s ease;
    -ms-transition: transform 0.5s ease;
    -o-transition: transform 0.5s ease;
	transition: transform 0.5s ease;
}

.zoom_container {
	overflow: hidden;
	background-color: var(--col-grey);
}

section.wrapper5 {
	width: 100%;
}
article.art5 {
	display: inline-block;
	vertical-align: top;
	width: 50%;
	min-height: 450px;
}
.flexmain {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 450px;
}
.flexmain2 {
	display: block;
}
.flexmain2 h2 {
	padding: 15px 30px;
}
.flexmain2 p {
	padding: 15px 30px;
}
.flexmain2 li {
	padding: 15px 30px;
}

.wrap_opis {
	display: inline-block;
	vertical-align: top;
	padding: 15px;
	width: 50%;
}

.imgmain1 {
	background-image: url('../img/about1.jpg');
	background-size: cover;
	background-position: top;

}
.imgmain2 {
	background-image: url('../img/about2.jpg');
	background-size: cover;
	background-position: left;

}
.darkymain1 {
	background-color: var(--col-brownd);
	color: var(--col-brownl);
}
.darkymain2 {
	background-color: var(--col-brownl);
	color: var(--col-brownd);
}


footer {
	width: 100%;
	padding-bottom: 30px;
	background-color: var(--col-brownd);
	color: var(--col-brownl2);
}
.footwrap {
	display: inline-block;
	vertical-align: top;
	width: 33.333%;
	padding: 35px;
}
.footwrap h3 {
	padding: 15px 10px;
}
.footwrap li {
	padding: 10px;
}

.iconspace {
	margin-right: 10px;
}
.iconstyle1 {
	padding: 10px;
	border: 1px solid var(--col-brownd);
	border-radius: 50%;
}

section.bumpservice {
	margin-bottom: 30px;
}
.hidel {
	display: none;
}
.copyr {
	background-color: var(--col-brownd);
	text-align: right;
	padding: 15px 30px;
	width: 100%;
	display: block;
	color: var(--col-brownl);
	font-size: 14px;
}

/********************small*************************************/
@media only screen and (max-width: 1000px) {

.hidem {
	display: none;
}
.hero {
	height: 440px;
}

}

/*********************mobile version***********************************/

@media only screen and (max-width: 670px) {

body {
	font-size: 16px;
}

section.wrapper1 {
	position: fixed;
	top: 0;
	z-index: 100;
	height: 60px;
	-webkit-box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
	box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
	background-position: left 42px bottom 51%;
}
.topbump {
	padding-top: 60px;
}

.logo1 img {
	max-width: 200px;
}

section.wrapper2 {
	margin-top: 60px;
}

.hero {
	height: 350px;
	padding-left: 0;
	justify-content: center;
	background-image: url('../img/herom.jpg');
	background-position: right;
}
.herotxt {
	zoom: 1;
	background-color: var(--col-brownd);
	color: var(--col-brownl2);
	text-align: center;
}
.herotxt a {
	color: var(--col-brownl2);
}
.herotxt h1 {
	font-size: 1.8rem;
}

.mobile_button {
	display: block;
	cursor: pointer;
	z-index: 1000;
	/*font-size: 30px; for iconomoon backup*/
	padding: 4px 8px;
	margin-right: 30px;
	background-color: var(--col-brownl);
	border: 1px solid var(--col-brownl2);
	-webkit-transition: background-color .5s ease;
    -moz-transition: background-color .5s ease;
    -ms-transition: background-color .5s ease;
    -o-transition: background-color .5s ease;
    transition: background-color .5s ease;
}
.mobile_button:hover {
	background-color: var(--col-brownl2);
}

.menubar1, .menubar2, .menubar3 {
  width: 25px;
  height: 4px;
  background-color: #333;
  margin: 4px 0;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.change .menubar1 {
  transform: translate(0, 8px) rotate(-45deg);
}
.change .menubar2 {opacity: 0;}
.change .menubar3 {
  transform: translate(0, -8px) rotate(45deg);
}

.mobile_menu {
	display: block;
	position: fixed;
	top: 0;
	right: -350px;
	width: 250px;
	height: 100%;
	z-index: 500;
	background-color: var(--col-brownl);
	-webkit-box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
	box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
	transition: right 0.3s ease-in-out;
}

.mobile_menu.active {
	right: 0;
}

.mobile_menu ul {
	margin-top: 100px;
}
.mobile_menu ul li a {
	display: block;
	padding: 15px;
	border-bottom: 1px solid var(--col-brownl2);
	font-size: 18px;
}
.mobile_menu ul li a:hover {
	background-color: var(--col-brownl2);
	text-decoration: none;
}
.mobile_menu_first {
	border-top: 1px solid var(--col-brownl2);
}

.navmain {
	display: none;
}

.hides {
	display: none;
}

.footwrap {
	width: 100%;
	padding-bottom: 0;
}
section.wrapper3 {
	padding: 30px 10% 30px 10% ;
}
section.w3sec {
	padding: 30px 10% 60px 10%;
}

section.wrapper4 {
	padding: 0 10% 0 10%;
}
article.art4 {
	width: 100%;
	margin-bottom: 30px;
	padding: 0;
}

section.wrapper5 {
	padding: 0 0 0 0;
}

article.art5 {
	width: 100%;
	min-height: 350px;
}
.flexmain {
	min-height: 350px;
}
.flexmain2 p {
	padding: 0 25px;
}
.shows {
	display: block;
}

}

