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.jpg");
  background-position: center top;
  background-repeat: repeat-y;
}
#content > .container {
  padding: 75px !important;
  background: #fff;
  box-shadow: -18px 0 28px -24px rgba(0, 0, 0, 0.5), 18px 0 28px -24px rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width: 768px) {
  #content > .container {
    padding: 28px 18px !important;
  }
}

.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;
  font-family: "AzoSans", "Azo", Arial, sans-serif;
  font-weight: 700;
}
h1 strong,
h2 strong,
h3 strong,
h4 strong {
  color: var(--wr-primary);
}

h1 {
  text-transform: uppercase;
  font-size: 40px;
  line-height: 1.1;
}

h2 {
  text-transform: uppercase;
  font-size: 40px;
  line-height: 1.2;
}

h3 {
  font-size: 30px;
  line-height: 1.25;
}

h4 {
  font-size: 26px;
  line-height: 1.3;
}

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);
}

.remman-page-header {
  width: 100%;
  background-image: url("../img/header.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.remman-page-header__topbar {
  padding: 24px 0 16px;
}
.remman-page-header__inner {
  padding: 28px 0 60px;
  box-sizing: border-box;
}
.remman-page-header__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
.remman-page-header__logo {
  display: block;
  width: 175px;
  max-width: 45vw;
}
.remman-page-header__logo img {
  display: block;
  width: 100%;
  height: auto;
}
.remman-page-header__burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 54px;
  height: 34px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.remman-page-header__burger-line {
  display: block;
  width: 42px;
  height: 5px;
  background-color: #fff;
  border-radius: 0;
}
.remman-page-header__center-image {
  text-align: center;
}
.remman-page-header__center-image img {
  display: inline-block;
  width: min(416px, 62vw);
  height: auto;
}
.remman-page-header__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 260px;
  background: rgba(0, 0, 0, 0.86);
  padding: 10px 0;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 20;
}
.remman-page-header__dropdown-link {
  display: block;
  color: #fff;
  text-decoration: none;
  font-family: "AzoSans", "Azo", Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
  padding: 10px 16px;
}
.remman-page-header__dropdown-link:hover {
  background: rgba(255, 255, 255, 0.12);
}
.remman-page-header.is-menu-open .remman-page-header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media only screen and (max-width: 768px) {
  .remman-page-header__topbar {
    padding: 16px 0 12px;
  }
  .remman-page-header__inner {
    padding: 24px 15px 34px;
  }
  .remman-page-header__logo {
    width: 135px;
  }
  .remman-page-header__burger {
    width: 46px;
    height: 30px;
  }
  .remman-page-header__burger-line {
    width: 34px;
    height: 4px;
  }
  .remman-page-header__center-image img {
    width: min(330px, 70vw);
  }
  .remman-page-header__dropdown {
    min-width: 220px;
  }
  .remman-page-header__dropdown-link {
    font-size: 14px;
  }
}
#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 img {
  height: 50px;
  width: auto;
}
#navigation .navigation .header_right a.academy {
  /* 
                @media only screen and (min-width: $tablet) {
                   img.logo-academy-notext {
                      display: none;
                   }

                   img.logo-academy {
                      display: block;
                   }
                }
  */
}
@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-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) {

}

*/
.remman-copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 0;
  padding: 20px 0;
}

#footer {
  background-color: #1a1a1a;
  box-shadow: none;
  color: #fff;
  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;
  color: #fff;
}
#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: rgba(255, 255, 255, 0.85);
  height: 70px;
  width: auto;
}
#footer .socials a {
  padding: 10px;
}
#footer .socials a:hover svg {
  fill: #ac2f38;
}

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

.remman-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .remman-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.remman-grid__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.remman-grid__image-link {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  width: 100%;
}
.remman-grid__image-link:hover .remman-grid__image {
  transform: scale(1.04);
}

.remman-grid__image {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.remman-grid__label {
  margin-top: 20px;
  margin-bottom: 2px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--eap-primary);
  font-family: "AzoSans", "Azo", Arial, sans-serif;
  font-weight: 700;
}

.remman-grid__title {
  margin-top: 2px;
  font-size: 28px;
  font-family: "AzoSans", "Azo", Arial, sans-serif;
  font-weight: 700;
}

@media (max-width: 768px) {
  .remman-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .remman-grid__item {
    width: 100%;
  }
  .remman-grid__image-link,
  .remman-grid__image {
    width: 100%;
    max-width: 100%;
  }
  .remman-grid__title {
    font-size: 24px;
    line-height: 1.2;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
  }
}
#main h2,
.elementor-widget-text-editor h2 {
  text-transform: uppercase;
  margin-top: 5px;
  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: 28px;
  line-height: 1.3;
  font-family: "AzoSans", "Azo", Arial, sans-serif;
  font-weight: 700;
  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;
  }
}

.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;
}/*# sourceMappingURL=webrevolution.css.map */