/*
 * Author: Anna Welc
 */
/* ==========================================================================
   Base styles
   ========================================================================== */
/* border-box for all elements */
* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
/* Bg color of selection */
::-moz-selection {
    background: #f7e6f0;
    text-shadow: none;
}
::selection {
    background: #f7e6f0;
    text-shadow: none;
}
/* Better loking horizontal line */
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}
/* Removing gap */
audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}
/* Remove default fieldset styles. */
fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}
/* only vert resize */
textarea {
    resize: vertical;
}
strong {
    font-weight: 700;
}
/* ==========================================================================
   Helper styles
   ========================================================================== */
.left {
    float: left;
}
.right {
    float: right;
}
.table {
    display: table !important;
}
.table-cell {
    display: table-cell !important;
    height: inherit;
}
.table-row {
    display: table-row !important;
}
.hidden {
    display: none !important;
}
.align-right {
    text-align: right;
}
/* ==========================================================================
   Fonts
   ========================================================================== */


/* ==========================================================================
   Custom styles
   ========================================================================== */
html {
    color: #555555;
    font-family: Calibri, sans-serif;
    font-size: 1em;
    line-height: 1.4;
}
.wrapper {
    width: 100%;
    max-width: 1200px;
    padding-left: 1rem;
    padding-right: 1rem;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
}
body {
    font-family: 'Calibri', sans-serif;
    line-height: 1.4;
}
#footer-nav li a, #footer-nav li a:hover,
.box-offer ul li a, .box-offer ul li a:hover,
.pink-btn, .pink-btn:hover,
.blue-btn, .blue-btn:hover,
#menu-mobile.hide, #menu-mobile,
.result-range ul li a:hover,
.result-range ul li a,
.submenu-page ul li:hover,
.submenu-page ul li,
.submenu-page ul li:hover a,
.submenu-page ul li a,
.sub-content.show, .sub-content {
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
}
/* --------------------------------------------------------------------------
   HEADER
   -------------------------------------------------------------------------- */
#top {
    position: relative;
    padding-top: 29px;
    padding-bottom: 44px;
    z-index: 1000;
}
#logo {
    float: left;
}
#top-nav {
    float: right;
    width: 57%;
}
.bottom-nav-cont {
    background: #797f80;
    width: 100%;
}
.bottom-nav-cont ul {
    display: block;
    float: right;
    margin-top: 7px;
    margin-bottom: 7px;
}
.bottom-nav-cont ul li {
    display: block;
    float: left;
    padding: 0 14px;
    border-left: 1px solid #fff;
}
.bottom-nav-cont ul li:first-child {
    border-left: 0;
}
.bottom-nav-cont ul li a {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: lighter;
    text-transform: uppercase;
}
#home {
    float: right;
    width: 41px;
    height: 28px;
    border-left: 1px solid #fff;
    background: url('../img/ic-home.png') no-repeat;
    background-position: center;
}
#user {
    float: left;
    width: 41px;
    height: 28px;
    background: url('../img/ic-user.png') no-repeat;
    background-position: center;
}
.top-nav-cont {
    margin-bottom: 8px;
}
.top-nav-cont .option {
    float: right;
}
.top-nav-cont .option li {
    display: block;
    float: left;
}
.top-nav-cont .option li a {
    display: block;
    height: 20px;
    padding: 0 10px;
    font-size: 11px;
    color: #000;
    text-transform: uppercase;
    line-height: 20px;
}
.top-nav-cont .option li.active {
    background: #797f80;
}
.top-nav-cont .option li.active a {
    color: #fff;
}
#phone-number {
    position: relative;
    display: block;
    float: left;
    padding-left: 28px;
    font-weight: bold;
    font-size: 18px;
    color: #797f80;
}
#phone-number:before {
    position: absolute;
    width: 21px;
    height: 21px;
    left: 0;
    top: 0;
    background: url('../img/ic-phone.png') no-repeat;
    content: "";
}
/* --------------------------------------------------------------------------
   MAIN
   -------------------------------------------------------------------------- */
.popup-bg {
    position: fixed;
    display: none;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    overflow-x: hidden;
    overflow-y: auto;
    background: rgba(0,0,0,0.30);
}
.popup-bg.show {
    display: block;
}
.popup-bg.fade {
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    transition: opacity .15s linear;
}
.fade.in {
    opacity: 1;
}
.fade .popup-content {
    -webkit-transition: -webkit-transform .3s ease-out;
    -o-transition: -o-transform .3s ease-out;
    transition: transform .3s ease-out;
    -webkit-transform: translate(0,-25%);
    -ms-transform: translate(0,-25%);
    -o-transform: translate(0,-25%);
    transform: translate(0,-25%);
}
.fade.in .popup-content {
    -webkit-transform: translate(0,0);
    -ms-transform: translate(0,0);
    -o-transform: translate(0,0);
    transform: translate(0,0);
}
body.modal {
    overflow: hidden;
}
.popup-content {
    position: relative;
    width: 575px;
    margin: 30px auto;
    padding-bottom: 30px;
    background: #fff;
}
.form-popup {
    position: relative;
    padding: 36px;
    background: url('../img/pattern.jpg');
}
#close-popup {
    position: absolute;
    right: 36px;
    top: 36px;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
}
.form-popup .input-wrapper {
    display: block;
    float: left;
    width: 49%;
}
.form-popup .input-wrapper-full {
    display: block;
    width: 100%;
}

.input-wrapper-rodo {
    padding-top: 20px;
    color: white;
    display: block;
    width: 100%;
    text-align: justify;
    font-size: 12px;
}

.input-wrapper-rodo a, .input-wrapper-rodo a:hover, .input-wrapper-rodo a:active {
    color: white;
    font-weight: bold;
}


.form-popup .input-wrapper:nth-child(even) {
    margin-left: 2%;
}
.form-popup label {
    display: block;
    margin-bottom: 5px;
    margin-top: 5px;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
}
.form-popup input {
    width: 100%;
    height: 34px;
    border: 0;
    padding: 0 10px;
    font-family: "Calibri";
    font-size: 14px;
}
.form-popup textarea {
    width: 100%;
    height: 240px;
    border: 0;
    padding: 10px;
    resize: none;
    font-family: "Calibri";
    font-size: 14px;
}
.form-popup .btn-wrapper input {
    width: 115px;
}
.form-popup .btn-wrapper {
    margin-top: 22px;
    padding: 0;
}
.form-popup .btn-wrapper .code {
    margin-right: 2%;
}
.form-popup .btn-wrapper .code, .form-popup .btn-wrapper .btn {
    display: block;
    float: right;
}
.form-popup .btn-wrapper .btn {
    height: 34px;
    min-width: 165px;
    margin-top: 0;
    line-height: 34px;
    font-size: 16px;
}
.form-popup .btn-wrapper .code label {
    display: block;
    float: right;
    margin: 16px 10px 0 0;
    text-transform: none;
}
.form-popup .btn-wrapper .code input {
    display: block;
    float: right;
}
.form-popup h2 {
    margin-bottom: 26px;
    color: #fff;
    font-weight: bold;
    font-size: 25px;
    text-transform: uppercase;
    text-align: center;
}
#slick {
    overflow: hidden;
    text-align: center;
}
#slick .slick-slide {
    width: 100%;
    height: 390px;
    background-size: cover !important;
    background-position: center top !important;
}
#slick .slick-slide .wrapper {
    position: relative;
}
.result-range {
    display: block;
    float: right;
    width: 50%;
    padding-top: 50px;
    text-align: left;
}
.result-range ul li {
    position: relative;
    display: block;
    float: left;
    padding: 0 4px;
    width: 25%;
    min-height: 160px;
    text-align: center;
}
.result-range h3 {
    color: #383838;
    font-size: 30px;
    font-weight: normal;
    margin-bottom: 46px;
    text-align: center;
}
.result-range ul li img {
    display: inline-block;
    margin-bottom: 9px;
}
.result-range ul li a {
    position: absolute;
    display: block;
    height: 23px;
    left: 4px;
    right: 4px;
    bottom: 0;
    background: #d342c7;
    color: #fff;
    font-size: 11px;
    line-height: 23px;
    text-transform: uppercase;
    -webkit-box-shadow: 4px 4px 8px 0px rgba(50, 50, 50, 0.27);
    -moz-box-shadow:    4px 4px 8px 0px rgba(50, 50, 50, 0.27);
    box-shadow:         4px 4px 8px 0px rgba(50, 50, 50, 0.27);
}
.result-range ul li a:hover {
    background: #d60dc5;
}
.slick-arrow {
    position: absolute;
    width: 31px;
    height: 60px;
    margin-top: -32px;
    top: 50%;
    background: url('../img/arrow-right.png');
    border: 0;
    cursor: pointer;
    font-size: 0;
    z-index: 1;
}

@media all and (max-width: 720px) {
    .slide1-ic1 {
        position: absolute;
        width: 320px;
        height: 51px;
        top: 240px;
        left: 58px;
        background: url('../img/slide1-ic1.png') no-repeat;
        z-index: 1200;
    }

    .slide1-ic2 {
        position: absolute;
        width: 320px;
        height: 57px;
        top: 22px;
        right: 8%;
        background: url('../img/slide1-ic2.png') no-repeat;
        z-index: 1200;
    }

    .slide2-ic4 {
        top: 241px;
        left: calc(50% - 114px);
    }
}

@media all and (min-width: 720px) {
    .slide1-ic1 {
        position: absolute;
        width: 327px;
        height: 53px;
        top: 293px;
        left: 16.4%;
        background: url('../img/slide1-ic1.png') no-repeat;
        z-index: 1200;
    }

    .slide1-ic2 {
        position: absolute;
        width: 320px;
        height: 54px;
        top: 40px;
        left: 47.3%;
        background: url('../img/slide1-ic2.png');
        z-index: 1200;
    }
}

.slide2-ic1 {
    position: absolute;
    width: 45px;
    height: 79px;
    top: 152px;
    left: 14%;
    background: url('../img/slide2-ic1.jpg');
    z-index: 1000;
}
.slide2-ic2 {
    position: absolute;
    width: 34px;
    height: 40px;
    top: 172px;
    left: 21%;
    background: url('../img/slide2-ic2.jpg');
    z-index: 1000;
}
.slide2-ic3 {
    position: absolute;
    width: 82px;
    height: 55px;
    top: 167px;
    left: 28%;
    background: url('../img/slide2-ic3.jpg');
    z-index: 1000;
}
.slide2-ic4 {
    position: absolute;
    width: 228px;
    height: 56px;
    top: 294px;
    left: 38.4%;
    background: url('../img/slide2-ic4.png');
    z-index: 1000;
}

@media all and (min-width: 700px)  {
    .slide2-t1 {
        position: absolute;
        top: 237px;
        left: 10.5%;
        z-index: 999;
    }

    .slide2-t1 b {
        font-weight: bold;
        color: #000000;
    }


    .slide2-t2 {
        position: absolute;
        top: 237px;
        left: 28.5%;
        z-index: 999;
    }

    .slide2-t2 b {
        font-weight: bold;
        font-size: 18px;
        color: #000000;
    }
}

@media all and (max-width: 699px)  {
    .slide2-t1 {
        display: none;
    }

    .slide2-t2 {
        display: none;
    }

    .slide2-ic4 {
        top: 241px;
        left: calc(50% - 114px);
    }
}

.slick-slide[data-slick-index="1"] h2 {
    position: absolute;
    display: inline-block;
    left: 10%;
    top: 63px;
    font-size: 48px;
    font-weight: bold;
    color: #660d83;
}
.slick-slide[data-slick-index="1"] h3 {
    position: absolute;
    display: inline-block;
    right: 0;
    top: 170px;
    font-size: 36px;
    font-weight: lighter;
    color: black;
    text-align: left;
}

.slick-slide[data-slick-index="1"] strong {
    font-weight: bold;
    color: #660d83;
}

.slick-slide[data-slick-index="2"] form {
    display: block;
    float: right;
    width: 50%;
    padding-top: 50px;
    text-align: left;
}
.slick-slide[data-slick-index="2"] form {
    font-size: 30px;
    color: #000;
    font-weight: lighter;
}
.slick-slide[data-slick-index="2"] .input-wrapper {
    position: absolute;
    display: inline-block;
    max-width: 90%;
    right: 10px;
    top: 110px;
    margin-top: 30px;
}
.slick-slide[data-slick-index="2"] form {
    font-weight: bold;
}

.slick-slide[data-slick-index="2"]  h3  {
    font-size: 24px;
    font-weight: normal;
}

.slick-slide[data-slick-index="2"]  strong  {
    font-weight: bold;
    color: #660d83;
}

.slick-slide[data-slick-index="2"] form input {
    display: block;
    float: left;
    height: 34px;
    width: 48%;
    background: #fff;
    border: 0;
    font-size: 20px;
    font-weight: lighter;
    font-style: italic;
}
.slick-slide[data-slick-index="2"] form input:first-child {
    margin-right:2%;
}
.slick-slide[data-slick-index="2"] form .submit {
    display: inline-block;
    margin-top: 12px;
    border: 0;
    background: transparent;
    font-family: Calibri, sans-serif;
    font-size: 18px;
    font-weight: lighter;
    color: #54afc6;
    cursor: pointer;
}
.slick-slide
.slick-arrow,
.slick-arrow:focus,
.slick-dots li button,
.slick-dots li button:focus {
    outline: none;
}
.slick-arrow::-moz-focus-inner, .slick-dots li button::-moz-focus-inner {
    border: 0;
}
.slick-prev {
    left: 140px;
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.slick-next {
    right: 140px;
}
.slick-dots {
    display: inline-block;
    margin-top: 2px;
}
.slick-dots li {
    display: block;
    float: left;
    padding: 0 8px;
}
.slick-dots:before,
.slick-dots:after {
    content: " ";
    display: table;
}
.slick-dots li button {
    width: 6px;
    height: 6px;
    padding: 0;
    background: #898989;
    font-size: 0;
    border: 0;
    -webkit-border-radius: 180px;
    -moz-border-radius: 180px;
    border-radius: 180px;
    cursor: pointer;
}
.slick-dots li.slick-active button {
    width: 14px;
    height: 14px;
    background: transparent url('../img/dot-active.png') no-repeat;
}
.slick-dots:after {
    clear: both;
}

.slick-dots {
    *zoom: 1;
}
.box-offer {
    padding-top: 24px;
}
.box-offer ul li {
    display: block;
    float: left;
    width: 25%;
    border-right: 1px solid #cccccc;
}
.box-offer ul li:first-child {
    border-left: 1px solid #cccccc;
}
.box-offer ul {
    border-top: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
}
.box-offer ul li h3 {
    font-size: 38px;
    color: #383838;
    font-weight: lighter;
}
.box-offer ul li a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    /*min-height: 250px; */
    padding: 24px 30px 93px;
}
.box-offer ul li a:hover {
    background: #1dcaf3;
}
.icon {
    position: absolute;
    width: 60px;
    height: 60px;
    bottom: 29px;
    right: 30px;
}
/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
#footer {
    position: relative;
    background: #383838;
    margin-top: 5px;
    padding-top: 24px;
    padding-bottom: 52px;
}
#footer:before {
    position: absolute;
    width: 100%;
    height: 5px;
    left: 0;
    top: 0;
    background: url('../img/colorfull.jpg');
    background-position: center;
    background-size: cover;
    content: "";
}
#footer-nav {
    float: left;
}
#copyright {
    float: right;
    text-align: right;
}
#footer-nav li {
    display: block;
    float: left;
    margin-right: 36px;
}
#footer-nav li a, #copyright p {
    color: #fff;
    font-weight: lighter;
    font-size: 14px;
}
#footer-nav li a:hover, #copyright p a {
    color: #1dcaf3;
}
#footer-nav li a:hover {
    text-decoration: underline;
}

/* === Internet page ==== */
.header {
    min-height: 28px;
    background: url('../img/header-bg.png') no-repeat;
    background-position: right center;
    background-color: #797f80;
}
.header.biznes {
    min-height: 28px;
    background: url('../img/header-bg2.png') no-repeat;
    background-position: right center;
    background-color: #797f80;
}
.header h2 {
    padding-top: 1px;
    font-size: 24px;
    color: #fff;
    font-weight: lighter;
}
.content .internet, .content .internet2, .content .phone, .content .phone2, .content .tv, .content .tvmore-page, .content .biznes2 {
    /*  background-size: cover !important;
     background-position: center !important; */
    text-align: center;
    background-size: 100% !important;
    background-attachment: fixed !important;
    background-position: top;
    /*overflow: hidden;*/
}
.content .biznes2 {
    padding: 75px 0;
    background: url('../img/biznes2-bg.jpg') no-repeat;
}
.content .internet {
    padding: 55px 0;
    background: url('../img/page-bg-internet.jpg') no-repeat;
    overflow: hidden;
}
.content .news {
    padding: 20px 0;
}
.content .internet2 {
    padding: 45px 0;
    background: url('../img/page-bg-internet2.jpg') no-repeat;
}
.content .phone {
    padding: 55px 0;
    background: url('../img/phone-page-bg.jpg') no-repeat;
    overflow: hidden;
}
.content .phone2 {
    padding: 45px 0;
    background: url('../img/phone-page-bg2.jpg') no-repeat;
    overflow: hidden;
}
.content .tv {
    padding: 55px 0;
    background: url('../img/tv-page-bg.jpg') no-repeat;
    overflow: hidden;
}
.content .tvmore-page {
    padding: 45px 0;
    background: url('../img/page-tvmore-bg.jpg') no-repeat;
}
#box-offer-bg {
    position: relative;
    display: inline-block;
    z-index: 1;
}
#box-offer-bg li {
    display: block;
    float: left;
    background: rgba(255,255,255,0.9);
    -webkit-box-shadow: -3px 6px 7px 0px rgba(0, 0, 0, 0.33);
    -moz-box-shadow:    -3px 6px 7px 0px rgba(0, 0, 0, 0.33);
    box-shadow:         -3px 6px 7px 0px rgba(0, 0, 0, 0.33);
}
#box-offer-bg li:first-child {
    margin-right: 60px;
}
#box-offer-bg.offer-3 li:last-child {
    margin-left: 60px;
}
#box-offer-bg li .box-wrapper {
    display: block;
    width: 264px;
    min-height: 254px;
    padding: 55px 28px 0 28px;
}
.phone #box-offer-bg li .box-wrapper {
    padding-bottom: 27px;
}
#box-offer-bg li h2 {
    font-size: 32px;
    font-weight: lighter;
    color: #313131;
}
.align-right span {
    display: inline-block;
    margin-top: 11px;
    font-size: 14px;
    color: #54afc6;
}
.icon-center {
    margin-top: 18px;
}
.box-offer .align-right {
    position: absolute;
    margin: 0;
    padding-right: 30px;
    padding-bottom: 8px;
    bottom: 0;
    left: 0;
    right: 0;
}

.col-right {
    display: block;
    float: right;
    width: 255px;
    padding-left: 18px;
}
.col-left {
    display: block;
    float: left;
    width: calc(100% - 255px);
    padding-left: 74px;
    text-align: left;
}
.phone2 .col-left {
    padding-right: 45px;
}
.internet2 .offer-info, .phone2 .offer-info {
    position: relative;
    margin-top: 40px;
}
.phone2 .offer-info {
    margin-top: 98px;
}
.box-info {
    display: block;
    float: right;
    width: 220px;
    border: 2px dashed #54afc6;
    padding: 20px 16px 18px 16px;
    background: #fff;
}
.phone2 .box-info {
    width: 254px;
}
.box-info h4 {
    margin-bottom: 40px;
    color: #54afc6;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}
.box-info ul li {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: lighter;
    color: #313131;
}
.box-info ul li span {
    color: #54afc6;
    font-weight: bold;
}
.param {
    position: absolute;
    width: calc(100% - 242px);
    padding: 20px 24px;
    left: 0;
    bottom: 0;
    background: rgba(255,255,255,0.9);
}
.param .lines {
    position: absolute;
    width: 275px;
    height: 96px;
    left: -275px;
    top: 11px;
    background: url('../img/bg-lines2.png');
}
.param h3 {
    margin-bottom: 5px;
    font-size: 24px;
    font-weight: normal;
    color: #54afc6;
}
.param ul li {
    display: block;
    margin-bottom: 5px;
    color: #797f80;
    font-size: 24px;
    font-weight: lighter;
}
.param ul li span {
    margin: 0;
    font-weight: normal;
    font-size: 24px;
    color: #54afc6;
}
#cirlces li {
    display: block;
    width: 164px;
    height: 164px;
    margin-bottom: 34px;
    background: rgba(255,255,255,0.8);
    -webkit-border-radius: 180px;
    -moz-border-radius: 180px;
    border-radius: 180px;
    -webkit-box-shadow: 5px 5px 3px 0px rgba(0, 0, 0, 0.33);
    -moz-box-shadow:    5px 5px 3px 0px rgba(0, 0, 0, 0.33);
    box-shadow:         5px 5px 3px 0px rgba(0, 0, 0, 0.33);
}
#cirlces li img {
    display: inline-block;
    margin-top: 20px;
}
#cirlces li h3 {
    margin-top: 14px;
    font-size: 20px;
    font-weight: bold;
    color: #54afc6;
    text-transform: uppercase;
}
#cirlces li h3 span {
    margin: 0;
    font-size: 17px;
    text-transform: uppercase;
}
.internet2 .col-left h2, .phone2 .col-left h2 {
    font-size: 40px;
    font-weight: lighter;
    color: #54afc6;
}
.internet2 .col-left p, .internet2 .col-left .custom-list li, .phone2 .col-left p, .phone2 .col-left .custom-list li {
    font-size: 29px;
    font-weight: lighter;
    color: #797f80;
}
.custom-list {
    margin-top: 33px;
}
.custom-list li {
    position: relative;
    display: block;
    padding-left: 45px;
    margin-bottom: 8px;
}
.custom-list li:before {
    position: absolute;
    width: 32px;
    height: 28px;
    left: 0;
    top: 0;
    background: url('../img/list-ic.png');
    content: "";
}
.btn {
    display: block;
    height: 44px;
    border: 0;
    font-size: 22px;
    font-weight: lighter;
    color: #fff;
    line-height: 44px;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
}
.pink-btn {
    margin-top: 30px;
    background: #d342c7;
}
.pink-btn:hover {
    background: #d60dc5;
}
.blue-btn {
    font-size: 18px;
    margin-top: 5px;
    background: #54afc6;
}
.blue-btn:hover {
    background: #1c8da9;
}
.col-main {
    padding: 0 80px;
}
.col-main p {
    margin-bottom: 35px;
    font-size: 40px;
    font-weight: lighter;
    color: #797f80;
    text-align: left;
}
#box-three, #box-four {
    position: relative;
}
#box-three > li {
    position: relative;
    display: block;
    float: left;
    padding: 30px 30px 35px 30px;
    width: 31%;
    margin-right: 3.5%;
    background: rgba(255,255,255,0.75);
    -webkit-box-shadow: 5px 5px 3px 0px rgba(0, 0, 0, 0.33);
    -moz-box-shadow:    5px 5px 3px 0px rgba(0, 0, 0, 0.33);
    box-shadow:         5px 5px 3px 0px rgba(0, 0, 0, 0.33);
}
#box-four > li {
    position: relative;
    display: block;
    float: left;
    padding: 30px 30px 35px 30px;
    width: 22.375%;
    margin-right: 3.5%;
    background: rgba(255,255,255,0.75);
    -webkit-box-shadow: 5px 5px 3px 0px rgba(0, 0, 0, 0.33);
    -moz-box-shadow:    5px 5px 3px 0px rgba(0, 0, 0, 0.33);
    box-shadow:         5px 5px 3px 0px rgba(0, 0, 0, 0.33);
}
#box-three li:last-child, #box-four li:last-child {
    margin-right: 0;
}
.offer-four .col-main {
    padding: 0;
}
#box-three h2, #box-four h2 {
    padding-bottom: 25px;
    border-bottom: 1px solid #54afc6;
    margin-bottom: 14px;
    font-size: 22px;
    font-weight: normal;
    color: #54afc6;
    text-transform: uppercase;
    text-align: center;
}
#box-three h3, #box-four h3 {
    font-size: 40px;
    font-weight: normal;
    text-align: center;
    color: #54afc6;
}
#box-three h4, #box-four h4 {
    font-size: 30px;
    font-weight: normal;
    text-align: center;
    color: #54afc6;
}
#box-three .lines, #box-four .lines {
    position: absolute;
    width: 208px;
    height: 102px;
    left: -208px;
    bottom: -14px;
    background: url('../img/bg-lines.png');
}
#box-three .lines-tv1, #box-four .lines-tv1 {
    position: absolute;
    width: 253px;
    height: 144px;
    left: -253px;
    top: 66px;
    background: url('../img/tv-lines1.png');
}
#box-three .lines-tv2, #box-four .lines-tv2 {
    position: absolute;
    width: 318px;
    height: 125px;
    right: -318px;
    top: 305px;
    background: url('../img/tv-lines2.png');
}
.mask {
    position: relative;
    margin: 20px auto;
    display: block;
    width: 100%;
    height: 71px;
    background: #54afc6;
    -webkit-mask-image: url(../img/mask.png);
    mask-image: url(../img/mask.png);
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}
.add-margin {
    margin-top: 58px;
}
.login-bg {
    min-height: 100vh;
    background: url('../img/login-bg2.jpg') no-repeat center center;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    flex-direction: column;
    display: flex;
}
#box-three img, #box-four img {
    display: inline-block;
    margin-top: 24px;
    margin-bottom: 19px;
}
.activation {
    position: absolute;
    width: 88px;
    height: 125px;
    left: -18px;
    bottom: -105px;
    background: url('../img/activation.png');
}
#box-three .activation p, #box-four .activation p {
    margin: 67px 0px 0px;
    color: #fff;
    font-size: 14px;
    text-align: center;
    font-weight: 800;
}
#box-three .activation h4, #box-four .activation h4 {
    margin: 0px;
    color: #fff;
    font-size: 27px;
    font-weight: 600;
}
.dot {
    position: absolute;
    width: 15px;
    height: 15px;
    bottom: 15px;
    left: 17px;
    background: url('../img/dot.png');
}
.padding-activation {
    padding-bottom: 90px !important;
}
.btn-wrapper {
    padding: 0 12px;
}
/* ==== LOGIN ==== */
.login #footer {
    margin-top: auto;
}
#login-top {
    padding-top: 30px;
    padding-bottom: 80px;
}
#login-nav {
    float: right;
}
#login-nav li {
    display: block;
    float: left;
    height: 26px;
    padding: 0 14px;
    border-right: 1px solid #f7fbff;
    background: #54aec6;
}
#login-nav .home-link {
    padding: 0 4px;
}
#login-nav .home-link a {
    display: block;
    height: 26px;
    width: 17px;
    background: url('../img/ic-home.png') no-repeat;
    background-position: center;
}
#login-nav li a {
    display: block;
    line-height: 26px;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
}
.login-bg h2 {
    margin-bottom: 5px;
    font-size: 40px;
    font-weight: lighter;
    color: #797f80;
    text-align: center;
}
.login-bg h3 {
    font-size: 30px;
    font-weight: normal;
    color: #797f80;
    text-align: center;
}
.login-wrapper {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.form-container {
    float: left;
    max-width: 400px;
    min-width: 400px;
    min-height: 300px;
    padding: 45px 40px 40px;
    margin-bottom: 100px;
    font-size: 32px;
    text-align: center;
    color: white;
    background: url('../img/pattern.jpg');
}
.form-container input {
    width: 100%;
    height: 34px;
    margin-bottom: 5px;
    border: 0;
}
.form-container label, .form-container form a {
    font-size: 20px;
    font-weight: normal;
    text-transform: uppercase;
    color: #fff
}
.form-container form .btn {
    float: right;
    max-width: 175px;
    width: 100%;
    height: 36px;
    margin-top: 17px;
    padding: 0;
    font-family: Calibri, sans-serif;
    font-size: 18px;
    font-weight: lighter;
    line-height: 36px;
}
.form-container form .btn.small-btn {
    font-size: 16px;
}
.form-container form a {
    display: block;
    width: 100%;
    float: left;
    margin-top: 19px;
    margin-bottom: 18px;
}
.form-container form a:hover {
    text-decoration: underline;
}
.login-info {
    float: right;
    width: calc(100% - 485px);
    padding-left: 130px;
}
.login-info ul {
    margin-top: 40px;
}
.login-info ul li {
    margin-bottom: 28px;
    font-size: 24px;
    font-weight: normal;
    color: #54afc6;
}
/* === Biznes ppage */
.biznes-page {
    background: url('../img/biznes-bg.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 40px;
}
.text-content {
    float: right;
    width: calc(100% - 290px);
    padding-left: 30px;
}
.text-content h2, .text-content h3 {
    margin-bottom: 18px;
    font-size: 30px;
    font-weight: lighter;
    color: #000000;
}
.text-content h3 {
    font-size: 24px;
}
.text-content p {
    margin-top: 20px;
    font-size: 18px;
    font-weight: lighter;
    color: #000;
    line-height: 1.2;
}
#left-nav {
    float: left;
    width: 290px;
    border: 1px solid #7a8081;
}
#left-nav ul li a {
    display: block;
    padding: 0 28px;
}
#left-nav ul li a span {
    display: block;
    padding: 18px 0;
    border-bottom: 1px solid #7a8081;
    font-size: 22px;
    font-weight: lighter;
    color: #000;
}
#left-nav ul li a.active {
    background: #54afc6;
}
#left-nav ul li.parent li a span {
    font-size: 18px;
}
#left-nav ul li.parent.active > a > span {
    border-bottom: 0;
}
#left-nav ul li a.active span {
    border-bottom: 0;
}
#left-nav ul li a.active span {
    color: #fff;
}
#left-nav li.parent li a {
    padding-left: 56px;
}
#left-nav li.parent:last-child ul li:last-child a span {
    border-bottom: 0;
}
.page-list {
    margin-top: 100px;
}
.page-list li {
    position: relative;
    margin-bottom: 55px;
    font-size: 22px;
    font-weight: lighter;
    display: block;
    padding-left: 18px;
    color: #000;
}
.page-list li:before {
    position: absolute;
    width: 9px;
    height: 9px;
    left: 0;
    top: 7px;
    background: #54afc6;
    content: "";
    -webkit-border-radius: 180px;
    -moz-border-radius: 180px;
    border-radius: 180px;
}
.ic-right {
    position: fixed;
    width: 71px;
    height: 54px;
    right: 0;
    z-index: 1000;
}
.ic-right1 {
    top: 170px;
    background: url('../img/ic-right1.jpg');
}
.ic-right2 {
    top: 235px;
    background: url('../img/ic-right2.jpg');
}
.ic-right3 {
    top: 299px;
    background: url('../img/ic-right3.jpg');
}
#box-three .tv-box {
    padding: 0;
}
.tv-top {
    padding: 30px;
}
.tv-top p {
    margin-bottom: 0;
    text-align: center;
    font-size: 24px;
    font-weight: lighter;
    color: #54afc6;
}
.tv-top p strong {
    font-weight: bold;
}
#box-three .tv-box.gold h2 {
    color: #c8b485;
}
#box-three .tv-box.red h2 {
    color: #dc2929;
}
#box-three .tv-box.blue h2 {
    color: #41a5eb;
}
#box-three .tv-box h2 {
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: 5px;
}
#box-three .tv-box.gold .pink-btn {
    background: #c8b485;
}
#box-three .tv-box.red .pink-btn {
    background: #dc2929;
}
#box-three .tv-box.blue .pink-btn {
    background: #41a5eb;
}
#box-three .tv-box .pink-btn {
    margin-top: 14px;
}
#box-three .tv-box li, #box-four .tv-box li {
    display: block;
    padding: 10px;
    border-bottom: 1px solid #54afc6;
    text-align: center;
    font-size: 18px;
    font-weight: lighter;
    color: #54afc6;
}
#box-four .tv-box {
    padding: 0;
}
#box-three .tv-box li span, #box-four .tv-box li span {
    font-weight: normal;
}
#box-three .tv-box li strong {
    font-weight: bold;
}
#box-three .tv-box li:last-child {
    border-bottom: 0;
}
.ic-list {
    position: relative;
    padding: 10px 60px;
}
.ic-list:before {
    position: absolute;
    width: 39px;
    height: 32px;
    left: 12px;
    top: 4px;
    content: "";
}
.ic-list1:before {
    background: url('../img/monit1.jpg');
}
.ic-list2:before {
    background: url('../img/monit2.jpg');
}
.ic-list3:before {
    background: url('../img/monit3.jpg');
}
.ic-list4:before {
    background: url('../img/monit4.jpg');
}
.info-ic {
    position: absolute;
    width: 25px;
    height: 25px;
    top: 8px;
    right: 7px;
    background: url('../img/info-ic.png');
    cursor: pointer;
}
/* === CONTACT PAGE */
.contact-container {
    margin-top: 44px;
    border: 1px solid #7a8081;
    padding-left: 28px;
    padding-right: 28px;
}
.contact-info {
    position: relative;
    padding-bottom: 24px;
    padding-top: 24px;
    border-bottom: 1px solid #7a8081;
}
.contact-container .contact-info:last-child {
    border-bottom: 0;
}
.contact-container h2, .contact-container h4, .contact-container p {
    font-weight: lighter;
    color: #000;
}
.contact-container h2 {
    margin-bottom: 44px;
    font-size: 30px;
}
.contact-container h4 {
    margin-bottom: 24px;
    font-size: 22px;
}
.contact-container p {
    font-size: 16px;
}
.contact-container a {
    color: #02a6c2;
}
.contact-container h3 {
    margin-bottom: 24px;
    font-size: 22px;
    font-weight: lighter;
    color: #02a6c2;
}
.contact-container .contact-info:first-child h2 {
    margin-bottom: 10px;
}
.col-1, .col-2, .col-3, .col-4 {
    float: left;
}
.col-1 {
    width: 43%;
    border-right: 1px solid #7a8081;
    padding-right: 15px;
}
.col-2 {
    width: 57%;
    padding-left: 45px;
    text-align: right;
}
.col-3 {
    width: 25%;
    border-right: 1px solid #7a8081;
}
.col-4 {
    width: 75%;
    padding-left: 32px;
}
.inner-col1 {
    float: left;
}
.inner-col2 {
    float: right;
}
.inner-col2 p:first-child {
    margin-bottom: 24px;
}
.col-1 p, .col-2 p, .col-3 p, .col-4 p {
    font-size: 18px;
    line-height: 1.3;
}
.col-4 h2 {
    margin-bottom: 20px;
}
.inner-col1 a {
    font-size: 22px;
}
/* tv more */
.services {
    float: left;
    width: 100%;
    max-width: 415px;
}

.checkbox label {
    position: relative;
    display: block;
    width: 19px;
    height: 19px;
    cursor: pointer;
}
.checkbox label:before {
    position: absolute;
    width: 9px;
    height: 9px;
    top: 5px;
    left: 5px;
    background: #d342c7;
}
input[type=checkbox]:checked + label:before {
    content: "";
}
.chbox {
    position: absolute;
    width: 19px;
    height: 19px;
    border: 2px solid #54afc6;
    left: 0;
    top: 0;
}
.tab-content {
    position: relative;
    display: none;
    background: rgba(255,255,255,0.9);
    -webkit-box-shadow: 5px 5px 7px 0px rgba(0, 0, 0, 0.33);
    -moz-box-shadow:    5px 5px 7px 0px rgba(0, 0, 0, 0.33);
    box-shadow:         5px 5px 7px 0px rgba(0, 0, 0, 0.33);
    border-top: 2px solid #65b7cb;
}
.tab-content.show {
    display: block;
}
.table-row .table-cell {
    padding: 12px;
    font-size: 18px;
    color: #54afc6;
    border-right: 1px solid #65b7cb;
    border-bottom: 1px solid #65b7cb;
    text-align: left;
    vertical-align: middle;
}
.table-row .table-cell:nth-child(3) {
    border-right: 0;
    min-width: 130px;
}
.table-cell.sm-font {
    font-size: 16px;
}
.table-row:last-child .table-cell {
    border-bottom: 0;
}
.table-row {
    position: relative;
}
.add-btn {
    position: absolute;
    width: 63px;
    height: 31px;
    margin-top: -16px;
    right: -63px;
    top: 50%;
    background: red;
    line-height: 31px;
    background: #d342c7;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-box-shadow: 5px 5px 7px 0px rgba(0, 0, 0, 0.33);
    -moz-box-shadow:    5px 5px 7px 0px rgba(0, 0, 0, 0.33);
    box-shadow:         5px 5px 7px 0px rgba(0, 0, 0, 0.33);
}
.tab li {
    position: relative;
    display: block;
    float: left;
    min-width: 183.5px;
    height: 47px;
    background: #fff;
    font-size: 24px;
    color: #797f80;
    line-height: 50px;
    cursor: pointer;
    -webkit-box-shadow: 5px 5px 7px 0px rgba(0, 0, 0, 0.33);
    -moz-box-shadow:    5px 5px 7px 0px rgba(0, 0, 0, 0.33);
    box-shadow:         5px 5px 7px 0px rgba(0, 0, 0, 0.33);
}
.tab li.active {
    background: #65b7cb;
    color: #fff;
}
.tab li:first-child {
    margin-right: 24px;
}
.tab li:last-child {
    margin-left: 24px;
}
#triangle-bottomleft {
    position: absolute;
    width: 0;
    height: 0;
    right: -24px;
    top: 0;
    border-bottom: 47px solid #fff;
    border-right: 24px solid transparent;
}
#triangle-bottomright {
    position: absolute;
    width: 0;
    height: 0;
    left: -24px;
    top: 0;
    border-bottom: 47px solid #fff;
    border-left: 24px solid transparent;
}
.tab li.active #triangle-bottomleft, .tab li.active #triangle-bottomright {
    border-bottom: 47px solid #65b7cb;
}
.service-order {
    float: right;
    width: 100%;
    max-width: 278px;
    padding: 26px;
    background: rgba(255,255,255,0.9);
    -webkit-box-shadow: 5px 5px 7px 0px rgba(0, 0, 0, 0.33);
    -moz-box-shadow:    5px 5px 7px 0px rgba(0, 0, 0, 0.33);
    box-shadow:         5px 5px 7px 0px rgba(0, 0, 0, 0.33);
}
.service-order h3 {
    margin-bottom: 22px;
    font-size: 22px;
    font-weight: bold;
    color: #54afc6;
}
.service-order p {
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: lighter;
    color: #313131;
}
.tvmore-page h2 {
    margin-bottom: 14px;
    font-size: 40px;
    font-weight: lighter;
    color: #797f80;
    text-align: left;
}

/* submenu */
.bottom-nav-cont ul {
    position: relative;
}
.bottom-nav-cont ul.submenu {
    display: none;
}
.bottom-nav-cont ul.submenu.open {
    display: block;
}
.bottom-nav-cont ul.submenu.level1 {
    position: absolute;
    background: #fff;
    left: 0;
    top: 14px;
}
.bottom-nav-cont ul.submenu.level2 {
    position: absolute;
    min-width: 338px;
    min-height: 90px;
    background: #fff;
    top: -7px;
    border-left: 1px solid #54afc6;
}
.bottom-nav-cont ul.submenu.level2 a {
    color: #000;
}
.bottom-nav-cont ul.submenu a {
    padding: 8px 14px;
    color: #54afc6;
}
.bottom-nav-cont ul.submenu.level1 > li:hover > a {
    color: #fff;
}
.bottom-nav-cont ul.submenu.level1 > li:hover {
    background: #54afc6;
}
.bottom-nav-cont ul.submenu li {
    float: none;
    padding: 0;
    border: 0;
}
/* menu mobile */
#menu-mobile {
    display: none;
    max-height: 800px;
    margin-top: 6px;
    overflow: hidden;
}
#menu-mobile.hide {
    max-height: 0;
}
/* ZMIANY -ADRIAN RYÅš */
#menu-mobile .nav1 li ul.submenu li.level2 a{
    background:transparent;
    border:1px solid #54afc6;
    color:#595959;
}
#menu-mobile .nav1 li ul.submenu{
    display:none;
}

#menu-mobile .nav1 li ul.level3 li a{
    background:#595959 !important;
    border: none !important;
    color:#FFF !important;
}
/* ZMIANY -ADRIAN RYÅš */
#menu-mobile .nav1 li {
    display: block;
    margin-bottom: 4px;
}
.mb_4px{
    margin-bottom:4px !important;
}
#menu-mobile .nav1 li a {
    position: relative;
    display: block;
    width: 100%;
    min-height: 43px;
    padding: 0 9px;
    background: #54afc6;
    color: #fff;
    font-size: 18px;
    font-weight: lighter;
    text-transform: uppercase;
    line-height: 43px;
}
#menu-mobile .nav1 li a:before {
    position: absolute;
    height: 43px;
    content: ">";
    right: 8px;
    line-height: 43px;
}
#menu-mobile .nav2 li {
    display: block;
    float: left;
    width: 49.6%;
}
#menu-mobile .nav2 li:first-child {
    margin-right: 0.8%;
}
#menu-mobile .nav2 li a {
    display: block;
    height: 57px;
    background: #595959;
    line-height: 57px;
    font-size: 18px;
    font-weight: lighter;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
}
#top-mobile {
    position: relative;
    display: none;
    width: 100%;
    height: 56px;
    text-align: center;
}
.icon-mobile-menu {
    position: absolute;
    width: 70px;
    height: 56px;
    left: 0;
    top: 0;
    background: url('../img/menu-mobile-ic.png');
}
.icon-mobile-home {
    position: absolute;
    width: 56px;
    height: 56px;
    right: 0;
    top: 0;
    background: url('../img/mobile-home-ic.jpg');
}
#top-mobile #logo {
    display: inline-block;
    float: none;
    margin-top: 6px;
}
/* ===== NEWS ===== - zmiana adrian */
#news-list {

}
#news-list li {
    position: relative;
    display: block;
    float: left;
    width: 100%;
    padding: 20px 20px 40px 20px;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-left: 1px solid #ccc;
    background: #fff;
    text-align: center;
}
#news-list li:first-child {
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-top: 1px solid #ccc;
}
#news-list header {
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid #ccc;
    text-align: left;
}
#news-list header h3 {
    margin-bottom: 3px;
    color: #068ea4;
    font-weight: normal;
    font-size: 16px;
}
#news-list header span {
    font-size: 12px;
    color: #797f80;
}
#news-list p {
    color: #313131;
    font-size: 14px;
    font-weight: lighter;
    line-height: 1.2;
    text-align: left;
}
#news-list .btn-wrapper {
    position: absolute;
    padding: 0;
    left: 20px;
    right: 20px;
    bottom: 20px;
    text-align: right;
}
#news-list .btn-wrapper a {
    display: inline-block;
    color: #54afc6;
    font-size: 14px;
    font-weight: lighter;
}
/* text page */
.page-hader {
    position: relative;
    padding-bottom: 20px;
    font-size: 40px;
    color: #54afc6;
    font-weight: lighter;
}
.page-hader:before {
    position: absolute;
    height: 1px;
    width: 234px;
    background: #7a8081;
    left: 0;
    bottom: 0;
    content: "";
}
.text-page {
    position: relative;
}
.text-page h3 {
    padding: 18px 0;
    color: #000;
    font-size: 24px;
    font-weight: lighter;
}
.text-page p {
    padding-bottom: 22px;
    color: #000;
    font-size: 16px;
    font-weight: lighter;
    line-height: 1.2;
}
.border-wrapper {
    position: relative;
    margin-bottom: 160px;
    padding:0 80px;
}
.border-wrapper:before {
    position: absolute;
    height: 1px;
    width: 234px;
    background: #7a8081;
    right: 0;
    bottom: 0;
    content: "";
}
#page-lines {
    position: absolute;
    width: 424px;
    height: 109px;
    left: 0;
    bottom: 75px;
    background: url('../img/text-lines.png');
}
.box-biznes-row {
    display: inline-block;
    margin-bottom: 9px;
}
.box-biznes-row li {
    display: block;
    float: left;
    background: rgba(255,255,255,0.9);
    -webkit-box-shadow: -3px 6px 7px 0px rgba(0, 0, 0, 0.33);
    -moz-box-shadow: -3px 6px 7px 0px rgba(0, 0, 0, 0.33);
    box-shadow: -3px 6px 7px 0px rgba(0, 0, 0, 0.33);
}
.box-biznes-row li a {
    position: relative;
    display: block;
    padding: 30px 30px 0 30px;
    width: 263px;
    min-height: 250px;
}
.box-biznes-row li:last-child {
    margin-left: 9px;
}
.box-biznes-row li h2 {
    font-size: 30px;
    font-weight: lighter;
    color: #000;
    text-align: left;
    line-height: 1.1;
}
.box-biznes-row .icon-center {
    position: absolute;
    right: 30px;
    bottom: 40px;
}
.box-biznes-row .align-right {
    position: absolute;
    right: 20px;
    bottom: 20px;
}
.box-biznes-row .align-right span {
    font-size: 18px;
}
.submenu-page {
    position: absolute;
    left: 20px;
    top: 27px;
}
.submenu-page ul li {
    display: block;
    float: left;
    height: 32px;
    min-width: 180px;
    padding: 0 20px;
    border: 1px solid #797f80;
    background: #fff;
    line-height: 30px;
    -webkit-border-bottom-right-radius: 2px;
    -webkit-border-bottom-left-radius: 2px;
    -moz-border-radius-bottomright: 2px;
    -moz-border-radius-bottomleft: 2px;
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
}
.submenu-page ul li:hover, .submenu-page ul li.active {
    background: #797f80;
}
.submenu-page ul li:hover a, .submenu-page ul li.active a {
    color: #02fafd;
}
.submenu-page ul li a {
    display: block;
    text-align: right;
    color: #797f80;
    font-size: 22px;
    font-weight: lighter;
}
.h1-absolute {
    position: absolute;
    margin-top: -52px;
    top: 50%;
    left: 5%;
}
.h2-absolute {
    position: absolute;
    margin-top: -104px;
    top: 50%;
    right: 5%;
}
.program-list {
    margin-top: 1%;
    padding: 0 1%;
}

.program-list li {
    display: block;
    float: left;
    width: 32.66%;
    height: 80px;
    margin-right: 1%;
    margin-bottom: 1%;
    background: #fff;
    border: 1px solid #ccc;
}
.program-list li:hover {
    -webkit-box-shadow: 1px 1px 3px 0px rgba(50, 50, 50, 0.5);
    -moz-box-shadow:    1px 1px 3px 0px rgba(50, 50, 50, 0.5);
    box-shadow:         1px 1px 3px 0px rgba(50, 50, 50, 0.5);
}
.program-list li a {
    display: block;
    width: 100%;
    height: 80px;
    padding: 15px;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.program-list li img {
    position: relative;
    max-width: 100%;
    width: auto;
    height: auto;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.program-list li:nth-child(3n) {
    margin-right: 0;
}

.program-list2 li {
    display: block;
    float: left;
    width: 32.66%;
    height: 80px;
    margin-right: 1%;
    margin-bottom: 1%;
    background: #fff;
    border: 1px solid #ccc;
}
.program-list2 li:hover {
    -webkit-box-shadow: 1px 1px 3px 0px rgba(50, 50, 50, 0.5);
    -moz-box-shadow:    1px 1px 3px 0px rgba(50, 50, 50, 0.5);
    box-shadow:         1px 1px 3px 0px rgba(50, 50, 50, 0.5);
}
.program-list2 li a {
    display: block;
    width: 100%;
    height: 80px;
    padding: 15px;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.program-list2 li img {
    position: relative;
    max-width: 100%;
    width: auto;
    height: auto;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.program-list2 li:nth-child(3n) {
    margin-right: 0;
}

#tooltip.show {
    display: block;
}
#tooltip {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    background: #fff;
    border: 1px solid #ccc;
    padding: 15px;
    width: 200px;
    background: #fff;
    z-index: 100;
}
#tooltip .img-prog {
    margin-bottom: 8px;
}
#tooltip .img-prog img {
    max-width: 100%;
    width: auto;
    height: auto;
    text-align: center;
}
#tooltip h2 {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}
#tooltip .tooltip-content {
    font-size: 12px;
    line-height: 1.2;
}
a.box-wrapper h2 small{
    font-size:0.6em;
}
/* faq */
.faq-container {
    background: rgba(255,255,255,0.9);
    padding-left: 60px;
    padding-right: 60px;
}
#faq-list > li {
    border-bottom: 1px solid #7a8081;
}
.faq-container header {
    text-align: left;
    padding: 12px 0;
    font-size: 20px;
    cursor: pointer;
}
.faq-container header.blue {
    color: #02a6c2;
}
.faq-padding {
    padding-top: 16px;
    padding-bottom: 16px;
}
.faq-container li {
    display: block;
}
.sub-content {
    max-height: 0;
    overflow: hidden;
}
.sub-content p, .sub-content span {
    font-weight: 400;
    text-align: left;
}
.sub-content.show {
    max-height: 2000px;
}
/* ==========================================================================
   Responsive styles
   ========================================================================== */
@media screen and (max-width: 1400px) {
    .slick-prev {
        left: 10px;
    }
    .slick-next {
        right: 10px;
    }
}
@media screen and (max-width: 1010px) {
    #box-four li {
        width: 48.25%;
        margin-bottom: 120px;
    }
    #box-four li:nth-child(3n) {
        margin-right: 0;
    }
}
@media screen and (max-width: 1000px) {
    /*.box-offer ul li {
        width: 50%;
        border-bottom: 1px solid #cccccc;
        border-left: 0;
        border-right: 0;
    }
    .box-offer ul li:first-child {
        border-left: 0;
    }
    .box-offer ul {
        border-bottom: 0;
        border-left: 1px solid #cccccc;
        border-right: 1px solid #cccccc;
    }
    .box-offer ul li:nth-child(odd){
        border-right: 1px solid #cccccc;
    }*/
    .box-offer ul li h3 {
        font-size: 20px;
        text-align: center;
    }
    .box-offer .icon {
        width: 45px;
        height: 45px;
        margin-right: -23px;
        right: 50%;
        background-size: 100%;
    }
    .box-offer ul li a {
        /* min-height: 155px; */
        padding-top: 30px;
        padding: 30px 30px 80px;
    }
    .box-offer ul li a img {
        max-width: 100%;
    }
    .box-offer ul {
        border: 0;
    }
    .box-offer ul li {
        width: calc(25% - 2px);
        border: 1px solid #cccccc;
        margin: 0 1px;
    }
    .form-container {
        margin-left: 0;
    }
    .login-info {
        width: 100%;
        padding-left: 2rem;
    }
    .login-bg h2, .login-bg h3 {
        text-align: center;
    }
    #login-top {
        padding: 35px;
    }
    .login-wrapper {
        margin: 35px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .form-container {
        margin-bottom: 0;
    }
    .box-offer .align-right {
        display: none;
    }
}
@media screen and (max-width: 980px) {
    .services {
        max-width: 80%;
        margin-bottom: 30px;
    }
    .table {
        width: 100%;
    }
    .service-order {
        max-width: 100%;
    }
}
@media screen and (max-width: 960px) {
    .slick-prev{
        display:none !important;
    }
    .slick-next{
        display:none !important;
    }
    .col-3 {
        width: 100%;
        margin-bottom: 30px;
        border-right: 0;
    }
    .col-4 {
        width: 100%;
        padding-left: 0;
    }
    .col-left {
        width: 100%;
        margin-bottom: 30px;
        padding-left: 0;
    }
    .col-right {
        width: 100%;
    }
    #cirlces:before,
    #cirlces:after {
        content: " ";
        display: table;
    }
    #cirlces:after {
        clear: both;
    }
    #cirlces li {
        float: left;
        margin-right: 15px;
    }
    .phone2 .box-info {
        width: 100%;
        margin: 0;
    }
    .phone2 .col-left {
        padding-right: 0;
    }

}
@media screen and (max-width: 915px) {
    #box-three > li {
        width: 100%;
        margin-bottom: 30px;
        margin-right: 0;
    }
    .padding-activation #box-three > li {
        margin-bottom: 115px;
    }
    #news-list {
        border: 1px solid #ccc;
    }
    #news-list li {
        width: 100%;
        height: auto !important;
        border-left: 0;
        border-right: 0;
        border-bottom: 0;
        border-top: 1px solid #ccc;
    }
    #news-list li:first-child {
        border-left: 0;
        border-right: 0;
        border-top: 0;
    }
}
@media screen and (max-width: 820px) {
    #top-nav {
        width: 100%;
        margin-top: 30px;
    }
    #footer-nav {
        margin-bottom: 12px;
    }
    #footer-nav li{
        width: 100%;
    }
    #copyright {
        width: 100%;
        text-align: left;
        margin-top: 30px;
    }
    #menu-mobile {
        display: block;
        margin-bottom: 1em;
    }
    .wrapper {
        padding-right: 58px;
        padding-left: 58px;
    }
    #top {
        display: none;
    }
    #top-mobile {
        display: block;
    }
}
@media screen and (max-width: 790px) {
    .slick-slide[data-slick-index="1"] h3 {
        font-size: 22px;
        right: 40px;
    }
    #login-top {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}
@media screen and (max-width: 720px) {
    .tab li {
        width: 100%;
        margin: 0 !important;
    }
    #triangle-bottomleft, #triangle-bottomright {
        display: none;
    }
}

@media screen and (max-width: 1200px) {
    .wrapper {
        max-width: 1000px;
    }
}
@media screen and (min-width: 768px) {
    .login-bg {
        background-attachment: fixed;
    }
}

@media screen and (max-width: 760px) {
    .ggu-bot-snapped-launcher .ggu-widget-launcher a {
        display: none !important;
    }
    #left-nav {
        position: relative;
        width: 100%;
    }
    #left-nav ul li.parent ul {
        position: absolute;
        max-height: 0;
        margin-left: -1px;
        background: #fdfdfd;
        left: 0;
        top: 59px;
        overflow: hidden;
        z-index: 1;
        -webkit-box-shadow: inset 0px 0px 0px 1px rgba(5,165,206,1);
        -moz-box-shadow: inset 0px 0px 0px 1px rgba(5,165,206,1);
        box-shadow: inset 0px 0px 0px 1px rgba(5,165,206,1);
    }
    #left-nav ul li.parent ul.open {
        max-height: 800px;
    }
    #left-nav li.parent li {
        float: none;
    }
    #left-nav li.parent li a {
        padding: 0 28px;
    }
    #left-nav ul li a.active {
        background: transparent;
    }
    #left-nav li.parent li {
        border: 0;
    }
    #left-nav li.parent li a span {
        color: #05a5ce;
        border-bottom: 1px solid #05a5ce;
    }
    #left-nav li.parent li:last-child a span {
        border-bottom: 0;
    }
    #left-nav ul li {
        float: left;
        border:1px solid #797e81;
        margin-left: -1px;
    }
    #left-nav ul li.parent.active > a > span {
        border-bottom: 1px solid #7a8081;
    }
    #left-nav ul li.parent:last-child > a > span {
        border-bottom: 0;
    }
    #left-nav ul li.parent.active > a > span, #left-nav ul li a span {
        border-bottom: 0;
    }
    #left-nav {
        border: 0;
    }
    #left-nav ul li.active {
        background: #05a5ce;
        border :1px solid #05a5ce;
    }
    #left-nav ul {
        display: inline-block;
    }
    #left-nav ul li.active span {
        color: #fff;
    }
    .text-content {
        width: 100%;
        margin-top: 30px;
        padding-left: 0;
    }
    #clickFbSlider {
        display: none;
    }
    .ic-right {
        display: none;
    }
    .col-1 {
        width: 100%;
        padding: 0;
        border-right: 0;
        margin-bottom: 30px;
    }
    .col-2 {
        width: 100%;
        padding: 0;
    }
}
@media screen and (max-width: 715px) {
    .box-offer .icon {
        display: none;
    }
    .wrapper {
        padding-left: 30px;
        padding-right: 30px;
    }
    .box-offer ul li {
        width: 50%;
        margin-left: 0;
        margin-right: 0;
        min-height: auto;
    }
    .box-offer ul li a {
        padding: 19px 5px;
    }
    .box-offer ul li h3 {
        text-align: center;
        font-size: 16px;
    }
    #slick .slick-slide {
        height: 320px;
    }
}
@media screen and (max-width: 700px) {
    .form-container {
        float: none;
        width: 100%;
        margin: 0 auto !important;
    }
}
@media screen and (max-width: 650px) {
    #box-offer-bg li {
        width: 100%;
        margin-bottom: 30px;
    }
    #box-offer-bg li:first-child {
        margin-right: 0;
    }
    #box-offer-bg.offer-3 li:last-child {
        margin-left: 0;
    }
    #box-offer-bg li .box-wrapper {
        width: 100%;
    }
    .slick-slide[data-slick-index="2"] .input-wrapper {
        margin-top: 16px;
    }
    #slick .slick-slide_szukaj .input-wrapper {
        margin-top: 16px;
    }
}
@media screen and (max-width: 615px) {
    #left-nav ul li span {
        font-size: 11px !important;
    }
    #left-nav ul li.parent ul {
        top: 48px;
    }
}
@media screen and (max-width: 620px) {
    .param {
        position: relative;
        width: 100%;
        margin-bottom: 30px;
    }
    .box-info {
        width: 100%;
    }
}
@media screen and (max-width: 600px) {
    .slide2-ic1, .slide2-ic2, .slide2-ic3 {
        display: none;
    }
    .box-biznes-row li:last-child {
        margin-left: 0;
    }
    .box-biznes-row li {
        width: 100%;
        margin-bottom: 9px;
    }
    .box-biznes-row {
        margin-bottom: 0;
    }
    .box-biznes-row li a {
        width: 100%;
    }
    .box-biznes-row {
        width: 100%;
    }
}
@media screen and (max-width: 590px) {
    .slick-slide[data-slick-index="1"] h3 {
        right: auto;
        left: 10%;
    }
    .slick-slide[data-slick-index="2"] form {
        width: 100%;
    }
    .slick-slide[data-slick-index="1"] h2 {
        text-align: left;
    }
    .slick-slide[data-slick-index="2"] form input {
        margin: 0 0 10px 0;
        width: 100%;
    }
    .slick-arrow {
        display: none !important;
    }
    .result-range {
        width: 100%;
    }
    #slick .slick-slide_szukaj form {
        width: 100%;
    }
}
@media screen and (max-width: 570px) {
    .popup-content {
        width: 100%;
    }
    #box-four li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 120px;
    }
    #box-four li:nth-child(3n) {
        margin-right: 0;
    }
}
@media screen and (max-width: 570px) {
    .bottom-nav-cont ul {
        width: 100%;
        border-top:1px solid #fff;
        margin-top: 0;
        padding-top: 7px;
    }
}
@media screen and (max-width: 550px) {
    .login-wrapper {
        margin: 0;
    }
    .login-bg h2 {
        font-size: 35px;
    }
    .login-bg h3 {
        font-size: 25px;
    }
    img {
        width: 100%;
    }
    .tvmore-page .col-main {
        padding-left: 0;
        padding-right: 0;
    }
}
@media screen and (max-width: 530px) {
    /*.box-offer ul li {
        width: 100%;
    }
    .box-offer ul li:nth-child(odd){
        border-right: 0;
    }*/
}
@media screen and (max-width: 480px) {
    .form-popup .input-wrapper {
        width: 100%;
    }
    .form-popup .input-wrapper:nth-child(2n) {
        margin-left: 0;
    }
    .login-bg h2 {
        font-size: 30px;
    }
    .login-bg h3 {
        font-size: 20px;
    }
    .login-info ul li {
        font-size: 20px;
    }
    .form-container {
        min-width: 100%;
        max-height: 400px;
        padding: 5px;
    }
}
@media screen and (max-width: 490px) {
    .col-main {
        padding-left: 0;
        padding-right: 0;
    }
    #login-nav {
        margin-top: 30px;
    }
    #footer-nav li {
        margin-bottom: 0;
    }
}
@media screen and (max-width: 420px) {
    .bottom-nav-cont ul li {
        width: 100%;
        border-left: 0;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .bottom-nav-cont ul li a {
        font-size: 18px;
    }
    #user {
        height: 45px;
    }
    #home {
        height: 45px;
    }
    #phone-number {
        width: 100%;
        font-size: 22px;
    }
    .top-nav-cont .option {
        width: 100%;
        margin-top: 8px;
    }
    .top-nav-cont .option li {
        width: 50%;
        height: 45px;
    }
    .top-nav-cont .option li a {
        font-size: 18px;
        line-height: 45px;
    }
    #login-nav li {
        height: 45px;
    }
    #login-nav li a {
        font-size: 18px;
        line-height: 45px;
    }
    #login-nav .home-link a {
        height: 45px;
        line-height: 45px;
    }
    #login-nav .home-link {
        padding: 0 10px;
    }
    #left-nav ul li a {
        padding: 0 10px;
    }
    .text-content p {
        font-size: 14px;
    }
}
@media screen and (max-width: 410px) {
    .login-bg h2 {
        font-size: 25px;
    }
    #login-nav li {
        padding: 0 10px;
    }
}
@media screen and (max-width: 400px) {
    .slick-slide[data-slick-index="2"] form h3, #slick .slick-slide_szukaj form h3 {
        font-size: 24px;
    }
}
@media screen and (max-width: 390px) {
    .add-btn {
        display: none;
    }
    .services {
        max-width: 100%;
    }
}
@media screen and (max-width: 370px) {
    #footer-nav li {
        width: 100%;
        margin-top: 15px;
    }
    .form-container form .btn {
        max-width: 100%;
    }
    #login-nav li {
        padding: 0 5px;
    }
    .wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.slick-slide_szukaj form {
    display: block;
    float: right;
    width: 50%;
    padding-top: 50px;
    text-align: left;
}
.slick-slide_szukaj form h3 {
    font-size: 24px;
    font-weight: lighter;
}

.slick-slide_szukaj .input-wrapper {
    position: absolute;
    max-width: 470px;
    width: 100%;
    right: 10px;
    top: 110px;
    margin-top: 30px;
}

.slick-slide_szukaj form h3 strong {
    font-weight: bold;
}

.slick-slide_szukaj h3  {
    color: #000;
    font-size: 24px;
    font-weight: normal;
}

.slick-slide_szukaj strong  {
    color: #660d83;

}

.slick-slide_szukaj form input {
    display: block;
    float: left;
    height: 34px;
    width: 48%;
    background: #fff;
    border: 0;
    font-size: 20px;
    font-weight: lighter;
    font-style: italic;
}
.slick-slide_szukaj form input:first-child {
    margin-right:2%;
}
.slick-slide_szukaj form .submit {
    display: inline-block;
    margin-top: 12px;
    border: 0;
    background: transparent;
    font-family: Calibri, sans-serif;
    font-size: 18px;
    font-weight: lighter;
    color: #54afc6;
    cursor: pointer;
}
#errorShow{
    display:none;
}
#map{
    width:100%;
    min-height:400px;
    height:auto;
}
#searchMarker input[type="text"]{
    width: 90%;
    height: 34px;
    border: 0;
    padding: 0 10px;
    font-family: "Calibri";
    font-size: 14px;
}
#searchMarker{
    position: absolute;
    max-width: 300px;
    width: 100%;
    z-index: 99999;
    background: url('../img/pattern.jpg');
    padding:10px;
}

#facebook_box #clickFbSlider{
    position: absolute;
    top: 0;
    left: -71px;
}
.hiddenBox{
    right:-340px !important;
}
#facebook_box{
    position:fixed;
    right:2px;
    top:299px;
    z-index:100;
    width:340px;
}

.validateError{
    border: 1px solid red !important;
    color: red !important;
}
.img_back_return_icon{
    width: 36px;
    display: block;
    float: right;
}
.info-ic:hover:after{
    background: #54AFC6;
    border-radius: 5px;
    bottom: 26px;
    color: #fff;
    content: attr(title);
    left: 20%;
    padding: 5px 15px;
    position: absolute;
    z-index: 98;
    width: 220px;
}

.img-responsive{   display: block;max-width: 100%;height: auto;}

#right-side, #left-side {
    position: absolute;
    display: block;
    width: 50%;
    height: 390px;
    top: 0;
}
#left-side {
    float: left;
    left: 0;
}
#right-side {
    float: right;
    right: 0;
}

.regulations  {
    text-align: justify;
}

.regulations h1, .regulations h2 {
    padding: 20px 0px 0px 0px;
}

.regulations ul, .regulations ol  {
    padding: 20px 0px 10px 20px;
}

.regulations li  {
    padding: 5px 0px 0px 0px;
}


