/*

    font-family: 'Montserrat', sans-serif;

*/

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
	font-display: auto;
    color: #5d5d5d;
    background: #fff;
    overflow-x: hidden;
    background-image: url(../img/bg-footer.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% auto;
    min-height: 100vh;
}

@media(max-width:991px) {
    body {
        background-size: 1900px auto;
        font-size: 0.875rem;
    }
}

a {
    color: #ec1e79;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}

a:hover {
    color: #6d0063;
    text-decoration: underline;
}

p {
    line-height: 1.875rem;
}

/* WRAPPER */
#wrapper {
    position: relative;
    overflow: hidden;
}
#wrapper .bg-top-home {
    position: absolute;
    top: 35vh;
    right: 0;
    z-index: -1; 
}
#wrapper .bg-top-subpage {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: -1; 
}

@media(max-width:1199px) {
    #wrapper .bg-top-home {
        right: -50%;
    }
}
@media(max-width:992px) {
    #wrapper .bg-top-subpage {
        width: 200%;
        height: auto;
        left: -50%
    }
}
@media(max-width:575px) {
    #wrapper .bg-top-home {
        right: auto;
        left: -80%;
        top: 0;
    }
    #wrapper .bg-top-subpage {
        width: 400%;
        height: auto;
        left: -50%
    }
}

/* CUSTOM LINK */

.custom-link {
    color: #000;
    display: inline-block;
    position: relative;
}
.custom-link:before {
    content: "";
    position: absolute;
    bottom: -5px;
    width: 50%;
    height: 3px;
    background: #6d0063;
    background: -moz-linear-gradient(left,  #6d0063 0%, #ed1e79 100%);
    background: -webkit-linear-gradient(left,  #6d0063 0%,#ed1e79 100%);
    background: linear-gradient(to right,  #6d0063 0%,#ed1e79 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6d0063', endColorstr='#ed1e79',GradientType=1 );
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}
.custom-link:hover {
    color: #000;
    text-decoration: none;
}
.custom-link:hover:before {
    width: 100%;
}

.custom-link.white,
.custom-link.white:hover {
    color: #fff;
}

/* CUSTOM LIST */
.custom-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.custom-list li {
    position: relative;
    padding-left: 25px;
}
.custom-list li:before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background: #ed1e79;
    position: absolute;
    left: 0;
    top: 9px;
}

/* LIST COLUMNS */
ul.list-columns {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
}
@media(max-width:1199px) {
    ul.list-columns {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
    }
}
@media(max-width:991px) {
    ul.list-columns {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
    }
}



.btn {
    font-family: 'Montserrat', sans-serif;
	font-display: auto;
    font-weight: 500;
    padding: 0;
    font-size: 0.875rem;
    border-radius: 40px;
    border: 0;
    white-space: normal;
}
.btn span {
    position: relative;
    z-index: 1;
    display: block;
    padding: 12px 40px;
    border-radius: 40px;
}
.btn:before,
.btn:after {
    content: "";
    background: #ec1e79;
    background: -moz-linear-gradient(45deg,  #ec1e79 14%, #6d0063 100%);
    background: -webkit-linear-gradient(45deg,  #ec1e79 14%,#6d0063 100%);
    background: linear-gradient(45deg,  #ec1e79 14%,#6d0063 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ec1e79', endColorstr='#6d0063',GradientType=1 );
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 40px;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}
.btn:after {
    opacity: 0;
    background: #6d0063;
    background: -moz-linear-gradient(45deg,  #6d0063 0%, #ec1e79 86%);
    background: -webkit-linear-gradient(45deg,  #6d0063 0%,#ec1e79 86%);
    background: linear-gradient(45deg,  #6d0063 0%,#ec1e79 86%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6d0063', endColorstr='#ec1e79',GradientType=1 );
}
.btn:hover:before {
    opacity: 0;
}
.btn:hover:after {
    opacity: 1;
}

.btn-primary,
.btn-primary:hover {
    position: relative;
    color: #000;
    background: none;
    border: 0;
}
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.disabled,
.btn-primary:disabled,
.btn-primary:not([disabled]):not(.disabled):active,
.btn-primary:not([disabled]):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
    color: #000;
    background: none;
    border: 0 !important;
    box-shadow: none !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
    opacity: .5;
}
.btn-primary span {
    background: #fff;
}

.btn-secondary,
.btn-secondary:hover {
    position: relative;
    color: #fff;
    background: none;
    border: 0;
}
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.disabled,
.btn-secondary:disabled,
.btn-secondary:not([disabled]):not(.disabled):active,
.btn-secondary:not([disabled]):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle {
    color: #fff;
    background: none;
    border: 0 !important;
    box-shadow: none !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
    opacity: .5;
}
.btn-secondary span {
    background: #212A30;
}

/* button */
.button {
    font-family: 'Montserrat', sans-serif;
	font-display: auto;
    font-weight: 500;
    padding: 12px 40px;
    border-radius: 40px;
    font-size: 0.875rem;
    border: 2px solid #ec1e79;
    white-space: normal;
    color: #000;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  line-height: 1.5;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media screen and (prefers-reduced-motion: reduce) {
  .button {
    transition: none;
  }
}
.button:hover {
  color: #000;
    border-color: #6d0063;
  text-decoration: none;
}
.button:focus, .button.focus {
  outline: 0;
  box-shadow: none;
}
.button.disabled, .button:disabled {
  opacity: 0.65;
}
.button:not(:disabled):not(.disabled) {
  cursor: pointer;
}
.button:focus, .button.focus {
  box-shadow: none;
}

/* Forms */
label {
    color: #000;
    font-size: 0.875rem;
    font-weight: 600;
    display: block;
}
label span {
    text-transform: none;
}
.text-checkbox {
    text-transform: none;
    font-size: 0.75rem;
    font-weight: 300;
}
.form-group {
    margin-bottom: 25px;
}
.form-control {
    position: relative;
    font-family: 'Montserrat', sans-serif;
	font-display: auto;
    font-size: 0.875rem;
    font-weight: 400;
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 10px 15px;
    background: none;
    color: #333;
    border: 0;
    border-bottom: 1px solid #e8edef;
    border-radius: 0;
}
.form-control:focus {
    border-color: #ff7fbd;
    background: none;
    outline: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
}
.form-control::-moz-placeholder {
    color: #999;
    font-size: 0.875rem;
    font-weight: 300;
}
.form-control:-ms-input-placeholder {
    color: #999;
    font-size: 0.875rem;
    font-weight: 300;
}
.form-control::-webkit-input-placeholder {
    color: #999;
    font-size: 0.875rem;
    font-weight: 300;
}
button,
input[type="submit"] {
    cursor: pointer;
}


h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: 'Montserrat', sans-serif;
	font-display: auto;
    color: #000;
    font-weight: 700;
}

h1, .h1 {
  font-size: 3.3rem;
}

h2, .h2 {
  font-size: 3rem;
}

h3, .h3 {
  font-size: 2.3rem;
}

h4, .h4 {
  font-size: 2rem;
}

h5, .h5 {
  font-size: 1.6rem;
}

h6, .h6 {
  font-size: 1.3rem;
}

@media(max-width:1899px) {
    h1, .h1 {
      font-size: 2.5rem;
    }

    h2, .h2 {
      font-size: 2.25rem;
    }

    h3, .h3 {
      font-size: 1.75rem;
    }

    h4, .h4 {
      font-size: 1.5rem;
    }

    h5, .h5 {
      font-size: 1.25rem;
    }

    h6, .h6 {
      font-size: 1rem;
    }
}

@media(max-width:767px) {
    h1, .h1 {
      font-size: 2rem;
    }

    h2, .h2 {
      font-size: 1.75rem;
    }

    h3, .h3 {
      font-size: 1.5rem;
    }

    h4, .h4 {
      font-size: 1.25rem;
    }

    h5, .h5 {
      font-size: 1rem;
    }

    h6, .h6 {
      font-size: 0.875rem;
    }
}

/* HEADING */
.heading-page {
    position: relative;
    padding: 0 0 35px;
    margin: 0 0 40px;
}
.heading-page:before {
    content: "";
    width: 60px;
    height: 10px;
    background: #6d0063;
    background: -moz-linear-gradient(left,  #6d0063 0%, #ed1e79 100%);
    background: -webkit-linear-gradient(left,  #6d0063 0%,#ed1e79 100%);
    background: linear-gradient(to right,  #6d0063 0%,#ed1e79 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6d0063', endColorstr='#ed1e79',GradientType=1 );
    position: absolute;
    bottom: 0;
    left: 0;
}
.heading-page h2 {
    font-size: 2.25rem;
    margin: 0;
    color: #000;
}
.heading-page p {
    font-weight: 700;
    color: #000;
    margin: 10px 0 0;
}

.heading-page.center {
    text-align: center;
}
.heading-page.center:before {
    left: 50%;
    transform: translateX(-50%);
}

@media(max-width:1899px) {
    .heading-page:before {
        width: 40px;
        height: 5px;
    }
}

/*@media(max-width:991px) {
    .heading-page h2 {
        font-size: 1.5rem;
    }
}*/

/* HEADING */
.heading {
    position: relative;
    padding: 0 0 35px;
    margin: 0 0 40px;
}
.heading.center {
    text-align: center;
}
.heading:before {
    content: "";
    width: 60px;
    height: 10px;
    background: #6d0063;
    background: -moz-linear-gradient(left,  #6d0063 0%, #ed1e79 100%);
    background: -webkit-linear-gradient(left,  #6d0063 0%,#ed1e79 100%);
    background: linear-gradient(to right,  #6d0063 0%,#ed1e79 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6d0063', endColorstr='#ed1e79',GradientType=1 );
    position: absolute;
    bottom: 0;
    left: 0;
}
.heading.center:before {
    left: 50%;
    transform: translateX(-50%);
}
.heading h2 {
    font-size: 2.25rem;
    margin: 0;
    color: #000;
}
.heading h3 {
    font-size: 1.75rem;
    margin: 0;
    color: #000;
}
.heading.white h2,
.heading.white h3 {
    color: #fff;
}
@media(max-width:1899px) {
    .heading:before {
        width: 40px;
        height: 5px;
    }
}

/* TOP */
.top {
    position: relative;
    font-size: 1rem;
    z-index: 11;
}

.top .phone a {
    position: relative;
    display: block;
    font-size: 0.875rem;
    color: #000;
    padding: 0 0 0 45px;
    margin-right: 30px;
}
.top .phone a:hover {
    text-decoration: none;
    color: #ec1e79;
}
.top .phone a img {
    margin-right: 5px;
}

.top .wycena a {
    display: block;
    font-size: 0.875rem;
    color: #fff;
    background: #1b2429;
    padding: 15px 40px;
    text-transform: uppercase;
}
.top .wycena a:hover {
    text-decoration: none;
    background: #e7217a;
    
}

@media(max-width:575px) {
    .top .phone a {
        font-size: 0.75rem;
        margin: 0;
        padding: 0;
    }
    .top .wycena a {
        font-size: 0.75rem;
        padding: 10px;
    }
}

.logo {
    display: inline-block;
    position: relative;
}
.logo img {
    display: block;
    max-width: 200px;
    width: auto;
    height: auto;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}

/* TOP CLONED */
.top.menuPrimary.cloned {
    background: #fff;
    padding: 10px 0;
    -webkit-box-shadow: 0 0 30px 0 rgba(0,0,0,.05);
    box-shadow: 0 0 30px 0 rgba(0,0,0,.05);
}
.top.menuPrimary.cloned .top-panel {
    display: none;
}

.top.menuPrimary.cloned .navbar {
    margin-bottom: 0;
}
.top.menuPrimary.cloned .navbar-collapse {
    top: 70px;
}

.top.menuPrimary.cloned .logo img {
    max-height: 60px;
}

/* MENU */
.menu-container {
    margin: 0;
    padding: 0;
    text-align: right;
}

/* NAV */
.navbar {
    border: 0;
    background: none;
    font-family: 'Montserrat', sans-serif;
	font-display: auto;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0;
    z-index: 9999;
}

.navbar-toggler {
    position: relative;
    border: 0;
    border-radius: 0;
    padding-right: 1rem;
}
.navbar-toggler:focus,
.navbar-toggler:active {
    outline: 0;
}
.navbar-toggler span {
    display: block;
    background-color: #000;
    height: 2px;
    width: 25px;
    margin-top: 6px;
    margin-bottom: 6px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    position: relative;
    left: 0;
    opacity: 1;
}
.navbar-toggler span:nth-child(1),
.navbar-toggler span:nth-child(3) {
    -webkit-transition: transform .35s ease-in-out;
    -moz-transition: transform .35s ease-in-out;
    -o-transition: transform .35s ease-in-out;
    transition: transform .35s ease-in-out;
}
.navbar-toggler:not(.collapsed) span:nth-child(1) {
    position: absolute;
    left: 12px;
    top: 10px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    opacity: 0.9;
}
.navbar-toggler:not(.collapsed) span:nth-child(2) {
    height: 12px;
    visibility: hidden;
    background-color: transparent;
}
.navbar-toggler:not(.collapsed) span:nth-child(3) {
    position: absolute;
    left: 12px;
    top: 10px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
    opacity: 0.9;
}

.navbar .navbar-brand {
    padding: 0;
    margin: 0;
}
.navbar .navbar-brand img {
    max-height: 60px;
    margin: 0;
}

.navbar .navbar-nav {}

.navbar .navbar-nav .nav-item {
    padding: 0;
    position: relative;
}
.navbar .navbar-nav .nav-item > a {
    color: #000;
    position: relative;
    display: block;
    height: 100%;
    vertical-align: middle;
    padding: 5px 10px;
    margin: 0 15px;
    text-align: left;
    border: 0;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}
.navbar .navbar-nav .nav-item > a:before {
    content: "";
    position: absolute;
    bottom: -3px;
    width: 0;
    height: 3px;
    background: #6d0063;
    background: -moz-linear-gradient(left,  #6d0063 0%, #ed1e79 100%);
    background: -webkit-linear-gradient(left,  #6d0063 0%,#ed1e79 100%);
    background: linear-gradient(to right,  #6d0063 0%,#ed1e79 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6d0063', endColorstr='#ed1e79',GradientType=1 );
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
    opacity: 0;
}

.navbar .navbar-nav .nav-item.active > a,
.navbar .navbar-nav .nav-item > a:hover,
.navbar .navbar-nav .nav-item.active > a:hover,
.navbar .navbar-nav .nav-item.show > a {
    color: #000;
    text-decoration: none;
}
.navbar .navbar-nav .nav-item > a.active:before,
.navbar .navbar-nav .nav-item.active > a:before/*,
.navbar .navbar-nav .nav-item.current_page_parent > a:before*/ {
    width: 50%;
    opacity: 1;
}

.navbar .navbar-nav .nav-item > a:hover:before {
    opacity: 1;
    width: 50%;
}



@media(min-width: 992px) {
    .dropdown-menu {
        margin-top: 0;
        /*margin-left: 25px;*/
        padding: 10px;
        -webkit-box-shadow: -15px 15px 24px 0 rgba(0, 0, 0, .05);
        box-shadow: -15px 15px 24px 0 rgba(0, 0, 0, .05);
    }
    .dropdown-menu:before {
        content: "";
        width: 100%;
        height: 3px;
        background: #6d0063;
        background: -moz-linear-gradient(left,  #6d0063 0%, #ed1e79 100%);
        background: -webkit-linear-gradient(left,  #6d0063 0%,#ed1e79 100%);
        background: linear-gradient(to right,  #6d0063 0%,#ed1e79 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6d0063', endColorstr='#ed1e79',GradientType=1 );
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
    }
}

.dropdown-menu {
    border-radius: 0;
    border: 0;
    min-width: 140px;
}

.dropdown-menu .dropdown-item {
    padding: 5px 15px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: none;
    margin: 0 !important;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active,
.dropdown-menu .dropdown-item:focus {
    background: #fff;
    color: #ec1e79;
}

/* ANIMATE DROPDOWN MENU */
@media (min-width: 992px) {
  .animate {
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
  }
}

@keyframes slideIn {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
  100% {
    transform:translateY(0rem);
    opacity: 1;
  }
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
}

@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: transform;
    -webkit-opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 1;
  }
  0% {
    -webkit-transform: translateY(1rem);
    -webkit-opacity: 0;
  }
}

.slideIn {
  -webkit-animation-name: slideIn;
  animation-name: slideIn;
}

@media(min-width:992px) and (max-width:1199px) {
    .navbar .navbar-nav .nav-item a {
        margin: 0 5px;
    }
}
@media(min-width:992px) {
    .navbar .navbar-nav .nav-item:last-child a {
        margin-right: 0;
    }
}
@media(max-width:991px) {
    .navbar {
        margin-bottom: 20px;
    }
    .navbar .navbar-nav .nav-item {
        text-align: left;
    }
    .navbar .navbar-nav .nav-item a {
        height: auto;
        padding: 10px 15px;
        margin: 0;
        display: inline-block;
    }
    .navbar .navbar-nav .nav-item a:before {
        bottom: 0px;
        width: 50%;
    }
    .navbar .navbar-nav {
        background: rgba(255,255,255,1);
        padding: 20px;
        border-radius: 0;
        -webkit-box-shadow: 0 30px 30px -30px rgba(0,0,0,.05);
        box-shadow: 0 30px 30px -30px rgba(0,0,0,.05);
    }
    .navbar-collapse {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
    }
}

/* HEADER */
header {
    /*padding: 230px 0 100px;*/
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.header-home {
    height: calc(100vh - 100px);
}

header h1 {
    font-size: 2.5rem;
    letter-spacing: 2px;
}
header h1 span {
    font-size: 3.375rem;
}
header .hero-info {
    margin: 30px 0;
}
header .hero-home {}
header .hero-home img {
    min-width: 100%;
    height: auto;
}
header .hero-home .slogan {
    position: absolute;
    bottom: 90px;
    left: 120px;
}
header .hero-home .slogan h2 {
    color: #fff;
    margin: 0;
    font-size: 0.875rem;
}
header .hero-home .social {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 0;
    bottom: 80px;
}
header .hero-home .social li {
    display: inline-block;
    margin-right: 15px;
}
header .hero-home .social li a {
    display: block;
}
header .hero-home .social li a svg {
    width: 30px;
    height: 30px;
    display: block;
}
header .hero-home .social li a svg path {
    fill: #fff;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}
header .hero-home .social li a:hover svg path {
    fill: #ed1e79;
}

@media(max-width:991px) {
    header {
        padding: 60px 0;
        text-align: center;
        /*background: #f3f7f9;*/
    }
    header h1 {
        font-size: 2rem;
    }
    header h1 span {
        font-size: 2.5rem;
    }
    header .hero-info br {
        display: none;
    }
}

/* SCROLL DOWN */

.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 150px;
    width: 24px;
  transform: translateX(-50%);
}

.scroll-down .chevron {
  position: absolute;
  width: 28px;
  height: 8px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 1s ease-out infinite;
}

.scroll-down .chevron:first-child {
  animation: move 1s ease-out .5s infinite;
}

.scroll-down .chevron:nth-child(2) {
  animation: move 1s ease-out 1s infinite;
}

.scroll-down .chevron:before,
.scroll-down .chevron:after {
  content: ' ';
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #ec1e79;
}

.scroll-down .chevron:before {
  left: 0;
  transform: skew(0deg, 30deg);
}

.scroll-down .chevron:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}

@keyframes move {
  25% {
    opacity: 1;

  }
  33% {
    opacity: 1;
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}

/* HEADER SUBPAGE */
.header-subpage {
    padding: 100px 0 0;
}
@media(max-width:991px) {
    .header-subpage {
        padding: 50px 0 0;
        text-align: left;
        background: none;
    }
}

/* HOME MAIN */

/* HOME: OFERTA */
#oferta {
    position: relative;
    padding: 0 0 100px;
    /*background-image: url(../img/bg-oferta.jpg);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: cover;*/
}
#oferta .media {
    position: relative;
    margin-bottom: 60px;
    z-index: 3;
}
#oferta .media:hover {
    text-decoration: none;
}
#oferta .media:before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0;
    height: 3px;
    background: #6d0063;
    background: -moz-linear-gradient(left,  #6d0063 0%, #ed1e79 100%);
    background: -webkit-linear-gradient(left,  #6d0063 0%,#ed1e79 100%);
    background: linear-gradient(to right,  #6d0063 0%,#ed1e79 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6d0063', endColorstr='#ed1e79',GradientType=1 );
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}
#oferta .media:hover:before {
    width: 100%;
}
#oferta .media p {
    line-height: 1.5rem;
}
#oferta .media img {
    max-width: 50px;
    margin-right: 40px;
}
#oferta .media .media-body {
    font-size: 0.875rem;
    color: #5d5d5d;
}
#oferta .media .media-body h5 {
    font-size: 1.125rem;
    margin: 0 0 20px;
}
@media(max-width:991px) {
    #oferta {
        padding: 80px 0 100px;
    }
}

/* HOME: O NAS */
#onas {
    position: relative;
    padding: 0 0 100px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: #c8ccd3;
    z-index: 3;
}
#onas:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: -moz-linear-gradient(-45deg,  rgba(25,34,40,0.98) 0%, rgba(25,34,40,0.9) 100%);
    background: -webkit-linear-gradient(-45deg,  rgba(25,34,40,0.98) 0%,rgba(25,34,40,0.9) 100%);
    background: linear-gradient(135deg,  rgba(25,34,40,0.98) 0%,rgba(25,34,40,0.9) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fa192228', endColorstr='#e6192228',GradientType=1 );
}
#onas .logo-box {
    margin-top: -105px;
    margin-bottom: 90px;
}
#onas .liczba {
    font-size: 1.125rem;
    font-weight: 700;
}
#onas .liczba .numer {
    display: inline-block;
    font-size: 3rem;
    font-weight: 900;
    background: #ec1e79;
    background: -moz-linear-gradient(45deg,  #ec1e79 35%, #b756ae 56%);
    background: -webkit-linear-gradient(45deg,  #ec1e79 35%,#b756ae 56%);
    background: linear-gradient(45deg,  #ec1e79 35%,#b756ae 56%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ec1e79', endColorstr='#b756ae',GradientType=1 );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@media(max-width:991px) {
    #onas .liczby-container {
        display: flex;
        margin-top: 30px;
    }
    #onas .liczby-container .liczba {
        text-align: center;
        padding: 0 15px;
    }
}
@media(max-width:575px) {
    #onas .logo-box {
        margin-top: -50px;
        margin-bottom: 70px;
    }
    #onas .liczby-container {
        display: block;
    }
}

/* HOME: REALIZACJE */
#realizacje {
    position: relative;
    padding: 100px 0 0;
    overflow: hidden;
}
#realizacjeHome {
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
}
#realizacjeHome a {
    display: block;
}
#realizacjeHome a > img {
    /*-webkit-filter: grayscale(1);
    filter: grayscale(1);
    opacity: .7;*/
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}
#realizacjeHome a:hover > img {
    /*-webkit-filter: grayscale(0);
    filter: grayscale(0);*/
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    /*opacity: 1;*/
}
#realizacjeHome a .caption {
    width: 100%;
    height: 100%;
}
#realizacjeHome a .description {
    position: absolute;
    /*top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;*/
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: -moz-linear-gradient(-45deg,  rgba(236,30,121,0.8) 0%, rgba(236,30,121,0.8) 14%, rgba(109,0,99,0.8) 100%);
    background: -webkit-linear-gradient(-45deg,  rgba(236,30,121,0.8) 0%,rgba(236,30,121,0.8) 14%,rgba(109,0,99,0.8) 100%);
    background: linear-gradient(135deg,  rgba(236,30,121,0.8) 0%,rgba(236,30,121,0.8) 14%,rgba(109,0,99,0.8) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ccec1e79', endColorstr='#cc6d0063',GradientType=1 );

    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    padding: 15px;

    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
    opacity: 0;
}
#realizacjeHome a .description img {
    margin-top: 20px;
}
#realizacjeHome a:hover .description {
    opacity: 1;
}
#realizacjeHome a .description span {
    font-size: 0.75rem;
    display: block;
    font-weight: 400;
}
#realizacjeHome a .description div {
    margin-top: 20px;
        -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}
#realizacjeHome a:hover .description div {
    margin-top: 0;
}

@media(min-width:1199px) {
    #realizacjeHome a .description {
        font-size: 1.25rem;
        font-weight: 700;
    }
    #realizacjeHome a .description span {
        font-size: 0.875rem;
    }
}

/* HOME: OPINIE */
#opinie {
    position: relative;
    padding: 100px 0;
}
.owl-opinie {}
.owl-opinie .item {}
.owl-opinie .item .description {
    position: relative;
    color: #5d5d5d;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.875rem;
    padding: 0 60px;
}
.owl-opinie .item .description:before {
    content: url(../img/quote1.png);
    position: absolute;
    top: 0;
    left: 0;
}
.owl-opinie .item .description:after {
    content: url(../img/quote2.png);
    position: absolute;
    bottom: 0;
    right: 0;
}
.owl-opinie .item .author {
    position: relative;
    font-size: 0.875rem;
    margin-top: 50px;
}
.owl-opinie .item .author .name {
    color: #000;
    font-weight: 700;
    display: inline-block;
    position: relative;
    padding-left: 60px;
}
.owl-opinie .item .author .name:before {
    content: "";
    width: 20px;
    height: 2px;
    background: #e1e1e1;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -1px;
}
.owl-opinie .item .author .link {
    padding-left: 60px;
    margin-left: 30px;
    position: relative;
    display: inline-block;
}
.owl-opinie .item .author .link:before {
    content: "";
    width: 20px;
    height: 2px;
    background: #e1e1e1;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -1px;
}
.owl-opinie .owl-dots {
    margin-top: 30px !important;
    text-align: right;
}
.owl-opinie .owl-dots .owl-dot {
    outline: 0;
}
.owl-opinie .owl-dots .owl-dot span {
    width: 20px;
    height: 20px;
    background: #cad0d3;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}
.owl-opinie .owl-dots .owl-dot.active {}
.owl-opinie .owl-dots .owl-dot:hover span,
.owl-opinie .owl-dots .owl-dot.active span {
    background: #ed1e79;
}

@media(max-width:767px) {
    .owl-opinie .item .author .name,
    .owl-opinie .item .author .link {
        display: block;
        margin: 0;
    }
    .owl-opinie .item .author .name {
        margin-bottom: 20px;
    }
}

/* HOME: BLOG */
#blog {
    position: relative;
    padding: 100px 0;
    background: #f3f7f9;
}

#blog .btn-primary span {
    background: #f3f7f9;
}

.post {
    padding: 30px;
}
.post h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #000;
    margin: 0 0 25px;
}
.post h3 a {
    color: #000;
}
.post h3 a:hover {
    color: #000;
    text-decoration: none;
}
.post .excerpt {
    font-size: 0.875rem;
}
.post .info {
    font-size: 0.875rem;
}
.post .info .date {
    display: inline-block;
    color: #000;
    font-weight: 500;
}
.post .info .link {
    padding-left: 30px;
    margin-left: 10px;
    position: relative;
    display: inline-block;
}
.post .info .link:before {
    content: "";
    width: 20px;
    height: 2px;
    background: #e1e1e1;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -1px;
}
.post .info .link a {}

.post.first-post {
    position: relative;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.post.first-post * {
    position: relative;
    z-index: 2;
}
.post.first-post:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: -moz-linear-gradient(-45deg,  rgba(236,30,121,0.8) 0%, rgba(236,30,121,0.8) 14%, rgba(109,0,99,0.8) 100%);
    background: -webkit-linear-gradient(-45deg,  rgba(236,30,121,0.8) 0%,rgba(236,30,121,0.8) 14%,rgba(109,0,99,0.8) 100%);
    background: linear-gradient(135deg,  rgba(236,30,121,0.8) 0%,rgba(236,30,121,0.8) 14%,rgba(109,0,99,0.8) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ccec1e79', endColorstr='#cc6d0063',GradientType=1 );
}
.post.first-post h3 {
    color: #fff;
}
.post.first-post h3 a {
    color: #fff;
}
.post.first-post h3 a:hover {
    color: #fff;
    text-decoration: none;
}
.post.first-post .excerpt {
    color: #fff;
}
.post.first-post .info .date {
    color: #fff;
    opacity: .5;
}
.post.first-post .info .link a,
.post.first-post .info .link a:hover {
    color: #fff;
}
.post.first-post .info .link:before {
    background: #fff;
    opacity: .5;
}

/* HOME: KLIENCI */
#klienci {
    position: relative;
    padding: 100px 0;
}

.owl-klienci {
    margin-bottom: 40px;
}
.owl-klienci .owl-stage {
    display: flex;
    align-items: center;
}
.owl-klienci img {
    -webkit-filter: opacity(.5) grayscale(100%);
    filter: opacity(.5) grayscale(100%);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    max-height: 100px;
    width: auto !important;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}
.owl-klienci img:hover {
    -webkit-filter: opacity(1) grayscale(0);
    filter: opacity(1) grayscale(0);
}
/*.owl-klienci .center img {
    -webkit-filter: opacity(1) grayscale(0);
    filter: opacity(1) grayscale(0);
}*/

@media(max-width:991px) {
    #klienci {
        padding: 60px 0;
    }
}


/* SUBPAGE MAIN */
.subpage-main {
    position: relative;
    padding: 30px 0 100px;
}

/* SUBPAGE ONAS */
.oferta-boxy .media {
    position: relative;
    margin-bottom: 60px;
    z-index: 3;
}
.oferta-boxy .media:hover {
    text-decoration: none;
}
.oferta-boxy .media:before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0;
    height: 3px;
    background: #6d0063;
    background: -moz-linear-gradient(left,  #6d0063 0%, #ed1e79 100%);
    background: -webkit-linear-gradient(left,  #6d0063 0%,#ed1e79 100%);
    background: linear-gradient(to right,  #6d0063 0%,#ed1e79 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6d0063', endColorstr='#ed1e79',GradientType=1 );
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}
.oferta-boxy .media:hover:before {
    width: 100%;
}
.oferta-boxy .media p {
    line-height: 1.5rem;
}
.oferta-boxy .media img {
    max-width: 50px;
    margin-right: 40px;
}
.oferta-boxy .media .media-body {
    font-size: 0.875rem;
    color: #5d5d5d;
}
.oferta-boxy .media .media-body h5 {
    font-size: 1.125rem;
    margin: 0 0 20px;
}

/* SUBPAGE OFERTA */
.subpage-oferta {}

.oferta-excerpt {
    font-size: 0.875rem;
}
.oferta-excerpt .number {
    display: inline-block;
    font-size: 6rem;
    font-weight: 700;
    /*color: #ecedf0;*/
    background: #ed1e79;
    background: -moz-linear-gradient(-45deg,  #ed1e79 42%, #6d0063 74%);
    background: -webkit-linear-gradient(-45deg,  #ed1e79 42%,#6d0063 74%);
    background: linear-gradient(135deg,  #ed1e79 42%,#6d0063 74%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ed1e79', endColorstr='#6d0063',GradientType=1 );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.oferta-excerpt h3 {
    font-size: 1.5rem;
    margin: 10px 0 30px;
}

/* BLOG */

.single-img {
    position: relative;
    height: 300px;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    margin: 0 0 80px;
}
/*.single-img:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: -moz-linear-gradient(-45deg,  rgba(236,30,121,0.8) 0%, rgba(236,30,121,0.8) 14%, rgba(109,0,99,0.8) 100%);
    background: -webkit-linear-gradient(-45deg,  rgba(236,30,121,0.8) 0%,rgba(236,30,121,0.8) 14%,rgba(109,0,99,0.8) 100%);
    background: linear-gradient(135deg,  rgba(236,30,121,0.8) 0%,rgba(236,30,121,0.8) 14%,rgba(109,0,99,0.8) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ccec1e79', endColorstr='#cc6d0063',GradientType=1 );
}*/

.paginacja {
    font-size: 0.875rem;
    font-weight: 500;
    margin: 80px 0 40px;
}
.paginacja ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}
.paginacja ul li {
    display: inline-block;
    margin: 5px;
}
.paginacja ul li a,
.paginacja ul li span {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 100%;
    min-width: 40px;
    min-height: 40px;
    
}
.paginacja ul li a:hover {
    color: #ec1e79;
    text-decoration: none;
}
.paginacja ul li.active a,
.paginacja ul li.active span {
    color: #ec1e79;
    border-color: #ec1e79;
}

/* KONTAKT */
.subpage-kontakt {}

.kontakt-box {}
.kontakt-box img {
    max-width: 60px;
    height: auto;
}
.kontakt-box h5 {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 20px 0;
}
.kontakt-box p {
    margin: 0;
    font-size: 0.875rem;
}

.mapa {
    position: relative;
    margin: 50px 0 80px;
}
.mapa iframe {
    display: block;
    width: 100%;
    height: 500px;
    -webkit-filter: grayscale(100%);
       -moz-filter: grayscale(100%);
        -ms-filter: grayscale(100%);
         -o-filter: grayscale(100%);
            filter: grayscale(100%);
}
@media(max-width:991px) {
    .mapa iframe {
        height: 250px;
    }
}

/* 404 */
.subpage-error {
    padding: 200px 0 150px;
}
.subpage-error .text-effect {
    display: inline-block;
    font-size: 10rem;
    font-weight: 900;
    background: #ed1e79;
    background: -moz-linear-gradient(-45deg,  #ed1e79 42%, #6d0063 74%);
    background: -webkit-linear-gradient(-45deg,  #ed1e79 42%,#6d0063 74%);
    background: linear-gradient(135deg,  #ed1e79 42%,#6d0063 74%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ed1e79', endColorstr='#6d0063',GradientType=1 );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media(max-width:991px) {
    .subpage-error {
        padding: 30px 0;
    }
}
@media(max-width:767px) {
    .subpage-error .text-effect {
        font-size: 6rem;
    }
}

/* SUBPAGES OFERTA SINGLE */

.subpage-oferta-single {}

.jakie-sa-strony {}
.jakie-sa-strony .jss-box {
    text-align: center;
    margin: 0 0 50px;
}
.jakie-sa-strony .jss-box img {
    max-width: 80px;
    height: auto;
}
.jakie-sa-strony .jss-box h4 {
    font-size: 1.125rem;
    margin: 20px 0;
}
.jakie-sa-strony .jss-box p {
    font-size: 0.875rem;
}

.jak-przebiega-proces {
    position: relative;
    padding: 100px 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    margin: 100px 0 80px;
    color: #c8ccd3;
}
.jak-przebiega-proces .jpp-box {
    text-align: center;
}
.jak-przebiega-proces .jpp-box .liczba,
.jakie-sa-strony .jss-box .liczba {
    display: inline-block;
    font-size: 4rem;
    font-weight: 700;
    background: #ec1e79;
    background: -moz-linear-gradient(45deg,  #ec1e79 35%, #b756ae 56%);
    background: -webkit-linear-gradient(45deg,  #ec1e79 35%,#b756ae 56%);
    background: linear-gradient(45deg,  #ec1e79 35%,#b756ae 56%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ec1e79', endColorstr='#b756ae',GradientType=1 );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.jak-przebiega-proces .jpp-box h4 {
    color: #c8ccd3;
    font-size: 1.25rem;
    margin: 25px 0;
}
.jak-przebiega-proces .jpp-box p {
    font-size: 0.875rem;
}

/* KONTAKT BOX */
.contact-box {}
.contact-box .inner {
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: #fff;
    text-align: center;
    padding: 80px 15px;
    font-size: 1.125rem;
    font-weight: 700;
}
.contact-box .inner:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    /*background: -moz-linear-gradient(45deg,  rgba(109,0,99,1) 0%, rgba(237,30,121,0.7) 100%);
    background: -webkit-linear-gradient(45deg,  rgba(109,0,99,1) 0%,rgba(237,30,121,0.7) 100%);
    background: linear-gradient(45deg,  rgba(109,0,99,1) 0%,rgba(237,30,121,0.7) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6d0063', endColorstr='#b3ed1e79',GradientType=1 );*/
    background: -moz-linear-gradient(-45deg,  rgba(25,34,40,0.8) 0%, rgba(25,34,40,0.9) 100%);
background: -webkit-linear-gradient(-45deg,  rgba(25,34,40,0.8) 0%,rgba(25,34,40,0.9) 100%);
background: linear-gradient(135deg,  rgba(25,34,40,0.8) 0%,rgba(25,34,40,0.9) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc192228', endColorstr='#e6192228',GradientType=1 );



}
.contact-box .inner * {
    position: relative;
    z-index: 2;
}
/*.contact-box .inner h3 {
    color: #fff;
    font-size: 2.125rem;
}*/
.contact-box .inner hr {
    border-width: 10px;
    width: 60px;
    opacity: .25;
    border-color: #fff;
    margin-bottom: 40px;
}
.contact-box .inner a {
    color: #fff;
    text-decoration: underline;
}
.contact-box .inner a:hover {
    color: #fff;
    text-decoration: underline;
    opacity: .5;
}

.contact-box .inner .numer a {
    color: #fff;
    text-decoration: none;
    font-size: 3rem;
}
.contact-box .inner .numer a span {
    font-size: 2.25rem;
}
.contact-box .inner .numer a:hover {
    color: #fff;
    text-decoration: none;
    opacity: .5;
}

@media(max-width:767px) {
    .contact-box .inner {
        font-size: 1rem;
    }
    .contact-box .inner .numer a {
        font-size: 2rem;
    }
    .contact-box .inner .numer a span {
        font-size: 1.75rem;
    }
}

/* REALIZACJA */

.project-description {
    margin-bottom: 50px;
}
.project-description .title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #000;
    margin: 0 0 40px;
}
.project-description .info {
    font-size: 0.875rem;
    padding: 35px;
    background: #f0f4f6;
    margin-top: 50px;
}
.project-description .info dl {
    margin-bottom: 0;
}
.project-description .info dl dt {
    color: #000;
}
.project-description .info dl dd:not(:last-child) {
    margin-bottom: 20px;
}

.rodzaje-realizacji {}
.rodzaje-realizacji span:last-child {
    display: none;
}

.realizacja-items {}
.realizacja-items .item {
    position: relative;
    display: block;
    -webkit-box-shadow: 0 0 30px 0 rgba(0,0,0,.1);
            box-shadow: 0 0 30px 0 rgba(0,0,0,.1);
    margin: 0 0 40px;
    
}
.realizacja-items .item img {
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}
.realizacja-items .item:hover img {
    opacity: .5;
}
/*.realizacja-items .item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: -moz-linear-gradient(-45deg,  rgba(109,0,99,0.68) 0%, rgba(181,17,111,0.98) 56%, rgba(237,30,121,0.98) 100%);
    background: -webkit-linear-gradient(-45deg,  rgba(109,0,99,0.68) 0%,rgba(181,17,111,0.98) 56%,rgba(237,30,121,0.98) 100%);
    background: linear-gradient(135deg,  rgba(109,0,99,0.68) 0%,rgba(181,17,111,0.98) 56%,rgba(237,30,121,0.98) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ad6d0063', endColorstr='#faed1e79',GradientType=1 );
    opacity: 0;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}
.realizacja-items .item:hover:before {
    opacity: 1;
    left: 20px;
    top: 20px;
}*/
.realizacja-items .item:before {
    content: url(../img/ico-zoom.png);
    position: absolute;
    left: 50%;
    top: 50%;
    opacity: 0;
    margin: 0 0 0 -33px;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
    z-index: 2;
}
.realizacja-items .item:hover:before {
    opacity: 1;
    margin-top: -33px;
}
.realizacja-items .item img {
    width: 100%;
    height: auto;
    display: block;
}
.realizacja-items .item .title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

/* KARIERA */
#kariera-tab {
    margin-bottom: 50px;
}
#kariera-tab .nav-link {
    border-radius: 0;
    padding: 15px 40px;
    font-size: 0.875rem;
}
#kariera-tab .nav-link.active {
    background: #1b2429;
}

/* NASI KLIENCI */
.klient-logo-inner {
    padding: 0 30px 60px;
}
.klient-logo-inner a {}
.klient-logo-inner img {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}
.klient-logo-inner img:hover {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

/* OPINIE KLIENTÓW */
.opinie-klientow {
    margin-bottom: 60px;
}
.opinie-klientow hr {
    margin: 60px auto;
    border-color: #E9EDEF;
}
.opinie-klientow hr:last-child {
    display: none;
}
.opinie-klientow .item {}
.opinie-klientow .item .description {
    position: relative;
    color: #5d5d5d;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.875rem;
    padding: 0 60px;
}
.opinie-klientow .item .description:before {
    content: url(../img/quote1.png);
    position: absolute;
    top: 0;
    left: 0;
}
.opinie-klientow .item .description:after {
    content: url(../img/quote2.png);
    position: absolute;
    bottom: 0;
    right: 0;
}
.opinie-klientow .item .author {
    position: relative;
    font-size: 0.875rem;
    margin-top: 50px;
}
.opinie-klientow .item .author .name {
    color: #000;
    font-weight: 700;
    display: inline-block;
    position: relative;
    padding-left: 60px;
}
.opinie-klientow .item .author .name:before {
    content: "";
    width: 20px;
    height: 2px;
    background: #e1e1e1;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -1px;
}
.opinie-klientow .item .author .link {
    padding-left: 60px;
    margin-left: 30px;
    position: relative;
    display: inline-block;
}
.opinie-klientow .item .author .link:before {
    content: "";
    width: 20px;
    height: 2px;
    background: #e1e1e1;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -1px;
}

@media(max-width:767px) {
    .opinie-klientow .item .author .name,
    .opinie-klientow .item .author .link {
        display: block;
        margin: 0;
    }
    .opinie-klientow .item .author .name {
        margin-bottom: 20px;
    }
}

/* DARMOWA WYCENA */
.darmowa-wycena-form {}
.darmowa-wycena-form .form-group {}

@media(min-width: 1200px) {
    .darmowa-wycena-form .form-group {
        margin-bottom: 40px;
    }
}

/* FOOTER */
footer {}
footer .footer-info {
    font-size: 0.875rem;
    margin-right: 100px;
}
footer .footer-info img {
    max-width: 220px;
    margin-bottom: 25px;
}
footer h5 {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 30px;
}
footer nav {}
footer nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
footer nav ul li {
    display: block;
    position: relative;
    padding-left: 25px;
}
footer nav ul li:before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background: #ed1e79;
    position: absolute;
    left: 0;
    top: 9px;
}
footer nav ul li a {
    color: #5d5d5d;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-block;
    margin: 0 0 8px;
}
footer nav ul li a:hover {
    color: #ed1e79;
    text-decoration: none;
}
footer .social {
    list-style: none;
    margin: 0;
    padding: 0;
}
footer .social li {
    display: inline-block;
    margin-right: 20px;
}
footer .social li a {
    display: block;
}
footer .social li a svg {
    width: 40px;
    height: 40px;
    display: block;
}
footer .social li a svg path {
    fill: #5d5d5d;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}
footer .social li a:hover svg path {
    fill: #ed1e79;
}
footer .copyright {
    font-size: 0.875rem;
    margin: 80px 0;
}
footer .copyright span {
    margin: 0 20px;
}
@media(max-width:1899px) {
    footer .footer-info {
        display: none;
    }
}
@media(max-width:767px) {
    footer .copyright span {
        display: block;
        height: 0;
        opacity: 0;
    }
}
@media(max-width:575px) {
    footer .social-footer,
    footer .copyright {
        text-align: center;
        margin: 30px 0;
    }
}

/* Preloader */
#preloader {
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background: #fff;
    z-index:99999;
}
#status {
    width:64px;
    height:64px;
    position:absolute;
    left:50%;
    top:50%;
    background-image:url(../img/preloader64.gif);
    background-repeat:no-repeat;
    background-position:center;
    margin:-32px 0 0 -32px;
}

/* ADD BOOTSTRAP */
@media (min-width: 1900px) {
    .container.container-more {
        max-width: 1610px;
    }
    .container-fluid.container-fluid-more {
        max-width: 1610px;
    }
}

/* IE */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
   .row {
        min-width: 100%;
    }
    .navbar-toggler {
        position: absolute;
        right: 0;
        top: 50%;
        margin-top: -18px;
    }
    #onas .liczba .numer {
        color: #ec1e79;
        background: none;
    }
}

/* Contact Form 7 style */
/* Hide the default checkboxes inside the 'new' div that jQuery adds for us */
.cf7-style-option span.wpcf7-list-item {
    position: relative;
    margin: 0 50px 0 0;
}
.cf7-style-option label {
    font-weight: 400;
}
.cf7-style-option input[type="checkbox"],
.cf7-style-option input[type="radio"] {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
}

/* jQuery adds this span for us which we style to look like a box */
.cf7-style-option .cf7-style-check-box {
  width: 20px;
  height: 20px;
  background: #e8edef;
  display: inline-block;
  cursor: pointer;
  margin-right: 10px;
  position: relative;
  top: 3px;
    border-radius: 100%;
}

/* When someone clicks our new box, add or remove the tick which has been created using some CSS */
.cf7-style-option [type=checkbox]:checked + .cf7-style-check-box:before,
.cf7-style-option [type=radio]:checked + .cf7-style-check-box:before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    background: #e8edef;
/*  display: block;
  width: 5px;
  height: 15px;
  margin-left: 7px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);*/
  transition: 0.1s;
}
/* And change the background colour */
.cf7-style-option [type=checkbox]:checked + .cf7-style-check-box,
.cf7-style-option [type=radio]:checked + .cf7-style-check-box {
  background-color: #ec1e79;
  /*background-color: #6d0063;*/
  transition: 0.5s;
}

abbr.required {
    color: red;
    position: relative;
    z-index: 3;
}

.wpcf7-not-valid {
    border-color: red;
}

span.wpcf7-not-valid-tip {
    color: red;
    font-size: 0.75rem;
    padding: 5px 15px;
    font-weight: 500;
}

.wpcf7-response-output.wpcf7-validation-errors,
.wpcf7-response-output.wpcf7-mail-sent-ng {
    border: 0;
    background: red;
    color: #fff;
    font-size: 12px;
    padding: 10px 15px;
    margin: 0 0 40px;
    font-weight: 500;
}
.wpcf7-response-output.wpcf7-mail-sent-ok {
    border: 0;
    background: #4CBB17;
    color: #fff;
    font-size: 12px;
    padding: 10px 15px;
    margin: 0 0 40px;
    font-weight: 500;
}
.wpcf7-response-output.wpcf7-spam-blocked {
    border: 0;
    background: #FF6C27;
    color: #fff;
    font-size: 12px;
    padding: 10px 15px;
    margin: 0 0 40px;
    font-weight: 500;
}

/* FAQ */

.faq {}

#PytaniaOdpowiedzi .btn-faq[aria-expanded=false] {
    position: relative;
}
#PytaniaOdpowiedzi .btn-faq[aria-expanded=false]:before {
    content: url(../img/ico-plus.png);
    position: absolute;
    top: 18px;
    right: 25px;
    color: #318b0b;
}

#PytaniaOdpowiedzi .btn-faq[aria-expanded=true]:before {
    content: url(../img/ico-minus.png);
    position: absolute;
    top: 10px;
    right: 25px;
    color: #318b0b;
}
#PytaniaOdpowiedzi .card-header {
    padding: 0;
    border: 0;
    border-radius: 40px;
    background: #f3f7f9;
    overflow: hidden;
}
#PytaniaOdpowiedzi .card-header .btn-faq {
    text-transform: none;
    padding: 15px 60px 15px 20px;
    font-size: 1.125rem;
    font-family: 'Montserrat', sans-serif;
    color: #000;
    font-weight: 700;
    background: #f3f7f9;
    border: none;
    position: relative;
    cursor: pointer;
}
#PytaniaOdpowiedzi .card {
    border: 0;
    border-radius: 0;
    padding: 0 0 10px;
}

/* opinie google button */
.og-btn img {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}
.og-btn img:hover {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

/* STRONY MIASTO */
.mapa-miasto iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 500px;
    -webkit-filter: grayscale(100%);
       -moz-filter: grayscale(100%);
        -ms-filter: grayscale(100%);
         -o-filter: grayscale(100%);
            filter: grayscale(100%);
}
@media(max-width:991px) {
    .mapa-miasto iframe {
        height: 250px;
    }
}