@import url('//yui.yahooapis.com/3.11.0/build/cssreset/cssreset-min.css');
@import url('//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css');
@import url('//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.min.css');

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@font-face {
  font-family: 'DINPro-Regular';
  src: url('font/DINPro-Regular.eot?#iefix') format('embedded-opentype'),  url('font/DINPro-Regular.otf')  format('opentype'),
	     url('font/DINPro-Regular.woff') format('woff'), url('font/DINPro-Regular.ttf')  format('truetype'), url('font/DINPro-Regular.svg#DINPro-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'DINPro-Bold';
  src: url('font/DINPro-Bold.eot?#iefix') format('embedded-opentype'),  url('font/DINPro-Bold.otf')  format('opentype'),
	     url('font/DINPro-Bold.woff') format('woff'), url('font/DINPro-Bold.ttf')  format('truetype'), url('font/DINPro-Bold.svg#DINPro-Bold') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'DINPro-Light';
  src: url('font/DINPro-Light.eot?#iefix') format('embedded-opentype'),  url('font/DINPro-Light.otf')  format('opentype'),
	     url('font/DINPro-Light.woff') format('woff'), url('font/DINPro-Light.ttf')  format('truetype'), url('font/DINPro-Light.svg#DINPro-Light') format('svg');
  font-weight: normal;
  font-style: normal;
}

body {
  background: #fff;
  color: #666666;
  font-family: 'Barlow', sans-serif;
 background-color: #748493;

}

a {
  color: #2dc997;
}

a:hover, a:active, a:focus {
  color: #fff;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/* Prelaoder */
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: #fff url("../img/preloader.svg") no-repeat center center;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  padding: 6px 12px 9px 12px;
  font-size: 16px;
  border-radius: 2px;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

.back-to-top:focus {
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  outline: none;
}

.back-to-top:hover {
  background: #2dc997;
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
@media (min-width: 991px) {
	#header { padding: 20px 80px !important; }
	
}

#header {
  padding: 20px 15px;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
}

#header #logo {
  float: left;
}

#header #logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 6px 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header #logo h1 a, #header #logo h1 a:hover {
  color: #fff;
}

#header #logo img {
  padding: 0;
  margin: 0;
}

@media (max-width: 768px) {
  #header #logo h1 {
    font-size: 26px;
  }
  #header #logo img {
    max-height: 40px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url(../img/hero-bg.jpg) top center;
  background-size: cover;
  position: relative;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#hero h1 {
  margin: 30px 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
}

#hero h2 {
  color: #eee;
  margin-bottom: 50px;
  font-size: 24px;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

#hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#hero .btn-get-started:hover {
  background: #2dc997;
  border: 2px solid #2dc997;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Nav Menu Essentials */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
  padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 15px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */
#nav-menu-container {
  float: right;
  margin: 0;
}

@media (max-width: 768px) {
  #nav-menu-container {
    display: none;
  }
}

.serwis-info {	
	color: #fff;
    font-weight: 700;
    line-height: 5px;
    display: block;
    letter-spacing: 0.5px;
    padding: 10px;
    height: 25px;
    float: right;
    margin: 10px 0px 10px 20px;
    border-left: 3px solid #fff;		
}


@media (max-width: 767px) {
	.serwis-info { display: none; }	
}

/* Nav Meu Styling */
.nav-menu a {
	padding: 6px 8px 10px 8px;
    text-decoration: none;
    display: inline-block;
    color: #fff;
    text-transform: lowercase;
    font-size: 17px;
    outline: none;
    font-weight: 700;
}

.nav-menu a:before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 8px;
    z-index: -1;
    background-color: #e78b24;
    -webkit-transition: width .3s ease;
    -o-transition: width .3s ease;
    transition: width .3s ease;	
}

.nav-menu a:hover:before {
    width: 100%;	
}

.nav-menu > li {
  margin-left: 10px;
    margin-top: 5px;
}



.nav-menu ul {
  margin: 4px 0 0 0;
  border: 1px solid #e7e7e7;
}

.nav-menu ul li {
  background: #fff;
}

.nav-menu ul li:first-child {
  border-top: 0;
}

.nav-menu ul li a {
  padding: 10px;
  color: #333;
  transition: 0.3s;
  display: block;
  font-size: 13px;
  text-transform: none;
}

.nav-menu ul li a:hover {
  background: #2dc997;
  color: #fff;
}

.nav-menu ul ul {
  margin: 0;
}

/* Mobile Nav Toggle */
#mobile-nav-toggle {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 20px 20px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle i {
  color: #fff;
}

@media (max-width: 768px) {
  #mobile-nav-toggle {
    display: inline;
  }
}

/* Mobile Nav Styling */
#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(52, 59, 64, 0.9);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #fff;
  font-size: 19px;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
  font-weight: 700;
}

#mobile-nav ul li a:hover {
  color: #fff;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #2dc997;
}

#mobile-nav ul .menu-item-active {
  color: #2dc997;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(52, 59, 64, 0.9);
  display: none;
}

/* Mobile Nav body classes */
body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
/* Sections Header
--------------------------------*/
.section-header .section-title {
  font-size: 32px;
  color: #111;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  margin-bottom: 5px;
}

.section-header .section-description {
  text-align: center;
  padding-bottom: 40px;
  color: #999;
}

/* About Us Section
--------------------------------*/
#about {
  background: #fff;
  padding: 80px 0;
}

#about .about-container .background {
  min-height: 300px;
  background: url(../img/about-img.jpg) center top no-repeat;
  margin-bottom: 10px;
}

#about .about-container .content {
  background: #fff;
}

#about .about-container .title {
  color: #333;
  font-weight: 700;
  font-size: 32px;
}

@media (max-width: 768px) {
  #about .about-container .title {
    padding-top: 15px;
  }
}

#about .about-container p {
  line-height: 26px;
}

#about .about-container p:last-child {
  margin-bottom: 0;
}

#about .about-container .icon-box {
  background: #fff;
  background-size: cover;
  padding: 0 0 30px 0;
}

#about .about-container .icon-box .icon {
  float: left;
  background: #fff;
  padding: 16px;
  border-radius: 50%;
  border: 2px solid #2dc997;
}

#about .about-container .icon-box .icon i {
  color: #2dc997;
  font-size: 24px;
}

#about .about-container .icon-box .title {
  margin-left: 80px;
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 18px;
  text-transform: uppercase;
}

#about .about-container .icon-box .title a {
  color: #111;
}

#about .about-container .icon-box .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}

/* Facts Section
--------------------------------*/
#facts {
  background: #f7f7f7;
  padding: 80px 0 60px 0;
}

#facts .counters span {
  font-size: 48px;
  display: block;
  color: #2dc997;
}

#facts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

/* Services Section
--------------------------------*/
#services {
  background: #fff;
  background-size: cover;
  padding: 80px 0 60px 0;
}

#services .box {
  padding: 50px 20px;
  margin-bottom: 50px;
  text-align: center;
  border: 1px solid #e6e6e6;
  height: 200px;
  position: relative;
  background: #fafafa;
}

#services .icon {
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  transition: 0.2s;
  border-radius: 50%;
  display: inline-block;
  border: 6px solid #fff;
}

#services .icon a {
  display: inline-block;
  background: #2dc997;
  border: 2px solid #2dc997;
  padding: 16px;
  border-radius: 50%;
  transition: 0.3s;
}

#services .icon i {
  color: #fff;
  font-size: 24px;
}

#services .box:hover .icon i {
  color: #2dc997;
}

#services .box:hover .icon a {
  color: #2dc997;
  background: #fff;
}

#services .title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

#services .title a {
  color: #111;
}

#services .description {
  font-size: 14px;
  line-height: 24px;
}

.kate {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
}

.kate-1 {
	background-image: url(https://forum.tvpolsat.info/serwis-specjalny/10latpn/img/10-lat-polsat-news-tlo-1.jpg);
}

.kate-2 {
	background-image: url(https://forum.tvpolsat.info/serwis-specjalny/10latpn/img/10-lat-polsat-news-tlo-2.jpg);
}

.kate-3 {
	background-image: url(https://forum.tvpolsat.info/serwis-specjalny/10latpn/img/10-lat-polsat-news-tlo-3.jpg);
}

.kate-4 {
	background-image: url(https://forum.tvpolsat.info/serwis-specjalny/10latpn/img/10-lat-polsat-news-tlo-4.jpg);
}

.kate-5 {
	background-image: url(https://forum.tvpolsat.info/serwis-specjalny/10latpn/img/10-lat-polsat-news-tlo-5.jpg);
}

.kate-6 {
	background-image: url(https://forum.tvpolsat.info/serwis-specjalny/10latpn/img/10-lat-polsat-news-tlo-6.jpg);
}

.kate-7 {
	background-image: url(https://forum.tvpolsat.info/serwis-specjalny/10latpn/img/10-lat-polsat-news-tlo-7.jpg);
}

.kate-8 {
	background-image: url(https://forum.tvpolsat.info/serwis-specjalny/10latpn/img/10-lat-polsat-news-tlo-8.jpg);
}



/* Call To Action Section
--------------------------------*/
#call-to-action {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../img/call-to-action-bg.jpg) fixed center center;
  background-size: cover;
  padding: 80px 0;
}

#call-to-action .cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#call-to-action .cta-text {
  color: #fff;
}

@media (min-width: 769px) {
  #call-to-action .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

#call-to-action .cta-btn {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#call-to-action .cta-btn:hover {
  background: #2dc997;
  border: 2px solid #2dc997;
}

/* Portfolio Section
--------------------------------*/
#portfolio {
  background: #f7f7f7;
  padding: 80px 0;
}

#portfolio #portfolio-wrapper {
  padding-right: 15px;
}

#portfolio #portfolio-flters {
  padding: 0;
  margin: 0 0 45px 0;
  list-style: none;
  text-align: center;
}

#portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 0 10px;
  display: inline-block;
  padding: 10px 22px;
  font-size: 12px;
  line-height: 20px;
  color: #666666;
  border-radius: 4px;
  text-transform: uppercase;
  background: #fff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

#portfolio #portfolio-flters li:hover, #portfolio #portfolio-flters li.filter-active {
  background: #2dc997;
  color: #fff;
}

#portfolio .portfolio-item {
  position: relative;
  height: 200px;
  overflow: hidden !important;
  margin-bottom: 15px;
  transition: all 350ms ease;
  transform: scale(1);
}

#portfolio .portfolio-item a {
  display: block;
  margin-right: 15px;
}

#portfolio .portfolio-item img {
  position: relative;
  top: 0;
  transition: all 600ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

#portfolio .portfolio-item .details {
  height: 50px;
  background: #2dc997;
  position: absolute;
  width: 100%;
  height: 50px;
  bottom: -50px;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

#portfolio .portfolio-item .details h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  padding: 8px 0 2px 8px;
  margin: 0;
}

#portfolio .portfolio-item .details span {
  display: block;
  color: #fff;
  font-size: 13px;
  padding-left: 8px;
}

#portfolio .portfolio-item:hover .details {
  bottom: 0;
}

#portfolio .portfolio-item:hover img {
  top: -30px;
}

/* Team Section
--------------------------------*/
#team {
  background: #fff;
  padding: 80px 0 60px 0;
}

#team .member {
  text-align: center;
  margin-bottom: 20px;
}

#team .member .pic {
  margin-bottom: 15px;
  overflow: hidden;
  height: 260px;
}

#team .member .pic img {
  max-width: 100%;
}

#team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

#team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

#team .member .social {
  margin-top: 15px;
}

#team .member .social a {
  color: #b3b3b3;
}

#team .member .social a:hover {
  color: #2dc997;
}

#team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/* Contact Section
--------------------------------*/
#contact {
  background: #f7f7f7;
  padding: 80px 0 40px 0;
}

#contact #google-map {
  height: 300px;
  margin-bottom: 20px;
}

#contact .info {
  color: #333333;
}

#contact .info i {
  font-size: 32px;
  color: #2dc997;
  float: left;
}

#contact .info p {
  padding: 0 0 10px 50px;
  margin-bottom: 20px;
  line-height: 22px;
  font-size: 14px;
}

#contact .info .email p {
  padding-top: 5px;
}

#contact .social-links {
  padding-bottom: 20px;
}

#contact .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#contact .social-links a:hover {
  background: #2dc997;
  color: #fff;
}

#contact .form #sendmessage {
  color: #2dc997;
  border: 1px solid #2dc997;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #sendmessage.show, #contact .form #errormessage.show, #contact .form .show {
  display: block;
}

#contact .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#contact .form input, #contact .form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

#contact .form button[type="submit"] {
  background: #2dc997;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}

#contact .form button[type="submit"]:hover {
  background: #51d8ad;
}

.btn-zyczenia {
    padding: 6px 10px;
    color: #fff;
    border: 3px solid #ffffff;
    font-size: 20px;
    display: block;
    text-align: center;
    font-family: 'DINPro-Bold';
    text-transform: uppercase;
    margin: 8px 0px;
    transition-property: background;
    transition-duration: 0.2s;
    transition-timing-function: linear;	
}

.btn-zyczenia:hover {
	background: red;
}

.item-1, 
.item-2, 
.item-3 {
	position: absolute;
	display: block; 
	width: 60%;  
	font-size: 2em;
    background: #e78b24;
    color: #fff;
    padding: 15px;
    text-transform: uppercase;
    font-family: 'DINPro-Bold';
	animation-duration: 20s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);	
}

.item-1 span, .item-2 span, .item-3 span {
	font-size: 15px;
    float: right;	
}

.item-1{
	animation-name: anim-1;
}

.item-2{
	animation-name: anim-2;
}

.item-3{
	animation-name: anim-3;
}

@keyframes anim-1 {
	0%, 8.3% { left: -100%; opacity: 0; }
  8.3%,25% { left: 20%; opacity: 1; }
  33.33%, 100% { left: 110%; opacity: 0; }
}

@keyframes anim-2 {
	0%, 33.33% { left: -100%; opacity: 0; }
  41.63%, 58.29% { left: 20%; opacity: 1; }
  66.66%, 100% { left: 110%; opacity: 0; }
}

@keyframes anim-3 {
	0%, 66.66% { left: -100%; opacity: 0; }
  74.96%, 91.62% { left: 20%; opacity: 1; }
  100% { left: 110%; opacity: 0; }
}

.zyczenia-box {
    padding: 15px;
    background: #e78b24;
    color: #fff;
    font-size: 18px;
	font-weight: 700

}


.zyczenia-box p {
    text-align: right;
    margin: 0;
	font-weight: 500;
}

/*--------------------------------------------------------------
# Plebiscyt
--------------------------------------------------------------*/

@media (max-width: 1024px) {
.divider { background-attachment: scroll !important; }
}
   
.divider-1 {
	background: url(https://forum.tvpolsat.info/serwis-specjalny/10latpn/img/10-lat-polsat-news-tlo-1.jpg) no-repeat center center / cover;	
}

.divider-2 {
	background: url(https://forum.tvpolsat.info/serwis-specjalny/10latpn/img/10-lat-polsat-news-tlo-2.jpg) no-repeat center center / cover;	
}

.divider-3 {
	background: url(https://forum.tvpolsat.info/serwis-specjalny/10latpn/img/10-lat-polsat-news-tlo-3.jpg) no-repeat center center / cover;	
}

.divider-4 {
	background: url(https://forum.tvpolsat.info/serwis-specjalny/10latpn/img/10-lat-polsat-news-tlo-4.jpg) no-repeat center center / cover;	
}

.divider-5 {
	background: url(https://forum.tvpolsat.info/serwis-specjalny/10latpn/img/10-lat-polsat-news-tlo-5.jpg) no-repeat center center / cover;	
}

.divider-6 {
	background: url(https://forum.tvpolsat.info/serwis-specjalny/10latpn/img/10-lat-polsat-news-tlo-6.jpg) no-repeat center center / cover;	
}

.divider-7 {
	background: url(https://forum.tvpolsat.info/serwis-specjalny/10latpn/img/10-lat-polsat-news-tlo-7.jpg) no-repeat center center / cover;	
}

.divider-8 {
	background: url(https://forum.tvpolsat.info/serwis-specjalny/10latpn/img/10-lat-polsat-news-tlo-8.jpg) no-repeat center center / cover;	
}

.divider {
    width: 100%;
    height: 240px;
    top: 0;
    left: 0;
    display: table;
    overflow: hidden;
    background-attachment: fixed;	
}

.plebiscyt, .historia, .quizy, .michalki, .zyczenia {
	min-height: 100vh;
	background-size: cover;
	padding-top: 100px;
	background-position-y: bottom;	
}

.plebiscyt {
	background-image: url('https://forum.tvpolsat.info/serwis-specjalny/10latpn/img/10-lat-polsat-news-grafika-3.jpg');
}

.quizy {
	background-image: url('https://forum.tvpolsat.info/serwis-specjalny/10latpn/img/10-lat-polsat-news-grafika-5.jpg');

}

.zyczenia {
	background-image: url('https://www.tvpolsat.info/serwis-specjalny/10latpn/img/10-lat-polsat-news-grafika-2a.jpg');
}

.michalki {
	background-image: url('https://www.tvpolsat.info/serwis-specjalny/10latpn/img/10-lat-polsat-news-grafika-4.jpg');
}

.historia {
	background-image: url('https://www.tvpolsat.info/serwis-specjalny/10latpn/img/10-lat-polsat-news-grafika-1.jpg');
}

@media (min-width: 769px) {
	.historia { display: none; }
	.kol-3 {
		width: 25%;
	}	
}

@media (max-width: 768px) {
	.hist-6 { display: none; }	
	.kol-3 {
		width: 50%;
	}
}


.kate-boxa {
	max-width: 1400px;
	margin: 0px auto;
	padding: 0px 20px;
}	

.kol-3 {
    height: 33.3%;
    float: left;
	position: relative;
}



.hist-shadow {
	-webkit-transition: all .8s ease;
    -o-transition: all .8s ease;
    transition: all .8s ease;	
}

a:hover .hist-shadow {
    background: rgba(117, 133, 149, 0.65);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;	
}

.hist img {
	width: 100%;
}


.hist-date {
	text-align: center;
    color: #fff;
    font-weight: 700;
    font-size: 30px;
	opacity: 0;	
}

.hist-date .nam {
	position: relative;
}

.hist-date .nam:before {
	content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 15px;
    z-index: -1;
    background-color: #e78b24;
    -webkit-transition: width .3s ease;
    -o-transition: width .3s ease;
    transition: width .3s ease;
    animation-name: pdk;
    animation-duration: 4s;
    width: 100%;	
}

a:hover .hist-date {
	opacity: 1;
}

.hist-back, .hist-next {
	color: #fff;
}

.hist-back:hover, .hist-next:hover {
	color: #e78b24;
}

.hist-back:before {
    content: "\f053";
    font-family: fontAwesome;
    font-size: 50px;
}

.hist-next:before {
    content: "\f054";
    font-family: fontAwesome;
    font-size: 50px;
}

.hist-date .dt, .dt {
	position: relative;
}

.hist-date .dt:before, .dt:before {
	content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 15px;
    z-index: -1;
    background-color: #e78b24;
	width: 100%;	
}

.hist-6 {
	background: url('https://www.tvpolsat.info/serwis-specjalny/10latpn/img/10-lat-polsat-news-grafika-111.jpg');
	background-size: cover;	
    background-position: center center;
	width: 50%;		
}



.hist-1 {
	background: url('https://www.tvpolsat.info/serwis-specjalny/10latpn/img/pn-historia-2008.jpg');
	background-size: cover;	
    background-position: center center;
	width: 100%;
    height: 100%;		
}

.hist-2 {
	background: url('https://www.tvpolsat.info/serwis-specjalny/10latpn/img/pn-historia-2009.jpg');
	background-size: cover;	
    background-position: center center;
	width: 100%;
    height: 100%;		
}

.hist-3 {
	background: url('https://www.tvpolsat.info/serwis-specjalny/10latpn/img/pn-historia-2010.jpg');
	background-size: cover;	
    background-position: center center;
	width: 100%;
    height: 100%;		
}

.hist-4 {
	background: url('https://www.tvpolsat.info/serwis-specjalny/10latpn/img/pn-historia-2011.jpg');
	background-size: cover;	
    background-position: center center;
	width: 100%;
    height: 100%;		
}

.hist-5 {
	background: url('https://www.tvpolsat.info/serwis-specjalny/10latpn/img/pn-historia-2012.jpg');
	background-size: cover;	
    background-position: center center;
	width: 100%;
    height: 100%;		
}

.hist-7 {
	background: url('https://www.tvpolsat.info/serwis-specjalny/10latpn/img/pn-historia-2013.jpg');
	background-size: cover;	
    background-position: center center;
	width: 100%;
    height: 100%;		
}

.hist-8 {
	background: url('https://www.tvpolsat.info/serwis-specjalny/10latpn/img/pn-historia-2013.jpg');
	background-size: cover;	
    background-position: center center;
	width: 100%;
    height: 100%;		
}

.hist-9 {
	background: url('https://www.tvpolsat.info/serwis-specjalny/10latpn/img/pn-historia-2014.jpg');
	background-size: cover;	
    background-position: center center;
	width: 100%;
    height: 100%;		
}

.hist-10 {
	background: url('https://www.tvpolsat.info/serwis-specjalny/10latpn/img/pn-historia-2015.jpg');
	background-size: cover;	
    background-position: center center;
	width: 100%;
    height: 100%;		
}

.hist-11 {
	background: url('https://www.tvpolsat.info/serwis-specjalny/10latpn/img/pn-historia-2016.jpg');
	background-size: cover;	
    background-position: center center;
	width: 100%;
    height: 100%;		
}

.hist-6 .hist-date {
	opacity: 1;
	font-weight: 900;
	text-align: left;
	padding-left: 40px;
    font-size: 45px;
    line-height: 1;
}

.hist-12 {
	background: url('https://www.tvpolsat.info/serwis-specjalny/10latpn/img/pn-historia-2017.jpg');
	background-size: cover;	
    background-position: center center;
	width: 100%;
    height: 100%;		
}

.embed-responsive-16by9 {
    padding-bottom: 56.25%;
}

.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    overflow: hidden;
}

.embed-responsive .embed-responsive-item, .embed-responsive embed, .embed-responsive iframe, .embed-responsive object, .embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (min-width: 768px) {
.srodek {
	position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);	
}
}

h1 {
	font-size: 50px;
    font-weight: 900;
    color: #fff;
    font-family: "Barlow";	
	margin-bottom: 5px;
}

.pleb-link {
	color: #fff;
	font-weight: 700;
	font-size: 20px;
	position: relative;
    line-height: 30px;
	text-transform: lowercase;
}

.pleb-link:hover {
	color: #fff;	
}

.pleb-link:before {
	content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 15px;
    z-index: -1;
    background-color: #e78b24;
    -webkit-transition: width .3s ease;
    -o-transition: width .3s ease;
    transition: width .3s ease;		
}

.pleb-link:hover:before {
	width: 100%;
}

.bg1, .bg2, .bg3 {
	width: 100%;
	height: 100%;
	position: absolute;
	top:0;
	left:0;
	z-index: 0;
    background-size: cover;
    transform: scale(1.1);	
}


.main-word {
	position: relative;
	display: inline-block;
}

.main-word:before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 15px;
    z-index: -1;
    background-color: #e78b24;
    -webkit-transition: width .3s ease;
    -o-transition: width .3s ease;
    transition: width .3s ease;
	animation-name: pdk;
    animation-duration: 4s;	
	width: 100%;
}

@keyframes pdk {
	0% {
    	width: 0%;
	}	

	100% {
   	 	width: 100%;
  	}
}

.overlay {
  position: absolute;
  bottom: -75%;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  transition: .5s ease;
  background-color: #748493;
}

.nom-box:hover .overlay {
  bottom: 0;
}

@media (min-width: 1300px) {
	.text { font-size: 18px; }
	.nom-name-box { font-size: 25px; }
}
@media (max-width: 1299px) {
	.text { font-size: 14px; }	
	.nom-name-box { font-size: 18px; }
}
@media (max-width: 1099px) {
	.text { font-size: 12px; }	
}
@media (max-width: 991px) {
	.text { font-size: 16px; }	
}

.text {
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
  padding-top: 25%;
  padding-right: 10px;
  padding-left: 10px;
  font-weight: 500;
}

.nom-name-box {
	background: #bab7b2;
	height: 25%;
	position: relative;
	color: #fff;
	font-weight: 700;
	text-transform: lowercase;
    line-height: 22px;
}

.nom-name-box .name {
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	text-align: center;
    width: 100%;
    padding: 10px;
	
}

.news-category {
	max-width: 100%;
}

.panel-shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a:hover .panel-shadow {
    background: rgba(253, 186, 62, 0.30);
}

.panel-tresc h3 {
	font-family: 'Barlow', sans-serif;
    text-align: center;
    margin: 0;
    color: #fff;
	text-transform: lowercase;
    font-weight: 700;
}

.panel-tresc {
    position: absolute;
    bottom: 0px;
    padding: 10px;
    width: 100%;
    background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.9) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.9)));
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.9) 100%);
    background: -o-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.9) 100%);
    background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.9) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.9) 100%);
}

.kat-naglowek {
	position: relative;
    z-index: 1;
}

.kat-naglowek:before {
	content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 15px;
    z-index: -1;
    background-color: #e78b24;
    -webkit-transition: width .3s ease;
    -o-transition: width .3s ease;
    transition: width .3s ease;
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #343b40;
  padding: 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .copyright {
  text-align: center;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #ccc;
}


.flexbox {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.flexbox .col-md-5-5 {
  flex: 1;
}
	
.input-hidden {
  position: absolute;
  left: -9999px;
}

.frb-group {
	margin: 15px 0;
}

@media (min-width: 992px) {
	.frb-group {
	overflow: hidden;
}
}

.frb ~ .frb {
	margin-top: 15px;
}

.frb input[type="radio"]:empty,
.frb input[type="checkbox"]:empty {
	display: none;
}

.frb input[type="radio"] ~ label,
.frb input[type="checkbox"] ~ label {
	position: relative;
	cursor: pointer;
	width: 100%;
	background-color: rgba(242, 242, 242, 0.25);
    color: white;
    border: 0px solid #e78b24;
	    transition: 500ms all;
}

.frb-title img {
    border-radius: 50px;
}

.frb input[type="radio"]:checked ~ label,
.frb input[type="checkbox"]:checked ~ label {
	color: #333;
}

.frb input[type="radio"]:checked ~ label,
.frb input[type="checkbox"]:checked ~ label {
	background-color: #f2f2f2;
}

.frb.frb-default input[type="radio"]:checked ~ label,
.frb.frb-default input[type="checkbox"]:checked ~ label {
	color: #333;
}

.frb.frb-primary input[type="radio"]:checked ~ label,
.frb.frb-primary input[type="checkbox"]:checked ~ label {
    background-color: #e78b24;
    transition: 500ms all;
    border: 10px solid #e78b24;
}

.frb.frb-primary input[type="checkbox"]:checked .nom-name-box {
    background-color: #e78b24;
}

.frb.frb-success input[type="radio"]:checked ~ label,
.frb.frb-success input[type="checkbox"]:checked ~ label {
	border: 10px solid #e78b24;
    transition: 500ms all;
}

.frb.frb-info input[type="radio"]:checked ~ label,
.frb.frb-info input[type="checkbox"]:checked ~ label {
	background-color: #5bc0de;
}

.frb.frb-warning input[type="radio"]:checked ~ label,
.frb.frb-warning input[type="checkbox"]:checked ~ label {
	background-color: #f0ad4e;
}

.frb.frb-danger input[type="radio"]:checked ~ label,
.frb.frb-danger input[type="checkbox"]:checked ~ label {
	background-color: #d9534f;
}

.frb input[type="radio"]:empty ~ label span,
.frb input[type="checkbox"]:empty ~ label span {
	display: inline-block;
}

.frb input[type="radio"]:empty ~ label span.frb-title,
.frb input[type="checkbox"]:empty ~ label span.frb-title {
	font-size: 16px;
	font-weight: 700;
    margin: 5px;
    display: block;
    text-align: center;
	line-height: 15px;
}

.frb input[type="radio"]:empty ~ label span.frb-description,
.frb input[type="checkbox"]:empty ~ label span.frb-description {
	font-weight: normal;
	color: #999;
	margin: 5px 5px 5px 5px;
}

.frb input[type="radio"]:empty:checked ~ label span.frb-description,
.frb input[type="checkbox"]:empty:checked ~ label span.frb-description {
	color: #fafafa;
}

.frb.frb-default input[type="radio"]:empty:checked ~ label span.frb-description,
.frb.frb-default input[type="checkbox"]:empty:checked ~ label span.frb-description {
	color: #999;
}

.opisglo {
    background: none;
    border: 0px;
    width: 100%;
    margin-bottom: 5px;
	outline: none;	
}

.plebiscyt-title {
    display: inline-block;
    padding: 5px 10px;
    background: rgba(253, 186, 62, 0.83);
    font-size: 21px;
    text-transform: uppercase;
    font-weight: 700;
    color: #ffffff;
}

#poll1 .btn, #poll2 .btn, #poll3 .btn, #poll4 .btn, #poll5 .btn, #poll6 .btn, #poll7 .btn, #poll8 .btn, #poll9 .btn,#poll10 .btn {
	font-size: 28px;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0);
    color: #ffffff;
    font-weight: 700;
    text-transform: lowercase;
    border: 0px;
    border-radius: 0;
    line-height: 40px;
    -webkit-transition: background .3s ease;
    -o-transition: background .3s ease;
    transition: background .3s ease;
}

#poll1 .btn:hover, #poll2 .btn:hover, #poll3 .btn:hover, #poll4 .btn:hover, #poll5 .btn:hover, #poll6 .btn:hover, #poll7 .btn:hover, #poll8 .btn:hover, #poll9 .btn:hover ,#poll10 .btn:hover {

    background: #e78b24;

}

.opis1 .plebiscyt-title, .opis2 .plebiscyt-title, .opis3 .plebiscyt-title, .opis4 .plebiscyt-title, .opis5 .plebiscyt-title, .opis6 .plebiscyt-title, .opis7 .plebiscyt-title, .opis8 .plebiscyt-title, .opis9 .plebiscyt-title, .opis10 .plebiscyt-title, .opis11 .plebiscyt-title, .opis12 .plebiscyt-title, .opis13 .plebiscyt-title, .opis14 .plebiscyt-title, .opis15 .plebiscyt-title, .opis16 .plebiscyt-title, .opis17 .plebiscyt-title, .opis18 .plebiscyt-title, .opis19 .plebiscyt-title, .opis20 .plebiscyt-title, .opis21 .plebiscyt-title, .opis22 .plebiscyt-title, .opis23 .plebiscyt-title, .opis24 .plebiscyt-title, .opis25 .plebiscyt-title {
    display: inline-block;
    padding: 5px 10px;
    background: rgba(253, 186, 62, 0.57);
    font-size: 21px;
    text-transform: uppercase;
    font-weight: 700;
    color: #3e3b3b;
}

.spis-kategorii section {
	background-image: url('https://forum.tvpolsat.info/serwis-specjalny/10latpn/img/tlo-kategorie.png');
	background-size: cover;
}

.scroll-btn {
    position: absolute;
    bottom: 70px;
    left: 50%;
    z-index: 2;
    display: inline-block;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    color: #fff;
    text-decoration: none;
    transition: opacity .3s;
}

.scroll-btn span {
	position: absolute;
    top: 0;
    left: 50%;
    width: 30px;
    height: 50px;
    margin-left: -15px;
    border: 2px solid #fff;
    border-radius: 50px;
    box-sizing: border-box;
}

.scroll-btn span:before {
    position: absolute;
    top: 10px;
    left: 50%;
    content: '';
    width: 6px;
    height: 6px;
    margin-left: -3px;
    background-color: #fff;
    border-radius: 100%;
    -webkit-animation: sdb10 2s infinite;
    animation: sdb10 2s infinite;
    box-sizing: border-box;		
}

@-webkit-keyframes sdb10 {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb10 {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
