/* Description: Master CSS file */

/*****************************************
Table Of Contents:
- General Styles
- Navigation
- Home
- Information
- Button
- Services
- Plans
- Testimonials
- Newsletter
- Back To Top Button
- Extra Pages
- Media Queries
******************************************/


/**************************/
/*     General Styles     */
/**************************/
:root {
	--primary: #edebe4;
	--primary-light: #f9f8f3;
	--secondary: #777;
	--tertiary: #00dabf;
	--gradient: linear-gradient(to right, #949494, #777);
}

body {background-color:#fff; } /* gdy strona za mała, reszta przejmie czarny kol. jak stopka info */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Poppins", sans-serif;
}

h1 {
	font-size: 60px;
	font-weight: 500;
}

button {
	font-family: sans-serif;
}

p,
ul,
h4 {
	margin: 0;
	padding: 0;
}

a {
	color: #474444;
	text-decoration: none;
}

li {
  	list-style-type: none;
}

/* Section Background */
.home,
.plans,
.services,
.work,
.contact {
	height: 110vh;
	position: relative;
}

.about	{
	height: 80vh;
	position: relative;
}

.plans2 	{
	height: 180vh;
	position: relative;
}

.start	{
	height: 100vh;
	position: relative;
}

.news,
.services,
.plans2,
.start,
.location,
.testimonial {
  	background-color: var(--primary);
}

.footer,
.contact,
.about,
.plans,
.work,
.company {
  	background-color: var(--primary-light);
}

.bottom {
  	background-color: black;
  	color:gray;
}
.bottom a {color: gray;}
.bottom a:hover {color: #0a58ca;}

/* Gradient Border And Background On Icons */
.home_text,
.home .fas,
.plans .far,
.plans2 .far,
.start .far,
.information .fas,
.kolumny .fas,
.work .fas,
.services .fas,
.location .far,
.location .fas {
	padding: 15px 0;
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(#949494),
		to(#777)
	);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.navbar-nav a:hover,
.footer a:hover,
.footer .fab:hover {
	cursor: pointer;
	background: var(--gradient);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}


/**********************/
/*     Navigation     */
/**********************/
.navbar {
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 0.875rem;
	background-color: var(--primary);
	box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.025);
}

.navbar .navbar-brand {
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
}

.navbar .logo-image img {
	width: 250px;
	height: 32px;
}

.navbar .logo-text {
	color: #474444;
	font-weight: 550;
	line-height: 1rem;
	font-size: 1.575rem;
	text-decoration: none;
}

.offcanvas-collapse {
	position: fixed;
	top: 2.75rem; /* adjusts the height between the top of the page and the offcanvas menu */
	bottom: 0;
	left: 100%;
	width: 100%;
	overflow-y: auto;
	visibility: hidden;
	padding-right: 1rem;
	padding-left: 1rem;
	background-color: var(--primary);
	transition: transform 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

.offcanvas-collapse.open {
	visibility: visible;
	transform: translateX(-100%);
}

.navbar .navbar-nav {
	margin-top: 0.75rem;
	margin-bottom: 0.5rem;
}

.navbar .dropdown-menu {
	border: none;
	margin-top: 0.25rem;
	margin-bottom: 0.25rem;
	background-color: var(--primary);
}

.navbar .dropdown-item {
	color: #474444;
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 0.875rem;
	padding-top: 0.625rem;
	text-decoration: none;
	padding-bottom: 0.625rem;
}

.navbar .dropdown-item:hover {
  	background-color: var(--primary);
}

.navbar .dropdown-divider {
	width: 100%;
	height: 1px;
	border: none;
	margin: 0.5rem auto 0.5rem auto;
	background-color: var(--primary-light);
}

.navbar .nav-item .nav-link {
	color: #363636;
	text-decoration: none;
	padding-top: 0.625rem;
	padding-bottom: 0.625rem;
	transition: all 0.2s ease;
}

.navbar .fa-stack {
	width: 2em;
	font-size: 0.75rem;
	margin-right: 0.25rem;
}

.navbar .fa-stack-2x {
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(#777),
		to(#5a5a5a)
	);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: all 0.2s ease;
}

.navbar .fa-stack-1x {
	color: #ffffff;
	transition: all 0.2s ease;
}

.navbar .fa-stack:hover .fa-stack-2x {
  	color: var(--primary);
}

.navbar .fa-stack:hover .fa-stack-1x {
  	color: var(--primary);
}

.navbar .navbar-toggler {
	padding: 0;
	border: none;
	font-size: 1.25rem;
}


/****************/
/*     Home     */
/****************/
.home {
	/*background-image: url(../mm/css/home.png);*/
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
} 

.para {
  	width: 50%;
}

.para-light {
  	opacity: 0.7;
}


/***********************/
/*     Information 1    */
/***********************/
.information .container-fluid .row div:first-child {
  	background-color: var(--primary);
}

.information .container-fluid .row div:last-child {
  	background-color: var(--primary-light);
}

.information .container-fluid .row div:nth-child(2) {
  	background-color: var(--primary-light);
}

.information .container-fluid .row div:nth-child(3) {
  	background-color: #f5f1e8;
}


/******************/
/*     Button     */
/******************/
.btn {
	color: #474444;
	border-radius: 0;
	border-width: 2px;
	padding: 10px 30px;
	border-image-slice: 1;
	background-image: none;
	background: transparent;
	border-image-source: var(--gradient);
	box-shadow: 5px 5px 0px 0px var(--secondary);
}

.btn:hover {
	color: #000;
	box-shadow: none;
	border-radius: 0;
	padding: 10px 30px;
	transform: translate(5px, 5px);
}

/* Email - Newsletter Button */
.btn-secondary2 {
	color: black;
	border-width: 2px;
	padding: 10px 30px;
	border-image-slice: 1;
	background-image: none;
	background: transparent;
	border-image-source: var(--gradient);
}

.btn-secondary2:hover {
	color: black;
	padding: 10px 30px;
	background-image: var(--gradient);
}

/* Other Pages Button */
.btn-tertiary {
	color: black;
	border-radius: 0;
	border-width: 2px;
	padding: 10px 30px;
	border-image-slice: 1;
	background-image: none;
	background: transparent;
	border-image-source: var(--gradient);
	box-shadow: 5px 5px 0px 0px var(--secondary);
}

.btn-tertiary:hover {
	color: black;
	box-shadow: none;
	border-radius: 0;
	padding: 10px 30px;
	transform: translate(5px, 5px);
}


/********************/
/*     Services     */
/********************/
.services .card,
.plans2 .card,
.start .card,
.plans .vip {
	padding: 20px;
	border-radius: 0;
	border: 2px solid #c1c1c1;
}

.services .card:hover,
.plans2 .card:hover,
.start .card:hover,
.plans .vip:hover {
	border: 10px solid;
	transform: scale(1.01);
	border-image-slice: 1;
	border-width: 2px;
	border-image-source: var(--gradient);
	box-shadow: 5px 5px 0px 0px #777;
}


/*****************/
/*     Plans     */
/*****************/
.plans .card {
	padding: 20px;
	border: 2px solid #c1c1c1;
}

.plans2 .card {
	padding: 20px;
	border: 2px solid #c1c1c1;
}

.start .card {
	padding: 20px;
	border: 2px solid #c1c1c1;
}


/************************/
/*     Testimonials     */
/************************/
.slider-1 {
	padding-top: 8.25rem;
	padding-bottom: 8.5rem;
}

.slider-1 .section-title {
  	text-align: center;
}

.slider-1 .h2-heading {
	text-align: center;
	margin-bottom: 3rem;
}

.testimonial-card {
	border: 10px solid;
	border-image-slice: 1;
	border-width: 3px;
	border-image-source: var(--gradient);
}

.slider-1 .slider-container {
  	position: relative;
}

.slider-1 .swiper-container {
	width: 86%;
	position: static;
}

.slider-1 .swiper-button-prev,
.slider-1 .swiper-button-next {
  	color: var(--primary);
}

.slider-1 .swiper-button-prev:focus,
.slider-1 .swiper-button-next:focus {
	/* even if you can't see it chrome you can see it on mobile device */
	outline: none;
}

.slider-1 .swiper-button-prev {
	left: -14px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23707375'%2F%3E%3C%2Fsvg%3E");
	background-size: 18px 28px;
}

.slider-1 .swiper-button-next {
	right: -14px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23707375'%2F%3E%3C%2Fsvg%3E");
	background-size: 18px 28px;
}

.slider-1 .card {
	border: none;
	position: relative;
	background-color: transparent;
}

.slider-1 .card-image {
	width: 80px;
	height: 80px;
	margin-left: auto;
	margin-right: auto;
	border-radius: 50%;
	margin-bottom: 1.25rem;
}

.slider-1 .card-body {
  	padding: 0;
}

.slider-1 .testimonial-text {
  	margin-bottom: 0.75rem;
}

.slider-1 .testimonial-author {
	margin-bottom: 0;
	color: #252c38;
}

.slider-1 .avatar {
	width: 70px;
	height: 70px;
	border-radius: 50%;
}

/* Dropdown Menu */
.navbar .dropdown .dropdown-menu {
  	animation: fadeDropdown 0.2s; /* required for the fade animation */
}

@-webkit-keyframes fadeDropdown {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fadeDropdown {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}


/**********************/
/*     Newsletter     */
/**********************/
.form-control-input,
.form-control-textarea {
	width: 100%;
	appearance: none;
	border-radius: 4px;
	font-size: 0.875rem;
	line-height: 1.5rem;
	padding-left: 1.5rem;
	padding-top: 0.775rem;
	padding-bottom: 0.775rem;
}


/******************************/
/*     Back To Top Button     */
/******************************/
#myBtn {
	z-index: 99;
	right: 20px;
	width: 52px;
	height: 52px;
	bottom: 20px;
	border: none;
	outline: none;
	display: none;
	position: fixed;
	cursor: pointer;
	border-radius: 50%;
	background-color: #323137;
}

#myBtn:hover {
  	background-color: #0f0f11;
}

#myBtn img {
	width: 18px;
	margin-left: 0.125rem;
	margin-bottom: 0.25rem;
}


/***********************/
/*     Extra Pages     */
/***********************/
.ex-header {
	padding-top: 6.5rem;
	padding-bottom: 3.5rem;
	background-color: var(--primary-light);
}

.ex-header h1, h2 {
  	color: gray;
}

.ex-back {background:#f5f1e8 url(../mm/css/bg-sand.png) repeat;background:url(../mm/css/bg-gradient-sand.png) repeat-x 0 0,url(../mm/css/bg-sand.png) repeat 0 0,#f5f1e8;}  /* zmiana tła z białego na gradient szary */

.ex-basic-1 .list-unstyled .fas {
	font-size: 0.375rem;
	line-height: 1.625rem;
}

.ex-basic-1 .list-unstyled .flex-grow-1 {
  	margin-left: 0.5rem;
}

.ex-basic-1 .text-box {
	padding: 1.25rem 1.25rem 1.25rem 1.25rem;
	background-color: #f7f9fd;
	border-radius: 15px;
}

.ex-cards-1 .card {
	border: none;
	background-color: transparent;
}

.ex-cards-1 .card .fa-stack {
	width: 2em;
	font-size: 1.125rem;
}

.ex-cards-1 .card .fa-stack-2x {
  	color: var(--secondary);
}

.ex-cards-1 .card .fa-stack-1x {
	width: 2em;
	color: #ffffff;
	font-weight: 700;
	line-height: 2.125rem;
}

.ex-cards-1 .card .list-unstyled .flex-grow-1 {
  	margin-left: 2.25rem;
}

.ex-cards-1 .card .list-unstyled .flex-grow-1 h5 {
	margin-top: 0.125rem;
	margin-bottom: 0.5rem;
}

object.stopka {width:100%;height:252px;}

/*************************/
/*     Media Queries     */
/*************************/
@media only screen and (max-width: 1023px) {
	.services,
	.work,
	.testimonial,
	.about,
	.contact,
	.plans,
	.start 
			{
		height: 100%;
	}
	.plans2 {height: 200%;}
	
	.slider-1 {
	padding-top: 3.25rem;
	padding-bottom: 3.5rem;
}
	object.stopka {height:945px;}
    body, object.stopka {overflow-x:hidden}
	
	span.ukryjtab, div.ukryjtab, i.ukryjmob, li.ukryjtab {display:none;}
	.navbar .logo-image img {margin-left:1%;}
}

@media (min-width: 992px) {
	.slider-1 .swiper-container {
		width: 92%;
	}
	
	.swiper-container {
		width: 92%;
	}
	
	.slider-1 .swiper-button-prev {
		left: -16px;
		width: 22px;
		background-size: 22px 34px;
	}

	.slider-1 .swiper-button-next {
		right: -16px;
		width: 22px;
		background-size: 22px 34px;
	}
	.navbar {-webkit-filter: drop-shadow(1px 1px 10px #fff);			/* 2 pierwsze przesunięcie względem img, 3 - siła poświaty, kolor */	
    filter: drop-shadow(1px 1px 10px #fff);}						/* poświata navbar dla pc - tel, tab - brak - bo nie działa hamburger menu */

	/* Navigation */
	.navbar {
		box-shadow: none;
		transition: all 0.2s;
		padding-top: 1.75rem;
		background-color: transparent;
	}

	.navbar.top-nav-collapse {
		padding-top: 0.5rem;
		padding-bottom: 0.5rem;
		background-color: var(--primary);
		box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.025);
	}

	.offcanvas-collapse {
		position: static;
		top: auto;
		bottom: auto;
		left: auto;
		width: auto;
		padding-right: 0;
		padding-left: 0;
		background-color: transparent;
		overflow-y: visible;
		visibility: visible;
	}

	.offcanvas-collapse.open {
		transform: none;
	}

	.navbar .navbar-nav {
		margin-top: 0;
		margin-bottom: 0;
	}

	.navbar .nav-item .nav-link {
		padding-right: 0.75rem;
		padding-left: 0.75rem;
	}

	.navbar .dropdown-menu {
		padding-top: 0.75rem;
		padding-bottom: 0.875rem;
		box-shadow: 0 3px 3px 1px rgba(0, 0, 0, 0.08);
		border-radius:5px 5px 10px 10px;
	}

	.navbar .dropdown-divider {
		width: 90%;
	}

	.navbar .social-icons {
		margin-left: 0.5rem;
	}

	.navbar .fa-stack {
		margin-right: 0;
		margin-left: 0.25rem;
	}
	
	span.ukryjpc, div.ukryjpc {display:none}

	.kolekcje-ramka {
	border-radius:25px;
	border: 10px solid;
	border-width: 3px;
	border-color: #0ee951;
}

.menustart {margin-left:-10px;}

}

@media only screen and (max-width: 540px) {
	h1 {
		font-size: 30px;
	}

	.para {
		width: 100%;
	}

	.swiper-container {
		width: 92%;
	}
	
	.swiper-button-prev {
		left: -16px;
		width: 22px;
		background-size: 22px 34px;
	}

	.swiper-button-next {
		right: -16px;
		width: 22px;
		background-size: 22px 34px;
	}
	
	span.ukryjfon, div.ukryjfon, h4.ukryjfon, br.ukryjfon, small.ukryjfon, li.ukryjfon {display:none}
	
	object.stopka {height:740px;}
    body, object.stopka {overflow-x:hidden}
    img.centerfon {display:block; margin-left:auto; margin-right:auto; padding: 10px;}
}

@media only screen and (min-width:760px) { 

	a.ukryjpc, br.ukryjpctab {display:none }
	}
	
@media only screen and (min-width:800px) { 

	br.ukryjpctab {display:none }
	}
	
	
@media only screen and (max-width:1200px) { 

	div.ukryjstartab {display:none}  /* ukrywa dla tel i tab fade rozbijający szer. -  start*/
	}	
	
@media only screen and (min-width:1201px) {

	div.ukryjstartpc {display:none}  /* ukrywa dla pc bez fade rozbijający szer. -  start*/
	
	}
	
@media only screen and (min-width:810px) and (max-width:1079px) {

	span.ukryjtab, small.ukryjtab, br.ukryjtab {display:none;}
	span.ukryjtabde {display:none} /* ukrywa normalną wielkość fontu dla tabletu - wersja DE start */
	}
	
@media only screen and (min-width:1020px) and (max-width:1399px) {
	.btn {padding: 5px 5px;}
	.btn:hover {padding: 5px 5px;} /* zmienia padding left i right dla btn: IPAD poziomo i rozdz do 1399 */
	h4 {font-size:20px;}
	.ukryjtabpoz {display:none;}
	}
	
@media only screen and (min-width:1085px) {

	/* h4.ukryjpc {display:none} */
	small.ukryjpc, br.ukryjpc, a.ukryjpc, .ukryjpc1085 {display:none}
	}
	
@media only screen and (min-width:600px) {

	small.ukryj600 {display:none}  /* ukrywa zmniejszony opis w tel. w pozycji pion po przekręceniu na poziom */
	img.floatrpctab {float: right; padding: 10px;} /* float img right */
	img.floatlpctab {float: left; padding: 10px;}

	}

@media only screen and (min-width:900px) and (max-width:1399px) {

	span.ukryj1400 {display:none}  /* ukrywa normalny opis pc do rozdz. 1399px - wersja DE start*/
	
	}
	
@media only screen and (min-width:1400px) {

	small.ukryj-od1400 {display:none}  /* ukrywa zmniejszony opis pc od rozdz. 1400px - wersja DE start*/
	
	}
	
@media only screen and (min-width:1080px) and (max-width:1190px) {

	i.ukryjde {display:none}  /* ukrywa ikony w rozdz. 1080 do 1200px - wersja DE start*/
	
	}
	
@media only screen and (min-width:810px) and (max-width:1199px) {

	i.ukryjtab, span.ukryjtabp {display:none}  /* ukrywa ikony tablet i pc do rozdz. 1200px PION */
	
	}
	
@media only screen and (min-width:992px) and (max-width:1199px) {

	span.ukryjsoc {display:none}  /* ukrywa ikony f yt pc od 992 do rozdz. 1200px*/
	
	}
	
@media only screen and (max-width: 1080px) { 

	div.ukryjtabtxt {display:none}  /* ukrywa opis zdjęć kolekcji dla tel/tab */
	
}

@media only screen and (min-width:810px) and (max-width:810px) {

	.kolekcjetxt li {padding-left:20%;}  /* Ipad pion centrowanie kolekcji */
	
	}

@media only screen and (min-width: 541px) { 
	span.ukryj2xlogo {display:none} /*ukrywa od rozdz. 541px podwójne logo tryb tel. pion szczególnie widoczne w Chrombooku pion */
}

@media only screen and (max-width: 399px) { 
.home {	background-image: url(../mm/css/homes.jpg); }
}

@media only screen and (min-width:400px) and (max-width: 810px) { 
.home {	background-image: url(../mm/css/homem.jpg); }
}

@media only screen and (min-width: 811px) { 
.home {	background-image: url(../mm/css/home.jpg); }
}

/**********************************/
/*     WŁASNE NOWE USTAWIENIA     */
/**********************************/

.nav-item, .dropdown, .dropdown-item {text-transform: uppercase;  /* MENU duże litery i cień */
-webkit-filter: drop-shadow(3px 3px 1px #fff);
    filter: drop-shadow(3px 3px 1px #f6f6f6);} 

.imglow {													/* poświata dla ciemnego img na ciemnym tle */
	/* border-radius: 50px;	*/		
	-webkit-filter: drop-shadow(0px 0px 10px #ebeae2);			/* 2 pierwsze przesunięcie względem img, 3 - siła poświaty, kolor */	
    filter: drop-shadow(0px 0px 10px #ebeae2);
    }

 .news a:hover, .card a:hover, .sklep a:hover, .information a:hover, .kolumny a:hover, .location a:hover {color: #8c8c8c;}  /* kolor jasnoszary linków sekcja aktualności */
 .bottom a:hover {color:#ebeae2;} /* kolor bardzo jasnoszary dla piktogramów na dolnej belce */
 .navm a {color: #777;}
 a.lang:hover {color: #0ee951;} 	/* start.html - belka menu języki */
 a.active {font-weight: 600;}
 a.navm {color: #777;}
 
 .rodo a, a.rodo{color: #0a58ca;}
 .rodo a:hover, a.rodo:hover {color: #0d6efd;}
 
 img.lupa,
 .imghov img/* buttony cookie */ {  
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;}   /* delikatny efekt lupy */
  
  img.lupa:hover 
  {-webkit-transform: scale(1.2);
   transform: scale(1.2);}  /* delikatny efekt lupy na hover */
   
   .imghov img:hover, .imghov img.hover /* buttony cookie */
  {-webkit-transform: scale(1.07);
   transform: scale(1.07);}
   
   .stopka {
   /*font-size:x-small; */
   font-weight: 500;
   color:gray;
   }
   
   .imgefekt {
	border-radius: 30px;
	-webkit-filter: drop-shadow(8px 8px 3px #6c7a89);
    filter: drop-shadow(8px 8px 3px #6c7a89);  /* zaokrąglone rogi i cień */
    }

.go:after {
    content: ' »';
    white-space: nowrap;}
    
    .shadowmenu {-webkit-filter: drop-shadow(3px 3px 1px #f6f6f6);
    filter: drop-shadow(3px 3px 1px #f6f6f6);}
 
.dane table, td {border:2px; border-style:solid; border-color: #c9c9c9;padding:10px 20px 10px 0;}

p, .ex-basic-1 ul, .a17 {font-family:"Poppins",sans-serif; font-size:17px;}
