
:root {
  --bigmenu-background-color: #3d3d3d;    
  --primary-color: #41c207;
  --secondary-color: #0295ff;
  --dark-color: #0e0e0d
}

html,
body {
  margin: 0;
  font-size: 16px;
  font-family: "Raleway", sans-serif;
  background-color: var(--dark-color);
}

body.show-nav-dropdown {
  overflow: hidden;
}

body.overflow-hidden {
  padding-right: 18px;
}

.overflow-hidden {
  overflow: hidden;
}

.page {
  background-color: #fff;
}

/* INFO HEADER */

.small-cta {
  margin: 20px 0
}

.small-cta,
.info {
  background-color: var(--dark-color);
  padding-top: 22px;
  padding-bottom: 21px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.info {
  display: none;
}

.info__container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.info__text {
  font-size: 21px;
  font-weight: 600;
  color: #fff;
}

.info__button {
  display: flex;
  margin-left: 60px;
}

.info__close {
  cursor: pointer;
  color: #fff;
  position: absolute;
  top: 0;
  right: 15px;
  width: 15px;
  height: 100%;
  display: flex;
  align-items: center;
}

.info .btn,
.small-cta .btn {
  border-width: 2px;
}

/* INFO HEADER */

/* NAVIGATION */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  box-shadow: 0 4px 2px -2px transparent;
  -webkit-box-shadow: 0 4px 2px -2px transparent;
  -moz-box-shadow: 0 4px 2px -2px transparent;
  transition: 0.3s linear;
  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  -o-transition: 0.3s linear;
}

.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 70px;
  width: 100%;
}

.nav__logo {
  display: flex;
  min-width: 168px;
  position: relative;
  z-index: 1;
  flex: 0 0 10%
}

.nav__logo a {
  display: flex;
  align-items: center;
}

.nav__additional {
  text-align: right;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: end;
  flex: 0 0 30%;
}

.nav__additional button {
  min-width: 260px;
  
}

.nav__menu {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  max-width: 1290px;
  margin-right: 10px;
  margin-left: 20px;
  padding-top: 45px;
  padding-bottom: 45px;
  transition: padding 0.3s linear;
  -webkit-transition: padding 0.3s linear;
  -moz-transition: padding 0.3s linear;
  -o-transition: padding 0.3s linear;
  flex: 0 0 60%
}

.nav__menu::-webkit-scrollbar {
  opacity: 0;
}

.nav__link {
  margin-right: 33px;
}

.nav__link--dropdown .nav__anchor:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 3px 0 3px;
  border-color: var(--dark-color) transparent transparent transparent;
  right: -8px;
  position: absolute;
  transition: 0.3s linear;
  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  -o-transition: 0.3s linear;
}

.nav__link:last-child {
  margin-right: 0;
}

.nav__anchor {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-color);
  letter-spacing: 0;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  transition: 0.3s linear;
  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  -o-transition: 0.3s linear;
}

.nav .nav__link:hover .nav__anchor,
.nav.nav--hover .nav__link:hover .nav__anchor {
  color: var(--primary-color);
}

.nav.nav.nav--hover .nav__link:hover .nav__anchor:after {
  content: "";
  border-color: var(--primary-color) transparent transparent transparent;
}

.nav.nav--hover {
  background-color: var(--dark-color);
}

.menu__dropdown {
  background-color: var(--dark-color);
  padding: 72px 15px 120px 15px;
  position: absolute;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 87px;
  opacity: 0;
  visibility: hidden;
  color: #fff;
  overflow: scroll;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.menu__dropdown::-webkit-scrollbar {
  display: none;
}


.nav__link--dropdown:hover .menu__dropdown {
  opacity: 1;
  visibility: visible;
}

.dropdown__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.dropdown__anchors {
  width: 600px;
  max-width: 40%;
  margin-right: 50px;
  display: flex;
  flex-direction: column;
}

.dropdown__anchors a {
  display: inline-flex;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: -0.5px;
  font-weight: 600;
  margin-top: 30px;
  color: #fff;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}

.dropdown__anchors a:hover {
  color: var(--primary-color);
}

.dropdown__anchors a:first-child {
  margin-top: 0;
}

.dropdown__faq {
  width: 550px;
  max-width: 100%;
}

.menu__faq {
  display: flex;
  flex-direction: column;
}

.menu__faq .h5 {
  margin-bottom: 15px;
}

.menu__faq.wysiwyg-content a:not([class]) {
  color: rgba(255, 255, 255, .7);
  margin-top: 30px;
  font-size: 17px;
}

.nav.nav--top {
  top: 86px;
}

body.show-nav-dropdown .nav.nav--fixed {
  background-color: black;
  padding: 30px 0
}

.nav.nav--fixed {
  padding-top: 12px;
  padding-bottom: 12px;
  top: 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.1);
}

.nav.nav--fixed .nav__menu {
  padding-top: 0;
  padding-bottom: 0;
}

.nav.nav--fixed .nav__anchor {
  font-size: 13px;
}


.nav.nav--fixed button {
  width: 246px;
  height: 38px;
  font-size: 12px;
  margin-top: 5px;
}



.nav.nav--hover .nav__logo svg path[fill="#0B0B0B"] {
  fill: #fff !important;
}

.nav.nav--hover .nav__anchor {
  color: #fff;
}

.nav.nav--hover .nav__link--dropdown .nav__anchor:after {
  content: "";
  border-color: #fff transparent transparent transparent;
}

/* NAVIGATION */

/* HEROIMAGE */

.hero {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 80px;
}

.hero--uniform {
  justify-content: center;
  align-items: center;
  color: white
}

.hero--blog {
  padding-bottom: 0;
  position: relative;
}

.hero--blog .hero--blog-slides {
  width: 100vw;
  height: 75vh;
  max-width: 100%;
}

.hero--blog .hero--blog-slides .hero--blog-slide:nth-child(n+2) {
  display: none;
}

.hero.hero--blog picture:before {
  content: '';
  background: url('/_resources/themes/widoczni/images/blog-maska.png');
  background-size: cover;
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 1;
  height: 100%;
}

.hero.hero--blog picture {
  position: relative;
  display: flex;
}

.hero--subpage {
  padding-bottom: 0;
  overflow: hidden;
  position: relative;
}

.hero--subpage picture {
  position: relative;
}

.hero--subpage picture:before {
  content: '';
  background-color: rgba(0, 0, 0, .5);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero--blog .artboard {
  left: -275px;
  top: 130px;
  max-height: initial;
  right: initial;
  z-index: 15;
  pointer-events: none;
}

.hero--subpage picture,
.hero--subpage picture img,
.hero--blog picture,
.hero--blog picture img {
  width: 100%;
  max-height: 75vh;
  min-height: 75vh;
}

.hero--subpage picture img,
.hero--blog img {
  object-fit: cover;
}

.hero--blog .hero__author {
  padding-top: 30px;
}

.hero__video {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  cursor: pointer;
  max-width: 78%;
}

.hero__video:before {
  content: '';
  display: flex;
  background-image: url('/_resources/themes/widoczni/images/video-cover-homepage.png');
  background-repeat: no-repeat;
  background-size: cover;
  width: 1255px;
  max-width: 100%;
  height: 1095px;
  z-index: 5;
  pointer-events: none;
}

.hero__video .vjs-poster {
  background-size: cover;
}

.hero__video .video-js:before {
  display: none;
}

.hero__video .video-js {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.hero__video--left {
  margin-left: 0;
}

.hero__video img {
  max-height: 125vh;
}

.hero__box {
  margin-left: auto;
  position: relative;
}

.hero__post {
  width: 700px;
  max-width: 100%;
  margin-right: 0;
}

.hero__post .post__date,
.hero__post .post__author__name {
  color: #fff;
}

.hero__post .post__date:before {
  background-color: #fff;
}

.hero__post h3,
.hero__post .h3 {
  margin-bottom: 40px;
  font-size: 40px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
}

.hero__author {
  display: flex;
  align-items: center;
}

.hero__post .h3 a,
.hero__post h3 a {
  color: #fff;
}

.play-video {
  cursor: pointer;
  width: 130px;
  height: 130px;
}

.hero__video .play-video {
  position: absolute;
  z-index: 1;
}

.hero__video .video-js .vjs-tech {
  object-fit: cover;
  outline: none !important;
  filter: brightness(0.75)
}

.hero__video .vjs-control-bar {
  display: none;
}

.top-cta {
  position: relative;
  z-index: 7;
}

.top-cta .btn--small {
  padding: 11px 18px 11px;
}

.hero__content {
  position: absolute;
  z-index: 6;
  width: 1530px;
  max-width: 100%;
  padding: 0 15px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  pointer-events: none;
}

.subpage--masspost .hero__content {
  pointer-events: all;
}

.hero__content a {
  pointer-events: all;
  padding: 21px 47px 22px;
}

.hero__content h3 a,
.hero__content .h3 a {
  padding: 0;
}

.hero__content .btn--outline--secondary {
  color: #fff;
}

.hero--blog .hero__content {
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 80px;
  padding-bottom: 120px;
}

.hero--subpage .hero__content {
  align-items: center;
  width: 1200px;
  text-align: center;
  color: #fff;
  padding-top: 120px;
  padding-bottom: 60px;
}

.hero__content .hero__headers,
.hero__content .go-to-section {
  margin-top: auto;
}

.hero__logo {
  max-width: 350px;
  max-height: 100px;
  margin-top: 50px;
}

.hero__other-posts {
  min-width: 450px;
  width: 450px;
  max-width: 50%;
  overflow: hidden;

}

.post-on-hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px;
  background-color: #fff;
  overflow: hidden;
  position: relative;
}

.other-posts .post-on-hero {
  padding-left: 0;
  padding-right: 0;
  align-items: initial;
}

.post-on-hero:nth-child(even) {
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-color: #e4e4e4;
}

.post-on-hero.post-on-hero--active,
.post-on-hero:hover {
  background-color: #e4e4e4 !important;
}

.post-on-hero.post-on-hero--active:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 14px;
  border-color: transparent transparent transparent var(--primary-color);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 1;
}

.other-posts .post-on-hero:nth-child(even) {
  background-color: #fff;
}

.other-posts .post-on-hero__author {
  min-width: 125px;
  width: 125px;
}

.post-on-hero__author {
  width: 100px;
  max-width: 100%;
  min-width: 100px;
  margin-top: 6px;
}

.post-on-hero__data {
  margin-right: 25px;
}

.other-posts .post-on-hero__data {
  margin-right: 45px;
  height: auto;
  width: 100%;
}

.post-on-hero__data .h5 {
  margin-top: 5px;
}

.post-on-hero__data .h5 a {
  color: initial;
}

.posts__navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 25px;
}

.posts__filter {
  display: flex;
}

.posts__filter span,
.posts__filter label {
  color: #000;
  margin-right: 50px;
  margin-bottom: 0;
  cursor: pointer;
  position: relative;
}

.posts__filter label input {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 0;
}

.posts__filter label .h4 {
  margin: 0;
  padding-bottom: 8px;
  position: relative;
  font-family: "Raleway", sans-serif;
}

.posts__filter label .h4:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: transparent;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}

.posts__filter .h4.active-blog-function:before {
  content: '';
  background-color: var(--primary-color);
}

.posts__sort {
  display: flex;
  align-items: center;
}

.posts__sort .select-items div {
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-family: "Raleway", sans-serif;
  padding: 5px;
}

.posts__sort .select-selected,
.posts__sort label {
  font-size: 28px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-family: "Raleway", sans-serif;
}

.posts__sort label {
  color: #979797;
  margin: 0 20px 0 0;
}

.posts__sort select option,
.posts__sort select {
  border: 0;
  outline: none;
  color: var(--dark-color);
}

.hero__header {
  font-size: 90px;
  line-height: 1.1;
  color: var(--dark-color);
  letter-spacing: -2px;
  width: 900px;
  max-width: 100%;
  font-weight: 700;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
}

.hero__body {
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: -0.5px;
  color: #000;
  font-weight: 600;
  margin: 66px 0 40px;
  width: 480px;
  max-width: 100%;
}

.hero__rate {
  margin-top: 15px;
  margin-bottom: 50px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 0px !important
}

.single-rate {
  font-family: "Raleway", sans-serif;
  padding: 15px 19px 15px 22px;
  border-radius: 28px;
  -webkit-border-radius: 28px;
  -moz-border-radius: 28px;
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  color: var(--dark-color);
  border: 1px solid var(--dark-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.single-rate--primary {
  color: #fff;
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}

.single-rate::after {
  content: "";
  background: url('/_resources/themes/widoczni/images/icons/star.svg');
  display: inline-flex;
  height: 25px;
  width: 27px;
  background-size: cover;
  margin-left: 10px;

}

.hero__rate .single-rate::after {
  background: url('/_resources/themes/widoczni/images/icons/star-black.svg');
}

.stars {
  display: flex;
  margin-top: 40px;
}

.stars-with-text {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.stars-with-text--left {
  margin-bottom: 12px;
}

.stars-with-text--left .stars-with-text {
  justify-content: flex-start;
}

.stars-with-text .stars {
  margin-top: 0;
  margin-left: auto;
  margin-left: 25px;
}

.content__description .stars .single-star {
  margin-left: 5px;
  margin-right: 5px;
}

.single-star {
  display: inline-flex;
}

.single-star:before {
  content: "";
  background: url('/_resources/themes/widoczni/images/icons/star-primary.svg');
  display: inline-flex;
  height: 45px;
  width: 47px;
  background-size: cover;
}

.single-star.single-star--small:before {
  height: 24px;
  width: 24px;
  margin-right: 2px;
}

.single-star.single-star--primary:before {
  background: url('/_resources/themes/widoczni/images/icons/star-primary.svg');
  background-size: cover;
}

.single-star.single-star--primary.poor-score:before {
  background: url('/_resources/themes/widoczni/images/icons/star-poor.svg');
  background-size: cover;
}

.hero__rate span {
  font-size: 21px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #000;
  margin-left: 25px;
}

.media__interest {
  margin-top: 45px;
  margin-bottom: 45px;
  display: inline-flex;
  align-items: center;
}

.media__interest strong {
  margin-right: 30px
}

.media__element {
  margin-right: 40px;
  font-size: 14px;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  color: #000;
  line-height: 1.4;
  display: flex;
  align-items: center;
}

.media__element img {
  margin-right: 12px;
}

.media__share {
  display: inline-flex;
}

.places {
  margin-top: 70px;
}

.places__image {
  display: flex;
  background-color: #fff;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
}

.places .col-lg-4 {
  margin-bottom: 50px;
}

.places__place {
  height: 100%;
  background-color: #fff;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}

.places__place:hover {
  box-shadow: -16px 16px 32px 0 rgba(67, 86, 100, 0.17);
  -webkit-box-shadow: -16px 16px 32px 0 rgba(67, 86, 100, 0.17);
  -moz-box-shadow: -16px 16px 32px 0 rgba(67, 86, 100, 0.17);
}

.places__description {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-color: #fff;
  padding: 40px 15px 60px;
}

/* HEROIMAGE */

.anchors {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top: 50px;
  text-align: center;
  align-items: center;
  position: relative;
}

.anchors__label {
  font-size: 19px;
  line-height: 1.6;
  letter-spacing: -0.4px;
  color: rgba(0, 0, 0, .7);
  margin-right: 50px;
  margin-bottom: 0;
}

.anchors__list {
  display: flex;
}

.anchors__element {
  margin-right: 40px;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #000;
}

.anchors__element.current {
  border-bottom: 2px solid #000 !important
}

.anchors__element:last-child {
  margin-right: 0;
}

/* BREADCRUMBS */

#breadcrumbs {
  max-width: 100vw !important
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  margin-top: 50px;
  width: 100%;
}

.breadcrumbs__anchor {
  margin-right: 12px;
  font-size: 17px;
  line-height: 1.6;
  color: #000;
}

.breadcrumbs__anchor:last-child {
  color: var(--primary-color);
  margin-right: 0;
}

.breadcrumbs__anchor:not(:last-child):after {
  content: '';
  display: inline-flex;
  background: url('/_resources/themes/widoczni/images/icons/arrow-right-black.svg');
  width: 12px;
  height: 12px;
  background-size: cover;
  margin-left: 12px;
  opacity: 0.7;
}

/* BREADCRUMBS */

/* VIDEO CONTROLS */

.video-box {
  position: relative;
}

.corner-description {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 420px;
  height: 304px;
  max-width: 100%;
}

.corner-description img {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
}

.corner-description * {
  font-family: 'Raleway';
  font-size: 28px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.14;
  letter-spacing: -0.5px;
}


.corner-description .h4 {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: right;
  max-width: 100%;
  padding: 50px 30px 0 80px;
  margin: 0;
}

.content__image .corner-description div {
  padding-right: 0px;
  right: 30px;
  bottom: -30px;
}

.content__image .corner-description p {
  padding: 0px;
  margin: 0px
}

.vjs-picture-in-picture-control {
  display: none !important;
}

.video-js .vjs-progress-holder {
  height: 1px;
}

.video-js .vjs-play-progress {
  background-color: var(--primary-color);
  height: 3px !important;
  top: -2px;
}

.video-js .vjs-play-progress:before {
  content: "" !important;
  background-image: url("/_resources/themes/widoczni/images/icons/video-time-cursor.svg");
  background-size: 26px 36px;
  width: 26px;
  height: 36px;
  top: 0;
  right: -13px;
  margin-top: -50px;
}

.video-js .vjs-control-bar {
  background-color: transparent;
  width: 1500px;
  max-width: 100%;
  margin: 0 auto 90px;
  z-index: 2;
  padding-left: 15px;
  padding-right: 15px;
}

.vjs-big-play-button .vjs-icon-placeholder:before {
  content: "" !important;
  background-image: url("/_resources/themes/widoczni/images/icons/play.svg");
  background-size: 130px;
}

.video-js:hover .vjs-big-play-button,
.video-js .vjs-big-play-button:focus,
.video-js .vjs-big-play-button {
  background-color: transparent;
  outline: none;
  border: 0;
  width: 130px;
  height: 130px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.video-js {
  max-height: 100%;
  max-width: 100%;
  font-family: "Raleway", sans-serif;
}

.video-js .vjs-time-tooltip {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
}

.video-js:before {
  content: "";
  background-image: url("/_resources/themes/widoczni/images/shadow-video.png");
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 237px;
  z-index: 1;
}

/* VIDEO CONTROLS */

.modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  max-height: 100vh;
  background-color: var(--dark-color);
  z-index: 1000;
  overflow-y: scroll;
}

.modal:before {
  display: none;
  content: '';
  background: url('/_resources/themes/widoczni/images/artboard-modal.svg');
  background-size: cover;
  position: absolute;
  left: -20%;
  top: -10%;
  width: 2334px;
  height: 110%;
  overflow: hidden;
  max-width: 100vw;
}

.contact-form__container {
  z-index: 2;
  position: relative;
}

.contact-form form {
  text-align: center;
}

.modal__close {
  width: 63px;
  height: 63px;
  position: absolute;
  z-index: 5;
  right: 68px;
  top: 18px;
  cursor: pointer;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.contact-form__container {
  display: flex;
  align-items: center;
  min-height: 100%;
}

.contact-form__row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.contact-form__left {
  width: 390px;
  max-width: 100%;
}

.contact-form__right {
  width: 750px;
  margin-left: 50px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
}

.contact-form__header {
  color: #fff;
  text-align: center;
  margin-top: 0;
  display: block;
  margin-bottom: 50px !important;
}

.contactForm20 .contact-form__header {
  margin-bottom: 10px !important;
}

.contactForm20 div[data-modalform-lead] p {
  font-size: 14px !important;
}
.contactForm20 .label-title {
  margin-bottom: 20px !important; 
}

.contact-form__bottom {
  text-align: center;
  color: #fff;
}

.contact-form__bottom .h5 {
  margin-top: 30px;
  margin-bottom: 40px;
}

.contact-form__bottom .form__group {
  justify-content: start;
}

.about {
  margin-top: 35px;
  margin-bottom: 100px;
}

.wysiwyg-content .col-lg-4.about__element-container {
  margin-bottom: 80px;
}

.about__element {
  outline: none;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  margin-top: 30px;
  padding: 0 15px 30px;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  border: 1px solid #e4e4e4;
  box-shadow: -10px 10px 10px 0 transparent;
  -webkit-box-shadow: -10px 10px 10px 0 transparent;
  -moz-box-shadow: -10px 10px 10px 0 transparent;
  position: relative;
  color: inherit;
}


.slick-slide .about__element {
  padding-left: 0;
  padding-right: 0;
}

.about__element:hover {
  box-shadow: -10px 10px 10px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: -10px 10px 10px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: -10px 10px 10px 0 rgba(0, 0, 0, 0.1);
}

.about__element .h4 {
  max-width: 100%;
  margin: auto !important;
  margin-top: 40px !important;
}

.about__icon {
  width: 100%;
  max-height: 290px;
  object-fit: cover;
}

.content__inside p:empty {
  margin: 0;
}

.about__anchor {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 65px;
  height: 65px;
  background-color: #fff;
  border: 1px solid #e4e4e4;
  box-shadow: -4px 5px 8px 0 transparent, -1px 2px 4px 0 transparent;
  -webkit-box-shadow: -4px 5px 8px 0 transparent, -1px 2px 4px 0 transparent;
  -moz-box-shadow: -4px 5px 8px 0 transparent, -1px 2px 4px 0 transparent;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}

.about__anchor:before {
  content: "";
  background-image: url("/_resources/themes/widoczni/images/icons/arrow-right-green.svg");
  width: 21px;
  height: 21px;
  background-repeat: no-repeat;
}

.about__element:hover .about__anchor {
  box-shadow: -4px 5px 8px 0 rgba(0, 0, 0, 0.12),
    -1px 2px 4px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: -4px 5px 8px 0 rgba(0, 0, 0, 0.12),
    -1px 2px 4px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: -4px 5px 8px 0 rgba(0, 0, 0, 0.12),
    -1px 2px 4px 0 rgba(0, 0, 0, 0.1);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.about__element:hover .about__anchor:before {
  content: "";
  background-image: url("/_resources/themes/widoczni/images/icons/arrow-right.svg");
  width: 21px;
  height: 21px;
  background-repeat: no-repeat;
}

.artboard--training-1,
.artboard--training-2 {
  display: none;
}

.opinions__image {
  position: relative;
}

.opinions__opinion {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 15px;
  margin: 0 35px;
}

.opinions__opinion:first-child {
  margin-left: 0;
}

.opinions__opinion:last-child {
  margin-right: 0;
}

.opinions__opinion img {
  margin-bottom: 20px;
}

.opinions__opinion .single-rate {
  margin-top: auto;
  font-size: 26px;
  font-weight: 600;
}

.opinions__opinion .single-rate:after {
  position: relative;
  top: -1px;
}

.circle-number.scroll-to-top {
  opacity: 0;
  visibility: hidden;
  margin-bottom: 0;
  background-color: var(--primary-color);
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 40;
  cursor: pointer;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}

.circle-number.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  box-shadow: -4px 4px 8px 0 rgba(0, 0, 0, 0.17);
  -webkit-box-shadow: -4px 4px 8px 0 rgba(0, 0, 0, 0.17);
  -moz-box-shadow: -4px 4px 8px 0 rgba(0, 0, 0, 0.17);
}

.workfor__element {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 350px;
  max-width: 100%;
  margin-top: 45px;
}

.workfor__element img {
  margin-bottom: 20px;
  min-width: 200px;
  max-width: 200px;
}

.author {
  display: flex;
  align-items: center;
}

.author__image {
  width: 68px;
  min-width: 68px;
  height: 68px;
  margin-right: 30px;
}

.author--single-post {
  align-items: flex-start;
}

.author--single-post .author__image {
  min-width: 78px;
  width: 78px;
  height: 78px;
}

.author__name {
  margin: 0;
}

.author__position {
  font-size: 17px;
  margin-top: 3px;
  color: rgba(0, 0, 0, 0.7);
  letter-spacing: -0.3px;
  line-height: 1.4;
}

.opinion {
  width: 100%;
  margin: auto;
  margin-top: 60px;
  padding: 180px 60px 60px;
  text-align: left;
  min-height: 100%;
}

.opinion--light {
  margin-top: 0;
  padding-top: 90px;
  background-color: #fff;
}

.opinion--light .opinion__quote {
  margin-bottom: 50px;
}

.opinion__quote-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
}

.opinion__right {
  padding-left: 100px;
}

.opinion__quote-container .author,
.opinion .author {
  margin-top: 40px;
}

.opinion__content {
  width: 500px;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
  padding-top: 75px;
  padding-bottom: 75px;
}

.opinion__headers {
  width: 380px;
  max-width: 100%;
  margin: -30px auto 0;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.opinion__headers .h4 {
  margin-top: 0;
}

.slick-opinions--light,
.slick-opinions--light .slick-track,
.slick-opinions--light .slick-list {
  height: 100%;
}

.slick-arrow {
  height: 53px;
  width: 53px;
  right: 50px;
  top: 50px;
  border: 1px solid #e4e4e4;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  z-index: 10;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}

.slick-opinions .slick-arrow {
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  background-color: #fff;
}

.slick-arrow:hover {
  background-color: #e4e4e4;
}

.slick-dotted.slick-slider.slick-opinions {
  margin-bottom: 0;
}

.slick-opinions .slick-dots {
  top: 68px;
  left: 60px;
  bottom: initial;
  width: initial;
  text-align: left;
  display: flex;
  align-items: center;
}

.slick-opinions .slick-arrow.slick-prev {
  right: 110px;
  left: initial;
}

.slick-opinions--light .slick-arrow.slick-prev {
  left: 60px;
}

.slick-opinions .slick-arrow.slick-prev:before {
  content: "";
  background-image: url("/_resources/themes/widoczni/images/icons/arrow-left-green.svg");
  background-size: 21px;
  width: 21px;
  height: 21px;
  display: inline-flex;
}

.slick-opinions .slick-arrow.slick-next {
  right: 50px;
}

.slick-opinions--light .slick-arrow {
  bottom: 60px;
  top: initial;
  right: initial;
}

.slick-opinions--light .slick-arrow.slick-next {
  left: 120px;
}

.slick-opinions .slick-arrow.slick-next:before {
  content: "";
  background-image: url("/_resources/themes/widoczni/images/icons/arrow-right-green.svg");
  background-size: 21px;
  width: 21px;
  height: 21px;
  display: inline-flex;
}

.image-box-widoczni {
  margin-top: 90px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.image-widoczni {
  width: 20%;
  max-height: 300px;
}

.image-widoczni img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.image-box-widoczni__header {
  text-align: center;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, .55);
}

.image-box-widoczni__heading {
  display: flex;
  font-family: "Raleway", sans-serif;
  font-size: 101px;
  font-weight: 600;
  line-height: 0.7;
  letter-spacing: -3px;
  color: #fff;
  position: relative;
}

.image-box-widoczni__text {
  position: relative;
  z-index: 2;
}

.image-box-widoczni__border {
  width: 100%;
  height: 20px;
  background-color: var(--primary-color);
  position: absolute;
  left: 0;
  bottom: -10px;
  z-index: 1;
}

.adventures {
  margin-top: 70px;
}

.adventures .slick-slide {
  min-height: 185px;
}

.adventures--border .adventures__element {
  border: 1px solid #e4e4e4;
  padding: 15px;
}

.artboard-radius {
  top: 40px;
  left: 100px;
  position: absolute;
}

.artboard-radius.artboard-radius--top-left {
  top: -40px;
  left: 100px;
}

.artboard-radius--top-left~.my-container {
  margin-top: 90px;
}

.artboard-radius~.my-container {
  position: relative;
  z-index: 1;
}

.adventures__element {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.adventures__icon {
  margin-right: 30px;
  min-width: 200px;
  width: 200px;
}

.content {
  margin-left: 0;
  margin-right: 0;
}

.content__image,
.content__description {
  padding-left: 0;
  padding-right: 0;
}

.content__image picture {
  display: flex;
  height: 100%;
}

.content__image picture:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: url('/_resources/themes/widoczni/images/szkolenia-mask.png');
  background-size: cover;
}

.content__image .relative {
  height: 100%;
}

.content__image > div:not(.no-mask) picture:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(0, 0, 0, .3);
}

.content__image picture img {
  width: 100%;
  max-height: 100vh;
  object-fit: cover;
  min-height: 100%;
}

.content__description {
  background-color: #f0f0f0;
}

.content__description--dark {
  background-color: var(--dark-color);
}

.content__description--dark li {
  margin-bottom: 30px;
}

.content__description--dark li:before {
  margin-bottom: 30px;
}

.content__description--light {
  background-color: #fff;
}

.row-align-center {
  align-items: center;
}

.content__inside {
  color: #000;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 540px;
  max-width: 100%;
  margin: auto;
  padding: 30px 15px;
}

.content__description--dark .content__inside {
  color: #fff;
}

.content__inside--left {
  align-items: flex-start;
  text-align: left;
  margin-left: 0;
}

.content__inside.content__inside--left {
  width: 480px;
}

.content__inside.content__inside--right {
  width: 510px;
}

.content__inside--right {
  align-items: flex-start;
  text-align: left;
  margin-right: 0;
}

.content__inside .h3,
.content__inside h3 {
  margin-top: 0;
}

.content__image-description {
  position: absolute;
  top: 47.5%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  z-index: 3;
}

.content__training {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 375px;
  max-width: 100%;
  margin: auto;
}

.content__training .h4 {
  margin-top: 0;
}

.content__training .play-video {
  margin-top: 35px;
}

.content__pictures {
  align-items: center;
}

.content__pictures--mosaic {
  display: flex;
}

.go-to-section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  min-width: 78px;
  height: 78px;
  min-height: 78px;
  border: 0px solid #fff;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  padding: 0px !important;
  position: relative;
  bottom: 5px;
}

.column-mosaic-1 {
  width: 282px;
  min-width: 282px;
  max-width: 100%;
  margin-right: 24px;
}

.column-mosaic-2 {
  width: 506px;
  min-width: 506px;
  max-width: 100%;
}

.column-mosaic-1 picture,
.column-mosaic-2 picture {
  display: flex;
}

.content__pictures picture img {
  margin-bottom: 24px;
}

.slick-dots>li {
  display: inline-block;
}

.slick-dots>li:only-child {
  display: none;
}

.content__pictures picture:last-child img {
  margin-bottom: 0;
}

.certificates {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.certificates__certificate {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 21px 12px;
  width: calc(20% - 24px);
}

.posts {
  margin-top: 50px;
}

.posts .slick-dots {
  position: static;
}

.posts--center .post__description {
  text-align: center;
  align-items: center;
}

.posts--center .post__description p.small {
  margin: initial
}

.post_category_lead {
  line-height: 30px;
}

.post.col-lg-4 {
  display: inline-grid;
  height: auto;
  margin-bottom: 35px;
}

.post.related-post .badge {
  width: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -15px;
  z-index: 1;
}

.post.related-post .badge svg {
  width: 30px;
}

.post.related-post .badge path {
  fill: var(--primary-color);
}

.post .post__image img {
  width: 100%;
  object-fit: cover;
  height: 255px;
}

.post__content {
  border: 1px solid #e4e4e4;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: -10px 10px 10px 0 transparent;
  -webkit-box-shadow: -10px 10px 10px 0 transparent;
  -moz-box-shadow: -10px 10px 10px 0 transparent;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  outline: none;
}

.post.slick-slide .post__content {
  height: 100%;
}

.post__content:hover {
  box-shadow: -10px 10px 10px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: -10px 10px 10px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: -10px 10px 10px 0 rgba(0, 0, 0, 0.1);
}

.post__description.text-left {
  text-align: left;
}

.post__description {
  height: 100%;
  padding: 35px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.post__labels {
  display: flex;
  color: #888;
  flex-wrap: wrap;
}

.post__label {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  line-height: 1.7;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-align: center;
  padding-right: 15px;
  margin-right: 15px;
  position: relative;
  color: var(--primary-color);
}

.post__label:last-child {
  margin-right: 0;
  padding-right: 0;
}

.post__label--big {
  font-size: 15px;
}

.post__label a {
  color: var(--primary-color);
}

.post__label:not(:last-child):before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  background-color: var(--primary-color);
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.post__additional {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(0, 0, 0, .7)
}

.post__author {
  display: flex;
  align-items: center;
}

.post__author__image {
  min-width: 40px;
  height: 40px;
  margin-right: 12px;
}

.post__date,
.post__author__name {
  margin: 0;
  font-size: 17px;
  color: rgba(0, 0, 0, .7);
  letter-spacing: -0.3px;
}

.post__heading {
  margin-top: 10px !important;
  margin-bottom: 30px;
  color: #000;
}

.post__date {
  margin-left: 15px;
  padding-left: 15px;
  position: relative;
}

.post__date:before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  background-color: var(--dark-color);
  opacity: 0.7;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.circle-number-with-text {
  display: flex;
  align-items: center;
  margin-bottom: 45px;
}

.circle-number-with-text .circle-number {
  margin-bottom: 0;
}

.circle-number-with-text .h4 {
  margin-left: 35px;
  margin-top: 0;
}

.clients {
  padding-top: 70px;
  align-items: center;
  position: relative;
}

.clients__client {
  white-space: nowrap;
}

.clients:before {
  content: '';
  width: calc(100% - 30px);
  height: 1px;
  top: 0;
  left: 15px;
  border-top: 1px solid #e4e4e4;
  position: absolute;
}

.clients__anchor {
  text-align: right;
}

.clients__anchor a {
  max-height: 57px;
  ;
}



.clients__slider {
  margin-top: 100px;
  margin-left: -15px;
  margin-right: -15px;
}

.clients__logo {
  display: inline-flex !important;
  align-items: center;
  height: auto;
  margin-right: 60px;
  margin-bottom: 30px;
}

.slick-opinions .slick-track,
.posts .slick-track,
.about .slick-track,
.clients__slider .slick-track {
  display: flex;
}

.about .slick-dots {
  position: static;
  margin-top: 15px;
}

.slick-opinions .slick-track .slick-slide,
.about .slick-track .slick-slide,
.posts .slick-track .slick-slide {
  height: auto;
}

.posts .slick-track .slick-slide {
  margin: 0 15px;
}

.about .slick-track .slick-slide {
  margin: 0 12px 70px;
  max-height: 500px;
  ;
}

.slick-history-of-cooperation div[data-element="slick-slide"],
.slick-slide {
  outline: none;
}

.slick-history-of-cooperation a {
  color: #000
}

.slick-history-of-cooperation .slick-slide .row {
  margin-left: 0;
  margin-right: 0;
}

.slick-history-of-cooperation .slick-slide .slick-history-of-cooperation__content,
.slick-history-of-cooperation .slick-slide .slick-history-of-cooperation__image {
  padding-left: 0;
  padding-right: 0;
}

.slick-history-of-cooperation .slick-slide .slick-history-of-cooperation__content {
  border: 1px solid #e4e4e4;
  border-left: 0;
}

.section.footer {
  background-color: var(--dark-color);
  padding-top: 100px;
  padding-bottom: 70px;
  color: #fff;
  overflow: hidden;
}

.footer .footer-person {
  position: relative;
  margin-top: -200px;
}

.footer__data {
  margin-top: 120px;
}

.footer__data p {
  margin: 0;
}

.footer__data .h4 {
  margin-top: 0;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.14;
  letter-spacing: -0.5px;
}

.footer__social-links {
  margin-top: 65px;
  display: flex;
}

.footer__social-link {
  width: 65px;
  height: 65px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  margin-right: 8px;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}

.footer__social-link:hover {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}

.footer__social-link:last-child {
  margin-right: 0;
}

.footer__headquarter {
  font-size: 17px;
  letter-spacing: -0.3px;
  line-height: 1.4;
  margin-bottom: 30px;
}

.footer__headquarters .col-md-4:last-child .footer__headquarter {
  margin-bottom: 0;
}

.footer__headquarter a {
  color: #fff;
}

.headquarter__name {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.headquarter__phone {
  margin-top: 20px;
}

.headquarter__phone,
.headquarter__address {
  font-weight: normal;
}

.write-for {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.write-for .h5 {
  margin-top: 0;
  min-width: 140px;
  max-width: 100%;
}

.write-for__images {
  align-items: center;
  flex-wrap: wrap;
  padding-left: 150px;
  width: calc(100% - 140px);
  white-space: nowrap;
}

.write-for__image {
  margin-right: 50px;
  display: inline-block !important;
  vertical-align: middle;
  height: auto;
}

.write-for__image:last-child {
  margin-right: 0;
}

.footer-anchors {
  display: flex;
  justify-content: space-between;
}

.footer-anchor__header {
  margin-top: 0;
}

.footer-anchor {
  max-width: 250px;
  margin: 0 25px 30px;
}

.footer-anchor:first-child {
  margin-left: 0;
}

.footer-anchor:last-child {
  margin-right: 0;
}

.footer-anchor__links {
  display: flex;
  flex-direction: column;
  margin-top: 25px;
}

.footer-anchor__link {
  display: flex;
  color: rgba(255, 255, 255, .7);
  font-size: 17px;
  font-weight: normal;
  letter-spacing: -0.3px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer-anchor__link:last-child {
  margin-bottom: 0;
}

.footer-anchor__link--large {
  font-size: 21px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 25px;
}

.footer-anchor__link--large:last-child {
  margin-bottom: 0;
}

.other-posts .h3 {
  padding-bottom: 35px;
}

.copyright {
  display: flex;
  color: rgba(255, 255, 255, .7);
  font-size: 17px;
  font-weight: normal;
  letter-spacing: -0.3px;
  line-height: 1.4;
  justify-content: space-between
}

.copyright a {color: rgba(255, 255, 255, .7)}

.cookies {
  position: fixed;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 100vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: -16px 16px 32px 0 rgba(67, 86, 100, 0.17);
  -webkit-box-shadow: -16px 16px 32px 0 rgba(67, 86, 100, 0.17);
  -moz-box-shadow: -16px 16px 32px 0 rgba(67, 86, 100, 0.17);
  padding: 25px 30px;
  z-index: 100;
  background-color: #f0f0f0;
}


.cookies-layer {
  display: flex;
  width: 100vw;
  position: fixed;
  top: 0px;
  z-index: 100;
  background-color: rgb(0, 0, 0, 0.5);
}

.cookies-layer .hungruman {
  position: absolute;
  top: -85px;
  right: 67px;
}

.cookies__text {
  color: rgba(0, 0, 0, .7);
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.6px;
  margin-right: 100px;
}

.cookies .btn {
  font-size: 13px;
  padding: 9px 25px 8px;
}

.contact__section {
  background-color: var(--dark-color);
  padding: 50px 80px;
  color: #fff;
  display: flex;
  overflow: hidden;
  position: relative;
}

.contact__data {
  width: 500px;
  max-width: 100%;
}

.post__heading {
  padding-bottom: 5px;
}

.contact__data .btn {
  margin-top: 40px;
}

.contact__icon {
  background: url('/_resources/themes/widoczni/images/icons/footer-person.svg');
  background-size: cover;
  width: 522px;
  height: 503px;
  max-width: 100%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.CTA-tile-data, .CTA-tile-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  float:right;
}

.CTA-tile-content {
  align-items: center;
}


.cta_tile {
  height: 180;
  background-size: 100% 100%;
  background-position: 0px 0px;
  background-image: linear-gradient(135deg, #034b71 1%, #2fbdff 68%);
  padding: 8px 50px;
  color: #fff;
  border-image: linear-gradient(103deg, #7140e4 1%, #7851fa 68%) 1;
  border-width: 3px 2px 1px 0px;
  border-style: solid;
  margin-right: -30px;
}

.cta_tile .CTA-tile-title, .cta_tile .CTA-tile-slogan { width: 100%; min-width:185px;}
.cta_tile .CTA-tile-button {
  width: 180px;
  display: inline-block;
  font-size: 10px;
  background:#22272b;
  border-radius: 5px;
  outline: 5px solid #22272b;
  border: 1px solid #fff;
  height: 30px;
  padding-top: 8px;
  color: #fff;
  font-weight: bold;
  min-width: 145px;
  cursor: pointer;
}

.cta_tile .clutch-widget {
  display: block;
  transform: scale(1.8);
  width: 130px;
}

.cta_arrow_tile_inner, .cta_laptop_tile_inner {
  position: relative; 
  height: 330px;
}
.CTA-tile-arrow-data {
  color: #fff;
  padding: 60px 0px 40px 130px;
}

.CTA-arrow-title {
  position: relative; /* or absolute, fixed, sticky */
  z-index: 999;
  letter-spacing: 1px;
}

.cta_arrow_tile {
  height: 330px;
  padding: 8px 50px;
  background: url('../images/cta-background2.png');
  background-size: cover;
  max-width: 100%;
}

.cta_laptop_tile {
  height: 330px;
  padding: 8px 50px;
  background: url('../images/cta-background.png');
  background-size: cover;
  max-width: 100%;
}

.cta__arrow_icon {
  height: 315px;
  width: 340px;
  background: url('../images/cta-arrow.png');
  background-size: cover;
  max-width: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
}

.cta__laptop_icon {
  height: 315px;
  width: 600px;
  background: url('../images/cta-laptop.png');
  background-size: cover;
  max-width: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
}


@media (max-width: 1500px) {
  .cta_tile {padding: 10px 10px;}
  .cta_tile .clutch-widget { transform: scale(1.5); }
}

@media (max-width: 950px) {
  .cta__laptop_icon {transform: scale(0.7, 0.7) translate(100px, 80px);}
  .cta_laptop_tile_inner, .cta_laptop_tile  {height: 240px;}
  .CTA-laptop-button {transform: scale(0.7, 0.7) translate(-80px, -50px); margin-top: 50px !important;}
}

@media (max-width: 800px) {
  .CTA-tile-laptop-data {
    padding-left: 60px !important;
  }
}

@media (max-width: 700px) {
  .CTA-tile-arrow-data {padding: 25px 60px;}
  .cta__laptop_icon {width: 80%;}
}

@media (max-width: 576px) {
  .cta_tile .clutch-widget {width:75%; padding: 0px; margin:15px; transform: scale(1.1);}
  .cta_tile .CTA-tile-button {display: none;}
  .cta_tile .CTA-tile-slogan { text-align: justify;}
  .cta__arrow_icon {transform: scale(0.5, 0.5) translate(170px, 150px);}
  .cta_arrow_tile_inner, .cta_arrow_tile  {height: 240px;}
  .CTA-arrow-button {transform: scale(0.7, 0.7);}
  .cta__laptop_icon {transform: scale(0.5, 0.5) translate(140px, 160px);}
  .CTA-laptop-button {margin-top: 70px !important;}
}

@media (max-width: 400px) {
  .CTA-arrow-button {transform: scale(0.7, 0.7) translate(-80px, -50px);}
  .cta__laptop_icon {opacity: 0.6; width: 100%;}
}

.CTA-arrow-button, .CTA-laptop-button {
  margin-top: 72px !important;
  margin-left: 5px !important;
  background-color: #41c207 !important;
  width: 330px;
  height: 70px !important;
  color: #fff;
  padding: 20px;
  border-radius: 35px !important;
  border: 1px solid white !important;
  font-size: 22px !important;
  z-index: 9999;
}

.single-post {
  display: flex;
  flex-wrap: wrap;
  padding-top: 60px;
}

.single-post__head {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
  width: 1050px;
  max-width: 100%;
  margin: auto;
}

.single-post__head h1 {
  font-size: 70px;
  font-weight: 700;
  letter-spacing: -1.8px;
  width: 100%;
  padding-top: 60px;
}

.single-post__body {
  width: 100%;
  margin-top: 150px;
  position: relative;
  min-height: 250px;
}

.single-post__body h2 {
  font-size: 40px
}

.single-post__body h3 {
  font-size: 28px
}

.single-post__wyswiyg-section {
  width: 800px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 70px;
}

.single-post__wyswiyg-section--border {
  position: relative;
}

.single-post__wyswiyg-section--border:before {
  content: '';
  border-top: 1px solid #e4e4e4;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  position: absolute;
}

.single-post__wyswiyg-section:first-child {
  padding-top: 0;
}

.single-post__wyswiyg-section .col--spaces {
  margin-bottom: 60px;
}

.single-post__wyswiyg-section .h4:first-of-type::first-letter {
  color: var(--primary-color);
  font-size: 75px;
  line-height: 72px;
  margin-right: 5px;
  float: left;
}

.single-post__media {
  position: fixed;
  top: 50%;
  left: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.single-post__media-anchor {
  margin-bottom: 40px;
}

.single-post__image-with-desc {
  width: 100%;
  border: 1px solid #e4e4e4;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 80px;
  text-align: center;
  justify-items: center;
}

.single-post__image-with-desc--secondary {
  background-color: #f0f0f0;
}

.single-post__image-with-desc .wysiwyg-content {
  width: 100%;
  margin-top: 35px;
}

.single-post__image-with-desc .wysiwyg-content small {
  margin-top: 5px;
  display: inline-flex;
}

.post__creator {
  margin-bottom: 60px;
  margin-top: 40px;
  display: flex;
  align-items: center;
}

.tabs-scroll {
  display: flex;
  justify-content: space-between;
  margin-top: 70px;
}

.tabs-scroll__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 300px;
  min-width: 300px;
  max-width: 100%;

  overflow-y: auto;
}

.tabs-scroll__list::-webkit-scrollbar {
  width: 4px;
}

.tabs-scroll__list::-webkit-scrollbar-track {
  background: #e4e4e4;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
}

.tabs-scroll__list::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
}

.tabs-scroll__list::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

.tabs-scroll__content {
  display: none;
  width: 100%;
  margin-left: 70px;
  text-align: left;
}

.tabs-scroll__content--active {
  display: block;
}

.tabs-scroll__content p:first-child {
  margin-top: 0;
}

.tabs-scroll__option {
  text-align: left;
  cursor: pointer;
}

.tabs-scroll__option.h5 {
  padding: 12px 0;
  margin: 9px 0;
}

.tabs-scroll__option--active,
.tabs-scroll__option--disabled {
  pointer-events: none;
  width: 100%;

}

.tabs-scroll__option--active::after {
  background-color: var(--primary-color);
  content: '.';
  width: 4px;
  height: 35px;
  padding: 5px 0;
  display: block;
  position: absolute;
  top: 5px;
  right: 0px;
  border-radius: 4px;
  ;
}

.tabs-scroll__option--active {
  color: var(--primary-color);
  position: relative;
}

.form-light {
  background-color: #f0f0f0;
}

.form-light {
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
}

.form-light h5 {
  padding-bottom: 80px;
}

.form-light .contact-form__bottom,
.form-light label,
.form-light .contact-form__header {
  color: #000;
}

.contact-people {
  text-align: center;
}

.contact-people-space {
  margin-top: 100px;
  display: flex;
}

.contact-column {
  text-align: left;
  margin-bottom: 40px;
}

#ourPlaces {
  overflow: hidden;
}

#ourPlaces .artboard {
  top: -60px;
  right: -30px;
  max-height: initial;
}

.contact-element {
  display: flex;
  align-items: center;
  margin-top: 40px;
}

.contact-element .h4,
.contact-element .label-title {
  margin: 0;
}

.contact-element__icon {
  margin: 0 20px;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  box-shadow: -4px 4px 8px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: -4px 4px 8px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: -4px 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.customer-advisers {
  margin-top: 10px;
  margin-bottom: 80px;
}

.customer-advisers--center {
  text-align: center;
}

.customer-advisers__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 50px;
}

.text-center .customer-advisers__column {
  align-items: center;
}

.customer-advisers__position {
  margin-top: 6px;
  font-size: 17px;
  line-height: 1.4;
  color: rgba(0, 0, 0, .7);
  margin-bottom: 30px;
}

.customer-advisers__contact {
  margin-top: auto;
  font-family: "Raleway", sans-serif;
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: -0.5px;
  color: #5b5b5b;
}

.customer-advisers__phone a {
  color: #000;
}

.customer-advisers__mail a {
  color: var(--primary-color);
  word-break: break-all;
  text-decoration: none;
}

.slick-company-history .slick-list {
  margin-top: 80px;
  cursor: grab;
}

.slick-company-history .slick-track {
  display: flex;
}

.slick-company-history__slide {
  position: relative;
}

.slick-company-history__images {
  display: flex;
  margin-bottom: 40px;
  height: 100%;
}

.slick-company-history__images a {
  margin-right: 12px;
  display: none;
  position: relative;
  min-width: 100px;
}

.slick-company-history .more-images-available {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, .7);
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slick-company-history .more-images-available .circle-number {
  background-color: #fff;
  margin: 0;
  border: 0;
  color: var(--primary-color);
}

.slick-company-history__images a img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.slick-company-history__images a:nth-child(1),
.slick-company-history__images a:nth-child(2) {
  display: inline-block;
}

.slick-company-history__images a:nth-child(2) {
  margin-right: 0;
}

.slick-company-history .slick-slide {
  margin-right: 100px;
  display: flex;
  flex-direction: column;
  height: auto;
}

.slick-company-history__content {
  margin-top: auto;
}

.slick-company-history__slide.wysiwyg-content p {
  margin-top: 8px !important;
}

.slick-company-history__year {
  margin-top: 100px;
  padding-top: 30px;
  position: relative;
}

.slick-company-history__year:before {
  content: '';
  display: flex;
  height: 11px;
  width: 11px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  background-color: var(--primary-color);
  position: absolute;
  top: 0;
  left: 0;
}

.slick-company-history__year:after {
  content: '';
  display: flex;
  position: absolute;
  width: calc(100% + 100px);
  height: 1px;
  top: 5px;
  left: 5px;
  background-color: var(--primary-color);
}

.company-history-points {
  margin-top: 20px;
}

.company-history-points__point {
  margin-top: 65px;
  outline: none;
}

.company-history-points__point .circle-number {
  margin-bottom: 40px;
}

.company-history-points__content {
  width: 560px;
  max-width: 100%;
}

.table-price-service {
  display: flex;
  margin-top: 50px;
}

.table-price-service__data {
  width: 100%;
  padding: 45px 0 25px 0;
  margin-right: 25px;
}

.table-price-service__data .h5,
.table-price-service__data h5 {
  padding-left: 30px;
}

.table-price-service__offer {
  width: 550px;
  min-width: 445px;
  background-color: #f0f0f0;
  padding: 50px 20px;
  text-align: center;
}

.table-price-service__offer h5 {
  display: inline;
}

.table-price-service__offer p {
  padding: 35px;
  margin: 0 !important;
  border-bottom: 1px solid rgba(151, 151, 151, .3);
}

.table-price-service__offer.wysiwyg-content p .h3,
.table-price-service__offer.wysiwyg-content p .h4,
.table-price-service__offer.wysiwyg-content p .h5 {
  color: #000;
}

.table-price-service__offer p:last-of-type {
  border-bottom: 0;
}

.table-price-service__data .table {
  margin-top: 40px;
}

.content-text-image {
  margin-top: 90px;
  display: flex;
}

.content-text-image__text {
  width: 750px;
  max-width: 100%;
  margin-right: 60px;
}

.content-text-image__image {
  width: 400px;
  min-width: 400px;
  position: relative;
}

.content-text-image__image .data-on-image {
  position: absolute;
  height: 85%;
  width: 100%;
  left: 0;
  top: 0;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}

.opinion__side {
  padding-left: 0;
  padding-right: 0;
}

.opinion__side .opinion {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.slick-history-of-cooperation__content {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.slick-history-of-cooperation__content .wysiwyg-content {
  width: 400px;
  margin: auto;
  max-width: 100%;
}

.slick-history-of-cooperation__logo {
  margin: 30px auto 0;
}

.slick-dots li.slick-active button:before,
.slick-history-of-cooperation .slick-dots li.slick-active button:before {
  background-color: var(--primary-color);
  border: 0;
}

.slick-history-of-cooperation .slick-dots {
  position: static;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.quote {
  width: 960px;
  max-width: 100%;
  margin: 80px auto 0;
}

.quote__title:before {
  content: '';
  float: left;
  background-image: url('/_resources/themes/widoczni/images/icons/quote.svg');
  min-width: 120px;
  width: 120px;
  height: 100px;
  background-size: cover;
  background-repeat: no-repeat;
  margin-right: 70px;
}

.quote__title {
  width: 100%;
  display: flex;
}

.quote__author {
  display: flex;
  align-items: center;
  margin-top: 30px;
  padding-left: 190px;
}

.quote__author .h5:nth-child(1n) {
  margin-right: 25px;
}

.content__pictures .col-5 {
  padding-left: 0;
  padding-right: 12px;
}

.content__pictures .col-7 {
  padding-right: 0;
  padding-left: 12px;
}

/* CUSTOM SELECT */

.custom-select {
  position: relative;
  display: flex;
  align-items: center;
}

.custom-select select {
  display: none;
}

.select-selected {
  background-color: #fff;
}

.select-selected:after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: 0;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-color: #000 transparent transparent transparent;
}

.select-selected.select-arrow-active:after {
  border-color: transparent transparent #000 transparent;
  top: 7px;
}

.select-items div,
.select-selected {
  padding: 4px 15px 5px 8px;
  cursor: pointer;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}

.select-items {
  position: absolute;
  background-color: #f2f2f2;
  top: 100%;
  width: 250px;
  right: 0;
  z-index: 99;
}

.hero__image-mobile,
.select-hide {
  display: none;
}

.select-items div:hover,
.same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

/* CUSTOM SELECT */

/* GLOBAL STYLES */

.custom-checkbox {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.custom-checkbox~span:before {
  content: "\2713";
  color: #fff;
  font-weight: bold;
  justify-content: center;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1;
  width: 15px;
  height: 15px;
  background-color: #fff;
  border: 1px solid #e4e4e4;
  display: inline-flex;
  margin-right: 15px;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  position: relative;
  top: -1px;
}

.custom-checkbox:checked~span:before {
  content: "\2713";
  color: var(--dark-color);
  border-color: var(--dark-color);
}

.custom-checkbox:hover,
.custom-checkbox~span:hover:before {
  border-color: var(--dark-color);
}

.columns-with-descriptions {
  margin-top: 80px;
}

.columns-with-descriptions__content {
  background-color: #fff;
  margin-top: 50px;
}

.columns-with-descriptions__element {
  padding: 45px;
  border-bottom: 1px solid #e4e4e4;
}

.wysiwyg-content .columns-with-descriptions__element p {
  font-size: 17px;
}

.wysiwyg-content .columns-with-descriptions__element p.small {
  margin-top: 10px;
}

.columns-with-descriptions__heading:nth-child(1n) {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 100%;
  margin: auto;
}

.list-with-circles {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 20px;
}

.list-element-with-circle {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  text-align: left;
  color: #fff;
  margin-top: 30px;
}

.list-element-with-circle .circle-number {
  min-width: 65px;
  color: var(--primary-color);
  margin-right: 30px;
}

.list-element-with-circle__content {
  width: 100%;
}

.wysiwyg-content .list-element-with-circle__content p,
.list-element-with-circle__content p {
  color: #fff;
}

.table-container {
  max-width: 100%;
  overflow: hidden;
}

.table {
  width: 100%;
  display: table;
  color: rgba(0, 0, 0, .7);
  font-size: 19px;
  overflow: hidden;
}

.tbody {
  display: table-row-group;
}

.thead {
  display: table-header-group;
}

.tbody .tr {
  display: table-row;
}

.tbody .tr .td {
  display: table-cell;
  padding: 25px 10px;
  border-top: 1px solid #e4e4e4;
}

.tbody .tr:nth-child(even) .td {
  background-color: #fff;
}

.tbody .tr:nth-child(odd) .td {
  background-color: #f0f0f0;
}

.thead .th {
  display: table-cell;
  padding: 35px 10px;
  border-top: 1px solid rgb(240, 240, 240);
}

.tbody .tr .td:first-child,
.thead .th:first-child {
  padding-left: 30px;
}

.small-border {
  width: 75px;
  height: 3px;
  display: inline-block;
  background-color: var(--primary-color);
}

.row--margins {
  margin-left: -15px;
  margin-right: -15px;
}

.row--margins-right {
  margin-right: -15px;
}

.row--no-margins {
  margin-left: 0;
  margin-right: 0;
}

.col--no-paddings {
  padding-left: 0;
  padding-right: 0;
}

.video-static {
  width: 100%;
  height: auto;
}

.video-box .vjs-has-started {
  z-index: 6;
}

.video-static .vjs-tech {
  position: relative;
}

a {
  outline: none;
}

.validation-ok {
  color: green !important
}

.validation-ok,
.validation-error {
  color: red;
  margin: 10px 0 0 0;
  font-size: 14px;
  text-align: left;
}

.primary-color {
  color: var(--primary-color);
}

.space40 {
  display: flex;
  height: 40px;
  width: 100%;
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.relative {
  position: relative;
}

.w-100 {
  width: 100%;
}

.min-h-50 {
  min-height: 50%;
  margin-bottom: 12px !important;
}

.min-h-55 {
  min-height: 55%;
  margin-bottom: 0px !important;
}

.min-h-60 {
  min-height: 60%;
  margin-bottom: 12px !important;
}

.min-h-65 {
  min-height: 67%;
}

.min-h-70 {
  min-height: 70%;
  margin-bottom: 10px !important;
}

.min-h-75 {
  min-height: 75%;
  margin-bottom: 0px !important;
}

.min-h-80 {
  min-height: 81%;
  margin-bottom: 0px !important;
}

.min-h-100 {
  min-height: 100%;
}

.contact-form-textarea {
  height: calc(100% - 12px) !important;
}

.min-h-50 .validation-error {
  margin-top: 5px !important;
}

.d-flex {
  display: flex;
}

label {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 10px;
}

label span {
  font-size: 16px;
  line-height: 1.4;
  color: #979797;
}

.form__group {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 24px;
  width: 100%;
}

.form__group:last-child {
  margin-bottom: 0;
}

.form__input {
  height: 50px;
  background-color: #fff;
  outline: none;
  border: 0;
  width: 100%;
  padding-left: 20px;
  font-family: "Raleway", sans-serif;
  font-size: 17px;  
  font-stretch: normal;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
}

.form__input--textarea {
  height: calc(100% - 25px);
  min-height: 200px;
  padding-top: 10px; 
  font-family: "Raleway", 
  sans-serif;
  font-size: 17px;  
  font-stretch: normal;
  font-style: normal;
  line-height: 1.7;
  font-weight: normal;
  letter-spacing: normal;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 30px 0 0;
}

.h1:first-child,
h1:first-child,
.h2:first-child,
h2:first-child,
h3:first-child,
.h3:first-child,
h4,
.h4:first-child,
h5:first-child,
.h5:first-child,
h6:first-child,
.h6-first-child {
  margin: 0;
}

.h1,
h1 {
  font-weight: 600;
  font-size: 70px;
}

.h2,
h2 {
  font-weight: 700;
  letter-spacing: -1.8px;
  font-size: 40px;
}

.section-title {
  font-size: 40px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: -0.6px;
}

.h3,
h3 {
  font-weight: 600;
  line-height: 1.25;
  font-size: 28px
}

h4,
.h4 {
  line-height: 1.3;
  letter-spacing: -0.5px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.29;
  letter-spacing: -0.5px;
  font-size: 28px
}

h4,
.h4 a {
  color: inherit;
}

h5,
.h5 {
  line-height: 1.3;
  font-weight: 600;
}

form {
  width: 100%;
}

.label-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: var(--primary-color);
  text-transform: uppercase;
  margin-bottom: 45px;
}

.section {
  margin-top: 90px;
  background-color: #fff;
  position: relative;
  padding-bottom: 10px;
}

.section--border .my-container {
  position: relative;
}

.section--border .my-container:after {
  content: '';
  position: absolute;
  left: 0;
  top: -60px;
  height: 1px;
  width: 100%;
  border-top: 1px solid #e4e4e4;
}

.section--primary {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: var(--primary-color);
}

.section--secondary {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #f0f0f0;
}

.section--light--desktop .slick-opinions {
  background-color: #fff;
}

.my-container {
  width: 1500px;
  max-width: 100%;
  margin: auto;
}

.my-container--small {
  width: 1200px;
}

.my-container--eye {
  width: 1250px;
}

.my-container--mosaic {
  width: 1360px;
}

.my-container--about {
  width: 1224px;
}

.wyswig-cols {
  margin-left: -15px;
  margin-right: -15px;
  padding-left: 0;
  padding-right: 0;
}

.wyswig-cols .col-lg-4,
.wyswig-cols .col-lg-6 {
  padding-right: 10px;
  padding-left: 10px;
}

.simple-text-section .my-container--small {
  width: 1180px;
  padding-left: 0px;
  padding-right: 0px;
}

.my-container--right {
  width: calc(100% - ((100% - 1250px)/2));
  margin-right: 0;
}

img {
  max-width: 100%;
  height: auto;
}

.text-center {
  text-align: center;
}

a,
a:hover,
a:focus,
a:active,
a:active:focus {
  text-decoration: none;
}

.primary-anchor,
.primary-anchor:hover,
.primary-anchor:focus,
.primary-anchor:active,
.primary-anchor:active:focus {
  color: var(--primary-color);
}

@media (min-width: 1200px) {
  .home .sections>.section:nth-child(1) {
    margin-top: 20px !important;
  }
}

.mt-1 {
  margin-top: 10px !important;
}

.mt-2 {
  margin-top: 20px !important;
}

.mt-3 {
  margin-top: 30px !important;
}

.mt-4 {
  margin-top: 40px !important;
}

.mt-5 {
  margin-top: 50px !important;
}

.mt-6 {
  margin-top: 60px !important;
}

.mt-7 {
  margin-top: 70px !important;
}

.mt-8 {
  margin-top: 80px !important;
}

/* BUTTONS */

.btn {
  font-family: "Raleway", sans-serif;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  letter-spacing: 0.6px;
  text-align: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border: 1px solid transparent;
  background-color: transparent;
  outline: none;
  text-decoration: none;
  text-transform: uppercase;
  padding: 23px 47px 23px;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  cursor: pointer;
}

.btn--font {
  font-size: 15px;
}

.btn--primary {
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.btn--shadow:hover,
.btn--outline--secondary:hover,
.btn--secondary:hover,
.btn--primary:hover {
  box-shadow: -12px 12px 23px 0 rgba(0, 0, 0, 0.17);
  -webkit-box-shadow: -12px 12px 23px 0 rgba(0, 0, 0, 0.17);
  -moz-box-shadow: -12px 12px 23px 0 rgba(0, 0, 0, 0.17);
}

.btn--secondary {
  border-color: #bcbcbc;
  background-color: #bcbcbc;
}

.btn--outline.btn--outline--light {
  border-color: #fff;
  color: #fff;
}

.btn--outline--light:hover {
  background-color: #fff;
  color: var(--dark-color);
}

.btn--outline--secondary.invert-colors {
  color: #fff;
  background-color: var(--dark-color);
}

.btn--outline--secondary.invert-colors:hover {
  color: #fff;
  background-color: var(--primary-color);
}

.btn--outline--secondary {
  border-color: #bcbcbc;
  color: var(--dark-color);
}

.btn--outline--secondary:hover {
  background-color: #bcbcbc;
  color: #fff;
}

.btn--outline {
  border-color: #bcbcbc;
}

.btn--small {
  padding: 15px 18px 15px;
}

.btn--medium {
  padding: 18px 28px 17px;
}

.btn-icon {
  margin-right: 15px;
}

.data-on-image .btn,
.contact__data .btn,
.footer .btn--primary:hover {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}

.data-on-image .btn:hover,
.contact__data .btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.artboard {
  position: absolute;
  top: 0;
  right: 0;
  max-height: 100%;
}

.artboard.artboard-mosaic-photo-section {
  max-height: initial;
  top: -70px;
  right: -100px;
}

.artboard-CTA-clutch {
  max-height: 600px;
  top: -200px;
  right: 30%;
}

.artboard-CTA-arrow {
  right: 70px !important;
  opacity: 0.4;
}

.artboard-opinie-o-nas {
  max-height: initial;
  top: -145px;
  right: -40px;
}

.artboard.artboard--hero {
  position: absolute;
  top: -750px;
  right: -300px;
  max-height: initial;
  z-index: 0;
  transform: rotate(-360deg);
}

.section-artboard .artboard {
  max-height: initial;
}

.artboard~.my-container .content .content__description {
  background-color: transparent;
}

.video-circle {
  overflow: hidden;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  width: 600px;
  height: 600px;
  min-height: 330px;
  max-height: calc(100vw - 60px);
  max-width: 100%;
  position: relative;
}

.video-circle .play-video {
  cursor: pointer;
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.video-circle .video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.video-circle-container {
  margin-top: 170px;
}

.video-circle-container .artboard-radius {
  right: -40px;
  left: initial;
  top: -190px;
}

.artboard--around-circle.artboard {
  bottom: -25px;
  left: -40px;
  top: initial;
  right: initial;
  max-height: initial;
  max-width: initial;
}

.hero--subpage .artboard {
  right: 50%;
  top: 20%;
  transform: translateX(50%);
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  max-height: initial;
  z-index: 1;
}

.hero__other-posts-container {
  position: absolute;
  width: 1580px;
  padding-right: 40px;
  max-width: 100%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  pointer-events: none;
  display: flex;
  justify-content: flex-end;
  bottom: 90px;
  z-index: 40;
}

.hero__other-posts-container .hero__other-posts {
  pointer-events: all;
}

.whyUs .artboard {
  left: -25%;
  bottom: -50%;
  top: auto;
  right: initial;
  max-height: initial;
}

.whyUs .my-container {
  position: relative;
  z-index: 1;
}

.features {
  margin: 60px 0 0;
}

.section--secondary .features {
  box-shadow: -16px 16px 32px 0 rgba(87, 100, 67, 0.17);
  -webkit-box-shadow: -16px 16px 32px 0 rgba(87, 100, 67, 0.17);
  -moz-box-shadow: -16px 16px 32px 0 rgba(87, 100, 67, 0.17);
}

.features__feature:nth-last-child(-n+3) .features__content {
  border-bottom: 0;
}

.features__feature:nth-last-child(3n+1) .features__content {
  border-right-width: 0;
}

.images--margins {
  margin-top: 70px;
  margin-bottom: 15px;
}

.wysiwyg-content .features__feature.col-lg-4 {
  margin: 0;
  padding: 0;
}

.rate-highlight {
  padding: 3px 6px;
  border-radius: 17px;
  -webkit-border-radius: 17px;
  -moz-border-radius: 17px;
}

.features__content {
  padding: 40px 60px;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
  border-right: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
}

.circle-number {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary-color);
  color: #000;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 25px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}

.features__description {
  font-size: 19px !important;
  line-height: 1.6;
  letter-spacing: -0.4px;
  margin-top: auto;
  margin-bottom: auto;
  color: rgba(0, 0, 0, 0.7);
  font-weight: normal;
}

.section-artboard {
  position: relative;
  overflow: hidden;
}

.slick-description-job .slick-list,
.fluid-slick .slick-list {
  margin-top: 70px;
  cursor: grab;
}

.fluid-slick .wysiwyg-content p {
  margin-top: 0;
}

.slick-dots-fluid .slick-dots,
.fluid-slick .slick-dots {
  display: flex;
  align-items: center;
  width: 1200px;
  max-width: calc(100% - 30px);
  position: static;
  margin: 50px auto 0;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  overflow: hidden;
}

.slick-dots-fluid .slick-dots li,
.fluid-slick .slick-dots li {
  width: 100%;
  background-color: #e4e4e4;
  height: 4px;
  display: flex;
  align-items: center;
  border: 0;
  margin: 0;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.slick-dots-fluid .slick-dots:hover li.slick-active,
.fluid-slick .slick-dots:hover li.slick-active,
.fluid-slick .slick-dots:hover li,
.slick-dots-fluid .slick-dots:hover li {
  height: 8px;
}

.slick-dots-fluid .slick-dots li.slick-active,
.fluid-slick .slick-dots li.slick-active {
  background-color: var(--primary-color);
  height: 4px;
  cursor: default;
}

.slick-dots-fluid .slick-dots li button:before,
.fluid-slick .slick-dots li button:before {
  content: "";
  display: none;
}

.slick-description-job {
  margin-left: 0;
  margin-right: 0;
}

.slick-description-job .slick-list {
  margin-left: -12px;
  margin-right: -12px;
}

.slick-description-job .slick-slide {
  margin-right: 12px;
  margin-left: 12px;
  position: relative;
  height: auto;
  max-width: 282px;
}

.slick-description-job .slick-slide__content {
  height: calc(100% - 100px);
  display: flex;
  align-items: center;
}

.slick-description-job .slick-slide__content p {
  margin: 0;
  font-weight: normal;
  font-size: 16px !important
}

.slick-slide__number {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary-color);
  color: #000;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 25px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  margin: auto;
  margin-bottom: 35px;
  position: relative;
}

.slick-description-job .slick-slide:not(:first-child):after,
.slick-description-job .slick-slide:not(:last-child):before {
  content: '';
  width: 50%;
  height: 1px;
  background-color: #e4e4e4;
  position: absolute;
  right: -32px;
  top: 32px;
}

.slick-description-job .slick-slide:after {
  right: initial;
  left: -32px;
}

.slick-slide__content {
  padding: 35px 25px;
  border: 1px solid #e4e4e4;
  position: relative;
  text-align: center;
}

.slick-slide__content:before {
  content: '';
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid #e4e4e4;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.slick-slide__content:after {
  content: '';
  width: 0;
  height: 0;
  border-left: 19px solid transparent;
  border-right: 19px solid transparent;
  border-bottom: 19px solid #fff;
  position: absolute;
  top: -19px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.slick-description-job .slick-track,
.write-for .slick-track,
.fluid-slick .slick-track {
  display: flex;
}

.fluid-slick .slick-list {
  padding-left: 24px;
}

.content-box,
.fluid-slick__slide {
  margin-right: 24px;
  width: 480px;
  max-width: calc(100vw - 48px);
  min-height: 400px;
  ;
  padding: 40px 50px;
  margin-bottom: 40px;
  display: flex !important;
  align-items: flex-start;
  flex-direction: column;
  border: 1px solid #e4e4e4;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}

.content-box {
  width: 100%;
}

.content-box-column {
  margin-bottom: 30px;
}

.content-box-column .content-box {
  margin-bottom: 0px;
  height: 100%;
}

.content-box:hover,
.fluid-slick__slide:hover {
  -webkit-box-shadow: -16px 16px 32px 0 rgba(0, 0, 0, 0.17);
  -moz-box-shadow: -16px 16px 32px 0 rgba(0, 0, 0, 0.17);
  box-shadow: -16px 16px 32px 0 rgba(0, 0, 0, 0.17);
}

.section--secondary .content-box,
.section--secondary .fluid-slick__slide {
  background-color: #fff;
}

.content-box .h4,
.content-box .h5,
.fluid-slick__slide .h5 {
  margin-bottom: 0px;
  margin-top: 15px;
  color: #000
}

.content-box img,
.fluid-slick__slide img {
  margin-top: auto;
}

.socialmedia {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.socialmedia__element {
  color: #000;
  display: flex;
  align-items: center;
  margin-right: 40px;
}

.socialmedia__element:last-child {
  margin-right: 0;
}

.socialmedia__icon {
  margin-right: 12px;
}

.socialmedia__name {
  margin: 0;
}

.tabs__tab {
  display: flex;
  align-items: flex-start;
  background-color: #fff;
  padding: 50px;
  border-bottom: 1px solid #f0f0f0;
}

.tabs__tab:last-child {
  border-bottom: 0;
}

.tabs__number {
  font-size: 40px;
  color: var(--primary-color);
  line-height: 1.2;
  letter-spacing: -0.6px;
  font-weight: 600;
  margin-right: 50px;
  font-family: "Raleway", sans-serif;
}

.collapse-tabs {
  margin-top: 80px;
}

.collapse-tabs__tab {
  border-top: 1px solid #e4e4e4;
  padding-top: 22px;
  padding-bottom: 22px;
}

.collapse-tabs__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.collapse-tabs__header .h4 {
  cursor: pointer;
}

.collapse-tabs__icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border: 1px solid #e4e4e4;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}

.collapse-tabs__icon:hover {
  background-color: #e4e4e4;
}

.collapse-tabs__icon img {
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
}

.collapse-tabs__tab--active .collapse-tabs__icon img {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
}

.collapse-tabs__body {
  display: none;
  margin-top: 70px;
}

.client-comments {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

.client-comments__comment {
  padding: 50px;
  background-color: #fff;
  box-shadow: -16px 16px 32px 0 rgba(87, 100, 67, 0.17);
  -webkit-box-shadow: -16px 16px 32px 0 rgba(87, 100, 67, 0.17);
  -moz-box-shadow: -16px 16px 32px 0 rgba(87, 100, 67, 0.17);
  max-width: 100%;
}

.client-comments__comment:nth-child(1) {
  width: 500px;
  margin-bottom: 30px;
  margin-left: 70px;
  margin-right: 100px;
}

.client-comments__comment:nth-child(2) {
  width: 370px;
  margin-right: 40px;
}

.client-comments__comment:nth-child(3) {
  width: 370px;
  margin-top: 90px;
}


.client-comments__author {
  margin-top: 35px;
  display: flex;
  align-items: center;
}

.client-comments__image {
  min-width: 53px;
  min-height: 53px;
  height: 53px;
  width: 53px;
  margin-right: 30px;
}

.client-comments__data {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 17px;
  line-height: 1.41;
  letter-spacing: -0.3px;
}

.client-comments__name {
  color: #000000;
  margin-bottom: 2px;
  font-weight: 600;
}

.client-comments__position {
  color: rgba(0, 0, 0, .7);
  font-weight: 400;
}

.hero--blog.animate picture {
  animation: fadeIn 1s;
}

@keyframes fadeIn {
  from {
    opacity: 0.5;
  }

  to {
    opacity: 1;
  }
}

/* BUTTONS */

.text-content {
  max-width: 1000px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.tags {
  margin-top: 20px;
}

.text-content--small {
  max-width: 700px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.wysiwyg-content--width-small {
  width: 880px;
  max-width: 100%;
}

.wysiwyg-content--width-medium {
  width: 950px;
  max-width: 100%;
}

.wysiwyg-content--width-large {
  width: 1020px;
  max-width: 100%;
}

.wysiwyg-content--width-large.wysiwyg-content--center,
.wysiwyg-content--width-medium.wysiwyg-content--center,
.wysiwyg-content--width-small.wysiwyg-content--center {
  margin-left: auto;
  margin-right: auto;
}

.wysiwyg-content--center {
  text-align: center;
}

.wysiwyg-content .col-lg-4 {
  margin-bottom: 30px;
}

.wysiwyg-content p {
  font-size: 18px;
  font-stretch: normal;
  font-style: normal;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.7;
  font-weight: normal;
  letter-spacing: normal;
  margin: 30px auto 0;

  margin-left: 0;
}

.places__description.wysiwyg-content p,
.text-center.wysiwyg-content p {
  margin-left: auto;
}

.wysiwyg-content small {
  font-size: 13px;
  letter-spacing: -0.5px;
  color: #979797;
  font-family: "Raleway", sans-serif;
}

.wysiwyg-content p.small {
  font-size: 17px;
  margin-top: 25px;
}

.wysiwyg-content p:first-child {
  margin-top: 0;
}

.wysiwyg-content ol,
.wysiwyg-content ul:not(.slick-dots) {
  padding: 0;
  margin: 40px auto;
  list-style: none;
}

.wysiwyg-content ol {
  counter-reset: item;
}

.wysiwyg-content ol li,
.wysiwyg-content ul:not(.slick-dots) li {
  position: relative;
  display: block;
  align-items: center;
  font-size: 17px;
  letter-spacing: -0.5px;
  color: #000000;
  padding-left: 33px;
  text-align: left;
  line-height: 1.7
}

.wysiwyg-content ol li {
  position: relative;
}

.wysiwyg-content ol li:before {
  counter-increment: item;
  content: counter(item) '.';
  color: var(--primary-color);
  margin-right: 20px;
}

.wysiwyg-content ol li:last-child,
.wysiwyg-content ul:not(.slick-dots) li:last-child {
  margin-bottom: 0;
}

.wysiwyg-content ul:not(.slick-dots) li::before {
  content: '';
  display: inline-flex;
  width: 8px;
  min-width: 8px;
  height: 8px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  background-color: var(--primary-color);
  margin-right: 25px;
  position: absolute;
  left: 0;
  top: 12px;
}

/*
.wysiwyg-content a:not([class]) {
  display: inline-flex;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #000;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}


.wysiwyg-content a:not([class]):hover {
  color: var(--primary-color);
}

*/



.submenu-dropdown__anchors a,
.nav__container_submenu li,
.nav__container_submenu p {
  font-size: 17px;
}

.submenu-dropdown__anchors a {
  color: #fff;
  width: 100%;
  display: block;
  margin-top: 30px;
}

.submenu-dropdown__anchors a:hover {
  color: var(--primary-color)
}

.nav__container_submenu {
  max-width: 92vw;
  margin: 0px auto;
}

.nav__container_submenu .submenu-header {
  display: flex;
  align-items: center
}

.nav__container_submenu .submenu-header img {
  margin-right: 10px;
}

.nav__container_submenu ul {
  padding-left: 0px;
}

.nav__container_submenu ul li {
  display: flex;
  margin-top: 30px;
}

.nav__container_submenu ul li:before {

  background-image: url('/_resources/themes/widoczni/images/icons/arrow-right-green.svg');
  background-size: 20px 20px;
  width: 20px;
  height: 20px;
  margin-right: 32px;
  content: '';
}

.nav__container_submenu ul {
  list-style: none;

}

.menu__faq a:not([class]):before {
  content: '';
  display: inline-flex;
  background-image: url('/_resources/themes/widoczni/images/icons/arrow-right-green.svg');
  background-size: 20px 20px;
  width: 20px;
  height: 20px;
  margin-right: 32px;
}

.wysiwyg-content .tags>div {
  display: inline-flex;
  text-transform: uppercase;
  padding: 16px 17px 14px !important;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  color: var(--dark-color);
  background-color: #fff;
  border: 1px solid #bcbcbc;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  margin-right: 8px;
  margin-bottom: 8px;
}

.images {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.images img {
  object-fit: cover;
  margin: 0 8px 19px;
}

.hamburger-submenu,
.btn-contact-form-mobile,
.hamburger {
  display: none;
}

hr {
  border: 0;
  border-top: 1px solid #e4e4e4;
}

.post.slick-slide {
  padding-bottom: 30px;
}

.post.slick-slide .post__content {
  margin-bottom: 0;
}

.contact-form__bottom h5 {
  margin-bottom: 30px;
}

.post-on-hero__author--mobile,
.post__image--mobile {
  display: none;
}

iframe {
  max-width: 100%;
}

/* END GLOBAL STYLES */

@media (max-width: 1800px) {
  .artboard-radius {
    left: 0;
    top: 40px;
  }
}

@media (max-width: 1650px) {
  .artboard-radius {
    left: -70px;
  }
}

@media (max-width: 1500px) {


  .hero--subpage picture,
  .hero--subpage picture img,
  .hero--blog picture,
  .hero--blog picture img {
    width: 100%;
    max-height: 770px;
    min-height: 770px;
  }

  .artboard-opinie-o-nas {
    right: -300px;
  }

  .artboard-radius {
    left: -150px;
  }

  .column-mosaic-1,
  .column-mosaic-2 {
    min-width: auto;
  }

  .column-mosaic-2 {
    padding-right: 15px;
  }

  .single-rate {
    font-size: 22px;
  }

  .single-rate::after {
    height: 24px;
    width: 24px;
  }

  .content__image-description--specialalign {
    top: 40%;
  }

  .artboard.artboard--hero {
    right: -370px;
  }

  .artboard-radius.artboard-radius--top-left {
    left: -150px;
    top: -10px;
  }

  .circle-number.scroll-to-top {
    right: 30px;
    bottom: 30px;
  }

  .hero__rate {
    margin-top: 200px;
  }

  .slick-company-history__year:after {
    content: '';
    width: calc(100% + 70px);
  }

  .slick-company-history .slick-slide {
    margin-right: 70px;
  }

  .post-on-hero {
    padding: 25px;
  }

  .hero__other-posts-container {
    bottom: 40px;
  }

  .hero--blog .hero__content {
    padding: 40px 40px 70px;
  }

  .hero__content {
    width: 100%;
    padding: 0 115px;
  }

  .nav__link {
    margin-right: 25px;
  }

  .hero__header {
    width: 600px;
    font-size: 70px;
    line-height: 1;
    letter-spacing: -1.8px;
  }


  .btn--small {
    padding: 12px 10px 11px;
  }

  .nav__anchor {
    letter-spacing: 0;
    font-size: 13px;
  }

  .nav {
    padding-top: 0;
    padding-bottom: 0;
  }

  .dropdown__anchors a {
    margin-top: 20px;
    font-size: 21px;
  }

  .nav__link--dropdown .nav__anchor:after {
    right: -12px;
  }

  .content {
    margin-left: -15px;
    margin-right: -15px;
  }
}

@media (max-width: 1449px) {
  .artboard.artboard--hero {
    right: -430px;
  }

  .hamburger {
    display: flex;
    cursor: pointer;
    position: relative;
    z-index: 1;
    height: 52px;
    width: 52px;
    margin-left: 10px;
  }

  .hamburger__icon {
    display: flex;
  }

  .hamburger__icon.hamburger__icon--close,
  .hamburger.open .hamburger__icon--open {
    display: none;
  }

  .hamburger.open .hamburger__icon--close {
    display: flex;
  }

  .menu__dropdown,
  .nav__menu,
  .dropdown__faq {
    display: none;
  }


}

@media (max-width: 1400px) {
  .artboard.artboard--hero {
    right: -480px;
  }
}

@media (max-width: 1349px) {

  .nav.nav--fixed .nav__menu {
    padding-top: 120px;
    padding-bottom: 80px;
  }

  .hero__video {
    max-width: 75%;
  }

  .nav__container {
    padding-left: 0;
    padding-right: 0;
  }

  .form-light form {
    padding: 0 30px;
  }

  .nav {
    padding: 12px 25px;
  }

  .nav__menu {
    height: 100vh;
    top: 0;
    left: 0;
    margin: 0;
    padding: 120px 80px 30px;
    background: var(--dark-color);
    position: absolute;
  }

  .dropdown__anchors {
    margin-right: 0;
    margin-top: 4px;
    max-width: 100%;
  }

  .menu__dropdown {
    padding-top: 120px;
    width: 50%;
    left: initial;
    right: 0;
  }

  .nav.nav--fixed .nav__anchor,
  .nav__anchor {
    font-size: 28px;
    font-weight: 600;
    text-transform: initial;
    line-height: 1.3;
  }

  .nav__link {
    margin-bottom: 4px;
    margin-right: 0;
    max-width: 50%;
  }

  .nav__link:last-child {
    margin-bottom: 0;
  }

  .nav .nav__anchor.nav__anchor--active {
    color: var(--primary-color);
  }

  .nav .nav__link--dropdown .nav__anchor:after {
    content: '';
    display: none;
  }

  .menu__dropdown {
    opacity: 1;
    visibility: visible;
  }

}

@media (max-width: 1300px) {

  .hero--blog .hero__post {
    width: 600px;
  }

  .hero__content {
    padding-left: 85px;
    padding-right: 85px;
  }

  .artboard.artboard--hero {
    right: -640px;
    top: -750px;
  }

  .contact__section {
    margin-left: -15px;
    margin-right: -15px;
  }

  .anchors__element {
    font-size: 19px;
    margin-right: 20px;
  }

  .video-circle-container {
    margin-top: 0;
    display: flex;
    align-items: center;
  }

  .video-circle-container .video-circle {
    height: auto;
    width: auto;
  }

  .video-circle-container .artboard,
  .video-circle-container .artboard-radius {
    display: none;
  }
}

@media (max-width: 1199px) {

  .hero--blog-slides.slick-slider .slick-list,
  .hero--blog-slides.slick-slider .slick-track,
  .hero--blog-slides.slick-slider .hero--blog-slide,
  .hero--blog-slides.slick-slider picture,
  .hero--blog-slides.slick-slider picture img {
    min-height: 100%;
    height: 100%;
    position: relative;
  }

  .hero--blog .hero--blog-slides .hero--blog-slide:nth-child(n+2) {
    display: block;
  }

  .hero.hero--blog .hero__content {
    max-height: initial;
    height: 100%;
    align-items: flex-end;
    display: flex;
    padding-bottom: 30px;
    padding-top: 30px;
  }

  .hero--blog picture,
  .hero--blog picture img {
    min-height: 320px;
    height: 320px;
    object-fit: cover;
  }

  .hero--blog .hero__content {
    align-items: flex-start;
    padding-top: 200px;
  }

  .hero.hero--blog .hero__content,
  .hero.hero--blog:before {
    max-height: 880px;
  }

  .hero__other-posts-container {
    position: static;
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    justify-content: flex-start;
    padding: 40px 40px 0;
  }

  .hero__other-posts {
    min-width: 100%;
    width: 100%;
    max-width: 100%;
  }

  .home .hero__content {
    display: block;
    margin-top: 25px;
    padding-left: 15px;
    padding-right: 15px;
    position: static;
    text-align: center;
    transform: translate(0%, 0%);
  }

  .home .hero__content .btn {
    width: 250px;
    max-width: 100%;
  }

  .home .hero__body {
    margin: auto;
    font-size: 17px;
    margin-bottom: 20px;
  }

  .home .hero__header {
    width: 100%;
    font-size: 35px;
    line-height: 1;
    letter-spacing: 0;
    margin-bottom: 12px;
    display: block
  }

  .home .hero__rate {
    display: none;
  }

  .slick-description-job .slick-slide {
    max-width: initial;
  }

  .hero {
    padding-bottom: 0;
  }

  .artboard.artboard--hero {
    display: none !important;
  }

  .single-rate {
    font-size: 18px;
  }

  .single-rate::after {
    height: 22px;
    width: 22px;
  }

  .corner-description {
    height: 250px;
    width: 345px;
  }

  .corner-description .h4 {
    font-size: 24px;
  }

  .artboard-radius.artboard-radius--top-left~.my-container {
    margin-top: 0;
  }

  .slick-company-history .slick-slide {
    margin-right: 50px;
  }

  .slick-company-history__year:after {
    content: '';
    width: calc(100% + 50px);
  }

  .customer-advisers__contact {
    font-size: 15px;
    letter-spacing: -1px;
  }

  .hero__video {
    max-width: 100%;
    width: 100%;
  }

  .hero__content {
    pointer-events: none;
  }

  .hero__image-mobile {
    display: block;
    width: 100%;
  }

  .hero__video:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/_resources/themes/widoczni/images/mask.png');
    background-size: 100%;
    background-position: bottom;
    background-repeat: no-repeat;
    z-index: 0;
  }

  .hero__video:before {
    background-size: 0;
    max-height: 100vh;
  }

  .row.relative.overflow-hidden {
    overflow: initial;
  }
}

@media (min-width: 992px) {

  .nav--light .nav:not(.nav--fixed) .nav__anchor,
  .subpage--masspost .nav:not(.nav--fixed) .nav__anchor {
    color: #fff;
  }

  .nav--light .nav:not(.nav--fixed) .nav__link--dropdown .nav__anchor:after,
  .subpage--masspost .nav:not(.nav--fixed) .nav__link--dropdown .nav__anchor:after {
    border-color: #fff transparent transparent transparent;
  }

  .nav--light .nav:not(.nav--fixed) .nav__logo svg path[fill="#0B0B0B"],
  .subpage--masspost .nav:not(.nav--fixed) .nav__logo svg path[fill="#0B0B0B"] {
    fill: #fff;
  }

  .anchors__label {
    margin-right: 35px;
  }

  .simple-text-section .wysiwyg-content p {
    max-width: 1200px;
  }

}

@media (max-width: 991px) {

  .hero--blog .hero__author {
    padding-top: 10px;
  }

  /* START CODE NAVIGATION MOBILE NOT FIXED */
  .nav:not(.nav--hover) {
    position: relative;
  }

  .hero {
    margin-top: 0;
  }

  .nav__logo {
    height: 55px;
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  .hamburger {
    position: fixed;
    right: 25px;
    top: 10px;
  }

  /* END CODE NAVIGATION MOBILE NOT FIXED */

  /* START CODE NAVIGATION MOBILE FIXED */
  /*
  .hero {
    margin-top: 75px;
  }
  */
  /* END CODE NAVIGATION MOBILE FIXED */

  .hero__headers .h4 {
    margin-top: 15px;
  }

  .breadcrumbs,
  #breadcrumbs .anchors {
    display: none;
  }

  .customer-advisers {
    margin-bottom: 40px;
  }

  .slick-opinions {
    margin-top: 50px;
  }

  .section--light--desktop .slick-opinions {
    margin-top: 0;
  }

  .artboard.artboard-opinie-o-nas {
    top: initial;
    bottom: -125px;
    right: -160px;
    display: block;
    width: 640px;
    max-width: initial;
  }

  .opinion .h4 {
    margin-top: 20px;
    font-size: 17px;
  }

  .hero--subpage picture,
  .hero--subpage picture img {
    min-height: 300px;
    max-height: 350px;
    display: flex;
  }

  .hero--blog picture img {
    min-height: 100%;
  }

  .images img {
    max-width: initial;
    max-height: 160px;
  }

  .images img:nth-child(1) {
    width: calc(60% - 8px);
    min-width: calc(60% - 8px);
  }

  .images img:nth-child(2) {
    width: calc(40% - 8px);
    min-width: calc(40% - 8px);
  }

  .images img:nth-child(3) {
    width: calc(65% - 8px);
    min-width: calc(65% - 8px);
  }

  .images img:nth-child(4) {
    width: calc(35% - 8px);
    min-width: calc(35% - 8px);
  }

  .images img:nth-child(5) {
    width: calc(35% - 8px);
    min-width: calc(35% - 8px);
  }

  .images img:nth-child(6) {
    width: calc(65% - 8px);
    min-width: calc(65% - 8px);
  }

  .images img:nth-child(7) {
    width: calc(60% - 8px);
    min-width: calc(60% - 8px);
  }

  .images img:nth-child(8) {
    width: calc(40% - 8px);
    min-width: calc(40% - 8px);
  }

  .clients__slider {
    margin-left: -30px;
    margin-right: -30px;
  }

  .other-posts .h3 {
    padding-bottom: 10px;
  }

  .other-posts .post-on-hero {
    align-items: flex-start;
  }

  .post__label {
    text-align: left;
  }

  .simple-text-section .my-container--small {
    padding-left: 0;
    padding-right: 0;
  }

  .places,
  .columns-with-descriptions {
    padding-left: 15px;
    padding-right: 15px;
  }

  .top-cta {
    margin-left: -15px;
    margin-right: -15px;
  }

  .row.relative.overflow-hidden,
  .row--big {
    margin-left: -30px;
    margin-right: -30px;
  }

  .page {
    padding-left: 30px;
    padding-right: 30px;
  }

  .content__pictures--mosaic {
    flex-wrap: wrap;
    justify-content: center;
  }

  .column-mosaic-1 picture img,
  .column-mosaic-2 picture img {
    width: 100%;
  }

  .column-mosaic-2 {
    padding-right: 0;
    min-width: 60%;
    width: 60%;
    text-align: right;
  }

  .column-mosaic-2 picture:nth-child(2) img {
    float: left;
    max-width: 65%;
  }

  .column-mosaic-1 {
    min-width: calc(40% - 24px);
    width: calc(40% - 24px);
    margin-right: 24px;
    margin-bottom: 24px;
    text-align: left;
  }

  .content__description .stars .single-star {
    margin-left: 4px;
    margin-right: 4px;
  }

  .single-star:before {
    content: "";
    height: 35px;
    width: 35px;
  }

  .hero__content .hero__headers,
  .hero__content .go-to-section {
    margin-top: 0;
  }

  .go-to-section {
    width: 55px;
    min-width: 55px;
    height: 55px;
  }

  .single-rate::after {
    height: 18px;
    width: 18px;
  }

  .video-box .video-js {
    height: 500px;
  }

  .video-box .video-js .vjs-poster {
    background-size: cover;
  }

  .video-box .corner-description {
    position: relative;
    height: auto;
    width: auto;
    background: var(--primary-color);
  }

  .video-box .corner-description .h4 {
    padding: 30px;
    text-align: center;
  }

  .contact-form__bottom h5 {
    margin-top: 0;
  }

  .artboard--training-1,
  .artboard--training-2 {
    display: flex;
    position: absolute;
    left: 0;
    z-index: 1;
  }

  .content__image {
    position: relative;
  }

  .artboard--training-1 {
    bottom: -30%;
    left: -20%;
  }

  .artboard--training-2 {
    top: 0;
  }

  .adventures__description p {
    display: none;
  }

  .single-post__head h1 {
    font-size: 32px;
  }

  .post.slick-slide .post__image img,
  .about__icon {
    max-height: 205px;
    width: 310px;
    object-fit: cover;
    object-position: center center;
  }

  .table-price-service__offer p {
    padding-left: 0;
    padding-right: 0;
  }

  .stars {
    margin-top: 20px;
  }

  .single-post__body h2 {
    font-size: 30px;
  }

  .single-post__body h3 {
    font-size: 24px
  }

  .about .slick-track .slick-slide {
    margin-left: 10px;
    margin-right: 10px;
  }

  .about {
    margin-top: 15px;
    margin-left: -30px;
    margin-right: -30px;
  }

  .about .slick-list {
    padding-left: 20px;
  }

  .table-price-service__data .h5,
  .table-price-service__data h5 {
    padding-left: 6px;
  }

  .image-box-widoczni {
    margin-top: 60px;
    margin-left: -15px;
    margin-right: -15px;
  }

  .modal:before {
    display: none;
  }

  .hero--blog .hero__content {
    display: flex;
    position: absolute;
    text-align: left;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    margin-top: 0;
    padding-left: 30px;
    padding-right: 30px;
  }

  .hero__other-posts-container {
    padding: 0 30px;
  }

  .hero--blog .hero__content .btn {
    width: 240px;
    max-width: 100%;
  }

  .hero--blog .hero__body {
    margin: auto;
    font-size: 17px;
    margin-bottom: 20px;
  }

  .hero--blog .hero__header {
    width: 100%;
    font-size: 35px;
    line-height: 1;
    letter-spacing: 0;
    margin-bottom: 12px;
  }

  .features__feature:nth-last-child(3n+1) .features__content {
    border-right-width: 1px;
  }

  .features__feature:nth-last-child(2n+1) .features__content {
    border-right: 0;
  }

  .artboard-radius,
  .circle-number.scroll-to-top {
    display: none;
  }

  .hero__body {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .hero__rate {
    margin-top: 30px;
  }

  .collapse-tabs__icon {
    width: 52px;
    height: 52px;
  }

  .breadcrumbs {
    margin-top: 30px;
  }

  .mt-5 {
    margin-top: 30px !important;
  }

  .other-posts .post-on-hero {
    padding-left: 25px;
    padding-right: 25px;
  }

  .other-posts .post-on-hero__data {
    border-bottom: 0;
  }

  .single-post__wyswiyg-section .col--spaces {
    margin-bottom: 30px;
  }

  .quote,
  .single-post__image-with-desc {
    margin-top: 40px;
  }

  .single-post__wyswiyg-section {
    padding-top: 40px;
  }

  .single-post__media {
    display: none;
  }

  .opinion__right {
    padding-left: 15px;
  }

  .columns-with-descriptions__content {
    margin-bottom: 40px;
    margin-top: 20px;
  }

  .columns-with-descriptions__element {
    padding: 25px;
  }

  .columns-with-descriptions__heading:nth-child(1n) {
    height: initial !important;
  }

  .list-element-with-circle .circle-number {
    margin-right: 20px;
    min-width: 50px;
    width: 50px;
    height: 50px;
    font-size: 17px;
  }

  .opinion__quote-container .author,
  .opinion .author {
    margin-top: 80px;
  }

  .opinion__quote-container .opinion__quote,
  .opnion .opinion__quote {
    margin-bottom: 25px;
  }

  .my-container .wysiwyg-content.text-center {
    padding-left: 15px;
    padding-right: 15px;
  }

  .opinion__right {
    margin-top: 30px;
  }

  .slick-history-of-cooperation div[data-element="slick-slide"] {
    margin-bottom: 50px;
  }

  .slick-company-history .slick-slide {
    margin-right: 40px;
  }

  .opinion__headers {
    margin-top: 0;
  }

  .opinion__side--right {
    margin-top: 100px;
  }

  .slick-slide .opinion__side--right {
    margin-top: 0;
  }

  .opinion__side--right .opinion--light {
    margin-top: 0px;
  }

  .opinion__side--left .opinion {
    margin-top: 0;
  }

  .tabs-scroll__content {
    margin-left: 30px;
  }

  .tabs-scroll__option {
    font-size: 17px;
    margin-top: 20px;
  }

  .tabs-scroll__list {
    width: 240px;
    min-width: 240px;
  }

  .fluid-slick .slick-list {
    padding-left: 20px;
  }

  .places .col-lg-4 {
    margin-bottom: 40px;
  }

  .col-lg-4:last-child .places__place {
    margin-bottom: 0;
  }

  .places__description {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center
  }

  .contact-column {
    margin-bottom: 30px;
  }

  .form-light form {
    padding: 0 20px;
  }

  .video-js:before {
    display: none;
  }

  .video-js .vjs-control-bar {
    margin-bottom: 15px;
  }

  .form-light {
    text-align: left;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .content__inside--right {
    justify-content: center;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
    align-items: center;
  }

  .video-circle {
    margin: 0 auto 40px;
  }

  .tabs__tab {
    padding: 25px;
  }

  .tabs__number {
    margin-right: 30px;
    font-size: 32px;
  }

  .my-container--right .slick-dots-fluid .slick-dots,
  .my-container--right .fluid-slick .slick-dots {
    margin-left: auto;
  }

  .images--margins img {
    margin-bottom: 30px;
  }

  .images--margins {
    margin-top: 50px;
    margin-bottom: 20px;
  }

  .client-comments__comment:nth-child(1),
  .client-comments__comment:nth-child(2),
  .client-comments__comment:nth-child(3) {
    width: 100%;
    margin: 0 0 30px 0;
  }

  .artboard {
    display: none;
  }

  .artboard.artboard-mosaic-photo-section {
    display: flex;
    top: initial;
    bottom: -240px;
    right: 0;
    width: 459px;
    height: 501px;
    max-width: initial;
  }

  .artboard-CTA-clutch {
    display: flex;
    top: initial;
    bottom: -240px;
    right: 0;
    max-width: initial;
  }

  .collapse-tabs__tab {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .collapse-tabs__body {
    margin-top: 20px;
  }

  .section--border .my-container:after {
    top: -30px;
  }

  .slick-description-job {
    margin-left: -15px;
    margin-right: -15px;
  }

  .slick-description-job .slick-slide {
    padding-left: 15px;
    padding-right: 15px;
  }

  .slick-slide__content {
    padding: 25px 15px;
  }

  .tabs {
    margin-top: 50px;
  }

  .features__description {
    font-size: 17px;
  }

  .features__content {
    padding: 30px 20px;
  }

  .anchors {
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 30px;
  }

  .hamburger-submenu {
    cursor: pointer;
    display: block;
    width: 50px;
  }

  .anchors__label {
    font-size: 17px;
  }

  .contact-people-space {
    margin-top: 50px;
  }

  .contact-element {
    flex-wrap: wrap;
    margin-top: 15px;
  }

  .anchors__list {
    position: absolute;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    top: 100%;
    left: -15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    width: calc(100% + 30px);
    background-color: #fff;
    padding: 20px 15px;
    box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.1);
  }

  .anchors__element {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .anchors__element:last-child {
    margin-bottom: 0;
  }

  .anchors__list.anchors__list--collapsed {
    opacity: 1;
    visibility: visible;
  }

  .hamburger-submenu--active .hamburger__icon--open {
    display: none;
  }

  .hamburger-submenu--active .hamburger__icon--close {
    display: flex;
  }

  .hero--subpage .hero__content {
    padding: 30px 15px;
  }

  .hero.hero--blog:before {
    content: '';
    display: none;
  }

  .hero:not(.hero--subpage):not(.hero--blog) .hero__content {
    display: block;
    color: var(--dark-color);
    padding-top: 30px;
    padding-bottom: 30px;
    margin: auto;
    position: static;
    transform: translate(0, 0);
  }

  .go-to-section {
    display: none;
  }

  .features__feature:nth-last-child(3) .features__content {
    border-bottom: 1px solid #e4e4e4;
  }

  .features__feature:nth-last-child(-n+2) .features__content {
    /* last 2 childs */
    border-bottom: 0;
  }

  .hero--blog .hero__content {
    padding-top: 100px;
  }

  .posts__filter label {
    margin: 0 15px;
  }

  .post-on-hero__data {
    text-align: left;
  }

  .posts__navigation {
    flex-wrap: wrap;
  }

  .post-on-hero {
    border: 1px solid #e4e4e4;
    margin-top: 30px;
  }

  .hero__other-posts {
    width: 100%;
    min-width: 100%;
  }

  .hero__post .h3,
  .hero__post h3 {
    margin: 8px 0 15px 0;
  }

  .hero__post {
    margin-right: 0;
    text-align: left;
  }

  .contact__icon {
    display: none;
  }

  .cookies {
    bottom: 15px;
    padding: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .cookies__text {
    margin-right: 0;
    text-align: center;
    margin-bottom: 12px;
  }

  .section.footer {
    margin-left: -30px;
    margin-right: -30px;
    padding: 50px 15px 110px;
  }

  .footer-anchors,
  .footer-person {
    display: none;
  }

  .footer__headquarters,
  .footer__data {
    margin-top: 40px;
  }

  .write-for {
    padding-top: 30px;
    padding-bottom: 30px;
    flex-direction: column;
    margin: 50px -30px;
  }

  .write-for__images {
    width: 100%;
    padding-left: 0;
    margin-top: 40px;
  }

  .headquarter__phone {
    margin-top: 8px;
  }

  .headquarter__name {
    margin-bottom: 15px;
  }

  .footer__social-links {
    margin-top: 25px;
  }

  .clients__logo {
    margin-right: 40px;
  }

  .images {
    justify-content: space-between;
    margin-left: -10px;
    margin-right: -10px;
  }

  .images img {
    max-width: calc(50% - 9px);
  }

  .images img:nth-child(2n-1) {
    margin-left: 0;
  }

  .images img:nth-child(2n) {
    margin-right: 0;
  }

  .wysiwyg-content ul:not(.slick-dots) li {
    margin-bottom: 10px;
  }

  .post__heading {
    margin-top: 12px;
    margin-bottom: 20px;
  }

  .clients__anchor {
    margin-top: 20px;
    text-align: left;
  }

  .content__inside--left {
    text-align: center;
    align-items: center;
    margin: auto;
  }

  .content__pictures {
    margin-top: 30px;
  }

  .certificates__certificate {
    width: calc(25% - 24px);
  }

  .adventures__element {
    flex-direction: column;
  }

  .adventures__text {
    display: none;
  }

  .author {
    margin-top: 50px;
  }

  .opinion__content {
    margin: auto;
    text-align: center;
    padding: 0 15px;
  }

  .content__pictures .col-5 {
    padding-left: 0;
    padding-right: 6px;
  }

  .content__pictures .col-7 {
    padding-right: 0;
    padding-left: 6px;
  }

  .posts .slick-track .slick-slide {
    margin-left: 0;
    margin-right: 0;
  }

  .posts .post__content {
    margin-left: 20px;
  }

  .posts .post.col-lg-4 .post__content {
    margin-left: 0;
  }

  .opinion {
    padding: 30px;
    margin-top: 50px;
    background-color: #fff;
    margin-left: 20px;
  }

  .slick-slide .opinion {
    /* width: 310px; commented 16.11 because of BP < 991 */
    margin-top: 0;
    width: calc(100vw - 65px);
  }

  .slick-slide:last-child .opinion {
    width: calc(100vw - 40px);
  }

  .opinion--light {
    margin-left: 0;
  }

  .opinion__quote {
    width: 45px;
    height: 37px;
  }

  .section--light--desktop .slick-opinions {
    background-color: transparent;
  }

  .wysiwyg-content .col-lg-4 {
    margin-bottom: 20px;
  }

  .content__image {
    min-height: 510px;
  }

  .workfor__element img {
    margin-bottom: 0;
    margin-right: 20px;
    min-width: 100px;
    max-width: 100px;
  }

  .wysiwyg-content .workfor__element p {
    margin-top: 14px;
  }

  .workfor__element .h5 {
    margin-top: 20px;
    font-size: 17px;
  }

  .fluid-slick .slick-list {
    margin-top: 40px;
  }

  .workfor__element {
    width: 100%;
    flex-direction: row;
    margin-top: 30px;
  }

  .content__description {
    padding: 60px 50px;
  }

  .content__image-description--specialalign {
    top: 35%;
  }

  .opinions__opinion {
    margin: 0;
    max-width: 45%;
    width: 45%;
  }

  .columns-with-descriptions,
  .clients__slider,
  .section {
    margin-top: 55px;
  }

  .section--secondary {
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .adventures,
  .features,
  .places,
  .slick-description-job,
  .fluid-slick {
    margin-top: 40px;
  }

  .clients {
    padding-top: 40px;
    margin-top: 0px;
  }

  .slick-opinions .slick-arrow {
    display: none !important;
  }

  .label-title {
    margin-bottom: 30px;
    font-size: 13px;
  }

  .overflow-hidden .nav__container {
    padding-right: 33px;
  }

  .btn-contact-form-mobile {
    display: inline-flex;
    width: 100%;
    margin-top: 20px;
  }

  .nav.nav--fixed button {
    width: 304px;
    height: 56px;
  }

  .nav__logo {
    min-width: 100%;
    transition: background-color 0s ease-out 0s;
    -webkit-transition: background-color 0s ease-out 0s;
    -moz-transition: background-color 0s ease-out 0s;
    -o-transition: background-color 0s ease-out 0s;
  }

  .nav__logo a {
    width: 100%;
    justify-content: space-between;
  }

  .wysiwyg-content p {
    font-size: 17px;
    margin-top: 20px;
  }

  .col-submenu {
    padding-left: 0px !important;
  }


  .menu__dropdown {
    width: 100%;
    position: static;
    padding: 0 0 0 45px;
  }

  .dropdown__container {
    margin-bottom: 20px;
  }

  .dropdown__anchors {
    margin-top: 15px;
    max-width: 100%;
  }

  .nav--hover .nav__logo {
    background-color: var(--dark-color);
    margin-top: -10px;
    padding-top: 10px;
    z-index: 2;
    transition: background-color 0s ease-in 0.3s;
    -webkit-transition: background-color 0s ease-in 0.3s;
    -moz-transition: background-color 0s ease-in 0.3s;
    -o-transition: background-color 0s ease-in 0.3s;
  }

  .dropdown__anchors a {
    font-size: 15px;
    font-weight: 400;
    margin-top: 12px;
  }

  .contact-form__header,
  .contact-form__bottom,
  .contact-form .label-title {
    text-align: left;
  }

  .nav .nav__link--dropdown .nav__anchor:after {
    content: '';
    display: inline-block;
    border: 0;
    background: url('/_resources/themes/widoczni/images/icons/arrow-up-green.svg');
    right: initial;
    left: 0;
    width: 13px;
    height: 9px;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
  }

  .nav .nav__link--dropdown .nav__anchor.nav__anchor--active:after {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
  }

  .nav.nav--fixed .nav__menu,
  .nav__menu {
    max-height: 100vh;
    overflow-y: auto;
    padding: 100px 30px 30px;
  }

  .nav.nav--fixed .nav__anchor,
  .nav__anchor {
    font-size: 21px;
    padding-left: 45px;
  }

  .image-widoczni {
    width: 33.3%;
    display: none;
  }

  .image-widoczni:nth-child(1),
  .image-widoczni:nth-child(2),
  .image-widoczni:nth-child(3),
  .image-widoczni:nth-child(4) {
    display: block;
  }

  .image-box-widoczni__heading,
  .image-box-widoczni__text {
    font-size: 60px;
  }

  .image-box-widoczni__border {
    height: 9px;
    bottom: -6px;
  }

  .modal__close {
    width: 55px;
    height: 55px;
    right: 15px;
    top: 15px;
    position: fixed;
  }

  .play-video {
    width: 100px;
    height: 100px;
  }

  .contact-form__header {
    margin-bottom: 30px !important;
  }

  .contact-form__bottom .h5 {
    margin-top: 10px;
    margin-bottom: 30px;
  }

  .contact-form form {
    padding: 35px 15px 15px;
  }

  .info__button {
    margin-left: 20px;
  }

  .contact-form__row {
    flex-wrap: wrap;
  }

  .contact-form__right,
  .contact-form__left {
    width: 100%;
  }

  .contact-form__right {
    margin-left: 0;
    margin-top: 20px;
  }

  .footer-anchors {
    flex-direction: column;
  }

  .footer-anchor {
    margin-left: 0;
    margin-right: 0;
  }

  .hamburger {
    height: 55px;
    width: 55px;
    min-width: 55px;
    min-height: 55px;
  }

  .nav.nav--top {
    top: 0px;
    max-height: 77px;
  }

  .nav.nav--fixed {
    top: 0;
  }

  .nav__additional button {
    display: none;
  }

  .nav,
  .nav.nav--fixed {
    background-color: #fff;
    padding: 10px 0 10px 25px;
  }

  .hero__video {
    margin-right: auto;
  }

  .hero__video,
  .hero__video picture,
  .hero__video picture img {
    width: 100%;
  }

  .btn--font {
    font-size: 13px;
  }

  .small-cta {
    display: block !important;
  }

  .info,
  .small-cta {
    padding-top: 15px;
    padding-bottom: 14px;
  }

  .info__close {
    left: 15px;
  }

  .image-widoczni {
    width: 50%;
  }

  .info__button {
    padding: 10px 0;
    display: block;
  }

  .info__container {
    text-align: center;
    justify-content: center;
    flex-direction: column;
  }

  .info__text {
    font-size: 15px;
    font-weight: 200;
    margin-left: 20px;
  }

  .nav__link {
    max-width: 100%;
    margin-bottom: 10px;
  }

  .slick-dots-fluid .slick-dots,
  .fluid-slick .slick-dots,
  .slick-opinions .slick-dots,
  .about .slick-dots {
    display: flex;
    align-items: center;
    width: 125px;
    padding-top: 4px;
    max-width: calc(100% - 30px);
    position: static;
    margin: 25px auto 0;
    overflow: hidden;
  }

  .slick-opinions .slick-dots li,
  .about .slick-dots li {
    width: 100%;
    background-color: #e4e4e4;
    height: 1px;
    border: 0;
    margin: 0;
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -o-transition: 0.3s ease;
  }

  .slick-dots-fluid .slick-dots li.slick-active,
  .fluid-slick .slick-dots li.slick-active,
  .slick-opinions .slick-dots li.slick-active,
  .about .slick-dots li.slick-active {
    background-color: var(--primary-color);
    height: 4px;
    cursor: default;
  }

  .socialmedia__element {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    margin-right: 5px;
  }

  .socialmedia__icon {
    margin: 0;
  }

  .h5.socialmedia__name {
    display: none;
  }

  .slick-opinions .slick-dots li button:before,
  .about .slick-dots li button:before {
    content: "";
    display: none;
  }

  .slick-opinions .slick-dots li svg {
    display: none;
  }

  .content-box .h4,
  .content-box .h5,
  .fluid-slick__slide .h5 {
    margin-bottom: 50px;
  }

  .adventures__icon {
    min-width: 150px;
    width: 150px;
    margin-right: 0;
  }

  .adventures__title {
    font-size: 17px;
    text-align: center;
  }

  .btn {
    padding: 18px 33px 17px;
  }

  .post__description {
    padding: 20px;
  }

  .content-box,
  .fluid-slick__slide {
    padding: 20px;
  }

  .author__image {
    height: 48px;
    width: 48px;
    min-width: 48px;
  }

  .author__info .author__name,
  .author__info .author__position {
    font-size: 15px;
  }

  .table-price-service__data .table {
    margin-top: 0;
  }

  .post.slick-slide,
  .slick-slider .fluid-slick__slide {
    width: 320px;
  }

  .contact__section {
    padding: 30px;
  }

  .company-history-points__point {
    margin-top: 40px;
  }

  .table-price-service {
    flex-wrap: wrap;
    margin-top: 0;
  }

  .table-price-service__offer {
    width: 100%;
    min-width: 100%;
    word-break: break-all;
  }

  .table-price-service__data {
    margin-right: 0;
  }

  .tbody .tr .td:first-child,
  .thead .th:first-child {
    padding-left: 6px;
  }

  .thead .th {
    padding: 25px 6px;
  }

  .tbody .tr .td {
    padding: 18px 6px;
  }

  .table {
    font-size: 17px;
  }

  .content-text-image {
    flex-wrap: wrap;
    margin-top: 45px;
  }

  .content-text-image .wysiwyg-content {
    width: 100%;
  }

  .content-text-image__image {
    width: 100%;
    min-width: 100%;
    margin-top: 30px;
    text-align: center;
    background-color: var(--dark-color);
  }

  .content-text-image__text {
    margin: auto;
  }

  .slick-company-history__year:after {
    content: '';
    width: calc(100% + 40px);
  }

  .post-on-hero__author {
    display: none;
  }

  .post-on-hero__author.post-on-hero__author--mobile {
    display: flex;
  }

  .post-on-hero__author--mobile {
    display: flex;
    margin-left: 12px;
    min-width: 105px;
    width: 105px;
  }

  .post-on-hero__data .h5 {
    display: inline-flex;
    align-items: flex-start;
  }

  .other-posts .post-on-hero__data {
    margin-right: 0;
  }

}

@media (max-width: 767px) {

  .post:not(.slick-slide) .post__image {
    display: none;
  }

  .post:not(.slick-slide) .post__image.post__image--mobile {
    display: block;

  }

  body.Blog .posts .post__image--mobile {
    float: left;
  }

  .post .post__heading {
    display: block;

  }

  .post .post__image img {
    height: auto;
    min-width: 105px;
    width: 105px;
  }

  .hero--blog .hero__content {
    padding-top: 40px;
  }

  .hero:not(.hero--subpage):not(.hero--blog) .hero__content {
    display: block;
    margin-top: 25px;
    padding-left: 15px;
    padding-right: 15px;
    position: static;
    text-align: center;
    transform: translate(0%, 0%);
  }

  .hero__content .btn {
    min-width: 250px;
    max-width: 100%;
  }

  .hero__body {
    margin: auto;
    font-size: 17px;
    margin-bottom: 20px;
  }

  .hero__header {
    width: 100%;
    font-size: 35px;
    line-height: 1;
    letter-spacing: 0;
    margin-bottom: 12px;
  }

  .hero__rate {
    display: none;
  }

  .video-box .video-js {
    height: 400px;
  }

  .contact-column {
    text-align: center;
  }

  .contact-element {
    justify-content: center;
  }

  .hero__video:before,
  .hero__video .video-js {
    display: none;
  }

  .image-box-widoczni__heading,
  .image-box-widoczni__text {
    font-size: 37px;
  }

  .post__image {
    text-align: center;
  }

  .company-history-points__content {
    margin: auto;
    text-align: center;
  }

  .company-history-points__content .circle-number {
    margin: auto;
  }

  .slick-company-history .slick-slide {
    margin-right: 30px;
  }

  .slick-company-history__year:after {
    content: '';
    width: calc(100% + 30px);
  }

  .tabs-scroll {
    flex-wrap: wrap;
  }

  .tabs-scroll__content {
    margin-left: 0;
    margin-top: 30px;
  }

  .tabs-scroll__list {
    width: 100%;
    min-width: 100%;
  }

  .contact-element .h4 {
    display: none;
  }

  .customer-advisers__contact {
    font-size: 0;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .customer-advisers__column {
    align-items: center;
    text-align: center;
  }

  .customer-advisers__mail a:before,
  .customer-advisers__phone a:before {
    content: '';
    display: inline-block;
    width: 34px;
    height: 34px;
  }

  .customer-advisers__mail a,
  .customer-advisers__phone a {
    display: flex;
    margin: 0 3px;
  }

  .customer-advisers__position {
    margin-bottom: 10px;
  }

  .customer-advisers__mail a:before {
    content: '';
    background-image: url('/_resources/themes/widoczni/images/icons/email.svg');
  }

  .customer-advisers__phone a:before {
    content: '';
    background-image: url('/_resources/themes/widoczni/images/icons/phone.svg');
  }

  .nav__container_submenu ul li {
    margin-top: 10px
  }

}

@media (max-width: 575px) {

  .posts__filter label {
    margin-right: 15px;
    margin-left: 0;
  }

  .posts__filter label:last-child {
    margin-right: 0;
  }

  .column-mosaic-1 {
    min-width: calc(40% - 12px);
    width: calc(40% - 12px);
    margin-right: 12px;
    margin-bottom: 12px;
  }

  .content__pictures picture img {
    margin-bottom: 12px;
  }

  .column-mosaic-2 picture:nth-child(2) img {
    max-width: 170px;
  }

  .content__pictures--mosaic {
    margin-left: -15px;
    margin-right: -15px;
  }

  .hero--blog .hero__content,
  .hero__other-posts-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .hero--blog .hero__content {
    padding-right: 30px;
  }

  .video-box .video-js {
    height: 300px;
  }

  .video-box .corner-description .h4 {
    padding: 20px;
    font-size: 19px;
  }

  .corner-description {
    height: 200px;
    width: 276px;
  }

  .corner-description .h4 {
    font-size: 21px;
    padding-right: 20px;
    padding-left: 60px;
  }

  .overflow-hidden .nav__container {
    padding-right: 15px;
  }

  .author--single-post {
    flex-wrap: wrap;
  }

  .author--single-post .author__image {
    margin-bottom: 20px;
  }

  .media__element {
    margin-right: 28px;
  }

  .media__interest {
    flex-wrap: wrap;
  }

  .media__interest .btn {
    width: 100%;
    margin-top: 20px;
  }

  .author--single-post .author__image {
    width: 60px;
    min-width: 60px;
    height: 60px;
  }

  .author--single-post .author__image,
  .author__image {
    margin-right: 20px;
  }

  .quote__title {
    align-items: flex-start;
  }

  .quote__title:before {
    width: 50px;
    min-width: 50px;
    height: 40px;
    margin-right: 20px;
  }

  .quote__author {
    margin-top: 15px;
    padding-left: 70px;
  }

  .slick-history-of-cooperation__image {
    margin-bottom: 20px;
  }

  .slick-company-history__year:after {
    content: '';
    width: calc(100% + 10px);
  }

  .slick-company-history .slick-slide {
    margin-right: 15px;
  }

  .opinions__opinion img {
    max-height: 40px;
  }

  .customer-advisers__column {
    margin-top: 30px;
  }

  .customer-advisers__column .h5 {
    font-size: 17px;
  }

  .customer-advisers__position {
    font-size: 15px;
  }

  .stars-with-text {
    margin-top: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .stars-with-text .stars {
    margin-left: 0;
    margin-top: 10px;
  }

  .features__content {
    border-right: 0;
  }

  .content__description {
    padding: 30px 15px;
  }

  .col-lg-4.content__description {
    padding-top: 0;
  }

  .features__feature:nth-last-child(2) .features__content {
    border-bottom: 1px solid #e4e4e4;
  }

  .features__feature:last-child .features__content {
    border-bottom: 0;
  }

  .certificates__certificate {
    width: calc(33% - 12px);
  }

  .certificates__certificate {
    margin-left: 6px;
    margin-right: 6px;
  }

  .posts__navigation {
    flex-direction: column;
  }

  .posts__sort {
    margin-top: 25px;
  }

  .wysiwyg-content a:not([class]) {
    word-break: break-all;
  }

  .hero__post .h3,
  .hero__post h3 {
    font-size: 32px;
  }

}

@media (max-width: 480px) {

  .hero__video img {
    height: 275px;
    object-fit: cover;
  }

  .hero--blog .hero__content {
    padding-top: 30px;
  }

  .single-post__body h2 {
    font-size: 26px;
  }

  .single-post__body h3,
  .single-post__body .h3 {
    font-size: 23px
  }

  .clients__logo {
    margin-right: 40px;
    justify-content: flex-start;
    margin-bottom: 0px;
  }

  .post__author__image {
    margin-right: 8px;
    width: 36px;
    min-width: 36px;
  }

  .post__date,
  .post__author__name {
    font-size: 15px;
  }

  .other-posts .post-on-hero {
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .other-posts .post-on-hero__data {
    margin-top: 15px;
  }

  .single-post__wyswiyg-section .other-posts .post-on-hero__data {
    margin-top: 0;
  }

  .other-posts .post-on-hero__author {
    width: auto;
    min-width: auto;
  }

  .other-posts .post-on-hero__data {
    margin-right: 0;
  }

  .tbody .tr .td:first-child,
  .thead .th:first-child .thead .td,
  .thead .th {
    padding-left: 5px;
    padding-right: 5px;
  }

  .table {
    font-size: 15px;
  }

  .write-for__image {
    margin-right: 20px;
  }

  .adventures__icon {
    width: 100px;
    min-width: 100px;
  }

  .content__description {
    padding-left: 15px;
    padding-right: 15px;
  }

  .contact-form .btn {
    width: 100%;
  }

}