html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* break points */
/* 

@media only screen and (max-width: $medium) {

}

*/
.animate-spin {
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  -webkit-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
  display: inline-block;
}

@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-ms-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
:root {
  --wr-text-primary: #4b484e;
  --wr-text-secondary: #ac2f38;
  --wr-primary: #ac2f38;
  --wr-primary-hover: #ac2f38;
  --wr-red: #ac2f38;
  --wr-blue: #303687;
}

::placeholder {
  color: rgba(0, 0, 0, 0.24);
  opacity: 1;
}

::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.24);
}

/* break points */
/* 

@media only screen and (max-width: $medium) {

}

*/
/*==============================
=            LAYOUT            =
==============================*/
body {
  font-family: Azo, Arial, sans-serif;
  color: #737373;
  font-size: 18px;
  font-weight: 300;
  padding: 0;
}

.p-50 {
  padding: 50px;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
}

#page {
  position: relative;
}

#content {
  background-image: url("../img/bg-right.jpg"), url("../img/bg-left.jpg");
  background-position: calc(50% + 727px) 0, calc(50% - 727px) 0;
  background-repeat: repeat-y;
}
#content > .container {
  background-image: url("../img/content-bg.jpg");
}

.container #main {
  padding: 50px;
}

.search-content {
  background-color: #fff;
  padding: 25px;
}
.search-content .result {
  border-radius: 5px;
  background: #f6f6f6;
  margin-bottom: 20px;
  padding: 10px;
}
.search-content .result h3 {
  font-size: 20px;
  margin: 0;
  padding: 0;
  color: #4b484e;
}

#back-top-btn {
  position: fixed;
  display: none;
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  bottom: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--eap-primary);
  transition: all 0.2s;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}
@media only screen and (max-width: 768px) {
  #back-top-btn {
    bottom: 15px;
    right: 15px;
  }
}

/* break points */
/* 

@media only screen and (max-width: $medium) {

}

*/
/*===============================
=            GENERAL            =
===============================*/
h1,
h2,
h3,
h4 {
  color: #000;
}
h1 strong,
h2 strong,
h3 strong,
h4 strong {
  color: var(--wr-primary);
}

h1 {
  text-transform: uppercase;
}

h2 {
  text-transform: uppercase;
  font-size: 30px;
  line-height: 50px;
  font-weight: bold;
}

h3 {
  font-size: 24px;
  font-weight: bold;
  line-height: 33.6px;
}

p {
  color: #737373;
  line-height: 28.8px;
  margin-bottom: 25px;
}

a {
  color: var(--wr-primary);
}

b,
strong {
  font-weight: bold;
  /* color: var(--wr-primary); */
}

svg {
  width: 100%;
  height: auto;
}

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

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

.pt-16 {
  padding-top: 16px;
}

.mt-16 {
  margin-top: 16px;
}

.pb-16 {
  padding-bottom: 16px;
}

.mb-16 {
  margin-bottom: 16px;
}

.pl-16 {
  padding-left: 16px;
}

.ml-16 {
  margin-left: 16px;
}

.pr-16 {
  padding-right: 16px;
}

.mr-16 {
  margin-right: 16px;
}

.p-16 {
  padding: 16px;
}

.m-16 {
  margin: 16px;
}

.pt-25 {
  padding-top: 25px;
}

.mt-25 {
  margin-top: 25px;
}

.pb-25 {
  padding-bottom: 25px;
}

.mb-25 {
  margin-bottom: 25px;
}

.pl-25 {
  padding-left: 25px;
}

.ml-25 {
  margin-left: 25px;
}

.pr-25 {
  padding-right: 25px;
}

.mr-25 {
  margin-right: 25px;
}

.p-25 {
  padding: 25px;
}

.m-25 {
  margin: 25px;
}

.pt-50 {
  padding-top: 50px;
}

.mt-50 {
  margin-top: 50px;
}

.pb-50 {
  padding-bottom: 50px;
}

.mb-50 {
  margin-bottom: 50px;
}

.pl-50 {
  padding-left: 50px;
}

.ml-50 {
  margin-left: 50px;
}

.pr-50 {
  padding-right: 50px;
}

.mr-50 {
  margin-right: 50px;
}

.p-50 {
  padding: 50px;
}

.m-50 {
  margin: 50px;
}

.pt-75 {
  padding-top: 75px;
}

.mt-75 {
  margin-top: 75px;
}

.pb-75 {
  padding-bottom: 75px;
}

.mb-75 {
  margin-bottom: 75px;
}

.pl-75 {
  padding-left: 75px;
}

.ml-75 {
  margin-left: 75px;
}

.pr-75 {
  padding-right: 75px;
}

.mr-75 {
  margin-right: 75px;
}

.p-75 {
  padding: 75px;
}

.m-75 {
  margin: 75px;
}

.pt-100 {
  padding-top: 100px;
}

.mt-100 {
  margin-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.mb-100 {
  margin-bottom: 100px;
}

.pl-100 {
  padding-left: 100px;
}

.ml-100 {
  margin-left: 100px;
}

.pr-100 {
  padding-right: 100px;
}

.mr-100 {
  margin-right: 100px;
}

.p-100 {
  padding: 100px;
}

.m-100 {
  margin: 100px;
}

.hidden_link_text {
  display: none;
}

.fw-bold {
  font-weight: bold;
}

/*============================
=            Grid            =
============================*/
.d-flex {
  display: flex;
}

.flex-row {
  flex-direction: row;
  flex-wrap: wrap;
}

/*==============================
=            Global            =
==============================*/
.justify-center {
  justify-content: center;
}

.justify-space-between {
  justify-content: space-between;
}

.circle-icon {
  padding: 28px;
  background: rgba(0, 193, 36, 0.08);
  color: #00C124;
  border-radius: 100%;
  font-size: 26px;
  line-height: 26px;
  display: inline-block;
}
.circle-icon:before {
  margin: 0 !important;
}

li.icon {
  margin-top: 10px;
  margin-bottom: 10px;
}
li.icon a {
  display: inline-flex;
  align-items: top;
}
li.icon a:before {
  font-family: "fontello";
  font-size: 25px;
  width: 35px;
  text-align: center;
  margin-right: 10px;
}
li.icon.facebook a:before {
  content: "\e80b";
}
li.icon.insta a:before {
  content: "\e80f";
}
li.icon.linkedin a:before {
  content: "\e812";
}
li.icon.phone a:before {
  content: "\e801";
}
li.icon.mail a:before {
  content: "\e819";
}
li.icon.location a:before {
  content: "\e813";
}

.round-thumb {
  border-radius: 50%;
}
.round-thumb img {
  width: 100%;
  height: auto;
}

img.round-thumb {
  border-radius: 50% !important;
}

.bigger {
  font-size: 1.5em;
}

.animate-spin {
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  -webkit-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
  display: inline-block;
}

@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-ms-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
button.btn {
  border: 0;
}

.btn {
  display: inline-block;
  color: #fff;
  padding: 12px 60px;
  text-decoration: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 24px;
}
.btn.btn-primary {
  background-color: var(--wr-primary);
}
.btn.btn-primary:hover {
  background-color: var(--wr-primary-hover);
}
.btn.btn-outline {
  background-color: rgba(0, 193, 36, 0.24);
  color: var(--wr-primary);
  border: 1px solid var(--wr-primary);
}
.btn.btn-white {
  color: #000;
  background-color: white;
}
.btn.btn-centered {
  display: inline-flex;
  align-items: center;
}
.btn.btn-shadow {
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
}

.btn-fullwidth {
  width: 100%;
  text-align: center;
}

.arrow:before, .btn-arrow:before {
  font-family: "fontello";
  content: "\e802";
  transition: all 0.2s;
  padding-left: 0px;
  padding-right: 10px;
}
.arrow:hover:before, .btn-arrow:hover:before {
  padding-left: 10px;
  padding-right: 0px;
}

.send, .btn-send {
  line-height: 1.5em;
}
.send:before, .btn-send:before {
  font-family: "fontello";
  content: "\e818";
  transition: all 0.2s;
  font-size: 1.5em;
  line-height: 1em;
  padding-right: 5px;
}

.upload, .btn-upload {
  line-height: 1.5em;
  padding: 16px 36px;
}
.upload:before, .btn-upload:before {
  font-family: "fontello";
  content: "\e80a";
  transition: all 0.2s;
  font-size: 1.25em;
  line-height: 1em;
  padding-right: 10px;
}

/* break points */
/* 

@media only screen and (max-width: $medium) {

}

*/
/*==============================
=            Header            =
==============================*/
#header {
  height: 380px;
  background-position: center;
  box-shadow: inset 0px 0px 100px 0px rgba(0, 0, 0, 0.2);
}
#header .logo a {
  width: 250px;
}
#header .logo a svg polygon.lomitko {
  transform-origin: 55px 56px;
  transition: all 0.5s;
}
#header .logo a:hover svg polygon.lomitko {
  transform: rotate(180deg);
}

#navigation {
  height: 85px;
  background: #fff;
  position: sticky;
  z-index: 1000;
  top: 0;
  box-shadow: 0px -5px 25px 5px rgba(0, 0, 0, 0.3);
}
#navigation .navigation {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
@media only screen and (max-width: 768px) {
  #navigation .navigation #main-navigation {
    z-index: 3000;
  }
}
#navigation .navigation .header_right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row;
  transition: all 0.2s;
  height: 85px;
}
#navigation .navigation .header_right a.academy {
  /* 
                @media only screen and (min-width: $tablet) {
                   img.logo-academy-notext {
                      display: none;
                   }

                   img.logo-academy {
                      display: block;
                   }
                }
  */
}
#navigation .navigation .header_right a.academy img {
  height: 50px;
  width: auto;
}
@media only screen and (max-width: 768px) {
  #navigation .navigation .header_right a.academy img.logo-academy-notext {
    display: block;
  }
  #navigation .navigation .header_right a.academy img.logo-academy {
    display: none;
  }
}
#navigation .navigation .header_right a svg {
  width: 25px;
  fill: #4b484e;
  height: 50px;
  width: auto;
}
#navigation .navigation .header_right a:hover svg {
  fill: var(--wr-primary);
}
#navigation .navigation .header_right a.search {
  padding: 5px 10px 0;
}
#navigation .navigation .header_right a.search svg {
  fill: #4b484e;
  height: 35px;
  width: auto;
}
@media only screen and (max-width: 768px) {
  #navigation .navigation .header_right {
    /*  position: absolute;
    left: 0;
    top: 0 */
  }
}
#navigation .navigation ul#main-navigation {
  list-style: none;
  display: flex;
}
#navigation .navigation ul#main-navigation li {
  position: relative;
}
@media only screen and (max-width: 768px) {
  #navigation .navigation ul#main-navigation li.menu-item {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  #navigation .navigation ul#main-navigation li.wr-burger-menu-main {
    display: none;
  }
}
#navigation .navigation ul#main-navigation li a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  box-sizing: border-box;
  height: 85px;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--wr-text-primary);
  white-space: nowrap;
}
@media only screen and (max-width: 1024px) {
  #navigation .navigation ul#main-navigation li a {
    padding: 8px;
  }
}
#navigation .navigation ul#main-navigation li a:hover {
  color: var(--wr-text-secondary);
  background-color: #e5e5e7;
}
#navigation .navigation ul#main-navigation li.current-menu-item a {
  color: var(--wr-text-secondary);
  /*  border-bottom: 2px solid black; */
}
#navigation .navigation ul#main-navigation li .sub-menu {
  display: none;
  position: absolute;
  top: 85px;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 5px 25px 5px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}
#navigation .navigation ul#main-navigation li .sub-menu li {
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
#navigation .navigation ul#main-navigation li .sub-menu li a {
  height: auto;
  padding: 15px;
  text-align: center;
  text-decoration: none;
  color: var(--wr-text-primary);
}
#navigation .navigation ul#main-navigation li .sub-menu li.current-menu-item a {
  color: var(--wr-primary);
}
#navigation .navigation ul#main-navigation li:hover .sub-menu {
  display: block;
}

/*====================================
=            Mobile meniu            =
====================================*/
.wr-burger-overlay {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.wr-burger-overlay .wr-burger-overlay-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 10;
}
.wr-burger-overlay .wr-burger-overlay-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  z-index: 5;
}
.wr-burger-overlay .wr-burger-overlay-bg {
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.wr-burger-overlay .wr-burger-overlay-inner #mobile-navigation {
  /* margin-top: $header-height; */
}
.wr-burger-overlay .wr-burger-overlay-scroll {
  width: 100%;
  right: 0;
  height: 100%;
  max-width: 100%;
  position: absolute;
  background-color: #fff;
  transform: translateX(350px);
  transition: all 0.5s cubic-bezier(0.75, 0, 0.25, 1);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 15;
}

.wr-burger-overlay-active-delayed .wr-burger-overlay-scroll {
  transform: translateX(0);
}

#mobile-navigation li {
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
#mobile-navigation li a {
  display: block;
  padding: 15px;
  text-align: center;
  text-decoration: none;
  color: var(--wr-text-primary);
}
#mobile-navigation li.current-menu-item a {
  color: var(--wr-primary);
}
#mobile-navigation li.hero {
  background-color: var(--wr-primary);
}
#mobile-navigation li.hero a {
  color: #fff;
  transition: all 0.2s;
}
#mobile-navigation li.hero a:before {
  font-family: "fontello";
  content: "\e802";
  transition: all 0.2s;
  padding-left: 0px;
  padding-right: 10px;
}
#mobile-navigation li.hero a:hover {
  background-color: var(--wr-primary-hover);
}
#mobile-navigation li.hero a:hover:before {
  padding-left: 10px;
  padding-right: 0px;
}

/*=====================================
=            Hnburger icon            =
=====================================*/
.wr-hamburger-box {
  width: 35px;
  height: 24px;
  display: inline-block;
  position: relative;
}
.wr-hamburger-box strong {
  display: none;
}

.wr-hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.wr-hamburger-inner,
.wr-hamburger-inner::before,
.wr-hamburger-inner::after {
  width: 40px;
  height: 3px;
  background-color: #000;
  border-radius: 3px;
  position: absolute;
  transition: transform 0.15s ease;
}

.wr-hamburger-inner::before,
.wr-hamburger-inner::after {
  content: "";
  display: block;
}

.wr-hamburger-inner::before {
  top: -10px;
}

.wr-hamburger-inner::after {
  bottom: -10px;
}

/*
 * Spin
 */
.wr-hamburger--spin .wr-hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.wr-hamburger--spin .wr-hamburger-inner::before {
  transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in, background-color 0.15s ease;
}

.wr-hamburger--spin .wr-hamburger-inner::after {
  transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0.15s ease;
}

.wr-hamburger--spin.is-active .wr-hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.wr-hamburger--spin.is-active .wr-hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out, background-color 0.15s ease;
}

.wr-hamburger--spin.is-active .wr-hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0.15s ease;
}

/* -------------------------------------------------------------------------- */
/*                                   SEARCH                                   */
/* -------------------------------------------------------------------------- */
.search-bar {
  background-color: #e5e5e7;
  padding: 10px;
  display: none;
}
.search-bar.active {
  display: block;
}
.search-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 100%;
}
.search-bar form {
  display: flex;
  margin: 0 auto;
}
.search-bar input {
  border-radius: 5px;
  border: 1px solid #e5e5e7;
  font-size: 1em;
  color: #4b484e;
  padding: 10px 20px;
  width: 300px;
}
.search-bar button {
  border: none;
  background: transparent;
  padding: 5px;
  margin: 0 10px;
}
.search-bar button svg {
  width: 30px;
  height: auto;
  fill: #4b484e;
}

/* break points */
/* 

@media only screen and (max-width: $medium) {

}

*/
.banner {
  overflow: hidden;
}

.banner .container {
  position: relative;
  height: 380px;
}
.banner .container .el {
  position: absolute;
}
.banner .container .sticker {
  top: 20px;
}
.banner .container .sticker img {
  width: 362px;
  height: 395px;
}
.banner .container .logo {
  left: calc(50% - 123px);
  bottom: 40px;
}
.banner .container .logo a img {
  width: 245px;
  height: 104px;
}
.banner .container .podpis {
  left: calc(50% - 120px);
  top: 20px;
  width: 241px;
  height: 255px;
  transform: rotate(10deg);
}
@media only screen and (max-width: 1024px) {
  .banner .container .logo {
    left: 320px;
  }
  .banner .container .podpis {
    left: 320px;
  }
}
@media only screen and (max-width: 768px) {
  .banner .container .sticker {
    transform: scale(0.8) !important;
  }
  .banner .container .podpis {
    left: auto;
    right: 0;
    top: auto;
    bottom: 0px;
    transform: scale(0.5);
  }
}
@media only screen and (max-width: 480px) {
  .banner .container .pepa {
    display: none;
  }
  .banner .container .sticker {
    top: -25px;
    left: calc(50% - 181px);
  }
  .banner .container .logo {
    left: calc(50% - 123px) !important;
    bottom: 0px !important;
  }
}

#banner1 .podpis svg,
#banner2 .podpis svg,
#banner3 .podpis svg {
  opacity: 0;
}

.podpis svg .p1,
.podpis svg .p2,
.podpis svg .p3 {
  fill: none;
  stroke: #000;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 8px;
}

#podpis-pepa.animate svg {
  opacity: 1;
}
#podpis-pepa.animate svg .p1,
#podpis-pepa.animate svg .p2,
#podpis-pepa.animate svg .p3 {
  fill: none;
  stroke: #000;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 8px;
}
#podpis-pepa.animate svg .p1,
#podpis-pepa.animate svg .p2 {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: dash 1s linear forwards;
}
#podpis-pepa.animate svg .p2end,
#podpis-pepa.animate svg .p3end {
  opacity: 0;
  animation: show 0.1s linear forwards;
}
#podpis-pepa.animate svg .p2 {
  animation-delay: 0.6s;
}
#podpis-pepa.animate svg .p2end {
  animation-delay: 1.3s;
}
#podpis-pepa.animate svg .p3 {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: dash 1.5s linear forwards;
  animation-delay: 1.5s;
}
#podpis-pepa.animate svg .p3end {
  animation-delay: 2.5s;
}
@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes show {
  to {
    opacity: 1;
  }
}

/* break points */
/* 

@media only screen and (max-width: $medium) {

}

*/
#banner1 {
  background-image: url("../img/banner1-bg.jpg");
}
#banner1 .pepa {
  right: 0;
  top: 0;
}
#banner1 .pepa img {
  width: 494px;
  height: 435px;
}
#banner1 .pepa .podpis {
  opacity: 0.5;
}

/* break points */
/* 

@media only screen and (max-width: $medium) {

}

*/
#banner2 {
  /*   @include linear-gradient(0deg,#26368b, #008cd4); */
  background-image: url("../img/banner2-bg.jpg");
  background-position: center;
  background-size: cover;
}
#banner2 .pepa {
  right: 0;
  top: -310px;
}
#banner2 .pepa img {
  width: 542px;
  height: 867px;
}
#banner2 .logo {
  left: calc(50% - 200px);
  bottom: 40px;
}
#banner2 #podpis-pepa.animate svg .p1,
#banner2 #podpis-pepa.animate svg .p2,
#banner2 #podpis-pepa.animate svg .p3,
#banner2 #podpis-pepa.animate svg .p2end,
#banner2 #podpis-pepa.animate svg .p3end {
  stroke: #fff;
}
#banner2 #podpis-pepa.animate svg .p2end,
#banner2 #podpis-pepa.animate svg .p3end {
  fill: #fff;
}

/* break points */
/* 

@media only screen and (max-width: $medium) {

}

*/
#banner3 {
  background-image: url("../img/banner3-bg.jpg");
}
#banner3 .pepa {
  right: 0;
  top: 0;
}
#banner3 .pepa img {
  width: 404px;
  height: 676px;
}
#banner3 .podpis {
  left: calc(50% - 60px);
}
@media only screen and (max-width: 1024px) {
  #banner3 .podpis {
    left: 320px;
  }
}
@media only screen and (max-width: 1024px) {
  #banner3 .podpis {
    left: 320px;
  }
}
@media only screen and (max-width: 768px) {
  #banner3 .podpis {
    left: auto;
  }
}
#banner3 #podpis-pepa.animate svg .p1,
#banner3 #podpis-pepa.animate svg .p2,
#banner3 #podpis-pepa.animate svg .p3,
#banner3 #podpis-pepa.animate svg .p2end,
#banner3 #podpis-pepa.animate svg .p3end {
  stroke: #fff;
}
#banner3 #podpis-pepa.animate svg .p2end,
#banner3 #podpis-pepa.animate svg .p3end {
  fill: #fff;
}

/* break points */
/* 

@media only screen and (max-width: $medium) {

}

*/
#footer {
  background-color: #fff;
  box-shadow: 0px -5px 15px 0px rgba(0, 0, 0, 0.3);
  padding: 15px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #footer {
    padding: 10px;
  }
}
#footer .row {
  display: flex;
  flex-direction: row;
  xheight: 100px;
  align-items: center;
  justify-content: space-between;
}
#footer .logo {
  margin: 5px auto;
  padding: 5px;
}
#footer .claim {
  font-size: 2em;
  margin: 5px auto;
  text-align: center;
}
#footer .claim b,
#footer .claim strong {
  font-weight: 900;
}
#footer .claim b {
  color: var(--wr-red);
}
#footer .claim strong {
  color: var(--wr-blue);
}
#footer .socials {
  display: flex;
  flex-direction: row;
  transition: all 0.2s;
  align-items: center;
  flex-wrap: wrap;
  margin: 5px auto;
}
@media only screen and (max-width: 768px) {
  #footer .socials {
    justify-content: center;
  }
}
#footer .socials svg {
  width: 100px;
  fill: #4b484e;
  height: 70px;
  width: auto;
}
#footer .socials a {
  padding: 10px;
}
#footer .socials a:hover svg {
  fill: #ac2f38;
}

#socket {
  background-color: #000;
  padding: 30px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}

#main h2, .elementor-widget-text-editor h2 {
  text-transform: uppercase;
  margin-top: 30px;
  margin-bottom: 30px;
}
#main h2:after, .elementor-widget-text-editor h2:after {
  content: " ";
  display: block;
  width: 40px;
  height: 6px;
  background-color: var(--eap-primary);
}
#main h3, .elementor-widget-text-editor h3 {
  margin-top: 16px;
  margin-bottom: 16px;
}
#main h4, .elementor-widget-text-editor h4 {
  font-size: 24px;
  line-height: 34px;
  font-weight: bold;
  margin-bottom: 16px;
  text-transform: uppercase;
}
#main li, .elementor-widget-text-editor li {
  color: #737373;
  line-height: 28.8px;
}
#main ol, .elementor-widget-text-editor ol {
  list-style: decimal;
  margin-left: 28px;
}
#main ol li, .elementor-widget-text-editor ol li {
  margin-bottom: 28.8px;
}
#main ol ol, .elementor-widget-text-editor ol ol {
  margin-top: 14px;
  list-style: lower-alpha;
}
#main ol ol li, .elementor-widget-text-editor ol ol li {
  margin-bottom: 14px;
}

/* break points */
/* 

@media only screen and (max-width: $medium) {

}

*/
.row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.row .col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}
.row .col-1 {
  width: 8.33%;
}
.row .col-2 {
  width: 16.67%;
}
.row .col-3 {
  width: 25%;
}
.row .col-4 {
  width: 33.33%;
}
.row .col-5 {
  width: 41.67%;
}
.row .col-6 {
  width: 50%;
}
.row .col-7 {
  width: 58.33%;
}
.row .col-8 {
  width: 66.67%;
}
.row .col-9 {
  width: 75%;
}
.row .col-10 {
  width: 83.33%;
}
.row .col-11 {
  width: 91.67%;
}
.row .col-12 {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .row xxx.col-1 {
    width: 12.5%;
  }
  .row xxx.col-2 {
    width: 25%;
  }
  .row xxx.col-3 {
    width: 37.5%;
  }
  .row xxx.col-4 {
    width: 50%;
  }
  .row xxx.col-5 {
    width: 62.5%;
  }
  .row xxx.col-6 {
    width: 75%;
  }
  .row xxx.col-7 {
    width: 87.5%;
  }
  .row xxx.col-8 {
    width: 100%;
  }
  .row xxx.col-9 {
    width: 100%;
  }
  .row xxx.col-10 {
    width: 100%;
  }
  .row xxx.col-11 {
    width: 100%;
  }
  .row xxx.col-12 {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .row .col-1 {
    width: 25%;
  }
  .row .col-2 {
    width: 50%;
  }
  .row .col-3 {
    width: 75%;
  }
  .row .col-4 {
    width: 100%;
  }
  .row .col-5 {
    width: 100%;
  }
  .row .col-6 {
    width: 100%;
  }
  .row .col-7 {
    width: 100%;
  }
  .row .col-8 {
    width: 100%;
  }
  .row .col-9 {
    width: 100%;
  }
  .row .col-10 {
    width: 100%;
  }
  .row .col-11 {
    width: 100%;
  }
  .row .col-12 {
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .row .col-1 {
    width: 100%;
  }
  .row .col-2 {
    width: 100%;
  }
  .row .col-3 {
    width: 100%;
  }
  .row .col-4 {
    width: 100%;
  }
  .row .col-5 {
    width: 100%;
  }
  .row .col-6 {
    width: 100%;
  }
  .row .col-7 {
    width: 100%;
  }
  .row .col-8 {
    width: 100%;
  }
  .row .col-9 {
    width: 100%;
  }
  .row .col-10 {
    width: 100%;
  }
  .row .col-11 {
    width: 100%;
  }
  .row .col-12 {
    width: 100%;
  }
}
.row [class*=col-].justified {
  display: flex;
  justify-content: space-between;
  align-items: justify-content;
}
.row [class*=col-] .box {
  flex-grow: 1;
  margin: 5%;
}

.grid {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
}
.grid .col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}
@media only screen and (max-width: 1024px) {
  .grid {
    flex-wrap: wrap;
  }
}

.gap-12 {
  gap: 12px;
}

.gap-24 {
  gap: 24px;
}

.gap-36 {
  gap: 36px;
}

.gap-48 {
  gap: 48px;
}

.gap-54 {
  gap: 54px;
}

.box_row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: justify-content;
}
.box_row .box {
  margin: 2%;
}
.box_row.gap-big {
  gap: 40px;
}
.box_row .box-3 {
  width: 29%;
}
.box_row .box-2 {
  width: 46%;
}
@media only screen and (max-width: 768px) {
  .box_row .box-3,
  .box_row .box-2 {
    width: 100%;
  }
}

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

.contact-box {
  padding: 24px 32px 32px;
}
.contact-box i {
  position: relative;
  top: 2px;
  font-size: 1.5em;
  margin-right: 5px;
}
.contact-box .bigger {
  display: inline-block;
  position: relative;
  top: 6px;
  font-size: 2.5em;
  font-weight: 100;
  margin-left: 10px;
}

.boxed {
  display: inline-block;
  padding: 32px;
}
@media only screen and (max-width: 1024px) {
  .boxed {
    padding: 24px;
    display: block;
    text-align: center;
  }
}
.boxed.boxed-primary {
  color: var(--eap-primary);
  background: rgba(0, 193, 36, 0.08);
}

h3.boxed {
  border: 2px solid var(--eap-primary);
  padding: 24px;
  font-size: 24px;
}
h3.boxed a {
  color: #000;
}

h4.boxed {
  border: 2px solid var(--eap-primary);
  font-size: 22px;
  text-transform: none;
  font-weight: 700;
  line-height: 38.4px;
  padding: 24px;
  margin: 10px;
}
@media only screen and (max-width: 1024px) {
  h4.boxed {
    padding: 24px;
    font-size: 18px;
  }
}

/* break points */
/* 

@media only screen and (max-width: $medium) {

}

*/
.slick-track {
  display: flex !important;
}

.slick-slide {
  height: inherit !important;
}

.box_slider {
  display: flex;
  align-items: stretch;
  padding: 0 30px;
}

/* break points */
/* 

@media only screen and (max-width: $medium) {

}

*/
.video_featured {
  padding: 25px 0px 15px;
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  .video_featured {
    padding: 25px 0px 15px;
  }
}
@media only screen and (max-width: 480px) {
  .video_featured {
    padding: 10px 0px 10px;
  }
}
.video_featured .video_container {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.video_featured .video_container a.video_arrow {
  display: block;
  width: 5%;
}
.video_featured .video_container a.video_arrow svg {
  width: 100%;
}
.video_featured .video_container .main_video {
  width: 90%;
}
@media only screen and (max-width: 768px) {
  .video_featured .main_video h2 {
    margin-top: 20px;
    text-align: center !important;
    line-height: 1.1em;
  }
}
.video_featured .feaured_image {
  position: relative;
}
.video_featured .feaured_image h2 {
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 30px;
  color: #fff;
  font-size: 30px;
}
.video_featured .feaured_image h2 a {
  color: #fff;
}
.video_featured .feaured_content {
  display: flex;
  flex-direction: row;
  margin-top: 10px;
  justify-content: space-between;
  align-items: stretch;
  padding: 0 50px;
}
@media only screen and (max-width: 768px) {
  .video_featured .feaured_content {
    padding: 0 25px;
  }
}
@media only screen and (max-width: 480px) {
  .video_featured .feaured_content {
    padding: 0 10px;
  }
}
.video_featured .feaured_content h3 {
  color: #ac2f38;
  font-weight: 1000;
  text-transform: uppercase;
}
.video_featured .feaured_content .product_name {
  flex-grow: 1;
}
.video_featured .feaured_content .product_name p {
  font-weight: bold;
  font-size: 1.1em;
}
.video_featured .feaured_content .product_image {
  position: relative;
  z-index: 100;
  /*  margin-top: -50px; */
  margin-bottom: 0px;
  padding: 0 20px;
  text-align: right;
}
.video_featured .feaured_content .product_image img {
  max-height: 200px;
  width: auto;
}
.video_featured .feaured_content .button {
  display: flex;
  flex-direction: column;
  justify-content: end;
}
@media screen and (max-width: 768px) {
  .video_featured .feaured_content {
    flex-direction: column;
    align-items: center;
  }
  .video_featured .feaured_content h3 {
    text-align: center;
  }
  .video_featured .feaured_content .product_image {
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 0;
    text-align: center;
  }
  .video_featured .feaured_content .product_image img {
    max-height: 200px;
    width: auto;
  }
  .video_featured .feaured_content #video_product_title {
    text-align: center;
  }
  .video_featured .feaured_content .button {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
}

.video_slider {
  background-color: #fff;
  padding: 10px 20px;
  margin: 0px;
}
.video_slider .video_thumb {
  padding: 5px;
}
.video_slider .video_thumb a {
  position: relative;
  display: block;
}
.video_slider .video_thumb a h6 {
  text-align: center;
  font-size: 0.6em;
  font-weight: bold;
  position: absolute;
  bottom: 0;
  width: 100%;
  color: #fff;
}
.video_slider .video_placeholder {
  width: 120px;
  height: 100px;
  background-color: #fff4ba;
  margin: 0 auto;
  cursor: pointer;
}

.mejs-overlay-play {
  flex-direction: column;
}
.mejs-overlay-play h5 {
  font-weight: bold;
  font-size: 1.2em;
  margin-top: 20px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  text-decoration: none;
}

.video_list.detail .video_box {
  display: flex;
  flex-direction: row;
  padding: 20px 0 !important;
  border-bottom: 1px solid #ac2f38;
}
@media only screen and (max-width: 480px) {
  .video_list.detail .video_box {
    flex-direction: column;
  }
}
.video_list.detail .video_box .video_thumb h6 {
  display: none;
}
.video_list.detail .video_box .video_thumb img {
  max-height: 200px;
  width: auto;
}
@media only screen and (max-width: 480px) {
  .video_list.detail .video_box .video_thumb img {
    max-height: none;
  }
}
.video_list.detail .video_box .video_detail {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
}
@media only screen and (max-width: 480px) {
  .video_list.detail .video_box .video_detail {
    flex-direction: column;
  }
}
.video_list.detail .video_box .video_detail .video_info {
  padding: 0 20px;
  flex-grow: 1;
}
@media only screen and (max-width: 480px) {
  .video_list.detail .video_box .video_detail .video_info {
    text-align: center;
  }
}
.video_list.detail .video_box .video_detail .product_image {
  width: 30%;
  min-width: 80px;
  text-align: center;
}
@media only screen and (max-width: 480px) {
  .video_list.detail .video_box .video_detail .product_image {
    width: 100%;
  }
}
.video_list.detail .video_box .video_detail .product_image img {
  max-height: 200px;
  width: auto;
}

.video_list.grid {
  display: flex;
  flex-wrap: wrap;
}
.video_list.grid .video_box {
  width: 20%;
  padding: 10px;
}
@media only screen and (max-width: 768px) {
  .video_list.grid .video_box {
    width: 33%;
  }
}
@media only screen and (max-width: 480px) {
  .video_list.grid .video_box {
    width: 50%;
  }
}
.video_list.grid .video_box .video_thumb h6 {
  text-align: center;
}
.video_list.grid .video_box .video_detail {
  display: none;
}

.video_switcher {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
}
.video_switcher a {
  border: 1px solid #303687;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 5px;
}
.video_switcher a:first-child {
  border-radius: 8px 0 0 8px;
}
.video_switcher a:last-child {
  border-radius: 0 8px 8px 0;
}
.video_switcher a svg {
  stroke: #303687;
  width: 20px;
}
.video_switcher a.active {
  background-color: #303687;
  color: #fff;
}
.video_switcher a.active svg {
  stroke: #fff;
}

.post_link_box {
  background: #fff;
  padding-bottom: 20px;
}
.post_link_box .post_title {
  padding: 20px 20px 10px;
}
.post_link_box .post_title h3 {
  text-align: center;
  text-transform: uppercase;
  min-height: 3em;
}
.post_link_box .post_title h3,
.post_link_box .post_title h3 a {
  color: var(--wr-text-primary);
}
.post_link_box .post_title h3 b,
.post_link_box .post_title h3 strong,
.post_link_box .post_title h3 a b,
.post_link_box .post_title h3 a strong {
  color: #ac2f38;
}

.tip_box {
  background: #fff;
  padding: 30px;
  padding-right: 100px;
  height: 100%;
  font-size: 1.3em;
  background: #fff url("../img/tip.png") no-repeat;
  background-position: right 20px bottom 20px;
}
.tip_box h3 {
  color: #ac2f38;
  text-transform: uppercase;
  font-weight: black;
  padding-bottom: 1em;
}
.tip_box p {
  line-height: 1.5em;
}/*# sourceMappingURL=webrevolution.css.map */