@CHARSET "ISO-8859-1";
@import url('https://fonts.googleapis.com/css?family=Ubuntu:300,700&subset=latin-ext');

/* Reset CSS
 * --------------------------------------- */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,
form,fieldset,input,textarea,p,blockquote,th,td {
    padding: 0;
    margin: 0;
}

a {
	text-decoration: none;
    color: #444
}

table {
    border-spacing: 0;
}

fieldset,img {
    border: 0;
}

address,caption,cite,code,dfn,em,strong,th,var {
    font-weight: normal;
    font-style: normal;
}

strong {
	font-weight: bold;
}

ol,ul {
    list-style: none;
    margin:0;
    padding:0;
}

ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 0 auto;
}

li {
    padding-left: 1em; 
    text-indent: -.7em;
    margin-bottom: 10px;
}

li::before {
    content: "• ";
    color: #00ACD5;
}

caption,th {
    text-align: left;

}

h1,h2,h3,h4,h5,h6 {
    font-weight: normal;
    font-size: 100%;
    margin:0;
    padding:0;
    color:#444;
}

q:before,q:after {
    content:'';
}

abbr,acronym { border: 0;
}

p {
    margin-bottom: 20px;
    line-height: 26px;
}

/* Custom CSS
 * --------------------------------------- */
body {
	font-family: 'ubuntu', arial, helvetica;
	color: #383838;
}

h1 {
	font-size: 2.5em;
    margin: 40px 0;
}

h1 span {
    display: block;
    font-size: 0.5em;
    color: #00ACD5;
}

h2 {
	font-size: 2em;
    margin: 40px 0;
}

h3 {
    font-size: 1.5em;
}

p {
	font-size: 1em;
}

strong {
    font-weight: 700;
}

.column {
    float: left;
    width: 50%;
}

#menu {
    background: #444;
    display: flex;
    height: 61px;
    position: fixed;
    top: 0;
    left: 0;
	width: 100%;
    z-index: 100;
}

#menu li {
    display: flex;
	height: 100%;
	align-items: center;
	vertical-align: center;
	float: left;
	padding: 0;
    text-indent: 0;
    
    -webkit-transition:all 350ms ease;
	-moz-transition:all 350ms ease;
	-ms-transition:all 350ms ease;
	-o-transition:all 350ms ease;
	transition:all 350ms ease;
}

#menu li:before {
    display: none;
}

#menu li:hover {
	background: rgba(0,0,0, 0.3);
}

#menu li a {
	text-transform: uppercase;
	color: #FFF;
    font-size: 16px;
    padding: 14px 20px;
	display: block;
}

#menu li img {
    height: 30px;
    padding: 0;
    vertical-align: middle;
}

#menu li.phone {
    margin-left: auto;
}

#menu li.phone img {
    margin-right: 5px;
}

#section0 h1 {
    color: #FFF !important;
    text-transform: uppercase;
    text-shadow:
        0px 4px 3px rgba(0,0,0,0.4),
        0px 8px 13px rgba(0,0,0,0.1),
        0px 18px 23px rgba(0,0,0,0.1);
    padding: 30px;
    font-weight: 600;
}

#section5 p {
    font-style: italic;
}

#section0 img {
    margin: 20px 0 0 0;
}

.section {
    background-size: cover;
    text-align:center;
}

.intro {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    max-width: 900px;
    width: 80%
}

.intro a:hover {
    text-decoration: underline
}

.intro p {
    margin: 1em auto 2em auto;
}

.intro i {
    margin-bottom: 40px;
    color: #00ACD5;
}

/* Slides */

.slide {
    background-size: cover;
    background-position: center;
}

.fp-controlArrow.fp-prev {
    left: 10px;
    border: none;
    width: 40px;
    height: 60px;
    background: url(../media/left.png) no-repeat;
    cursor: pointer;
}
.fp-controlArrow.fp-next {
    right: 10px;
    border: none;
    width: 40px;
    height: 60px;
    background: url(../media/right.png) no-repeat;
    cursor: pointer;
}

.section .slide a {
    margin-top: 20px;
    display: block;
}

.section .slide a:hover {
    color: #000;
}

.section .slide .pdf {
    vertical-align: middle;
    margin-right: 10px;
}

#section0 .fp-controlArrow,
#section4 .fp-slidesNav,
#section5 .fp-slidesNav, 
#section6 .fp-slidesNav {
    display: none;
}

.fp-slidesNav li a span {
    background: #FFF !important;
}

.fp-slidesNav ul li::before {
    display: none;
}

.studnie .fp-tableCell {
    background-color: rgba(0, 0, 0, 0.3);
}
    
/* Slide fade effect */

#section0 .fp-slidesContainer {
	width: 100%!important;
	transform: none!important;
}

#section0 .fp-slide {
	width: 100%!important;
	position: absolute;
	left: 0;
	top: 0;
	visibility: hidden;
	opacity: 0;
	z-index: 0;
	transition: all .7s ease-in-out;
}

#section0 .fp-slide.active {
	visibility: visible;
	opacity: 1;
	z-index: 1;
}


/* Przyciski */
.section a.button,
.produkty a.button,
form input[type="submit"] {
    padding: 15px 25px;
    color: #FFF;
    margin-top: 20px;
    display: inline-block;
    border: none;
    font-size: initial;
    background: #00ACD5;
	background: rgba(0, 172, 213, 0.5);
    -webkit-transition:all 350ms ease;
    -moz-transition:all 350ms ease;
    -ms-transition:all 350ms ease;
    -o-transition:all 350ms ease;
    transition:all 350ms ease;
}

.section a.button:hover,
.produkty a.button:hover,
form input[type="submit"]:hover {
    background: rgba(0, 172, 213, 1);
    color: #FFF;
    cursor: pointer;
    text-decoration: none;
}
.section a.file {
    margin-right: 20px;
}

.section a.file:hover {
    color: #000;
    text-decoration: underline;
}

.section a.file .pdf {
    vertical-align: middle;
    margin-right: 10px;
}

/* O nas */
.onas {
    color: #FFF;
}

.onas .left {
    width: 48%;
    float: left;
    padding: 1%
}

.onas .right {
    width: 48%;
    float: right;
    text-align: left;
    padding: 1%
}

.onas .left h2 {
    color: #FFF;
    line-height: 45px;
    text-align: right;
    margin: 0;
    border-right: 2px solid #00ACD5;
    padding: 0 30px;
}

/* Studnie */
.studnie-glebinowe .left {
    width: 48%;
    float: left;
    padding: 1%
}

.studnie-glebinowe .right {
    width: 48%;
    float: right;
    text-align: left;
    padding: 1%
}

/* Produkty */
.products:after {
    content: '';
    display: block;
    clear: both;
}

.produkty .onefourth {
    float: left;
    width: 25%;
}

.produkty .onefourth .product {
    padding: 0 20px;
}

.produkty .onefourth .product i {
    -webkit-transition:all 350ms ease;
    -moz-transition:all 350ms ease;
    -ms-transition:all 350ms ease;
    -o-transition:all 350ms ease;
    transition:all 350ms ease;
}

.produkty .onefourth:hover .product i {
    color: #00ACD5;
    font-size: 2em;
}

.produkty .onefourth .product .description {
    opacity: 0;
    -webkit-transition:all 350ms ease;
    -moz-transition:all 350ms ease;
    -ms-transition:all 350ms ease;
    -o-transition:all 350ms ease;
    transition:all 350ms ease;
}

.produkty .onefourth:hover .description {
    opacity: 100;
}

/* Opinie */

.reviews {
    max-width: 50%;
    margin: 0 auto;
}

.wp-google-url {
    display: none !important;
}

/* Studnie */
/* .studnie {
    background-image: url(../media/wiercenie-studni-glebinowych.jpg);
} */

/* Formularz */
form {
     margin-bottom: 40px;
}

form input[type="text"],
form textarea {
    font-size: 14px;
    font-family: 'ubuntu', arial, helvetica;
    width: 100%;
    max-width: 250px;
    display: block;
    margin: 0 auto;
    border: 1px solid #CCCCCC;
    padding: 10px 15px;
    margin-bottom: 5px;
    -webkit-transition:all 350ms ease;
    -moz-transition:all 350ms ease;
    -ms-transition:all 350ms ease;
    -o-transition:all 350ms ease;
    transition:all 350ms ease;
}

form textarea {
    max-height: 100px;
}

form input[type="text"]:focus,
form textarea:focus {
    border: 1px solid #00ACD5;
}

form #messages {
    width: 50%;
    min-width: 300px;
    margin: 0 auto;
    padding: 10px 15px;
    opacity: 0;
    -webkit-transition:all 350ms ease;
    -moz-transition:all 350ms ease;
    -ms-transition:all 350ms ease;
    -o-transition:all 350ms ease;
    transition:all 350ms ease;
}

form .success {
    border: 1px solid green;
    opacity: 1 !important;
}

form .error {
    border: 1px solid red;
    opacity: 1 !important;
}

form #verification {
    width: 50%;
    min-width: 300px;
    margin: 5px auto 0px auto;
}
    
form .g-recaptcha {
    float: left;
}

form input[type="submit"] {
    margin-top: 13px;
}

/* Mapa */
.mapa .button {
    width: 170px;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    bottom: 20px;
}

/* Popup */
.popup {
    width: 100%;
    height: 100%;
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    background: rgba(0,0,0,0.75);
}
 
.popup-inner {
    max-width: 700px;
    width: 90%;
    padding: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    box-shadow: 0px 2px 6px rgba(0,0,0,1);
    border-radius: 3px;
    background: #fff;
    text-align:left;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 26px !important;
    transition:ease 0.25s all;
}
 
.popup-close:hover {
    color: #000;
    cursor: pointer;
}

/** Mobile **/
@media only screen and (min-width : 320px) and (max-width : 1024px) {
	#fullpage {
		margin-bottom: 52px;
	}
    
    .column {
        float: none;
        width: 100%;
    }

	.mobile-contact-bar {
		display: block;
		background: #00ACD5;
		width: 100%;
		position: fixed;
		/* height: 38px; */
		font-size: 24px;
		bottom: 0;
		left: 0;
		padding: 15px 15px;
		color: #fff;
		text-align: center;
		text-decoration: none;
        z-index: 10000;
	}
	.mobile-contact-bar p {
		margin: 0;
		padding: 0;
	}
	.mobile-contact-bar:hover,.mobile-contact-bar:focus {
		color: #ccc;
		text-decoration: none;
	}
    .mobile-contact-bar img {
        vertical-align: middle;
    }
}

.fp-responsive .section {
    height: 100% !important;
    padding: 40px 20px;
}

.fp-responsive .studnie {
    height: 100vh !important;
    padding: 0;
}

.fp-responsive .reviews {
    max-width: 100%;
}

.fp-responsive #section6 .fp-controlArrow {
    display: none;
}
    