<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
     .btn-custom {
background-color: #2827AE;
color: #fff;
font-size: 18px;
padding: 8px 22px;
border: 1px solid #2827AE;
display: inline-block;
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.7);
}
.btn-custom:hover {
background-color: #fff;
color: #2827AE;
text-decoration: none;
}
.btn-custom.btn-custom--light {
background-color: #fff;
color: #2827AE;
border-color: #fff;
}
.btn-custom.btn-custom--light:hover {
background-color: #2827AE;
color: #fff;
text-decoration: none;
}
.btn-custom-2 {
display: inline-block;
min-width: 300px;
color: #2827ae;
box-shadow: 10px 10px 0 0 #191e8f;
background-color: #fff;
transition: 0.3s;
font-size: 18px;
padding: 8px 22px;
border-radius: 7px;
text-align: center;
border: 1px #191e8f solid;
}
.btn-custom-2:hover {
color: white;
box-shadow: -10px -10px 0 0 white;
background-color: #2827ae;
}
.btn-custom-2--inverted {
color: white;
background-color: #2827ae;
-webkit-box-shadow: 8px 8px 10px 0px rgb(66, 68, 90);
-moz-box-shadow: 8px 8px 10px 0px rgb(66, 68, 90);
box-shadow: 8px 8px 10px 0px rgb(66, 68, 90);
}
.btn-custom-2--inverted:hover {
color: #2827ae;
background-color: white;
box-shadow: 10px 10px 0 0 #191e8f;
} .hamburger {
padding: 15px 15px 10px 15px;
display: inline-block;
cursor: pointer;
transition-property: opacity, filter;
transition-duration: 0.15s;
transition-timing-function: linear;
font: inherit;
color: inherit;
text-transform: none;
background-color: transparent;
border: 0;
margin: 0;
overflow: visible;
transition: all 150ms linear;
}
.hamburger:focus {
outline: none;
}
.hamburger-box {
width: 30px;
height: 20px;
display: inline-block;
position: relative;
}
.hamburger-inner {
display: block;
top: 50%;
margin-top: -2px;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
width: 30px;
height: 3px;
background-color: #fff;
border-radius: 0px;
position: absolute;
transition-property: transform;
transition-duration: 0.15s;
transition-timing-function: ease;
}
.hamburger-inner::before,
.hamburger-inner::after {
content: "";
display: block;
}
.hamburger-inner::before {
top: -8px;
}
.hamburger-inner::after {
bottom: -8px;
} .hamburger--squeeze .hamburger-inner {
transition-duration: 0.075s;
transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
transform: rotate(45deg);
transition-delay: 0.12s;
transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
top: 0;
opacity: 0;
transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
bottom: 0;
transform: rotate(-90deg);
transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
} .acf-block-preview .post-cta {
border-radius: 20px;
background-color: #2827AE;
padding: 15px 10px;
max-width: 50%;
text-align: center;
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.9);
}
.acf-block-preview .post-cta .post-cta-message {
margin-bottom: 20px;
padding: 0 20px;
color: white;
font-size: 20px;
}
.acf-block-preview .post-cta--left {
float: left;
margin: 0px 25px 10px 0;
}
.acf-block-preview .post-cta--right {
float: right;
margin: 0px 0px 10px 25px;
}
@media only screen and (min-width: 768px) {
h1 {
font-size: 34px;
}
h2 {
font-size: 30px;
}
h3 {
font-size: 26px;
}
p,
a {
font-size: 18px;
}
footer {
padding-bottom: 24px !important;
}
}
html {
scroll-behavior: smooth;
}
* {
font-family: "Quicksand", sans-serif;
padding: 0;
margin: 0;
}
ul,
ol {
list-style-type: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
color: #2827AE;
font-weight: 500;
margin: 0px;
line-height: 1.2;
}
h1 {
font-size: 36px;
}
h2 {
font-size: 28px;
}
h3 {
font-size: 24px;
}
p,
a,
li {
font-size: 16px;
}
a {
color: #2827AE;
}
a:hover {
text-decoration: none;
}
.loader_wrapper {
position: fixed;
top: 0;
left: 0;
height: 100%;
width: 100%;
background-color: #2827AE;
z-index: 999999;
}
.loader_wrapper .loader {
border: 10px solid rgba(243, 243, 243, 0.25);
border-radius: 50%;
border-top: 10px solid #fff;
width: 120px;
height: 120px;
-webkit-animation: spin 2s linear infinite;
animation: spin 2s linear infinite;
z-index: 999999;
position: absolute;
top: 50%;
transform: translate(0%, -50%);
left: 0;
right: 0;
margin: 0 auto;
}
@-webkit-keyframes spin {
0% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
}
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.slick-slider {
position: relative;
}
.slick-slider .slick-dots {
left: 0;
}
.slick-slider .slick-dots li button:before {
font-size: 20px;
}
.slick-slider .slick-prev {
left: 10px;
}
.slick-slider .slick-prev::before {
font-size: 20px;
color: black;
content: "◄";
}
.slick-slider .slick-next {
right: 10px;
}
.slick-slider .slick-next::before {
font-size: 20px;
color: black;
content: "►";
} header {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 9999;
transition: all 150ms linear;
background-color: transparent;
}
header .wrapper {
height: 100%;
width: 100%;
position: relative;
}
header .wrapper .section-logo {
display: none;
margin: 0 auto;
max-height: 70px;
max-width: 70px;
}
header .section-logo-mobile-wrapper {
display: inline-block;
padding: 10px 15px;
}
header .section-logo-mobile-wrapper img {
width: 130px;
}
header .lang-menu {
position: absolute;
top: 12px;
right: 75px;
text-align: center;
}
header .lang-menu li {
padding: 0px;
display: inline-block;
}
header .lang-menu li a {
font-size: 12px;
color: #fff;
text-transform: uppercase;
}
header .lang-menu li a:hover {
text-decoration: none;
}
header .lang-menu li.current a, header .lang-menu li.current-lang a {
background-color: #fff;
color: #2827AE;
padding: 6px 7px;
opacity: 1;
}
header .hamburger {
position: absolute;
top: 0;
right: 0;
}
header .hamburger.is-active {
background-color: #fff;
}
header .hamburger.is-active .hamburger-inner,
header .hamburger.is-active .hamburger-inner::before,
header .hamburger.is-active .hamburger-inner::after {
background-color: #2827AE;
}
header #main-menu-wrapper {
position: absolute;
right: 0;
top: 50px;
background-color: #fff;
padding: 10px;
text-align: right;
border-radius: 10px 0 0 10px;
opacity: 0;
transition: all 150ms linear;
display: none;
}
header #main-menu-wrapper li {
margin-top: 35px;
margin-bottom: 35px;
}
header #main-menu-wrapper li a {
color: #6762cb;
font-size: 17px;
padding: 10px 8px 10px 15px;
border-radius: 10px;
}
header #main-menu-wrapper li a:hover {
text-decoration: none;
}
header #main-menu-wrapper li a span {
width: 40px;
display: inline-block;
color: #2827AE;
font-weight: 600;
font-size: 14px;
margin-left: 0px;
position: relative;
}
header #main-menu-wrapper li a span.ico-camera:before {
content: "";
background: url(//sulmaisulma.pl/wp-content/themes/sulma/assets/img/ico_publikacje_blue.svg);
height: 25px;
width: 25px;
position: absolute;
top: -5px;
transform: translate(0%, -50%);
right: 0;
}
header #main-menu-wrapper li a span.ico-hands:before {
content: "";
background: url(//sulmaisulma.pl/wp-content/themes/sulma/assets/img/ico_cooperate_blue.svg);
height: 25px;
width: 25px;
position: absolute;
top: -5px;
transform: translate(0%, -50%);
right: 0;
}
header #main-menu-wrapper li a span.ico-envelope:before {
content: "";
background: url(//sulmaisulma.pl/wp-content/themes/sulma/assets/img/ico_letter_blue.svg);
height: 25px;
width: 25px;
position: absolute;
top: -5px;
transform: translate(0%, -50%);
right: 0;
}
header #main-menu-wrapper li a:hover, header #main-menu-wrapper li a:focus {
background-color: #2827AE;
color: #fff;
}
header #main-menu-wrapper li a:hover span, header #main-menu-wrapper li a:focus span {
color: #fff;
}
header #main-menu-wrapper li a:hover span.ico-camera:before, header #main-menu-wrapper li a:focus span.ico-camera:before {
background: url(//sulmaisulma.pl/wp-content/themes/sulma/assets/img/ico_publikacje.svg);
top: -5px;
}
header #main-menu-wrapper li a:hover span.ico-hands:before, header #main-menu-wrapper li a:focus span.ico-hands:before {
background: url(//sulmaisulma.pl/wp-content/themes/sulma/assets/img/ico_cooperate.svg);
top: -5px;
}
header #main-menu-wrapper li a:hover span.ico-envelope:before, header #main-menu-wrapper li a:focus span.ico-envelope:before {
background: url(//sulmaisulma.pl/wp-content/themes/sulma/assets/img/ico_letter.svg);
top: -5px;
}
header #main-menu-wrapper.open {
opacity: 1;
display: block;
}
header.shrink {
box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.25);
background: -webkit-linear-gradient(left, #2828ae, #11167e);
background: -o-linear-gradient(left, #2828ae, #11167e);
background: linear-gradient(to right, #2828ae, #11167e);
}
header.always-blue-bg {
box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.25);
background: -webkit-linear-gradient(left, #2828ae, #11167e);
background: -o-linear-gradient(left, #2828ae, #11167e);
background: linear-gradient(to right, #2828ae, #11167e);
}
@media only screen and (min-width: 768px) {
header .wrapper .section-logo {
display: block;
}
header .section-logo-mobile-wrapper {
display: none;
}
}
.page-index-section-0 {
box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.7);
background: -webkit-linear-gradient(left, #2828ae, #11167e);
background: -o-linear-gradient(left, #2828ae, #11167e);
background: linear-gradient(to right, #2828ae, #11167e);
padding: 84px 0 36px 0;
margin-bottom: 36px;
}
.page-index-section-0 h1 {
text-align: center;
font-weight: 300;
text-transform: uppercase;
color: #fff;
margin-bottom: 24px;
}
.page-index-section-0 h2 {
color: #fff;
margin-bottom: 12px;
}
.page-index-section-0 p {
color: #fff;
margin-bottom: 12px;
}
.page-index-section-0 form label {
color: #fff;
font-weight: 400;
margin-right: 10px;
}
.page-index-section-0 form select {
color: #fff;
background-color: transparent;
border: 1px solid #fff;
height: auto;
padding: 10px 5px;
font-size: 14px;
height: 38px;
}
.page-index-section-0 form select option {
background-color: #2827AE;
}
.page-index-section-1 .row &gt; div {
text-align: center;
}
.page-index-section-1 .blog-tile {
padding: 12px 0;
margin: 0 auto;
max-width: 400px;
min-height: 360px;
}
.page-index-section-1 .blog-tile .blog-tile-thumbnail {
display: inline-block;
height: 250px;
width: 250px;
position: relative;
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.7);
overflow: hidden;
text-align: center;
}
.page-index-section-1 .blog-tile .blog-tile-thumbnail img {
height: 100%;
}
.page-index-section-1 .blog-tile .blog-tile-thumbnail:before {
content: "";
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
background-color: rgba(40, 39, 174, 0.8);
z-index: 1;
transition: all 150ms linear;
opacity: 0;
}
.page-index-section-1 .blog-tile .blog-tile-thumbnail:after {
content: "";
position: absolute;
top: 50%;
transform: translate(0%, -50%);
left: 0;
right: 0;
margin: 0 auto;
height: 80px;
width: 80px;
z-index: 2;
background: url(//sulmaisulma.pl/wp-content/themes/sulma/assets/img/ico_plus.svg);
transition: all 150ms linear;
opacity: 0;
}
.page-index-section-1 .blog-tile .blog-tile-thumbnail:hover:after, .page-index-section-1 .blog-tile .blog-tile-thumbnail:hover:before {
opacity: 1;
}
.page-index-section-1 .blog-tile .title {
font-size: 16px;
color: white;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.page-index-section-1 .blog-tile .category {
background-color: #6563ad;
color: #fff;
font-size: 12px;
padding: 6px 12px;
border-radius: 4px;
position: absolute;
bottom: 25px;
left: 5px;
z-index: 2;
}
.page-index-section-1 .blog-tile .date {
color: #6762cb;
font-size: 12px;
margin: 5px auto;
}
@media only screen and (min-width: 768px) {
.page-index-section-0 h1 {
text-align: left;
font-size: 44px;
}
}
@media only screen and (min-width: 992px) {
.page-index-section-1 .row &gt; div {
text-align: left;
}
}
.page-category-section-0 {
box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.7);
background: -webkit-linear-gradient(left, #2828ae, #11167e);
background: -o-linear-gradient(left, #2828ae, #11167e);
background: linear-gradient(to right, #2828ae, #11167e);
padding: 84px 0 36px 0;
margin-bottom: 36px;
}
.page-category-section-0 h1 {
text-align: center;
font-weight: 300;
text-transform: uppercase;
color: #fff;
margin-bottom: 24px;
}
.page-category-section-0 h2 {
color: #fff;
margin-bottom: 12px;
}
.page-category-section-0 p {
color: #fff;
margin-bottom: 12px;
}
.page-category-section-0 form label {
color: #fff;
font-weight: 400;
margin-right: 10px;
}
.page-category-section-0 form select {
color: #fff;
background-color: transparent;
border: 1px solid #fff;
height: auto;
padding: 10px 5px;
font-size: 14px;
height: 38px;
}
.page-category-section-0 form select option {
background-color: #2827AE;
}
.page-category-section-1 .row &gt; div {
text-align: center;
}
.page-category-section-1 .blog-tile {
padding: 12px 0;
margin: 0 auto;
max-width: 400px;
min-height: 360px;
}
.page-category-section-1 .blog-tile .blog-tile-thumbnail {
display: inline-block;
height: 250px;
width: 250px;
position: relative;
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.7);
overflow: hidden;
text-align: center;
}
.page-category-section-1 .blog-tile .blog-tile-thumbnail img {
height: 100%;
}
.page-category-section-1 .blog-tile .blog-tile-thumbnail:before {
content: "";
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
background-color: rgba(40, 39, 174, 0.8);
z-index: 1;
transition: all 150ms linear;
opacity: 0;
}
.page-category-section-1 .blog-tile .blog-tile-thumbnail:after {
content: "";
position: absolute;
top: 50%;
transform: translate(0%, -50%);
left: 0;
right: 0;
margin: 0 auto;
height: 80px;
width: 80px;
z-index: 2;
background: url(//sulmaisulma.pl/wp-content/themes/sulma/assets/img/ico_plus.svg);
transition: all 150ms linear;
opacity: 0;
}
.page-category-section-1 .blog-tile .blog-tile-thumbnail:hover:after, .page-category-section-1 .blog-tile .blog-tile-thumbnail:hover:before {
opacity: 1;
}
.page-category-section-1 .blog-tile .title {
font-size: 16px;
color: white;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.page-category-section-1 .blog-tile .category {
background-color: #6563ad;
color: #fff;
font-size: 12px;
padding: 6px 12px;
border-radius: 4px;
position: absolute;
bottom: 25px;
left: 5px;
z-index: 2;
}
.page-category-section-1 .blog-tile .date {
color: #6762cb;
font-size: 12px;
margin: 5px auto;
}
@media only screen and (min-width: 768px) {
.page-category-section-0 h1 {
text-align: left;
font-size: 44px;
}
}
@media only screen and (min-width: 992px) {
.page-category-section-1 .row &gt; div {
text-align: left;
}
}
.page-cookie-and-privacy-policy-section-0 {
padding-top: 96px;
padding-bottom: 96px;
overflow: hidden;
}
.page-faq-section-0 {
padding: 96px 0;
}
.page-faq-section-0 h1 {
margin-bottom: 36px;
}
.page-faq-section-0 h2 {
margin: 12px;
position: relative;
}
.page-faq-section-0 h2 .anchor {
position: absolute;
top: -96px;
}
.page-faq-section-0 p {
margin: 24px;
}
.page-faq-section-0 a {
font-weight: bold;
}
section {
color: #fff;
position: relative;
background: -webkit-linear-gradient(left, #2828ae, #11167e);
background: -o-linear-gradient(left, #2828ae, #11167e);
background: linear-gradient(to right, #2828ae, #11167e);
}
section.light {
background: #ebf3ff;
color: #2827AE;
}
.page-home-section-0 {
padding-top: 80px;
text-align: center;
position: relative;
}
.page-home-section-0 .video-overlay {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background-color: rgba(40, 39, 174, 0.3);
z-index: 10;
}
.page-home-section-0 .video-container {
max-height: 100vh;
position: relative;
top: 0;
bottom: 0;
width: 100%;
overflow: hidden;
}
.page-home-section-0 .video-container img { min-width: 100%; width: 100%;
height: auto; }
.page-home-section-0 h1 {
padding-top: 90px;
color: #fff;
text-transform: uppercase;
text-align: center;
border: solid #3433b5;
border-width: 4px 0 4px 0;
padding: 25px 0;
font-weight: 300;
z-index: 20;
}
.page-home-section-0 h2 {
margin: 0 36px;
padding-top: 36px;
padding-bottom: 12px;
color: white;
}
.page-home-section-0 #more-btn {
margin-bottom: 36px;
}
.page-home-section-1 {
padding: 76px 0;
}
.page-home-section-1 .main-description-wrapper {
text-align: left;
}
.page-home-section-1 .main-description-wrapper h2 {
margin: 36px 0;
max-width: 500px;
}
.page-home-section-1 .main-description-wrapper .main-description {
margin: 24px 0;
max-width: 500px;
}
.page-home-section-1 .blog-tile {
padding: 15px 0;
margin: 0 auto;
height: 350px;
}
.page-home-section-1 .blog-tile .blog-tile-thumbnail {
display: inline-block;
margin: 0 auto;
height: 250px;
width: 250px;
position: relative;
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.7);
overflow: hidden;
}
.page-home-section-1 .blog-tile .blog-tile-thumbnail img {
height: 100%;
}
.page-home-section-1 .blog-tile .blog-tile-thumbnail:before {
content: "";
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
background-color: rgba(40, 39, 174, 0.8);
z-index: 1;
transition: all 150ms linear;
opacity: 0;
}
.page-home-section-1 .blog-tile .blog-tile-thumbnail:after {
content: "";
position: absolute;
top: 50%;
transform: translate(0%, -50%);
left: 0;
right: 0;
margin: 0 auto;
height: 80px;
width: 80px;
z-index: 2;
background: url(//sulmaisulma.pl/wp-content/themes/sulma/assets/img/ico_plus.svg);
transition: all 150ms linear;
opacity: 0;
}
.page-home-section-1 .blog-tile .blog-tile-thumbnail:hover:after, .page-home-section-1 .blog-tile .blog-tile-thumbnail:hover:before {
opacity: 1;
}
.page-home-section-1 .blog-tile .title {
font-size: 16px;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.page-home-section-1 .blog-tile .category {
background-color: #6563ad;
color: #fff;
font-size: 12px;
padding: 6px 12px;
border-radius: 4px;
position: absolute;
bottom: 25px;
left: 5px;
z-index: 2;
}
.page-home-section-1 .blog-tile .date {
color: #6762cb;
font-size: 12px;
margin: 5px auto;
}
.page-home-section-1 .blog-tile .publications-btn {
display: block;
width: 100%;
height: 100%;
background-color: rgba(255, 255, 255, 0.9);
color: #2827AE;
display: flex;
flex-direction: column-reverse;
justify-content: center;
align-items: center;
}
.page-home-section-1 .blog-tile .publications-btn .line_break::after {
content: "\a";
white-space: pre;
}
.page-home-section-1 .blog-tile .publications-btn span {
text-transform: uppercase;
align-self: center;
text-align: center;
font-weight: bold;
font-size: 24px;
line-height: 38px;
}
.page-home-section-1 .btn-custom {
margin-bottom: 36px;
}
.page-home-section-1 .slider-col h2 {
margin: 0 24px;
}
.page-home-section-1 .slider-col .page-home-section-1-slider {
padding: 36px;
}
.page-home-section-1 .slider-col .page-home-section-1-slider div {
text-align: center;
}
.page-home-section-1 .slider-col .page-home-section-1-slider div img {
display: inline-block;
max-height: 100px;
}
.page-home-section-2 {
padding: 76px 0;
}
.page-home-section-2 h2 {
color: white;
margin-bottom: 24px;
}
.page-home-section-2 .row &gt; div {
text-align: center;
}
.page-home-section-2 .btn-custom {
min-width: 300px;
text-align: center;
margin: 12px 0;
}
.page-home-section-2 .page-home-section-2-slider div {
text-align: center;
}
.page-home-section-2 .page-home-section-2-slider blockquote {
margin: 12px;
font-style: italic;
line-height: 22px;
justify-self: start;
}
.page-home-section-2 .page-home-section-2-slider img {
margin: 12px;
display: inline-block;
height: 150px;
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.7);
}
.page-home-section-2 .page-home-section-2-slider .customer-name {
margin: 6px;
font-size: 16px;
font-weight: bold;
color: white;
margin-top: 14px;
}
.page-home-section-2 .page-home-section-2-slider .customer-position {
margin: 6px;
color: white;
font-size: 14px;
}
.page-home-section-3 {
padding: 76px 0;
}
.page-home-section-3 .row &gt; div {
text-align: center;
padding: 24px;
}
.page-home-section-3 .row &gt; div h2 {
padding: 12px 0;
}
.page-home-section-3 .row &gt; div img {
max-width: 100%;
}
.page-home-section-4 {
padding: 76px 0;
}
.page-home-section-4 h2 {
color: white;
text-align: center;
margin-bottom: 26px;
position: relative;
text-transform: uppercase;
}
.page-home-section-4 .blog-tile {
text-align: center;
margin: 0 auto 24px auto;
width: 300px;
}
.page-home-section-4 .blog-tile .main-page-thumbnail {
display: inline-block;
margin: 0 auto;
height: 250px;
width: 250px;
position: relative;
}
.page-home-section-4 .blog-tile .main-page-thumbnail img {
height: 100%;
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.7);
}
.page-home-section-4 .blog-tile .main-page-thumbnail:before {
content: "";
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
background-color: rgba(40, 39, 174, 0.8);
z-index: 1;
transition: all 150ms linear;
opacity: 0;
}
.page-home-section-4 .blog-tile .main-page-thumbnail:after {
content: "";
position: absolute;
top: 50%;
transform: translate(0%, -50%);
left: 0;
right: 0;
margin: 0 auto;
height: 80px;
width: 80px;
z-index: 2;
background: url(//sulmaisulma.pl/wp-content/themes/sulma/assets/img/ico_plus.svg);
transition: all 150ms linear;
opacity: 0;
}
.page-home-section-4 .blog-tile .main-page-thumbnail:hover:after, .page-home-section-4 .blog-tile .main-page-thumbnail:hover:before {
opacity: 1;
}
.page-home-section-4 .blog-tile .title {
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2; -webkit-box-orient: vertical;
color: white;
}
.page-home-section-4 .blog-tile .publications-btn {
display: block;
width: 100%;
height: 100%;
background-color: rgba(255, 255, 255, 0.9);
color: #2827AE;
display: flex;
flex-direction: column-reverse;
justify-content: center;
align-items: center;
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.7);
}
.page-home-section-4 .blog-tile .publications-btn .line_break::after {
content: "\a";
white-space: pre;
}
.page-home-section-4 .blog-tile .publications-btn span {
text-transform: uppercase;
align-self: center;
text-align: center;
font-weight: bold;
font-size: 24px;
line-height: 38px;
}
.page-home-section-4 .col-12 {
margin: 24px 0;
text-align: center;
}
.page-home-section-4 .faq-container {
margin-top: 24px;
}
.page-home-section-4 .faq-container .col-md-4 {
text-align: center;
display: flex;
justify-content: center;
align-items: center;
padding: 12px;
}
.page-home-section-5 {
padding: 76px 0;
}
.page-home-section-5 h2 {
font-size: 24px;
margin-top: 18px;
margin-bottom: 8px;
text-align: center;
}
.page-home-section-5 h3 {
margin-bottom: 12px;
}
.page-home-section-5 p {
margin-bottom: 8px;
font-size: 15px;
}
.page-home-section-5 .team-item {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
margin-top: 10px;
}
.page-home-section-5 .team-item a {
font-size: 14px;
}
.page-home-section-5 .team-item .img-container {
width: 144px;
height: 144px;
border-radius: 50%;
overflow: hidden;
}
.page-home-section-5 .team-item .img-container img {
width: 100%;
object-fit: cover;
}
.page-home-section-5 .lets-talk-wrapper {
text-align: center;
}
.page-home-section-6 {
padding: 76px 0;
}
.page-home-section-6 .row {
height: calc(100% - 180px);
}
.page-home-section-6 .row &gt; div {
text-align: center;
}
.page-home-section-6 .blog-tile {
padding: 15px 0;
margin: 0 auto;
height: 350px;
}
.page-home-section-6 .blog-tile .blog-tile-thumbnail {
display: inline-block;
margin: 0 auto;
height: 250px;
width: 250px;
position: relative;
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.7);
overflow: hidden;
}
.page-home-section-6 .blog-tile .blog-tile-thumbnail img {
height: 100%;
}
.page-home-section-6 .blog-tile .blog-tile-thumbnail:before {
content: "";
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
background-color: rgba(40, 39, 174, 0.8);
z-index: 1;
transition: all 150ms linear;
opacity: 0;
}
.page-home-section-6 .blog-tile .blog-tile-thumbnail:after {
content: "";
position: absolute;
top: 50%;
transform: translate(0%, -50%);
left: 0;
right: 0;
margin: 0 auto;
height: 80px;
width: 80px;
z-index: 2;
background: url(//sulmaisulma.pl/wp-content/themes/sulma/assets/img/ico_plus.svg);
transition: all 150ms linear;
opacity: 0;
}
.page-home-section-6 .blog-tile .blog-tile-thumbnail:hover:after, .page-home-section-6 .blog-tile .blog-tile-thumbnail:hover:before {
opacity: 1;
}
.page-home-section-6 .blog-tile .title {
font-size: 16px;
color: white;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.page-home-section-6 .blog-tile .category {
background-color: #6563ad;
color: #fff;
font-size: 12px;
padding: 6px 12px;
border-radius: 4px;
position: absolute;
bottom: 25px;
left: 5px;
z-index: 2;
}
.page-home-section-6 .blog-tile .date {
color: #6762cb;
font-size: 12px;
margin: 5px auto;
}
.page-home-section-6 .blog-tile .publications-btn {
display: block;
width: 100%;
height: 100%;
background-color: rgba(255, 255, 255, 0.9);
color: #2827AE;
display: flex;
flex-direction: column-reverse;
justify-content: center;
align-items: center;
}
.page-home-section-6 .blog-tile .publications-btn .line_break::after {
content: "\a";
white-space: pre;
}
.page-home-section-6 .blog-tile .publications-btn span {
text-transform: uppercase;
align-self: center;
text-align: center;
font-weight: bold;
font-size: 24px;
line-height: 38px;
}
.page-home-section-7 {
padding: 76px 0;
}
.page-home-section-7 .google-review-box-wrapper {
margin: 0 auto;
max-width: 200px;
text-align: center;
padding: 15px 0;
background-color: #fff;
-webkit-box-shadow: 8px 8px 24px -10px rgb(66, 68, 90);
-moz-box-shadow: 8px 8px 24px -10px rgb(66, 68, 90);
box-shadow: 8px 8px 24px -10px rgb(66, 68, 90);
border-radius: 5px;
}
.page-home-section-7 .google-review-box-wrapper .fa-solid {
color: #F7B704;
}
.page-home-section-7 .row &gt; div &gt; p {
margin: 24px 0;
text-align: center;
}
.page-home-section-7 .page-home-section-7-slider .slick-slide {
text-align: center;
}
.page-home-section-7 .page-home-section-7-slider .slick-slide a {
display: inline-block;
}
.page-home-section-7 .page-home-section-7-slider .slick-slide a img {
max-width: 100px;
}
.page-home-section-8 {
padding: 76px 0;
}
.page-home-section-8 &gt; .col-md-3 {
text-align: center;
}
.page-home-section-8 a {
text-align: center;
}
.page-home-section-8 h2 {
margin: 24px 0 12px 0;
text-align: center;
}
.page-home-section-8 address {
font-style: normal;
text-align: center;
}
.page-home-section-8 .contact-wrapper {
text-align: center;
}
.page-home-section-8 iframe .hbspt-form {
margin: 48px 12px;
}
.page-home-section-8 iframe .hbspt-form .hs-form-field {
margin: 6px 0px;
text-align: center;
}
.page-home-section-8 iframe .hbspt-form .hs-form-field span {
display: inline-block;
margin-bottom: 3px;
}
.page-home-section-8 iframe .hbspt-form .hs-error-msgs {
color: red;
}
.page-home-section-8 iframe .hbspt-form .input input[type=text],
.page-home-section-8 iframe .hbspt-form .input input[type=email],
.page-home-section-8 iframe .hbspt-form .input input[type=tel],
.page-home-section-8 iframe .hbspt-form .input textarea {
width: 100%;
border: 1px solid #4745bc;
border-radius: 0px;
height: auto;
background-color: transparent;
margin-bottom: 8px;
font-size: 14px;
color: #6762cb;
}
.page-home-section-8 iframe .hbspt-form .input input[type=text]::-webkit-input-placeholder,
.page-home-section-8 iframe .hbspt-form .input input[type=email]::-webkit-input-placeholder,
.page-home-section-8 iframe .hbspt-form .input input[type=tel]::-webkit-input-placeholder,
.page-home-section-8 iframe .hbspt-form .input textarea::-webkit-input-placeholder {
color: #6762cb;
}
.page-home-section-8 iframe .hbspt-form .input input[type=text]:-moz-placeholder,
.page-home-section-8 iframe .hbspt-form .input input[type=email]:-moz-placeholder,
.page-home-section-8 iframe .hbspt-form .input input[type=tel]:-moz-placeholder,
.page-home-section-8 iframe .hbspt-form .input textarea:-moz-placeholder {
color: #6762cb;
}
.page-home-section-8 iframe .hbspt-form .input input[type=text]::-moz-placeholder,
.page-home-section-8 iframe .hbspt-form .input input[type=email]::-moz-placeholder,
.page-home-section-8 iframe .hbspt-form .input input[type=tel]::-moz-placeholder,
.page-home-section-8 iframe .hbspt-form .input textarea::-moz-placeholder {
color: #6762cb;
}
.page-home-section-8 iframe .hbspt-form .input input[type=text]:-ms-input-placeholder,
.page-home-section-8 iframe .hbspt-form .input input[type=email]:-ms-input-placeholder,
.page-home-section-8 iframe .hbspt-form .input input[type=tel]:-ms-input-placeholder,
.page-home-section-8 iframe .hbspt-form .input textarea:-ms-input-placeholder {
color: #6762cb;
}
.page-home-section-8 iframe .hbspt-form .input input[type=text]::-ms-input-placeholder,
.page-home-section-8 iframe .hbspt-form .input input[type=email]::-ms-input-placeholder,
.page-home-section-8 iframe .hbspt-form .input input[type=tel]::-ms-input-placeholder,
.page-home-section-8 iframe .hbspt-form .input textarea::-ms-input-placeholder {
color: #6762cb;
}
.page-home-section-8 iframe .hbspt-form .input input[type=text]:focus,
.page-home-section-8 iframe .hbspt-form .input input[type=email]:focus,
.page-home-section-8 iframe .hbspt-form .input input[type=tel]:focus,
.page-home-section-8 iframe .hbspt-form .input textarea:focus {
border-color: #fff;
color: #fff;
}
.page-home-section-8 iframe .hbspt-form .input .ajax-loader {
display: none;
}
.page-home-section-8 iframe .hbspt-form .hs-submit {
text-align: center;
}
.page-home-section-8 iframe .hbspt-form input[type=submit] {
font-size: 17px;
padding: 10px 24px;
border-radius: 7px;
border: 1px solid #fff;
background-color: #fff;
color: #2827AE;
border-color: #fff;
transition: all 150ms linear;
}
.page-home-section-8 iframe .hbspt-form input[type=submit]:hover, .page-home-section-8 iframe .hbspt-form input[type=submit]:focus {
background-color: #2827AE;
color: #fff;
}
@media only screen and (min-width: 768px) {
.page-home-section-2 h2 {
text-align: center;
}
.page-home-section-8 .hbspt-form .hs-form-field {
text-align: left;
}
}
@media only screen and (min-width: 992px) {
.page-home-section-0 {
padding-top: 0px;
}
.page-home-section-0 h1 {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: 700px;
font-size: 54px;
padding: 0;
}
.page-home-section-0 .more-wrapper {
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.7);
left: 20%;
position: absolute;
z-index: 30;
bottom: 70px;
width: 60%;
background: -webkit-linear-gradient(left, #2828ae, #11167e);
background: -o-linear-gradient(left, #2828ae, #11167e);
background: linear-gradient(to right, #2828ae, #11167e);
}
.page-home-section-0 .more-wrapper h2 {
padding-top: 12px;
font-size: 22px;
}
.page-home-section-0 .more-wrapper #more-btn {
margin-bottom: 12px;
}
.page-home-section-6 .row &gt; div {
text-align: left;
}
}
@media only screen and (min-width: 1400px) {
.page-home-section-0 .more-wrapper {
left: 30%;
bottom: 100px;
width: 40%;
}
}
.tag-manager-services-page-lets-talk-all-buttons {
max-width: 300px;
}
.page-services-section-0 {
padding-top: 96px;
padding-bottom: 36px;
}
.page-services-section-0 h2 {
margin: 12px 0;
text-align: center;
}
.page-services-section-0 .col-md-12,
.page-services-section-0 .col-md-6 {
text-align: center;
}
.page-services-section-0 .clickable-process-item {
cursor: pointer;
display: block;
margin: 12px auto 12px auto;
user-select: none;
max-width: 300px;
}
.page-services-section-0 .clickable-process-item.btn-custom--light {
cursor: default;
}
.page-services-section-0 .process-box-wrapper {
position: relative;
}
.page-services-section-0 .process-box-wrapper #process-box {
margin: 36px auto 12px auto;
padding: 6px 48px;
display: block;
max-width: 500px;
position: relative;
border: solid #3433b5;
border-width: 1px 0 1px 0;
}
.page-services-section-0 .tag-manager-services-page-lets-talk-all-buttons {
margin-top: 12px;
}
.page-services-section-1 {
-webkit-box-shadow: inset 6px 8px 24px -7px rgb(0, 0, 0);
-moz-box-shadow: inset 6px 8px 24px -7px rgb(0, 0, 0);
box-shadow: inset 6px 8px 24px -7px rgb(0, 0, 0);
padding-top: 72px;
padding-bottom: 72px;
}
.page-services-section-1 .solution-section {
margin-bottom: 48px;
}
.page-services-section-1 .solution-section .anchor {
position: absolute;
top: -100px;
}
.page-services-section-1 h2 {
color: white;
margin-bottom: 24px;
text-shadow: 2px 2px 0px rgb(0, 0, 0);
}
.page-services-section-1 li {
display: block;
position: relative;
color: white;
margin-bottom: 24px;
margin-left: 24px;
cursor: pointer;
text-shadow: 0px 0px black;
user-select: none;
}
.page-services-section-1 li:after {
content: "";
position: absolute;
width: 100%;
transform: scaleX(0);
height: 1px;
bottom: -6px;
left: 0;
background-color: white;
transform-origin: bottom right;
transition: transform 0.25s ease-out;
}
.page-services-section-1 li:hover:after {
transform: scaleX(1);
transform-origin: bottom left;
}
.page-services-section-1 li i {
box-shadow: 2px 2px 1px 2px #191e8f;
position: absolute;
left: -30px;
top: 6px;
font-size: 22px;
}
.page-services-section-1 .image-wrapper {
display: inline-block;
overflow: hidden;
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.7);
max-width: 350px;
}
.page-services-section-1 .image-wrapper img {
width: 100%;
}
.page-services-section-1 .testimonial {
margin: 24px auto 36px auto;
text-align: center;
}
.page-services-section-1 h3 {
color: white;
text-align: center;
margin: 12px auto;
}
.page-services-section-1 .blog-tile {
text-align: center;
margin: 0 auto 24px auto;
width: 300px;
}
.page-services-section-1 .blog-tile .main-page-thumbnail {
display: inline-block;
margin: 0 auto;
height: 250px;
width: 250px;
position: relative;
}
.page-services-section-1 .blog-tile .main-page-thumbnail img {
height: 100%;
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.7);
}
.page-services-section-1 .blog-tile .main-page-thumbnail:before {
content: "";
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
background-color: rgba(40, 39, 174, 0.8);
z-index: 1;
transition: all 150ms linear;
opacity: 0;
}
.page-services-section-1 .blog-tile .main-page-thumbnail:after {
content: "";
position: absolute;
top: 50%;
transform: translate(0%, -50%);
left: 0;
right: 0;
margin: 0 auto;
height: 80px;
width: 80px;
z-index: 2;
background: url(//sulmaisulma.pl/wp-content/themes/sulma/assets/img/ico_plus.svg);
transition: all 150ms linear;
opacity: 0;
}
.page-services-section-1 .blog-tile .main-page-thumbnail:hover:after, .page-services-section-1 .blog-tile .main-page-thumbnail:hover:before {
opacity: 1;
}
.page-services-section-1 .blog-tile .title {
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
color: white;
}
.page-services-section-2 {
-webkit-box-shadow: 0px 0px 24px -6px rgb(0, 0, 0);
-moz-box-shadow: 0px 0px 24px -6px rgb(0, 0, 0);
box-shadow: 0px 0px 24px -6px rgb(0, 0, 0);
padding-top: 72px;
padding-bottom: 72px;
}
.page-services-section-2 .image-wrapper {
display: inline-block;
overflow: hidden;
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.7);
max-width: 350px;
margin: 12px;
}
.page-services-section-2 .image-wrapper img {
width: 100%;
}
.page-services-section-2 .image-wrapper--workshops {
max-width: 500px;
}
.page-services-section-2 h2 {
margin: 12px auto 24px auto;
}
.page-services-section-3 {
-webkit-box-shadow: inset 6px 8px 24px -7px rgb(0, 0, 0);
-moz-box-shadow: inset 6px 8px 24px -7px rgb(0, 0, 0);
box-shadow: inset 6px 8px 24px -7px rgb(0, 0, 0);
padding-top: 72px;
padding-bottom: 72px;
background-color: #2827AE;
}
.page-services-section-3 h2 {
margin: 24px auto;
color: white;
text-align: center;
}
.page-services-section-3 p {
color: white;
text-align: center;
margin: auto 15px;
}
.page-services-section-3 .icon-container {
position: relative;
margin: 15px auto;
text-align: center;
}
.page-services-section-3 .icon-container i {
color: white;
}
.page-services-section-3 .icon-left,
.page-services-section-3 .icon-right {
padding: 0 !important;
font-size: 50px;
text-align: center;
margin: 6px auto;
}
.page-services-section-3 .lines {
display: inline-block;
margin: 0 auto;
}
.page-services-section-3 .lines .dot {
width: 10px;
height: 10px;
background: white;
transform-origin: center center;
transform: rotate(45deg);
}
.page-services-section-3 .lines .line {
height: 60px;
width: 2px;
background: white;
margin-left: 4px;
}
.page-single-post-section-0 {
padding-top: 96px;
padding-bottom: 96px;
}
.page-single-post-section-0 .title {
margin: 12px;
color: #2827AE;
text-align: center;
}
.page-single-post-section-0 .thumbnail-wrapper {
text-align: center;
}
.page-single-post-section-0 .thumbnail-wrapper &gt; img {
max-height: 500px;
max-width: 90%;
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.7);
}
.page-single-post-section-0 .category {
background-color: #2827AE;
text-transform: uppercase;
color: #fff;
padding: 6px 12px;
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.7);
display: inline-block;
z-index: 2;
}
.page-single-post-section-0 .date {
display: block;
color: #2827AE;
font-size: 12px;
margin: 5px auto 10px auto;
}
.page-single-post-section-0 .post-content {
margin: 0 auto;
}
.page-single-post-section-0 .post-content p,
.page-single-post-section-0 .post-content img {
margin-bottom: 20px;
}
.page-single-post-section-0 .post-content a {
font-weight: 600;
}
.page-single-post-section-0 .post-content img {
display: block;
max-width: 100%;
height: auto;
margin: 12px auto;
}
.page-single-post-section-0 .post_navigation {
margin: 0 auto;
margin-top: 48px;
text-align: center;
}
.page-single-post-section-0 .post_navigation a {
position: relative;
}
.page-single-post-section-0 .post_navigation a:before {
font-family: FontAwesome;
position: absolute;
top: 50%;
transform: translate(0%, -50%);
border: 2px solid #d7ddf5;
height: 40px;
width: 40px;
text-align: center;
font-size: 23px;
color: #d7ddf5;
}
.page-single-post-section-0 .post_navigation a.prev_post {
padding-left: 60px;
}
.page-single-post-section-0 .post_navigation a.prev_post:before {
content: "\f104";
left: 0;
transition: all 150ms linear;
}
.page-single-post-section-0 .post_navigation a.next_post {
padding-right: 60px;
}
.page-single-post-section-0 .post_navigation a.next_post:before {
content: "\f105";
right: 0;
transition: all 150ms linear;
}
.page-single-post-section-0 .rp4wp-related-posts {
margin: 24px auto;
}
.gallery {
margin-bottom: 1.5em;
}
.gallery-item {
display: inline-block;
text-align: center;
vertical-align: top;
width: 100%;
padding: 0 15px;
}
.gallery-columns-2 .gallery-item {
max-width: 50%;
}
.gallery-columns-3 .gallery-item {
max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
max-width: 25%;
}
.gallery-columns-5 .gallery-item {
max-width: 20%;
}
.gallery-columns-6 .gallery-item {
max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
max-width: 11.11%;
}
.gallery-caption {
display: block;
}
.tag-cloud-container {
text-align: center;
}
.tag-cloud-container &gt; ul &gt; li {
list-style-type: none;
display: inline-block;
}
.page-single-case-study-section-0 {
padding-top: 96px;
}
.page-single-case-study-section-0 .thumbnail-wrapper {
text-align: center;
}
.page-single-case-study-section-0 .thumbnail-wrapper &gt; img {
max-height: 500px;
max-width: 90%;
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.7);
}
.page-single-case-study-section-0 .title {
margin: 12px;
position: relative;
text-align: center;
}
.page-single-case-study-section-0 .title::after {
position: absolute;
content: "";
height: 1px;
bottom: -4px;
margin: 0 auto;
left: 0;
right: 0;
width: 40%;
background: #2827AE;
}
.page-single-case-study-section-0 .under-title-heading {
text-align: center;
font-size: 22px;
}
.page-single-case-study-section-0 .menu {
margin: 48px auto;
text-align: center;
}
.page-single-case-study-section-0 .menu ol {
padding: 0;
list-style-type: none;
display: grid;
grid-template-columns: repeat(5, 20%);
}
@media (max-width: 991px) {
.page-single-case-study-section-0 .menu ol {
grid-template-columns: repeat(2, 50%);
}
}
.page-single-case-study-section-0 .menu ol li {
position: relative;
margin: 5px;
}
.page-single-case-study-section-0 .menu ol li a {
height: 190px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: start;
padding: 1em 0;
background: #2827ae;
color: #fff;
position: relative;
z-index: 100;
overflow: hidden;
transition: background-color 100ms ease, box-shadow 150ms ease;
transition-timing-function: cubic-bezier(0.57, 0.21, 0.69, 3.25);
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.9);
font-size: 24px;
}
.page-single-case-study-section-0 .menu ol li a i {
display: block;
font-size: 80px;
transform: translateY(25px);
transition: transform 400ms ease;
transition: 0.4s cubic-bezier(0.94, 1.6, 0.5, 1);
}
.page-single-case-study-section-0 .menu ol li a span {
max-width: 90%;
line-height: 30px;
display: block;
margin-top: 0.2em;
transition: transform 300ms ease, opacity 150ms ease;
transition: 0.35s cubic-bezier(0.54, 1.6, 0.5, 1);
transform: translateY(70px);
opacity: 0;
}
@media (max-width: 991px) {
.page-single-case-study-section-0 .menu ol li a {
background: #fff;
color: #2828ae;
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.9);
font-size: 20px;
height: 170px;
}
.page-single-case-study-section-0 .menu ol li a span,
.page-single-case-study-section-0 .menu ol li a i {
transform: translateY(0);
opacity: 1;
color: #11167e;
background: linear-gradient(90deg, #2828ae, #11167e);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
}
.page-single-case-study-section-0 .menu ol li a:hover {
background: #fff;
color: #2828ae;
}
.page-single-case-study-section-0 .menu ol li a:hover span,
.page-single-case-study-section-0 .menu ol li a:hover i {
transform: translateY(0);
opacity: 1;
color: #11167e;
background: linear-gradient(90deg, #2828ae, #11167e);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
@media (max-width: 991px) {
.page-single-case-study-section-0 .menu ol li a:hover::before {
border-top-width: 450px;
border-bottom-width: 450px;
border-right-width: 450px;
opacity: 0;
}
}
@media (min-width: 992px) {
.page-single-case-study-section-0 .menu ol li a:hover::before {
border-left-width: 450px;
border-right-width: 450px;
border-bottom-width: 450px;
opacity: 0;
}
}
.page-single-case-study-section-0 .row {
margin-top: 48px !important;
}
.page-single-case-study-section-0 section h1 {
text-align: center;
font-weight: bold;
margin-top: 0;
}
.page-single-case-study-section-0 section p {
text-align: center;
margin-bottom: 0;
}
.page-single-case-study-section-0 .hexa {
border: 0px;
float: left;
text-align: center;
height: 35px;
width: 60px;
font-size: 22px;
background: #f0f0f0;
color: #3c3c3c;
position: relative;
margin-top: 15px;
}
.page-single-case-study-section-0 .hexa:before {
content: "";
position: absolute;
left: 0;
width: 0;
height: 0;
border-bottom: 15px solid #f0f0f0;
border-left: 30px solid transparent;
border-right: 30px solid transparent;
top: -15px;
}
.page-single-case-study-section-0 .hexa:after {
content: "";
position: absolute;
left: 0;
width: 0;
height: 0;
border-left: 30px solid transparent;
border-right: 30px solid transparent;
border-top: 15px solid #f0f0f0;
bottom: -15px;
}
.page-single-case-study-section-0 .timeline {
position: relative;
padding: 0;
width: 100%;
margin-top: 20px;
list-style-type: none;
}
.page-single-case-study-section-0 .timeline .anchor {
position: absolute;
top: -100px;
}
.page-single-case-study-section-0 .timeline .anchor--journey {
top: 10px;
}
.page-single-case-study-section-0 .timeline:before {
position: absolute;
left: 50%;
top: 0;
content: " ";
display: block;
width: 2px;
height: 100%;
margin-left: -1px;
background: #2827AE;
background: -moz-linear-gradient(top, rgba(213, 213, 213, 0) 0%, #2827AE 8%, #2827AE 92%, rgba(213, 213, 213, 0) 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(30, 87, 153)), color-stop(100%, rgb(125, 185, 232)));
background: -webkit-linear-gradient(top, rgba(213, 213, 213, 0) 0%, #2827AE 8%, #2827AE 92%, rgba(213, 213, 213, 0) 100%);
background: -o-linear-gradient(top, rgba(213, 213, 213, 0) 0%, #2827AE 8%, #2827AE 92%, rgba(213, 213, 213, 0) 100%);
background: -ms-linear-gradient(top, rgba(213, 213, 213, 0) 0%, #2827AE 8%, #2827AE 92%, rgba(213, 213, 213, 0) 100%);
background: linear-gradient(to bottom, rgba(213, 213, 213, 0) 0%, #2827AE 8%, #2827AE 92%, rgba(213, 213, 213, 0) 100%);
z-index: 5;
}
.page-single-case-study-section-0 .timeline li {
padding: 2em 0;
}
.page-single-case-study-section-0 .timeline .hexa {
width: 16px;
height: 10px;
position: absolute;
background: #2827AE;
z-index: 5;
left: 0;
right: 0;
margin-left: auto;
margin-right: auto;
top: -30px;
margin-top: 0;
}
.page-single-case-study-section-0 .timeline .hexa:before {
border-bottom: 4px solid #2827AE;
border-left-width: 8px;
border-right-width: 8px;
top: -4px;
}
.page-single-case-study-section-0 .timeline .hexa:after {
border-left-width: 8px;
border-right-width: 8px;
border-top: 4px solid #2827AE;
bottom: -4px;
}
.page-single-case-study-section-0 .direction-l,
.page-single-case-study-section-0 .direction-r {
float: none;
width: 100%;
text-align: center;
}
.page-single-case-study-section-0 .flag-wrapper {
text-align: center;
position: relative;
}
.page-single-case-study-section-0 .flag {
position: relative;
display: inline;
background: rgb(255, 255, 255);
font-weight: 600;
z-index: 15;
padding: 6px;
text-align: left;
}
.page-single-case-study-section-0 .direction-l .flag:after,
.page-single-case-study-section-0 .direction-r .flag:after {
content: "";
position: absolute;
left: 50%;
top: -15px;
height: 0;
width: 0;
margin-left: -8px;
border: solid transparent;
border-bottom-color: rgb(255, 255, 255);
border-width: 8px;
pointer-events: none;
}
.page-single-case-study-section-0 .direction-l .flag {
-webkit-box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.15);
-moz-box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.15);
box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.15);
}
.page-single-case-study-section-0 .direction-r .flag {
-webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.15);
-moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.15);
box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.15);
}
.page-single-case-study-section-0 .timeline-icon-wrapper {
display: block;
position: relative;
margin: 4px 0 0 0;
z-index: 14;
line-height: 1em;
vertical-align: middle;
color: #fff;
}
.page-single-case-study-section-0 .direction-l .timeline-icon-wrapper {
float: none;
}
.page-single-case-study-section-0 .direction-r .timeline-icon-wrapper {
float: none;
}
.page-single-case-study-section-0 .timeline-icon {
background: #2827AE;
display: inline-block;
padding: 6px;
border-radius: 6px;
}
.page-single-case-study-section-0 .timeline-icon i {
font-size: 22px;
}
.page-single-case-study-section-0 .desc {
position: relative;
margin: 1em 0 0 0;
padding: 1em;
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.7);
background-color: #fff;
padding: 6px 24px;
text-align: center;
z-index: 15;
}
.page-single-case-study-section-0 .direction-l .desc,
.page-single-case-study-section-0 .direction-r .desc {
position: relative;
margin: 1em 1em 0 1em;
padding: 1em;
z-index: 15;
}
@media (min-width: 768px) {
.page-single-case-study-section-0 .timeline {
width: 660px;
margin: 0 auto;
margin-top: 20px;
}
.page-single-case-study-section-0 .timeline li:after {
content: "";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.page-single-case-study-section-0 .timeline .hexa {
left: -28px;
right: auto;
top: 8px;
}
.page-single-case-study-section-0 .timeline .direction-l .hexa {
left: auto;
right: -28px;
}
.page-single-case-study-section-0 .direction-l {
position: relative;
width: 310px;
float: left;
text-align: right;
}
.page-single-case-study-section-0 .direction-r {
position: relative;
width: 310px;
float: right;
text-align: left;
}
.page-single-case-study-section-0 .flag-wrapper {
display: inline-block;
}
.page-single-case-study-section-0 .flag {
font-size: 18px;
}
.page-single-case-study-section-0 .direction-l .flag:after {
left: auto;
right: -16px;
top: 50%;
margin-top: -8px;
border: solid transparent;
border-left-color: rgb(254, 254, 254);
border-width: 8px;
}
.page-single-case-study-section-0 .direction-r .flag:after {
top: 50%;
margin-top: -8px;
border: solid transparent;
border-right-color: rgb(254, 254, 254);
border-width: 8px;
left: -8px;
}
.page-single-case-study-section-0 .timeline-icon-wrapper {
display: inline;
vertical-align: middle;
margin: 0 5px;
}
.page-single-case-study-section-0 .direction-l .timeline-icon-wrapper {
float: left;
}
.page-single-case-study-section-0 .direction-r .timeline-icon-wrapper {
float: right;
}
.page-single-case-study-section-0 .timeline-icon {
padding: 6px 6px;
}
.page-single-case-study-section-0 .direction-r .desc {
margin: 1em 0 0 0.75em;
}
}
@media (min-width: 992px) {
.page-single-case-study-section-0 .timeline {
width: 900px;
margin: 0 auto;
margin-top: 20px;
}
.page-single-case-study-section-0 .direction-l {
position: relative;
width: 430px;
float: left;
text-align: right;
}
.page-single-case-study-section-0 .direction-r {
position: relative;
width: 430px;
float: right;
text-align: left;
}
}
@media (min-width: 1329px) {
.page-single-case-study-section-0 .timeline {
width: 1100px;
margin: 0 auto;
margin-top: 20px;
}
.page-single-case-study-section-0 .direction-l {
position: relative;
width: 530px;
float: left;
text-align: right;
}
.page-single-case-study-section-0 .direction-r {
position: relative;
width: 530px;
float: right;
text-align: left;
}
}
.page-single-case-study-section-0 .post-content {
margin: 0 auto;
border-bottom: none;
margin-bottom: 48px;
margin-top: 96px;
}
.page-single-case-study-section-0 .post-content p,
.page-single-case-study-section-0 .post-content img,
.page-single-case-study-section-0 .post-content ul {
margin: 12px;
}
.page-single-case-study-section-0 .post-content a {
font-weight: 600;
}
.page-single-case-study-section-0 .post-content img {
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.7);
display: block;
max-width: 100%;
height: auto;
margin: 12px auto;
}
.page-single-case-study-section-0 .rp4wp-related-posts {
margin-top: 50px;
}
.page-single-case-study-section-0 .rp4wp-related-posts ul {
margin-bottom: 50px;
}
#respond {
display: none;
}
.post-cta {
background-color: #2827AE;
padding: 12px;
max-width: 50%;
text-align: center;
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.7);
}
.post-cta .post-cta-message {
margin-bottom: 20px;
padding: 0 20px;
color: white;
font-size: 20px;
}
.post-cta--left {
float: left;
margin: 0px 25px 10px 0;
}
.post-cta--right {
float: right;
margin: 0px 0px 10px 25px;
}
.post-cta--center {
display: block;
margin: 45px auto;
}
.post-cta-advanced {
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.6);
padding: 0px 15px;
border-radius: 20px;
background-color: #2827AE;
max-width: 60%;
margin: 25px auto;
}
.post-cta-advanced img {
box-shadow: 8px 8px 9px rgba(0, 0, 0, 0.658);
max-height: 200px;
}
.post-cta-advanced .text-wrapper {
padding-top: 15px;
}
.post-cta-advanced .text-wrapper h3 {
margin-bottom: 10px;
color: white;
}
.post-cta-advanced .text-wrapper p {
color: white;
line-height: 22px;
}
.post-cta-advanced .text-wrapper a {
margin-bottom: 15px;
}
.post-cta-advanced--center {
text-align: center;
}
.post-cta-advanced--center .text-wrapper {
text-align: left;
}
.page-404-section-0 {
height: 100vh;
}
.page-404-section-0 .container {
padding-top: 40vh;
text-align: center;
}   html {
font-family: sans-serif;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
body {
margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
display: block;
}
audio,
canvas,
progress,
video {
display: inline-block;
vertical-align: baseline;
}
audio:not([controls]) {
display: none;
height: 0;
}
[hidden],
template {
display: none;
}
a {
background-color: transparent;
}
a:active,
a:hover {
outline: 0;
}
abbr[title] {
border-bottom: none;
text-decoration: underline;
text-decoration: underline dotted;
}
b,
strong {
font-weight: bold;
}
dfn {
font-style: italic;
}
mark {
background: #ff0;
color: #000;
}
small {
font-size: 80%;
}
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sup {
top: -0.5em;
}
sub {
bottom: -0.25em;
}
img {
border: 0;
}
svg:not(:root) {
overflow: hidden;
}
figure {
margin: 1em 40px;
}
hr {
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
height: 0;
}
pre {
overflow: auto;
}
code,
kbd,
pre,
samp {
font-family: monospace, monospace;
font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
color: inherit;
font: inherit;
margin: 0;
}
button {
overflow: visible;
}
button,
select {
text-transform: none;
}
button,
html input[type=button],
input[type=reset],
input[type=submit] {
-webkit-appearance: button;
cursor: pointer;
}
button[disabled],
html input[disabled] {
cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
border: 0;
padding: 0;
}
input {
line-height: normal;
}
input[type=checkbox],
input[type=radio] {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 0;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
height: auto;
}
input[type=search] {
-webkit-appearance: textfield;
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
}
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
-webkit-appearance: none;
}
fieldset {
border: 1px solid #c0c0c0;
margin: 0 2px;
padding: 0.35em 0.625em 0.75em;
}
legend {
border: 0;
padding: 0;
}
textarea {
overflow: auto;
}
optgroup {
font-weight: bold;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
td,
th {
padding: 0;
}
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
*:before,
*:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
html {
font-size: 10px;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
line-height: 1.42857143;
color: #333;
background-color: #fff;
}
input,
button,
select,
textarea {
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
a {
text-decoration: none;
}
a:focus {
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
figure {
margin: 0;
}
img {
vertical-align: middle;
}
.img-responsive {
display: block;
max-width: 100%;
height: auto;
}
.img-rounded {
border-radius: 6px;
}
.img-thumbnail {
padding: 4px;
line-height: 1.42857143;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 4px;
-webkit-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
display: inline-block;
max-width: 100%;
height: auto;
}
.img-circle {
border-radius: 50%;
}
hr {
margin-top: 20px;
margin-bottom: 20px;
border: 0;
border-top: 1px solid #eee;
}
.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
position: static;
width: auto;
height: auto;
margin: 0;
overflow: visible;
clip: auto;
}
[role=button] {
cursor: pointer;
}
.container {
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
@media (min-width: 768px) {
.container {
width: 750px;
}
}
@media (min-width: 992px) {
.container {
width: 970px;
}
}
@media (min-width: 1200px) {
.container {
width: 1170px;
}
}
.container-fluid {
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
.row {
margin-right: -15px;
margin-left: -15px;
}
.row-no-gutters {
margin-right: 0;
margin-left: 0;
}
.row-no-gutters [class*=col-] {
padding-right: 0;
padding-left: 0;
}
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
position: relative;
min-height: 1px;
padding-right: 15px;
padding-left: 15px;
}
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
float: left;
}
.col-xs-12 {
width: 100%;
}
.col-xs-11 {
width: 91.66666667%;
}
.col-xs-10 {
width: 83.33333333%;
}
.col-xs-9 {
width: 75%;
}
.col-xs-8 {
width: 66.66666667%;
}
.col-xs-7 {
width: 58.33333333%;
}
.col-xs-6 {
width: 50%;
}
.col-xs-5 {
width: 41.66666667%;
}
.col-xs-4 {
width: 33.33333333%;
}
.col-xs-3 {
width: 25%;
}
.col-xs-2 {
width: 16.66666667%;
}
.col-xs-1 {
width: 8.33333333%;
}
.col-xs-pull-12 {
right: 100%;
}
.col-xs-pull-11 {
right: 91.66666667%;
}
.col-xs-pull-10 {
right: 83.33333333%;
}
.col-xs-pull-9 {
right: 75%;
}
.col-xs-pull-8 {
right: 66.66666667%;
}
.col-xs-pull-7 {
right: 58.33333333%;
}
.col-xs-pull-6 {
right: 50%;
}
.col-xs-pull-5 {
right: 41.66666667%;
}
.col-xs-pull-4 {
right: 33.33333333%;
}
.col-xs-pull-3 {
right: 25%;
}
.col-xs-pull-2 {
right: 16.66666667%;
}
.col-xs-pull-1 {
right: 8.33333333%;
}
.col-xs-pull-0 {
right: auto;
}
.col-xs-push-12 {
left: 100%;
}
.col-xs-push-11 {
left: 91.66666667%;
}
.col-xs-push-10 {
left: 83.33333333%;
}
.col-xs-push-9 {
left: 75%;
}
.col-xs-push-8 {
left: 66.66666667%;
}
.col-xs-push-7 {
left: 58.33333333%;
}
.col-xs-push-6 {
left: 50%;
}
.col-xs-push-5 {
left: 41.66666667%;
}
.col-xs-push-4 {
left: 33.33333333%;
}
.col-xs-push-3 {
left: 25%;
}
.col-xs-push-2 {
left: 16.66666667%;
}
.col-xs-push-1 {
left: 8.33333333%;
}
.col-xs-push-0 {
left: auto;
}
.col-xs-offset-12 {
margin-left: 100%;
}
.col-xs-offset-11 {
margin-left: 91.66666667%;
}
.col-xs-offset-10 {
margin-left: 83.33333333%;
}
.col-xs-offset-9 {
margin-left: 75%;
}
.col-xs-offset-8 {
margin-left: 66.66666667%;
}
.col-xs-offset-7 {
margin-left: 58.33333333%;
}
.col-xs-offset-6 {
margin-left: 50%;
}
.col-xs-offset-5 {
margin-left: 41.66666667%;
}
.col-xs-offset-4 {
margin-left: 33.33333333%;
}
.col-xs-offset-3 {
margin-left: 25%;
}
.col-xs-offset-2 {
margin-left: 16.66666667%;
}
.col-xs-offset-1 {
margin-left: 8.33333333%;
}
.col-xs-offset-0 {
margin-left: 0;
}
@media (min-width: 768px) {
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12 {
float: left;
}
.col-sm-12 {
width: 100%;
}
.col-sm-11 {
width: 91.66666667%;
}
.col-sm-10 {
width: 83.33333333%;
}
.col-sm-9 {
width: 75%;
}
.col-sm-8 {
width: 66.66666667%;
}
.col-sm-7 {
width: 58.33333333%;
}
.col-sm-6 {
width: 50%;
}
.col-sm-5 {
width: 41.66666667%;
}
.col-sm-4 {
width: 33.33333333%;
}
.col-sm-3 {
width: 25%;
}
.col-sm-2 {
width: 16.66666667%;
}
.col-sm-1 {
width: 8.33333333%;
}
.col-sm-pull-12 {
right: 100%;
}
.col-sm-pull-11 {
right: 91.66666667%;
}
.col-sm-pull-10 {
right: 83.33333333%;
}
.col-sm-pull-9 {
right: 75%;
}
.col-sm-pull-8 {
right: 66.66666667%;
}
.col-sm-pull-7 {
right: 58.33333333%;
}
.col-sm-pull-6 {
right: 50%;
}
.col-sm-pull-5 {
right: 41.66666667%;
}
.col-sm-pull-4 {
right: 33.33333333%;
}
.col-sm-pull-3 {
right: 25%;
}
.col-sm-pull-2 {
right: 16.66666667%;
}
.col-sm-pull-1 {
right: 8.33333333%;
}
.col-sm-pull-0 {
right: auto;
}
.col-sm-push-12 {
left: 100%;
}
.col-sm-push-11 {
left: 91.66666667%;
}
.col-sm-push-10 {
left: 83.33333333%;
}
.col-sm-push-9 {
left: 75%;
}
.col-sm-push-8 {
left: 66.66666667%;
}
.col-sm-push-7 {
left: 58.33333333%;
}
.col-sm-push-6 {
left: 50%;
}
.col-sm-push-5 {
left: 41.66666667%;
}
.col-sm-push-4 {
left: 33.33333333%;
}
.col-sm-push-3 {
left: 25%;
}
.col-sm-push-2 {
left: 16.66666667%;
}
.col-sm-push-1 {
left: 8.33333333%;
}
.col-sm-push-0 {
left: auto;
}
.col-sm-offset-12 {
margin-left: 100%;
}
.col-sm-offset-11 {
margin-left: 91.66666667%;
}
.col-sm-offset-10 {
margin-left: 83.33333333%;
}
.col-sm-offset-9 {
margin-left: 75%;
}
.col-sm-offset-8 {
margin-left: 66.66666667%;
}
.col-sm-offset-7 {
margin-left: 58.33333333%;
}
.col-sm-offset-6 {
margin-left: 50%;
}
.col-sm-offset-5 {
margin-left: 41.66666667%;
}
.col-sm-offset-4 {
margin-left: 33.33333333%;
}
.col-sm-offset-3 {
margin-left: 25%;
}
.col-sm-offset-2 {
margin-left: 16.66666667%;
}
.col-sm-offset-1 {
margin-left: 8.33333333%;
}
.col-sm-offset-0 {
margin-left: 0;
}
}
@media (min-width: 992px) {
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12 {
float: left;
}
.col-md-12 {
width: 100%;
}
.col-md-11 {
width: 91.66666667%;
}
.col-md-10 {
width: 83.33333333%;
}
.col-md-9 {
width: 75%;
}
.col-md-8 {
width: 66.66666667%;
}
.col-md-7 {
width: 58.33333333%;
}
.col-md-6 {
width: 50%;
}
.col-md-5 {
width: 41.66666667%;
}
.col-md-4 {
width: 33.33333333%;
}
.col-md-3 {
width: 25%;
}
.col-md-2 {
width: 16.66666667%;
}
.col-md-1 {
width: 8.33333333%;
}
.col-md-pull-12 {
right: 100%;
}
.col-md-pull-11 {
right: 91.66666667%;
}
.col-md-pull-10 {
right: 83.33333333%;
}
.col-md-pull-9 {
right: 75%;
}
.col-md-pull-8 {
right: 66.66666667%;
}
.col-md-pull-7 {
right: 58.33333333%;
}
.col-md-pull-6 {
right: 50%;
}
.col-md-pull-5 {
right: 41.66666667%;
}
.col-md-pull-4 {
right: 33.33333333%;
}
.col-md-pull-3 {
right: 25%;
}
.col-md-pull-2 {
right: 16.66666667%;
}
.col-md-pull-1 {
right: 8.33333333%;
}
.col-md-pull-0 {
right: auto;
}
.col-md-push-12 {
left: 100%;
}
.col-md-push-11 {
left: 91.66666667%;
}
.col-md-push-10 {
left: 83.33333333%;
}
.col-md-push-9 {
left: 75%;
}
.col-md-push-8 {
left: 66.66666667%;
}
.col-md-push-7 {
left: 58.33333333%;
}
.col-md-push-6 {
left: 50%;
}
.col-md-push-5 {
left: 41.66666667%;
}
.col-md-push-4 {
left: 33.33333333%;
}
.col-md-push-3 {
left: 25%;
}
.col-md-push-2 {
left: 16.66666667%;
}
.col-md-push-1 {
left: 8.33333333%;
}
.col-md-push-0 {
left: auto;
}
.col-md-offset-12 {
margin-left: 100%;
}
.col-md-offset-11 {
margin-left: 91.66666667%;
}
.col-md-offset-10 {
margin-left: 83.33333333%;
}
.col-md-offset-9 {
margin-left: 75%;
}
.col-md-offset-8 {
margin-left: 66.66666667%;
}
.col-md-offset-7 {
margin-left: 58.33333333%;
}
.col-md-offset-6 {
margin-left: 50%;
}
.col-md-offset-5 {
margin-left: 41.66666667%;
}
.col-md-offset-4 {
margin-left: 33.33333333%;
}
.col-md-offset-3 {
margin-left: 25%;
}
.col-md-offset-2 {
margin-left: 16.66666667%;
}
.col-md-offset-1 {
margin-left: 8.33333333%;
}
.col-md-offset-0 {
margin-left: 0;
}
}
@media (min-width: 1200px) {
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12 {
float: left;
}
.col-lg-12 {
width: 100%;
}
.col-lg-11 {
width: 91.66666667%;
}
.col-lg-10 {
width: 83.33333333%;
}
.col-lg-9 {
width: 75%;
}
.col-lg-8 {
width: 66.66666667%;
}
.col-lg-7 {
width: 58.33333333%;
}
.col-lg-6 {
width: 50%;
}
.col-lg-5 {
width: 41.66666667%;
}
.col-lg-4 {
width: 33.33333333%;
}
.col-lg-3 {
width: 25%;
}
.col-lg-2 {
width: 16.66666667%;
}
.col-lg-1 {
width: 8.33333333%;
}
.col-lg-pull-12 {
right: 100%;
}
.col-lg-pull-11 {
right: 91.66666667%;
}
.col-lg-pull-10 {
right: 83.33333333%;
}
.col-lg-pull-9 {
right: 75%;
}
.col-lg-pull-8 {
right: 66.66666667%;
}
.col-lg-pull-7 {
right: 58.33333333%;
}
.col-lg-pull-6 {
right: 50%;
}
.col-lg-pull-5 {
right: 41.66666667%;
}
.col-lg-pull-4 {
right: 33.33333333%;
}
.col-lg-pull-3 {
right: 25%;
}
.col-lg-pull-2 {
right: 16.66666667%;
}
.col-lg-pull-1 {
right: 8.33333333%;
}
.col-lg-pull-0 {
right: auto;
}
.col-lg-push-12 {
left: 100%;
}
.col-lg-push-11 {
left: 91.66666667%;
}
.col-lg-push-10 {
left: 83.33333333%;
}
.col-lg-push-9 {
left: 75%;
}
.col-lg-push-8 {
left: 66.66666667%;
}
.col-lg-push-7 {
left: 58.33333333%;
}
.col-lg-push-6 {
left: 50%;
}
.col-lg-push-5 {
left: 41.66666667%;
}
.col-lg-push-4 {
left: 33.33333333%;
}
.col-lg-push-3 {
left: 25%;
}
.col-lg-push-2 {
left: 16.66666667%;
}
.col-lg-push-1 {
left: 8.33333333%;
}
.col-lg-push-0 {
left: auto;
}
.col-lg-offset-12 {
margin-left: 100%;
}
.col-lg-offset-11 {
margin-left: 91.66666667%;
}
.col-lg-offset-10 {
margin-left: 83.33333333%;
}
.col-lg-offset-9 {
margin-left: 75%;
}
.col-lg-offset-8 {
margin-left: 66.66666667%;
}
.col-lg-offset-7 {
margin-left: 58.33333333%;
}
.col-lg-offset-6 {
margin-left: 50%;
}
.col-lg-offset-5 {
margin-left: 41.66666667%;
}
.col-lg-offset-4 {
margin-left: 33.33333333%;
}
.col-lg-offset-3 {
margin-left: 25%;
}
.col-lg-offset-2 {
margin-left: 16.66666667%;
}
.col-lg-offset-1 {
margin-left: 8.33333333%;
}
.col-lg-offset-0 {
margin-left: 0;
}
}
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
display: table;
content: " ";
}
.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
clear: both;
}
.center-block {
display: block;
margin-right: auto;
margin-left: auto;
}
.pull-right {
float: right !important;
}
.pull-left {
float: left !important;
}
.hide {
display: none !important;
}
.show {
display: block !important;
}
.invisible {
visibility: hidden;
}
.text-hide {
font: 0/0 a;
color: transparent;
text-shadow: none;
background-color: transparent;
border: 0;
}
.hidden {
display: none !important;
}
.affix {
position: fixed;
}
@-ms-viewport {
width: device-width;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
display: none !important;
}
@media (max-width: 767px) {
.visible-xs {
display: block !important;
}
table.visible-xs {
display: table !important;
}
tr.visible-xs {
display: table-row !important;
}
th.visible-xs,
td.visible-xs {
display: table-cell !important;
}
}
@media (max-width: 767px) {
.visible-xs-block {
display: block !important;
}
}
@media (max-width: 767px) {
.visible-xs-inline {
display: inline !important;
}
}
@media (max-width: 767px) {
.visible-xs-inline-block {
display: inline-block !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.visible-sm {
display: block !important;
}
table.visible-sm {
display: table !important;
}
tr.visible-sm {
display: table-row !important;
}
th.visible-sm,
td.visible-sm {
display: table-cell !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.visible-sm-block {
display: block !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.visible-sm-inline {
display: inline !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.visible-sm-inline-block {
display: inline-block !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.visible-md {
display: block !important;
}
table.visible-md {
display: table !important;
}
tr.visible-md {
display: table-row !important;
}
th.visible-md,
td.visible-md {
display: table-cell !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.visible-md-block {
display: block !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.visible-md-inline {
display: inline !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.visible-md-inline-block {
display: inline-block !important;
}
}
@media (min-width: 1200px) {
.visible-lg {
display: block !important;
}
table.visible-lg {
display: table !important;
}
tr.visible-lg {
display: table-row !important;
}
th.visible-lg,
td.visible-lg {
display: table-cell !important;
}
}
@media (min-width: 1200px) {
.visible-lg-block {
display: block !important;
}
}
@media (min-width: 1200px) {
.visible-lg-inline {
display: inline !important;
}
}
@media (min-width: 1200px) {
.visible-lg-inline-block {
display: inline-block !important;
}
}
@media (max-width: 767px) {
.hidden-xs {
display: none !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.hidden-sm {
display: none !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.hidden-md {
display: none !important;
}
}
@media (min-width: 1200px) {
.hidden-lg {
display: none !important;
}
}
.visible-print {
display: none !important;
}
@media print {
.visible-print {
display: block !important;
}
table.visible-print {
display: table !important;
}
tr.visible-print {
display: table-row !important;
}
th.visible-print,
td.visible-print {
display: table-cell !important;
}
}
.visible-print-block {
display: none !important;
}
@media print {
.visible-print-block {
display: block !important;
}
}
.visible-print-inline {
display: none !important;
}
@media print {
.visible-print-inline {
display: inline !important;
}
}
.visible-print-inline-block {
display: none !important;
}
@media print {
.visible-print-inline-block {
display: inline-block !important;
}
}
@media print {
.hidden-print {
display: none !important;
}
} .slick-slider {
position: relative;
display: block;
box-sizing: border-box;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-touch-callout: none;
-khtml-user-select: none;
-ms-touch-action: pan-y;
touch-action: pan-y;
-webkit-tap-highlight-color: transparent;
}
.slick-list {
position: relative;
display: block;
overflow: hidden;
margin: 0;
padding: 0;
}
.slick-list:focus {
outline: none;
}
.slick-list.dragging {
cursor: pointer;
cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
-ms-transform: translate3d(0, 0, 0);
-o-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.slick-track {
position: relative;
top: 0;
left: 0;
display: block;
margin-left: auto;
margin-right: auto;
}
.slick-track:before,
.slick-track:after {
display: table;
content: "";
}
.slick-track:after {
clear: both;
}
.slick-loading .slick-track {
visibility: hidden;
}
.slick-slide {
display: none;
float: left;
height: 100%;
min-height: 1px;
}
[dir=rtl] .slick-slide {
float: right;
}
.slick-slide img {
display: block;
}
.slick-slide.slick-loading img {
display: none;
}
.slick-slide.dragging img {
pointer-events: none;
}
.slick-initialized .slick-slide {
display: block;
}
.slick-loading .slick-slide {
visibility: hidden;
}
.slick-vertical .slick-slide {
display: block;
height: auto;
border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
display: none;
} .slick-loading .slick-list {
background: #fff url(https://sulmaisulma.pl/wp-content/themes/sulma/assets/css/ajax-loader.gif) center center no-repeat;
} @font-face {
font-family: "slick";
font-weight: normal;
font-style: normal;
} .slick-prev,
.slick-next {
font-size: 0;
line-height: 0;
position: absolute;
top: 50%;
display: block;
width: 20px;
height: 20px;
padding: 0;
-webkit-transform: translate(0, -50%);
-ms-transform: translate(0, -50%);
transform: translate(0, -50%);
cursor: pointer;
color: transparent;
border: none;
outline: none;
background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
color: transparent;
outline: none;
background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
font-family: "slick";
font-size: 20px;
line-height: 1;
opacity: 0.75;
color: white;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.slick-prev {
left: -25px;
}
[dir=rtl] .slick-prev {
right: -25px;
left: auto;
}
.slick-prev:before {
content: "←";
}
[dir=rtl] .slick-prev:before {
content: "→";
}
.slick-next {
right: -25px;
}
[dir=rtl] .slick-next {
right: auto;
left: -25px;
}
.slick-next:before {
content: "→";
}
[dir=rtl] .slick-next:before {
content: "←";
} .slick-dotted.slick-slider {
margin-bottom: 30px;
}
.slick-dots {
position: absolute;
bottom: -25px;
display: block;
width: 100%;
padding: 0;
margin: 0;
list-style: none;
text-align: center;
}
.slick-dots li {
position: relative;
display: inline-block;
width: 20px;
height: 20px;
margin: 0 5px;
padding: 0;
cursor: pointer;
}
.slick-dots li button {
font-size: 0;
line-height: 0;
display: block;
width: 20px;
height: 20px;
padding: 5px;
cursor: pointer;
color: transparent;
border: 0;
outline: none;
background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
opacity: 1;
}
.slick-dots li button:before {
font-family: "slick";
font-size: 6px;
line-height: 20px;
position: absolute;
top: 0;
left: 0;
width: 20px;
height: 20px;
content: "•";
text-align: center;
opacity: 0.25;
color: black;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
opacity: 0.75;
color: black;
}
footer {
background: -webkit-linear-gradient(left, #2828ae, #11167e);
background: -o-linear-gradient(left, #2828ae, #11167e);
background: linear-gradient(to right, #2828ae, #11167e);
padding-bottom: 48px;
}
footer p {
border-top: 2px solid white;
color: white;
opacity: 0.8;
padding: 12px;
text-align: center;
}
.social-menu {
position: fixed;
bottom: 84px;
right: 6px;
z-index: 19;
display: flex;
flex-direction: column;
}
.social-menu li {
display: inline-block;
}
.social-menu li a {
margin: 6px;
height: 40px;
width: 40px;
border-radius: 50%;
background-color: #fff;
display: inline-block;
text-align: center;
font-size: 24px;
padding-top: 1px;
}
.social-menu li a i {
line-height: 40px;
}
.social-menu li a:hover, .social-menu li a:focus {
background-color: #2827AE;
color: #fff;
}</pre></body></html>