#maincss .wrapper {
    width: 100%;
    margin: 0px auto;
    box-sizing: border-box;
}

#maincss .header {
    width: 100%;
    border-bottom: 1px #c1c1c1 solid;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

#maincss .logo {
    font-size: 33px;
    color: #0776ff;
    text-align: center;
    line-height: 50px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 3px;
    padding-bottom: 10px;
    display: none;
}


/*NAV STYL/*/

#maincss .main-menu {
    width: 100%;
    text-align: center;
    border-top: 1px #c1c1c1 solid;
}

#maincss .main-menu ul {
    display: flex;
    justify-content: space-around;
    padding: 0;
    list-style-image: url('../img/arrow.png');
}

#maincss .main-menu ul li {
    list-style-type: none;
    width: 400px;
}

#maincss .main-menu ul li a {
    text-decoration: none;
    color: #565656;
}

#maincss .main-menu ul li a:hover {
    text-decoration: none;
    color: black;
    border-bottom: 2px solid black;
    padding-bottom: 17px;
    opacity: inherit;
}

/*NAV STYL END*/


/*BOX AND SECTION STYLE*/

#maincss .box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
    min-height: 120px;
    border-bottom: 1px solid #dddddd;
    box-sizing: border-box;
    padding: 20px 0 20px 0;
}
#maincss .nav {
	width: 100%;
	min-height: 50px;
	border-bottom: solid 2px;
}
#maincss .nav ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
#maincss .nav li {
	display: inline;
	float: left;
	color: black;
	background-color: white;
}
#maincss #current {
	color: white;
	background-color: black;
}
#maincss #current a {
	color: white;
	background-color: black;
}
#maincss li a {
	color: black;
	display: block;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
}

#maincss .section {
    width: 47%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#maincss .section-tech {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#maincss .section ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
#maincss .section li {
	font-size: 16px;
    color: #616266;
    margin-bottom: 0;
}
#maincss .section li::before {
	content: "• ";
	color: #c8a16a;
	padding-right: 5px;
	font-weight: bold;
}


/*IMG SHOW / HIDE CLASS*/

#maincss .center {
    text-align: center;
}

#maincss .center img {
    width: 90%;
}

#maincss .pro100 img {
	width: 100%;
}


/* .center - > ukryte na telefonach */

#maincss .show-img {
    text-align: center;
}

#maincss .show-img img {
    width: 90%;
}


/* .show-img - > zawsze pokazywane na telefonach */

#maincss .miniatures {
    text-align: center;
}

#maincss .miniatures img {
    width: 90%;
}


/*IMG SHOW / HIDE CLASS END*/

#maincss .title {
    text-align: left;
    text-transform: uppercase;
}

#maincss .short-info-icon {
    max-width: 200px;
    text-align: center;
    color: #c8a165;
    font-size: 20px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    text-transform: uppercase;
}
#maincss .short-info-icon img{
	width: 100%;
}
#maincss .add-icon {
    max-width: 250px;
    text-align: center;
    color: #616266;
    font-size: 20px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    /*text-transform: uppercase;*/
}
#maincss .add-icon img{
	width: 100%;
}
#maincss .other-add{
	text-align: justify;
}


/*BOX AND SECTION STYLE END*/


/*TABLE STYLE*/

#maincss table {
    border-collapse: collapse;
    width: 100%;
    color: #444;
}

#maincss th,
#maincss td {
    text-align: left;
    padding: 8px;
    border: 0;
}

#maincss tr:nth-child(even) {
    background-color: #f2f2f2
}


/*TABLE STYLE END*/

#maincss h2 {
    margin: 0 0 20px 0;
}

#maincss h3 {
    font-size: 20px;
    margin: 0 0 15px;
    font-weight: 500;
}

#maincss .title-blue {
    color: #c8a165;
    text-transform: uppercase;
}

#maincss p {
    font-size: 16px;
    margin-bottom: 0;
}

#maincss .footer {
    min-height: 90px;
    width: 100%;
    background-color: #222;
    text-align: center;
}

#maincss .footer-logo {
    font-size: 17px;
    font-family: 'Montserrat', sans-serif;
    color: #FFF;
    letter-spacing: 3px;
    border-bottom: 1px solid white;
    margin: 0 10px 0 10px;
    padding-top: 10px;
    padding-bottom: 10px;
}

#maincss .footer-desc {
    color: #fff;
    padding-top: 10px;
}
#maincss .mobile-show {
	display: none;
}


/*RESPONSIVE START FOR PHONES -- > max-width: 700px //////////////////////////*/

@media screen and (max-width: 700px) {
    #maincss .wrapper {
        padding: 0 10px 0 10px;
    }

    #maincss .box {
        padding: 10px 0 10px 0;
    }

    #maincss .section {
        width: 100%;
        display: block;
        margin: 0 10px 0 10px;
    }
    #maincss .section-tech {
        width: 100%;
        display: block;
        margin: 0 10px 0 10px;
    }

    #maincss .short-info-icon {
        margin: 10px 0 10px 0;
    }

    #maincss h2 {
        padding-top: 10px;
    }

    #maincss h3 {
        padding-top: 0px;
    }
    .main-menu {
        text-align: center;
    }

    #maincss .main-menu ul {
        display: block;
    }

    #maincss .main-menu ul li {
        width: 100%;
        line-height: 30px;
    }

    #maincss .main-menu ul li a:hover {
        border-bottom: 2px solid black;
        padding-bottom: 0;
    }

    #maincss .center {
        display: none;
    }
    #maincss .mobile-hide {
    	display: none;
    }
    #maincss .mobile-show {
    	display: block;
    }
}


/*RESPONSIVE END FOR PHONE ///////////////////////////////////////////////////*/

/*RESPONSIVE START FOR PHONE DESCRIPTION //////////////////////////////////////*/
@media screen and (max-width: 520px) {
	#maincss .add-icon {
		display: block;
		max-width: 400px;
	}
}
/*RESPONSIVE START FOR PHONE DESCRIPTION //////////////////////////////////////*/

/*RESPONSIVE START FOR TABLETS -- > max-width: 900px /////////////////////////*/

@media screen and (max-width: 900px) {

    #maincss h3 {
        padding-top: 0px;
    }

    #maincss .section {
        margin-bottom: 0px;
        min-height: 0;
    }
    #maincss .section-tech {
        margin-bottom: 0px;
        min-height: 0;
    }
}

/*RESPONSIVE STOP FOR TABLETS ///////////////////////////////////////////////////*/

h01 {
	font-size: 22px;
	margin: 20px;
	font-family: 'Montserrat', sans-serif;
	font-weight: bold;
}

h02 {
	font-size: 22px;
	margin: 20px;
	color: #d5b37e;
	font-family: 'Montserrat', sans-serif;
	font-weight: bold;
	text-align: center;
}

h03 {
	font-size: 25px;
}

h04 {
	font-size: 22px;
	color: #d5b37e;
	font-family: 'Montserrat', sans-serif;
	font-weight: bold;
	margin-bottom: 20px;
}

h05 {
	font-size: 15px;
}

h06 {
	font-size: 12px;
}

b3 {
	font-weight: 600;
}

dostepnosc {
	font-size: 15px;
}

.kimjestesmy {
	display: flex;
	align-items: center;
	flex-direction: column;
	height: 494px;
	width: 100%;
	box-sizing: border-box;
	background-position: center;
	background-image: url("https://twojelustra.pl/files/o-nas/gfx/kim_bg.jpg");
}

.dostepnosc {
	background-image: url("https://twojelustra.pl/files/o-nas/gfx/dostepnosc_bg.jpg");
	width: 100%;
	height: 315px;
	box-sizing: border-box;
	background-position: center;
	display: flex;
	align-items: center;
}

.trendy {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	height: 350px;
	box-sizing: border-box;
}

.najlepsi div.stocki div.stock img {
	width: 100%;
}

.trendy div.lustra {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 100%;
	max-width: 1060px;
}

.kimjestesmy div.textarea {
	width: 100%;
	text-align: center;
	line-height: 30px;
	font-size: 15px;
}

.kimjestesmy div.ikony {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	width: 70%;
	height: 50%;
	box-sizing: border-box;
}

.kimjestesmy div.ikony div.ikona {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.kimjestesmy div.ikony div.ikona img {
	width: 74px;
}

.najlepsi {
	display: flex;
	align-items: center;
	flex-direction: column;
	height: 515px;
	width: 100%;
	box-sizing: border-box;
}

.najlepsi div.textarea {
	width: 100%;
	max-width: 700px;
	text-align: center;
	line-height: 25px;
	font-size: 15px;
}

.najlepsi div.stocki {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 90%;
	margin: 30px;

}

.najlepsi div.text2column {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 90%;
	height: 120px;
	font-size: 15px;
}

.najlepsi div.text2column div.column {
	text-align: center;
	width: 45%;
	height: 100px;
	line-height: 22px;
}

.dostepnosc div.textarea {
	color: white;
	width: 80%;
	max-width: 600px;
	box-sizing: border-box;
	text-shadow: 4px 4px 20px #121212;
	position: relative;
	left: 80px;
}

.trendy div.textarea {
	width: 100%;
	max-width: 600px;
	text-align: center;
	font-size: 15px;
	line-height: 25px;
	margin-bottom: 30px;
}

.jakosc {
	display: flex;
	flex-direction: row;
	position: relative;
	justify-content: center;
	align-items: center;
	top: -48px;
	width: 100%;
	height: 430px;
	background-color: #f0f0f0;
}

.jakosc div.textarea {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	max-width: 500px;
	margin: 20px;
	padding: 20px;
	font-size: 15px;
	line-height: 25px;
}

.podpis {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
	max-height: 20px;
}

.trendy div.lustra img {
	transition-duration: 0.5s;
	-webkit-transition-duration: 0.5s;
}

.trendy div.lustra img:hover {
	transform: translateY(-12px);
	transition-duration: 0.5s;
	-webkit-transition-duration: 0.5s;
}

.najlepsi div.stocki div.stock {
	overflow: hidden;
	padding: 0;
}

.najlepsi div.stocki div.stock img {
	transition-duration: 1s;
	-webkit-transition-duration: 1s;
	margin: 0 auto;
	display: block;
}

.najlepsi div.stocki div.stock img:hover {
	cursor: pointer;
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
	transition-duration: 1s;
	-webkit-transition-duration: 1s;
	z-index: 0;
}


@media (max-width: 1000px) {
	.trendy div.lustra img.trzy {
		display: none;
	}

	.trendy div.lustra {
		position: relative;
		left: 20px;
		width: calc(100% - 45px);
	}
}

@media (max-width: 700px) {
	.kimjestesmy div.ikony {
		flex-direction: column;
		justify-content: space-around;

	}

	.kimjestesmy div.ikony div.ikona {
		flex-direction: row;
		align-items: center;
	}

	.kimjestesmy div.ikony div.ikona div.ikonatekst {
		position: relative;
		left: 20px;
		width: 110px;
	}

	.kimjestesmy {
		background-image: url("https://twojelustra.pl/files/o-nas/gfx/kim_mobile_bg.jpg");
		height: 100%;
		background-size: cover;
		padding-bottom: 35px;
	}

	.najlepsi div.stocki {
		flex-direction: column;
		align-items: center;
	}

	.najlepsi div.stocki div.stock img {
		max-width: 300px;
		width: 100%;
		padding: 5px;

	}

	.najlepsi {
		height: 100%;
	}

	.trendy div.lustra {
		display: none;
	}

	.trendy {
		height: auto;
	}

	.jakosc div.mapa {
		display: none;
	}

	.jakosc {
		height: 100%;
	}

	.najlepsi div.text2column {
		height: auto;
	}

	.jakosc div.textarea {
		align-items: center;
		justify-content: center;
		text-align: center;
	}

	.jakosc div.textarea div.text {
		text-align: center;
	}

	.dostepnosc div.textarea {
		text-align: center;
		width: 90%;
		left: 5%;
	}
	.kimjestesmy div.textarea{
		margin-bottom: 30px;
	}
	.trendy div.textarea {
		margin-bottom: 70px;
	}
	.najlepsi div.text2column div.column {
		height: auto;
		margin: 0 0 30px;
	}

}

.welcome {
	width: 100%;
	height: 300px;
	display: flex;
	flex-direction: row;
	align-items: center;
	background: url('../img/hurtowa.jpg');
	background-position: right;
	background-repeat: no-repeat;
}

.welcome div.textarea {
	width: 50%;
}

.welcome div.textarea h1 {
	margin-top: 3px;
	text-transform: none;
}

.welcome div.textarea p {
	font-size: 14px;
}

.offerstext {
	width: 100%;
	text-align: center;
	margin-top: 50px;
}

.offerstext h1 {
	color: #c8a165;
	margin-bottom: 5px;
	text-transform: none;
}

.offerstext p {
	margin-top: 0px;
	font-size: 14px;
	margin-bottom: 20px;
}

.offers {
	margin-top: 10px;
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
}
.offers>div{ width: 50%; min-width: 560px; display: flex; justify-content: space-around;}
.offers div.offer {
	width: 260px;
	height: 302px;
	display: flex;
	flex-direction: column;
	text-align: center;
	box-sizing: border-box;
	border: 1px solid #FFFFFF;
	transition: 0.5s;
}

.offers div.offer div {
	margin-top: 25px;
}

.offers div.offer b {
	font-size: 22px;
	color: #c8a165;
}

.offers div.offer p {
	margin-top: 10px;
	font-size: 14px;
}

.offers div.offer:hover {
	border: 1px solid #e6e6e6;
	box-sizing: border-box;
	background-color: #FFFFFF;
	box-shadow: 0px 15px 75px 0px rgba(0,0,0,0.12);
	border-radius: 7px;
}

.offers div.offer img {
	width: 228px;
	height: 156px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 30px;
}

.banner {
	display: flex;
	flex-direction: column;
	justify-content: center; align-items: center;
	margin-top: 50px;
	max-width: 1140px;
	height: 162px;
	background-position: center;
	text-align: center;
}

.height_fix {
	height: 191px;
}


.banner h1 {
	color: #c8a165;
	margin-top: 0px;
	margin-bottom: 5px;
	text-transform: none;
}

.banner p{
	margin: 0;
}

.background_details{ background-image: url("../img/details.jpg"); }
.background_form{ background-image: url("../img/maska-1.jpg"); }

.banner_simple{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	max-width: 1140px;
	padding: 9px 0 0;
	text-align: center;
	background-color: #9f9f9f;
	color: white;
	font-style: italic;
	font-size: 15px;
	height: 54px;
}

.detail {
	display: flex;
	flex-direction: column;
	max-width: 1140px;
	text-align: center;
	margin-top: 40px;
	font-size: 18px;
}

.detailed {
	margin-top: 20px;
	display: flex;
	flex-direction: row;
	max-width: 1140px;
}

.detailed div.element {
	width: 50%;
	height: 50px;
	margin-left: 40px;
	display: flex;
	align-self: center;
	align-items: center;
}

.detailed div.element div.img {
	height: 50px;
	margin-right: 15px;
}

.detailed div.element p {
	margin-top: 0px;
	font-size: 14px;
}

.formm>form{
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	max-width: 1140px;
	padding: 35px 10px 15px;
}
.formm .column{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around; align-items: center;
	width: 60%;
}
.formm .column.min {
	width: 40%;
}

.formm .cell{
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 40%;
	height: 80px;
	margin: 0 20px;
}

.formm .cell input {
	height: 36px;
	width: 100%;
}

.formm .double{width: 90%;}
.formm .msg{
	margin: 0;
	height: 300px;
	width: 100%;
}
.formm label{
	text-transform: uppercase;
	font-weight: 600;
	font-size: 13px;
	margin-bottom: 5px;
	width: 100%;
}
.formm label .curtis{ font-size: 10px; font-style: italic; }
.formm input[type="text"], .formm input[type="tel"], .formm input[type="email"], .formm textarea{
	border-radius: 2em;
	font-family: 'Montserrat', sans-serif;
	border: 1px solid lightgray;
	padding: 1em;
	transition-duration:  0.5s;
	text-align: initial;
	width: 100%;
}
.formm input[type="text"]:focus, .formm input[type="tel"]:focus, .formm input[type="email"]:focus, .formm textarea:focus{
	border: 1px solid #878787;
	box-shadow: 0px 7px 35px rgba(0, 0, 0, 0.11);
}

.formm input[type="text"]:hover, .formm input[type="tel"]:hover, .formm input[type="email"]:hover, .formm textarea:hover{
	border: 1px solid #878787;
}

.formm textarea {min-height: 270px;}
.formm .btn {margin: 0 auto;display: table;}

.formm input[type="submit"] {
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 600;
	padding: 10px 30px;
	border: 1px solid #c8a165;
	background-color: #c8a165;
	color: white;
	border-radius: 40px;
	transition: 0.2s;
}
.formm input[type="submit"]:hover { background-color: #181818; color: #c8a165; }
.formm input[type="submit"]:active { background-color: #000000; color: #9e7b45; border: 1px solid #9e7b45; }
.formm input, .formm textarea{ outline: none; }

.formm #result {
  width: 100%;
}

.formm input::placeholder {
	color: #cecece;
}

.formm .captcha {
  width: 100%;
  margin-bottom: 10px;
}

.formm .captcha .g-recaptcha {
  width: 305px;
  margin: 0 auto;
}

@media (max-width: 767px){
	.textarea{ padding: 10px; }
	.welcome{ position: relative; height: 100%;}
	.welcome div.textarea{ width: auto; text-align: justify; background-color: #ffffffdd;}
	.welcome div.textarea h1{ text-align: center; }

	.offers{ flex-direction: column; align-items: center; }
	.offers>div{
		display: block;
		width: auto; min-width: initial;
	}
	.offers div.offer{
		width: 90vw; height: auto;
		flex-direction: row-reverse;
		align-items: center; justify-content: space-between;
		margin: 10px auto; padding-left: 5px;
	}
	.offers div.offer:hover {
		width: 92vw;
		border: initial;
		background-color: initial;
		box-shadow: initial;
	}
	.offers div.offer div{ text-align: left; }
	.offers div.offer img{ margin: 0; }

	.details p{ width: 80vw; }

	.detailed{ flex-direction: column; margin-top: 0; }
	.detailed div.element{ width: 80vw; height: auto; margin-left: 0; margin-top: 15px; }
	.detailed div.element div.img{ width: 10vw; }
	.detailed div.element p{ width: 70vw; }

	.formm>form{ flex-direction: column; }
	.formm .column, .formm .column.min{width: 100%;display: flex;}
	.formm .cell, .formm .double{ width: 100%; }
	.formm .msg{ margin: 0 20px; }
	.formm textarea{width: 100%;}
}

@media (max-width: 420px){
  .offers div.offer img {
    width: 165px;
    height: auto;
  }
}
